drm/nouveau/devinit: tidy up the subdev class definition
[deliverable/linux.git] / drivers / gpu / drm / nouveau / core / subdev / devinit / nv50.c
CommitLineData
cb75d97e 1/*
88524bc0 2 * Copyright 2013 Red Hat Inc.
cb75d97e
BS
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24
b6e4ad20
BS
25#include <subdev/bios.h>
26#include <subdev/bios/dcb.h>
27#include <subdev/bios/disp.h>
28#include <subdev/bios/init.h>
cb75d97e
BS
29#include <subdev/vga.h>
30
cf336014 31#include "nv50.h"
cb75d97e
BS
32
33static int
88524bc0 34nv50_devinit_pll_set(struct nouveau_devinit *devinit, u32 type, u32 freq)
cb75d97e 35{
88524bc0
BS
36 struct nv50_devinit_priv *priv = (void *)devinit;
37 struct nouveau_bios *bios = nouveau_bios(priv);
38 struct nvbios_pll info;
39 int N1, M1, N2, M2, P;
cb75d97e
BS
40 int ret;
41
88524bc0
BS
42 ret = nvbios_pll_parse(bios, type, &info);
43 if (ret) {
44 nv_error(devinit, "failed to retrieve pll data, %d\n", ret);
cb75d97e 45 return ret;
88524bc0 46 }
cb75d97e 47
88524bc0
BS
48 ret = nv04_pll_calc(nv_subdev(devinit), &info, freq, &N1, &M1, &N2, &M2, &P);
49 if (!ret) {
50 nv_error(devinit, "failed pll calculation\n");
51 return ret;
52 }
cb75d97e 53
88524bc0
BS
54 switch (info.type) {
55 case PLL_VPLL0:
56 case PLL_VPLL1:
57 nv_wr32(priv, info.reg + 0, 0x10000611);
58 nv_mask(priv, info.reg + 4, 0x00ff00ff, (M1 << 16) | N1);
59 nv_mask(priv, info.reg + 8, 0x7fff00ff, (P << 28) |
60 (M2 << 16) | N2);
61 break;
62 case PLL_MEMORY:
63 nv_mask(priv, info.reg + 0, 0x01ff0000, (P << 22) |
64 (info.bias_p << 19) |
65 (P << 16));
66 nv_wr32(priv, info.reg + 4, (N1 << 8) | M1);
67 break;
68 default:
69 nv_mask(priv, info.reg + 0, 0x00070000, (P << 16));
70 nv_wr32(priv, info.reg + 4, (N1 << 8) | M1);
71 break;
72 }
73
74 return 0;
cb75d97e
BS
75}
76
88524bc0 77int
cb75d97e
BS
78nv50_devinit_init(struct nouveau_object *object)
79{
b6e4ad20 80 struct nouveau_bios *bios = nouveau_bios(object);
cb75d97e 81 struct nv50_devinit_priv *priv = (void *)object;
b6e4ad20
BS
82 struct nvbios_outp info;
83 struct dcb_output outp;
84 u8 ver = 0xff, hdr, cnt, len;
85 int ret, i = 0;
cb75d97e
BS
86
87 if (!priv->base.post) {
88 if (!nv_rdvgac(priv, 0, 0x00) &&
89 !nv_rdvgac(priv, 0, 0x1a)) {
90 nv_info(priv, "adaptor not initialised\n");
91 priv->base.post = true;
92 }
93 }
94
b6e4ad20
BS
95 ret = nouveau_devinit_init(&priv->base);
96 if (ret)
97 return ret;
98
ac8cc241
BS
99 /* if we ran the init tables, we have to execute the first script
100 * pointer of each dcb entry's display encoder table in order
101 * to properly initialise each encoder.
b6e4ad20 102 */
ac8cc241
BS
103 while (priv->base.post && dcb_outp_parse(bios, i, &ver, &hdr, &outp)) {
104 if (nvbios_outp_match(bios, outp.hasht, outp.hashm,
105 &ver, &hdr, &cnt, &len, &info)) {
b6e4ad20
BS
106 struct nvbios_init init = {
107 .subdev = nv_subdev(priv),
108 .bios = bios,
109 .offset = info.script[0],
110 .outp = &outp,
111 .crtc = -1,
112 .execute = 1,
113 };
114
115 nvbios_exec(&init);
116 }
ac8cc241
BS
117 i++;
118 }
b6e4ad20
BS
119
120 return 0;
cb75d97e
BS
121}
122
cf336014 123int
88524bc0
BS
124nv50_devinit_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
125 struct nouveau_oclass *oclass, void *data, u32 size,
126 struct nouveau_object **pobject)
cb75d97e 127{
88524bc0
BS
128 struct nv50_devinit_priv *priv;
129 int ret;
130
131 ret = nouveau_devinit_create(parent, engine, oclass, &priv);
132 *pobject = nv_object(priv);
133 if (ret)
134 return ret;
135
88524bc0 136 return 0;
cb75d97e
BS
137}
138
cf336014
BS
139struct nouveau_oclass *
140nv50_devinit_oclass = &(struct nouveau_devinit_impl) {
141 .base.handle = NV_SUBDEV(DEVINIT, 0x50),
142 .base.ofuncs = &(struct nouveau_ofuncs) {
cb75d97e 143 .ctor = nv50_devinit_ctor,
88524bc0 144 .dtor = _nouveau_devinit_dtor,
cb75d97e 145 .init = nv50_devinit_init,
88524bc0 146 .fini = _nouveau_devinit_fini,
cb75d97e 147 },
cf336014
BS
148 .pll_set = nv50_devinit_pll_set,
149}.base;
This page took 0.109276 seconds and 5 git commands to generate.