Chameleon

Chameleon Svn Source Tree

Root/branches/chucko/i386/libsaio/acpi_patcher.c

1/*
2 * Copyright 2008 mackerintel
3 * 2010 mojodojo, 2012 slice
4 */
5
6#include "libsaio.h"
7#include "boot.h"
8#include "bootstruct.h"
9#include "acpi.h"
10#include "efi_tables.h"
11#include "fake_efi.h"
12#include "acpi_patcher.h"
13#include "platform.h"
14#include "cpu.h"
15#include "aml_generator.h"
16
17#ifndef DEBUG_ACPI
18#define DEBUG_ACPI 0
19#endif
20
21#if DEBUG_ACPI==2
22#define DBG(x...) {printf(x); sleep(1);}
23#elif DEBUG_ACPI==1
24#define DBG(x...) printf(x)
25#else
26#define DBG(x...)
27#endif
28
29// Slice: New signature compare function
30boolean_t tableSign(char *table, const char *sgn)
31{
32int i;
33for (i=0; i<4; i++)
34{
35if ((table[i] &~0x20) != (sgn[i] &~0x20))
36{
37return false;
38}
39}
40return true;
41}
42
43/* Gets the ACPI 1.0 RSDP address */
44static struct acpi_2_rsdp* getAddressOfAcpiTable()
45{
46/* TODO: Before searching the BIOS space we are supposed to search the first 1K of the EBDA */
47
48void *acpi_addr = (void*)ACPI_RANGE_START;
49for(; acpi_addr <= (void*)ACPI_RANGE_END; acpi_addr += 16)
50{
51if(*(uint64_t *)acpi_addr == ACPI_SIGNATURE_UINT64_LE)
52{
53uint8_t csum = checksum8(acpi_addr, 20);
54if(csum == 0)
55{
56// Only return the table if it is a true version 1.0 table (Revision 0)
57if(((struct acpi_2_rsdp*)acpi_addr)->Revision == 0)
58return acpi_addr;
59}
60}
61}
62return NULL;
63}
64
65/* Gets the ACPI 2.0 RSDP address */
66static struct acpi_2_rsdp* getAddressOfAcpi20Table()
67{
68/* TODO: Before searching the BIOS space we are supposed to search the first 1K of the EBDA */
69
70void *acpi_addr = (void*)ACPI_RANGE_START;
71for(; acpi_addr <= (void*)ACPI_RANGE_END; acpi_addr += 16)
72{
73if(*(uint64_t *)acpi_addr == ACPI_SIGNATURE_UINT64_LE)
74{
75uint8_t csum = checksum8(acpi_addr, 20);
76
77/* Only assume this is a 2.0 or better table if the revision is greater than 0
78 * NOTE: ACPI 3.0 spec only seems to say that 1.0 tables have revision 1
79 * and that the current revision is 2.. I am going to assume that rev > 0 is 2.0.
80 */
81
82if(csum == 0 && (((struct acpi_2_rsdp*)acpi_addr)->Revision > 0))
83{
84uint8_t csum2 = checksum8(acpi_addr, sizeof(struct acpi_2_rsdp));
85if(csum2 == 0)
86{
87return acpi_addr;
88}
89}
90}
91}
92return NULL;
93}
94
95/* The folowing ACPI Table search algo. should be reused anywhere needed:*/
96/* WARNING: outDirspec string will be overwritten by subsequent calls! */
97int search_and_get_acpi_fd(const char * filename, const char ** outDirspec)
98{
99int fd = 0;
100static char dirSpec[512];
101
102// Try finding 'filename' in the usual places
103// Start searching any potential location for ACPI Table
104snprintf(dirSpec, sizeof(dirSpec), "%s", filename);
105fd = open(dirSpec, 0);
106if (fd < 0)
107 {
108 snprintf(dirSpec, sizeof(dirSpec), "/Extra/%s", filename);
109 fd = open(dirSpec, 0);
110 if (fd < 0)
111{
112 snprintf(dirSpec, sizeof(dirSpec), "bt(0,0)/Extra/%s", filename);
113 fd = open(dirSpec, 0);
114 if (fd < 0)
115{
116 // NOT FOUND:
117 verbose("ACPI Table not found: %s\n", filename);
118 *dirSpec = '\0';
119}
120}
121}
122
123if (outDirspec) *outDirspec = dirSpec;
124return fd;
125}
126
127void *loadACPITable (const char * filename)
128{
129void *tableAddr;
130const char * dirspec=NULL;
131
132int fd = search_and_get_acpi_fd(filename, &dirspec);
133
134if (fd>=0)
135{
136tableAddr=(void*)AllocateKernelMemory(file_size (fd));
137if (tableAddr)
138{
139if (read (fd, tableAddr, file_size (fd))!=file_size (fd))
140{
141printf("Couldn't read table %s\n",dirspec);
142free (tableAddr);
143close (fd);
144return NULL;
145}
146
147DBG("Table %s read and stored at: %x\n", dirspec, tableAddr);
148close (fd);
149return tableAddr;
150}
151close (fd);
152printf("Couldn't allocate memory for table \n", dirspec);
153}
154//printf("Couldn't find table %s\n", filename);
155return NULL;
156}
157
158uint8_tacpi_cpu_count = 0;
159char* acpi_cpu_name[32];
160uint32_t acpi_cpu_p_blk = 0;
161
162void get_acpi_cpu_names(unsigned char* dsdt, uint32_t length)
163{
164uint32_t i;
165
166DBG("start finding cpu names. length %d\n", length);
167
168for (i=0; i<length-7; i++)
169{
170if (dsdt[i] == 0x5B && dsdt[i+1] == 0x83) // ProcessorOP
171{
172DBG("dsdt: %x%x\n", dsdt[i], dsdt[i+1]);
173
174uint32_t offset = i + 3 + (dsdt[i+2] >> 6);
175
176bool add_name = true;
177
178uint8_t j;
179
180for (j=0; j<4; j++)
181{
182char c = dsdt[offset+j];
183
184if (!aml_isvalidchar(c))
185{
186add_name = false;
187verbose("Invalid character found in ProcessorOP 0x%x!\n", c);
188break;
189}
190}
191
192if (add_name)
193{
194acpi_cpu_name[acpi_cpu_count] = malloc(4);
195memcpy(acpi_cpu_name[acpi_cpu_count], dsdt+offset, 4);
196i = offset + 5;
197
198if (acpi_cpu_count == 0)
199acpi_cpu_p_blk = dsdt[i] | (dsdt[i+1] << 8);
200
201verbose("Found ACPI CPU: %c%c%c%c\n", acpi_cpu_name[acpi_cpu_count][0], acpi_cpu_name[acpi_cpu_count][1], acpi_cpu_name[acpi_cpu_count][2], acpi_cpu_name[acpi_cpu_count][3]);
202
203if (++acpi_cpu_count == 32)
204{
205return;
206}
207}
208}
209}
210
211DBG("end finding cpu names: cpu names found: %d\n", acpi_cpu_count);
212}
213
214struct acpi_2_ssdt *generate_cst_ssdt(struct acpi_2_fadt* fadt)
215{
216char ssdt_header[] =
217{
2180x53, 0x53, 0x44, 0x54, 0xE7, 0x00, 0x00, 0x00, /* SSDT.... */
2190x01, 0x17, 0x50, 0x6D, 0x52, 0x65, 0x66, 0x41, /* ..PmRefA */
2200x43, 0x70, 0x75, 0x43, 0x73, 0x74, 0x00, 0x00, /* CpuCst.. */
2210x00, 0x10, 0x00, 0x00, 0x49, 0x4E, 0x54, 0x4C, /* ....INTL */
2220x31, 0x03, 0x10, 0x20/* 1.._*/
223};
224
225char resource_template_register_fixedhw[] =
226{
2270x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F,
2280x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2290x00, 0x00, 0x01, 0x79, 0x00
230};
231
232char resource_template_register_systemio[] =
233{
2340x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x01,
2350x08, 0x00, 0x00, 0x15, 0x04, 0x00, 0x00, 0x00,
2360x00, 0x00, 0x00, 0x79, 0x00,
237};
238
239if (Platform.CPU.Vendor != 0x756E6547) {
240verbose ("Not an Intel platform: C-States will not be generated !!!\n");
241return NULL;
242}
243
244if (fadt == NULL) {
245verbose ("FACP not exists: C-States will not be generated !!!\n");
246return NULL;
247}
248
249struct acpi_2_dsdt* dsdt = (void*)fadt->DSDT;
250
251if (dsdt == NULL) {
252verbose ("DSDT not found: C-States will not be generated !!!\n");
253return NULL;
254}
255
256if (acpi_cpu_count == 0)
257get_acpi_cpu_names((void*)dsdt, dsdt->Length);
258
259if (acpi_cpu_count > 0)
260{
261bool c2_enabled = false;
262bool c3_enabled = false;
263bool c4_enabled = false;
264bool cst_using_systemio = false;
265
266getBoolForKey(kEnableC2State, &c2_enabled, &bootInfo->chameleonConfig);
267getBoolForKey(kEnableC3State, &c3_enabled, &bootInfo->chameleonConfig);
268getBoolForKey(kEnableC4State, &c4_enabled, &bootInfo->chameleonConfig);
269getBoolForKey(kCSTUsingSystemIO, &cst_using_systemio, &bootInfo->chameleonConfig);
270
271c2_enabled = c2_enabled | (fadt->C2_Latency < 100);
272c3_enabled = c3_enabled | (fadt->C3_Latency < 1000);
273
274unsigned char cstates_count = 1 + (c2_enabled ? 1 : 0) + (c3_enabled ? 1 : 0);
275
276struct aml_chunk* root = aml_create_node(NULL);
277aml_add_buffer(root, ssdt_header, sizeof(ssdt_header)); // SSDT header
278struct aml_chunk* scop = aml_add_scope(root, "\\_PR_");
279struct aml_chunk* name = aml_add_name(scop, "CST_");
280struct aml_chunk* pack = aml_add_package(name);
281aml_add_byte(pack, cstates_count);
282
283struct aml_chunk* tmpl = aml_add_package(pack);
284if (cst_using_systemio)
285{
286// C1
287resource_template_register_fixedhw[8] = 0x00;
288resource_template_register_fixedhw[9] = 0x00;
289resource_template_register_fixedhw[18] = 0x00;
290aml_add_buffer(tmpl, resource_template_register_fixedhw, sizeof(resource_template_register_fixedhw));
291aml_add_byte(tmpl, 0x01); // C1
292aml_add_word(tmpl, 0x0001); // Latency
293aml_add_dword(tmpl, 0x000003e8); // Power
294
295uint8_t p_blk_lo, p_blk_hi;
296
297if (c2_enabled) // C2
298{
299p_blk_lo = acpi_cpu_p_blk + 4;
300p_blk_hi = (acpi_cpu_p_blk + 4) >> 8;
301
302tmpl = aml_add_package(pack);
303resource_template_register_systemio[11] = p_blk_lo; // C2
304resource_template_register_systemio[12] = p_blk_hi; // C2
305aml_add_buffer(tmpl, resource_template_register_systemio, sizeof(resource_template_register_systemio));
306aml_add_byte(tmpl, 0x02); // C2
307aml_add_word(tmpl, 0x0040); // Latency
308aml_add_dword(tmpl, 0x000001f4); // Power
309}
310
311if (c4_enabled) // C4
312{
313p_blk_lo = acpi_cpu_p_blk + 5;
314p_blk_hi = (acpi_cpu_p_blk + 5) >> 8;
315
316tmpl = aml_add_package(pack);
317resource_template_register_systemio[11] = p_blk_lo; // C4
318resource_template_register_systemio[12] = p_blk_hi; // C4
319aml_add_buffer(tmpl, resource_template_register_systemio, sizeof(resource_template_register_systemio));
320aml_add_byte(tmpl, 0x04); // C4
321aml_add_word(tmpl, 0x0080); // Latency
322aml_add_dword(tmpl, 0x000000C8); // Power
323}
324else if (c3_enabled) // C3
325{
326p_blk_lo = acpi_cpu_p_blk + 5;
327p_blk_hi = (acpi_cpu_p_blk + 5) >> 8;
328
329tmpl = aml_add_package(pack);
330resource_template_register_systemio[11] = p_blk_lo; // C3
331resource_template_register_systemio[12] = p_blk_hi; // C3
332aml_add_buffer(tmpl, resource_template_register_systemio, sizeof(resource_template_register_systemio));
333aml_add_byte(tmpl, 0x03);// C3
334aml_add_word(tmpl, 0x0060);// Latency
335aml_add_dword(tmpl, 0x0000015e);// Power
336}
337}
338else
339{
340// C1
341resource_template_register_fixedhw[11] = 0x00; // C1
342aml_add_buffer(tmpl, resource_template_register_fixedhw, sizeof(resource_template_register_fixedhw));
343aml_add_byte(tmpl, 0x01);// C1
344aml_add_word(tmpl, 0x0001);// Latency
345aml_add_dword(tmpl, 0x000003e8);// Power
346
347resource_template_register_fixedhw[18] = 0x03;
348
349if (c2_enabled) // C2
350{
351tmpl = aml_add_package(pack);
352resource_template_register_fixedhw[11] = 0x10; // C2
353aml_add_buffer(tmpl, resource_template_register_fixedhw, sizeof(resource_template_register_fixedhw));
354aml_add_byte(tmpl, 0x02);// C2
355aml_add_word(tmpl, 0x0040);// Latency
356aml_add_dword(tmpl, 0x000001f4);// Power
357}
358
359if (c4_enabled) // C4
360{
361tmpl = aml_add_package(pack);
362resource_template_register_fixedhw[11] = 0x30; // C4
363aml_add_buffer(tmpl, resource_template_register_fixedhw, sizeof(resource_template_register_fixedhw));
364aml_add_byte(tmpl, 0x04);// C4
365aml_add_word(tmpl, 0x0080);// Latency
366aml_add_dword(tmpl, 0x000000C8);// Power
367}
368else if (c3_enabled)
369{
370tmpl = aml_add_package(pack);
371resource_template_register_fixedhw[11] = 0x20; // C3
372aml_add_buffer(tmpl, resource_template_register_fixedhw, sizeof(resource_template_register_fixedhw));
373aml_add_byte(tmpl, 0x03);// C3
374aml_add_word(tmpl, 0x0060);// Latency
375aml_add_dword(tmpl, 0x0000015e);// Power
376}
377}
378
379// Aliaces
380int i;
381for (i = 0; i < acpi_cpu_count; i++)
382{
383char name[9];
384sprintf(name, "_PR_%c%c%c%c", acpi_cpu_name[i][0], acpi_cpu_name[i][1], acpi_cpu_name[i][2], acpi_cpu_name[i][3]);
385
386scop = aml_add_scope(root, name);
387aml_add_alias(scop, "CST_", "_CST");
388}
389
390aml_calculate_size(root);
391
392struct acpi_2_ssdt *ssdt = (struct acpi_2_ssdt *)AllocateKernelMemory(root->Size);
393
394aml_write_node(root, (void*)ssdt, 0);
395
396ssdt->Length = root->Size;
397ssdt->Checksum = 0;
398ssdt->Checksum = 256 - checksum8(ssdt, ssdt->Length);
399
400aml_destroy_node(root);
401
402// dumpPhysAddr("C-States SSDT content: ", ssdt, ssdt->Length);
403
404verbose ("SSDT with CPU C-States generated successfully\n");
405
406return ssdt;
407}
408else
409{
410verbose ("ACPI CPUs not found: C-States not generated !!!\n");
411}
412
413return NULL;
414}
415
416struct acpi_2_ssdt *generate_pss_ssdt(struct acpi_2_dsdt* dsdt)
417{
418char ssdt_header[] =
419{
4200x53, 0x53, 0x44, 0x54, 0x7E, 0x00, 0x00, 0x00, /* SSDT.... */
4210x01, 0x6A, 0x50, 0x6D, 0x52, 0x65, 0x66, 0x00, /* ..PmRef. */
4220x43, 0x70, 0x75, 0x50, 0x6D, 0x00, 0x00, 0x00, /* CpuPm... */
4230x00, 0x30, 0x00, 0x00, 0x49, 0x4E, 0x54, 0x4C, /* .0..INTL */
4240x31, 0x03, 0x10, 0x20,/* 1.._*/
425};
426
427if (Platform.CPU.Vendor != 0x756E6547) {
428verbose ("Not an Intel platform: P-States will not be generated !!!\n");
429return NULL;
430}
431
432if (!(Platform.CPU.Features & CPU_FEATURE_MSR)) {
433verbose ("Unsupported CPU: P-States will not be generated !!! No MSR support\n");
434return NULL;
435}
436
437if (acpi_cpu_count == 0)
438get_acpi_cpu_names((void*)dsdt, dsdt->Length);
439
440if (acpi_cpu_count > 0)
441{
442struct p_state initial, maximum, minimum, p_states[32];
443uint8_t p_states_count = 0;
444
445// Retrieving P-States, ported from code by superhai (c)
446switch (Platform.CPU.Family) {
447case 0x06:
448{
449switch (Platform.CPU.Model)
450{
451case CPU_MODEL_DOTHAN:// Intel Pentium M
452case CPU_MODEL_YONAH:// Intel Mobile Core Solo, Duo
453case CPU_MODEL_MEROM:// Intel Mobile Core 2 Solo, Duo, Xeon 30xx, Xeon 51xx, Xeon X53xx, Xeon E53xx, Xeon X32xx
454case CPU_MODEL_PENRYN:// Intel Core 2 Solo, Duo, Quad, Extreme, Xeon X54xx, Xeon X33xx
455case CPU_MODEL_ATOM:// Intel Atom (45nm)
456{
457bool cpu_dynamic_fsb = false;
458
459if (rdmsr64(MSR_IA32_EXT_CONFIG) & (1 << 27))
460{
461wrmsr64(MSR_IA32_EXT_CONFIG, (rdmsr64(MSR_IA32_EXT_CONFIG) | (1 << 28)));
462delay(1);
463cpu_dynamic_fsb = rdmsr64(MSR_IA32_EXT_CONFIG) & (1 << 28);
464}
465
466bool cpu_noninteger_bus_ratio = (rdmsr64(MSR_IA32_PERF_STATUS) & (1ULL << 46));
467
468initial.Control = rdmsr64(MSR_IA32_PERF_STATUS);
469
470maximum.Control = ((rdmsr64(MSR_IA32_PERF_STATUS) >> 32) & 0x1F3F) | (0x4000 * cpu_noninteger_bus_ratio);
471maximum.CID = ((maximum.FID & 0x1F) << 1) | cpu_noninteger_bus_ratio;
472
473minimum.FID = ((rdmsr64(MSR_IA32_PERF_STATUS) >> 24) & 0x1F) | (0x80 * cpu_dynamic_fsb);
474minimum.VID = ((rdmsr64(MSR_IA32_PERF_STATUS) >> 48) & 0x3F);
475
476if (minimum.FID == 0)
477{
478uint64_t msr;
479uint8_t i;
480// Probe for lowest fid
481for (i = maximum.FID; i >= 0x6; i--)
482{
483msr = rdmsr64(MSR_IA32_PERF_CONTROL);
484wrmsr64(MSR_IA32_PERF_CONTROL, (msr & 0xFFFFFFFFFFFF0000ULL) | (i << 8) | minimum.VID);
485intel_waitforsts();
486minimum.FID = (rdmsr64(MSR_IA32_PERF_STATUS) >> 8) & 0x1F;
487delay(1);
488}
489
490msr = rdmsr64(MSR_IA32_PERF_CONTROL);
491wrmsr64(MSR_IA32_PERF_CONTROL, (msr & 0xFFFFFFFFFFFF0000ULL) | (maximum.FID << 8) | maximum.VID);
492intel_waitforsts();
493}
494
495if (minimum.VID == maximum.VID)
496{
497uint64_t msr;
498uint8_t i;
499// Probe for lowest vid
500for (i = maximum.VID; i > 0xA; i--)
501{
502msr = rdmsr64(MSR_IA32_PERF_CONTROL);
503wrmsr64(MSR_IA32_PERF_CONTROL, (msr & 0xFFFFFFFFFFFF0000ULL) | (minimum.FID << 8) | i);
504intel_waitforsts();
505minimum.VID = rdmsr64(MSR_IA32_PERF_STATUS) & 0x3F;
506delay(1);
507}
508
509msr = rdmsr64(MSR_IA32_PERF_CONTROL);
510wrmsr64(MSR_IA32_PERF_CONTROL, (msr & 0xFFFFFFFFFFFF0000ULL) | (maximum.FID << 8) | maximum.VID);
511intel_waitforsts();
512}
513
514minimum.CID = ((minimum.FID & 0x1F) << 1) >> cpu_dynamic_fsb;
515
516// Sanity check
517if (maximum.CID < minimum.CID)
518{
519DBG("P-States: Insane FID values!");
520p_states_count = 0;
521}
522else
523{
524// Finalize P-States
525// Find how many P-States machine supports
526p_states_count = maximum.CID - minimum.CID + 1;
527
528if (p_states_count > 32)
529p_states_count = 32;
530
531uint8_t vidstep;
532uint8_t i = 0, u, invalid = 0;
533
534vidstep = ((maximum.VID << 2) - (minimum.VID << 2)) / (p_states_count - 1);
535
536for (u = 0; u < p_states_count; u++)
537{
538i = u - invalid;
539
540p_states[i].CID = maximum.CID - u;
541p_states[i].FID = (p_states[i].CID >> 1);
542
543if (p_states[i].FID < 0x6)
544{
545if (cpu_dynamic_fsb)
546p_states[i].FID = (p_states[i].FID << 1) | 0x80;
547}
548else if (cpu_noninteger_bus_ratio)
549{
550p_states[i].FID = p_states[i].FID | (0x40 * (p_states[i].CID & 0x1));
551}
552
553if (i && p_states[i].FID == p_states[i-1].FID)
554invalid++;
555
556p_states[i].VID = ((maximum.VID << 2) - (vidstep * u)) >> 2;
557
558uint32_t multiplier = p_states[i].FID & 0x1f;// = 0x08
559bool half = p_states[i].FID & 0x40;// = 0x01
560bool dfsb = p_states[i].FID & 0x80;// = 0x00
561uint32_t fsb = Platform.CPU.FSBFrequency / 1000000; // = 400
562uint32_t halffsb = (fsb + 1) >> 1;// = 200
563uint32_t frequency = (multiplier * fsb);// = 3200
564
565p_states[i].Frequency = (frequency + (half * halffsb)) >> dfsb;// = 3200 + 200 = 3400
566}
567
568p_states_count -= invalid;
569}
570
571break;
572}
573case CPU_MODEL_FIELDS:// Intel Core i5, i7, Xeon X34xx LGA1156 (45nm)
574case CPU_MODEL_DALES:
575case CPU_MODEL_DALES_32NM:// Intel Core i3, i5 LGA1156 (32nm)
576case CPU_MODEL_NEHALEM:// Intel Core i7, Xeon W35xx, Xeon X55xx, Xeon E55xx LGA1366 (45nm)
577case CPU_MODEL_NEHALEM_EX:// Intel Xeon X75xx, Xeon X65xx, Xeon E75xx, Xeon E65xx
578case CPU_MODEL_WESTMERE:// Intel Core i7, Xeon X56xx, Xeon E56xx, Xeon W36xx LGA1366 (32nm) 6 Core
579case CPU_MODEL_WESTMERE_EX:// Intel Xeon E7
580case CPU_MODEL_SANDYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (32nm)
581case CPU_MODEL_JAKETOWN:// Intel Core i7, Xeon E5 LGA2011 (32nm)
582case CPU_MODEL_IVYBRIDGE:// Intel Core i3, i5, i7 LGA1155 (22nm)
583case CPU_MODEL_HASWELL://
584case CPU_MODEL_IVYBRIDGE_XEON: //
585//case CPU_MODEL_HASWELL_H://
586case CPU_MODEL_HASWELL_MB://
587case CPU_MODEL_HASWELL_ULT://
588case CPU_MODEL_CRYSTALWELL://
589
590{
591if ((Platform.CPU.Model == CPU_MODEL_SANDYBRIDGE) || (Platform.CPU.Model == CPU_MODEL_JAKETOWN) ||
592(Platform.CPU.Model == CPU_MODEL_IVYBRIDGE) || (Platform.CPU.Model == CPU_MODEL_HASWELL) ||
593(Platform.CPU.Model == CPU_MODEL_IVYBRIDGE_XEON) || (Platform.CPU.Model == CPU_MODEL_HASWELL_MB) ||
594(Platform.CPU.Model == CPU_MODEL_HASWELL_ULT) || (Platform.CPU.Model == CPU_MODEL_CRYSTALWELL))
595{
596maximum.Control = (rdmsr64(MSR_IA32_PERF_STATUS) >> 8) & 0xff;
597}
598else
599{
600maximum.Control = rdmsr64(MSR_IA32_PERF_STATUS) & 0xff;
601}
602
603minimum.Control = (rdmsr64(MSR_PLATFORM_INFO) >> 40) & 0xff;
604
605verbose("P-States: min 0x%x, max 0x%x\n", minimum.Control, maximum.Control);
606
607// Sanity check
608if (maximum.Control < minimum.Control)
609{
610DBG("Insane control values!");
611p_states_count = 0;
612}
613else
614{
615uint8_t i;
616p_states_count = 0;
617
618for (i = maximum.Control; i >= minimum.Control; i--)
619{
620p_states[p_states_count].Control = i;
621p_states[p_states_count].CID = p_states[p_states_count].Control << 1;
622p_states[p_states_count].Frequency = (Platform.CPU.FSBFrequency / 1000000) * i;
623p_states_count++;
624}
625}
626
627break;
628}
629default:
630verbose ("Unsupported CPU: P-States not generated !!! Unknown CPU Type\n");
631break;
632}
633}
634}
635
636// Generating SSDT
637if (p_states_count > 0)
638{
639int i;
640
641struct aml_chunk* root = aml_create_node(NULL);
642aml_add_buffer(root, ssdt_header, sizeof(ssdt_header)); // SSDT header
643
644struct aml_chunk* scop = aml_add_scope(root, "\\_PR_");
645struct aml_chunk* name = aml_add_name(scop, "PSS_");
646struct aml_chunk* pack = aml_add_package(name);
647
648for (i = 0; i < p_states_count; i++)
649{
650struct aml_chunk* pstt = aml_add_package(pack);
651
652aml_add_dword(pstt, p_states[i].Frequency);
653aml_add_dword(pstt, 0x00000000); // Power
654aml_add_dword(pstt, 0x0000000A); // Latency
655aml_add_dword(pstt, 0x0000000A); // Latency
656aml_add_dword(pstt, p_states[i].Control);
657aml_add_dword(pstt, i+1); // Status
658}
659
660// Add aliaces
661for (i = 0; i < acpi_cpu_count; i++)
662{
663char name[9];
664sprintf(name, "_PR_%c%c%c%c", acpi_cpu_name[i][0], acpi_cpu_name[i][1], acpi_cpu_name[i][2], acpi_cpu_name[i][3]);
665
666scop = aml_add_scope(root, name);
667aml_add_alias(scop, "PSS_", "_PSS");
668}
669
670aml_calculate_size(root);
671
672struct acpi_2_ssdt *ssdt = (struct acpi_2_ssdt *)AllocateKernelMemory(root->Size);
673
674aml_write_node(root, (void*)ssdt, 0);
675
676ssdt->Length = root->Size;
677ssdt->Checksum = 0;
678ssdt->Checksum = 256 - checksum8(ssdt, ssdt->Length);
679
680aml_destroy_node(root);
681
682//dumpPhysAddr("P-States SSDT content: ", ssdt, ssdt->Length);
683
684verbose ("SSDT with CPU P-States generated successfully\n");
685
686return ssdt;
687}
688}
689else
690{
691verbose ("ACPI CPUs not found: P-States not generated !!!\n");
692}
693
694return NULL;
695}
696
697struct acpi_2_fadt *patch_fadt(struct acpi_2_fadt *fadt, struct acpi_2_dsdt *new_dsdt)
698{
699extern void setupSystemType();
700
701struct acpi_2_fadt *fadt_mod;
702bool fadt_rev2_needed = false;
703bool fix_restart;
704bool fix_restart_ps2;
705const char * value;
706
707// Restart Fix
708if (Platform.CPU.Vendor == 0x756E6547)
709{/* Intel */
710fix_restart = true;
711fix_restart_ps2 = false;
712if ( getBoolForKey(kPS2RestartFix, &fix_restart_ps2, &bootInfo->chameleonConfig) && fix_restart_ps2)
713{
714fix_restart = true;
715}
716else
717{
718getBoolForKey(kRestartFix, &fix_restart, &bootInfo->chameleonConfig);
719}
720}
721else
722{
723verbose ("Not an Intel platform: Restart Fix not applied !!!\n");
724fix_restart = false;
725}
726
727if (fix_restart)
728{
729fadt_rev2_needed = true;
730}
731
732// Allocate new fadt table
733if (fadt->Length < 0x84 && fadt_rev2_needed)
734{
735fadt_mod=(struct acpi_2_fadt *)AllocateKernelMemory(0x84);
736memcpy(fadt_mod, fadt, fadt->Length);
737fadt_mod->Length = 0x84;
738fadt_mod->Revision = 0x02; // FADT rev 2 (ACPI 1.0B MS extensions)
739}
740else
741{
742fadt_mod=(struct acpi_2_fadt *)AllocateKernelMemory(fadt->Length);
743memcpy(fadt_mod, fadt, fadt->Length);
744}
745// Determine system type / PM_Model
746if ( (value=getStringForKey(kSystemType, &bootInfo->chameleonConfig))!=NULL)
747{
748if (Platform.Type > 6)
749{
750if(fadt_mod->PM_Profile<=6)
751{
752Platform.Type = fadt_mod->PM_Profile; // get the fadt if correct
753}
754else
755{
756Platform.Type = 1;/* Set a fixed value (Desktop) */
757}
758verbose("Error: system-type must be 0..6. Defaulting to %d !\n", Platform.Type);
759}
760else
761{
762Platform.Type = (unsigned char) strtoul(value, NULL, 10);
763}
764}
765// Set PM_Profile from System-type if only user wanted this value to be forced
766if (fadt_mod->PM_Profile != Platform.Type)
767{
768if (value)
769{
770// user has overriden the SystemType so take care of it in FACP
771verbose("FADT: changing PM_Profile from 0x%02x to 0x%02x\n", fadt_mod->PM_Profile, Platform.Type);
772fadt_mod->PM_Profile = Platform.Type;
773}
774else
775{
776// PM_Profile has a different value and no override has been set, so reflect the user value to ioregs
777Platform.Type = fadt_mod->PM_Profile <= 6 ? fadt_mod->PM_Profile : 1;
778}
779}
780// We now have to write the systemm-type in ioregs: we cannot do it before in setupDeviceTree()
781// because we need to take care of facp original content, if it is correct.
782setupSystemType();
783
784// Patch FADT to fix restart
785if (fix_restart)
786{
787if (fix_restart_ps2)
788{
789fadt_mod->Flags|= 0x400;
790fadt_mod->Reset_SpaceID= 0x01; // System I/O
791fadt_mod->Reset_BitWidth= 0x08; // 1 byte
792fadt_mod->Reset_BitOffset= 0x00; // Offset 0
793fadt_mod->Reset_AccessWidth= 0x01; // Byte access
794fadt_mod->Reset_Address= 0x64; // Address of the register
795fadt_mod->Reset_Value= 0xfe; // Value to write to reset the system
796msglog("FADT: PS2 Restart Fix applied!\n");
797}
798else
799{
800fadt_mod->Flags|= 0x400;
801fadt_mod->Reset_SpaceID= 0x01; // System I/O
802fadt_mod->Reset_BitWidth= 0x08; // 1 byte
803fadt_mod->Reset_BitOffset= 0x00; // Offset 0
804fadt_mod->Reset_AccessWidth= 0x01; // Byte access
805fadt_mod->Reset_Address= 0x0cf9; // Address of the register
806fadt_mod->Reset_Value= 0x06; // Value to write to reset the system
807verbose("FADT: ACPI Restart Fix applied!\n");
808}
809
810}
811
812// Patch DSDT Address if we have loaded DSDT.aml
813if(new_dsdt)
814{
815DBG("DSDT: Old @%x,%x, ",fadt_mod->DSDT,fadt_mod->X_DSDT);
816
817fadt_mod->DSDT=(uint32_t)new_dsdt;
818if ((uint32_t)(&(fadt_mod->X_DSDT))-(uint32_t)fadt_mod+8<=fadt_mod->Length)
819{
820fadt_mod->X_DSDT=(uint32_t)new_dsdt;
821}
822
823DBG("New @%x,%x\n",fadt_mod->DSDT,fadt_mod->X_DSDT);
824
825verbose("FADT: Using custom DSDT!\n");
826}
827
828// Correct the checksum
829fadt_mod->Checksum=0;
830fadt_mod->Checksum=256-checksum8(fadt_mod,fadt_mod->Length);
831
832return fadt_mod;
833}
834
835/* Setup ACPI without replacing DSDT. */
836int setupAcpiNoMod()
837{
838//addConfigurationTable(&gEfiAcpiTableGuid, getAddressOfAcpiTable(), "ACPI");
839//addConfigurationTable(&gEfiAcpi20TableGuid, getAddressOfAcpi20Table(), "ACPI_20");
840/* XXX aserebln why uint32 cast if pointer is uint64 ? */
841acpi10_p = (uint32_t)getAddressOfAcpiTable();
842acpi20_p = (uint32_t)getAddressOfAcpi20Table();
843addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI");
844if(acpi20_p) addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20");
845return 1;
846}
847
848/* Setup ACPI. Replace DSDT if DSDT.aml is found */
849int setupAcpi(void)
850{
851int version;
852void *new_dsdt;
853
854
855const char *filename;
856char dirSpec[128];
857int len = 0;
858
859// always reset cpu count to 0 when injecting new acpi
860acpi_cpu_count = 0;
861
862/* Try using the file specified with the DSDT option */
863if (getValueForKey(kDSDT, &filename, &len, &bootInfo->chameleonConfig))
864{
865 snprintf(dirSpec, sizeof(dirSpec), filename);
866}
867else
868{
869sprintf(dirSpec, "DSDT.aml");
870}
871
872// Load replacement DSDT
873new_dsdt = loadACPITable(dirSpec);
874// Mozodojo: going to patch FACP and load SSDT's even if DSDT.aml is not present
875/*if (!new_dsdt)
876 {
877 return setupAcpiNoMod();
878 }*/
879
880// Mozodojo: Load additional SSDTs
881struct acpi_2_ssdt *new_ssdt[32]; // 30 + 2 additional tables for pss & cst
882int ssdt_count=0;
883
884// SSDT Options
885bool drop_ssdt=false, generate_pstates=false, generate_cstates=false;
886
887getBoolForKey(kDropSSDT, &drop_ssdt, &bootInfo->chameleonConfig);
888getBoolForKey(kGeneratePStates, &generate_pstates, &bootInfo->chameleonConfig);
889getBoolForKey(kGenerateCStates, &generate_cstates, &bootInfo->chameleonConfig);
890
891DBG("Generating P-States config: %d\n", generate_pstates);
892DBG("Generating C-States config: %d\n", generate_cstates);
893
894{
895int i;
896
897for (i=0; i<30; i++)
898{
899char filename[512];
900
901sprintf(filename, i>0?"SSDT-%d.aml":"SSDT.aml", i);
902
903if ( (new_ssdt[ssdt_count] = loadACPITable(filename)) )
904{
905ssdt_count++;
906}
907else
908{
909break;
910}
911}
912}
913
914// Do the same procedure for both versions of ACPI
915for (version=0; version<2; version++) {
916struct acpi_2_rsdp *rsdp, *rsdp_mod;
917struct acpi_2_rsdt *rsdt, *rsdt_mod;
918int rsdplength;
919
920// Find original rsdp
921rsdp=(struct acpi_2_rsdp *)(version?getAddressOfAcpi20Table():getAddressOfAcpiTable());
922if (!rsdp)
923{
924DBG("No ACPI version %d found. Ignoring\n", version+1);
925if (version)
926{
927addConfigurationTable(&gEfiAcpi20TableGuid, NULL, "ACPI_20");
928}
929else
930{
931addConfigurationTable(&gEfiAcpiTableGuid, NULL, "ACPI");
932}
933continue;
934}
935rsdplength=version?rsdp->Length:20;
936
937DBG("RSDP version %d found @%x. Length=%d\n",version+1,rsdp,rsdplength);
938
939/* FIXME: no check that memory allocation succeeded
940 * Copy and patch RSDP,RSDT, XSDT and FADT
941 * For more info see ACPI Specification pages 110 and following
942 */
943
944rsdp_mod=(struct acpi_2_rsdp *) AllocateKernelMemory(rsdplength);
945memcpy(rsdp_mod, rsdp, rsdplength);
946
947rsdt=(struct acpi_2_rsdt *)(rsdp->RsdtAddress);
948
949DBG("RSDT @%x, Length %d\n",rsdt, rsdt->Length);
950
951if (rsdt && (uint32_t)rsdt !=0xffffffff && rsdt->Length<0x10000)
952{
953uint32_t *rsdt_entries;
954int rsdt_entries_num;
955int dropoffset=0, i;
956
957// mozo: using malloc cos I didn't found how to free already allocated kernel memory
958rsdt_mod=(struct acpi_2_rsdt *)malloc(rsdt->Length);
959memcpy (rsdt_mod, rsdt, rsdt->Length);
960rsdp_mod->RsdtAddress=(uint32_t)rsdt_mod;
961rsdt_entries_num=(rsdt_mod->Length-sizeof(struct acpi_2_rsdt))/4;
962rsdt_entries=(uint32_t *)(rsdt_mod+1);
963for (i=0;i<rsdt_entries_num;i++)
964{
965char *table=(char *)(rsdt_entries[i]);
966if (!table)
967{
968continue;
969}
970
971DBG("TABLE %c%c%c%c,",table[0],table[1],table[2],table[3]);
972
973rsdt_entries[i-dropoffset]=rsdt_entries[i];
974
975if (drop_ssdt && tableSign(table, "SSDT"))
976{
977dropoffset++;
978continue;
979}
980if (tableSign(table, "DSDT"))
981{
982DBG("DSDT found\n");
983
984if(new_dsdt)
985{
986rsdt_entries[i-dropoffset]=(uint32_t)new_dsdt;
987}
988
989continue;
990}
991
992if (tableSign(table, "FACP"))
993{
994struct acpi_2_fadt *fadt, *fadt_mod;
995fadt=(struct acpi_2_fadt *)rsdt_entries[i];
996
997DBG("FADT found @%x, Length %d\n",fadt, fadt->Length);
998
999if (!fadt || (uint32_t)fadt == 0xffffffff || fadt->Length>0x10000)
1000{
1001printf("FADT incorrect. Not modified\n");
1002continue;
1003}
1004
1005fadt_mod = patch_fadt(fadt, new_dsdt);
1006rsdt_entries[i-dropoffset]=(uint32_t)fadt_mod;
1007
1008// Generate _CST SSDT
1009if (generate_cstates && (new_ssdt[ssdt_count] = generate_cst_ssdt(fadt_mod)))
1010{
1011DBG("C-States generated\n");
1012generate_cstates = false; // Generate SSDT only once!
1013ssdt_count++;
1014}
1015
1016// Generating _PSS SSDT
1017if (generate_pstates && (new_ssdt[ssdt_count] = generate_pss_ssdt((void*)fadt_mod->DSDT)))
1018{
1019DBG("P-States generated\n");
1020generate_pstates = false; // Generate SSDT only once!
1021ssdt_count++;
1022}
1023
1024continue;
1025}
1026}
1027DBG("\n");
1028
1029// Allocate rsdt in Kernel memory area
1030rsdt_mod->Length += 4*ssdt_count - 4*dropoffset;
1031struct acpi_2_rsdt *rsdt_copy = (struct acpi_2_rsdt *)AllocateKernelMemory(rsdt_mod->Length);
1032memcpy (rsdt_copy, rsdt_mod, rsdt_mod->Length);
1033free(rsdt_mod); rsdt_mod = rsdt_copy;
1034rsdp_mod->RsdtAddress=(uint32_t)rsdt_mod;
1035rsdt_entries_num=(rsdt_mod->Length-sizeof(struct acpi_2_rsdt))/4;
1036rsdt_entries=(uint32_t *)(rsdt_mod+1);
1037
1038// Mozodojo: Insert additional SSDTs into RSDT
1039if(ssdt_count>0)
1040{
1041int j;
1042
1043for (j=0; j<ssdt_count; j++)
1044rsdt_entries[i-dropoffset+j]=(uint32_t)new_ssdt[j];
1045
1046verbose("RSDT: Added %d SSDT table(s)\n", ssdt_count);
1047
1048}
1049
1050// Correct the checksum of RSDT
1051DBG("RSDT: Original checksum %d, ", rsdt_mod->Checksum);
1052
1053rsdt_mod->Checksum=0;
1054rsdt_mod->Checksum=256-checksum8(rsdt_mod,rsdt_mod->Length);
1055
1056DBG("New checksum %d at %x\n", rsdt_mod->Checksum,rsdt_mod);
1057}
1058else
1059{
1060rsdp_mod->RsdtAddress=0;
1061printf("RSDT not found or incorrect\n");
1062}
1063
1064if (version)
1065{
1066struct acpi_2_xsdt *xsdt, *xsdt_mod;
1067
1068// FIXME: handle 64-bit address correctly
1069
1070xsdt=(struct acpi_2_xsdt*) ((uint32_t)rsdp->XsdtAddress);
1071DBG("XSDT @%x;%x, Length=%d\n", (uint32_t)(rsdp->XsdtAddress>>32),(uint32_t)rsdp->XsdtAddress, xsdt->Length);
1072
1073if (xsdt && (uint64_t)rsdp->XsdtAddress<0xffffffff && xsdt->Length<0x10000)
1074{
1075uint64_t *xsdt_entries;
1076int xsdt_entries_num, i;
1077int dropoffset=0;
1078
1079// mozo: using malloc cos I didn't found how to free already allocated kernel memory
1080xsdt_mod=(struct acpi_2_xsdt*)malloc(xsdt->Length);
1081memcpy(xsdt_mod, xsdt, xsdt->Length);
1082
1083rsdp_mod->XsdtAddress=(uint32_t)xsdt_mod;
1084xsdt_entries_num=(xsdt_mod->Length-sizeof(struct acpi_2_xsdt))/8;
1085xsdt_entries=(uint64_t *)(xsdt_mod+1);
1086for (i=0;i<xsdt_entries_num;i++)
1087{
1088char *table=(char *)((uint32_t)(xsdt_entries[i]));
1089if (!table)
1090{
1091continue;
1092}
1093xsdt_entries[i-dropoffset]=xsdt_entries[i];
1094
1095if (drop_ssdt && tableSign(table, "SSDT"))
1096{
1097dropoffset++;
1098continue;
1099}
1100if (tableSign(table, "DSDT"))
1101{
1102DBG("DSDT found\n");
1103
1104if (new_dsdt)
1105{
1106xsdt_entries[i-dropoffset]=(uint32_t)new_dsdt;
1107}
1108
1109DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
1110
1111continue;
1112}
1113if (tableSign(table, "FACP"))
1114{
1115struct acpi_2_fadt *fadt, *fadt_mod;
1116fadt=(struct acpi_2_fadt *)(uint32_t)xsdt_entries[i];
1117
1118DBG("FADT found @%x,%x, Length %d\n",(uint32_t)(xsdt_entries[i]>>32),fadt,
1119fadt->Length);
1120
1121if (!fadt || (uint64_t)xsdt_entries[i] >= 0xffffffff || fadt->Length>0x10000)
1122{
1123verbose("FADT incorrect or after 4GB. Dropping XSDT\n");
1124goto drop_xsdt;
1125}
1126
1127fadt_mod = patch_fadt(fadt, new_dsdt);
1128xsdt_entries[i-dropoffset]=(uint32_t)fadt_mod;
1129
1130DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
1131
1132// Generate _CST SSDT
1133if (generate_cstates && (new_ssdt[ssdt_count] = generate_cst_ssdt(fadt_mod)))
1134{
1135generate_cstates = false; // Generate SSDT only once!
1136ssdt_count++;
1137}
1138
1139// Generating _PSS SSDT
1140if (generate_pstates && (new_ssdt[ssdt_count] = generate_pss_ssdt((void*)fadt_mod->DSDT)))
1141{
1142generate_pstates = false; // Generate SSDT only once!
1143ssdt_count++;
1144}
1145
1146continue;
1147}
1148
1149DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
1150
1151}
1152
1153// Allocate xsdt in Kernel memory area
1154xsdt_mod->Length += 8*ssdt_count - 8*dropoffset;
1155struct acpi_2_xsdt *xsdt_copy = (struct acpi_2_xsdt *)AllocateKernelMemory(xsdt_mod->Length);
1156memcpy(xsdt_copy, xsdt_mod, xsdt_mod->Length);
1157free(xsdt_mod); xsdt_mod = xsdt_copy;
1158rsdp_mod->XsdtAddress=(uint32_t)xsdt_mod;
1159xsdt_entries_num=(xsdt_mod->Length-sizeof(struct acpi_2_xsdt))/8;
1160xsdt_entries=(uint64_t *)(xsdt_mod+1);
1161
1162// Mozodojo: Insert additional SSDTs into XSDT
1163if(ssdt_count>0)
1164{
1165int j;
1166
1167for (j=0; j<ssdt_count; j++)
1168xsdt_entries[i-dropoffset+j]=(uint32_t)new_ssdt[j];
1169
1170verbose("Added %d SSDT table(s) into XSDT\n", ssdt_count);
1171
1172}
1173
1174// Correct the checksum of XSDT
1175xsdt_mod->Checksum=0;
1176xsdt_mod->Checksum=256-checksum8(xsdt_mod,xsdt_mod->Length);
1177}
1178else
1179{
1180drop_xsdt:
1181
1182DBG("About to drop XSDT\n");
1183
1184/*FIXME: Now we just hope that if MacOS doesn't find XSDT it reverts to RSDT.
1185 * A Better strategy would be to generate
1186 */
1187
1188rsdp_mod->XsdtAddress=0xffffffffffffffffLL;
1189verbose("XSDT not found or incorrect\n");
1190}
1191}
1192
1193// Correct the checksum of RSDP
1194
1195DBG("RSDP: Original checksum %d, ", rsdp_mod->Checksum);
1196
1197rsdp_mod->Checksum=0;
1198rsdp_mod->Checksum=256-checksum8(rsdp_mod,20);
1199
1200DBG("New checksum %d\n", rsdp_mod->Checksum);
1201
1202if (version)
1203{
1204DBG("RSDP: Original extended checksum %d", rsdp_mod->ExtendedChecksum);
1205
1206rsdp_mod->ExtendedChecksum=0;
1207rsdp_mod->ExtendedChecksum=256-checksum8(rsdp_mod,rsdp_mod->Length);
1208
1209DBG("New extended checksum %d\n", rsdp_mod->ExtendedChecksum);
1210
1211}
1212
1213//verbose("Patched ACPI version %d DSDT\n", version+1);
1214if (version)
1215{
1216/* XXX aserebln why uint32 cast if pointer is uint64 ? */
1217acpi20_p = (uint32_t)rsdp_mod;
1218addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20");
1219}
1220else
1221{
1222/* XXX aserebln why uint32 cast if pointer is uint64 ? */
1223acpi10_p = (uint32_t)rsdp_mod;
1224addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI");
1225}
1226}
1227#if DEBUG_ACPI
1228printf("Press a key to continue... (DEBUG_ACPI)\n");
1229getchar();
1230#endif
1231return 1;
1232}
1233

Archive Download this file

Revision: 2297