Add SRAT ACPI table 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 #include "paravirt.h"
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[0];  /* 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 sub-headers */
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 ACPI_SUB_HEADER_DEF   /* Common ACPI sub-structure header */\
171     u8  type;                               \
172     u8  length;
173
174 /* Sub-structures for MADT */
175
176 struct madt_processor_apic
177 {
178     ACPI_SUB_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     ACPI_SUB_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 /* IRQs 5,9,10,11 */
200 #define PCI_ISA_IRQ_MASK    0x0e20
201
202 struct madt_intsrcovr {
203     ACPI_SUB_HEADER_DEF
204     u8  bus;
205     u8  source;
206     u32 gsi;
207     u16 flags;
208 } PACKED;
209
210 /*
211  * ACPI 2.0 Generic Address Space definition.
212  */
213 struct acpi_20_generic_address {
214     u8  address_space_id;
215     u8  register_bit_width;
216     u8  register_bit_offset;
217     u8  reserved;
218     u64 address;
219 } PACKED;
220
221 /*
222  * HPET Description Table
223  */
224 struct acpi_20_hpet {
225     ACPI_TABLE_HEADER_DEF                    /* ACPI common table header */
226     u32           timer_block_id;
227     struct acpi_20_generic_address addr;
228     u8            hpet_number;
229     u16           min_tick;
230     u8            page_protect;
231 } PACKED;
232 #define ACPI_HPET_ADDRESS 0xFED00000UL
233
234 /*
235  * SRAT (NUMA topology description) table
236  */
237
238 #define SRAT_PROCESSOR          0
239 #define SRAT_MEMORY             1
240
241 struct system_resource_affinity_table
242 {
243     ACPI_TABLE_HEADER_DEF
244     u32    reserved1;
245     u32    reserved2[2];
246 } PACKED;
247
248 struct srat_processor_affinity
249 {
250     ACPI_SUB_HEADER_DEF
251     u8     proximity_lo;
252     u8     local_apic_id;
253     u32    flags;
254     u8     local_sapic_eid;
255     u8     proximity_hi[3];
256     u32    reserved;
257 } PACKED;
258
259 struct srat_memory_affinity
260 {
261     ACPI_SUB_HEADER_DEF
262     u8     proximity[4];
263     u16    reserved1;
264     u32    base_addr_low,base_addr_high;
265     u32    length_low,length_high;
266     u32    reserved2;
267     u32    flags;
268     u32    reserved3[2];
269 } PACKED;
270
271 #include "acpi-dsdt.hex"
272
273 static inline u16 cpu_to_le16(u16 x)
274 {
275     return x;
276 }
277
278 static inline u32 cpu_to_le32(u32 x)
279 {
280     return x;
281 }
282
283 static void
284 build_header(struct acpi_table_header *h, u32 sig, int len, u8 rev)
285 {
286     h->signature = sig;
287     h->length = cpu_to_le32(len);
288     h->revision = rev;
289     memcpy(h->oem_id, CONFIG_APPNAME6, 6);
290     memcpy(h->oem_table_id, CONFIG_APPNAME4, 4);
291     memcpy(h->asl_compiler_id, CONFIG_APPNAME4, 4);
292     memcpy(h->oem_table_id + 4, (void*)&sig, 4);
293     h->oem_revision = cpu_to_le32(1);
294     h->asl_compiler_revision = cpu_to_le32(1);
295     h->checksum -= checksum(h, len);
296 }
297
298 static void*
299 build_fadt(int bdf)
300 {
301     struct fadt_descriptor_rev1 *fadt = malloc_high(sizeof(*fadt));
302     struct facs_descriptor_rev1 *facs = memalign_high(64, sizeof(*facs));
303     void *dsdt = malloc_high(sizeof(AmlCode));
304
305     if (!fadt || !facs || !dsdt) {
306         dprintf(1, "Not enough memory for fadt!\n");
307         return NULL;
308     }
309
310     /* FACS */
311     memset(facs, 0, sizeof(*facs));
312     facs->signature = FACS_SIGNATURE;
313     facs->length = cpu_to_le32(sizeof(*facs));
314
315     /* DSDT */
316     memcpy(dsdt, AmlCode, sizeof(AmlCode));
317
318     /* FADT */
319     memset(fadt, 0, sizeof(*fadt));
320     fadt->firmware_ctrl = cpu_to_le32((u32)facs);
321     fadt->dsdt = cpu_to_le32((u32)dsdt);
322     fadt->model = 1;
323     fadt->reserved1 = 0;
324     int pm_sci_int = pci_config_readb(bdf, PCI_INTERRUPT_LINE);
325     fadt->sci_int = cpu_to_le16(pm_sci_int);
326     fadt->smi_cmd = cpu_to_le32(PORT_SMI_CMD);
327     fadt->acpi_enable = 0xf1;
328     fadt->acpi_disable = 0xf0;
329     fadt->pm1a_evt_blk = cpu_to_le32(PORT_ACPI_PM_BASE);
330     fadt->pm1a_cnt_blk = cpu_to_le32(PORT_ACPI_PM_BASE + 0x04);
331     fadt->pm_tmr_blk = cpu_to_le32(PORT_ACPI_PM_BASE + 0x08);
332     fadt->pm1_evt_len = 4;
333     fadt->pm1_cnt_len = 2;
334     fadt->pm_tmr_len = 4;
335     fadt->plvl2_lat = cpu_to_le16(0xfff); // C2 state not supported
336     fadt->plvl3_lat = cpu_to_le16(0xfff); // C3 state not supported
337     fadt->gpe0_blk = cpu_to_le32(0xafe0);
338     fadt->gpe0_blk_len = 4;
339     /* WBINVD + PROC_C1 + PWR_BUTTON + SLP_BUTTON + FIX_RTC */
340     fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 4) | (1 << 5) | (1 << 6));
341
342     build_header((void*)fadt, FACP_SIGNATURE, sizeof(*fadt), 1);
343
344     return fadt;
345 }
346
347 static void*
348 build_madt(void)
349 {
350     int smp_cpus = CountCPUs;
351     int madt_size = (sizeof(struct multiple_apic_table)
352                      + sizeof(struct madt_processor_apic) * smp_cpus
353                      + sizeof(struct madt_io_apic)
354                      + sizeof(struct madt_intsrcovr) * 16);
355     struct multiple_apic_table *madt = malloc_high(madt_size);
356     if (!madt) {
357         dprintf(1, "Not enough memory for madt!\n");
358         return NULL;
359     }
360     memset(madt, 0, madt_size);
361     madt->local_apic_address = cpu_to_le32(BUILD_APIC_ADDR);
362     madt->flags = cpu_to_le32(1);
363     struct madt_processor_apic *apic = (void*)&madt[1];
364     int i;
365     for (i=0; i<smp_cpus; i++) {
366         apic->type = APIC_PROCESSOR;
367         apic->length = sizeof(*apic);
368         apic->processor_id = i;
369         apic->local_apic_id = i;
370         apic->flags = cpu_to_le32(1);
371         apic++;
372     }
373     struct madt_io_apic *io_apic = (void*)apic;
374     io_apic->type = APIC_IO;
375     io_apic->length = sizeof(*io_apic);
376     io_apic->io_apic_id = smp_cpus;
377     io_apic->address = cpu_to_le32(BUILD_IOAPIC_ADDR);
378     io_apic->interrupt = cpu_to_le32(0);
379
380     struct madt_intsrcovr *intsrcovr = (void*)&io_apic[1];
381     if (qemu_cfg_irq0_override()) {
382         memset(intsrcovr, 0, sizeof(*intsrcovr));
383         intsrcovr->type   = APIC_XRUPT_OVERRIDE;
384         intsrcovr->length = sizeof(*intsrcovr);
385         intsrcovr->source = 0;
386         intsrcovr->gsi    = 2;
387         intsrcovr->flags  = 0; /* conforms to bus specifications */
388         intsrcovr++;
389     }
390     for (i = 1; i < 16; i++) {
391         if (!(PCI_ISA_IRQ_MASK & (1 << i)))
392             /* No need for a INT source override structure. */
393             continue;
394         memset(intsrcovr, 0, sizeof(*intsrcovr));
395         intsrcovr->type   = APIC_XRUPT_OVERRIDE;
396         intsrcovr->length = sizeof(*intsrcovr);
397         intsrcovr->source = i;
398         intsrcovr->gsi    = i;
399         intsrcovr->flags  = 0xd; /* active high, level triggered */
400         intsrcovr++;
401     }
402
403     build_header((void*)madt, APIC_SIGNATURE, (void*)intsrcovr - (void*)madt, 1);
404     return madt;
405 }
406
407 #define SSDT_SIGNATURE 0x54445353 // SSDT
408 static void*
409 build_ssdt(void)
410 {
411     int smp_cpus = CountCPUs;
412     int acpi_cpus = smp_cpus > 0xff ? 0xff : smp_cpus;
413     // calculate the length of processor block and scope block
414     // excluding PkgLength
415     int cpu_length = 13 * acpi_cpus + 4;
416
417     int length = sizeof(struct acpi_table_header) + 3 + cpu_length;
418     u8 *ssdt = malloc_high(length);
419     if (! ssdt) {
420         dprintf(1, "No space for ssdt!\n");
421         return NULL;
422     }
423
424     u8 *ssdt_ptr = ssdt;
425     ssdt_ptr[9] = 0; // checksum;
426     ssdt_ptr += sizeof(struct acpi_table_header);
427
428     // build processor scope header
429     *(ssdt_ptr++) = 0x10; // ScopeOp
430     if (cpu_length <= 0x3e) {
431         *(ssdt_ptr++) = cpu_length + 1;
432     } else {
433         *(ssdt_ptr++) = 0x7F;
434         *(ssdt_ptr++) = (cpu_length + 2) >> 6;
435     }
436     *(ssdt_ptr++) = '_'; // Name
437     *(ssdt_ptr++) = 'P';
438     *(ssdt_ptr++) = 'R';
439     *(ssdt_ptr++) = '_';
440
441     // build object for each processor
442     int i;
443     for (i=0; i<acpi_cpus; i++) {
444         *(ssdt_ptr++) = 0x5B; // ProcessorOp
445         *(ssdt_ptr++) = 0x83;
446         *(ssdt_ptr++) = 0x0B; // Length
447         *(ssdt_ptr++) = 'C';  // Name (CPUxx)
448         *(ssdt_ptr++) = 'P';
449         if ((i & 0xf0) != 0)
450             *(ssdt_ptr++) = (i >> 4) < 0xa ? (i >> 4) + '0' : (i >> 4) + 'A' - 0xa;
451         else
452             *(ssdt_ptr++) = 'U';
453         *(ssdt_ptr++) = (i & 0xf) < 0xa ? (i & 0xf) + '0' : (i & 0xf) + 'A' - 0xa;
454         *(ssdt_ptr++) = i;
455         *(ssdt_ptr++) = 0x10; // Processor block address
456         *(ssdt_ptr++) = 0xb0;
457         *(ssdt_ptr++) = 0;
458         *(ssdt_ptr++) = 0;
459         *(ssdt_ptr++) = 6;    // Processor block length
460     }
461
462     build_header((void*)ssdt, SSDT_SIGNATURE, ssdt_ptr - ssdt, 1);
463
464     return ssdt;
465 }
466
467 #define HPET_SIGNATURE 0x54455048 //HPET
468 static void*
469 build_hpet(void)
470 {
471     struct acpi_20_hpet *hpet = malloc_high(sizeof(*hpet));
472     if (!hpet) {
473         dprintf(1, "Not enough memory for hpet!\n");
474         return NULL;
475     }
476
477     memset(hpet, 0, sizeof(*hpet));
478     /* Note timer_block_id value must be kept in sync with value advertised by
479      * emulated hpet
480      */
481     hpet->timer_block_id = cpu_to_le32(0x8086a201);
482     hpet->addr.address = cpu_to_le32(ACPI_HPET_ADDRESS);
483     build_header((void*)hpet, HPET_SIGNATURE, sizeof(*hpet), 1);
484
485     return hpet;
486 }
487
488 static void
489 acpi_build_srat_memory(struct srat_memory_affinity *numamem,
490                        u64 base, u64 len, int node, int enabled)
491 {
492     numamem->type = SRAT_MEMORY;
493     numamem->length = sizeof(*numamem);
494     memset (numamem->proximity, 0 ,4);
495     numamem->proximity[0] = node;
496     numamem->flags = cpu_to_le32(!!enabled);
497     numamem->base_addr_low = base & 0xFFFFFFFF;
498     numamem->base_addr_high = base >> 32;
499     numamem->length_low = len & 0xFFFFFFFF;
500     numamem->length_high = len >> 32;
501 }
502
503 #define SRAT_SIGNATURE 0x54415253 //HPET
504 static void *
505 build_srat(void)
506 {
507     int nb_numa_nodes = qemu_cfg_get_numa_nodes();
508
509     if (nb_numa_nodes == 0)
510         return NULL;
511
512     u64 *numadata = malloc_tmphigh(sizeof(u64) * (CountCPUs + nb_numa_nodes));
513     if (!numadata) {
514         dprintf(1, "Not enough memory for read numa data from VM!\n");
515         return NULL;
516     }
517
518     qemu_cfg_get_numa_data(numadata, CountCPUs + nb_numa_nodes);
519
520     struct system_resource_affinity_table *srat;
521     int srat_size = sizeof(*srat) +
522         sizeof(struct srat_processor_affinity) * CountCPUs +
523         sizeof(struct srat_memory_affinity) * (nb_numa_nodes + 2);
524
525     srat = malloc_high(srat_size);
526     if (!srat) {
527         dprintf(1, "Not enough memory for srat table!\n");
528         return NULL;
529     }
530
531     memset(srat, 0, srat_size);
532     srat->reserved1=1;
533     struct srat_processor_affinity *core = (void*)(srat + 1);
534     int i;
535     u64 curnode;
536
537     for (i = 0; i < CountCPUs; ++i) {
538         core->type = SRAT_PROCESSOR;
539         core->length = sizeof(*core);
540         core->local_apic_id = i;
541         curnode = *numadata++;
542         core->proximity_lo = curnode;
543         memset(core->proximity_hi, 0, 3);
544         core->local_sapic_eid = 0;
545         if (i < CountCPUs)
546             core->flags = cpu_to_le32(1);
547         else
548             core->flags = 0;
549         core++;
550     }
551
552
553     /* the memory map is a bit tricky, it contains at least one hole
554      * from 640k-1M and possibly another one from 3.5G-4G.
555      */
556     struct srat_memory_affinity *numamem = (void*)core;
557     int slots = 0;
558     u64 mem_len, mem_base, next_base = 0;
559
560     acpi_build_srat_memory(numamem, 0, 640*1024, 0, 1);
561     next_base = 1024 * 1024;
562     numamem++;
563     slots++;
564     for (i = 1; i < nb_numa_nodes + 1; ++i) {
565         mem_base = next_base;
566         mem_len = *numadata++;
567         if (i == 1)
568             mem_len -= 1024 * 1024;
569         next_base = mem_base + mem_len;
570
571         /* Cut out the PCI hole */
572         if (mem_base <= RamSize && next_base > RamSize) {
573             mem_len -= next_base - RamSize;
574             if (mem_len > 0) {
575                 acpi_build_srat_memory(numamem, mem_base, mem_len, i-1, 1);
576                 numamem++;
577                 slots++;
578             }
579             mem_base = 1ULL << 32;
580             mem_len = next_base - RamSize;
581             next_base += (1ULL << 32) - RamSize;
582         }
583         acpi_build_srat_memory(numamem, mem_base, mem_len, i-1, 1);
584         numamem++;
585         slots++;
586     }
587     for (; slots < nb_numa_nodes + 2; slots++) {
588         acpi_build_srat_memory(numamem, 0, 0, 0, 0);
589         numamem++;
590     }
591
592     build_header((void*)srat, SRAT_SIGNATURE, srat_size, 1);
593
594     return srat;
595 }
596
597 struct rsdp_descriptor *RsdpAddr;
598
599 #define MAX_ACPI_TABLES 20
600 void
601 acpi_bios_init(void)
602 {
603     if (! CONFIG_ACPI)
604         return;
605
606     dprintf(3, "init ACPI tables\n");
607
608     // This code is hardcoded for PIIX4 Power Management device.
609     int bdf = pci_find_device(PCI_VENDOR_ID_INTEL
610                               , PCI_DEVICE_ID_INTEL_82371AB_3);
611     if (bdf < 0)
612         // Device not found
613         return;
614
615     // Create initial rsdt table
616     struct rsdp_descriptor *rsdp = malloc_fseg(sizeof(*rsdp));
617     if (!rsdp) {
618         dprintf(1, "Not enough memory for acpi rsdp table!\n");
619         return;
620     }
621
622     u32 tables[MAX_ACPI_TABLES], tbl_idx = 0;
623
624 #define ACPI_INIT_TABLE(X)                                   \
625     do {                                                     \
626         tables[tbl_idx] = (u32)(X);                          \
627         if (tables[tbl_idx])                                 \
628             tbl_idx++;                                       \
629     } while(0)
630
631     // Add tables
632     ACPI_INIT_TABLE(build_fadt(bdf));
633     ACPI_INIT_TABLE(build_ssdt());
634     ACPI_INIT_TABLE(build_madt());
635     ACPI_INIT_TABLE(build_hpet());
636     ACPI_INIT_TABLE(build_srat());
637
638     u16 i, external_tables = qemu_cfg_acpi_additional_tables();
639
640     for(i = 0; i < external_tables; i++) {
641         u16 len = qemu_cfg_next_acpi_table_len();
642         void *addr = malloc_high(len);
643         if (!addr) {
644             dprintf(1, "Not enogh memory of ext acpi table of size %d!\n", len);
645             continue;
646         }
647         ACPI_INIT_TABLE(qemu_cfg_next_acpi_table_load(addr, len));
648         if (tbl_idx == MAX_ACPI_TABLES) {
649             dprintf(1, "To many external table!\n");
650             break;
651         }
652     }
653
654     struct rsdt_descriptor_rev1 *rsdt;
655     size_t rsdt_len = sizeof(*rsdt) + sizeof(u32) * tbl_idx;
656     rsdt = malloc_high(rsdt_len);
657
658     if (!rsdt) {
659         dprintf(1, "Not enough memory for acpi rsdt table!\n");
660         return;
661     }
662     memset(rsdt, 0, rsdt_len);
663     memcpy(rsdt->table_offset_entry, tables, sizeof(u32) * tbl_idx);
664
665     build_header((void*)rsdt, RSDT_SIGNATURE, rsdt_len, 1);
666
667     // Build rsdp pointer table
668     memset(rsdp, 0, sizeof(*rsdp));
669     rsdp->signature = RSDP_SIGNATURE;
670     memcpy(rsdp->oem_id, CONFIG_APPNAME6, 6);
671     rsdp->rsdt_physical_address = cpu_to_le32((u32)rsdt);
672     rsdp->checksum -= checksum(rsdp, 20);
673     RsdpAddr = rsdp;
674     dprintf(1, "ACPI tables: RSDP=%p RSDT=%p\n", rsdp, rsdt);
675 }
676
677 u32
678 find_resume_vector()
679 {
680     dprintf(4, "rsdp=%p\n", RsdpAddr);
681     if (!RsdpAddr || RsdpAddr->signature != RSDP_SIGNATURE)
682         return 0;
683     struct rsdt_descriptor_rev1 *rsdt = (void*)RsdpAddr->rsdt_physical_address;
684     dprintf(4, "rsdt=%p\n", rsdt);
685     if (!rsdt || rsdt->signature != RSDT_SIGNATURE)
686         return 0;
687     void *end = (void*)rsdt + rsdt->length;
688     int i;
689     for (i=0; (void*)&rsdt->table_offset_entry[i] < end; i++) {
690         struct fadt_descriptor_rev1 *fadt = (void*)rsdt->table_offset_entry[i];
691         if (!fadt || fadt->signature != FACP_SIGNATURE)
692             continue;
693         dprintf(4, "fadt=%p\n", fadt);
694         struct facs_descriptor_rev1 *facs = (void*)fadt->firmware_ctrl;
695         dprintf(4, "facs=%p\n", facs);
696         if (! facs || facs->signature != FACS_SIGNATURE)
697             return 0;
698         // Found it.
699         dprintf(4, "resume addr=%d\n", facs->firmware_waking_vector);
700         return facs->firmware_waking_vector;
701     }
702     return 0;
703 }