Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Trunk/i386/libsaio/acpi_patcher.c

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

Archive Download this file

Revision: 2111