blob: 0ff4c54e994c13ffcc498ceca85fa5374125e679 [file] [log] [blame]
Martin Rothb28f4662018-05-26 17:58:47 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Stefan Reinauere2b53e12004-06-28 11:59:45 +000014#include <console/console.h>
Gerd Hoffmannaa588e02013-05-31 09:26:55 +020015#include <cpu/cpu.h>
Patrick Georgic8feedd2012-02-16 18:43:25 +010016#include <cpu/x86/lapic_def.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +000017#include <arch/io.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000018#include <arch/ioapic.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +000019#include <stdint.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +000020#include <device/device.h>
21#include <device/pci.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +000022#include <stdlib.h>
23#include <string.h>
Sven Schnelle164bcfd2011-08-14 20:56:34 +020024#include <smbios.h>
Patrick Rudolph69d5ef92018-11-11 12:43:48 +010025#include "memory.h"
Myles Watson0520d552009-05-11 22:44:14 +000026
Gerd Hoffmannaa588e02013-05-31 09:26:55 +020027#include "fw_cfg.h"
Gerd Hoffmannbaa78202013-11-06 14:36:17 +010028#include "fw_cfg_if.h"
Gerd Hoffmannaa588e02013-05-31 09:26:55 +020029
Vladimir Serbinenko41877d82014-09-01 22:18:01 +020030#include "acpi.h"
Sven Schnelle164bcfd2011-08-14 20:56:34 +020031
Gerd Hoffmann05d3f492013-08-06 10:48:41 +020032static void qemu_reserve_ports(struct device *dev, unsigned int idx,
33 unsigned int base, unsigned int size,
34 const char *name)
35{
36 unsigned int end = base + size -1;
37 struct resource *res;
38
39 printk(BIOS_DEBUG, "QEMU: reserve ioports 0x%04x-0x%04x [%s]\n",
40 base, end, name);
41 res = new_resource(dev, idx);
42 res->base = base;
43 res->size = size;
44 res->limit = 0xffff;
45 res->flags = IORESOURCE_IO | IORESOURCE_FIXED | IORESOURCE_STORED |
46 IORESOURCE_ASSIGNED;
47}
48
Kyösti Mälkkiccb95022018-05-22 00:16:23 +030049static void cpu_pci_domain_set_resources(struct device *dev)
Eric Biederman6e53f502004-10-27 08:53:57 +000050{
Myles Watson894a3472010-06-09 22:41:35 +000051 assign_resources(dev->link_list);
Eric Biederman6e53f502004-10-27 08:53:57 +000052}
Stefan Reinauere2b53e12004-06-28 11:59:45 +000053
Myles Watson29cc9ed2009-07-02 18:56:24 +000054static void cpu_pci_domain_read_resources(struct device *dev)
Eric Biederman6e53f502004-10-27 08:53:57 +000055{
Kyösti Mälkki98a91742018-05-21 21:29:16 +030056 u16 nbid = pci_read_config16(pcidev_on_root(0x0, 0), PCI_DEVICE_ID);
Gerd Hoffmanna4e70572013-08-09 10:02:22 +020057 int i440fx = (nbid == 0x1237);
Gerd Hoffmannad690f22013-09-17 10:35:43 +020058 int q35 = (nbid == 0x29c0);
Myles Watson29cc9ed2009-07-02 18:56:24 +000059 struct resource *res;
Gerd Hoffmann9839a382013-06-17 12:26:17 +020060 unsigned long tomk = 0, high;
Gerd Hoffmann44b11f22013-06-17 13:30:50 +020061 int idx = 10;
Thomas Heijligenbcd84fe2019-01-10 16:53:34 +010062 FWCfgFile f;
Myles Watson29cc9ed2009-07-02 18:56:24 +000063
64 pci_domain_read_resources(dev);
65
Thomas Heijligenbcd84fe2019-01-10 16:53:34 +010066 if (!fw_cfg_check_file(&f, "etc/e820") && f.size > 0) {
Gerd Hoffmannbaa78202013-11-06 14:36:17 +010067 /* supported by qemu 1.7+ */
Thomas Heijligenbcd84fe2019-01-10 16:53:34 +010068 FwCfgE820Entry *list = malloc(f.size);
Gerd Hoffmannbaa78202013-11-06 14:36:17 +010069 int i;
Thomas Heijligenbcd84fe2019-01-10 16:53:34 +010070 fw_cfg_get(f.select, list, f.size);
71 for (i = 0; i < f.size / sizeof(*list); i++) {
Gerd Hoffmannbaa78202013-11-06 14:36:17 +010072 switch (list[i].type) {
Elyes HAOUAS8ab989e2016-07-30 17:46:17 +020073 case 1: /* RAM */
Gerd Hoffmannbaa78202013-11-06 14:36:17 +010074 printk(BIOS_DEBUG, "QEMU: e820/ram: 0x%08llx +0x%08llx\n",
75 list[i].address, list[i].length);
76 if (list[i].address == 0) {
77 tomk = list[i].length / 1024;
78 ram_resource(dev, idx++, 0, 640);
79 ram_resource(dev, idx++, 768, tomk - 768);
80 } else {
81 ram_resource(dev, idx++,
82 list[i].address / 1024,
83 list[i].length / 1024);
84 }
85 break;
86 case 2: /* reserved */
87 printk(BIOS_DEBUG, "QEMU: e820/res: 0x%08llx +0x%08llx\n",
88 list[i].address, list[i].length);
89 res = new_resource(dev, idx++);
90 res->base = list[i].address;
91 res->size = list[i].length;
92 res->limit = 0xffffffff;
93 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
94 IORESOURCE_STORED | IORESOURCE_ASSIGNED;
95 break;
96 default:
97 /* skip unknown */
98 break;
99 }
100 }
101 free(list);
102 }
Gerd Hoffmann44b11f22013-06-17 13:30:50 +0200103
Gerd Hoffmannbaa78202013-11-06 14:36:17 +0100104 if (!tomk) {
105 /* qemu older than 1.7, or reading etc/e820 failed. Fallback to cmos. */
106 tomk = qemu_get_memory_size();
107 high = qemu_get_high_memory_size();
108 printk(BIOS_DEBUG, "QEMU: cmos: %lu MiB RAM below 4G.\n", tomk / 1024);
109 printk(BIOS_DEBUG, "QEMU: cmos: %lu MiB RAM above 4G.\n", high / 1024);
110
111 /* Report the memory regions. */
112 ram_resource(dev, idx++, 0, 640);
113 ram_resource(dev, idx++, 768, tomk - 768);
114 if (high)
115 ram_resource(dev, idx++, 4 * 1024 * 1024, high);
116 }
Gerd Hoffmann44b11f22013-06-17 13:30:50 +0200117
Gerd Hoffmann05d3f492013-08-06 10:48:41 +0200118 /* Reserve I/O ports used by QEMU */
119 qemu_reserve_ports(dev, idx++, 0x0510, 0x02, "firmware-config");
120 qemu_reserve_ports(dev, idx++, 0x5658, 0x01, "vmware-port");
121 if (i440fx) {
122 qemu_reserve_ports(dev, idx++, 0xae00, 0x10, "pci-hotplug");
123 qemu_reserve_ports(dev, idx++, 0xaf00, 0x20, "cpu-hotplug");
124 qemu_reserve_ports(dev, idx++, 0xafe0, 0x04, "piix4-gpe0");
125 }
126 if (inb(CONFIG_CONSOLE_QEMU_DEBUGCON_PORT) == 0xe9) {
127 qemu_reserve_ports(dev, idx++, CONFIG_CONSOLE_QEMU_DEBUGCON_PORT, 1,
128 "debugcon");
129 }
130
Gerd Hoffmannad690f22013-09-17 10:35:43 +0200131 if (q35 && ((tomk * 1024) < 0xb0000000)) {
132 /*
133 * Reserve the region between top-of-ram and the
134 * mmconf xbar (ar 0xb0000000), so coreboot doesn't
135 * place pci bars there. The region isn't declared as
Elyes HAOUAS8ab989e2016-07-30 17:46:17 +0200136 * pci io window in the ACPI tables (\_SB.PCI0._CRS).
Gerd Hoffmannad690f22013-09-17 10:35:43 +0200137 */
138 res = new_resource(dev, idx++);
139 res->base = tomk * 1024;
140 res->size = 0xb0000000 - tomk * 1024;
141 res->limit = 0xffffffff;
142 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
143 IORESOURCE_STORED | IORESOURCE_ASSIGNED;
144 }
145
Gerd Hoffmanna4e70572013-08-09 10:02:22 +0200146 if (i440fx) {
147 /* Reserve space for the IOAPIC. This should be in
Patrick Georgi3f34fc42013-08-15 20:41:15 +0200148 * the southbridge, but I couldn't tell which device
Gerd Hoffmanna4e70572013-08-09 10:02:22 +0200149 * to put it in. */
150 res = new_resource(dev, 2);
151 res->base = IO_APIC_ADDR;
152 res->size = 0x100000UL;
153 res->limit = 0xffffffffUL;
154 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED |
155 IORESOURCE_STORED | IORESOURCE_ASSIGNED;
156 }
Myles Watson29cc9ed2009-07-02 18:56:24 +0000157
158 /* Reserve space for the LAPIC. There's one in every processor, but
159 * the space only needs to be reserved once, so we do it here. */
160 res = new_resource(dev, 3);
Patrick Georgic8feedd2012-02-16 18:43:25 +0100161 res->base = LOCAL_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +0000162 res->size = 0x10000UL;
163 res->limit = 0xffffffffUL;
164 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
165 IORESOURCE_ASSIGNED;
Eric Biederman6e53f502004-10-27 08:53:57 +0000166}
167
Martin Rothf95911a2017-06-24 21:45:13 -0600168#if IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLES)
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200169static int qemu_get_smbios_data16(int handle, unsigned long *current)
170{
171 struct smbios_type16 *t = (struct smbios_type16 *)*current;
172 int len = sizeof(struct smbios_type16);
173
174 memset(t, 0, sizeof(struct smbios_type16));
175 t->type = SMBIOS_PHYS_MEMORY_ARRAY;
176 t->handle = handle;
177 t->length = len - 2;
Paul Menzelb4d07572017-03-12 18:18:06 +0100178 t->location = MEMORY_ARRAY_LOCATION_SYSTEM_BOARD;
179 t->use = MEMORY_ARRAY_USE_SYSTEM;
180 t->memory_error_correction = MEMORY_ARRAY_ECC_NONE;
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200181 t->maximum_capacity = qemu_get_memory_size();
182 *current += len;
183 return len;
184}
185
186static int qemu_get_smbios_data17(int handle, int parent_handle, unsigned long *current)
187{
188 struct smbios_type17 *t = (struct smbios_type17 *)*current;
189 int len;
190
191 memset(t, 0, sizeof(struct smbios_type17));
192 t->type = SMBIOS_MEMORY_DEVICE;
193 t->handle = handle;
194 t->phys_memory_array_handle = parent_handle;
195 t->length = sizeof(struct smbios_type17) - 2;
196 t->size = qemu_get_memory_size() / 1024;
197 t->data_width = 64;
198 t->total_width = 64;
199 t->form_factor = 9; /* DIMM */
200 t->device_locator = smbios_add_string(t->eos, "Virtual");
201 t->memory_type = 0x12; /* DDR */
202 t->type_detail = 0x80; /* Synchronous */
203 t->speed = 200;
204 t->clock_speed = 200;
205 t->manufacturer = smbios_add_string(t->eos, CONFIG_MAINBOARD_VENDOR);
206 len = t->length + smbios_string_table_len(t->eos);
207 *current += len;
208 return len;
209}
210
Kyösti Mälkkiccb95022018-05-22 00:16:23 +0300211static int qemu_get_smbios_data(struct device *dev, int *handle, unsigned long *current)
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200212{
213 int len;
Gerd Hoffmanndb9d1692014-08-27 11:25:13 +0200214
215 len = fw_cfg_smbios_tables(handle, current);
216 if (len != 0)
217 return len;
218
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200219 len = qemu_get_smbios_data16(*handle, current);
220 len += qemu_get_smbios_data17(*handle+1, *handle, current);
221 *handle += 2;
222 return len;
223}
224#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000225static struct device_operations pci_domain_ops = {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000226 .read_resources = cpu_pci_domain_read_resources,
227 .set_resources = cpu_pci_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000228 .enable_resources = NULL,
229 .init = NULL,
Myles Watson032a9652009-05-11 22:24:53 +0000230 .scan_bus = pci_domain_scan_bus,
Martin Rothf95911a2017-06-24 21:45:13 -0600231#if IS_ENABLED(CONFIG_GENERATE_SMBIOS_TABLES)
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200232 .get_smbios_data = qemu_get_smbios_data,
233#endif
Myles Watson032a9652009-05-11 22:24:53 +0000234};
Eric Biederman6e53f502004-10-27 08:53:57 +0000235
Kyösti Mälkkiccb95022018-05-22 00:16:23 +0300236static void cpu_bus_init(struct device *dev)
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200237{
238 initialize_cpus(dev->link_list);
239}
240
Kyösti Mälkkiccb95022018-05-22 00:16:23 +0300241static void cpu_bus_scan(struct device *bus)
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200242{
243 int max_cpus = fw_cfg_max_cpus();
Kyösti Mälkkiccb95022018-05-22 00:16:23 +0300244 struct device *cpu;
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200245 int i;
246
247 if (max_cpus < 0)
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200248 return;
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200249
250 /*
251 * TODO: This only handles the simple "qemu -smp $nr" case
252 * correctly. qemu also allows to specify the number of
253 * cores, threads & sockets.
254 */
255 printk(BIOS_INFO, "QEMU: max_cpus is %d\n", max_cpus);
256 for (i = 0; i < max_cpus; i++) {
257 cpu = add_cpu_device(bus->link_list, i, 1);
258 if (cpu)
259 set_cpu_topology(cpu, 1, 0, i, 0);
260 }
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200261}
262
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200263static struct device_operations cpu_bus_ops = {
Edward O'Callaghanc3f38cd2014-10-31 08:04:30 +1100264 .read_resources = DEVICE_NOOP,
265 .set_resources = DEVICE_NOOP,
266 .enable_resources = DEVICE_NOOP,
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200267 .init = cpu_bus_init,
268 .scan_bus = cpu_bus_scan,
269};
270
Paul Menzel5f20b352013-02-24 14:27:03 +0100271static void northbridge_enable(struct device *dev)
Eric Biederman6e53f502004-10-27 08:53:57 +0000272{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000273 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800274 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Eric Biederman018d8dd2004-11-04 11:04:33 +0000275 dev->ops = &pci_domain_ops;
Eric Biederman018d8dd2004-11-04 11:04:33 +0000276 }
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200277 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
278 dev->ops = &cpu_bus_ops;
279 }
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000280}
281
Gerd Hoffmann00cc7f432013-06-07 15:46:23 +0200282struct chip_operations mainboard_emulation_qemu_i440fx_ops = {
283 CHIP_NAME("QEMU Northbridge i440fx")
Paul Menzel5f20b352013-02-24 14:27:03 +0100284 .enable_dev = northbridge_enable,
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000285};
Gerd Hoffmannee941b382013-06-07 16:03:44 +0200286
287struct chip_operations mainboard_emulation_qemu_q35_ops = {
288 CHIP_NAME("QEMU Northbridge q35")
289 .enable_dev = northbridge_enable,
290};