blob: 00276562d822cd1277e89cac6f9cbca4ea637694 [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>
Angel Ponscff4d162020-08-03 16:11:53 +02004#include <commonlib/helpers.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +00005#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +00007#include <stdint.h>
8#include <device/device.h>
9#include <device/pci.h>
10#include <device/pci_ids.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070011#include <acpi/acpi.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030012#include <cpu/intel/smm_reloc.h>
Arthur Heymans98c92572022-11-07 11:39:58 +010013#include <cpu/intel/speedstep.h>
Stefan Reinauer278534d2008-10-29 04:51:07 +000014#include "i945.h"
15
Arthur Heymans794f56b2018-06-15 19:37:23 +020016static void mch_domain_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +000017{
Arthur Heymans17ad4592018-08-06 15:35:28 +020018 uint32_t pci_tolm, tseg_sizek, cbmem_topk, delta_cbmem;
Arthur Heymansf6d14772018-01-26 11:50:04 +010019 uint8_t tolud;
Stefan Reinauer278534d2008-10-29 04:51:07 +000020 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030021 unsigned long long tomk, tomk_stolen;
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030022 uint64_t uma_memory_base = 0, uma_memory_size = 0;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030023 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Nico Huber4e008c62019-01-12 15:28:43 +010024 struct device *const d0f0 = pcidev_on_root(0, 0);
Kyösti Mälkkic1d4d0b2021-06-26 19:09:05 +030025 int idx = 3;
Stefan Reinauer278534d2008-10-29 04:51:07 +000026
Arthur Heymans794f56b2018-06-15 19:37:23 +020027 pci_domain_read_resources(dev);
28
Stefan Reinauer71a3d962009-07-21 21:44:24 +000029 /* Can we find out how much memory we can use at most
30 * this way?
31 */
Myles Watson894a3472010-06-09 22:41:35 +000032 pci_tolm = find_pci_tolm(dev->link_list);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000033 printk(BIOS_DEBUG, "pci_tolm: 0x%x\n", pci_tolm);
Stefan Reinauer278534d2008-10-29 04:51:07 +000034
Nico Huber4e008c62019-01-12 15:28:43 +010035 tolud = pci_read_config8(d0f0, TOLUD);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000036 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +000037
38 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030039 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +000040
41 /* Note: subtract IGD device and TSEG */
Nico Huber4e008c62019-01-12 15:28:43 +010042 reg16 = pci_read_config16(d0f0, GGC);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030043 if (!(reg16 & 2)) {
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030044 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Arthur Heymans874a8f92016-05-19 16:06:09 +020045 int uma_size = decode_igd_memory_size((reg16 >> 4) & 7);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030046
Arthur Heymansa6e4afc2021-01-18 00:36:54 +010047 printk(BIOS_DEBUG, "%dM UMA\n", uma_size / KiB);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030048 tomk_stolen -= uma_size;
49
50 /* For reserving UMA memory in the memory map */
51 uma_memory_base = tomk_stolen * 1024ULL;
52 uma_memory_size = uma_size * 1024ULL;
Nico Huber4e008c62019-01-12 15:28:43 +010053
54 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
55 (unsigned int)uma_memory_base);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030056 }
57
Arthur Heymansa6e4afc2021-01-18 00:36:54 +010058 tseg_sizek = decode_tseg_size(pci_read_config8(d0f0, ESMRAMC)) / KiB;
59 printk(BIOS_DEBUG, "TSEG decoded, subtracting %dM\n", tseg_sizek / KiB);
Arthur Heymansf6d14772018-01-26 11:50:04 +010060 tomk_stolen -= tseg_sizek;
61 tseg_memory_base = tomk_stolen * 1024ULL;
62 tseg_memory_size = tseg_sizek * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +000063
Arthur Heymans17ad4592018-08-06 15:35:28 +020064 /* cbmem_top can be shifted downwards due to alignment.
65 Mark the region between cbmem_top and tomk as unusable */
Elyes HAOUAS964055d2022-01-14 18:56:49 +010066 cbmem_topk = ((uintptr_t)cbmem_top() / KiB);
Arthur Heymans17ad4592018-08-06 15:35:28 +020067 delta_cbmem = tomk_stolen - cbmem_topk;
68 tomk_stolen -= delta_cbmem;
69
Elyes HAOUAS3dff32c2020-03-30 17:16:51 +020070 printk(BIOS_DEBUG, "Unused RAM between cbmem_top and TOM: 0x%xK\n", delta_cbmem);
Arthur Heymans17ad4592018-08-06 15:35:28 +020071
Stefan Reinauer278534d2008-10-29 04:51:07 +000072 /* The following needs to be 2 lines, otherwise the second
73 * number is always 0
74 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030075 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
Arthur Heymansa6e4afc2021-01-18 00:36:54 +010076 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen / KiB));
Stefan Reinauer278534d2008-10-29 04:51:07 +000077
78 /* Report the memory regions */
Kyösti Mälkki27d62992022-05-24 20:25:58 +030079 ram_resource_kb(dev, idx++, 0, 0xa0000 / KiB);
80 ram_resource_kb(dev, idx++, 1 * MiB / KiB, (tomk - 1 * MiB / KiB));
81 uma_resource_kb(dev, idx++, uma_memory_base / KiB, uma_memory_size / KiB);
82 mmio_resource_kb(dev, idx++, tseg_memory_base / KiB, tseg_memory_size / KiB);
83 uma_resource_kb(dev, idx++, cbmem_topk, delta_cbmem);
Furquan Shaikh7cf96ae2020-05-16 23:55:02 -070084 /* legacy VGA memory */
Kyösti Mälkki27d62992022-05-24 20:25:58 +030085 mmio_resource_kb(dev, idx++, 0xa0000 / KiB, (0xc0000 - 0xa0000) / KiB);
Arthur Heymans15ef9b62021-01-18 00:48:27 +010086 /* RAM to be used for option roms and BIOS */
Kyösti Mälkki27d62992022-05-24 20:25:58 +030087 reserved_ram_resource_kb(dev, idx++, 0xc0000 / KiB, (1 * MiB - 0xc0000) / KiB);
Arthur Heymans794f56b2018-06-15 19:37:23 +020088}
89
90static void mch_domain_set_resources(struct device *dev)
91{
92 struct resource *res;
93
94 for (res = dev->resource_list; res; res = res->next)
95 report_resource_stored(dev, res, "");
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030096
Myles Watson894a3472010-06-09 22:41:35 +000097 assign_resources(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +000098}
99
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100100static const char *northbridge_acpi_name(const struct device *dev)
101{
102 if (dev->path.type == DEVICE_PATH_DOMAIN)
103 return "PCI0";
104
Fabio Aiuto61ed4ef2022-09-30 14:55:53 +0200105 if (!is_pci_dev_on_bus(dev, 0))
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100106 return NULL;
107
108 switch (dev->path.pci.devfn) {
109 case PCI_DEVFN(0, 0):
110 return "MCHC";
111 }
112
113 return NULL;
114}
115
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200116void northbridge_write_smram(u8 smram)
117{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +0300118 struct device *dev = pcidev_on_root(0, 0);
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200119
Elyes Haouas5e6b0f02022-09-13 09:55:49 +0200120 if (!dev)
Arthur Heymanscf3076e2018-04-10 12:57:42 +0200121 die("could not find pci 00:00.0!\n");
122
123 pci_write_config8(dev, SMRAM, smram);
124}
125
Arthur Heymans22d6ee82022-11-07 10:03:40 +0100126struct device_operations i945_pci_domain_ops = {
Arthur Heymans794f56b2018-06-15 19:37:23 +0200127 .read_resources = mch_domain_read_resources,
128 .set_resources = mch_domain_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000129 .scan_bus = pci_domain_scan_bus,
Arthur Heymansa8a9f342017-12-24 08:11:13 +0100130 .acpi_name = northbridge_acpi_name,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000131};
132
Elyes HAOUAS658a9342018-02-08 14:46:22 +0100133static void mc_read_resources(struct device *dev)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000134{
Stefan Reinauer278534d2008-10-29 04:51:07 +0000135 pci_dev_read_resources(dev);
136
Angel Ponsa6b09222021-01-20 13:00:02 +0100137 mmconf_resource(dev, PCIEXBAR);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000138}
139
Stefan Reinauer278534d2008-10-29 04:51:07 +0000140static struct device_operations mc_ops = {
141 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200142 .set_resources = pci_dev_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000143 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200144 .acpi_fill_ssdt = generate_cpu_entries,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200145 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000146};
147
Nico Huber04be6b52016-10-22 20:01:34 +0200148static const unsigned short pci_device_ids[] = {
149 0x2770, /* desktop */
150 0x27a0, 0x27ac, /* mobile */
151 0 };
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100152
Stefan Reinauer278534d2008-10-29 04:51:07 +0000153static const struct pci_driver mc_driver __pci_driver = {
154 .ops = &mc_ops,
Felix Singer43b7f412022-03-07 04:34:52 +0100155 .vendor = PCI_VID_INTEL,
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100156 .devices = pci_device_ids,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000157};
158
Arthur Heymans22d6ee82022-11-07 10:03:40 +0100159struct device_operations i945_cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200160 .read_resources = noop_read_resources,
161 .set_resources = noop_set_resources,
Kyösti Mälkkib3267e02019-08-13 16:44:04 +0300162 .init = mp_cpu_bus_init,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000163};
164
Stefan Reinauer278534d2008-10-29 04:51:07 +0000165struct chip_operations northbridge_intel_i945_ops = {
166 CHIP_NAME("Intel i945 Northbridge")
Stefan Reinauer278534d2008-10-29 04:51:07 +0000167};
Arthur Heymans98c92572022-11-07 11:39:58 +0100168
169bool northbridge_support_slfm(void)
170{
171 return false;
172}