blob: 6ec76e14430cca73105b0168c55d85de429c3bee [file] [log] [blame]
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 * Copyright (C) 2013 Vladimir Serbinenko
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.
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010016 */
17
18#include <console/console.h>
19#include <arch/acpi.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020020#include <device/pci_ops.h>
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010021#include <stdint.h>
22#include <delay.h>
23#include <cpu/intel/model_2065x/model_2065x.h>
24#include <cpu/x86/msr.h>
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010025#include <device/device.h>
26#include <device/pci.h>
27#include <device/pci_ids.h>
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010028#include <stdlib.h>
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010029#include <cpu/cpu.h>
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010030#include "chip.h"
31#include "nehalem.h"
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030032#include <cpu/intel/smm_reloc.h>
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010033
34static int bridge_revision_id = -1;
35
36int bridge_silicon_revision(void)
37{
38 if (bridge_revision_id < 0) {
39 uint8_t stepping = cpuid_eax(1) & 0xf;
40 uint8_t bridge_id =
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030041 pci_read_config16(pcidev_on_root(0, 0),
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010042 PCI_DEVICE_ID) & 0xf0;
43 bridge_revision_id = bridge_id | stepping;
44 }
45 return bridge_revision_id;
46}
47
48/* Reserve everything between A segment and 1MB:
49 *
50 * 0xa0000 - 0xbffff: legacy VGA
51 * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
52 * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
53 */
54static const int legacy_hole_base_k = 0xa0000 / 1024;
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010055
56static void add_fixed_resources(struct device *dev, int index)
57{
58 struct resource *resource;
59
60 /* 0xe0000000-0xf0000000 PCIe config.
61 0xfed10000-0xfed14000 MCH
62 0xfed17000-0xfed18000 HECI
63 0xfed18000-0xfed19000 DMI
64 0xfed19000-0xfed1a000 EPBAR
65 0xfed1c000-0xfed20000 RCBA
66 0xfed90000-0xfed94000 IOMMU
67 0xff800000-0xffffffff ROM. */
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010068
69 resource = new_resource(dev, index++);
70 resource->base = (resource_t) 0xfed00000;
71 resource->size = (resource_t) 0x00100000;
72 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
73 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
74
75 mmio_resource(dev, index++, legacy_hole_base_k,
76 (0xc0000 >> 10) - legacy_hole_base_k);
77 reserved_ram_resource(dev, index++, 0xc0000 >> 10,
78 (0x100000 - 0xc0000) >> 10);
79
Julius Wernercd49cce2019-03-05 16:53:33 -080080#if CONFIG(CHROMEOS_RAMOOPS)
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010081 reserved_ram_resource(dev, index++,
82 CONFIG_CHROMEOS_RAMOOPS_RAM_START >> 10,
83 CONFIG_CHROMEOS_RAMOOPS_RAM_SIZE >> 10);
84#endif
85}
86
Elyes HAOUAS706aabc2018-02-09 08:49:32 +010087static void pci_domain_set_resources(struct device *dev)
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +010088{
89 assign_resources(dev->link_list);
90}
91
Julius Wernercd49cce2019-03-05 16:53:33 -080092#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolph5c3452b2018-05-15 11:37:26 +020093static const char *northbridge_acpi_name(const struct device *dev)
94{
95 if (dev->path.type == DEVICE_PATH_DOMAIN)
96 return "PCI0";
97
98 if (dev->path.type != DEVICE_PATH_PCI || dev->bus->secondary != 0)
99 return NULL;
100
101 switch (dev->path.pci.devfn) {
102 case PCI_DEVFN(0, 0):
103 return "MCHC";
104 }
105
106 return NULL;
107}
108#endif
109
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100110static struct device_operations pci_domain_ops = {
111 .read_resources = pci_domain_read_resources,
112 .set_resources = pci_domain_set_resources,
113 .enable_resources = NULL,
114 .init = NULL,
115 .scan_bus = pci_domain_scan_bus,
Julius Wernercd49cce2019-03-05 16:53:33 -0800116#if CONFIG(HAVE_ACPI_TABLES)
Patrick Rudolph5c3452b2018-05-15 11:37:26 +0200117 .acpi_name = northbridge_acpi_name,
118#endif
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100119};
120
Elyes HAOUAS706aabc2018-02-09 08:49:32 +0100121static void mc_read_resources(struct device *dev)
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100122{
123 uint32_t tseg_base;
124 uint64_t TOUUD;
125 uint16_t reg16;
126
127 pci_dev_read_resources(dev);
128
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200129 mmconf_resource(dev, 0x50);
130
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300131 tseg_base = pci_read_config32(pcidev_on_root(0, 0), TSEG);
132 TOUUD = pci_read_config16(pcidev_on_root(0, 0),
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100133 D0F0_TOUUD);
134
135 printk(BIOS_DEBUG, "ram_before_4g_top: 0x%x\n", tseg_base);
136 printk(BIOS_DEBUG, "TOUUD: 0x%x\n", (unsigned)TOUUD);
137
138 /* Report the memory regions */
139 ram_resource(dev, 3, 0, 640);
140 ram_resource(dev, 4, 768, ((tseg_base >> 10) - 768));
141
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100142 mmio_resource(dev, 5, tseg_base >> 10, CONFIG_SMM_TSEG_SIZE >> 10);
143
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300144 reg16 = pci_read_config16(pcidev_on_root(0, 0), D0F0_GGC);
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100145 const int uma_sizes_gtt[16] =
146 { 0, 1, 0, 2, 0, 0, 0, 0, 0, 2, 3, 4, 42, 42, 42, 42 };
147 /* Igd memory */
148 const int uma_sizes_igd[16] = {
149 0, 0, 0, 0, 0, 32, 48, 64, 128, 256, 96, 160, 224, 352, 256, 512
150 };
151 u32 igd_base, gtt_base;
152 int uma_size_igd, uma_size_gtt;
153
154 uma_size_igd = uma_sizes_igd[(reg16 >> 4) & 0xF];
155 uma_size_gtt = uma_sizes_gtt[(reg16 >> 8) & 0xF];
156
157 igd_base =
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300158 pci_read_config32(pcidev_on_root(0, 0), D0F0_IGD_BASE);
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100159 gtt_base =
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300160 pci_read_config32(pcidev_on_root(0, 0), D0F0_GTT_BASE);
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100161 mmio_resource(dev, 6, gtt_base >> 10, uma_size_gtt << 10);
162 mmio_resource(dev, 7, igd_base >> 10, uma_size_igd << 10);
163
164 if (TOUUD > 4096)
165 ram_resource(dev, 8, (4096 << 10), ((TOUUD - 4096) << 10));
166
167 /* This memory is not DMA-capable. */
168 if (TOUUD >= 8192 - 64)
169 bad_ram_resource(dev, 9, 0x1fc000000ULL >> 10, 0x004000000 >> 10);
170
171 add_fixed_resources(dev, 10);
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100172}
173
Elyes HAOUAS706aabc2018-02-09 08:49:32 +0100174static void mc_set_resources(struct device *dev)
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100175{
176 /* And call the normal set_resources */
177 pci_dev_set_resources(dev);
178}
179
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100180static void northbridge_dmi_init(struct device *dev)
181{
182 u32 reg32;
183
184 /* Clear error status bits */
185 DMIBAR32(0x1c4) = 0xffffffff;
186 DMIBAR32(0x1d0) = 0xffffffff;
187
188 /* Steps prior to DMI ASPM */
189 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
190 reg32 = DMIBAR32(0x250);
191 reg32 &= ~((1 << 22) | (1 << 20));
192 reg32 |= (1 << 21);
193 DMIBAR32(0x250) = reg32;
194 }
195
196 reg32 = DMIBAR32(0x238);
197 reg32 |= (1 << 29);
198 DMIBAR32(0x238) = reg32;
199
200 if (bridge_silicon_revision() >= SNB_STEP_D0) {
201 reg32 = DMIBAR32(0x1f8);
202 reg32 |= (1 << 16);
203 DMIBAR32(0x1f8) = reg32;
204 } else if (bridge_silicon_revision() >= SNB_STEP_D1) {
205 reg32 = DMIBAR32(0x1f8);
206 reg32 &= ~(1 << 26);
207 reg32 |= (1 << 16);
208 DMIBAR32(0x1f8) = reg32;
209
210 reg32 = DMIBAR32(0x1fc);
211 reg32 |= (1 << 12) | (1 << 23);
212 DMIBAR32(0x1fc) = reg32;
213 }
214
215 /* Enable ASPM on SNB link, should happen before PCH link */
216 if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
217 reg32 = DMIBAR32(0xd04);
218 reg32 |= (1 << 4);
219 DMIBAR32(0xd04) = reg32;
220 }
221
222 reg32 = DMIBAR32(0x88);
223 reg32 |= (1 << 1) | (1 << 0);
224 DMIBAR32(0x88) = reg32;
225}
226
227static void northbridge_init(struct device *dev)
228{
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100229 northbridge_dmi_init(dev);
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100230}
231
Arthur Heymans28bca052019-10-01 21:20:33 +0200232/* Disable unused PEG devices based on devicetree before PCI enumeration */
233static void nehalem_init(void *const chip_info)
234{
235 u32 deven_mask = UINT32_MAX;
236 const struct device *dev;
237
238 dev = pcidev_on_root(1, 0);
239 if (!dev || !dev->enabled) {
240 printk(BIOS_DEBUG, "Disabling PEG10.\n");
241 deven_mask &= ~DEVEN_PEG10;
242 }
243 dev = pcidev_on_root(2, 0);
244 if (!dev || !dev->enabled) {
245 printk(BIOS_DEBUG, "Disabling IGD.\n");
246 deven_mask &= ~DEVEN_IGD;
247 }
248 const struct device *const d0f0 = pcidev_on_root(0, 0);
249 if (d0f0)
250 pci_update_config32(d0f0, D0F0_DEVEN, deven_mask, 0);
251
252}
253
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100254static struct pci_operations intel_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +0530255 .set_subsystem = pci_dev_set_subsystem,
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100256};
257
258static struct device_operations mc_ops = {
259 .read_resources = mc_read_resources,
260 .set_resources = mc_set_resources,
261 .enable_resources = pci_dev_enable_resources,
262 .init = northbridge_init,
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200263 .acpi_fill_ssdt_generator = generate_cpu_entries,
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100264 .scan_bus = 0,
265 .ops_pci = &intel_pci_ops,
266};
267
268static const struct pci_driver mc_driver_44 __pci_driver = {
269 .ops = &mc_ops,
270 .vendor = PCI_VENDOR_ID_INTEL,
271 .device = 0x0044, /* Nehalem */
272};
273
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100274static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100275 .read_resources = DEVICE_NOOP,
276 .set_resources = DEVICE_NOOP,
277 .enable_resources = DEVICE_NOOP,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300278 .init = mp_cpu_bus_init,
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100279 .scan_bus = 0,
280};
281
Elyes HAOUAS706aabc2018-02-09 08:49:32 +0100282static void enable_dev(struct device *dev)
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100283{
284 /* Set the operations if it is a special bus type */
285 if (dev->path.type == DEVICE_PATH_DOMAIN) {
286 dev->ops = &pci_domain_ops;
287 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
288 dev->ops = &cpu_bus_ops;
289 }
290}
291
292struct chip_operations northbridge_intel_nehalem_ops = {
293 CHIP_NAME("Intel i7 (Nehalem) integrated Northbridge")
Arthur Heymans28bca052019-10-01 21:20:33 +0200294 .enable_dev = enable_dev,
295 .init = nehalem_init,
Vladimir Serbinenkoc6f6be02013-11-12 22:32:08 +0100296};