blob: 17b790740efd5ad2d7b45c6df633b4e2ad5f8b3a [file] [log] [blame]
Stefan Reinauer278534d2008-10-29 04:51:07 +00001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauer278534d2008-10-29 04:51:07 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Stefan Reinauer278534d2008-10-29 04:51:07 +000013 */
14
Arthur Heymans17ad4592018-08-06 15:35:28 +020015#include <cbmem.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000016#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020017#include <device/pci_ops.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000018#include <stdint.h>
19#include <device/device.h>
20#include <device/pci.h>
21#include <device/pci_ids.h>
Stefan Reinauerab872542011-10-14 15:18:29 -070022#include <arch/acpi.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030023#include <cpu/intel/smm_reloc.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000024#include "i945.h"
25
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020026static int get_pcie_bar(u32 *base)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000027{
Elyes HAOUAS658a9342018-02-08 14:46:22 +010028 struct device *dev;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000029 u32 pciexbar_reg;
30
31 *base = 0;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000032
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030033 dev = pcidev_on_root(0, 0);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000034 if (!dev)
35 return 0;
Stefan Reinauer109ab312009-08-12 16:08:05 +000036
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000037 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000038
39 if (!(pciexbar_reg & (1 << 0)))
40 return 0;
41
42 switch ((pciexbar_reg >> 1) & 3) {
43 case 0: // 256MB
44 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020045 return 256;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000046 case 1: // 128M
47 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020048 return 128;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000049 case 2: // 64M
50 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020051 return 64;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000052 }
53
54 return 0;
55}
56
Arthur Heymans794f56b2018-06-15 19:37:23 +020057static void mch_domain_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +000058{
Arthur Heymans17ad4592018-08-06 15:35:28 +020059 uint32_t pci_tolm, tseg_sizek, cbmem_topk, delta_cbmem;
Arthur Heymansf6d14772018-01-26 11:50:04 +010060 uint8_t tolud;
Stefan Reinauer278534d2008-10-29 04:51:07 +000061 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030062 unsigned long long tomk, tomk_stolen;
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030063 uint64_t uma_memory_base = 0, uma_memory_size = 0;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030064 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Nico Huber4e008c62019-01-12 15:28:43 +010065 struct device *const d0f0 = pcidev_on_root(0, 0);
Stefan Reinauer278534d2008-10-29 04:51:07 +000066
Arthur Heymans794f56b2018-06-15 19:37:23 +020067 pci_domain_read_resources(dev);
68
Stefan Reinauer71a3d962009-07-21 21:44:24 +000069 /* Can we find out how much memory we can use at most
70 * this way?
71 */
Myles Watson894a3472010-06-09 22:41:35 +000072 pci_tolm = find_pci_tolm(dev->link_list);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000073 printk(BIOS_DEBUG, "pci_tolm: 0x%x\n", pci_tolm);
Stefan Reinauer278534d2008-10-29 04:51:07 +000074
Nico Huber4e008c62019-01-12 15:28:43 +010075 tolud = pci_read_config8(d0f0, TOLUD);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000076 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +000077
78 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030079 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +000080
81 /* Note: subtract IGD device and TSEG */
Nico Huber4e008c62019-01-12 15:28:43 +010082 reg16 = pci_read_config16(d0f0, GGC);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030083 if (!(reg16 & 2)) {
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030084 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Arthur Heymans874a8f92016-05-19 16:06:09 +020085 int uma_size = decode_igd_memory_size((reg16 >> 4) & 7);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030086
87 printk(BIOS_DEBUG, "%dM UMA\n", uma_size >> 10);
88 tomk_stolen -= uma_size;
89
90 /* For reserving UMA memory in the memory map */
91 uma_memory_base = tomk_stolen * 1024ULL;
92 uma_memory_size = uma_size * 1024ULL;
Nico Huber4e008c62019-01-12 15:28:43 +010093
94 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
95 (unsigned int)uma_memory_base);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030096 }
97
Nico Huber4e008c62019-01-12 15:28:43 +010098 tseg_sizek = decode_tseg_size(pci_read_config8(d0f0, ESMRAMC)) >> 10;
Arthur Heymansf6d14772018-01-26 11:50:04 +010099 printk(BIOS_DEBUG, "TSEG decoded, subtracting %dM\n", tseg_sizek >> 10);
100 tomk_stolen -= tseg_sizek;
101 tseg_memory_base = tomk_stolen * 1024ULL;
102 tseg_memory_size = tseg_sizek * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000103
Arthur Heymans17ad4592018-08-06 15:35:28 +0200104 /* cbmem_top can be shifted downwards due to alignment.
105 Mark the region between cbmem_top and tomk as unusable */
106 cbmem_topk = ((uint32_t)cbmem_top() >> 10);
107 delta_cbmem = tomk_stolen - cbmem_topk;
108 tomk_stolen -= delta_cbmem;
109
110 printk(BIOS_DEBUG, "Unused RAM between cbmem_top and TOM: 0x%xK\n",
111 delta_cbmem);
112
113
Stefan Reinauer278534d2008-10-29 04:51:07 +0000114 /* The following needs to be 2 lines, otherwise the second
115 * number is always 0
116 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300117 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
118 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen >> 10));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000119
120 /* Report the memory regions */
121 ram_resource(dev, 3, 0, 640);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000122 ram_resource(dev, 4, 768, (tomk - 768));
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300123 uma_resource(dev, 5, uma_memory_base >> 10, uma_memory_size >> 10);
124 mmio_resource(dev, 6, tseg_memory_base >> 10, tseg_memory_size >> 10);
Arthur Heymans17ad4592018-08-06 15:35:28 +0200125 uma_resource(dev, 7, cbmem_topk, delta_cbmem);
Arthur Heymans794f56b2018-06-15 19:37:23 +0200126}
127
128static void mch_domain_set_resources(struct device *dev)
129{
130 struct resource *res;
131
132 for (res = dev->resource_list; res; res = res->next)
133 report_resource_stored(dev, res, "");
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300134
Myles Watson894a3472010-06-09 22:41:35 +0000135 assign_resources(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000136}
137
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100138static const char *northbridge_acpi_name(const struct device *dev)
139{
140 if (dev->path.type == DEVICE_PATH_DOMAIN)
141 return "PCI0";
142
143 if (dev->path.type != DEVICE_PATH_PCI || dev->bus->secondary != 0)
144 return NULL;
145
146 switch (dev->path.pci.devfn) {
147 case PCI_DEVFN(0, 0):
148 return "MCHC";
149 }
150
151 return NULL;
152}
153
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200154void northbridge_write_smram(u8 smram)
155{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300156 struct device *dev = pcidev_on_root(0, 0);
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200157
158 if (dev == NULL)
159 die("could not find pci 00:00.0!\n");
160
161 pci_write_config8(dev, SMRAM, smram);
162}
163
Stefan Reinauer278534d2008-10-29 04:51:07 +0000164 /* TODO We could determine how many PCIe busses we need in
165 * the bar. For now that number is hardcoded to a max of 64.
166 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000167static struct device_operations pci_domain_ops = {
Arthur Heymans794f56b2018-06-15 19:37:23 +0200168 .read_resources = mch_domain_read_resources,
169 .set_resources = mch_domain_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000170 .scan_bus = pci_domain_scan_bus,
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100171 .acpi_name = northbridge_acpi_name,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000172};
173
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100174static void mc_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000175{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200176 u32 pcie_config_base;
177 int buses;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000178
179 pci_dev_read_resources(dev);
180
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200181 buses = get_pcie_bar(&pcie_config_base);
182 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200183 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200184 mmconf_resource_init(resource, pcie_config_base, buses);
185 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000186}
187
Stefan Reinauer278534d2008-10-29 04:51:07 +0000188static struct pci_operations intel_pci_ops = {
Subrata Banik4a0f0712019-03-20 14:29:47 +0530189 .set_subsystem = pci_dev_set_subsystem,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000190};
191
192static struct device_operations mc_ops = {
193 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200194 .set_resources = pci_dev_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000195 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200196 .acpi_fill_ssdt = generate_cpu_entries,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000197 .ops_pci = &intel_pci_ops,
198};
199
Nico Huber04be6b52016-10-22 20:01:34 +0200200static const unsigned short pci_device_ids[] = {
201 0x2770, /* desktop */
202 0x27a0, 0x27ac, /* mobile */
203 0 };
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100204
Stefan Reinauer278534d2008-10-29 04:51:07 +0000205static const struct pci_driver mc_driver __pci_driver = {
206 .ops = &mc_ops,
207 .vendor = PCI_VENDOR_ID_INTEL,
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100208 .devices = pci_device_ids,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000209};
210
Stefan Reinauer278534d2008-10-29 04:51:07 +0000211static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100212 .read_resources = DEVICE_NOOP,
213 .set_resources = DEVICE_NOOP,
214 .enable_resources = DEVICE_NOOP,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300215 .init = mp_cpu_bus_init,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000216};
217
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100218static void enable_dev(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000219{
220 /* Set the operations if it is a special bus type */
Arthur Heymans70a8e342017-03-09 11:30:23 +0100221 if (dev->path.type == DEVICE_PATH_DOMAIN)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000222 dev->ops = &pci_domain_ops;
Arthur Heymans70a8e342017-03-09 11:30:23 +0100223 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000224 dev->ops = &cpu_bus_ops;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000225}
226
227struct chip_operations northbridge_intel_i945_ops = {
228 CHIP_NAME("Intel i945 Northbridge")
229 .enable_dev = enable_dev,
230};