blob: 62f8ff67b7cbc4ebe1e35861bd188e7941a1eb19 [file] [log] [blame]
Kevin O'Connor59a23bb2008-06-08 23:09:42 -04001// Coreboot interface support.
2//
3// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
4//
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05005// This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connor59a23bb2008-06-08 23:09:42 -04006
7#include "memmap.h" // add_e820
8#include "util.h" // dprintf
Kevin O'Connor93479e42008-06-12 22:22:43 -04009#include "pci.h" // struct pir_header
10#include "acpi.h" // struct rsdp_descriptor
Kevin O'Connor35746442009-02-27 20:54:51 -050011#include "mptable.h" // MPTABLE_SIGNATURE
Kevin O'Connor9521e262008-07-04 13:04:29 -040012#include "biosvar.h" // GET_EBDA
Kevin O'Connor59a23bb2008-06-08 23:09:42 -040013
14
15/****************************************************************
Kevin O'Connor93479e42008-06-12 22:22:43 -040016 * BIOS table copying
17 ****************************************************************/
18
19static void
20copy_pir(void *pos)
21{
22 struct pir_header *p = pos;
23 if (p->signature != PIR_SIGNATURE)
24 return;
Kevin O'Connor51358db2008-12-28 21:50:29 -050025 if (PirOffset)
Kevin O'Connor93479e42008-06-12 22:22:43 -040026 return;
27 if (p->size < sizeof(*p))
28 return;
29 if (checksum(pos, p->size) != 0)
30 return;
31 bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
32 if (bios_table_cur_addr + p->size > bios_table_end_addr) {
33 dprintf(1, "No room to copy PIR table!\n");
34 return;
35 }
36 dprintf(1, "Copying PIR from %p to %x\n", pos, bios_table_cur_addr);
37 memcpy((void*)bios_table_cur_addr, pos, p->size);
Kevin O'Connor51358db2008-12-28 21:50:29 -050038 PirOffset = bios_table_cur_addr - BUILD_BIOS_ADDR;
Kevin O'Connor93479e42008-06-12 22:22:43 -040039 bios_table_cur_addr += p->size;
40}
41
Kevin O'Connore10e6f82008-06-21 19:46:43 -040042static void
43copy_mptable(void *pos)
44{
45 struct mptable_floating_s *p = pos;
Kevin O'Connor35746442009-02-27 20:54:51 -050046 if (p->signature != MPTABLE_SIGNATURE)
Kevin O'Connore10e6f82008-06-21 19:46:43 -040047 return;
48 if (!p->physaddr)
49 return;
50 if (checksum(pos, sizeof(*p)) != 0)
51 return;
52 u32 length = p->length * 16;
53 bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
54 if (bios_table_cur_addr + length > bios_table_end_addr) {
55 dprintf(1, "No room to copy MPTABLE!\n");
56 return;
57 }
58 dprintf(1, "Copying MPTABLE from %p to %x\n", pos, bios_table_cur_addr);
59 memcpy((void*)bios_table_cur_addr, pos, length);
Kevin O'Connore10e6f82008-06-21 19:46:43 -040060 bios_table_cur_addr += length;
61}
Kevin O'Connor93479e42008-06-12 22:22:43 -040062
63static void
64copy_acpi_rsdp(void *pos)
65{
Kevin O'Connor9967ab72008-12-18 21:57:33 -050066 if (RsdpAddr)
Kevin O'Connor93479e42008-06-12 22:22:43 -040067 return;
68 struct rsdp_descriptor *p = pos;
Kevin O'Connor9967ab72008-12-18 21:57:33 -050069 if (p->signature != RSDP_SIGNATURE)
70 return;
Kevin O'Connor93479e42008-06-12 22:22:43 -040071 u32 length = 20;
72 if (checksum(pos, length) != 0)
73 return;
74 if (p->revision > 1) {
75 length = p->length;
76 if (checksum(pos, length) != 0)
77 return;
78 }
79 bios_table_cur_addr = ALIGN(bios_table_cur_addr, 16);
80 if (bios_table_cur_addr + length > bios_table_end_addr) {
81 dprintf(1, "No room to copy ACPI RSDP table!\n");
82 return;
83 }
84 dprintf(1, "Copying ACPI RSDP from %p to %x\n", pos, bios_table_cur_addr);
Kevin O'Connor9967ab72008-12-18 21:57:33 -050085 RsdpAddr = (void*)bios_table_cur_addr;
86 memcpy(RsdpAddr, pos, length);
Kevin O'Connor93479e42008-06-12 22:22:43 -040087 bios_table_cur_addr += length;
88}
89
90// Attempt to find (and relocate) any standard bios tables found in a
91// given address range.
Kevin O'Connor9521e262008-07-04 13:04:29 -040092static void
Kevin O'Connor93479e42008-06-12 22:22:43 -040093scan_tables(u32 start, u32 size)
94{
95 void *p = (void*)ALIGN(start, 16);
96 void *end = (void*)start + size;
97 for (; p<end; p += 16) {
98 copy_pir(p);
Kevin O'Connore10e6f82008-06-21 19:46:43 -040099 copy_mptable(p);
Kevin O'Connor93479e42008-06-12 22:22:43 -0400100 copy_acpi_rsdp(p);
101 }
102}
103
104
105/****************************************************************
106 * Memory map
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400107 ****************************************************************/
108
109struct cb_header {
110 u32 signature;
111 u32 header_bytes;
112 u32 header_checksum;
113 u32 table_bytes;
114 u32 table_checksum;
115 u32 table_entries;
116};
117
118#define CB_SIGNATURE 0x4f49424C // "LBIO"
119
120struct cb_memory_range {
121 u64 start;
122 u64 size;
123 u32 type;
124};
125
126#define CB_MEM_TABLE 16
127
128struct cb_memory {
129 u32 tag;
130 u32 size;
131 struct cb_memory_range map[0];
132};
133
134#define CB_TAG_MEMORY 0x01
135
136#define MEM_RANGE_COUNT(_rec) \
137 (((_rec)->size - sizeof(*(_rec))) / sizeof((_rec)->map[0]))
138
139static u16
140ipchksum(char *buf, int count)
141{
142 u16 *p = (u16*)buf;
143 u32 sum = 0;
144 while (count > 1) {
145 sum += *p++;
146 count -= 2;
147 }
148 if (count)
149 sum += *(u8*)p;
150 sum = (sum >> 16) + (sum & 0xffff);
151 sum += (sum >> 16);
152 return ~sum;
153}
154
155// Try to locate the coreboot header in a given address range.
156static struct cb_header *
157find_cb_header(char *addr, int len)
158{
159 char *end = addr + len;
160 for (; addr < end; addr += 16) {
161 struct cb_header *cbh = (struct cb_header *)addr;
162 if (cbh->signature != CB_SIGNATURE)
163 continue;
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400164 if (! cbh->table_bytes)
165 continue;
166 if (ipchksum(addr, sizeof(*cbh)) != 0)
167 continue;
168 if (ipchksum(addr + sizeof(*cbh), cbh->table_bytes)
169 != cbh->table_checksum)
170 continue;
171 return cbh;
172 }
173 return NULL;
174}
175
176// Try to find the coreboot memory table in the given coreboot table.
Kevin O'Connor93479e42008-06-12 22:22:43 -0400177static void *
178find_cb_subtable(struct cb_header *cbh, u32 tag)
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400179{
180 char *tbl = (char *)cbh + sizeof(*cbh);
181 int i;
182 for (i=0; i<cbh->table_entries; i++) {
183 struct cb_memory *cbm = (struct cb_memory *)tbl;
184 tbl += cbm->size;
Kevin O'Connor93479e42008-06-12 22:22:43 -0400185 if (cbm->tag == tag)
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400186 return cbm;
187 }
188 return NULL;
189}
190
191// Populate max ram and e820 map info by scanning for a coreboot table.
192void
193coreboot_fill_map()
194{
195 dprintf(3, "Attempting to find coreboot table\n");
Kevin O'Connoref3d8822009-02-05 19:51:12 -0500196
197 // Init variables set in coreboot table memory scan.
198 PirOffset = 0;
199 RsdpAddr = 0;
200
201 // Find coreboot table.
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400202 struct cb_header *cbh = find_cb_header(0, 0x1000);
203 if (!cbh)
204 goto fail;
Kevin O'Connor93479e42008-06-12 22:22:43 -0400205 struct cb_memory *cbm = find_cb_subtable(cbh, CB_TAG_MEMORY);
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400206 if (!cbm)
207 goto fail;
208
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400209 u64 maxram = 0, maxram_over4G = 0;
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400210 int i, count = MEM_RANGE_COUNT(cbm);
211 for (i=0; i<count; i++) {
212 struct cb_memory_range *m = &cbm->map[i];
213 u32 type = m->type;
Kevin O'Connor93479e42008-06-12 22:22:43 -0400214 if (type == CB_MEM_TABLE) {
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400215 type = E820_RESERVED;
Kevin O'Connor93479e42008-06-12 22:22:43 -0400216 scan_tables(m->start, m->size);
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400217 } else if (type == E820_ACPI || type == E820_RAM) {
218 u64 end = m->start + m->size;
219 if (end > 0x100000000ull) {
220 end -= 0x100000000ull;
221 if (end > maxram_over4G)
222 maxram_over4G = end;
223 } else if (end > maxram)
224 maxram = end;
Kevin O'Connor93479e42008-06-12 22:22:43 -0400225 }
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400226 add_e820(m->start, m->size, type);
227 }
228
Kevin O'Connore7916362008-12-28 22:03:17 -0500229 RamSize = maxram;
230 RamSizeOver4G = maxram_over4G;
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400231
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400232 // Ughh - coreboot likes to set a map at 0x0000-0x1000, but this
233 // confuses grub. So, override it.
234 add_e820(0, 16*1024, E820_RAM);
235
Kevin O'Connor1d247db2008-08-29 21:19:53 -0400236 // XXX - just create dummy smbios table for now - should detect if
237 // smbios/dmi table is found from coreboot and use that instead.
238 smbios_init();
239
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400240 return;
241
242fail:
243 // No table found.. Use 16Megs as a dummy value.
244 dprintf(1, "Unable to find coreboot table!\n");
Kevin O'Connore7916362008-12-28 22:03:17 -0500245 RamSize = 16*1024*1024;
246 RamSizeOver4G = 0;
Kevin O'Connor59a23bb2008-06-08 23:09:42 -0400247 add_e820(0, 16*1024*1024, E820_RAM);
248 return;
249}