blob: 86e2b236a1263f9f727461298babeee7f818916e [file] [log] [blame]
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauerf2152ec2009-05-26 14:07:44 +00004 * Copyright (C) 2003 Eric Biederman
5 * Copyright (C) 2005 Steve Magnani
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +00006 * Copyright (C) 2008-2009 coresystems GmbH
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +000016 */
Stefan Reinauer4f1cb232006-07-19 15:32:49 +000017
Eric Biederman8ca8d762003-04-22 19:02:15 +000018#include <console/console.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000019#include <cpu/cpu.h>
20#include <boot/tables.h>
Stefan Reinauerca374d42008-01-18 16:16:45 +000021#include <boot/coreboot_tables.h>
Eric Biederman8ca8d762003-04-22 19:02:15 +000022#include <arch/pirq_routing.h>
23#include <arch/smp/mpspec.h>
Stefan Reinauer688b3852004-01-28 16:56:14 +000024#include <arch/acpi.h>
Stefan Reinauer0dff6e32007-10-23 22:17:45 +000025#include <string.h>
Stefan Reinauer3b314022009-10-26 17:04:28 +000026#include <cbmem.h>
Sven Schnelle164bcfd2011-08-14 20:56:34 +020027#include <smbios.h>
Steven J. Magnanid94e1d62005-09-12 18:41:30 +000028
Aaron Durbin3f7ad7b2014-02-18 19:36:05 -060029void write_tables(void)
Eric Biederman8ca8d762003-04-22 19:02:15 +000030{
Stefan Reinauerdf77f342009-04-06 14:00:53 +000031 unsigned long low_table_start, low_table_end;
Eric Biederman8ca8d762003-04-22 19:02:15 +000032 unsigned long rom_table_start, rom_table_end;
33
Stefan Reinauerf2152ec2009-05-26 14:07:44 +000034 /* Even if high tables are configured, some tables are copied both to
35 * the low and the high area, so payloads and OSes don't need to know
36 * about the high tables.
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +000037 */
Stefan Reinauer3b314022009-10-26 17:04:28 +000038 unsigned long high_table_pointer;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +000039
Stefan Reinauer14e22772010-04-27 06:56:47 +000040 rom_table_start = 0xf0000;
Eric Biederman8ca8d762003-04-22 19:02:15 +000041 rom_table_end = 0xf0000;
Stefan Reinauerf2152ec2009-05-26 14:07:44 +000042
43 /* Start low addr at 0x500, so we don't run into conflicts with the BDA
Vladimir Serbinenko2657e842014-01-06 20:40:27 +010044 * in case our data structures grow beyond 0x400. Only GDT
Stefan Reinauer14e22772010-04-27 06:56:47 +000045 * and the coreboot table use low_tables.
Eric Biederman8ca8d762003-04-22 19:02:15 +000046 */
47 low_table_start = 0;
Stefan Reinauerf2152ec2009-05-26 14:07:44 +000048 low_table_end = 0x500;
49
Patrick Georgie1667822012-05-05 15:29:32 +020050#if CONFIG_GENERATE_PIRQ_TABLE
Stefan Reinauer3b314022009-10-26 17:04:28 +000051#define MAX_PIRQ_TABLE_SIZE (4 * 1024)
52 post_code(0x9a);
Stefan Reinauerf2152ec2009-05-26 14:07:44 +000053
54 /* This table must be between 0x0f0000 and 0x100000 */
55 rom_table_end = write_pirq_routing_table(rom_table_end);
56 rom_table_end = ALIGN(rom_table_end, 1024);
57
58 /* And add a high table version for those payloads that
59 * want to live in the F segment
60 */
Stefan Reinauer3b314022009-10-26 17:04:28 +000061 high_table_pointer = (unsigned long)cbmem_add(CBMEM_ID_PIRQ, MAX_PIRQ_TABLE_SIZE);
62 if (high_table_pointer) {
63 unsigned long new_high_table_pointer;
64 new_high_table_pointer = write_pirq_routing_table(high_table_pointer);
65 // FIXME make pirq table code intelligent enough to know how
66 // much space it's going to need.
67 if (new_high_table_pointer > (high_table_pointer + MAX_PIRQ_TABLE_SIZE)) {
68 printk(BIOS_ERR, "ERROR: Increase PIRQ size.\n");
69 }
70 printk(BIOS_DEBUG, "PIRQ table: %ld bytes.\n",
71 new_high_table_pointer - high_table_pointer);
Stefan Reinauerf2152ec2009-05-26 14:07:44 +000072 }
Eric Biederman8ca8d762003-04-22 19:02:15 +000073
Stefan Reinauer3b314022009-10-26 17:04:28 +000074#endif
75
Patrick Georgie1667822012-05-05 15:29:32 +020076#if CONFIG_GENERATE_MP_TABLE
Stefan Reinauer3b314022009-10-26 17:04:28 +000077#define MAX_MP_TABLE_SIZE (4 * 1024)
78 post_code(0x9b);
79
80 /* The smp table must be in 0-1K, 639K-640K, or 960K-1M */
81 rom_table_end = write_smp_table(rom_table_end);
82 rom_table_end = ALIGN(rom_table_end, 1024);
83
84 high_table_pointer = (unsigned long)cbmem_add(CBMEM_ID_MPTABLE, MAX_MP_TABLE_SIZE);
85 if (high_table_pointer) {
86 unsigned long new_high_table_pointer;
87 new_high_table_pointer = write_smp_table(high_table_pointer);
88 // FIXME make mp table code intelligent enough to know how
89 // much space it's going to need.
90 if (new_high_table_pointer > (high_table_pointer + MAX_MP_TABLE_SIZE)) {
91 printk(BIOS_ERR, "ERROR: Increase MP table size.\n");
92 }
93
94 printk(BIOS_DEBUG, "MP table: %ld bytes.\n",
95 new_high_table_pointer - high_table_pointer);
96 }
97#endif /* CONFIG_GENERATE_MP_TABLE */
98
Vladimir Serbinenko822bc652014-01-03 15:55:40 +010099#if CONFIG_HAVE_ACPI_TABLES
Stefan Reinauer802c9102014-08-28 23:03:15 +0200100#define MAX_ACPI_SIZE (144 * 1024)
Kyösti Mälkkiae98e832014-11-28 11:24:19 +0200101
Stefan Reinauer3b314022009-10-26 17:04:28 +0000102 post_code(0x9c);
Li-Ta Lo8e79fc32004-04-15 17:33:21 +0000103
Stefan Reinauerf2152ec2009-05-26 14:07:44 +0000104 /* Write ACPI tables to F segment and high tables area */
Stefan Reinauer3b314022009-10-26 17:04:28 +0000105
106 /* Ok, this is a bit hacky still, because some day we want to have this
Stefan Reinauer14e22772010-04-27 06:56:47 +0000107 * completely dynamic. But right now we are setting fixed sizes.
Stefan Reinauer3b314022009-10-26 17:04:28 +0000108 * It's probably still better than the old high_table_base code because
109 * now at least we know when we have an overflow in the area.
110 *
111 * We want to use 1MB - 64K for Resume backup. We use 512B for TOC and
112 * 512 byte for GDT, 4K for PIRQ and 4K for MP table and 8KB for the
113 * coreboot table. This leaves us with 47KB for all of ACPI. Let's see
114 * how far we get.
115 */
116 high_table_pointer = (unsigned long)cbmem_add(CBMEM_ID_ACPI, MAX_ACPI_SIZE);
117 if (high_table_pointer) {
118 unsigned long acpi_start = high_table_pointer;
119 unsigned long new_high_table_pointer;
120
Patrick Georgibab4f922009-05-26 19:39:14 +0000121 rom_table_end = ALIGN(rom_table_end, 16);
Stefan Reinauer3b314022009-10-26 17:04:28 +0000122 new_high_table_pointer = write_acpi_tables(high_table_pointer);
123 if (new_high_table_pointer > ( high_table_pointer + MAX_ACPI_SIZE)) {
124 printk(BIOS_ERR, "ERROR: Increase ACPI size\n");
125 }
Martin Rothe3690102016-01-06 15:21:02 -0700126 printk(BIOS_DEBUG, "ACPI tables: %ld bytes.\n",
Stefan Reinauer3b314022009-10-26 17:04:28 +0000127 new_high_table_pointer - high_table_pointer);
128
129 /* Now we need to create a low table copy of the RSDP. */
130
131 /* First we look for the high table RSDP */
132 while (acpi_start < new_high_table_pointer) {
Patrick Georgibab4f922009-05-26 19:39:14 +0000133 if (memcmp(((acpi_rsdp_t *)acpi_start)->signature, RSDP_SIG, 8) == 0) {
134 break;
135 }
136 acpi_start++;
137 }
Stefan Reinauer3b314022009-10-26 17:04:28 +0000138
139 /* Now, if we found the RSDP, we take the RSDT and XSDT pointer
140 * from it in order to write the low RSDP
141 */
142 if (acpi_start < new_high_table_pointer) {
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000143 acpi_rsdp_t *low_rsdp = (acpi_rsdp_t *)rom_table_end,
144 *high_rsdp = (acpi_rsdp_t *)acpi_start;
145
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100146 /* Technically rsdp length varies but coreboot always
147 writes longest size available. */
148 memcpy(low_rsdp, high_rsdp, sizeof(acpi_rsdp_t));
Patrick Georgibab4f922009-05-26 19:39:14 +0000149 } else {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000150 printk(BIOS_ERR, "ERROR: Didn't find RSDP in high table.\n");
Patrick Georgibab4f922009-05-26 19:39:14 +0000151 }
Patrick Georgibab4f922009-05-26 19:39:14 +0000152 rom_table_end = ALIGN(rom_table_end + sizeof(acpi_rsdp_t), 16);
Stefan Reinauerf2152ec2009-05-26 14:07:44 +0000153 } else {
154 rom_table_end = write_acpi_tables(rom_table_end);
155 rom_table_end = ALIGN(rom_table_end, 1024);
Myles Watsonfa12b672009-04-30 22:45:41 +0000156 }
Stefan Reinauer3b314022009-10-26 17:04:28 +0000157
Patrick Georgi8f047de2009-05-13 14:39:59 +0000158#endif
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200159#define MAX_SMBIOS_SIZE 2048
160#if CONFIG_GENERATE_SMBIOS_TABLES
161 high_table_pointer = (unsigned long)cbmem_add(CBMEM_ID_SMBIOS, MAX_SMBIOS_SIZE);
162 if (high_table_pointer) {
163 unsigned long new_high_table_pointer;
Steven J. Magnanid94e1d62005-09-12 18:41:30 +0000164
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200165 new_high_table_pointer = smbios_write_tables(high_table_pointer);
166 rom_table_end = ALIGN(rom_table_end, 16);
167 memcpy((void *)rom_table_end, (void *)high_table_pointer, sizeof(struct smbios_entry));
168 rom_table_end += sizeof(struct smbios_entry);
169
170 if (new_high_table_pointer > ( high_table_pointer + MAX_SMBIOS_SIZE)) {
171 printk(BIOS_ERR, "ERROR: Increase SMBIOS size\n");
172 }
Martin Rothe3690102016-01-06 15:21:02 -0700173 printk(BIOS_DEBUG, "SMBIOS tables: %ld bytes.\n",
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200174 new_high_table_pointer - high_table_pointer);
175 } else {
176 unsigned long new_rom_table_end = smbios_write_tables(rom_table_end);
177 printk(BIOS_DEBUG, "SMBIOS size %ld bytes\n", new_rom_table_end - rom_table_end);
178 rom_table_end = ALIGN(new_rom_table_end, 16);
179 }
180#endif
Robert Millan81af3d42008-11-11 20:20:54 +0000181
Aaron Durbin5a767fd2013-03-23 00:12:19 -0500182 post_code(0x9e);
183
Stefan Reinauer294edb22011-08-14 13:52:03 -0700184#define MAX_COREBOOT_TABLE_SIZE (32 * 1024)
Stefan Reinauer3b314022009-10-26 17:04:28 +0000185 post_code(0x9d);
Stefan Reinauerf2152ec2009-05-26 14:07:44 +0000186
Uwe Hermann312673c2009-10-27 21:49:33 +0000187 high_table_pointer = (unsigned long)cbmem_add(CBMEM_ID_CBTABLE, MAX_COREBOOT_TABLE_SIZE);
Stefan Reinauer3b314022009-10-26 17:04:28 +0000188
189 if (high_table_pointer) {
190 unsigned long new_high_table_pointer;
191
Kyösti Mälkki1ae305e2013-09-04 13:05:01 +0300192 /* FIXME: The high_table_base parameter is not reference when tables are high,
193 * or high_table_pointer >1 MB.
194 */
Kyösti Mälkki1ae305e2013-09-04 13:05:01 +0300195 u64 fixme_high_tables_base = 0;
Kyösti Mälkki1ae305e2013-09-04 13:05:01 +0300196
Stefan Reinauerf2152ec2009-05-26 14:07:44 +0000197 /* Also put a forwarder entry into 0-4K */
Stefan Reinauer3b314022009-10-26 17:04:28 +0000198 new_high_table_pointer = write_coreboot_table(low_table_start, low_table_end,
Kyösti Mälkki1ae305e2013-09-04 13:05:01 +0300199 fixme_high_tables_base, high_table_pointer);
Stefan Reinauer3b314022009-10-26 17:04:28 +0000200
201 if (new_high_table_pointer > (high_table_pointer +
202 MAX_COREBOOT_TABLE_SIZE))
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000203 printk(BIOS_ERR, "%s: coreboot table didn't fit (%lx)\n",
Stefan Reinauer3b314022009-10-26 17:04:28 +0000204 __func__, new_high_table_pointer -
205 high_table_pointer);
206
Martin Rothe3690102016-01-06 15:21:02 -0700207 printk(BIOS_DEBUG, "coreboot table: %ld bytes.\n",
Stefan Reinauer3b314022009-10-26 17:04:28 +0000208 new_high_table_pointer - high_table_pointer);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000209 } else {
Stefan Reinauerf2152ec2009-05-26 14:07:44 +0000210 /* The coreboot table must be in 0-4K or 960K-1M */
Paul Menzelddea9422014-02-03 08:36:51 +0100211 write_coreboot_table(low_table_start, low_table_end,
Juhana Helovuo6b56e432010-09-13 14:47:22 +0000212 rom_table_start, rom_table_end);
Stefan Reinauerefab4ba2009-03-17 14:38:48 +0000213 }
Stefan Reinauer14e22772010-04-27 06:56:47 +0000214
Stefan Reinauer3e4e3032013-03-20 14:08:04 -0700215 /* Print CBMEM sections */
Stefan Reinauer3b314022009-10-26 17:04:28 +0000216 cbmem_list();
Eric Biederman8ca8d762003-04-22 19:02:15 +0000217}