blob: da37e33145c8cb4a3b06e5e5a03e0527d5ae52f3 [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
5 *
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.
Patrick Georgi2efc8802012-11-06 11:03:53 +010014 */
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>
Patrick Georgi2efc8802012-11-06 11:03:53 +010022#include <stdlib.h>
23#include <string.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010024#include <cpu/cpu.h>
25#include <boot/tables.h>
26#include <arch/acpi.h>
27#include <cbmem.h>
Arthur Heymansaade90e2018-01-25 00:33:45 +010028#include <cpu/intel/smm/gen1/smi.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010029#include "chip.h"
30#include "gm45.h"
Vladimir Serbinenko06667a52014-08-12 09:07:13 +020031#include "arch/acpi.h"
Patrick Georgi2efc8802012-11-06 11:03:53 +010032
Vladimir Serbinenko8c220572014-08-16 14:18:21 +020033/* Reserve segments A and B:
Patrick Georgi2efc8802012-11-06 11:03:53 +010034 *
35 * 0xa0000 - 0xbffff: legacy VGA
Patrick Georgi2efc8802012-11-06 11:03:53 +010036 */
37static const int legacy_hole_base_k = 0xa0000 / 1024;
Vladimir Serbinenko8c220572014-08-16 14:18:21 +020038static const int legacy_hole_size_k = 128;
Patrick Georgi2efc8802012-11-06 11:03:53 +010039
40static int decode_pcie_bar(u32 *const base, u32 *const len)
41{
42 *base = 0;
43 *len = 0;
44
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +010045 struct device *dev = dev_find_slot(0, PCI_DEVFN(0, 0));
Patrick Georgi2efc8802012-11-06 11:03:53 +010046 if (!dev)
47 return 0;
48
49 const u32 pciexbar_reg = pci_read_config32(dev, D0F0_PCIEXBAR_LO);
50
51 if (!(pciexbar_reg & (1 << 0)))
52 return 0;
53
54 switch ((pciexbar_reg >> 1) & 3) {
55 case 0: /* 256MB */
56 *base = pciexbar_reg & (0x0f << 28);
57 *len = 256 * 1024 * 1024;
58 return 1;
59 case 1: /* 128M */
60 *base = pciexbar_reg & (0x1f << 27);
61 *len = 128 * 1024 * 1024;
62 return 1;
63 case 2: /* 64M */
64 *base = pciexbar_reg & (0x3f << 26);
65 *len = 64 * 1024 * 1024;
66 return 1;
67 }
68
69 return 0;
70}
71
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +010072static void mch_domain_read_resources(struct device *dev)
Patrick Georgi2efc8802012-11-06 11:03:53 +010073{
74 u64 tom, touud;
Nico Huberca3e1212017-10-02 20:07:53 +020075 u32 tomk, tolud, uma_sizek = 0;
Patrick Georgi2efc8802012-11-06 11:03:53 +010076 u32 pcie_config_base, pcie_config_size;
77
78 /* Total Memory 2GB example:
79 *
80 * 00000000 0000MB-2014MB 2014MB RAM (writeback)
81 * 7de00000 2014MB-2016MB 2MB GFX GTT (uncached)
82 * 7e000000 2016MB-2048MB 32MB GFX UMA (uncached)
83 * 80000000 2048MB TOLUD
84 * 80000000 2048MB TOM
85 *
86 * Total Memory 4GB example:
87 *
88 * 00000000 0000MB-3038MB 3038MB RAM (writeback)
89 * bde00000 3038MB-3040MB 2MB GFX GTT (uncached)
90 * be000000 3040MB-3072MB 32MB GFX UMA (uncached)
91 * be000000 3072MB TOLUD
92 * 100000000 4096MB TOM
93 * 100000000 4096MB-5120MB 1024MB RAM (writeback)
94 * 140000000 5120MB TOUUD
95 */
96
97 pci_domain_read_resources(dev);
98
99 /* Top of Upper Usable DRAM, including remap */
100 touud = pci_read_config16(dev, D0F0_TOUUD);
101 touud <<= 20;
102
103 /* Top of Lower Usable DRAM */
104 tolud = pci_read_config16(dev, D0F0_TOLUD) & 0xfff0;
105 tolud <<= 16;
106
107 /* Top of Memory - does not account for any UMA */
108 tom = pci_read_config16(dev, D0F0_TOM) & 0x1ff;
109 tom <<= 27;
110
111 printk(BIOS_DEBUG, "TOUUD 0x%llx TOLUD 0x%08x TOM 0x%llx\n",
112 touud, tolud, tom);
113
114 tomk = tolud >> 10;
115
116 /* Graphics memory comes next */
117 const u16 ggc = pci_read_config16(dev, D0F0_GGC);
118 if (!(ggc & 2)) {
119 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
120
121 /* Graphics memory */
122 const u32 gms_sizek = decode_igd_memory_size((ggc >> 4) & 0xf);
Arthur Heymans8b766052018-01-24 23:25:13 +0100123 printk(BIOS_DEBUG, "%uM UMA, ", gms_sizek >> 10);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100124 tomk -= gms_sizek;
125
126 /* GTT Graphics Stolen Memory Size (GGMS) */
127 const u32 gsm_sizek = decode_igd_gtt_size((ggc >> 8) & 0xf);
Arthur Heymans8b766052018-01-24 23:25:13 +0100128 printk(BIOS_DEBUG, "%uM GTT", gsm_sizek >> 10);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100129 tomk -= gsm_sizek;
130
131 uma_sizek = gms_sizek + gsm_sizek;
132 }
Arthur Heymans8b766052018-01-24 23:25:13 +0100133 const u8 esmramc = pci_read_config8(dev, D0F0_ESMRAMC);
134 const u32 tseg_sizek = decode_tseg_size(esmramc);
135 printk(BIOS_DEBUG, " and %uM TSEG\n", tseg_sizek >> 10);
136 tomk -= tseg_sizek;
137 uma_sizek += tseg_sizek;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100138
Nico Huberca3e1212017-10-02 20:07:53 +0200139 printk(BIOS_INFO, "Available memory below 4GB: %uM\n", tomk >> 10);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100140
141 /* Report the memory regions */
142 ram_resource(dev, 3, 0, legacy_hole_base_k);
143 ram_resource(dev, 4, legacy_hole_base_k + legacy_hole_size_k,
Nico Huberca3e1212017-10-02 20:07:53 +0200144 (tomk - (legacy_hole_base_k + legacy_hole_size_k)));
Patrick Georgi2efc8802012-11-06 11:03:53 +0100145
146 /*
147 * If >= 4GB installed then memory from TOLUD to 4GB
148 * is remapped above TOM, TOUUD will account for both
149 */
150 touud >>= 10; /* Convert to KB */
151 if (touud > 4096 * 1024) {
152 ram_resource(dev, 5, 4096 * 1024, touud - (4096 * 1024));
153 printk(BIOS_INFO, "Available memory above 4GB: %lluM\n",
154 (touud >> 10) - 4096);
155 }
156
157 printk(BIOS_DEBUG, "Adding UMA memory area base=0x%llx "
158 "size=0x%llx\n", ((u64)tomk) << 10, ((u64)uma_sizek) << 10);
159 /* Don't use uma_resource() as our UMA touches the PCI hole. */
160 fixed_mem_resource(dev, 6, tomk, uma_sizek, IORESOURCE_RESERVE);
161
162 if (decode_pcie_bar(&pcie_config_base, &pcie_config_size)) {
163 printk(BIOS_DEBUG, "Adding PCIe config bar base=0x%08x "
164 "size=0x%x\n", pcie_config_base, pcie_config_size);
165 fixed_mem_resource(dev, 7, pcie_config_base >> 10,
166 pcie_config_size >> 10, IORESOURCE_RESERVE);
167 }
Patrick Georgi2efc8802012-11-06 11:03:53 +0100168}
169
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +0100170static void mch_domain_set_resources(struct device *dev)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100171{
172 struct resource *resource;
173 int i;
174
175 for (i = 3; i < 8; ++i) {
176 /* Report read resources. */
Vladimir Serbinenko40412c62014-11-12 00:09:20 +0100177 resource = probe_resource(dev, i);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100178 if (resource)
179 report_resource_stored(dev, resource, "");
180 }
181
182 assign_resources(dev->link_list);
183}
184
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +0100185static void mch_domain_init(struct device *dev)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100186{
187 u32 reg32;
188
189 /* Enable SERR */
190 reg32 = pci_read_config32(dev, PCI_COMMAND);
191 reg32 |= PCI_COMMAND_SERR;
192 pci_write_config32(dev, PCI_COMMAND, reg32);
193}
194
Arthur Heymanse798e6a2017-12-23 23:09:54 +0100195static const char *northbridge_acpi_name(const struct device *dev)
196{
197 if (dev->path.type == DEVICE_PATH_DOMAIN)
198 return "PCI0";
199
200 if (dev->path.type != DEVICE_PATH_PCI || dev->bus->secondary != 0)
201 return NULL;
202
203 switch (dev->path.pci.devfn) {
204 case PCI_DEVFN(0, 0):
205 return "MCHC";
206 }
207
208 return NULL;
209}
210
Arthur Heymansaade90e2018-01-25 00:33:45 +0100211u32 northbridge_get_tseg_base(void)
212{
213 return (u32)smm_region_start();
214}
215
216u32 northbridge_get_tseg_size(void)
217{
218 const u8 esmramc = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)),
219 D0F0_ESMRAMC);
220 return decode_tseg_size(esmramc) << 10;
221}
222
223void northbridge_write_smram(u8 smram)
224{
225 pci_write_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), D0F0_SMRAM, smram);
226}
227
228/*
229 * Really doesn't belong here but will go away with parallel mp init,
230 * so let it be here for a while...
231 */
232int cpu_get_apic_id_map(int *apic_id_map)
233{
234 unsigned int i;
235
236 /* Logical processors (threads) per core */
237 const struct cpuid_result cpuid1 = cpuid(1);
238 /* Read number of cores. */
239 const char cores = (cpuid1.ebx >> 16) & 0xf;
240
241 /* TODO in parallel MP cpuid(1).ebx */
242 for (i = 0; i < cores; i++)
243 apic_id_map[i] = i;
244
245 return cores;
246}
247
Patrick Georgi2efc8802012-11-06 11:03:53 +0100248static struct device_operations pci_domain_ops = {
249 .read_resources = mch_domain_read_resources,
250 .set_resources = mch_domain_set_resources,
251 .enable_resources = NULL,
252 .init = mch_domain_init,
253 .scan_bus = pci_domain_scan_bus,
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200254 .write_acpi_tables = northbridge_write_acpi_tables,
255 .acpi_fill_ssdt_generator = generate_cpu_entries,
Arthur Heymanse798e6a2017-12-23 23:09:54 +0100256 .acpi_name = northbridge_acpi_name,
Patrick Georgi2efc8802012-11-06 11:03:53 +0100257};
258
259
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +0100260static void cpu_bus_init(struct device *dev)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100261{
262 initialize_cpus(dev->link_list);
263}
264
Patrick Georgi2efc8802012-11-06 11:03:53 +0100265static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100266 .read_resources = DEVICE_NOOP,
267 .set_resources = DEVICE_NOOP,
268 .enable_resources = DEVICE_NOOP,
Patrick Georgi2efc8802012-11-06 11:03:53 +0100269 .init = cpu_bus_init,
270 .scan_bus = 0,
271};
272
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +0100273static void enable_dev(struct device *dev)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100274{
275 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800276 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Patrick Georgi2efc8802012-11-06 11:03:53 +0100277 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800278 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Patrick Georgi2efc8802012-11-06 11:03:53 +0100279 dev->ops = &cpu_bus_ops;
280 }
Patrick Georgi2efc8802012-11-06 11:03:53 +0100281}
282
283static void gm45_init(void *const chip_info)
284{
285 int dev, fn, bit_base;
286
287 struct device *const d0f0 = dev_find_slot(0, 0);
288
289 /* Hide internal functions based on devicetree info. */
290 for (dev = 3; dev > 0; --dev) {
291 switch (dev) {
292 case 3: /* ME */
293 fn = 3;
294 bit_base = 6;
295 break;
296 case 2: /* IGD */
297 fn = 1;
298 bit_base = 3;
299 break;
300 case 1: /* PEG */
301 fn = 0;
302 bit_base = 1;
303 break;
304 }
305 for (; fn >= 0; --fn) {
306 const struct device *const d =
307 dev_find_slot(0, PCI_DEVFN(dev, fn));
Nico Huber2dc15e92016-02-04 18:59:48 +0100308 if (!d || d->enabled) continue;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100309 const u32 deven = pci_read_config32(d0f0, D0F0_DEVEN);
310 pci_write_config32(d0f0, D0F0_DEVEN,
311 deven & ~(1 << (bit_base + fn)));
312 }
313 }
314
315 const u32 deven = pci_read_config32(d0f0, D0F0_DEVEN);
316 if (!(deven & (0xf << 6)))
317 pci_write_config32(d0f0, D0F0_DEVEN, deven & ~(1 << 14));
318}
319
320struct chip_operations northbridge_intel_gm45_ops = {
321 CHIP_NAME("Intel GM45 Northbridge")
322 .enable_dev = enable_dev,
323 .init = gm45_init,
324};