This source file includes following definitions.
- ramxlat
- nvkm_sddr2_calc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 #include "priv.h"
26 #include "ram.h"
27
28 struct ramxlat {
29 int id;
30 u8 enc;
31 };
32
33 static inline int
34 ramxlat(const struct ramxlat *xlat, int id)
35 {
36 while (xlat->id >= 0) {
37 if (xlat->id == id)
38 return xlat->enc;
39 xlat++;
40 }
41 return -EINVAL;
42 }
43
44 static const struct ramxlat
45 ramddr2_cl[] = {
46 { 2, 2 }, { 3, 3 }, { 4, 4 }, { 5, 5 }, { 6, 6 },
47
48 { 7, 7 },
49 { -1 }
50 };
51
52 static const struct ramxlat
53 ramddr2_wr[] = {
54 { 2, 1 }, { 3, 2 }, { 4, 3 }, { 5, 4 }, { 6, 5 },
55
56 { 7, 6 },
57 { -1 }
58 };
59
60 int
61 nvkm_sddr2_calc(struct nvkm_ram *ram)
62 {
63 int CL, WR, DLL = 0, ODT = 0;
64
65 switch (ram->next->bios.timing_ver) {
66 case 0x10:
67 CL = ram->next->bios.timing_10_CL;
68 WR = ram->next->bios.timing_10_WR;
69 DLL = !ram->next->bios.ramcfg_DLLoff;
70 ODT = ram->next->bios.timing_10_ODT & 3;
71 break;
72 case 0x20:
73 CL = (ram->next->bios.timing[1] & 0x0000001f);
74 WR = (ram->next->bios.timing[2] & 0x007f0000) >> 16;
75 break;
76 default:
77 return -ENOSYS;
78 }
79
80 if (ram->next->bios.timing_ver == 0x20 ||
81 ram->next->bios.ramcfg_timing == 0xff) {
82 ODT = (ram->mr[1] & 0x004) >> 2 |
83 (ram->mr[1] & 0x040) >> 5;
84 }
85
86 CL = ramxlat(ramddr2_cl, CL);
87 WR = ramxlat(ramddr2_wr, WR);
88 if (CL < 0 || WR < 0)
89 return -EINVAL;
90
91 ram->mr[0] &= ~0xf70;
92 ram->mr[0] |= (WR & 0x07) << 9;
93 ram->mr[0] |= (CL & 0x07) << 4;
94
95 ram->mr[1] &= ~0x045;
96 ram->mr[1] |= (ODT & 0x1) << 2;
97 ram->mr[1] |= (ODT & 0x2) << 5;
98 ram->mr[1] |= !DLL;
99 return 0;
100 }