Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/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
168// DBG("dsdt: %x%x\n", dsdt[i], dsdt[i+1]);
169
170uint32_t offset = i + 3 + (dsdt[i+2] >> 6);
171
172bool add_name = true;
173
174uint8_t j;
175
176for (j=0; j<4; j++)
177{
178char c = dsdt[offset+j];
179
180if (!aml_isvalidchar(c))
181{
182add_name = false;
183verbose("Invalid character found in ProcessorOP 0x%x!\n", c);
184break;
185}
186}
187
188if (add_name)
189{
190acpi_cpu_name[acpi_cpu_count] = malloc(4);
191memcpy(acpi_cpu_name[acpi_cpu_count], dsdt+offset, 4);
192i = offset + 5;
193
194 if (acpi_cpu_count == 0)
195 acpi_cpu_p_blk = dsdt[i] | (dsdt[i+1] << 8);
196
197verbose("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]);
198
199if (++acpi_cpu_count == 32) return;
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 if ((Platform.CPU.Model == CPU_MODEL_SANDYBRIDGE) || (Platform.CPU.Model == CPU_MODEL_JAKETOWN))
577 {
578 maximum.Control = (rdmsr64(MSR_IA32_PERF_STATUS) >> 8) & 0xff;
579 } else {
580 maximum.Control = rdmsr64(MSR_IA32_PERF_STATUS) & 0xff;
581 }
582 minimum.Control = (rdmsr64(MSR_PLATFORM_INFO) >> 40) & 0xff;
583
584verbose("P-States: min 0x%x, max 0x%x\n", minimum.Control, maximum.Control);
585
586// Sanity check
587if (maximum.Control < minimum.Control)
588{
589DBG("Insane control values!");
590p_states_count = 0;
591}
592else
593{
594uint8_t i;
595p_states_count = 0;
596
597for (i = maximum.Control; i >= minimum.Control; i--)
598{
599p_states[p_states_count].Control = i;
600p_states[p_states_count].CID = p_states[p_states_count].Control << 1;
601p_states[p_states_count].Frequency = (Platform.CPU.FSBFrequency / 1000000) * i;
602p_states_count++;
603}
604}
605
606break;
607}
608default:
609verbose ("Unsupported CPU: P-States not generated !!! Unknown CPU Type\n");
610break;
611}
612}
613}
614
615// Generating SSDT
616if (p_states_count > 0)
617{
618int i;
619
620struct aml_chunk* root = aml_create_node(NULL);
621aml_add_buffer(root, ssdt_header, sizeof(ssdt_header)); // SSDT header
622struct aml_chunk* scop = aml_add_scope(root, "\\_PR_");
623struct aml_chunk* name = aml_add_name(scop, "PSS_");
624struct aml_chunk* pack = aml_add_package(name);
625
626for (i = 0; i < p_states_count; i++)
627{
628struct aml_chunk* pstt = aml_add_package(pack);
629
630aml_add_dword(pstt, p_states[i].Frequency);
631aml_add_dword(pstt, 0x00000000); // Power
632aml_add_dword(pstt, 0x0000000A); // Latency
633aml_add_dword(pstt, 0x0000000A); // Latency
634aml_add_dword(pstt, p_states[i].Control);
635aml_add_dword(pstt, i+1); // Status
636}
637
638// Add aliaces
639for (i = 0; i < acpi_cpu_count; i++)
640{
641char name[9];
642sprintf(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]);
643
644scop = aml_add_scope(root, name);
645aml_add_alias(scop, "PSS_", "_PSS");
646}
647
648aml_calculate_size(root);
649
650struct acpi_2_ssdt *ssdt = (struct acpi_2_ssdt *)AllocateKernelMemory(root->Size);
651
652aml_write_node(root, (void*)ssdt, 0);
653
654ssdt->Length = root->Size;
655ssdt->Checksum = 0;
656ssdt->Checksum = 256 - checksum8(ssdt, ssdt->Length);
657
658aml_destroy_node(root);
659
660//dumpPhysAddr("P-States SSDT content: ", ssdt, ssdt->Length);
661
662verbose ("SSDT with CPU P-States generated successfully\n");
663
664return ssdt;
665}
666}
667else
668{
669verbose ("ACPI CPUs not found: P-States not generated !!!\n");
670}
671
672return NULL;
673}
674
675struct acpi_2_fadt *patch_fadt(struct acpi_2_fadt *fadt, struct acpi_2_dsdt *new_dsdt)
676{
677extern void setupSystemType();
678
679struct acpi_2_fadt *fadt_mod;
680bool fadt_rev2_needed = false;
681bool fix_restart;
682const char * value;
683
684// Restart Fix
685if (Platform.CPU.Vendor == 0x756E6547) {/* Intel */
686fix_restart = true;
687getBoolForKey(kRestartFix, &fix_restart, &bootInfo->chameleonConfig);
688} else {
689verbose ("Not an Intel platform: Restart Fix not applied !!!\n");
690fix_restart = false;
691}
692
693if (fix_restart) fadt_rev2_needed = true;
694
695// Allocate new fadt table
696if (fadt->Length < 0x84 && fadt_rev2_needed)
697{
698fadt_mod=(struct acpi_2_fadt *)AllocateKernelMemory(0x84);
699memcpy(fadt_mod, fadt, fadt->Length);
700fadt_mod->Length = 0x84;
701fadt_mod->Revision = 0x02; // FADT rev 2 (ACPI 1.0B MS extensions)
702}
703else
704{
705fadt_mod=(struct acpi_2_fadt *)AllocateKernelMemory(fadt->Length);
706memcpy(fadt_mod, fadt, fadt->Length);
707}
708// Determine system type / PM_Model
709if ( (value=getStringForKey(kSystemType, &bootInfo->chameleonConfig))!=NULL)
710{
711if (Platform.Type > 6)
712{
713if(fadt_mod->PM_Profile<=6)
714Platform.Type = fadt_mod->PM_Profile; // get the fadt if correct
715else
716Platform.Type = 1;/* Set a fixed value (Desktop) */
717verbose("Error: system-type must be 0..6. Defaulting to %d !\n", Platform.Type);
718}
719else
720Platform.Type = (unsigned char) strtoul(value, NULL, 10);
721}
722// Set PM_Profile from System-type if only user wanted this value to be forced
723if (fadt_mod->PM_Profile != Platform.Type)
724{
725 if (value)
726{ // user has overriden the SystemType so take care of it in FACP
727verbose("FADT: changing PM_Profile from 0x%02x to 0x%02x\n", fadt_mod->PM_Profile, Platform.Type);
728fadt_mod->PM_Profile = Platform.Type;
729 }
730 else
731 { // PM_Profile has a different value and no override has been set, so reflect the user value to ioregs
732Platform.Type = fadt_mod->PM_Profile <= 6 ? fadt_mod->PM_Profile : 1;
733 }
734}
735// We now have to write the systemm-type in ioregs: we cannot do it before in setupDeviceTree()
736// because we need to take care of facp original content, if it is correct.
737setupSystemType();
738
739// Patch FADT to fix restart
740if (fix_restart)
741{
742fadt_mod->Flags|= 0x400;
743fadt_mod->Reset_SpaceID= 0x01; // System I/O
744fadt_mod->Reset_BitWidth= 0x08; // 1 byte
745fadt_mod->Reset_BitOffset= 0x00; // Offset 0
746fadt_mod->Reset_AccessWidth= 0x01; // Byte access
747fadt_mod->Reset_Address= 0x0cf9; // Address of the register
748fadt_mod->Reset_Value= 0x06; // Value to write to reset the system
749verbose("FADT: Restart Fix applied!\n");
750}
751
752// Patch DSDT Address if we have loaded DSDT.aml
753if(new_dsdt)
754{
755DBG("DSDT: Old @%x,%x, ",fadt_mod->DSDT,fadt_mod->X_DSDT);
756
757fadt_mod->DSDT=(uint32_t)new_dsdt;
758if ((uint32_t)(&(fadt_mod->X_DSDT))-(uint32_t)fadt_mod+8<=fadt_mod->Length)
759fadt_mod->X_DSDT=(uint32_t)new_dsdt;
760
761DBG("New @%x,%x\n",fadt_mod->DSDT,fadt_mod->X_DSDT);
762
763verbose("FADT: Using custom DSDT!\n");
764}
765
766// Correct the checksum
767fadt_mod->Checksum=0;
768fadt_mod->Checksum=256-checksum8(fadt_mod,fadt_mod->Length);
769
770return fadt_mod;
771}
772
773/* Setup ACPI without replacing DSDT. */
774int setupAcpiNoMod()
775{
776//addConfigurationTable(&gEfiAcpiTableGuid, getAddressOfAcpiTable(), "ACPI");
777//addConfigurationTable(&gEfiAcpi20TableGuid, getAddressOfAcpi20Table(), "ACPI_20");
778/* XXX aserebln why uint32 cast if pointer is uint64 ? */
779acpi10_p = (uint32_t)getAddressOfAcpiTable();
780acpi20_p = (uint32_t)getAddressOfAcpi20Table();
781addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI");
782if(acpi20_p) addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20");
783return 1;
784}
785
786/* Setup ACPI. Replace DSDT if DSDT.aml is found */
787int setupAcpi(void)
788{
789int version;
790void *new_dsdt;
791
792const char *filename;
793char dirSpec[128];
794int len = 0;
795
796// always reset cpu count to 0 when injecting new acpi
797acpi_cpu_count = 0;
798
799// Try using the file specified with the DSDT option
800if (getValueForKey(kDSDT, &filename, &len, &bootInfo->chameleonConfig))
801{
802sprintf(dirSpec, filename);
803}
804else
805{
806sprintf(dirSpec, "DSDT.aml");
807}
808
809// Load replacement DSDT
810new_dsdt = loadACPITable(dirSpec);
811// Mozodojo: going to patch FACP and load SSDT's even if DSDT.aml is not present
812/*if (!new_dsdt)
813 {
814 return setupAcpiNoMod();
815 }*/
816
817// Mozodojo: Load additional SSDTs
818struct acpi_2_ssdt *new_ssdt[32]; // 30 + 2 additional tables for pss & cst
819int ssdt_count=0;
820
821// SSDT Options
822bool drop_ssdt=false, generate_pstates=false, generate_cstates=false;
823
824getBoolForKey(kDropSSDT, &drop_ssdt, &bootInfo->chameleonConfig);
825getBoolForKey(kGeneratePStates, &generate_pstates, &bootInfo->chameleonConfig);
826getBoolForKey(kGenerateCStates, &generate_cstates, &bootInfo->chameleonConfig);
827
828// DBG("generating p-states config: %d\n", generate_pstates);
829// DBG("generating c-states config: %d\n", generate_cstates);
830
831{
832int i;
833
834for (i=0; i<30; i++)
835{
836char filename[512];
837
838sprintf(filename, i>0?"SSDT-%d.aml":"SSDT.aml", i);
839
840if ( (new_ssdt[ssdt_count] = loadACPITable(filename)) )
841{
842ssdt_count++;
843}
844else
845{
846break;
847}
848}
849}
850
851// Do the same procedure for both versions of ACPI
852for (version=0; version<2; version++) {
853struct acpi_2_rsdp *rsdp, *rsdp_mod;
854struct acpi_2_rsdt *rsdt, *rsdt_mod;
855int rsdplength;
856
857// Find original rsdp
858rsdp=(struct acpi_2_rsdp *)(version?getAddressOfAcpi20Table():getAddressOfAcpiTable());
859if (!rsdp)
860{
861DBG("No ACPI version %d found. Ignoring\n", version+1);
862if (version)
863addConfigurationTable(&gEfiAcpi20TableGuid, NULL, "ACPI_20");
864else
865addConfigurationTable(&gEfiAcpiTableGuid, NULL, "ACPI");
866continue;
867}
868rsdplength=version?rsdp->Length:20;
869
870DBG("RSDP version %d found @%x. Length=%d\n",version+1,rsdp,rsdplength);
871
872/* FIXME: no check that memory allocation succeeded
873 * Copy and patch RSDP,RSDT, XSDT and FADT
874 * For more info see ACPI Specification pages 110 and following
875 */
876
877rsdp_mod=(struct acpi_2_rsdp *) AllocateKernelMemory(rsdplength);
878memcpy(rsdp_mod, rsdp, rsdplength);
879rsdt=(struct acpi_2_rsdt *)(rsdp->RsdtAddress);
880
881DBG("RSDT @%x, Length %d\n",rsdt, rsdt->Length);
882
883if (rsdt && (uint32_t)rsdt !=0xffffffff && rsdt->Length<0x10000)
884{
885uint32_t *rsdt_entries;
886int rsdt_entries_num;
887int dropoffset=0, i;
888
889// mozo: using malloc cos I didn't found how to free already allocated kernel memory
890rsdt_mod=(struct acpi_2_rsdt *)malloc(rsdt->Length);
891memcpy (rsdt_mod, rsdt, rsdt->Length);
892rsdp_mod->RsdtAddress=(uint32_t)rsdt_mod;
893rsdt_entries_num=(rsdt_mod->Length-sizeof(struct acpi_2_rsdt))/4;
894rsdt_entries=(uint32_t *)(rsdt_mod+1);
895for (i=0;i<rsdt_entries_num;i++)
896{
897char *table=(char *)(rsdt_entries[i]);
898if (!table)
899continue;
900
901DBG("TABLE %c%c%c%c,",table[0],table[1],table[2],table[3]);
902
903rsdt_entries[i-dropoffset]=rsdt_entries[i];
904
905if (drop_ssdt && tableSign(table, "SSDT"))
906{
907dropoffset++;
908continue;
909}
910if (tableSign(table, "DSDT"))
911{
912DBG("DSDT found\n");
913
914if(new_dsdt)
915rsdt_entries[i-dropoffset]=(uint32_t)new_dsdt;
916
917continue;
918}
919if (tableSign(table, "FACP"))
920{
921struct acpi_2_fadt *fadt, *fadt_mod;
922fadt=(struct acpi_2_fadt *)rsdt_entries[i];
923
924DBG("FADT found @%x, Length %d\n",fadt, fadt->Length);
925
926if (!fadt || (uint32_t)fadt == 0xffffffff || fadt->Length>0x10000)
927{
928printf("FADT incorrect. Not modified\n");
929continue;
930}
931
932fadt_mod = patch_fadt(fadt, new_dsdt);
933rsdt_entries[i-dropoffset]=(uint32_t)fadt_mod;
934
935// Generate _CST SSDT
936if (generate_cstates && (new_ssdt[ssdt_count] = generate_cst_ssdt(fadt_mod)))
937{
938// DBG("c-states generated\n");
939generate_cstates = false; // Generate SSDT only once!
940ssdt_count++;
941}
942
943// Generating _PSS SSDT
944if (generate_pstates && (new_ssdt[ssdt_count] = generate_pss_ssdt((void*)fadt_mod->DSDT)))
945{
946// DBG("p-states generated\n");
947generate_pstates = false; // Generate SSDT only once!
948ssdt_count++;
949}
950
951continue;
952}
953}
954DBG("\n");
955
956// Allocate rsdt in Kernel memory area
957rsdt_mod->Length += 4*ssdt_count - 4*dropoffset;
958struct acpi_2_rsdt *rsdt_copy = (struct acpi_2_rsdt *)AllocateKernelMemory(rsdt_mod->Length);
959memcpy (rsdt_copy, rsdt_mod, rsdt_mod->Length);
960free(rsdt_mod); rsdt_mod = rsdt_copy;
961rsdp_mod->RsdtAddress=(uint32_t)rsdt_mod;
962rsdt_entries_num=(rsdt_mod->Length-sizeof(struct acpi_2_rsdt))/4;
963rsdt_entries=(uint32_t *)(rsdt_mod+1);
964
965// Mozodojo: Insert additional SSDTs into RSDT
966if(ssdt_count>0)
967{
968int j;
969
970for (j=0; j<ssdt_count; j++)
971rsdt_entries[i-dropoffset+j]=(uint32_t)new_ssdt[j];
972
973verbose("RSDT: Added %d SSDT table(s)\n", ssdt_count);
974}
975
976// Correct the checksum of RSDT
977DBG("RSDT: Original checksum %d, ", rsdt_mod->Checksum);
978
979rsdt_mod->Checksum=0;
980rsdt_mod->Checksum=256-checksum8(rsdt_mod,rsdt_mod->Length);
981
982DBG("New checksum %d at %x\n", rsdt_mod->Checksum,rsdt_mod);
983}
984else
985{
986rsdp_mod->RsdtAddress=0;
987printf("RSDT not found or RSDT incorrect\n");
988}
989
990if (version)
991{
992struct acpi_2_xsdt *xsdt, *xsdt_mod;
993
994// FIXME: handle 64-bit address correctly
995
996xsdt=(struct acpi_2_xsdt*) ((uint32_t)rsdp->XsdtAddress);
997DBG("XSDT @%x;%x, Length=%d\n", (uint32_t)(rsdp->XsdtAddress>>32),(uint32_t)rsdp->XsdtAddress,
998xsdt->Length);
999if (xsdt && (uint64_t)rsdp->XsdtAddress<0xffffffff && xsdt->Length<0x10000)
1000{
1001uint64_t *xsdt_entries;
1002int xsdt_entries_num, i;
1003int dropoffset=0;
1004
1005// mozo: using malloc cos I didn't found how to free already allocated kernel memory
1006xsdt_mod=(struct acpi_2_xsdt*)malloc(xsdt->Length);
1007memcpy(xsdt_mod, xsdt, xsdt->Length);
1008rsdp_mod->XsdtAddress=(uint32_t)xsdt_mod;
1009xsdt_entries_num=(xsdt_mod->Length-sizeof(struct acpi_2_xsdt))/8;
1010xsdt_entries=(uint64_t *)(xsdt_mod+1);
1011for (i=0;i<xsdt_entries_num;i++)
1012{
1013char *table=(char *)((uint32_t)(xsdt_entries[i]));
1014if (!table)
1015continue;
1016
1017xsdt_entries[i-dropoffset]=xsdt_entries[i];
1018
1019if (drop_ssdt && tableSign(table, "SSDT"))
1020{
1021dropoffset++;
1022continue;
1023}
1024if (tableSign(table, "DSDT"))
1025{
1026DBG("DSDT found\n");
1027
1028if (new_dsdt)
1029xsdt_entries[i-dropoffset]=(uint32_t)new_dsdt;
1030
1031DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
1032
1033continue;
1034}
1035if (tableSign(table, "FACP"))
1036{
1037struct acpi_2_fadt *fadt, *fadt_mod;
1038fadt=(struct acpi_2_fadt *)(uint32_t)xsdt_entries[i];
1039
1040DBG("FADT found @%x,%x, Length %d\n",(uint32_t)(xsdt_entries[i]>>32),fadt,
1041fadt->Length);
1042
1043if (!fadt || (uint64_t)xsdt_entries[i] >= 0xffffffff || fadt->Length>0x10000)
1044{
1045verbose("FADT incorrect or after 4GB. Dropping XSDT\n");
1046goto drop_xsdt;
1047}
1048
1049fadt_mod = patch_fadt(fadt, new_dsdt);
1050xsdt_entries[i-dropoffset]=(uint32_t)fadt_mod;
1051
1052DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
1053
1054// Generate _CST SSDT
1055if (generate_cstates && (new_ssdt[ssdt_count] = generate_cst_ssdt(fadt_mod)))
1056{
1057generate_cstates = false; // Generate SSDT only once!
1058ssdt_count++;
1059}
1060
1061// Generating _PSS SSDT
1062if (generate_pstates && (new_ssdt[ssdt_count] = generate_pss_ssdt((void*)fadt_mod->DSDT)))
1063{
1064generate_pstates = false; // Generate SSDT only once!
1065ssdt_count++;
1066}
1067
1068continue;
1069}
1070
1071DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
1072
1073}
1074
1075// Allocate xsdt in Kernel memory area
1076xsdt_mod->Length += 8*ssdt_count - 8*dropoffset;
1077struct acpi_2_xsdt *xsdt_copy = (struct acpi_2_xsdt *)AllocateKernelMemory(xsdt_mod->Length);
1078memcpy(xsdt_copy, xsdt_mod, xsdt_mod->Length);
1079free(xsdt_mod); xsdt_mod = xsdt_copy;
1080rsdp_mod->XsdtAddress=(uint32_t)xsdt_mod;
1081xsdt_entries_num=(xsdt_mod->Length-sizeof(struct acpi_2_xsdt))/8;
1082xsdt_entries=(uint64_t *)(xsdt_mod+1);
1083
1084// Mozodojo: Insert additional SSDTs into XSDT
1085if(ssdt_count>0)
1086{
1087int j;
1088
1089for (j=0; j<ssdt_count; j++)
1090xsdt_entries[i-dropoffset+j]=(uint32_t)new_ssdt[j];
1091
1092verbose("Added %d SSDT table(s) into XSDT\n", ssdt_count);
1093}
1094
1095// Correct the checksum of XSDT
1096xsdt_mod->Checksum=0;
1097xsdt_mod->Checksum=256-checksum8(xsdt_mod,xsdt_mod->Length);
1098}
1099else
1100{
1101drop_xsdt:
1102
1103DBG("About to drop XSDT\n");
1104
1105/*FIXME: Now we just hope that if MacOS doesn't find XSDT it reverts to RSDT.
1106 * A Better strategy would be to generate
1107 */
1108
1109rsdp_mod->XsdtAddress=0xffffffffffffffffLL;
1110verbose("XSDT not found or XSDT incorrect\n");
1111}
1112}
1113
1114// Correct the checksum of RSDP
1115
1116DBG("RSDP: Original checksum %d, ", rsdp_mod->Checksum);
1117
1118rsdp_mod->Checksum=0;
1119rsdp_mod->Checksum=256-checksum8(rsdp_mod,20);
1120
1121DBG("New checksum %d\n", rsdp_mod->Checksum);
1122
1123if (version)
1124{
1125DBG("RSDP: Original extended checksum %d", rsdp_mod->ExtendedChecksum);
1126
1127rsdp_mod->ExtendedChecksum=0;
1128rsdp_mod->ExtendedChecksum=256-checksum8(rsdp_mod,rsdp_mod->Length);
1129
1130DBG("New extended checksum %d\n", rsdp_mod->ExtendedChecksum);
1131
1132}
1133
1134//verbose("Patched ACPI version %d DSDT\n", version+1);
1135if (version)
1136{
1137/* XXX aserebln why uint32 cast if pointer is uint64 ? */
1138acpi20_p = (uint32_t)rsdp_mod;
1139addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20");
1140}
1141else
1142{
1143/* XXX aserebln why uint32 cast if pointer is uint64 ? */
1144acpi10_p = (uint32_t)rsdp_mod;
1145addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI");
1146}
1147}
1148#if DEBUG_ACPI
1149printf("Press a key to continue... (DEBUG_ACPI)\n");
1150getchar();
1151#endif
1152return 1;
1153}
1154

Archive Download this file

Revision: 1926