Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/acpi_patcher.c

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

Archive Download this file

Revision: 2076