blob: c2e4ba22b3ff5c28c13eac7ab7a6d21aa29eae65 [file] [log] [blame]
Stefan Reinauere2b53e12004-06-28 11:59:45 +00001#include <console/console.h>
Gerd Hoffmannaa588e02013-05-31 09:26:55 +02002#include <cpu/cpu.h>
Patrick Georgic8feedd2012-02-16 18:43:25 +01003#include <cpu/x86/lapic_def.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +00004#include <arch/io.h>
Uwe Hermann74d1a6e2010-10-12 17:34:08 +00005#include <arch/ioapic.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +00006#include <stdint.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +00007#include <device/device.h>
8#include <device/pci.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +00009#include <stdlib.h>
10#include <string.h>
Myles Watson2e672732009-11-12 16:38:03 +000011#include <delay.h>
Sven Schnelle164bcfd2011-08-14 20:56:34 +020012#include <smbios.h>
Rudolf Marek97be27e2010-12-13 19:50:25 +000013#include <cbmem.h>
Myles Watson0520d552009-05-11 22:44:14 +000014
Gerd Hoffmannaa588e02013-05-31 09:26:55 +020015#include "fw_cfg.h"
16
Stefan Reinauer597ff872013-01-07 13:21:22 -080017#include "memory.c"
Sven Schnelle164bcfd2011-08-14 20:56:34 +020018
Myles Watson29cc9ed2009-07-02 18:56:24 +000019static void cpu_pci_domain_set_resources(device_t dev)
Eric Biederman6e53f502004-10-27 08:53:57 +000020{
Myles Watson894a3472010-06-09 22:41:35 +000021 u32 pci_tolm = find_pci_tolm(dev->link_list);
Valdimir Serbinenko7339f362010-05-03 16:21:52 +000022 unsigned long tomk = 0, tolmk;
23 int idx;
Eric Biederman6e53f502004-10-27 08:53:57 +000024
Sven Schnelle164bcfd2011-08-14 20:56:34 +020025 tomk = qemu_get_memory_size();
Valdimir Serbinenko7339f362010-05-03 16:21:52 +000026 printk(BIOS_DEBUG, "Detected %lu Kbytes (%lu MiB) RAM.\n",
27 tomk, tomk / 1024);
Myles Watson032a9652009-05-11 22:24:53 +000028
Valdimir Serbinenko7339f362010-05-03 16:21:52 +000029 /* Compute the top of Low memory */
30 tolmk = pci_tolm >> 10;
31 if (tolmk >= tomk) {
32 /* The PCI hole does not overlap the memory. */
33 tolmk = tomk;
34 }
35
36 /* Report the memory regions. */
37 idx = 10;
38 ram_resource(dev, idx++, 0, 640);
39 ram_resource(dev, idx++, 768, tolmk - 768);
Myles Watson0520d552009-05-11 22:44:14 +000040
Valdimir Serbinenko7339f362010-05-03 16:21:52 +000041 /* Leave some space for ACPI, PIRQ and MP tables */
Rudolf Marek97be27e2010-12-13 19:50:25 +000042 high_tables_base = (tomk * 1024) - HIGH_MEMORY_SIZE;
43 high_tables_size = HIGH_MEMORY_SIZE;
Valdimir Serbinenko7339f362010-05-03 16:21:52 +000044
Myles Watson894a3472010-06-09 22:41:35 +000045 assign_resources(dev->link_list);
Eric Biederman6e53f502004-10-27 08:53:57 +000046}
Stefan Reinauere2b53e12004-06-28 11:59:45 +000047
Myles Watson29cc9ed2009-07-02 18:56:24 +000048static void cpu_pci_domain_read_resources(struct device *dev)
Eric Biederman6e53f502004-10-27 08:53:57 +000049{
Myles Watson29cc9ed2009-07-02 18:56:24 +000050 struct resource *res;
51
52 pci_domain_read_resources(dev);
53
54 /* Reserve space for the IOAPIC. This should be in the Southbridge,
55 * but I couldn't tell which device to put it in. */
56 res = new_resource(dev, 2);
Uwe Hermann74d1a6e2010-10-12 17:34:08 +000057 res->base = IO_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +000058 res->size = 0x100000UL;
59 res->limit = 0xffffffffUL;
60 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
61 IORESOURCE_ASSIGNED;
62
63 /* Reserve space for the LAPIC. There's one in every processor, but
64 * the space only needs to be reserved once, so we do it here. */
65 res = new_resource(dev, 3);
Patrick Georgic8feedd2012-02-16 18:43:25 +010066 res->base = LOCAL_APIC_ADDR;
Myles Watson29cc9ed2009-07-02 18:56:24 +000067 res->size = 0x10000UL;
68 res->limit = 0xffffffffUL;
69 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
70 IORESOURCE_ASSIGNED;
Eric Biederman6e53f502004-10-27 08:53:57 +000071}
72
Sven Schnelle164bcfd2011-08-14 20:56:34 +020073#if CONFIG_GENERATE_SMBIOS_TABLES
74static int qemu_get_smbios_data16(int handle, unsigned long *current)
75{
76 struct smbios_type16 *t = (struct smbios_type16 *)*current;
77 int len = sizeof(struct smbios_type16);
78
79 memset(t, 0, sizeof(struct smbios_type16));
80 t->type = SMBIOS_PHYS_MEMORY_ARRAY;
81 t->handle = handle;
82 t->length = len - 2;
83 t->location = 3; /* Location: System Board */
84 t->use = 3; /* System memory */
85 t->memory_error_correction = 3; /* No error correction */
86 t->maximum_capacity = qemu_get_memory_size();
87 *current += len;
88 return len;
89}
90
91static int qemu_get_smbios_data17(int handle, int parent_handle, unsigned long *current)
92{
93 struct smbios_type17 *t = (struct smbios_type17 *)*current;
94 int len;
95
96 memset(t, 0, sizeof(struct smbios_type17));
97 t->type = SMBIOS_MEMORY_DEVICE;
98 t->handle = handle;
99 t->phys_memory_array_handle = parent_handle;
100 t->length = sizeof(struct smbios_type17) - 2;
101 t->size = qemu_get_memory_size() / 1024;
102 t->data_width = 64;
103 t->total_width = 64;
104 t->form_factor = 9; /* DIMM */
105 t->device_locator = smbios_add_string(t->eos, "Virtual");
106 t->memory_type = 0x12; /* DDR */
107 t->type_detail = 0x80; /* Synchronous */
108 t->speed = 200;
109 t->clock_speed = 200;
110 t->manufacturer = smbios_add_string(t->eos, CONFIG_MAINBOARD_VENDOR);
111 len = t->length + smbios_string_table_len(t->eos);
112 *current += len;
113 return len;
114}
115
116static int qemu_get_smbios_data(device_t dev, int *handle, unsigned long *current)
117{
118 int len;
119 len = qemu_get_smbios_data16(*handle, current);
120 len += qemu_get_smbios_data17(*handle+1, *handle, current);
121 *handle += 2;
122 return len;
123}
124#endif
Eric Biederman6e53f502004-10-27 08:53:57 +0000125static struct device_operations pci_domain_ops = {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000126 .read_resources = cpu_pci_domain_read_resources,
127 .set_resources = cpu_pci_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000128 .enable_resources = NULL,
129 .init = NULL,
Myles Watson032a9652009-05-11 22:24:53 +0000130 .scan_bus = pci_domain_scan_bus,
Sven Schnelle164bcfd2011-08-14 20:56:34 +0200131#if CONFIG_GENERATE_SMBIOS_TABLES
132 .get_smbios_data = qemu_get_smbios_data,
133#endif
Myles Watson032a9652009-05-11 22:24:53 +0000134};
Eric Biederman6e53f502004-10-27 08:53:57 +0000135
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200136static void cpu_bus_init(device_t dev)
137{
138 initialize_cpus(dev->link_list);
139}
140
141static unsigned int cpu_bus_scan(device_t bus, unsigned int max)
142{
143 int max_cpus = fw_cfg_max_cpus();
144 device_t cpu;
145 int i;
146
147 if (max_cpus < 0)
148 return 0;
149
150 /*
151 * TODO: This only handles the simple "qemu -smp $nr" case
152 * correctly. qemu also allows to specify the number of
153 * cores, threads & sockets.
154 */
155 printk(BIOS_INFO, "QEMU: max_cpus is %d\n", max_cpus);
156 for (i = 0; i < max_cpus; i++) {
157 cpu = add_cpu_device(bus->link_list, i, 1);
158 if (cpu)
159 set_cpu_topology(cpu, 1, 0, i, 0);
160 }
161 return max_cpus;
162}
163
164static void cpu_bus_noop(device_t dev)
165{
166}
167
168static struct device_operations cpu_bus_ops = {
169 .read_resources = cpu_bus_noop,
170 .set_resources = cpu_bus_noop,
171 .enable_resources = cpu_bus_noop,
172 .init = cpu_bus_init,
173 .scan_bus = cpu_bus_scan,
174};
175
Paul Menzel5f20b352013-02-24 14:27:03 +0100176static void northbridge_enable(struct device *dev)
Eric Biederman6e53f502004-10-27 08:53:57 +0000177{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000178 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800179 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Eric Biederman018d8dd2004-11-04 11:04:33 +0000180 dev->ops = &pci_domain_ops;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000181 pci_set_method(dev);
Eric Biederman018d8dd2004-11-04 11:04:33 +0000182 }
Gerd Hoffmannaa588e02013-05-31 09:26:55 +0200183 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
184 dev->ops = &cpu_bus_ops;
185 }
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000186}
187
Gerd Hoffmann00cc7f432013-06-07 15:46:23 +0200188struct chip_operations mainboard_emulation_qemu_i440fx_ops = {
189 CHIP_NAME("QEMU Northbridge i440fx")
Paul Menzel5f20b352013-02-24 14:27:03 +0100190 .enable_dev = northbridge_enable,
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000191};