blob: 10a7ba490668bdeada2200b09b76eae187025c72 [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
Arthur Heymans17ad4592018-08-06 15:35:28 +020016#include <cbmem.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000017#include <console/console.h>
18#include <arch/io.h>
19#include <stdint.h>
20#include <device/device.h>
21#include <device/pci.h>
22#include <device/pci_ids.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000023#include <stdlib.h>
24#include <string.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000025#include <cpu/cpu.h>
Stefan Reinauerab872542011-10-14 15:18:29 -070026#include <arch/acpi.h>
Arthur Heymanscf3076e2018-04-10 12:57:42 +020027#include <cpu/intel/smm/gen1/smi.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000028#include "i945.h"
29
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020030static int get_pcie_bar(u32 *base)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000031{
Elyes HAOUAS658a9342018-02-08 14:46:22 +010032 struct device *dev;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000033 u32 pciexbar_reg;
34
35 *base = 0;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000036
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030037 dev = pcidev_on_root(0, 0);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000038 if (!dev)
39 return 0;
Stefan Reinauer109ab312009-08-12 16:08:05 +000040
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000041 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000042
43 if (!(pciexbar_reg & (1 << 0)))
44 return 0;
45
46 switch ((pciexbar_reg >> 1) & 3) {
47 case 0: // 256MB
48 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020049 return 256;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000050 case 1: // 128M
51 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020052 return 128;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000053 case 2: // 64M
54 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020055 return 64;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000056 }
57
58 return 0;
59}
60
Arthur Heymans794f56b2018-06-15 19:37:23 +020061static void mch_domain_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +000062{
Arthur Heymans17ad4592018-08-06 15:35:28 +020063 uint32_t pci_tolm, tseg_sizek, cbmem_topk, delta_cbmem;
Arthur Heymansf6d14772018-01-26 11:50:04 +010064 uint8_t tolud;
Stefan Reinauer278534d2008-10-29 04:51:07 +000065 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030066 unsigned long long tomk, tomk_stolen;
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030067 uint64_t uma_memory_base = 0, uma_memory_size = 0;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030068 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Nico Huber4e008c62019-01-12 15:28:43 +010069 struct device *const d0f0 = pcidev_on_root(0, 0);
Stefan Reinauer278534d2008-10-29 04:51:07 +000070
Arthur Heymans794f56b2018-06-15 19:37:23 +020071 pci_domain_read_resources(dev);
72
Stefan Reinauer71a3d962009-07-21 21:44:24 +000073 /* Can we find out how much memory we can use at most
74 * this way?
75 */
Myles Watson894a3472010-06-09 22:41:35 +000076 pci_tolm = find_pci_tolm(dev->link_list);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000077 printk(BIOS_DEBUG, "pci_tolm: 0x%x\n", pci_tolm);
Stefan Reinauer278534d2008-10-29 04:51:07 +000078
Nico Huber4e008c62019-01-12 15:28:43 +010079 tolud = pci_read_config8(d0f0, TOLUD);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000080 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +000081
82 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030083 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +000084
85 /* Note: subtract IGD device and TSEG */
Nico Huber4e008c62019-01-12 15:28:43 +010086 reg16 = pci_read_config16(d0f0, GGC);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030087 if (!(reg16 & 2)) {
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030088 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Arthur Heymans874a8f92016-05-19 16:06:09 +020089 int uma_size = decode_igd_memory_size((reg16 >> 4) & 7);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030090
91 printk(BIOS_DEBUG, "%dM UMA\n", uma_size >> 10);
92 tomk_stolen -= uma_size;
93
94 /* For reserving UMA memory in the memory map */
95 uma_memory_base = tomk_stolen * 1024ULL;
96 uma_memory_size = uma_size * 1024ULL;
Nico Huber4e008c62019-01-12 15:28:43 +010097
98 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
99 (unsigned int)uma_memory_base);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +0300100 }
101
Nico Huber4e008c62019-01-12 15:28:43 +0100102 tseg_sizek = decode_tseg_size(pci_read_config8(d0f0, ESMRAMC)) >> 10;
Arthur Heymansf6d14772018-01-26 11:50:04 +0100103 printk(BIOS_DEBUG, "TSEG decoded, subtracting %dM\n", tseg_sizek >> 10);
104 tomk_stolen -= tseg_sizek;
105 tseg_memory_base = tomk_stolen * 1024ULL;
106 tseg_memory_size = tseg_sizek * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000107
Arthur Heymans17ad4592018-08-06 15:35:28 +0200108 /* cbmem_top can be shifted downwards due to alignment.
109 Mark the region between cbmem_top and tomk as unusable */
110 cbmem_topk = ((uint32_t)cbmem_top() >> 10);
111 delta_cbmem = tomk_stolen - cbmem_topk;
112 tomk_stolen -= delta_cbmem;
113
114 printk(BIOS_DEBUG, "Unused RAM between cbmem_top and TOM: 0x%xK\n",
115 delta_cbmem);
116
117
Stefan Reinauer278534d2008-10-29 04:51:07 +0000118 /* The following needs to be 2 lines, otherwise the second
119 * number is always 0
120 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300121 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
122 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen >> 10));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000123
124 /* Report the memory regions */
125 ram_resource(dev, 3, 0, 640);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000126 ram_resource(dev, 4, 768, (tomk - 768));
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300127 uma_resource(dev, 5, uma_memory_base >> 10, uma_memory_size >> 10);
128 mmio_resource(dev, 6, tseg_memory_base >> 10, tseg_memory_size >> 10);
Arthur Heymans17ad4592018-08-06 15:35:28 +0200129 uma_resource(dev, 7, cbmem_topk, delta_cbmem);
Arthur Heymans794f56b2018-06-15 19:37:23 +0200130}
131
132static void mch_domain_set_resources(struct device *dev)
133{
134 struct resource *res;
135
136 for (res = dev->resource_list; res; res = res->next)
137 report_resource_stored(dev, res, "");
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300138
Myles Watson894a3472010-06-09 22:41:35 +0000139 assign_resources(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000140}
141
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100142static const char *northbridge_acpi_name(const struct device *dev)
143{
144 if (dev->path.type == DEVICE_PATH_DOMAIN)
145 return "PCI0";
146
147 if (dev->path.type != DEVICE_PATH_PCI || dev->bus->secondary != 0)
148 return NULL;
149
150 switch (dev->path.pci.devfn) {
151 case PCI_DEVFN(0, 0):
152 return "MCHC";
153 }
154
155 return NULL;
156}
157
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200158void northbridge_write_smram(u8 smram)
159{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300160 struct device *dev = pcidev_on_root(0, 0);
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200161
162 if (dev == NULL)
163 die("could not find pci 00:00.0!\n");
164
165 pci_write_config8(dev, SMRAM, smram);
166}
167
168/*
169 * Really doesn't belong here but will go away with parallel mp init,
170 * so let it be here for a while...
171 */
172int cpu_get_apic_id_map(int *apic_id_map)
173{
174 unsigned int i;
175
176 /* Logical processors (threads) per core */
177 const struct cpuid_result cpuid1 = cpuid(1);
178 /* Read number of cores. */
179 const char cores = (cpuid1.ebx >> 16) & 0xf;
180
181 /* TODO in parallel MP cpuid(1).ebx */
182 for (i = 0; i < cores; i++)
183 apic_id_map[i] = i;
184
185 return cores;
186}
187
Stefan Reinauer278534d2008-10-29 04:51:07 +0000188 /* TODO We could determine how many PCIe busses we need in
189 * the bar. For now that number is hardcoded to a max of 64.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000190 * See e7525/northbridge.c for an example.
Stefan Reinauer278534d2008-10-29 04:51:07 +0000191 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000192static struct device_operations pci_domain_ops = {
Arthur Heymans794f56b2018-06-15 19:37:23 +0200193 .read_resources = mch_domain_read_resources,
194 .set_resources = mch_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000195 .enable_resources = NULL,
196 .init = NULL,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000197 .scan_bus = pci_domain_scan_bus,
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100198 .acpi_name = northbridge_acpi_name,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000199};
200
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100201static void mc_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000202{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200203 u32 pcie_config_base;
204 int buses;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000205
206 pci_dev_read_resources(dev);
207
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200208 buses = get_pcie_bar(&pcie_config_base);
209 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200210 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200211 mmconf_resource_init(resource, pcie_config_base, buses);
212 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000213}
214
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100215static void intel_set_subsystem(struct device *dev, unsigned int vendor,
Arthur Heymans70a8e342017-03-09 11:30:23 +0100216 unsigned int device)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000217{
Stefan Reinauer30140a52009-03-11 16:20:39 +0000218 if (!vendor || !device) {
219 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
220 pci_read_config32(dev, PCI_VENDOR_ID));
221 } else {
222 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
223 ((device & 0xffff) << 16) | (vendor & 0xffff));
224 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000225}
Stefan Reinauer278534d2008-10-29 04:51:07 +0000226static struct pci_operations intel_pci_ops = {
227 .set_subsystem = intel_set_subsystem,
228};
229
230static struct device_operations mc_ops = {
231 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200232 .set_resources = pci_dev_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000233 .enable_resources = pci_dev_enable_resources,
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200234 .acpi_fill_ssdt_generator = generate_cpu_entries,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000235 .scan_bus = 0,
236 .ops_pci = &intel_pci_ops,
237};
238
Nico Huber04be6b52016-10-22 20:01:34 +0200239static const unsigned short pci_device_ids[] = {
240 0x2770, /* desktop */
241 0x27a0, 0x27ac, /* mobile */
242 0 };
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100243
Stefan Reinauer278534d2008-10-29 04:51:07 +0000244static const struct pci_driver mc_driver __pci_driver = {
245 .ops = &mc_ops,
246 .vendor = PCI_VENDOR_ID_INTEL,
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100247 .devices = pci_device_ids,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000248};
249
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100250static void cpu_bus_init(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000251{
Myles Watson894a3472010-06-09 22:41:35 +0000252 initialize_cpus(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000253}
254
Stefan Reinauer278534d2008-10-29 04:51:07 +0000255static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100256 .read_resources = DEVICE_NOOP,
257 .set_resources = DEVICE_NOOP,
258 .enable_resources = DEVICE_NOOP,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000259 .init = cpu_bus_init,
260 .scan_bus = 0,
261};
262
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100263static void enable_dev(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000264{
265 /* Set the operations if it is a special bus type */
Arthur Heymans70a8e342017-03-09 11:30:23 +0100266 if (dev->path.type == DEVICE_PATH_DOMAIN)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000267 dev->ops = &pci_domain_ops;
Arthur Heymans70a8e342017-03-09 11:30:23 +0100268 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000269 dev->ops = &cpu_bus_ops;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000270}
271
272struct chip_operations northbridge_intel_i945_ops = {
273 CHIP_NAME("Intel i945 Northbridge")
274 .enable_dev = enable_dev,
275};