Change license from GPLv3 to LGPLv3.
[seabios.git] / src / coreboot.c
1 // Coreboot interface support.
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 //
5 // This file may be distributed under the terms of the GNU LGPLv3 license.
6
7 #include "memmap.h" // add_e820
8 #include "util.h" // dprintf
9 #include "pci.h" // struct pir_header
10 #include "acpi.h" // struct rsdp_descriptor
11 #include "biosvar.h" // GET_EBDA
12
13
14 /****************************************************************
15  * BIOS table copying
16  ****************************************************************/
17
18 static void
19 copy_pir(void *pos)
20 {
21     struct pir_header *p = pos;
22     if (p->signature != PIR_SIGNATURE)
23         return;
24     if (PirOffset)
25         return;
26     if (p->size < sizeof(*p))
27         return;
28     if (checksum(pos, p->size) != 0)
29         return;
30     bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
31     if (bios_table_cur_addr + p->size > bios_table_end_addr) {
32         dprintf(1, "No room to copy PIR table!\n");
33         return;
34     }
35     dprintf(1, "Copying PIR from %p to %x\n", pos, bios_table_cur_addr);
36     memcpy((void*)bios_table_cur_addr, pos, p->size);
37     PirOffset = bios_table_cur_addr - BUILD_BIOS_ADDR;
38     bios_table_cur_addr += p->size;
39 }
40
41 static void
42 copy_mptable(void *pos)
43 {
44     struct mptable_floating_s *p = pos;
45     if (p->signature != MPTABLE_SIGNAURE)
46         return;
47     if (!p->physaddr)
48         return;
49     if (checksum(pos, sizeof(*p)) != 0)
50         return;
51     u32 length = p->length * 16;
52     bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
53     if (bios_table_cur_addr + length > bios_table_end_addr) {
54         dprintf(1, "No room to copy MPTABLE!\n");
55         return;
56     }
57     dprintf(1, "Copying MPTABLE from %p to %x\n", pos, bios_table_cur_addr);
58     memcpy((void*)bios_table_cur_addr, pos, length);
59     bios_table_cur_addr += length;
60 }
61
62 static void
63 copy_acpi_rsdp(void *pos)
64 {
65     if (RsdpAddr)
66         return;
67     struct rsdp_descriptor *p = pos;
68     if (p->signature != RSDP_SIGNATURE)
69         return;
70     u32 length = 20;
71     if (checksum(pos, length) != 0)
72         return;
73     if (p->revision > 1) {
74         length = p->length;
75         if (checksum(pos, length) != 0)
76             return;
77     }
78     bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
79     if (bios_table_cur_addr + length > bios_table_end_addr) {
80         dprintf(1, "No room to copy ACPI RSDP table!\n");
81         return;
82     }
83     dprintf(1, "Copying ACPI RSDP from %p to %x\n", pos, bios_table_cur_addr);
84     RsdpAddr = (void*)bios_table_cur_addr;
85     memcpy(RsdpAddr, pos, length);
86     bios_table_cur_addr += length;
87 }
88
89 // Attempt to find (and relocate) any standard bios tables found in a
90 // given address range.
91 static void
92 scan_tables(u32 start, u32 size)
93 {
94     void *p = (void*)ALIGN(start, 16);
95     void *end = (void*)start + size;
96     for (; p<end; p += 16) {
97         copy_pir(p);
98         copy_mptable(p);
99         copy_acpi_rsdp(p);
100     }
101 }
102
103
104 /****************************************************************
105  * Memory map
106  ****************************************************************/
107
108 struct cb_header {
109     u32 signature;
110     u32 header_bytes;
111     u32 header_checksum;
112     u32 table_bytes;
113     u32 table_checksum;
114     u32 table_entries;
115 };
116
117 #define CB_SIGNATURE 0x4f49424C // "LBIO"
118
119 struct cb_memory_range {
120     u64 start;
121     u64 size;
122     u32 type;
123 };
124
125 #define CB_MEM_TABLE    16
126
127 struct cb_memory {
128     u32 tag;
129     u32 size;
130     struct cb_memory_range map[0];
131 };
132
133 #define CB_TAG_MEMORY 0x01
134
135 #define MEM_RANGE_COUNT(_rec) \
136         (((_rec)->size - sizeof(*(_rec))) / sizeof((_rec)->map[0]))
137
138 static u16
139 ipchksum(char *buf, int count)
140 {
141     u16 *p = (u16*)buf;
142     u32 sum = 0;
143     while (count > 1) {
144         sum += *p++;
145         count -= 2;
146     }
147     if (count)
148         sum += *(u8*)p;
149     sum = (sum >> 16) + (sum & 0xffff);
150     sum += (sum >> 16);
151     return ~sum;
152 }
153
154 // Try to locate the coreboot header in a given address range.
155 static struct cb_header *
156 find_cb_header(char *addr, int len)
157 {
158     char *end = addr + len;
159     for (; addr < end; addr += 16) {
160         struct cb_header *cbh = (struct cb_header *)addr;
161         if (cbh->signature != CB_SIGNATURE)
162             continue;
163         if (! cbh->table_bytes)
164             continue;
165         if (ipchksum(addr, sizeof(*cbh)) != 0)
166             continue;
167         if (ipchksum(addr + sizeof(*cbh), cbh->table_bytes)
168             != cbh->table_checksum)
169             continue;
170         return cbh;
171     }
172     return NULL;
173 }
174
175 // Try to find the coreboot memory table in the given coreboot table.
176 static void *
177 find_cb_subtable(struct cb_header *cbh, u32 tag)
178 {
179     char *tbl = (char *)cbh + sizeof(*cbh);
180     int i;
181     for (i=0; i<cbh->table_entries; i++) {
182         struct cb_memory *cbm = (struct cb_memory *)tbl;
183         tbl += cbm->size;
184         if (cbm->tag == tag)
185             return cbm;
186     }
187     return NULL;
188 }
189
190 // Populate max ram and e820 map info by scanning for a coreboot table.
191 void
192 coreboot_fill_map()
193 {
194     dprintf(3, "Attempting to find coreboot table\n");
195     struct cb_header *cbh = find_cb_header(0, 0x1000);
196     if (!cbh)
197         goto fail;
198     struct cb_memory *cbm = find_cb_subtable(cbh, CB_TAG_MEMORY);
199     if (!cbm)
200         goto fail;
201
202     u64 maxram = 0, maxram_over4G = 0;
203     int i, count = MEM_RANGE_COUNT(cbm);
204     for (i=0; i<count; i++) {
205         struct cb_memory_range *m = &cbm->map[i];
206         u32 type = m->type;
207         if (type == CB_MEM_TABLE) {
208             type = E820_RESERVED;
209             scan_tables(m->start, m->size);
210         } else if (type == E820_ACPI || type == E820_RAM) {
211             u64 end = m->start + m->size;
212             if (end > 0x100000000ull) {
213                 end -= 0x100000000ull;
214                 if (end > maxram_over4G)
215                     maxram_over4G = end;
216             } else if (end > maxram)
217                 maxram = end;
218         }
219         add_e820(m->start, m->size, type);
220     }
221
222     RamSize = maxram;
223     RamSizeOver4G = maxram_over4G;
224
225     // Ughh - coreboot likes to set a map at 0x0000-0x1000, but this
226     // confuses grub.  So, override it.
227     add_e820(0, 16*1024, E820_RAM);
228
229     // XXX - just create dummy smbios table for now - should detect if
230     // smbios/dmi table is found from coreboot and use that instead.
231     smbios_init();
232
233     return;
234
235 fail:
236     // No table found..  Use 16Megs as a dummy value.
237     dprintf(1, "Unable to find coreboot table!\n");
238     RamSize = 16*1024*1024;
239     RamSizeOver4G = 0;
240     add_e820(0, 16*1024*1024, E820_RAM);
241     return;
242 }