blob: 719a7954f2fe4b443f8233bf20743c286dbea1ca [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.
Stefan Reinauer278534d2008-10-29 04:51:07 +000014 */
15
16#include <console/console.h>
17#include <arch/io.h>
18#include <stdint.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
22#include <device/hypertransport.h>
23#include <stdlib.h>
24#include <string.h>
Stefan Reinauerfd611f92013-02-27 23:45:20 +010025#include <cbmem.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000026#include <cpu/cpu.h>
Stefan Reinauerab872542011-10-14 15:18:29 -070027#include <arch/acpi.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000028#include "i945.h"
29
Stefan Reinauerde3206a2010-02-22 06:09:43 +000030static int get_pcie_bar(u32 *base, u32 *len)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000031{
32 device_t dev;
33 u32 pciexbar_reg;
34
35 *base = 0;
36 *len = 0;
37
38 dev = dev_find_slot(0, PCI_DEVFN(0, 0));
39 if (!dev)
40 return 0;
Stefan Reinauer109ab312009-08-12 16:08:05 +000041
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000042 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000043
44 if (!(pciexbar_reg & (1 << 0)))
45 return 0;
46
47 switch ((pciexbar_reg >> 1) & 3) {
48 case 0: // 256MB
49 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
50 *len = 256 * 1024 * 1024;
51 return 1;
52 case 1: // 128M
53 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
54 *len = 128 * 1024 * 1024;
55 return 1;
56 case 2: // 64M
57 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
58 *len = 64 * 1024 * 1024;
59 return 1;
60 }
61
62 return 0;
63}
64
Myles Watson25d12132010-09-13 13:14:48 +000065static void add_fixed_resources(struct device *dev, int index)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000066{
Myles Watson25d12132010-09-13 13:14:48 +000067 struct resource *resource;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000068 u32 pcie_config_base, pcie_config_size;
69
Myles Watson25d12132010-09-13 13:14:48 +000070 if (get_pcie_bar(&pcie_config_base, &pcie_config_size)) {
71 printk(BIOS_DEBUG, "Adding PCIe config bar\n");
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030072 resource = new_resource(dev, index++);
Myles Watson25d12132010-09-13 13:14:48 +000073 resource->base = (resource_t) pcie_config_base;
74 resource->size = (resource_t) pcie_config_size;
75 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
76 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
77 }
Stefan Reinauer71a3d962009-07-21 21:44:24 +000078}
79
Stefan Reinauer278534d2008-10-29 04:51:07 +000080static void pci_domain_set_resources(device_t dev)
81{
82 uint32_t pci_tolm;
83 uint8_t tolud, reg8;
84 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030085 unsigned long long tomk, tomk_stolen;
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030086 uint64_t uma_memory_base = 0, uma_memory_size = 0;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030087 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Stefan Reinauer278534d2008-10-29 04:51:07 +000088
Stefan Reinauer71a3d962009-07-21 21:44:24 +000089 /* Can we find out how much memory we can use at most
90 * this way?
91 */
Myles Watson894a3472010-06-09 22:41:35 +000092 pci_tolm = find_pci_tolm(dev->link_list);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000093 printk(BIOS_DEBUG, "pci_tolm: 0x%x\n", pci_tolm);
Stefan Reinauer278534d2008-10-29 04:51:07 +000094
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000095 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
Paul Menzel355ce382014-05-30 13:58:59 +020096 pci_read_config32(dev_find_slot(0, PCI_DEVFN(2, 0)), BSM));
Stefan Reinauer278534d2008-10-29 04:51:07 +000097
Paul Menzel66f10b12014-05-25 13:50:14 +020098 tolud = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), TOLUD);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000099 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000100
101 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300102 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000103
104 /* Note: subtract IGD device and TSEG */
Kyösti Mälkki15935eb2014-05-31 16:07:14 +0300105 reg16 = pci_read_config16(dev_find_slot(0, PCI_DEVFN(0, 0)), GGC);
106 if (!(reg16 & 2)) {
Kyösti Mälkki15935eb2014-05-31 16:07:14 +0300107 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Arthur Heymans874a8f92016-05-19 16:06:09 +0200108 int uma_size = decode_igd_memory_size((reg16 >> 4) & 7);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +0300109
110 printk(BIOS_DEBUG, "%dM UMA\n", uma_size >> 10);
111 tomk_stolen -= uma_size;
112
113 /* For reserving UMA memory in the memory map */
114 uma_memory_base = tomk_stolen * 1024ULL;
115 uma_memory_size = uma_size * 1024ULL;
116 }
117
Stefan Reinauer278534d2008-10-29 04:51:07 +0000118 reg8 = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), 0x9e);
119 if (reg8 & 1) {
120 int tseg_size = 0;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000121 printk(BIOS_DEBUG, "TSEG decoded, subtracting ");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000122 reg8 >>= 1;
123 reg8 &= 3;
124 switch (reg8) {
125 case 0:
126 tseg_size = 1024;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000127 break; /* TSEG = 1M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000128 case 1:
129 tseg_size = 2048;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000130 break; /* TSEG = 2M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000131 case 2:
132 tseg_size = 8192;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000133 break; /* TSEG = 8M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000134 }
135
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000136 printk(BIOS_DEBUG, "%dM\n", tseg_size >> 10);
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300137 tomk_stolen -= tseg_size;
138
139 /* For reserving TSEG memory in the memory map */
140 tseg_memory_base = tomk_stolen * 1024ULL;
141 tseg_memory_size = tseg_size * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000142 }
143
Stefan Reinauer278534d2008-10-29 04:51:07 +0000144 /* The following needs to be 2 lines, otherwise the second
145 * number is always 0
146 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300147 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
148 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen >> 10));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000149
150 /* Report the memory regions */
151 ram_resource(dev, 3, 0, 640);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000152 ram_resource(dev, 4, 768, (tomk - 768));
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300153 uma_resource(dev, 5, uma_memory_base >> 10, uma_memory_size >> 10);
154 mmio_resource(dev, 6, tseg_memory_base >> 10, tseg_memory_size >> 10);
155
156 add_fixed_resources(dev, 7);
Myles Watson25d12132010-09-13 13:14:48 +0000157
Myles Watson894a3472010-06-09 22:41:35 +0000158 assign_resources(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000159}
160
Stefan Reinauer278534d2008-10-29 04:51:07 +0000161 /* TODO We could determine how many PCIe busses we need in
162 * the bar. For now that number is hardcoded to a max of 64.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000163 * See e7525/northbridge.c for an example.
Stefan Reinauer278534d2008-10-29 04:51:07 +0000164 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000165static struct device_operations pci_domain_ops = {
166 .read_resources = pci_domain_read_resources,
167 .set_resources = pci_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000168 .enable_resources = NULL,
169 .init = NULL,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000170 .scan_bus = pci_domain_scan_bus,
Kyösti Mälkki872c9222013-07-03 09:44:28 +0300171 .ops_pci_bus = pci_bus_default_ops,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000172};
173
174static void mc_read_resources(device_t dev)
175{
176 struct resource *resource;
177
178 pci_dev_read_resources(dev);
179
180 /* So, this is one of the big mysteries in the coreboot resource
181 * allocator. This resource should make sure that the address space
182 * of the PCIe memory mapped config space bar. But it does not.
183 */
184
185 /* We use 0xcf as an unused index for our PCIe bar so that we find it again */
186 resource = new_resource(dev, 0xcf);
187 resource->base = DEFAULT_PCIEXBAR;
188 resource->size = 64 * 1024 * 1024; /* 64MB hard coded PCIe config space */
189 resource->flags =
190 IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
191 IORESOURCE_ASSIGNED;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000192 printk(BIOS_DEBUG, "Adding PCIe enhanced config space BAR 0x%08lx-0x%08lx.\n",
Stefan Reinauer30140a52009-03-11 16:20:39 +0000193 (unsigned long)(resource->base), (unsigned long)(resource->base + resource->size));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000194}
195
196static void mc_set_resources(device_t dev)
197{
Stefan Reinauer71a3d962009-07-21 21:44:24 +0000198 struct resource *resource;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000199
200 /* Report the PCIe BAR */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000201 resource = find_resource(dev, 0xcf);
202 if (resource) {
203 report_resource_stored(dev, resource, "<mmconfig>");
204 }
205
206 /* And call the normal set_resources */
207 pci_dev_set_resources(dev);
208}
209
210static void intel_set_subsystem(device_t dev, unsigned vendor, unsigned device)
211{
Stefan Reinauer30140a52009-03-11 16:20:39 +0000212 if (!vendor || !device) {
213 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
214 pci_read_config32(dev, PCI_VENDOR_ID));
215 } else {
216 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
217 ((device & 0xffff) << 16) | (vendor & 0xffff));
218 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000219}
220
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000221#if CONFIG_HAVE_ACPI_RESUME
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000222static void northbridge_init(struct device *dev)
223{
224 switch (pci_read_config32(dev, SKPAD)) {
Sven Schnelled8c68a92011-06-15 09:26:34 +0200225 case SKPAD_NORMAL_BOOT_MAGIC:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000226 printk(BIOS_DEBUG, "Normal boot.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000227 acpi_slp_type=0;
228 break;
Sven Schnelled8c68a92011-06-15 09:26:34 +0200229 case SKPAD_ACPI_S3_MAGIC:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000230 printk(BIOS_DEBUG, "S3 Resume.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000231 acpi_slp_type=3;
232 break;
233 default:
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000234 printk(BIOS_DEBUG, "Unknown boot method, assuming normal.\n");
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000235 acpi_slp_type=0;
236 break;
237 }
238}
239#endif
240
Stefan Reinauer278534d2008-10-29 04:51:07 +0000241static struct pci_operations intel_pci_ops = {
242 .set_subsystem = intel_set_subsystem,
243};
244
245static struct device_operations mc_ops = {
246 .read_resources = mc_read_resources,
247 .set_resources = mc_set_resources,
248 .enable_resources = pci_dev_enable_resources,
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200249 .acpi_fill_ssdt_generator = generate_cpu_entries,
Stefan Reinaueraca6ec62009-10-26 17:12:21 +0000250#if CONFIG_HAVE_ACPI_RESUME
251 .init = northbridge_init,
252#endif
Stefan Reinauer278534d2008-10-29 04:51:07 +0000253 .scan_bus = 0,
254 .ops_pci = &intel_pci_ops,
255};
256
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100257static const unsigned short pci_device_ids[] = { 0x27a0, 0x27ac,
258 0 };
259
Stefan Reinauer278534d2008-10-29 04:51:07 +0000260static const struct pci_driver mc_driver __pci_driver = {
261 .ops = &mc_ops,
262 .vendor = PCI_VENDOR_ID_INTEL,
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100263 .devices = pci_device_ids,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000264};
265
266static void cpu_bus_init(device_t dev)
267{
Myles Watson894a3472010-06-09 22:41:35 +0000268 initialize_cpus(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000269}
270
Stefan Reinauer278534d2008-10-29 04:51:07 +0000271static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100272 .read_resources = DEVICE_NOOP,
273 .set_resources = DEVICE_NOOP,
274 .enable_resources = DEVICE_NOOP,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000275 .init = cpu_bus_init,
276 .scan_bus = 0,
277};
278
279static void enable_dev(device_t dev)
280{
281 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800282 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000283 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800284 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Stefan Reinauer278534d2008-10-29 04:51:07 +0000285 dev->ops = &cpu_bus_ops;
286 }
287}
288
289struct chip_operations northbridge_intel_i945_ops = {
290 CHIP_NAME("Intel i945 Northbridge")
291 .enable_dev = enable_dev,
292};