1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include "nv50.h"
25
26#include <subdev/bios.h>
27#include <subdev/bios/init.h>
28#include <subdev/bios/pll.h>
29#include <subdev/clk/pll.h>
30
31int
32gt215_devinit_pll_set(struct nvkm_devinit *devinit, u32 type, u32 freq)
33{
34 struct nv50_devinit_priv *priv = (void *)devinit;
35 struct nvkm_bios *bios = nvkm_bios(priv);
36 struct nvbios_pll info;
37 int N, fN, M, P;
38 int ret;
39
40 ret = nvbios_pll_parse(bios, type, &info);
41 if (ret)
42 return ret;
43
44 ret = gt215_pll_calc(nv_subdev(devinit), &info, freq, &N, &fN, &M, &P);
45 if (ret < 0)
46 return ret;
47
48 switch (info.type) {
49 case PLL_VPLL0:
50 case PLL_VPLL1:
51 nv_wr32(priv, info.reg + 0, 0x50000610);
52 nv_mask(priv, info.reg + 4, 0x003fffff,
53 (P << 16) | (M << 8) | N);
54 nv_wr32(priv, info.reg + 8, fN);
55 break;
56 default:
57 nv_warn(priv, "0x%08x/%dKhz unimplemented\n", type, freq);
58 ret = -EINVAL;
59 break;
60 }
61
62 return ret;
63}
64
65static u64
66gt215_devinit_disable(struct nvkm_devinit *devinit)
67{
68 struct nv50_devinit_priv *priv = (void *)devinit;
69 u32 r001540 = nv_rd32(priv, 0x001540);
70 u32 r00154c = nv_rd32(priv, 0x00154c);
71 u64 disable = 0ULL;
72
73 if (!(r001540 & 0x40000000)) {
74 disable |= (1ULL << NVDEV_ENGINE_MSPDEC);
75 disable |= (1ULL << NVDEV_ENGINE_MSPPP);
76 }
77
78 if (!(r00154c & 0x00000004))
79 disable |= (1ULL << NVDEV_ENGINE_DISP);
80 if (!(r00154c & 0x00000020))
81 disable |= (1ULL << NVDEV_ENGINE_MSVLD);
82 if (!(r00154c & 0x00000200))
83 disable |= (1ULL << NVDEV_ENGINE_CE0);
84
85 return disable;
86}
87
88static u32
89gt215_devinit_mmio_part[] = {
90 0x100720, 0x1008bc, 4,
91 0x100a20, 0x100adc, 4,
92 0x100d80, 0x100ddc, 4,
93 0x110000, 0x110f9c, 4,
94 0x111000, 0x11103c, 8,
95 0x111080, 0x1110fc, 4,
96 0x111120, 0x1111fc, 4,
97 0x111300, 0x1114bc, 4,
98 0,
99};
100
101static u32
102gt215_devinit_mmio(struct nvkm_devinit *devinit, u32 addr)
103{
104 struct nv50_devinit_priv *priv = (void *)devinit;
105 u32 *mmio = gt215_devinit_mmio_part;
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122 while (mmio[0]) {
123 if (addr >= mmio[0] && addr <= mmio[1]) {
124 u32 part = (addr / mmio[2]) & 7;
125 if (!priv->r001540)
126 priv->r001540 = nv_rd32(priv, 0x001540);
127 if (part >= hweight8((priv->r001540 >> 16) & 0xff))
128 return ~0;
129 return addr;
130 }
131 mmio += 3;
132 }
133
134 return addr;
135}
136
137struct nvkm_oclass *
138gt215_devinit_oclass = &(struct nvkm_devinit_impl) {
139 .base.handle = NV_SUBDEV(DEVINIT, 0xa3),
140 .base.ofuncs = &(struct nvkm_ofuncs) {
141 .ctor = nv50_devinit_ctor,
142 .dtor = _nvkm_devinit_dtor,
143 .init = nv50_devinit_init,
144 .fini = _nvkm_devinit_fini,
145 },
146 .pll_set = gt215_devinit_pll_set,
147 .disable = gt215_devinit_disable,
148 .mmio = gt215_devinit_mmio,
149 .post = nvbios_init,
150}.base;
151