Add Post Memory Manager (PMM) support.
[seabios.git] / src / acpi.c
1 // Support for generating ACPI tables (on emulators)
2 //
3 // Copyright (C) 2008,2009  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2006 Fabrice Bellard
5 //
6 // This file may be distributed under the terms of the GNU LGPLv3 license.
7
8 #include "acpi.h" // struct rsdp_descriptor
9 #include "util.h" // memcpy
10 #include "pci.h" // pci_find_device
11 #include "biosvar.h" // GET_EBDA
12 #include "pci_ids.h" // PCI_VENDOR_ID_INTEL
13 #include "pci_regs.h" // PCI_INTERRUPT_LINE
14
15
16 /****************************************************/
17 /* ACPI tables init */
18
19 /* Table structure from Linux kernel (the ACPI tables are under the
20    BSD license) */
21
22 #define ACPI_TABLE_HEADER_DEF   /* ACPI common table header */ \
23     u32 signature;          /* ACPI signature (4 ASCII characters) */ \
24     u32 length;                 /* Length of table, in bytes, including header */ \
25     u8  revision;               /* ACPI Specification minor version # */ \
26     u8  checksum;               /* To make sum of entire table == 0 */ \
27     u8  oem_id [6];             /* OEM identification */ \
28     u8  oem_table_id [8];       /* OEM table identification */ \
29     u32 oem_revision;           /* OEM revision number */ \
30     u8  asl_compiler_id [4];    /* ASL compiler vendor ID */ \
31     u32 asl_compiler_revision;  /* ASL compiler revision number */
32
33
34 struct acpi_table_header         /* ACPI common table header */
35 {
36     ACPI_TABLE_HEADER_DEF
37 } PACKED;
38
39 /*
40  * ACPI 1.0 Root System Description Table (RSDT)
41  */
42 #define RSDT_SIGNATURE 0x54445352 // RSDT
43 struct rsdt_descriptor_rev1
44 {
45     ACPI_TABLE_HEADER_DEF       /* ACPI common table header */
46     u32 table_offset_entry[3];  /* Array of pointers to other */
47     /* ACPI tables */
48 } PACKED;
49
50 /*
51  * ACPI 1.0 Firmware ACPI Control Structure (FACS)
52  */
53 #define FACS_SIGNATURE 0x53434146 // FACS
54 struct facs_descriptor_rev1
55 {
56     u32 signature;           /* ACPI Signature */
57     u32 length;                 /* Length of structure, in bytes */
58     u32 hardware_signature;     /* Hardware configuration signature */
59     u32 firmware_waking_vector; /* ACPI OS waking vector */
60     u32 global_lock;            /* Global Lock */
61     u32 S4bios_f        : 1;    /* Indicates if S4BIOS support is present */
62     u32 reserved1       : 31;   /* Must be 0 */
63     u8  resverved3 [40];        /* Reserved - must be zero */
64 } PACKED;
65
66
67 /*
68  * ACPI 1.0 Fixed ACPI Description Table (FADT)
69  */
70 #define FACP_SIGNATURE 0x50434146 // FACP
71 struct fadt_descriptor_rev1
72 {
73     ACPI_TABLE_HEADER_DEF     /* ACPI common table header */
74     u32 firmware_ctrl;          /* Physical address of FACS */
75     u32 dsdt;                   /* Physical address of DSDT */
76     u8  model;                  /* System Interrupt Model */
77     u8  reserved1;              /* Reserved */
78     u16 sci_int;                /* System vector of SCI interrupt */
79     u32 smi_cmd;                /* Port address of SMI command port */
80     u8  acpi_enable;            /* Value to write to smi_cmd to enable ACPI */
81     u8  acpi_disable;           /* Value to write to smi_cmd to disable ACPI */
82     u8  S4bios_req;             /* Value to write to SMI CMD to enter S4BIOS state */
83     u8  reserved2;              /* Reserved - must be zero */
84     u32 pm1a_evt_blk;           /* Port address of Power Mgt 1a acpi_event Reg Blk */
85     u32 pm1b_evt_blk;           /* Port address of Power Mgt 1b acpi_event Reg Blk */
86     u32 pm1a_cnt_blk;           /* Port address of Power Mgt 1a Control Reg Blk */
87     u32 pm1b_cnt_blk;           /* Port address of Power Mgt 1b Control Reg Blk */
88     u32 pm2_cnt_blk;            /* Port address of Power Mgt 2 Control Reg Blk */
89     u32 pm_tmr_blk;             /* Port address of Power Mgt Timer Ctrl Reg Blk */
90     u32 gpe0_blk;               /* Port addr of General Purpose acpi_event 0 Reg Blk */
91     u32 gpe1_blk;               /* Port addr of General Purpose acpi_event 1 Reg Blk */
92     u8  pm1_evt_len;            /* Byte length of ports at pm1_x_evt_blk */
93     u8  pm1_cnt_len;            /* Byte length of ports at pm1_x_cnt_blk */
94     u8  pm2_cnt_len;            /* Byte Length of ports at pm2_cnt_blk */
95     u8  pm_tmr_len;             /* Byte Length of ports at pm_tm_blk */
96     u8  gpe0_blk_len;           /* Byte Length of ports at gpe0_blk */
97     u8  gpe1_blk_len;           /* Byte Length of ports at gpe1_blk */
98     u8  gpe1_base;              /* Offset in gpe model where gpe1 events start */
99     u8  reserved3;              /* Reserved */
100     u16 plvl2_lat;              /* Worst case HW latency to enter/exit C2 state */
101     u16 plvl3_lat;              /* Worst case HW latency to enter/exit C3 state */
102     u16 flush_size;             /* Size of area read to flush caches */
103     u16 flush_stride;           /* Stride used in flushing caches */
104     u8  duty_offset;            /* Bit location of duty cycle field in p_cnt reg */
105     u8  duty_width;             /* Bit width of duty cycle field in p_cnt reg */
106     u8  day_alrm;               /* Index to day-of-month alarm in RTC CMOS RAM */
107     u8  mon_alrm;               /* Index to month-of-year alarm in RTC CMOS RAM */
108     u8  century;                /* Index to century in RTC CMOS RAM */
109     u8  reserved4;              /* Reserved */
110     u8  reserved4a;             /* Reserved */
111     u8  reserved4b;             /* Reserved */
112 #if 0
113     u32 wb_invd         : 1;    /* The wbinvd instruction works properly */
114     u32 wb_invd_flush   : 1;    /* The wbinvd flushes but does not invalidate */
115     u32 proc_c1         : 1;    /* All processors support C1 state */
116     u32 plvl2_up        : 1;    /* C2 state works on MP system */
117     u32 pwr_button      : 1;    /* Power button is handled as a generic feature */
118     u32 sleep_button    : 1;    /* Sleep button is handled as a generic feature, or not present */
119     u32 fixed_rTC       : 1;    /* RTC wakeup stat not in fixed register space */
120     u32 rtcs4           : 1;    /* RTC wakeup stat not possible from S4 */
121     u32 tmr_val_ext     : 1;    /* The tmr_val width is 32 bits (0 = 24 bits) */
122     u32 reserved5       : 23;   /* Reserved - must be zero */
123 #else
124     u32 flags;
125 #endif
126 } PACKED;
127
128 /*
129  * MADT values and structures
130  */
131
132 /* Values for MADT PCATCompat */
133
134 #define DUAL_PIC                0
135 #define MULTIPLE_APIC           1
136
137
138 /* Master MADT */
139
140 #define APIC_SIGNATURE 0x43495041 // APIC
141 struct multiple_apic_table
142 {
143     ACPI_TABLE_HEADER_DEF     /* ACPI common table header */
144     u32 local_apic_address;     /* Physical address of local APIC */
145 #if 0
146     u32 PCATcompat      : 1;    /* A one indicates system also has dual 8259s */
147     u32 reserved1       : 31;
148 #else
149     u32 flags;
150 #endif
151 } PACKED;
152
153
154 /* Values for Type in APIC_HEADER_DEF */
155
156 #define APIC_PROCESSOR          0
157 #define APIC_IO                 1
158 #define APIC_XRUPT_OVERRIDE     2
159 #define APIC_NMI                3
160 #define APIC_LOCAL_NMI          4
161 #define APIC_ADDRESS_OVERRIDE   5
162 #define APIC_IO_SAPIC           6
163 #define APIC_LOCAL_SAPIC        7
164 #define APIC_XRUPT_SOURCE       8
165 #define APIC_RESERVED           9           /* 9 and greater are reserved */
166
167 /*
168  * MADT sub-structures (Follow MULTIPLE_APIC_DESCRIPTION_TABLE)
169  */
170 #define APIC_HEADER_DEF   /* Common APIC sub-structure header */\
171     u8  type;                               \
172     u8  length;
173
174 /* Sub-structures for MADT */
175
176 struct madt_processor_apic
177 {
178     APIC_HEADER_DEF
179     u8  processor_id;           /* ACPI processor id */
180     u8  local_apic_id;          /* Processor's local APIC id */
181 #if 0
182     u32 processor_enabled: 1;   /* Processor is usable if set */
183     u32 reserved2       : 31;   /* Reserved, must be zero */
184 #else
185     u32 flags;
186 #endif
187 } PACKED;
188
189 struct madt_io_apic
190 {
191     APIC_HEADER_DEF
192     u8  io_apic_id;             /* I/O APIC ID */
193     u8  reserved;               /* Reserved - must be zero */
194     u32 address;                /* APIC physical address */
195     u32 interrupt;              /* Global system interrupt where INTI
196                                  * lines start */
197 } PACKED;
198
199 #if CONFIG_KVM
200 /* IRQs 5,9,10,11 */
201 #define PCI_ISA_IRQ_MASK    0x0e20
202 #else
203 #define PCI_ISA_IRQ_MASK    0x0000
204 #endif
205
206 struct madt_intsrcovr {
207     APIC_HEADER_DEF
208     u8  bus;
209     u8  source;
210     u32 gsi;
211     u16 flags;
212 } PACKED;
213
214 #include "acpi-dsdt.hex"
215
216 static inline u16 cpu_to_le16(u16 x)
217 {
218     return x;
219 }
220
221 static inline u32 cpu_to_le32(u32 x)
222 {
223     return x;
224 }
225
226 static void
227 build_header(struct acpi_table_header *h, u32 sig, int len, u8 rev
228              , struct rsdt_descriptor_rev1 *rsdt)
229 {
230     h->signature = sig;
231     h->length = cpu_to_le32(len);
232     h->revision = rev;
233     memcpy(h->oem_id, CONFIG_APPNAME6, 6);
234     memcpy(h->oem_table_id, CONFIG_APPNAME4, 4);
235     memcpy(h->asl_compiler_id, CONFIG_APPNAME4, 4);
236     memcpy(h->oem_table_id + 4, (void*)&sig, 4);
237     h->oem_revision = cpu_to_le32(1);
238     h->asl_compiler_revision = cpu_to_le32(1);
239     h->checksum -= checksum(h, len);
240
241     // Add to rsdt table
242     if (!rsdt)
243         return;
244     if (rsdt->length >= sizeof(*rsdt)) {
245         dprintf(1, "No more room for rsdt entry!\n");
246         return;
247     }
248     u32 *p = (void*)rsdt + rsdt->length;
249     *p = (u32)h;
250     rsdt->length += sizeof(*p);
251 }
252
253 static void
254 build_fadt(struct rsdt_descriptor_rev1 *rsdt, int bdf)
255 {
256     struct fadt_descriptor_rev1 *fadt = malloc_high(sizeof(*fadt));
257     struct facs_descriptor_rev1 *facs = malloc_high(sizeof(*facs) + 63);
258     void *dsdt = malloc_high(sizeof(AmlCode));
259
260     if (!fadt || !facs || !dsdt) {
261         dprintf(1, "Not enough memory for fadt!\n");
262         return;
263     }
264
265     /* FACS */
266     facs = (void*)ALIGN((u32)facs, 64);
267     memset(facs, 0, sizeof(*facs));
268     facs->signature = FACS_SIGNATURE;
269     facs->length = cpu_to_le32(sizeof(*facs));
270
271     /* DSDT */
272     memcpy(dsdt, AmlCode, sizeof(AmlCode));
273
274     /* FADT */
275     memset(fadt, 0, sizeof(*fadt));
276     fadt->firmware_ctrl = cpu_to_le32((u32)facs);
277     fadt->dsdt = cpu_to_le32((u32)dsdt);
278     fadt->model = 1;
279     fadt->reserved1 = 0;
280     int pm_sci_int = pci_config_readb(bdf, PCI_INTERRUPT_LINE);
281     fadt->sci_int = cpu_to_le16(pm_sci_int);
282     fadt->smi_cmd = cpu_to_le32(PORT_SMI_CMD);
283     fadt->acpi_enable = 0xf1;
284     fadt->acpi_disable = 0xf0;
285     fadt->pm1a_evt_blk = cpu_to_le32(PORT_ACPI_PM_BASE);
286     fadt->pm1a_cnt_blk = cpu_to_le32(PORT_ACPI_PM_BASE + 0x04);
287     fadt->pm_tmr_blk = cpu_to_le32(PORT_ACPI_PM_BASE + 0x08);
288     fadt->pm1_evt_len = 4;
289     fadt->pm1_cnt_len = 2;
290     fadt->pm_tmr_len = 4;
291     fadt->plvl2_lat = cpu_to_le16(0xfff); // C2 state not supported
292     fadt->plvl3_lat = cpu_to_le16(0xfff); // C3 state not supported
293     /* WBINVD + PROC_C1 + PWR_BUTTON + SLP_BUTTON + FIX_RTC */
294     fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 4) | (1 << 5) | (1 << 6));
295
296     build_header((void*)fadt, FACP_SIGNATURE, sizeof(*fadt), 1, rsdt);
297 }
298
299 static void
300 build_madt(struct rsdt_descriptor_rev1 *rsdt)
301 {
302     int smp_cpus = CountCPUs;
303     int madt_size = (sizeof(struct multiple_apic_table)
304                      + sizeof(struct madt_processor_apic) * smp_cpus
305                      + sizeof(struct madt_io_apic)
306                      + sizeof(struct madt_intsrcovr) * 16);
307     struct multiple_apic_table *madt = malloc_high(madt_size);
308     if (!madt) {
309         dprintf(1, "Not enough memory for madt!\n");
310         return;
311     }
312     memset(madt, 0, madt_size);
313     madt->local_apic_address = cpu_to_le32(BUILD_APIC_ADDR);
314     madt->flags = cpu_to_le32(1);
315     struct madt_processor_apic *apic = (void*)&madt[1];
316     int i;
317     for (i=0; i<smp_cpus; i++) {
318         apic->type = APIC_PROCESSOR;
319         apic->length = sizeof(*apic);
320         apic->processor_id = i;
321         apic->local_apic_id = i;
322         apic->flags = cpu_to_le32(1);
323         apic++;
324     }
325     struct madt_io_apic *io_apic = (void*)apic;
326     io_apic->type = APIC_IO;
327     io_apic->length = sizeof(*io_apic);
328     io_apic->io_apic_id = smp_cpus;
329     io_apic->address = cpu_to_le32(BUILD_IOAPIC_ADDR);
330     io_apic->interrupt = cpu_to_le32(0);
331
332     struct madt_intsrcovr *intsrcovr = (void*)&io_apic[1];
333     if (irq0override) {
334         memset(intsrcovr, 0, sizeof(*intsrcovr));
335         intsrcovr->type   = APIC_XRUPT_OVERRIDE;
336         intsrcovr->length = sizeof(*intsrcovr);
337         intsrcovr->source = 0;
338         intsrcovr->gsi    = 2;
339         intsrcovr->flags  = 0; /* conforms to bus specifications */
340         intsrcovr++;
341     }
342     for (i = 1; i < 16; i++) {
343         if (!(PCI_ISA_IRQ_MASK & (1 << i)))
344             /* No need for a INT source override structure. */
345             continue;
346         memset(intsrcovr, 0, sizeof(*intsrcovr));
347         intsrcovr->type   = APIC_XRUPT_OVERRIDE;
348         intsrcovr->length = sizeof(*intsrcovr);
349         intsrcovr->source = i;
350         intsrcovr->gsi    = i;
351         intsrcovr->flags  = 0xd; /* active high, level triggered */
352         intsrcovr++;
353     }
354
355     build_header((void*)madt, APIC_SIGNATURE, (void*)intsrcovr - (void*)madt
356                  , 1, rsdt);
357 }
358
359 #define SSDT_SIGNATURE 0x54445353 // SSDT
360 static void
361 build_ssdt(struct rsdt_descriptor_rev1 *rsdt)
362 {
363     int smp_cpus = CountCPUs;
364     int acpi_cpus = smp_cpus > 0xff ? 0xff : smp_cpus;
365     // calculate the length of processor block and scope block
366     // excluding PkgLength
367     int cpu_length = 13 * acpi_cpus + 4;
368
369     int length = sizeof(struct acpi_table_header) + 3 + cpu_length;
370     u8 *ssdt = malloc_high(length);
371     if (! ssdt) {
372         dprintf(1, "No space for ssdt!\n");
373         return;
374     }
375
376     u8 *ssdt_ptr = ssdt;
377     ssdt_ptr[9] = 0; // checksum;
378     ssdt_ptr += sizeof(struct acpi_table_header);
379
380     // build processor scope header
381     *(ssdt_ptr++) = 0x10; // ScopeOp
382     if (cpu_length <= 0x3e) {
383         *(ssdt_ptr++) = cpu_length + 1;
384     } else {
385         *(ssdt_ptr++) = 0x7F;
386         *(ssdt_ptr++) = (cpu_length + 2) >> 6;
387     }
388     *(ssdt_ptr++) = '_'; // Name
389     *(ssdt_ptr++) = 'P';
390     *(ssdt_ptr++) = 'R';
391     *(ssdt_ptr++) = '_';
392
393     // build object for each processor
394     int i;
395     for (i=0; i<acpi_cpus; i++) {
396         *(ssdt_ptr++) = 0x5B; // ProcessorOp
397         *(ssdt_ptr++) = 0x83;
398         *(ssdt_ptr++) = 0x0B; // Length
399         *(ssdt_ptr++) = 'C';  // Name (CPUxx)
400         *(ssdt_ptr++) = 'P';
401         if ((i & 0xf0) != 0)
402             *(ssdt_ptr++) = (i >> 4) < 0xa ? (i >> 4) + '0' : (i >> 4) + 'A' - 0xa;
403         else
404             *(ssdt_ptr++) = 'U';
405         *(ssdt_ptr++) = (i & 0xf) < 0xa ? (i & 0xf) + '0' : (i & 0xf) + 'A' - 0xa;
406         *(ssdt_ptr++) = i;
407         *(ssdt_ptr++) = 0x10; // Processor block address
408         *(ssdt_ptr++) = 0xb0;
409         *(ssdt_ptr++) = 0;
410         *(ssdt_ptr++) = 0;
411         *(ssdt_ptr++) = 6;    // Processor block length
412     }
413
414     build_header((void*)ssdt, SSDT_SIGNATURE, ssdt_ptr - ssdt, 1, rsdt);
415 }
416
417 struct rsdp_descriptor *RsdpAddr;
418
419 void
420 acpi_bios_init(void)
421 {
422     if (! CONFIG_ACPI)
423         return;
424
425     dprintf(3, "init ACPI tables\n");
426
427     // This code is hardcoded for PIIX4 Power Management device.
428     int bdf = pci_find_device(PCI_VENDOR_ID_INTEL
429                               , PCI_DEVICE_ID_INTEL_82371AB_3);
430     if (bdf < 0)
431         // Device not found
432         return;
433
434     // Create initial rsdt table
435     struct rsdt_descriptor_rev1 *rsdt = malloc_high(sizeof(*rsdt));
436     if (!rsdt) {
437         dprintf(1, "Not enough memory for acpi rsdt table!\n");
438         return;
439     }
440     memset(rsdt, 0, sizeof(*rsdt));
441     rsdt->length = offsetof(struct rsdt_descriptor_rev1, table_offset_entry[0]);
442
443     // Add tables
444     build_fadt(rsdt, bdf);
445     build_ssdt(rsdt);
446     build_madt(rsdt);
447
448     build_header((void*)rsdt, RSDT_SIGNATURE, rsdt->length, 1, NULL);
449
450     // Build rsdp pointer table
451     struct rsdp_descriptor *rsdp = malloc_fseg(sizeof(*rsdp));
452     if (!rsdp) {
453         dprintf(1, "Not enough memory for acpi rsdp!\n");
454         return;
455     }
456     memset(rsdp, 0, sizeof(*rsdp));
457     rsdp->signature = RSDP_SIGNATURE;
458     memcpy(rsdp->oem_id, CONFIG_APPNAME6, 6);
459     rsdp->rsdt_physical_address = cpu_to_le32((u32)rsdt);
460     rsdp->checksum -= checksum(rsdp, 20);
461     RsdpAddr = rsdp;
462     dprintf(1, "ACPI tables: RSDP=%p RSDT=%p\n", rsdp, rsdt);
463 }
464
465 u32
466 find_resume_vector()
467 {
468     dprintf(4, "rsdp=%p\n", RsdpAddr);
469     if (!RsdpAddr || RsdpAddr->signature != RSDP_SIGNATURE)
470         return 0;
471     struct rsdt_descriptor_rev1 *rsdt = (void*)RsdpAddr->rsdt_physical_address;
472     dprintf(4, "rsdt=%p\n", rsdt);
473     if (!rsdt || rsdt->signature != RSDT_SIGNATURE)
474         return 0;
475     void *end = (void*)rsdt + rsdt->length;
476     int i;
477     for (i=0; (void*)&rsdt->table_offset_entry[i] < end; i++) {
478         struct fadt_descriptor_rev1 *fadt = (void*)rsdt->table_offset_entry[i];
479         if (!fadt || fadt->signature != FACP_SIGNATURE)
480             continue;
481         dprintf(4, "fadt=%p\n", fadt);
482         struct facs_descriptor_rev1 *facs = (void*)fadt->firmware_ctrl;
483         dprintf(4, "facs=%p\n", facs);
484         if (! facs || facs->signature != FACS_SIGNATURE)
485             return 0;
486         // Found it.
487         dprintf(4, "resume addr=%d\n", facs->firmware_waking_vector);
488         return facs->firmware_waking_vector;
489     }
490     return 0;
491 }