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