blob: 57f4388506332347799f1559371bf91779ab5aef [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
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>
Stefan Reinauer278534d2008-10-29 04:51:07 +000022#include <stdlib.h>
23#include <string.h>
Stefan Reinauerfd611f92013-02-27 23:45:20 +010024#include <cbmem.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>
Stefan Reinauer278534d2008-10-29 04:51:07 +000027#include "i945.h"
28
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020029static int get_pcie_bar(u32 *base)
Stefan Reinauer71a3d962009-07-21 21:44:24 +000030{
31 device_t dev;
32 u32 pciexbar_reg;
33
34 *base = 0;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000035
36 dev = dev_find_slot(0, PCI_DEVFN(0, 0));
37 if (!dev)
38 return 0;
Stefan Reinauer109ab312009-08-12 16:08:05 +000039
Stefan Reinaueraca6ec62009-10-26 17:12:21 +000040 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
Stefan Reinauer71a3d962009-07-21 21:44:24 +000041
42 if (!(pciexbar_reg & (1 << 0)))
43 return 0;
44
45 switch ((pciexbar_reg >> 1) & 3) {
46 case 0: // 256MB
47 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020048 return 256;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000049 case 1: // 128M
50 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020051 return 128;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000052 case 2: // 64M
53 *base = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +020054 return 64;
Stefan Reinauer71a3d962009-07-21 21:44:24 +000055 }
56
57 return 0;
58}
59
Stefan Reinauer278534d2008-10-29 04:51:07 +000060static void pci_domain_set_resources(device_t dev)
61{
62 uint32_t pci_tolm;
63 uint8_t tolud, reg8;
64 uint16_t reg16;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030065 unsigned long long tomk, tomk_stolen;
Kyösti Mälkkif7bfc342013-10-18 11:02:46 +030066 uint64_t uma_memory_base = 0, uma_memory_size = 0;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030067 uint64_t tseg_memory_base = 0, tseg_memory_size = 0;
Stefan Reinauer278534d2008-10-29 04:51:07 +000068
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
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000075 printk(BIOS_SPEW, "Base of stolen memory: 0x%08x\n",
Paul Menzel355ce382014-05-30 13:58:59 +020076 pci_read_config32(dev_find_slot(0, PCI_DEVFN(2, 0)), BSM));
Stefan Reinauer278534d2008-10-29 04:51:07 +000077
Paul Menzel66f10b12014-05-25 13:50:14 +020078 tolud = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), TOLUD);
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000079 printk(BIOS_SPEW, "Top of Low Used DRAM: 0x%08x\n", tolud << 24);
Stefan Reinauer278534d2008-10-29 04:51:07 +000080
81 tomk = tolud << 14;
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +030082 tomk_stolen = tomk;
Stefan Reinauer278534d2008-10-29 04:51:07 +000083
84 /* Note: subtract IGD device and TSEG */
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030085 reg16 = pci_read_config16(dev_find_slot(0, PCI_DEVFN(0, 0)), GGC);
86 if (!(reg16 & 2)) {
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030087 printk(BIOS_DEBUG, "IGD decoded, subtracting ");
Arthur Heymans874a8f92016-05-19 16:06:09 +020088 int uma_size = decode_igd_memory_size((reg16 >> 4) & 7);
Kyösti Mälkki15935eb2014-05-31 16:07:14 +030089
90 printk(BIOS_DEBUG, "%dM UMA\n", uma_size >> 10);
91 tomk_stolen -= uma_size;
92
93 /* For reserving UMA memory in the memory map */
94 uma_memory_base = tomk_stolen * 1024ULL;
95 uma_memory_size = uma_size * 1024ULL;
96 }
97
Stefan Reinauer278534d2008-10-29 04:51:07 +000098 reg8 = pci_read_config8(dev_find_slot(0, PCI_DEVFN(0, 0)), 0x9e);
99 if (reg8 & 1) {
100 int tseg_size = 0;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000101 printk(BIOS_DEBUG, "TSEG decoded, subtracting ");
Stefan Reinauer278534d2008-10-29 04:51:07 +0000102 reg8 >>= 1;
103 reg8 &= 3;
104 switch (reg8) {
105 case 0:
106 tseg_size = 1024;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000107 break; /* TSEG = 1M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000108 case 1:
109 tseg_size = 2048;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000110 break; /* TSEG = 2M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000111 case 2:
112 tseg_size = 8192;
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000113 break; /* TSEG = 8M */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000114 }
115
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +0000116 printk(BIOS_DEBUG, "%dM\n", tseg_size >> 10);
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300117 tomk_stolen -= tseg_size;
118
119 /* For reserving TSEG memory in the memory map */
120 tseg_memory_base = tomk_stolen * 1024ULL;
121 tseg_memory_size = tseg_size * 1024ULL;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000122 }
123
Stefan Reinauer278534d2008-10-29 04:51:07 +0000124 /* The following needs to be 2 lines, otherwise the second
125 * number is always 0
126 */
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300127 printk(BIOS_INFO, "Available memory: %dK", (uint32_t)tomk_stolen);
128 printk(BIOS_INFO, " (%dM)\n", (uint32_t)(tomk_stolen >> 10));
Stefan Reinauer278534d2008-10-29 04:51:07 +0000129
130 /* Report the memory regions */
131 ram_resource(dev, 3, 0, 640);
Stefan Reinauer3c7f46b2009-02-27 23:09:55 +0000132 ram_resource(dev, 4, 768, (tomk - 768));
Kyösti Mälkki6ff1d362012-07-27 08:42:20 +0300133 uma_resource(dev, 5, uma_memory_base >> 10, uma_memory_size >> 10);
134 mmio_resource(dev, 6, tseg_memory_base >> 10, tseg_memory_size >> 10);
135
Myles Watson894a3472010-06-09 22:41:35 +0000136 assign_resources(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000137}
138
Stefan Reinauer278534d2008-10-29 04:51:07 +0000139 /* TODO We could determine how many PCIe busses we need in
140 * the bar. For now that number is hardcoded to a max of 64.
Myles Watson29cc9ed2009-07-02 18:56:24 +0000141 * See e7525/northbridge.c for an example.
Stefan Reinauer278534d2008-10-29 04:51:07 +0000142 */
Stefan Reinauer278534d2008-10-29 04:51:07 +0000143static struct device_operations pci_domain_ops = {
144 .read_resources = pci_domain_read_resources,
145 .set_resources = pci_domain_set_resources,
Myles Watson7eac4452010-06-17 16:16:56 +0000146 .enable_resources = NULL,
147 .init = NULL,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000148 .scan_bus = pci_domain_scan_bus,
Kyösti Mälkki872c9222013-07-03 09:44:28 +0300149 .ops_pci_bus = pci_bus_default_ops,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000150};
151
152static void mc_read_resources(device_t dev)
153{
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200154 u32 pcie_config_base;
155 int buses;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000156
157 pci_dev_read_resources(dev);
158
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200159 buses = get_pcie_bar(&pcie_config_base);
160 if (buses) {
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200161 struct resource *resource = new_resource(dev, PCIEXBAR);
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200162 mmconf_resource_init(resource, pcie_config_base, buses);
163 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000164}
165
Arthur Heymans70a8e342017-03-09 11:30:23 +0100166static void intel_set_subsystem(device_t dev, unsigned int vendor,
167 unsigned int device)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000168{
Stefan Reinauer30140a52009-03-11 16:20:39 +0000169 if (!vendor || !device) {
170 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
171 pci_read_config32(dev, PCI_VENDOR_ID));
172 } else {
173 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
174 ((device & 0xffff) << 16) | (vendor & 0xffff));
175 }
Stefan Reinauer278534d2008-10-29 04:51:07 +0000176}
177
178static struct pci_operations intel_pci_ops = {
179 .set_subsystem = intel_set_subsystem,
180};
181
182static struct device_operations mc_ops = {
183 .read_resources = mc_read_resources,
Kyösti Mälkki27198ac2016-12-02 14:38:13 +0200184 .set_resources = pci_dev_set_resources,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000185 .enable_resources = pci_dev_enable_resources,
Vladimir Serbinenko0e646172014-08-31 00:27:05 +0200186 .acpi_fill_ssdt_generator = generate_cpu_entries,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000187 .scan_bus = 0,
188 .ops_pci = &intel_pci_ops,
189};
190
Nico Huber04be6b52016-10-22 20:01:34 +0200191static const unsigned short pci_device_ids[] = {
192 0x2770, /* desktop */
193 0x27a0, 0x27ac, /* mobile */
194 0 };
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100195
Stefan Reinauer278534d2008-10-29 04:51:07 +0000196static const struct pci_driver mc_driver __pci_driver = {
197 .ops = &mc_ops,
198 .vendor = PCI_VENDOR_ID_INTEL,
Vladimir Serbinenkob67eaee2014-11-16 23:08:05 +0100199 .devices = pci_device_ids,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000200};
201
202static void cpu_bus_init(device_t dev)
203{
Myles Watson894a3472010-06-09 22:41:35 +0000204 initialize_cpus(dev->link_list);
Stefan Reinauer278534d2008-10-29 04:51:07 +0000205}
206
Stefan Reinauer278534d2008-10-29 04:51:07 +0000207static struct device_operations cpu_bus_ops = {
Edward O'Callaghan9f744622014-10-31 08:12:34 +1100208 .read_resources = DEVICE_NOOP,
209 .set_resources = DEVICE_NOOP,
210 .enable_resources = DEVICE_NOOP,
Stefan Reinauer278534d2008-10-29 04:51:07 +0000211 .init = cpu_bus_init,
212 .scan_bus = 0,
213};
214
215static void enable_dev(device_t dev)
216{
217 /* Set the operations if it is a special bus type */
Arthur Heymans70a8e342017-03-09 11:30:23 +0100218 if (dev->path.type == DEVICE_PATH_DOMAIN)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000219 dev->ops = &pci_domain_ops;
Arthur Heymans70a8e342017-03-09 11:30:23 +0100220 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Stefan Reinauer278534d2008-10-29 04:51:07 +0000221 dev->ops = &cpu_bus_ops;
Stefan Reinauer278534d2008-10-29 04:51:07 +0000222}
223
224struct chip_operations northbridge_intel_i945_ops = {
225 CHIP_NAME("Intel i945 Northbridge")
226 .enable_dev = enable_dev,
227};