blob: 0e8ea7e77e95e5ce096c83477e5d813b849e501a [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer278534d2008-10-29 04:51:07 +00002
Arthur Heymans17ad4592018-08-06 15:35:28 +02003#include <cbmem.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +00004#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +00006#include <stdint.h>
7#include <device/device.h>
8#include <device/pci.h>
9#include <device/pci_ids.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070010#include <acpi/acpi.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030011#include <cpu/intel/smm_reloc.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000012#include "i945.h"
13
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020014static int get_pcie_bar(u32 *base)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000015{
Elyes HAOUAS658a9342018-02-08 14:46:22 +010016 struct device *dev;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000017 u32 pciexbar_reg;
18
19 *base = 0;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000020
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030021 dev = pcidev_on_root(0, 0);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000022 if (!dev)
23 return 0;
Stefan Reinauer109ab312009-08-12 16:08:05 +000024
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000025 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000026
27 if (!(pciexbar_reg & (1 << 0)))
28 return 0;
29
30 switch ((pciexbar_reg >> 1) & 3) {
31 case 0: // 256MB
32 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020033 return 256;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000034 case 1: // 128M
35 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020036 return 128;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000037 case 2: // 64M
38 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020039 return 64;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000040 }
41
42 return 0;
43}
44
Arthur Heymans794f56b2018-06-15 19:37:23 +020045static void mch_domain_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +000046{
Arthur Heymans17ad4592018-08-06 15:35:28 +020047 uint32_t pci_tolm, tseg_sizek, cbmem_topk, delta_cbmem;
Arthur Heymansf6d14772018-01-26 11:50:04 +010048 uint8_t tolud;
Stefan Reinauer278534d2008-10-29 04:51:07 +000049 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030050 unsigned long long tomk, tomk_stolen;
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030051 uint64_t uma_memory_base = 0, uma_memory_size = 0;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030052 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Nico Huber4e008c62019-01-12 15:28:43 +010053 struct device *const d0f0 = pcidev_on_root(0, 0);
Stefan Reinauer278534d2008-10-29 04:51:07 +000054
Arthur Heymans794f56b2018-06-15 19:37:23 +020055 pci_domain_read_resources(dev);
56
Stefan Reinauer71a3d962009-07-21 21:44:24 +000057 /* Can we find out how much memory we can use at most
58 * this way?
59 */
Myles Watson894a3472010-06-09 22:41:35 +000060 pci_tolm = find_pci_tolm(dev->link_list);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000061 printk(BIOS_DEBUG, "pci_tolm: 0x%x\n", pci_tolm);
Stefan Reinauer278534d2008-10-29 04:51:07 +000062
Nico Huber4e008c62019-01-12 15:28:43 +010063 tolud = pci_read_config8(d0f0, TOLUD);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000064 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +000065
66 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030067 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +000068
69 /* Note: subtract IGD device and TSEG */
Nico Huber4e008c62019-01-12 15:28:43 +010070 reg16 = pci_read_config16(d0f0, GGC);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030071 if (!(reg16 & 2)) {
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030072 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Arthur Heymans874a8f92016-05-19 16:06:09 +020073 int uma_size = decode_igd_memory_size((reg16 >> 4) & 7);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030074
75 printk(BIOS_DEBUG, "%dM UMA\n", uma_size >> 10);
76 tomk_stolen -= uma_size;
77
78 /* For reserving UMA memory in the memory map */
79 uma_memory_base = tomk_stolen * 1024ULL;
80 uma_memory_size = uma_size * 1024ULL;
Nico Huber4e008c62019-01-12 15:28:43 +010081
82 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
83 (unsigned int)uma_memory_base);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030084 }
85
Nico Huber4e008c62019-01-12 15:28:43 +010086 tseg_sizek = decode_tseg_size(pci_read_config8(d0f0, ESMRAMC)) >> 10;
Arthur Heymansf6d14772018-01-26 11:50:04 +010087 printk(BIOS_DEBUG, "TSEG decoded, subtracting %dM\n", tseg_sizek >> 10);
88 tomk_stolen -= tseg_sizek;
89 tseg_memory_base = tomk_stolen * 1024ULL;
90 tseg_memory_size = tseg_sizek * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +000091
Arthur Heymans17ad4592018-08-06 15:35:28 +020092 /* cbmem_top can be shifted downwards due to alignment.
93 Mark the region between cbmem_top and tomk as unusable */
94 cbmem_topk = ((uint32_t)cbmem_top() >> 10);
95 delta_cbmem = tomk_stolen - cbmem_topk;
96 tomk_stolen -= delta_cbmem;
97
Elyes HAOUAS3dff32c2020-03-30 17:16:51 +020098 printk(BIOS_DEBUG, "Unused RAM between cbmem_top and TOM: 0x%xK\n", delta_cbmem);
Arthur Heymans17ad4592018-08-06 15:35:28 +020099
100
Stefan Reinauer278534d2008-10-29 04:51:07 +0000101 /* The following needs to be 2 lines, otherwise the second
102 * number is always 0
103 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300104 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
105 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen >> 10));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000106
107 /* Report the memory regions */
108 ram_resource(dev, 3, 0, 640);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000109 ram_resource(dev, 4, 768, (tomk - 768));
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300110 uma_resource(dev, 5, uma_memory_base >> 10, uma_memory_size >> 10);
111 mmio_resource(dev, 6, tseg_memory_base >> 10, tseg_memory_size >> 10);
Arthur Heymans17ad4592018-08-06 15:35:28 +0200112 uma_resource(dev, 7, cbmem_topk, delta_cbmem);
Furquan Shaikh7cf96ae2020-05-16 23:55:02 -0700113 /* legacy VGA memory */
114 mmio_resource(dev, 8, 640, 768 - 640);
Arthur Heymans794f56b2018-06-15 19:37:23 +0200115}
116
117static void mch_domain_set_resources(struct device *dev)
118{
119 struct resource *res;
120
121 for (res = dev->resource_list; res; res = res->next)
122 report_resource_stored(dev, res, "");
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300123
Myles Watson894a3472010-06-09 22:41:35 +0000124 assign_resources(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000125}
126
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100127static const char *northbridge_acpi_name(const struct device *dev)
128{
129 if (dev->path.type == DEVICE_PATH_DOMAIN)
130 return "PCI0";
131
132 if (dev->path.type != DEVICE_PATH_PCI || dev->bus->secondary != 0)
133 return NULL;
134
135 switch (dev->path.pci.devfn) {
136 case PCI_DEVFN(0, 0):
137 return "MCHC";
138 }
139
140 return NULL;
141}
142
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200143void northbridge_write_smram(u8 smram)
144{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300145 struct device *dev = pcidev_on_root(0, 0);
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200146
147 if (dev == NULL)
148 die("could not find pci 00:00.0!\n");
149
150 pci_write_config8(dev, SMRAM, smram);
151}
152
Stefan Reinauer278534d2008-10-29 04:51:07 +0000153 /* TODO We could determine how many PCIe busses we need in
154 * the bar. For now that number is hardcoded to a max of 64.
155 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000156static struct device_operations pci_domain_ops = {
Arthur Heymans794f56b2018-06-15 19:37:23 +0200157 .read_resources = mch_domain_read_resources,
158 .set_resources = mch_domain_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000159 .scan_bus = pci_domain_scan_bus,
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100160 .acpi_name = northbridge_acpi_name,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000161};
162
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100163static void mc_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000164{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200165 u32 pcie_config_base;
166 int buses;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000167
168 pci_dev_read_resources(dev);
169
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200170 buses = get_pcie_bar(&pcie_config_base);
171 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200172 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200173 mmconf_resource_init(resource, pcie_config_base, buses);
174 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000175}
176
Stefan Reinauer278534d2008-10-29 04:51:07 +0000177static struct device_operations mc_ops = {
178 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200179 .set_resources = pci_dev_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000180 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200181 .acpi_fill_ssdt = generate_cpu_entries,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200182 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000183};
184
Nico Huber04be6b52016-10-22 20:01:34 +0200185static const unsigned short pci_device_ids[] = {
186 0x2770, /* desktop */
187 0x27a0, 0x27ac, /* mobile */
188 0 };
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100189
Stefan Reinauer278534d2008-10-29 04:51:07 +0000190static const struct pci_driver mc_driver __pci_driver = {
191 .ops = &mc_ops,
192 .vendor = PCI_VENDOR_ID_INTEL,
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100193 .devices = pci_device_ids,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000194};
195
Stefan Reinauer278534d2008-10-29 04:51:07 +0000196static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200197 .read_resources = noop_read_resources,
198 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300199 .init = mp_cpu_bus_init,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000200};
201
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100202static void enable_dev(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000203{
204 /* Set the operations if it is a special bus type */
Arthur Heymans70a8e342017-03-09 11:30:23 +0100205 if (dev->path.type == DEVICE_PATH_DOMAIN)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000206 dev->ops = &pci_domain_ops;
Arthur Heymans70a8e342017-03-09 11:30:23 +0100207 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000208 dev->ops = &cpu_bus_ops;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000209}
210
211struct chip_operations northbridge_intel_i945_ops = {
212 CHIP_NAME("Intel i945 Northbridge")
213 .enable_dev = enable_dev,
214};