Blame view

drivers/cpufreq/longhaul.h 8.7 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  /*
   *  longhaul.h
   *  (C) 2003 Dave Jones.
   *
   *  Licensed under the terms of the GNU GPL License version 2.
   *
   *  VIA-specific information
   */
  
  union msr_bcr2 {
  	struct {
  		unsigned Reseved:19,	// 18:0
  		ESOFTBF:1,		// 19
  		Reserved2:3,		// 22:20
  		CLOCKMUL:4,		// 26:23
  		Reserved3:5;		// 31:27
  	} bits;
  	unsigned long val;
  };
  
  union msr_longhaul {
  	struct {
  		unsigned RevisionID:4,	// 3:0
  		RevisionKey:4,		// 7:4
  		EnableSoftBusRatio:1,	// 8
  		EnableSoftVID:1,	// 9
  		EnableSoftBSEL:1,	// 10
  		Reserved:3,		// 11:13
  		SoftBusRatio4:1,	// 14
  		VRMRev:1,		// 15
  		SoftBusRatio:4,		// 19:16
  		SoftVID:5,		// 24:20
  		Reserved2:3,		// 27:25
  		SoftBSEL:2,		// 29:28
  		Reserved3:2,		// 31:30
  		MaxMHzBR:4,		// 35:32
  		MaximumVID:5,		// 40:36
  		MaxMHzFSB:2,		// 42:41
  		MaxMHzBR4:1,		// 43
  		Reserved4:4,		// 47:44
  		MinMHzBR:4,		// 51:48
  		MinimumVID:5,		// 56:52
  		MinMHzFSB:2,		// 58:57
  		MinMHzBR4:1,		// 59
  		Reserved5:4;		// 63:60
  	} bits;
  	unsigned long long val;
  };
  
  /*
   * Clock ratio tables. Div/Mod by 10 to get ratio.
ac617bd0f   Dave Jones   [CPUFREQ] checkpa...
52
53
   * The eblcr values specify the ratio read from the CPU.
   * The mults values specify what to write to the CPU.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
56
57
58
   */
  
  /*
   * VIA C3 Samuel 1  & Samuel 2 (stepping 0)
   */
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
59
  static const int __cpuinitdata samuel1_mults[16] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  	-1, /* 0000 -> RESERVED */
  	30, /* 0001 ->  3.0x */
  	40, /* 0010 ->  4.0x */
  	-1, /* 0011 -> RESERVED */
  	-1, /* 0100 -> RESERVED */
  	35, /* 0101 ->  3.5x */
  	45, /* 0110 ->  4.5x */
  	55, /* 0111 ->  5.5x */
  	60, /* 1000 ->  6.0x */
  	70, /* 1001 ->  7.0x */
  	80, /* 1010 ->  8.0x */
  	50, /* 1011 ->  5.0x */
  	65, /* 1100 ->  6.5x */
  	75, /* 1101 ->  7.5x */
  	-1, /* 1110 -> RESERVED */
  	-1, /* 1111 -> RESERVED */
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
77
  static const int __cpuinitdata samuel1_eblcr[16] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
  	50, /* 0000 -> RESERVED */
  	30, /* 0001 ->  3.0x */
  	40, /* 0010 ->  4.0x */
  	-1, /* 0011 -> RESERVED */
  	55, /* 0100 ->  5.5x */
  	35, /* 0101 ->  3.5x */
  	45, /* 0110 ->  4.5x */
  	-1, /* 0111 -> RESERVED */
  	-1, /* 1000 -> RESERVED */
  	70, /* 1001 ->  7.0x */
  	80, /* 1010 ->  8.0x */
  	60, /* 1011 ->  6.0x */
  	-1, /* 1100 -> RESERVED */
  	75, /* 1101 ->  7.5x */
  	-1, /* 1110 -> RESERVED */
  	65, /* 1111 ->  6.5x */
  };
  
  /*
   * VIA C3 Samuel2 Stepping 1->15
   */
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
99
  static const int __cpuinitdata samuel2_eblcr[16] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  	50,  /* 0000 ->  5.0x */
  	30,  /* 0001 ->  3.0x */
  	40,  /* 0010 ->  4.0x */
  	100, /* 0011 -> 10.0x */
  	55,  /* 0100 ->  5.5x */
  	35,  /* 0101 ->  3.5x */
  	45,  /* 0110 ->  4.5x */
  	110, /* 0111 -> 11.0x */
  	90,  /* 1000 ->  9.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	60,  /* 1011 ->  6.0x */
  	120, /* 1100 -> 12.0x */
  	75,  /* 1101 ->  7.5x */
  	130, /* 1110 -> 13.0x */
  	65,  /* 1111 ->  6.5x */
  };
  
  /*
   * VIA C3 Ezra
   */
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
121
  static const int __cpuinitdata ezra_mults[16] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  	100, /* 0000 -> 10.0x */
  	30,  /* 0001 ->  3.0x */
  	40,  /* 0010 ->  4.0x */
  	90,  /* 0011 ->  9.0x */
  	95,  /* 0100 ->  9.5x */
  	35,  /* 0101 ->  3.5x */
  	45,  /* 0110 ->  4.5x */
  	55,  /* 0111 ->  5.5x */
  	60,  /* 1000 ->  6.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	50,  /* 1011 ->  5.0x */
  	65,  /* 1100 ->  6.5x */
  	75,  /* 1101 ->  7.5x */
  	85,  /* 1110 ->  8.5x */
  	120, /* 1111 -> 12.0x */
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
139
  static const int __cpuinitdata ezra_eblcr[16] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
  	50,  /* 0000 ->  5.0x */
  	30,  /* 0001 ->  3.0x */
  	40,  /* 0010 ->  4.0x */
  	100, /* 0011 -> 10.0x */
  	55,  /* 0100 ->  5.5x */
  	35,  /* 0101 ->  3.5x */
  	45,  /* 0110 ->  4.5x */
  	95,  /* 0111 ->  9.5x */
  	90,  /* 1000 ->  9.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	60,  /* 1011 ->  6.0x */
  	120, /* 1100 -> 12.0x */
  	75,  /* 1101 ->  7.5x */
  	85,  /* 1110 ->  8.5x */
  	65,  /* 1111 ->  6.5x */
  };
  
  /*
   * VIA C3 (Ezra-T) [C5M].
   */
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
161
  static const int __cpuinitdata ezrat_mults[32] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
  	100, /* 0000 -> 10.0x */
  	30,  /* 0001 ->  3.0x */
  	40,  /* 0010 ->  4.0x */
  	90,  /* 0011 ->  9.0x */
  	95,  /* 0100 ->  9.5x */
  	35,  /* 0101 ->  3.5x */
  	45,  /* 0110 ->  4.5x */
  	55,  /* 0111 ->  5.5x */
  	60,  /* 1000 ->  6.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	50,  /* 1011 ->  5.0x */
  	65,  /* 1100 ->  6.5x */
  	75,  /* 1101 ->  7.5x */
  	85,  /* 1110 ->  8.5x */
  	120, /* 1111 ->  12.0x */
  
  	-1,  /* 0000 -> RESERVED (10.0x) */
  	110, /* 0001 -> 11.0x */
ce243823a   Rafał Bilski   [CPUFREQ] Longhau...
181
  	-1, /* 0010 -> 12.0x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
182
183
184
185
186
187
188
189
190
191
192
193
194
195
  	-1,  /* 0011 -> RESERVED (9.0x)*/
  	105, /* 0100 -> 10.5x */
  	115, /* 0101 -> 11.5x */
  	125, /* 0110 -> 12.5x */
  	135, /* 0111 -> 13.5x */
  	140, /* 1000 -> 14.0x */
  	150, /* 1001 -> 15.0x */
  	160, /* 1010 -> 16.0x */
  	130, /* 1011 -> 13.0x */
  	145, /* 1100 -> 14.5x */
  	155, /* 1101 -> 15.5x */
  	-1,  /* 1110 -> RESERVED (13.0x) */
  	-1,  /* 1111 -> RESERVED (12.0x) */
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
196
  static const int __cpuinitdata ezrat_eblcr[32] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
  	50,  /* 0000 ->  5.0x */
  	30,  /* 0001 ->  3.0x */
  	40,  /* 0010 ->  4.0x */
  	100, /* 0011 -> 10.0x */
  	55,  /* 0100 ->  5.5x */
  	35,  /* 0101 ->  3.5x */
  	45,  /* 0110 ->  4.5x */
  	95,  /* 0111 ->  9.5x */
  	90,  /* 1000 ->  9.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	60,  /* 1011 ->  6.0x */
  	120, /* 1100 -> 12.0x */
  	75,  /* 1101 ->  7.5x */
  	85,  /* 1110 ->  8.5x */
  	65,  /* 1111 ->  6.5x */
  
  	-1,  /* 0000 -> RESERVED (9.0x) */
  	110, /* 0001 -> 11.0x */
  	120, /* 0010 -> 12.0x */
  	-1,  /* 0011 -> RESERVED (10.0x)*/
  	135, /* 0100 -> 13.5x */
  	115, /* 0101 -> 11.5x */
  	125, /* 0110 -> 12.5x */
  	105, /* 0111 -> 10.5x */
  	130, /* 1000 -> 13.0x */
  	150, /* 1001 -> 15.0x */
  	160, /* 1010 -> 16.0x */
  	140, /* 1011 -> 14.0x */
  	-1,  /* 1100 -> RESERVED (12.0x) */
  	155, /* 1101 -> 15.5x */
  	-1,  /* 1110 -> RESERVED (13.0x) */
  	145, /* 1111 -> 14.5x */
  };
  
  /*
   * VIA C3 Nehemiah */
32ee8c3e4   Dave Jones   [CPUFREQ] Lots of...
234

2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
235
  static const int __cpuinitdata nehemiah_mults[32] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
236
  	100, /* 0000 -> 10.0x */
ce243823a   Rafał Bilski   [CPUFREQ] Longhau...
237
  	-1, /* 0001 -> 16.0x */
0d44b2ba2   Rafa³ Bilski   [CPUFREQ] Longhau...
238
  	40,  /* 0010 ->  4.0x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
239
240
241
  	90,  /* 0011 ->  9.0x */
  	95,  /* 0100 ->  9.5x */
  	-1,  /* 0101 ->  RESERVED */
0d44b2ba2   Rafa³ Bilski   [CPUFREQ] Longhau...
242
  	45,  /* 0110 ->  4.5x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
243
244
245
246
247
248
249
250
251
  	55,  /* 0111 ->  5.5x */
  	60,  /* 1000 ->  6.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	50,  /* 1011 ->  5.0x */
  	65,  /* 1100 ->  6.5x */
  	75,  /* 1101 ->  7.5x */
  	85,  /* 1110 ->  8.5x */
  	120, /* 1111 -> 12.0x */
ce243823a   Rafał Bilski   [CPUFREQ] Longhau...
252
  	-1, /* 0000 -> 10.0x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253
  	110, /* 0001 -> 11.0x */
ce243823a   Rafał Bilski   [CPUFREQ] Longhau...
254
255
  	-1, /* 0010 -> 12.0x */
  	-1,  /* 0011 ->  9.0x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
256
257
258
259
260
261
262
263
264
265
266
  	105, /* 0100 -> 10.5x */
  	115, /* 0101 -> 11.5x */
  	125, /* 0110 -> 12.5x */
  	135, /* 0111 -> 13.5x */
  	140, /* 1000 -> 14.0x */
  	150, /* 1001 -> 15.0x */
  	160, /* 1010 -> 16.0x */
  	130, /* 1011 -> 13.0x */
  	145, /* 1100 -> 14.5x */
  	155, /* 1101 -> 15.5x */
  	-1,  /* 1110 -> RESERVED (13.0x) */
ce243823a   Rafał Bilski   [CPUFREQ] Longhau...
267
  	-1, /* 1111 -> 12.0x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
269
  static const int __cpuinitdata nehemiah_eblcr[32] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
270
271
  	50,  /* 0000 ->  5.0x */
  	160, /* 0001 -> 16.0x */
0d44b2ba2   Rafa³ Bilski   [CPUFREQ] Longhau...
272
  	40,  /* 0010 ->  4.0x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
273
274
275
  	100, /* 0011 -> 10.0x */
  	55,  /* 0100 ->  5.5x */
  	-1,  /* 0101 ->  RESERVED */
0d44b2ba2   Rafa³ Bilski   [CPUFREQ] Longhau...
276
  	45,  /* 0110 ->  4.5x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
  	95,  /* 0111 ->  9.5x */
  	90,  /* 1000 ->  9.0x */
  	70,  /* 1001 ->  7.0x */
  	80,  /* 1010 ->  8.0x */
  	60,  /* 1011 ->  6.0x */
  	120, /* 1100 -> 12.0x */
  	75,  /* 1101 ->  7.5x */
  	85,  /* 1110 ->  8.5x */
  	65,  /* 1111 ->  6.5x */
  	90,  /* 0000 ->  9.0x */
  	110, /* 0001 -> 11.0x */
  	120, /* 0010 -> 12.0x */
  	100, /* 0011 -> 10.0x */
  	135, /* 0100 -> 13.5x */
  	115, /* 0101 -> 11.5x */
  	125, /* 0110 -> 12.5x */
  	105, /* 0111 -> 10.5x */
  	130, /* 1000 -> 13.0x */
  	150, /* 1001 -> 15.0x */
  	160, /* 1010 -> 16.0x */
  	140, /* 1011 -> 14.0x */
  	120, /* 1100 -> 12.0x */
  	155, /* 1101 -> 15.5x */
  	-1,  /* 1110 -> RESERVED (13.0x) */
  	145 /* 1111 -> 14.5x */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
302
  };
32ee8c3e4   Dave Jones   [CPUFREQ] Lots of...
303
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304
305
306
   * Voltage scales. Div/Mod by 1000 to get actual voltage.
   * Which scale to use depends on the VRM type in use.
   */
db44aaf3a   Rafa³ Bilski   [CPUFREQ] Longhau...
307
308
309
310
311
  
  struct mV_pos {
  	unsigned short mV;
  	unsigned short pos;
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
312
  static const struct mV_pos __cpuinitdata vrm85_mV[32] = {
db44aaf3a   Rafa³ Bilski   [CPUFREQ] Longhau...
313
314
315
316
317
318
319
320
321
  	{1250, 8},	{1200, 6},	{1150, 4},	{1100, 2},
  	{1050, 0},	{1800, 30},	{1750, 28},	{1700, 26},
  	{1650, 24},	{1600, 22},	{1550, 20},	{1500, 18},
  	{1450, 16},	{1400, 14},	{1350, 12},	{1300, 10},
  	{1275, 9},	{1225, 7},	{1175, 5},	{1125, 3},
  	{1075, 1},	{1825, 31},	{1775, 29},	{1725, 27},
  	{1675, 25},	{1625, 23},	{1575, 21},	{1525, 19},
  	{1475, 17},	{1425, 15},	{1375, 13},	{1325, 11}
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
322
  static const unsigned char __cpuinitdata mV_vrm85[32] = {
db44aaf3a   Rafa³ Bilski   [CPUFREQ] Longhau...
323
324
325
326
327
  	0x04,	0x14,	0x03,	0x13,	0x02,	0x12,	0x01,	0x11,
  	0x00,	0x10,	0x0f,	0x1f,	0x0e,	0x1e,	0x0d,	0x1d,
  	0x0c,	0x1c,	0x0b,	0x1b,	0x0a,	0x1a,	0x09,	0x19,
  	0x08,	0x18,	0x07,	0x17,	0x06,	0x16,	0x05,	0x15
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
328
  static const struct mV_pos __cpuinitdata mobilevrm_mV[32] = {
db44aaf3a   Rafa³ Bilski   [CPUFREQ] Longhau...
329
330
331
332
333
334
335
336
  	{1750, 31},	{1700, 30},	{1650, 29},	{1600, 28},
  	{1550, 27},	{1500, 26},	{1450, 25},	{1400, 24},
  	{1350, 23},	{1300, 22},	{1250, 21},	{1200, 20},
  	{1150, 19},	{1100, 18},	{1050, 17},	{1000, 16},
  	{975, 15},	{950, 14},	{925, 13},	{900, 12},
  	{875, 11},	{850, 10},	{825, 9},	{800, 8},
  	{775, 7},	{750, 6},	{725, 5},	{700, 4},
  	{675, 3},	{650, 2},	{625, 1},	{600, 0}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
337
  };
2530573e4   Holger Freyther   [CPUFREQ] Fix sec...
338
  static const unsigned char __cpuinitdata mV_mobilevrm[32] = {
db44aaf3a   Rafa³ Bilski   [CPUFREQ] Longhau...
339
340
341
342
  	0x1f,	0x1e,	0x1d,	0x1c,	0x1b,	0x1a,	0x19,	0x18,
  	0x17,	0x16,	0x15,	0x14,	0x13,	0x12,	0x11,	0x10,
  	0x0f,	0x0e,	0x0d,	0x0c,	0x0b,	0x0a,	0x09,	0x08,
  	0x07,	0x06,	0x05,	0x04,	0x03,	0x02,	0x01,	0x00
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
343
  };