Chameleon

Chameleon Svn Source Tree

Root/branches/mozodojo/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;
93const char * overriden_pathname=NULL;
94static char dirspec[512]="";
95static bool first_time =true;
96int len=0;
97
98/// Take in accound user overriding if it's DSDT only
99if (strstr(filename, "DSDT") &&
100getValueForKey(kDSDT, &overriden_pathname, &len,
101 &bootInfo->bootConfig))
102 {
103sprintf(dirspec, "%s", overriden_pathname);
104fd=open (dirspec,0);
105if (fd>=0) goto success_fd;
106 }
107// Check that dirspec is not already assigned with a path
108if (!first_time && *dirspec)
109{ // it is so start searching this cached patch first
110//extract path
111for (len=strlen(dirspec)-1; len; len--)
112if (dirspec[len]=='/' || len==0)
113{
114dirspec[len]='\0';
115break;
116}
117// now concat with the filename
118strncat(dirspec, "/", sizeof(dirspec));
119strncat(dirspec, filename, sizeof(dirspec));
120// and test to see if we don't have our big boy here:
121fd=open (dirspec,0);
122if (fd>=0)
123{
124// printf("ACPI file search cache hit: file found at %s\n", dirspec);
125goto success_fd;
126}
127}
128// Start searching any potential location for ACPI Table
129// search the Extra folders first
130sprintf(dirspec,"/Extra/%s",filename);
131fd=open (dirspec,0);
132if (fd>=0) goto success_fd;
133
134sprintf(dirspec,"bt(0,0)/Extra/%s",filename);
135fd=open (dirspec,0);
136if (fd>=0) goto success_fd;
137
138sprintf(dirspec, "%s", filename); // search current dir
139fd=open (dirspec,0);
140if (fd>=0) goto success_fd;
141
142sprintf(dirspec, "/%s", filename); // search root
143fd=open (dirspec,0);
144if (fd>=0) goto success_fd;
145
146// NOT FOUND:
147//verbose("ACPI Table not found: %s\n", filename);
148if (outDirspec) *outDirspec = "";
149first_time = false;
150return -1;
151// FOUND
152success_fd:
153first_time = false;
154if (outDirspec) *outDirspec = dirspec;
155return fd;
156}
157
158void *loadACPITable (const char * filename)
159{
160void *tableAddr;
161const char * dirspec=NULL;
162
163int fd = search_and_get_acpi_fd(filename, &dirspec);
164
165if (fd>=0)
166{
167tableAddr=(void*)AllocateKernelMemory(file_size (fd));
168if (tableAddr)
169{
170if (read (fd, tableAddr, file_size (fd))!=file_size (fd))
171{
172printf("Couldn't read table %s\n",dirspec);
173free (tableAddr);
174close (fd);
175return NULL;
176}
177
178DBG("Table %s read and stored at: %x\n", dirspec, tableAddr);
179close (fd);
180return tableAddr;
181}
182close (fd);
183printf("Couldn't allocate memory for table \n", dirspec);
184}
185//printf("Couldn't find table %s\n", filename);
186return NULL;
187}
188
189uint8_tacpi_cpu_count = 0;
190char* acpi_cpu_name[32];
191
192void get_acpi_cpu_names(unsigned char* dsdt, int length)
193{
194int i;
195
196for (i=0; i<length-7; i++)
197{
198if (dsdt[i] == 0x5B && dsdt[i+1] == 0x83) // ProcessorOP
199{
200uint8_t offset = i+3+(dsdt[i+2] >> 6), j;
201bool add_name = TRUE;
202
203for (j=0; j<4; j++)
204{
205char c = dsdt[offset+j];
206
207if (!aml_isvalidchar(c))
208{
209add_name = FALSE;
210verbose("Invalid characters found in ProcessorOP 0x%x!\n", c);
211break;
212}
213}
214
215if (add_name)
216{
217acpi_cpu_name[acpi_cpu_count] = malloc(4);
218memcpy(acpi_cpu_name[acpi_cpu_count], dsdt+offset, 4);
219i = offset + 5;
220
221verbose("Found %c%c%c%c (from DSDT)\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]);
222
223if (++acpi_cpu_count == 32) return;
224}
225}
226}
227}
228
229struct acpi_2_ssdt *generate_cst_ssdt(struct acpi_2_fadt* fadt)
230{
231char ssdt_header[] =
232{
2330x53, 0x53, 0x44, 0x54, 0xE7, 0x00, 0x00, 0x00, /* SSDT.... */
2340x01, 0x17, 0x50, 0x6D, 0x52, 0x65, 0x66, 0x41, /* ..PmRefA */
2350x43, 0x70, 0x75, 0x43, 0x73, 0x74, 0x00, 0x00, /* CpuCst.. */
2360x00, 0x10, 0x00, 0x00, 0x49, 0x4E, 0x54, 0x4C, /* ....INTL */
2370x31, 0x03, 0x10, 0x20 /* 1.._*/
238};
239
240char cstate_resource_template[] =
241{
2420x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F,
2430x01, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
2440x00, 0x00, 0x00, 0x79, 0x00
245};
246
247if (Platform.CPU.Vendor != 0x756E6547) {
248verbose ("Not an Intel platform: C-States will not be generated !!!\n");
249return NULL;
250}
251
252if (fadt == NULL) {
253verbose ("FACP not exists: C-States will not be generated !!!\n");
254return NULL;
255}
256
257struct acpi_2_dsdt* dsdt = (void*)fadt->DSDT;
258
259if (dsdt == NULL) {
260verbose ("DSDT not found: C-States will not be generated !!!\n");
261return NULL;
262}
263
264if (acpi_cpu_count == 0)
265get_acpi_cpu_names((void*)dsdt, dsdt->Length);
266
267if (acpi_cpu_count > 0)
268{
269bool c2_enabled = fadt->C2_Latency < 100;
270bool c3_enabled = fadt->C3_Latency < 1000;
271bool c4_enabled = false;
272
273getBoolForKey(kEnableC4States, &c4_enabled, &bootInfo->bootConfig);
274
275unsigned char cstates_count = 1 + (c2_enabled ? 1 : 0) + (c3_enabled ? 1 : 0);
276
277struct aml_chunk* root = aml_create_node(NULL);
278aml_add_buffer(root, ssdt_header, sizeof(ssdt_header)); // SSDT header
279struct aml_chunk* scop = aml_add_scope(root, "\\_PR_");
280struct aml_chunk* name = aml_add_name(scop, "CST_");
281struct aml_chunk* pack = aml_add_package(name);
282aml_add_byte(pack, cstates_count);
283
284struct aml_chunk* tmpl = aml_add_package(pack);
285cstate_resource_template[11] = 0x00; // C1
286cstate_resource_template[10] = 0x00; // C1
287aml_add_buffer(tmpl, cstate_resource_template, sizeof(cstate_resource_template));
288aml_add_byte(tmpl, 0x01); // C1
289aml_add_byte(tmpl, 0x01); // Latency
290aml_add_word(tmpl, 0x03e8); // Power
291
292// C2
293if (c2_enabled)
294{
295tmpl = aml_add_package(pack);
296cstate_resource_template[11] = 0x10; // C2
297cstate_resource_template[10] = 0x01; // C2
298aml_add_buffer(tmpl, cstate_resource_template, sizeof(cstate_resource_template));
299aml_add_byte(tmpl, 0x02); // C2
300aml_add_byte(tmpl, fadt->C2_Latency);
301aml_add_word(tmpl, 0x01f4); // Power
302}
303// C4
304if (c4_enabled)
305{
306tmpl = aml_add_package(pack);
307cstate_resource_template[11] = 0x30; // C4
308cstate_resource_template[10] = 0x03; // C4
309aml_add_buffer(tmpl, cstate_resource_template, sizeof(cstate_resource_template));
310aml_add_byte(tmpl, 0x04); // C4
311aml_add_word(tmpl, fadt->C3_Latency); // TODO: right latency for C4
312aml_add_byte(tmpl, 0xfa); // Power
313}
314else
315// C3
316if (c3_enabled)
317{
318tmpl = aml_add_package(pack);
319cstate_resource_template[11] = 0x20; // C3
320cstate_resource_template[10] = 0x02; // C3
321aml_add_buffer(tmpl, cstate_resource_template, sizeof(cstate_resource_template));
322aml_add_byte(tmpl, 0x03); // C3
323aml_add_word(tmpl, fadt->C3_Latency);
324aml_add_word(tmpl, 0x015e); // Power
325}
326
327
328// Aliaces
329int i;
330for (i = 0; i < acpi_cpu_count; i++)
331{
332char name[9];
333sprintf(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]);
334
335scop = aml_add_scope(root, name);
336aml_add_alias(scop, "CST_", "_CST");
337}
338
339aml_calculate_size(root);
340
341struct acpi_2_ssdt *ssdt = (struct acpi_2_ssdt *)AllocateKernelMemory(root->Size);
342
343aml_write_node(root, (void*)ssdt, 0);
344
345ssdt->Length = root->Size;
346ssdt->Checksum = 0;
347ssdt->Checksum = 256 - checksum8(ssdt, ssdt->Length);
348
349aml_destroy_node(root);
350
351//dumpPhysAddr("C-States SSDT content: ", ssdt, ssdt->Length);
352
353verbose ("SSDT with CPU C-States generated successfully\n");
354
355return ssdt;
356}
357else
358{
359verbose ("DSDT CPUs not found: C-States not generated !!!\n");
360}
361
362return NULL;
363}
364
365struct acpi_2_ssdt *generate_pss_ssdt(struct acpi_2_dsdt* dsdt)
366{
367char ssdt_header[] =
368{
3690x53, 0x53, 0x44, 0x54, 0x7E, 0x00, 0x00, 0x00, /* SSDT.... */
3700x01, 0x6A, 0x50, 0x6D, 0x52, 0x65, 0x66, 0x00, /* ..PmRef. */
3710x43, 0x70, 0x75, 0x50, 0x6D, 0x00, 0x00, 0x00, /* CpuPm... */
3720x00, 0x30, 0x00, 0x00, 0x49, 0x4E, 0x54, 0x4C, /* .0..INTL */
3730x31, 0x03, 0x10, 0x20,/* 1.._*/
374};
375
376if (Platform.CPU.Vendor != 0x756E6547) {
377verbose ("Not an Intel platform: P-States will not be generated !!!\n");
378return NULL;
379}
380
381if (!(Platform.CPU.Features & CPU_FEATURE_MSR)) {
382verbose ("Unsupported CPU: P-States will not be generated !!!\n");
383return NULL;
384}
385
386if (acpi_cpu_count == 0)
387get_acpi_cpu_names((void*)dsdt, dsdt->Length);
388
389if (acpi_cpu_count > 0)
390{
391bool cpu_dynamic_fsb = false, cpu_noninteger_bus_ratio = (rdmsr64(MSR_IA32_PERF_STATUS) & (1ULL << 46));
392struct p_state initial, maximum, minimum, p_states[32];
393uint8_t p_states_count;
394
395// Retrieving P-States, ported from code by superhai (c)
396switch (Platform.CPU.Family) {
397case 0x06:
398{
399switch (Platform.CPU.Model)
400{
401case 0x0F: // Intel Core (65nm)
402case 0x17: // Intel Core (45nm)
403case 0x1C: // Intel Atom (45nm)
404case 0x1A: // Intel Core i7 LGA1366 (45nm)
405case 0x1E: // Intel Core i5, i7 LGA1156 (45nm)
406case 0x1F:
407case 0x25: // Intel Core i3, i5, i7 LGA1156 (32nm)
408case 0x2C: // Intel Core i7 LGA1366 (32nm) 6 Core
409case 0x2F:
410if (rdmsr64(MSR_IA32_EXT_CONFIG) & (1 << 27))
411{
412wrmsr64(MSR_IA32_EXT_CONFIG, (rdmsr64(MSR_IA32_EXT_CONFIG) | (1 << 28)));
413delay(1);
414cpu_dynamic_fsb = rdmsr64(MSR_IA32_EXT_CONFIG) & (1 << 28);
415}
416break;
417}
418}
419}
420
421initial.Control = rdmsr64(MSR_IA32_PERF_STATUS);
422
423maximum.Control = ((rdmsr64(MSR_IA32_PERF_STATUS) >> 32) & 0x1F3F) | (0x4000 * cpu_noninteger_bus_ratio);
424maximum.CID = ((maximum.FID & 0x1F) << 1) | cpu_noninteger_bus_ratio;
425
426minimum.FID = ((rdmsr64(MSR_IA32_PERF_STATUS) >> 24) & 0x1F) | (0x80 * cpu_dynamic_fsb);
427minimum.VID = ((rdmsr64(MSR_IA32_PERF_STATUS) >> 48) & 0x3F);
428
429if (minimum.FID == 0)
430{
431uint8_t i;
432// Probe for lowest fid
433for (i = maximum.FID; i >= 0x6; i--)
434{
435wrmsr64(MSR_IA32_PERF_CONTROL, (rdmsr64(MSR_IA32_PERF_CONTROL) & 0xFFFFFFFFFFFF0000ULL) | (i << 8) | minimum.VID);
436intel_waitforsts();
437minimum.FID = (rdmsr64(MSR_IA32_PERF_STATUS) >> 8) & 0x1F;
438delay(1);
439}
440
441wrmsr64(MSR_IA32_PERF_CONTROL, (rdmsr64(MSR_IA32_PERF_CONTROL) & 0xFFFFFFFFFFFF0000ULL) | (maximum.FID << 8) | maximum.VID);
442intel_waitforsts();
443}
444
445if (minimum.VID == maximum.VID)
446{
447uint8_t i;
448// Probe for lowest vid
449for (i = maximum.VID; i > 0xA; i--)
450{
451wrmsr64(MSR_IA32_PERF_CONTROL, (rdmsr64(MSR_IA32_PERF_CONTROL) & 0xFFFFFFFFFFFF0000ULL) | (minimum.FID << 8) | i);
452intel_waitforsts();
453minimum.VID = rdmsr64(MSR_IA32_PERF_STATUS) & 0x3F;
454delay(1);
455}
456
457wrmsr64(MSR_IA32_PERF_CONTROL, (rdmsr64(MSR_IA32_PERF_CONTROL) & 0xFFFFFFFFFFFF0000ULL) | (maximum.FID << 8) | maximum.VID);
458intel_waitforsts();
459}
460
461minimum.CID = ((minimum.FID & 0x1F) << 1) >> cpu_dynamic_fsb;
462
463// Sanity check
464if (maximum.CID < minimum.CID)
465{
466DBG("Insane FID values!");
467p_states_count = 1;
468}
469else
470{
471// Finalize P-States
472// Find how many P-States machine supports
473p_states_count = maximum.CID - minimum.CID + 1;
474
475if (p_states_count > 32)
476p_states_count = 32;
477
478uint8_t vidstep;
479uint8_t i = 0, u, invalid = 0;
480
481vidstep = ((maximum.VID << 2) - (minimum.VID << 2)) / (p_states_count - 1);
482
483for (u = 0; u < p_states_count; u++)
484{
485i = u - invalid;
486
487p_states[i].CID = maximum.CID - u;
488p_states[i].FID = (p_states[i].CID >> 1);
489
490if (p_states[i].FID < 0x6)
491{
492if (cpu_dynamic_fsb)
493p_states[i].FID = (p_states[i].FID << 1) | 0x80;
494}
495else if (cpu_noninteger_bus_ratio)
496{
497p_states[i].FID = p_states[i].FID | (0x40 * (p_states[i].CID & 0x1));
498}
499
500if (i && p_states[i].FID == p_states[i-1].FID)
501invalid++;
502
503p_states[i].VID = ((maximum.VID << 2) - (vidstep * u)) >> 2;
504
505uint32_t multiplier = p_states[i].FID & 0x1f;// = 0x08
506bool half = p_states[i].FID & 0x40;// = 0x01
507bool dfsb = p_states[i].FID & 0x80;// = 0x00
508uint32_t fsb = Platform.CPU.FSBFrequency / 1000000; // = 400
509uint32_t halffsb = (fsb + 1) >> 1;// = 200
510uint32_t frequency = (multiplier * fsb);// = 3200
511
512p_states[i].Frequency = (frequency + (half * halffsb)) >> dfsb;// = 3200 + 200 = 3400
513}
514
515p_states_count -= invalid;
516}
517
518// Generating SSDT
519
520if (p_states_count > 0)
521{
522int i;
523
524struct aml_chunk* root = aml_create_node(NULL);
525aml_add_buffer(root, ssdt_header, sizeof(ssdt_header)); // SSDT header
526struct aml_chunk* scop = aml_add_scope(root, "\\_PR_");
527struct aml_chunk* name = aml_add_name(scop, "PSS_");
528struct aml_chunk* pack = aml_add_package(name);
529
530for (i = 0; i < p_states_count; i++)
531{
532struct aml_chunk* pstt = aml_add_package(pack);
533
534aml_add_dword(pstt, p_states[i].Frequency);
535aml_add_dword(pstt, 0x00000000); // Power
536aml_add_dword(pstt, 0x0000000A); // Latency
537aml_add_dword(pstt, 0x0000000A); // Latency
538aml_add_dword(pstt, p_states[i].Control);
539aml_add_dword(pstt, i+1); // Status
540}
541
542// Add aliaces
543for (i = 0; i < acpi_cpu_count; i++)
544{
545char name[9];
546sprintf(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]);
547
548scop = aml_add_scope(root, name);
549aml_add_alias(scop, "PSS_", "_PSS");
550}
551
552aml_calculate_size(root);
553
554struct acpi_2_ssdt *ssdt = (struct acpi_2_ssdt *)AllocateKernelMemory(root->Size);
555
556aml_write_node(root, (void*)ssdt, 0);
557
558ssdt->Length = root->Size;
559ssdt->Checksum = 0;
560ssdt->Checksum = 256 - checksum8(ssdt, ssdt->Length);
561
562aml_destroy_node(root);
563
564//dumpPhysAddr("P-States SSDT content: ", ssdt, ssdt->Length);
565
566verbose ("SSDT with CPU P-States generated successfully\n");
567
568return ssdt;
569}
570}
571else {
572verbose ("DSDT CPUs not found: P-States not generated !!!\n");
573}
574
575return NULL;
576}
577
578struct acpi_2_fadt *patch_fadt(struct acpi_2_fadt *fadt, struct acpi_2_dsdt *new_dsdt)
579{
580extern void setupSystemType();
581
582struct acpi_2_fadt *fadt_mod;
583bool fadt_rev2_needed = false;
584bool fix_restart;
585const char * value;
586
587// Restart Fix
588if (Platform.CPU.Vendor == 0x756E6547) {/* Intel */
589fix_restart = true;
590getBoolForKey(kRestartFix, &fix_restart, &bootInfo->bootConfig);
591} else {
592verbose ("Not an Intel platform: Restart Fix not applied !!!\n");
593fix_restart = false;
594}
595
596if (fix_restart) fadt_rev2_needed = true;
597
598// Allocate new fadt table
599if (fadt->Length < 0x84 && fadt_rev2_needed)
600{
601fadt_mod=(struct acpi_2_fadt *)AllocateKernelMemory(0x84);
602memcpy(fadt_mod, fadt, fadt->Length);
603fadt_mod->Length = 0x84;
604fadt_mod->Revision = 0x02; // FADT rev 2 (ACPI 1.0B MS extensions)
605}
606else
607{
608fadt_mod=(struct acpi_2_fadt *)AllocateKernelMemory(fadt->Length);
609memcpy(fadt_mod, fadt, fadt->Length);
610}
611// Determine system type / PM_Model
612if ( (value=getStringForKey(kSystemType, &bootInfo->bootConfig))!=NULL)
613{
614if (Platform.Type > 6)
615{
616if(fadt_mod->PM_Profile<=6)
617Platform.Type = fadt_mod->PM_Profile; // get the fadt if correct
618else
619Platform.Type = 1;/* Set a fixed value (Desktop) */
620verbose("Error: system-type must be 0..6. Defaulting to %d !\n", Platform.Type);
621}
622else
623Platform.Type = (unsigned char) strtoul(value, NULL, 10);
624}
625// Set PM_Profile from System-type if only user wanted this value to be forced
626if (fadt_mod->PM_Profile != Platform.Type)
627{
628 if (value)
629{ // user has overriden the SystemType so take care of it in FACP
630verbose("FADT: changing PM_Profile from 0x%02x to 0x%02x\n", fadt_mod->PM_Profile, Platform.Type);
631fadt_mod->PM_Profile = Platform.Type;
632 }
633 else
634 { // PM_Profile has a different value and no override has been set, so reflect the user value to ioregs
635Platform.Type = fadt_mod->PM_Profile <= 6 ? fadt_mod->PM_Profile : 1;
636 }
637}
638// We now have to write the systemm-type in ioregs: we cannot do it before in setupDeviceTree()
639// because we need to take care of facp original content, if it is correct.
640setupSystemType();
641
642// Patch FADT to fix restart
643if (fix_restart)
644{
645fadt_mod->Flags|= 0x400;
646fadt_mod->Reset_SpaceID= 0x01; // System I/O
647fadt_mod->Reset_BitWidth= 0x08; // 1 byte
648fadt_mod->Reset_BitOffset= 0x00; // Offset 0
649fadt_mod->Reset_AccessWidth= 0x01; // Byte access
650fadt_mod->Reset_Address= 0x0cf9; // Address of the register
651fadt_mod->Reset_Value= 0x06; // Value to write to reset the system
652verbose("FADT: Restart Fix applied!\n");
653}
654
655// Patch DSDT Address if we have loaded DSDT.aml
656if(new_dsdt)
657{
658DBG("DSDT: Old @%x,%x, ",fadt_mod->DSDT,fadt_mod->X_DSDT);
659
660fadt_mod->DSDT=(uint32_t)new_dsdt;
661if ((uint32_t)(&(fadt_mod->X_DSDT))-(uint32_t)fadt_mod+8<=fadt_mod->Length)
662fadt_mod->X_DSDT=(uint32_t)new_dsdt;
663
664DBG("New @%x,%x\n",fadt_mod->DSDT,fadt_mod->X_DSDT);
665
666verbose("FADT: Using custom DSDT!\n");
667}
668
669// Correct the checksum
670fadt_mod->Checksum=0;
671fadt_mod->Checksum=256-checksum8(fadt_mod,fadt_mod->Length);
672
673return fadt_mod;
674}
675
676/* Setup ACPI without replacing DSDT. */
677int setupAcpiNoMod()
678{
679//addConfigurationTable(&gEfiAcpiTableGuid, getAddressOfAcpiTable(), "ACPI");
680//addConfigurationTable(&gEfiAcpi20TableGuid, getAddressOfAcpi20Table(), "ACPI_20");
681/* XXX aserebln why uint32 cast if pointer is uint64 ? */
682acpi10_p = (uint32_t)getAddressOfAcpiTable();
683acpi20_p = (uint32_t)getAddressOfAcpi20Table();
684addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI");
685if(acpi20_p) addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20");
686return 1;
687}
688
689/* Setup ACPI. Replace DSDT if DSDT.aml is found */
690int setupAcpi(void)
691{
692int version;
693void *new_dsdt;
694
695// Load replacement DSDT
696new_dsdt=loadACPITable("DSDT.aml");
697// Mozodojo: going to patch FACP and load SSDT's even if DSDT.aml is not present
698/*if (!new_dsdt)
699 {
700 return setupAcpiNoMod();
701 }*/
702
703// Mozodojo: Load additional SSDTs
704struct acpi_2_ssdt *new_ssdt[32]; // 30 + 2 additional tables for pss & cst
705int ssdt_count=0;
706
707// TEST!
708/*if(new_ssdt[ssdt_count] = generate_test_ssdt())
709ssdt_count++;*/
710
711// SSDT Options
712bool drop_ssdt=false, generate_pstates=false, generate_cstates=false;
713
714getBoolForKey(kDropSSDT, &drop_ssdt, &bootInfo->bootConfig);
715getBoolForKey(kGeneratePStates, &generate_pstates, &bootInfo->bootConfig);
716getBoolForKey(kGenerateCStates, &generate_cstates, &bootInfo->bootConfig);
717
718{
719int i;
720
721for (i=0; i<30; i++)
722{
723char filename[512];
724
725sprintf(filename, i>0?"SSDT-%d.aml":"SSDT.aml", i);
726
727if(new_ssdt[ssdt_count] = loadACPITable(filename))
728{
729ssdt_count++;
730}
731else
732{
733break;
734}
735}
736}
737
738// Do the same procedure for both versions of ACPI
739for (version=0; version<2; version++) {
740struct acpi_2_rsdp *rsdp, *rsdp_mod;
741struct acpi_2_rsdt *rsdt, *rsdt_mod;
742int rsdplength;
743
744// Find original rsdp
745rsdp=(struct acpi_2_rsdp *)(version?getAddressOfAcpi20Table():getAddressOfAcpiTable());
746if (!rsdp)
747{
748DBG("No ACPI version %d found. Ignoring\n", version+1);
749if (version)
750addConfigurationTable(&gEfiAcpi20TableGuid, NULL, "ACPI_20");
751else
752addConfigurationTable(&gEfiAcpiTableGuid, NULL, "ACPI");
753continue;
754}
755rsdplength=version?rsdp->Length:20;
756
757DBG("RSDP version %d found @%x. Length=%d\n",version+1,rsdp,rsdplength);
758
759/* FIXME: no check that memory allocation succeeded
760 * Copy and patch RSDP,RSDT, XSDT and FADT
761 * For more info see ACPI Specification pages 110 and following
762 */
763
764rsdp_mod=(struct acpi_2_rsdp *) AllocateKernelMemory(rsdplength);
765memcpy(rsdp_mod, rsdp, rsdplength);
766rsdt=(struct acpi_2_rsdt *)(rsdp->RsdtAddress);
767
768DBG("RSDT @%x, Length %d\n",rsdt, rsdt->Length);
769
770if (rsdt && (uint32_t)rsdt !=0xffffffff && rsdt->Length<0x10000)
771{
772uint32_t *rsdt_entries;
773int rsdt_entries_num;
774int dropoffset=0, i;
775
776// mozo: using malloc cos I didn't found how to free already allocated kernel memory
777rsdt_mod=(struct acpi_2_rsdt *)malloc(rsdt->Length);
778memcpy (rsdt_mod, rsdt, rsdt->Length);
779rsdp_mod->RsdtAddress=(uint32_t)rsdt_mod;
780rsdt_entries_num=(rsdt_mod->Length-sizeof(struct acpi_2_rsdt))/4;
781rsdt_entries=(uint32_t *)(rsdt_mod+1);
782for (i=0;i<rsdt_entries_num;i++)
783{
784char *table=(char *)(rsdt_entries[i]);
785if (!table)
786continue;
787
788DBG("TABLE %c%c%c%c,",table[0],table[1],table[2],table[3]);
789
790rsdt_entries[i-dropoffset]=rsdt_entries[i];
791
792if (drop_ssdt && tableSign(table, "SSDT"))
793{
794dropoffset++;
795continue;
796}
797if (tableSign(table, "DSDT"))
798{
799DBG("DSDT found\n");
800
801if(new_dsdt)
802rsdt_entries[i-dropoffset]=(uint32_t)new_dsdt;
803
804continue;
805}
806if (tableSign(table, "FACP"))
807{
808struct acpi_2_fadt *fadt, *fadt_mod;
809fadt=(struct acpi_2_fadt *)rsdt_entries[i];
810
811DBG("FADT found @%x, Length %d\n",fadt, fadt->Length);
812
813if (!fadt || (uint32_t)fadt == 0xffffffff || fadt->Length>0x10000)
814{
815printf("FADT incorrect. Not modified\n");
816continue;
817}
818
819fadt_mod = patch_fadt(fadt, new_dsdt);
820rsdt_entries[i-dropoffset]=(uint32_t)fadt_mod;
821
822// Generate _CST SSDT
823if (generate_cstates && (new_ssdt[ssdt_count] = generate_cst_ssdt(fadt_mod)))
824{
825generate_cstates = FALSE; // Generate SSDT only once!
826ssdt_count++;
827}
828
829// Generating _PSS SSDT
830if (generate_pstates && (new_ssdt[ssdt_count] = generate_pss_ssdt((void*)fadt_mod->DSDT)))
831{
832generate_pstates = FALSE; // Generate SSDT only once!
833ssdt_count++;
834}
835
836continue;
837}
838}
839DBG("\n");
840
841// Allocate rsdt in Kernel memory area
842rsdt_mod->Length += 4*ssdt_count - 4*dropoffset;
843struct acpi_2_rsdt *rsdt_copy = (struct acpi_2_rsdt *)AllocateKernelMemory(rsdt_mod->Length);
844memcpy (rsdt_copy, rsdt_mod, rsdt_mod->Length);
845free(rsdt_mod); rsdt_mod = rsdt_copy;
846rsdp_mod->RsdtAddress=(uint32_t)rsdt_mod;
847rsdt_entries_num=(rsdt_mod->Length-sizeof(struct acpi_2_rsdt))/4;
848rsdt_entries=(uint32_t *)(rsdt_mod+1);
849
850// Mozodojo: Insert additional SSDTs into RSDT
851if(ssdt_count>0)
852{
853int j;
854
855for (j=0; j<ssdt_count; j++)
856rsdt_entries[i-dropoffset+j]=(uint32_t)new_ssdt[j];
857
858verbose("RSDT: Added %d SSDT table(s)\n", ssdt_count);
859}
860
861// Correct the checksum of RSDT
862DBG("RSDT: Original checksum %d, ", rsdt_mod->Checksum);
863
864rsdt_mod->Checksum=0;
865rsdt_mod->Checksum=256-checksum8(rsdt_mod,rsdt_mod->Length);
866
867DBG("New checksum %d at %x\n", rsdt_mod->Checksum,rsdt_mod);
868}
869else
870{
871rsdp_mod->RsdtAddress=0;
872printf("RSDT not found or RSDT incorrect\n");
873}
874
875if (version)
876{
877struct acpi_2_xsdt *xsdt, *xsdt_mod;
878
879// FIXME: handle 64-bit address correctly
880
881xsdt=(struct acpi_2_xsdt*) ((uint32_t)rsdp->XsdtAddress);
882DBG("XSDT @%x;%x, Length=%d\n", (uint32_t)(rsdp->XsdtAddress>>32),(uint32_t)rsdp->XsdtAddress,
883xsdt->Length);
884if (xsdt && (uint64_t)rsdp->XsdtAddress<0xffffffff && xsdt->Length<0x10000)
885{
886uint64_t *xsdt_entries;
887int xsdt_entries_num, i;
888int dropoffset=0;
889
890// mozo: using malloc cos I didn't found how to free already allocated kernel memory
891xsdt_mod=(struct acpi_2_xsdt*)malloc(xsdt->Length);
892memcpy(xsdt_mod, xsdt, xsdt->Length);
893rsdp_mod->XsdtAddress=(uint32_t)xsdt_mod;
894xsdt_entries_num=(xsdt_mod->Length-sizeof(struct acpi_2_xsdt))/8;
895xsdt_entries=(uint64_t *)(xsdt_mod+1);
896for (i=0;i<xsdt_entries_num;i++)
897{
898char *table=(char *)((uint32_t)(xsdt_entries[i]));
899if (!table)
900continue;
901
902xsdt_entries[i-dropoffset]=xsdt_entries[i];
903
904if (drop_ssdt && tableSign(table, "SSDT"))
905{
906dropoffset++;
907continue;
908}
909if (tableSign(table, "DSDT"))
910{
911DBG("DSDT found\n");
912
913if (new_dsdt)
914xsdt_entries[i-dropoffset]=(uint32_t)new_dsdt;
915
916DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
917
918continue;
919}
920if (tableSign(table, "FACP"))
921{
922struct acpi_2_fadt *fadt, *fadt_mod;
923fadt=(struct acpi_2_fadt *)(uint32_t)xsdt_entries[i];
924
925DBG("FADT found @%x,%x, Length %d\n",(uint32_t)(xsdt_entries[i]>>32),fadt,
926fadt->Length);
927
928if (!fadt || (uint64_t)xsdt_entries[i] >= 0xffffffff || fadt->Length>0x10000)
929{
930verbose("FADT incorrect or after 4GB. Dropping XSDT\n");
931goto drop_xsdt;
932}
933
934fadt_mod = patch_fadt(fadt, new_dsdt);
935xsdt_entries[i-dropoffset]=(uint32_t)fadt_mod;
936
937DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
938
939// Generate _CST SSDT
940if (generate_cstates && (new_ssdt[ssdt_count] = generate_cst_ssdt(fadt_mod)))
941{
942generate_cstates = FALSE; // Generate SSDT only once!
943ssdt_count++;
944}
945
946// Generating _PSS SSDT
947if (generate_pstates && (new_ssdt[ssdt_count] = generate_pss_ssdt((void*)fadt_mod->DSDT)))
948{
949generate_pstates = FALSE; // Generate SSDT only once!
950ssdt_count++;
951}
952
953continue;
954}
955
956DBG("TABLE %c%c%c%c@%x,",table[0],table[1],table[2],table[3],xsdt_entries[i]);
957
958}
959
960// Allocate xsdt in Kernel memory area
961xsdt_mod->Length += 8*ssdt_count - 8*dropoffset;
962struct acpi_2_xsdt *xsdt_copy = (struct acpi_2_xsdt *)AllocateKernelMemory(xsdt_mod->Length);
963memcpy(xsdt_copy, xsdt_mod, xsdt_mod->Length);
964free(xsdt_mod); xsdt_mod = xsdt_copy;
965rsdp_mod->XsdtAddress=(uint32_t)xsdt_mod;
966xsdt_entries_num=(xsdt_mod->Length-sizeof(struct acpi_2_xsdt))/8;
967xsdt_entries=(uint64_t *)(xsdt_mod+1);
968
969// Mozodojo: Insert additional SSDTs into XSDT
970if(ssdt_count>0)
971{
972int j;
973
974for (j=0; j<ssdt_count; j++)
975xsdt_entries[i-dropoffset+j]=(uint32_t)new_ssdt[j];
976
977verbose("Added %d SSDT table(s) into XSDT\n", ssdt_count);
978}
979
980// Correct the checksum of XSDT
981xsdt_mod->Checksum=0;
982xsdt_mod->Checksum=256-checksum8(xsdt_mod,xsdt_mod->Length);
983}
984else
985{
986drop_xsdt:
987
988DBG("About to drop XSDT\n");
989
990/*FIXME: Now we just hope that if MacOS doesn't find XSDT it reverts to RSDT.
991 * A Better strategy would be to generate
992 */
993
994rsdp_mod->XsdtAddress=0xffffffffffffffffLL;
995verbose("XSDT not found or XSDT incorrect\n");
996}
997}
998
999// Correct the checksum of RSDP
1000
1001DBG("RSDP: Original checksum %d, ", rsdp_mod->Checksum);
1002
1003rsdp_mod->Checksum=0;
1004rsdp_mod->Checksum=256-checksum8(rsdp_mod,20);
1005
1006DBG("New checksum %d\n", rsdp_mod->Checksum);
1007
1008if (version)
1009{
1010DBG("RSDP: Original extended checksum %d", rsdp_mod->ExtendedChecksum);
1011
1012rsdp_mod->ExtendedChecksum=0;
1013rsdp_mod->ExtendedChecksum=256-checksum8(rsdp_mod,rsdp_mod->Length);
1014
1015DBG("New extended checksum %d\n", rsdp_mod->ExtendedChecksum);
1016
1017}
1018
1019//verbose("Patched ACPI version %d DSDT\n", version+1);
1020if (version)
1021{
1022/* XXX aserebln why uint32 cast if pointer is uint64 ? */
1023acpi20_p = (uint32_t)rsdp_mod;
1024addConfigurationTable(&gEfiAcpi20TableGuid, &acpi20_p, "ACPI_20");
1025}
1026else
1027{
1028/* XXX aserebln why uint32 cast if pointer is uint64 ? */
1029acpi10_p = (uint32_t)rsdp_mod;
1030addConfigurationTable(&gEfiAcpiTableGuid, &acpi10_p, "ACPI");
1031}
1032}
1033#if DEBUG_ACPI
1034printf("Press a key to continue... (DEBUG_ACPI)\n");
1035getc();
1036#endif
1037return 1;
1038}
1039

Archive Download this file

Revision: 214