Chameleon

Chameleon Commit Details

Date:2015-05-10 14:52:06 (8 years 10 months ago)
Author:ErmaC
Commit:2674
Parents: 2673
Message:Update ForceHPET (Credits to meklort)
Changes:
M/trunk/i386/libsaio/hpet.c

File differences

trunk/i386/libsaio/hpet.c
1111
1212
1313
14
14
1515
1616
1717
18
18
1919
20
20
2121
2222
23
23
24
25
2426
27
28
29
30
31
32
33
34
2535
2636
2737
2838
29
30
31
39
3240
33
34
35
36
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
37110
38
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
39152
40153
41154
......
52165
53166
54167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
55183
184
185
186
187
188
189
190
191
192
193
194
195
196
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
56272
57273
58
274
275
276
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
302
303
304
305
306
307
308
309
59310
311
60312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
61362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
62402
63403
64404
65
66
67
405
406
407
68408
409
69410
70411
71412
72
413
73414
74415
75416
......
103444
104445
105446
447
448
106449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
107467
108468
109469
110470
471
111472
#include "hpet.h"
#ifndef DEBUG_HPET
#define DEBUG_HPET 0
#define DEBUG_HPET 0
#endif
#if DEBUG_HPET
#define DBG(x...) printf(x)
#define DBG(x...) printf(x)
#else
#define DBG(x...)
#define DBG(x...)
#endif
static struct lpc_controller_t lpc_controllers[] = {
void force_enable_hpet_intel(pci_dt_t *lpc_dev);
void force_enable_hpet_nvidia(pci_dt_t *lpc_dev);
void force_enable_hpet_via(pci_dt_t *lpc_dev);
/*
* Force HPET enabled
*
* VIA fix from http://forum.voodooprojects.org/index.php/topic,1596.0.html
*/
static struct lpc_controller_t lpc_controllers_intel[] = {
// Default unknown chipset
{ 0, 0, "" },
// Intel
{ 0x8086, 0x24dc, "ICH5" },
{ 0x8086, 0x2640, "ICH6" },
{ 0x8086, 0x2641, "ICH6M" },
{ 0x8086, 0x0f1c, "Bay Trail SoC" },
{ 0x8086, 0x27b0, "ICH7 DH" },
{ 0x8086, 0x27b8, "ICH7" },
{ 0x8086, 0x27b9, "ICH7M" },
{ 0x8086, 0x27bd, "ICH7M DH" },
{ 0x8086, 0x1c41, "Cougar Point" },
{ 0x8086, 0x1c42, "Cougar Point Desktop" },
{ 0x8086, 0x1c43, "Cougar Point Mobile" },
{ 0x8086, 0x1c44, "Cougar Point" },
{ 0x8086, 0x1c45, "Cougar Point" },
{ 0x8086, 0x1c46, "Cougar Point" },
{ 0x8086, 0x1c47, "Cougar Point" },
{ 0x8086, 0x1c48, "Cougar Point" },
{ 0x8086, 0x1c49, "Cougar Point" },
{ 0x8086, 0x1c4a, "Cougar Point" },
{ 0x8086, 0x1c4b, "Cougar Point" },
{ 0x8086, 0x1c4c, "Cougar Point" },
{ 0x8086, 0x1c4d, "Cougar Point" },
{ 0x8086, 0x1c4e, "Cougar Point" },
{ 0x8086, 0x1c4f, "Cougar Point" },
{ 0x8086, 0x1c50, "Cougar Point" },
{ 0x8086, 0x1c51, "Cougar Point" },
{ 0x8086, 0x1c52, "Cougar Point" },
{ 0x8086, 0x1c53, "Cougar Point" },
{ 0x8086, 0x1c54, "Cougar Point" },
{ 0x8086, 0x1c55, "Cougar Point" },
{ 0x8086, 0x1c56, "Cougar Point" },
{ 0x8086, 0x1c57, "Cougar Point" },
{ 0x8086, 0x1c58, "Cougar Point" },
{ 0x8086, 0x1c59, "Cougar Point" },
{ 0x8086, 0x1c5a, "Cougar Point" },
{ 0x8086, 0x1c5b, "Cougar Point" },
{ 0x8086, 0x1c5c, "Cougar Point" },
{ 0x8086, 0x1c5d, "Cougar Point" },
{ 0x8086, 0x1c5e, "Cougar Point" },
{ 0x8086, 0x1c5f, "Cougar Point" },
{ 0x8086, 0x1d40, "Patsburg" },
{ 0x8086, 0x1d41, "Patsburg" },
{ 0x8086, 0x1e40, "Panther Point" },
{ 0x8086, 0x1e41, "Panther Point" },
{ 0x8086, 0x1e42, "Panther Point" },
{ 0x8086, 0x1e43, "Panther Point" },
{ 0x8086, 0x1e44, "Panther Point" },
{ 0x8086, 0x1e45, "Panther Point" },
{ 0x8086, 0x1e46, "Panther Point" },
{ 0x8086, 0x1e47, "Panther Point" },
{ 0x8086, 0x1e48, "Panther Point" },
{ 0x8086, 0x1e49, "Panther Point" },
{ 0x8086, 0x1e4a, "Panther Point" },
{ 0x8086, 0x1e4b, "Panther Point" },
{ 0x8086, 0x1e4c, "Panther Point" },
{ 0x8086, 0x1e4d, "Panther Point" },
{ 0x8086, 0x1e4e, "Panther Point" },
{ 0x8086, 0x1e4f, "Panther Point" },
{ 0x8086, 0x1e50, "Panther Point" },
{ 0x8086, 0x1e51, "Panther Point" },
{ 0x8086, 0x1e52, "Panther Point" },
{ 0x8086, 0x1e53, "Panther Point" },
{ 0x8086, 0x1e54, "Panther Point" },
{ 0x8086, 0x1e55, "Panther Point" },
{ 0x8086, 0x1e56, "Panther Point" },
{ 0x8086, 0x1e57, "Panther Point" },
{ 0x8086, 0x1e58, "Panther Point" },
{ 0x8086, 0x1e59, "Panther Point" },
{ 0x8086, 0x1e5a, "Panther Point" },
{ 0x8086, 0x1e5b, "Panther Point" },
{ 0x8086, 0x1e5c, "Panther Point" },
{ 0x8086, 0x1e5d, "Panther Point" },
{ 0x8086, 0x1e5e, "Panther Point" },
{ 0x8086, 0x1e5f, "Panther Point" },
{ 0x8086, 0x1f38, "Avoton SoC" },
{ 0x8086, 0x1f39, "Avoton SoC" },
{ 0x8086, 0x1f3a, "Avoton SoC" },
{ 0x8086, 0x1f3b, "Avoton SoC" },
{ 0x8086, 0x2810, "ICH8R" },
{ 0x8086, 0x229c, "Braswell SoC" },
{ 0x8086, 0x2390, "Coleto Creek" },
{ 0x8086, 0x2310, "DH89xxCC" },
{ 0x8086, 0x2410, "ICH" },
{ 0x8086, 0x2420, "ICH0" },
{ 0x8086, 0x2440, "ICH2" },
{ 0x8086, 0x244c, "ICH2-M" },
{ 0x8086, 0x2480, "ICH3-S" },
{ 0x8086, 0x248c, "ICH3-M" },
{ 0x8086, 0x24c0, "ICH4" },
{ 0x8086, 0x24cc, "ICH4-M" },
{ 0x8086, 0x2450, "C-ICH" },
{ 0x8086, 0x24d0, "ICH5/ICH5R" },
{ 0x8086, 0x25a1, "6300ESB" },
{ 0x8086, 0x2640, "ICH6/ICH6R" },
{ 0x8086, 0x2641, "ICH6-M" },
{ 0x8086, 0x2642, "ICH6W/ICH6RW" },
{ 0x8086, 0x2670, "631xESB/632xESB" },
{ 0x8086, 0x2671, "631xESB/632xESB" },
{ 0x8086, 0x2672, "631xESB/632xESB" },
{ 0x8086, 0x2673, "631xESB/632xESB" },
{ 0x8086, 0x2674, "631xESB/632xESB" },
{ 0x8086, 0x2675, "631xESB/632xESB" },
{ 0x8086, 0x2676, "631xESB/632xESB" },
{ 0x8086, 0x2677, "631xESB/632xESB" },
{ 0x8086, 0x2678, "631xESB/632xESB" },
{ 0x8086, 0x2679, "631xESB/632xESB" },
{ 0x8086, 0x267a, "631xESB/632xESB" },
{ 0x8086, 0x267b, "631xESB/632xESB" },
{ 0x8086, 0x267c, "631xESB/632xESB" },
{ 0x8086, 0x267d, "631xESB/632xESB" },
{ 0x8086, 0x267e, "631xESB/632xESB" },
{ 0x8086, 0x267f, "631xESB/632xESB" },
{ 0x8086, 0x27b0, "ICH7DH" },
{ 0x8086, 0x27b8, "ICH7/ICH7R" },
{ 0x8086, 0x27b9, "ICH7-M/ICH7-U" },
{ 0x8086, 0x27bc, "NM10" },
{ 0x8086, 0x27bd, "ICH7-M DH" },
{ 0x8086, 0x2810, "ICH8/ICH8R" },
{ 0x8086, 0x2811, "ICH8M-E" },
{ 0x8086, 0x2812, "ICH8DH" },
{ 0x8086, 0x2814, "ICH8DO" },
{ 0x8086, 0x3a16, "ICH10R" },
{ 0x8086, 0x3a18, "ICH10" },
{ 0x8086, 0x3a1a, "ICH10D" },
{ 0x8086, 0x3b00, "PCH Desktop Full Featured" },
{ 0x8086, 0x3b01, "PCH Mobile Full Featured" },
{ 0x8086, 0x3b02, "P55" },
{ 0x8086, 0x3b03, "PM55" },
{ 0x8086, 0x3b06, "H55" },
{ 0x8086, 0x3b07, "QM57" },
{ 0x8086, 0x3b08, "H57" },
{ 0x8086, 0x3b09, "HM55" },
{ 0x8086, 0x3b0a, "Q57" },
{ 0x8086, 0x3b0b, "HM57" },
{ 0x8086, 0x3b0d, "PCH Mobile SFF Full Featured" },
{ 0x8086, 0x3b0f, "QS57" },
{ 0x8086, 0x3b12, "3400" },
{ 0x8086, 0x3b14, "3420" },
{ 0x8086, 0x3b16, "3450" },
{ 0x8086, 0x5031, "EP80579" },
{ 0x8086, 0x8c40, "Lynx Point" },
{ 0x8086, 0x8c41, "Lynx Point" },
{ 0x8086, 0x8c42, "Lynx Point" },
{ 0x8086, 0x8c43, "Lynx Point" },
{ 0x8086, 0x8c44, "Lynx Point" },
{ 0x8086, 0x8c45, "Lynx Point" },
{ 0x8086, 0x8c46, "Lynx Point" },
{ 0x8086, 0x8c47, "Lynx Point" },
{ 0x8086, 0x8c48, "Lynx Point" },
{ 0x8086, 0x8c49, "Lynx Point" },
{ 0x8086, 0x8c4a, "Lynx Point" },
{ 0x8086, 0x8c4b, "Lynx Point" },
{ 0x8086, 0x8c4c, "Lynx Point" },
{ 0x8086, 0x8c4d, "Lynx Point" },
{ 0x8086, 0x8c4e, "Lynx Point" },
{ 0x8086, 0x8c4f, "Lynx Point" },
{ 0x8086, 0x8c50, "Lynx Point" },
{ 0x8086, 0x8c51, "Lynx Point" },
{ 0x8086, 0x8c52, "Lynx Point" },
{ 0x8086, 0x8c53, "Lynx Point" },
{ 0x8086, 0x8c54, "Lynx Point" },
{ 0x8086, 0x8c55, "Lynx Point" },
{ 0x8086, 0x8c56, "Lynx Point" },
{ 0x8086, 0x8c57, "Lynx Point" },
{ 0x8086, 0x8c58, "Lynx Point" },
{ 0x8086, 0x8c59, "Lynx Point" },
{ 0x8086, 0x8c5a, "Lynx Point" },
{ 0x8086, 0x8c5b, "Lynx Point" },
{ 0x8086, 0x8c5c, "Lynx Point" },
{ 0x8086, 0x8c5d, "Lynx Point" },
{ 0x8086, 0x8c5e, "Lynx Point" },
{ 0x8086, 0x8c5f, "Lynx Point" },
{ 0x8086, 0x8cc1, "9 Series" },
{ 0x8086, 0x8cc2, "9 Series" },
{ 0x8086, 0x8cc3, "9 Series" },
{ 0x8086, 0x8cc4, "9 Series" },
{ 0x8086, 0x8cc6, "9 Series" },
{ 0x8086, 0x8d40, "Wellsburg" },
{ 0x8086, 0x8d41, "Wellsburg" },
{ 0x8086, 0x8d42, "Wellsburg" },
{ 0x8086, 0x8d43, "Wellsburg" },
{ 0x8086, 0x8d44, "Wellsburg" },
{ 0x8086, 0x8d45, "Wellsburg" },
{ 0x8086, 0x8d46, "Wellsburg" },
{ 0x8086, 0x8d47, "Wellsburg" },
{ 0x8086, 0x8d48, "Wellsburg" },
{ 0x8086, 0x8d49, "Wellsburg" },
{ 0x8086, 0x8d4a, "Wellsburg" },
{ 0x8086, 0x8d4b, "Wellsburg" },
{ 0x8086, 0x8d4c, "Wellsburg" },
{ 0x8086, 0x8d4d, "Wellsburg" },
{ 0x8086, 0x8d4e, "Wellsburg" },
{ 0x8086, 0x8d4f, "Wellsburg" },
{ 0x8086, 0x8d50, "Wellsburg" },
{ 0x8086, 0x8d51, "Wellsburg" },
{ 0x8086, 0x8d52, "Wellsburg" },
{ 0x8086, 0x8d53, "Wellsburg" },
{ 0x8086, 0x8d54, "Wellsburg" },
{ 0x8086, 0x8d55, "Wellsburg" },
{ 0x8086, 0x8d56, "Wellsburg" },
{ 0x8086, 0x8d57, "Wellsburg" },
{ 0x8086, 0x8d58, "Wellsburg" },
{ 0x8086, 0x8d59, "Wellsburg" },
{ 0x8086, 0x8d5a, "Wellsburg" },
{ 0x8086, 0x8d5b, "Wellsburg" },
{ 0x8086, 0x8d5c, "Wellsburg" },
{ 0x8086, 0x8d5d, "Wellsburg" },
{ 0x8086, 0x8d5e, "Wellsburg" },
{ 0x8086, 0x8d5f, "Wellsburg" },
{ 0x8086, 0x9c40, "Lynx Point_LP" },
{ 0x8086, 0x9c41, "Lynx Point_LP" },
{ 0x8086, 0x9c42, "Lynx Point_LP" },
{ 0x8086, 0x9c43, "Lynx Point_LP" },
{ 0x8086, 0x9c44, "Lynx Point_LP" },
{ 0x8086, 0x9c45, "Lynx Point_LP" },
{ 0x8086, 0x9c46, "Lynx Point_LP" },
{ 0x8086, 0x9c47, "Lynx Point_LP" },
{ 0x8086, 0x9cc1, "Wildcat Point_LP" },
{ 0x8086, 0x9cc2, "Wildcat Point_LP" },
{ 0x8086, 0x9cc3, "Wildcat Point_LP" },
{ 0x8086, 0x9cc5, "Wildcat Point_LP" },
{ 0x8086, 0x9cc6, "Wildcat Point_LP" },
{ 0x8086, 0x9cc7, "Wildcat Point_LP" },
{ 0x8086, 0x9cc9, "Wildcat Point_LP" },
};
void force_enable_hpet(pci_dt_t *lpc_dev)
static struct lpc_controller_t lpc_controllers_nvidia[] = {
// Default unknown chipset
{ 0, 0, "" },
// nVidia
{ 0x10de, 0x0aac, "MCP79" },
{ 0x10de, 0x0aae, "MCP79" },
{ 0x10de, 0x0aaf, "MCP79" },
{ 0x10de, 0x0d80, "MCP89" },
{ 0x10de, 0x0d81, "MCP89" },
{ 0x10de, 0x0d82, "MCP89" },
{ 0x10de, 0x0d83, "MCP89" },
};
static struct lpc_controller_t lpc_controllers_via[] = {
// Default unknown chipset
{ 0, 0, "" },
{ 0x1106, 0x3050, "VT82C596A" },
{ 0x1106, 0x3051, "VT82C596B" },
{ 0x1106, 0x8235, "VT8231" },
{ 0x1106, 0x3074, "VT8233" },
{ 0x1106, 0x3147, "VT8233A" },
{ 0x1106, 0x3177, "VT8235" },
{ 0x1106, 0x3227, "VT8237R" },
{ 0x1106, 0x3337, "VT8237A" },
{ 0x1106, 0x3372, "VT8237S" },
{ 0x1106, 0x3287, "VT8251" },
{ 0x1106, 0x8324, "CX700" },
{ 0x1106, 0x8353, "VX800/VX820" },
{ 0x1106, 0x8409, "VX855/VX875" },
};
/* ErmaC add lpc for nVidia */
void force_enable_hpet_nvidia(pci_dt_t *lpc_dev)
{
uint32_tval, hpet_address = 0xFED00000;
int i;
void*rcba;
for(i = 1; i < sizeof(lpc_controllers_nvidia) / sizeof(lpc_controllers_nvidia[0]); i++)
{
if ((lpc_controllers_nvidia[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_nvidia[i].device == lpc_dev->device_id))
{
rcba = (void *)(pci_config_read32(lpc_dev->dev.addr, 0xF0) & 0xFFFFC000);
DBG("nVidia(R) %s LPC Interface [%04x:%04x], MMIO @ 0x%lx\n",
lpc_controllers_nvidia[i].name, lpc_dev->vendor_id, lpc_dev->device_id, rcba);
if (rcba == 0)
{
printf(" RCBA disabled; cannot force enable HPET\n");
}
else
{
val = REG32(rcba, 0x3404);
if (val & 0x80)
{
// HPET is enabled in HPTC. Just not reported by BIOS
DBG(" HPET is enabled in HPTC, just not reported by BIOS\n");
hpet_address |= (val & 3) << 12 ;
DBG(" HPET MMIO @ 0x%lx\n", hpet_address);
}
else
{
// HPET disabled in HPTC. Trying to enable
DBG(" HPET is disabled in HPTC, trying to enable\n");
REG32(rcba, 0x3404) = val | 0x80;
hpet_address |= (val & 3) << 12 ;
DBG(" Force enabled HPET, MMIO @ 0x%lx\n", hpet_address);
}
// verify if the job is done
val = REG32(rcba, 0x3404);
if (!(val & 0x80))
{
printf(" Failed to force enable HPET\n");
}
}
break;
}
}
}
void force_enable_hpet_via(pci_dt_t *lpc_dev)
{
uint32_tval, hpet_address = 0xFED00000;
int i;
for(i = 1; i < sizeof(lpc_controllers_via) / sizeof(lpc_controllers_via[0]); i++)
{
if ((lpc_controllers_via[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_via[i].device == lpc_dev->device_id))
{
val = pci_config_read32(lpc_dev->dev.addr, 0x68);
DBG("VIA %s LPC Interface [%04x:%04x], MMIO\n",
lpc_controllers_via[i].name, lpc_dev->vendor_id, lpc_dev->device_id);
if (val & 0x80)
{
hpet_address = (val & ~0x3ff);
DBG("HPET at 0x%lx\n", hpet_address);
}
else
{
val = 0xfed00000 | 0x80;
pci_config_write32(lpc_dev->dev.addr, 0x68, val);
val = pci_config_read32(lpc_dev->dev.addr, 0x68);
if (val & 0x80)
{
hpet_address = (val & ~0x3ff);
DBG("Force enabled HPET at 0x%lx\n", hpet_address);
}
else
{
DBG("Unable to enable HPET");
}
}
}
}
}
void force_enable_hpet_intel(pci_dt_t *lpc_dev)
{
uint32_tval, hpet_address = 0xFED00000;
int i;
void*rcba;
/* LPC on Intel ICH is always (?) at 00:1f.0 */
for(i = 1; i < sizeof(lpc_controllers) / sizeof(lpc_controllers[0]); i++)
if ((lpc_controllers[i].vendor == lpc_dev->vendor_id)
&& (lpc_controllers[i].device == lpc_dev->device_id))
for(i = 1; i < sizeof(lpc_controllers_intel) / sizeof(lpc_controllers_intel[0]); i++)
{
if ((lpc_controllers_intel[i].vendor == lpc_dev->vendor_id) && (lpc_controllers_intel[i].device == lpc_dev->device_id))
{
rcba = (void *)(pci_config_read32(lpc_dev->dev.addr, 0xF0) & 0xFFFFC000);
DBG("Intel(R) %s LPC Interface [%04x:%04x], MMIO @ 0x%lx\n",
lpc_controllers[i].name, lpc_dev->vendor_id, lpc_dev->device_id, rcba);
lpc_controllers_intel[i].name, lpc_dev->vendor_id, lpc_dev->device_id, rcba);
if (rcba == 0)
{
}
break;
}
}
}
void force_enable_hpet(pci_dt_t *lpc_dev)
{
switch(lpc_dev->vendor_id)
{
case 0x8086:
force_enable_hpet_intel(lpc_dev);
break;
case 0x10de:
force_enable_hpet_nvidia(lpc_dev);
break;
case 0x1106:
force_enable_hpet_via(lpc_dev);
break;
}
#if DEBUG_HPET
printf("Press [Enter] to continue...\n");
getchar();
#endif
}

Archive Download the corresponding diff file

Revision: 2674