This source file includes following definitions.
- tu102_devinit_pll_set
- tu102_devinit_post
- tu102_devinit_new
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #include "nv50.h"
23
24 #include <subdev/bios.h>
25 #include <subdev/bios/pll.h>
26 #include <subdev/clk/pll.h>
27
28 static int
29 tu102_devinit_pll_set(struct nvkm_devinit *init, u32 type, u32 freq)
30 {
31 struct nvkm_subdev *subdev = &init->subdev;
32 struct nvkm_device *device = subdev->device;
33 struct nvbios_pll info;
34 int head = type - PLL_VPLL0;
35 int N, fN, M, P;
36 int ret;
37
38 ret = nvbios_pll_parse(device->bios, type, &info);
39 if (ret)
40 return ret;
41
42 ret = gt215_pll_calc(subdev, &info, freq, &N, &fN, &M, &P);
43 if (ret < 0)
44 return ret;
45
46 switch (info.type) {
47 case PLL_VPLL0:
48 case PLL_VPLL1:
49 case PLL_VPLL2:
50 case PLL_VPLL3:
51 nvkm_wr32(device, 0x00ef10 + (head * 0x40), fN << 16);
52 nvkm_wr32(device, 0x00ef04 + (head * 0x40), (P << 16) |
53 (N << 8) |
54 (M << 0));
55
56 nvkm_wr32(device, 0x00ef0c + (head * 0x40), 0x00000900);
57 nvkm_wr32(device, 0x00ef00 + (head * 0x40), 0x02000014);
58 break;
59 default:
60 nvkm_warn(subdev, "%08x/%dKhz unimplemented\n", type, freq);
61 ret = -EINVAL;
62 break;
63 }
64
65 return ret;
66 }
67
68 static int
69 tu102_devinit_post(struct nvkm_devinit *base, bool post)
70 {
71 struct nv50_devinit *init = nv50_devinit(base);
72 gm200_devinit_preos(init, post);
73 return 0;
74 }
75
76 static const struct nvkm_devinit_func
77 tu102_devinit = {
78 .init = nv50_devinit_init,
79 .post = tu102_devinit_post,
80 .pll_set = tu102_devinit_pll_set,
81 .disable = gm107_devinit_disable,
82 };
83
84 int
85 tu102_devinit_new(struct nvkm_device *device, int index,
86 struct nvkm_devinit **pinit)
87 {
88 return nv50_devinit_new_(&tu102_devinit, device, index, pinit);
89 }