Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 2285