blob: 9d97f0c17a8b1c9bedbe1db2e41cfc4891f9c254 [file] [log] [blame]
Stefan Reinauer278534d2008-10-29 04:51:07 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer43b29cf2009-03-06 19:11:52 +00004 * Copyright (C) 2007-2009 coresystems GmbH
Stefan Reinauer278534d2008-10-29 04:51:07 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer278534d2008-10-29 04:51:07 +000018 */
19
20#include <console/console.h>
21#include <arch/io.h>
22#include <stdint.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <device/hypertransport.h>
27#include <stdlib.h>
28#include <string.h>
Stefan Reinauerfd611f92013-02-27 23:45:20 +010029#include <cbmem.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000030#include <cpu/cpu.h>
Stefan Reinauerab872542011-10-14 15:18:29 -070031#include <arch/acpi.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000032#include "i945.h"
33
Stefan Reinauerde3206a2010-02-22 06:09:43 +000034static int get_pcie_bar(u32 *base, u32 *len)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000035{
36 device_t dev;
37 u32 pciexbar_reg;
38
39 *base = 0;
40 *len = 0;
41
42 dev = dev_find_slot(0, PCI_DEVFN(0, 0));
43 if (!dev)
44 return 0;
Stefan Reinauer109ab312009-08-12 16:08:05 +000045
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000046 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000047
48 if (!(pciexbar_reg & (1 << 0)))
49 return 0;
50
51 switch ((pciexbar_reg >> 1) & 3) {
52 case 0: // 256MB
53 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
54 *len = 256 * 1024 * 1024;
55 return 1;
56 case 1: // 128M
57 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
58 *len = 128 * 1024 * 1024;
59 return 1;
60 case 2: // 64M
61 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
62 *len = 64 * 1024 * 1024;
63 return 1;
64 }
65
66 return 0;
67}
68
Myles Watson25d12132010-09-13 13:14:48 +000069static void add_fixed_resources(struct device *dev, int index)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000070{
Myles Watson25d12132010-09-13 13:14:48 +000071 struct resource *resource;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000072 u32 pcie_config_base, pcie_config_size;
73
Myles Watson25d12132010-09-13 13:14:48 +000074 if (get_pcie_bar(&pcie_config_base, &pcie_config_size)) {
75 printk(BIOS_DEBUG, "Adding PCIe config bar\n");
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030076 resource = new_resource(dev, index++);
Myles Watson25d12132010-09-13 13:14:48 +000077 resource->base = (resource_t) pcie_config_base;
78 resource->size = (resource_t) pcie_config_size;
79 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
80 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
81 }
Stefan Reinauer71a3d962009-07-21 21:44:24 +000082}
83
Stefan Reinauer278534d2008-10-29 04:51:07 +000084static void pci_domain_set_resources(device_t dev)
85{
86 uint32_t pci_tolm;
87 uint8_t tolud, reg8;
88 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030089 unsigned long long tomk, tomk_stolen;
90 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Stefan Reinauer278534d2008-10-29 04:51:07 +000091
Stefan Reinauer71a3d962009-07-21 21:44:24 +000092 /* Can we find out how much memory we can use at most
93 * this way?
94 */
Myles Watson894a3472010-06-09 22:41:35 +000095 pci_tolm = find_pci_tolm(dev->link_list);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000096 printk(BIOS_DEBUG, "pci_tolm: 0x%x\n", pci_tolm);
Stefan Reinauer278534d2008-10-29 04:51:07 +000097
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000098 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
Stefan Reinauer278534d2008-10-29 04:51:07 +000099 pci_read_config32(dev_find_slot(0, PCI_DEVFN(2, 0)), 0x5c));
100
101 tolud = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), 0x9c);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000102 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000103
104 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300105 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000106
107 /* Note: subtract IGD device and TSEG */
108 reg8 = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), 0x9e);
109 if (reg8 & 1) {
110 int tseg_size = 0;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000111 printk(BIOS_DEBUG, "TSEG decoded, subtracting ");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000112 reg8 >>= 1;
113 reg8 &= 3;
114 switch (reg8) {
115 case 0:
116 tseg_size = 1024;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000117 break; /* TSEG = 1M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000118 case 1:
119 tseg_size = 2048;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000120 break; /* TSEG = 2M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000121 case 2:
122 tseg_size = 8192;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000123 break; /* TSEG = 8M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000124 }
125
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000126 printk(BIOS_DEBUG, "%dM\n", tseg_size >> 10);
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300127 tomk_stolen -= tseg_size;
128
129 /* For reserving TSEG memory in the memory map */
130 tseg_memory_base = tomk_stolen * 1024ULL;
131 tseg_memory_size = tseg_size * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000132 }
133
134 reg16 = pci_read_config16(dev_find_slot(0, PCI_DEVFN(0, 0)), GGC);
135 if (!(reg16 & 2)) {
136 int uma_size = 0;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000137 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000138 reg16 >>= 4;
139 reg16 &= 7;
140 switch (reg16) {
141 case 1:
142 uma_size = 1024;
143 break;
144 case 3:
145 uma_size = 8192;
146 break;
147 }
148
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000149 printk(BIOS_DEBUG, "%dM UMA\n", uma_size >> 10);
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300150 tomk_stolen -= uma_size;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000151
152 /* For reserving UMA memory in the memory map */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300153 uma_memory_base = tomk_stolen * 1024ULL;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000154 uma_memory_size = uma_size * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000155 }
156
157 /* The following needs to be 2 lines, otherwise the second
158 * number is always 0
159 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300160 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
161 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen >> 10));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000162
163 /* Report the memory regions */
164 ram_resource(dev, 3, 0, 640);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000165 ram_resource(dev, 4, 768, (tomk - 768));
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300166 uma_resource(dev, 5, uma_memory_base >> 10, uma_memory_size >> 10);
167 mmio_resource(dev, 6, tseg_memory_base >> 10, tseg_memory_size >> 10);
168
169 add_fixed_resources(dev, 7);
Myles Watson25d12132010-09-13 13:14:48 +0000170
Myles Watson894a3472010-06-09 22:41:35 +0000171 assign_resources(dev->link_list);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000172
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000173 /* Leave some space for ACPI, PIRQ and MP tables */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300174 high_tables_base = (tomk_stolen * 1024) - HIGH_MEMORY_SIZE;
Rudolf Marek97be27e2010-12-13 19:50:25 +0000175 high_tables_size = HIGH_MEMORY_SIZE;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000176}
177
Stefan Reinauer278534d2008-10-29 04:51:07 +0000178 /* TODO We could determine how many PCIe busses we need in
179 * the bar. For now that number is hardcoded to a max of 64.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000180 * See e7525/northbridge.c for an example.
Stefan Reinauer278534d2008-10-29 04:51:07 +0000181 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000182static struct device_operations pci_domain_ops = {
183 .read_resources = pci_domain_read_resources,
184 .set_resources = pci_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000185 .enable_resources = NULL,
186 .init = NULL,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000187 .scan_bus = pci_domain_scan_bus,
Stefan Reinauer08670622009-06-30 15:17:49 +0000188#if CONFIG_MMCONF_SUPPORT_DEFAULT
Stefan Reinauer43b29cf2009-03-06 19:11:52 +0000189 .ops_pci_bus = &pci_ops_mmconf,
190#else
191 .ops_pci_bus = &pci_cf8_conf1,
192#endif
Stefan Reinauer278534d2008-10-29 04:51:07 +0000193};
194
195static void mc_read_resources(device_t dev)
196{
197 struct resource *resource;
198
199 pci_dev_read_resources(dev);
200
201 /* So, this is one of the big mysteries in the coreboot resource
202 * allocator. This resource should make sure that the address space
203 * of the PCIe memory mapped config space bar. But it does not.
204 */
205
206 /* We use 0xcf as an unused index for our PCIe bar so that we find it again */
207 resource = new_resource(dev, 0xcf);
208 resource->base = DEFAULT_PCIEXBAR;
209 resource->size = 64 * 1024 * 1024; /* 64MB hard coded PCIe config space */
210 resource->flags =
211 IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
212 IORESOURCE_ASSIGNED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000213 printk(BIOS_DEBUG, "Adding PCIe enhanced config space BAR 0x%08lx-0x%08lx.\n",
Stefan Reinauer30140a52009-03-11 16:20:39 +0000214 (unsigned long)(resource->base), (unsigned long)(resource->base + resource->size));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000215}
216
217static void mc_set_resources(device_t dev)
218{
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000219 struct resource *resource;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000220
221 /* Report the PCIe BAR */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000222 resource = find_resource(dev, 0xcf);
223 if (resource) {
224 report_resource_stored(dev, resource, "<mmconfig>");
225 }
226
227 /* And call the normal set_resources */
228 pci_dev_set_resources(dev);
229}
230
231static void intel_set_subsystem(device_t dev, unsigned vendor, unsigned device)
232{
Stefan Reinauer30140a52009-03-11 16:20:39 +0000233 if (!vendor || !device) {
234 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
235 pci_read_config32(dev, PCI_VENDOR_ID));
236 } else {
237 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
238 ((device & 0xffff) << 16) | (vendor & 0xffff));
239 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000240}
241
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000242#if CONFIG_HAVE_ACPI_RESUME
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000243static void northbridge_init(struct device *dev)
244{
245 switch (pci_read_config32(dev, SKPAD)) {
Sven Schnelled8c68a92011-06-15 09:26:34 +0200246 case SKPAD_NORMAL_BOOT_MAGIC:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000247 printk(BIOS_DEBUG, "Normal boot.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000248 acpi_slp_type=0;
249 break;
Sven Schnelled8c68a92011-06-15 09:26:34 +0200250 case SKPAD_ACPI_S3_MAGIC:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000251 printk(BIOS_DEBUG, "S3 Resume.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000252 acpi_slp_type=3;
253 break;
254 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000255 printk(BIOS_DEBUG, "Unknown boot method, assuming normal.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000256 acpi_slp_type=0;
257 break;
258 }
259}
260#endif
261
Stefan Reinauer278534d2008-10-29 04:51:07 +0000262static struct pci_operations intel_pci_ops = {
263 .set_subsystem = intel_set_subsystem,
264};
265
266static struct device_operations mc_ops = {
267 .read_resources = mc_read_resources,
268 .set_resources = mc_set_resources,
269 .enable_resources = pci_dev_enable_resources,
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000270#if CONFIG_HAVE_ACPI_RESUME
271 .init = northbridge_init,
272#endif
Stefan Reinauer278534d2008-10-29 04:51:07 +0000273 .scan_bus = 0,
274 .ops_pci = &intel_pci_ops,
275};
276
277static const struct pci_driver mc_driver __pci_driver = {
278 .ops = &mc_ops,
279 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermann5d7a1c82008-10-31 18:41:09 +0000280 .device = 0x27a0,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000281};
282
283static void cpu_bus_init(device_t dev)
284{
Myles Watson894a3472010-06-09 22:41:35 +0000285 initialize_cpus(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000286}
287
288static void cpu_bus_noop(device_t dev)
289{
290}
291
292static struct device_operations cpu_bus_ops = {
293 .read_resources = cpu_bus_noop,
294 .set_resources = cpu_bus_noop,
295 .enable_resources = cpu_bus_noop,
296 .init = cpu_bus_init,
297 .scan_bus = 0,
298};
299
300static void enable_dev(device_t dev)
301{
302 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800303 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000304 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800305 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000306 dev->ops = &cpu_bus_ops;
307 }
308}
309
310struct chip_operations northbridge_intel_i945_ops = {
311 CHIP_NAME("Intel i945 Northbridge")
312 .enable_dev = enable_dev,
313};