Remove CONFIG_QEMU option - breakout into other options.
[seabios.git] / src / mptable.c
1 // MPTable generation (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 "util.h" // dprintf
9 #include "memmap.h" // bios_table_cur_addr
10 #include "config.h" // CONFIG_*
11
12 static void putb(u8 **pp, int val)
13 {
14     u8 *q;
15     q = *pp;
16     *q++ = val;
17     *pp = q;
18 }
19
20 static void putstr(u8 **pp, const char *str)
21 {
22     u8 *q;
23     q = *pp;
24     while (*str)
25         *q++ = *str++;
26     *pp = q;
27 }
28
29 static void putle16(u8 **pp, int val)
30 {
31     u8 *q;
32     q = *pp;
33     *q++ = val;
34     *q++ = val >> 8;
35     *pp = q;
36 }
37
38 static void putle32(u8 **pp, int val)
39 {
40     u8 *q;
41     q = *pp;
42     *q++ = val;
43     *q++ = val >> 8;
44     *q++ = val >> 16;
45     *q++ = val >> 24;
46     *pp = q;
47 }
48
49 void
50 mptable_init(void)
51 {
52     if (! CONFIG_MPTABLE)
53         return;
54
55     u8 *mp_config_table, *q, *float_pointer_struct;
56     int ioapic_id, i, len;
57     int mp_config_table_size;
58
59     int smp_cpus = smp_probe();
60     if (smp_cpus <= 1)
61         // Building an mptable on uniprocessor machines confuses some OSes.
62         return;
63
64     bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
65     mp_config_table = (u8 *)bios_table_cur_addr;
66     q = mp_config_table;
67     putstr(&q, "PCMP"); /* "PCMP signature */
68     putle16(&q, 0); /* table length (patched later) */
69     putb(&q, 4); /* spec rev */
70     putb(&q, 0); /* checksum (patched later) */
71     putstr(&q, CONFIG_CPUNAME8); /* OEM id */
72     putstr(&q, "0.1         "); /* vendor id */
73     putle32(&q, 0); /* OEM table ptr */
74     putle16(&q, 0); /* OEM table size */
75     putle16(&q, smp_cpus + 18); /* entry count */
76     putle32(&q, 0xfee00000); /* local APIC addr */
77     putle16(&q, 0); /* ext table length */
78     putb(&q, 0); /* ext table checksum */
79     putb(&q, 0); /* reserved */
80
81     for(i = 0; i < smp_cpus; i++) {
82         putb(&q, 0); /* entry type = processor */
83         putb(&q, i); /* APIC id */
84         putb(&q, 0x11); /* local APIC version number */
85         if (i == 0)
86             putb(&q, 3); /* cpu flags: enabled, bootstrap cpu */
87         else
88             putb(&q, 1); /* cpu flags: enabled */
89         putb(&q, 0); /* cpu signature */
90         putb(&q, 6);
91         putb(&q, 0);
92         putb(&q, 0);
93         putle16(&q, 0x201); /* feature flags */
94         putle16(&q, 0);
95
96         putle16(&q, 0); /* reserved */
97         putle16(&q, 0);
98         putle16(&q, 0);
99         putle16(&q, 0);
100     }
101
102     /* isa bus */
103     putb(&q, 1); /* entry type = bus */
104     putb(&q, 0); /* bus ID */
105     putstr(&q, "ISA   ");
106
107     /* ioapic */
108     ioapic_id = smp_cpus;
109     putb(&q, 2); /* entry type = I/O APIC */
110     putb(&q, ioapic_id); /* apic ID */
111     putb(&q, 0x11); /* I/O APIC version number */
112     putb(&q, 1); /* enable */
113     putle32(&q, 0xfec00000); /* I/O APIC addr */
114
115     /* irqs */
116     for(i = 0; i < 16; i++) {
117         putb(&q, 3); /* entry type = I/O interrupt */
118         putb(&q, 0); /* interrupt type = vectored interrupt */
119         putb(&q, 0); /* flags: po=0, el=0 */
120         putb(&q, 0);
121         putb(&q, 0); /* source bus ID = ISA */
122         putb(&q, i); /* source bus IRQ */
123         putb(&q, ioapic_id); /* dest I/O APIC ID */
124         putb(&q, i); /* dest I/O APIC interrupt in */
125     }
126     /* patch length */
127     len = q - mp_config_table;
128     mp_config_table[4] = len;
129     mp_config_table[5] = len >> 8;
130
131     mp_config_table[7] = -checksum(mp_config_table, q - mp_config_table);
132
133     mp_config_table_size = q - mp_config_table;
134
135     bios_table_cur_addr += mp_config_table_size;
136
137     /* floating pointer structure */
138     bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
139     float_pointer_struct = (u8 *)bios_table_cur_addr;
140     q = float_pointer_struct;
141     putstr(&q, "_MP_");
142     /* pointer to MP config table */
143     putle32(&q, (unsigned long)mp_config_table);
144
145     putb(&q, 1); /* length in 16 byte units */
146     putb(&q, 4); /* MP spec revision */
147     putb(&q, 0); /* checksum (patched later) */
148     putb(&q, 0); /* MP feature byte 1 */
149
150     putb(&q, 0);
151     putb(&q, 0);
152     putb(&q, 0);
153     putb(&q, 0);
154     float_pointer_struct[10] = -checksum(float_pointer_struct
155                                          , q - float_pointer_struct);
156     bios_table_cur_addr += (q - float_pointer_struct);
157     dprintf(1, "MP table addr=0x%08lx MPC table addr=0x%08lx size=0x%x\n",
158             (unsigned long)float_pointer_struct,
159             (unsigned long)mp_config_table,
160             mp_config_table_size);
161 }