blob: c03adbffc6790b3a25cfeb9a6ee9a7f91799e551 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Martin Roth5474eb12018-05-26 19:22:33 -06002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi.h>
Stefan Reinauerb15975b2011-10-21 12:57:59 -07004#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Stefan Reinauerb15975b2011-10-21 12:57:59 -07006#include <device/device.h>
7#include <device/pci.h>
8#include <cpu/cpu.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +01009
Kyösti Mälkki0a0d5e82011-10-31 14:18:33 +020010#include "e7505.h"
Vladimir Serbinenkoc7310d92014-09-01 09:45:05 +020011
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030012static void mch_domain_read_resources(struct device *dev)
Stefan Reinauerb15975b2011-10-21 12:57:59 -070013{
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030014 int idx;
15 unsigned long tomk, tolmk;
16 unsigned long remapbasek, remaplimitk;
17 const unsigned long basek_4G = 4 * (GiB / KiB);
Elyes HAOUAS97e8b752018-05-09 17:39:47 +020018 struct device *mc_dev;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070019
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030020 pci_domain_read_resources(dev);
21
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030022 mc_dev = pcidev_on_root(0, 0);
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030023 if (!mc_dev)
24 die("Could not find MCH device\n");
Stefan Reinauerb15975b2011-10-21 12:57:59 -070025
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030026 tolmk = pci_read_config16(mc_dev, TOLM) >> 11;
27 tolmk <<= 17;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070028
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030029 tomk = pci_read_config8(mc_dev, DRB_ROW_7);
30 tomk <<= 16;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070031
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030032 /* Remapped region with a 64 MiB granularity in register
33 definition. Limit is inclusive, so add one. */
34 remapbasek = pci_read_config16(mc_dev, REMAPBASE) & 0x3ff;
35 remapbasek <<= 16;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070036
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030037 remaplimitk = pci_read_config16(mc_dev, REMAPLIMIT) & 0x3ff;
38 remaplimitk += 1;
39 remaplimitk <<= 16;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070040
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030041 /* Report the memory regions */
42 idx = 10;
Kyösti Mälkkibd909ad2021-05-01 16:12:09 +030043 ram_resource(dev, idx++, 0, tolmk);
44 mmio_resource(dev, idx++, 0xa0000 / KiB, (0xc0000 - 0xa0000) / KiB);
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030045
46 if (tomk > basek_4G)
47 ram_resource(dev, idx++, basek_4G, tomk - basek_4G);
48
49 if (remaplimitk > remapbasek)
50 ram_resource(dev, idx++, remapbasek, remaplimitk - remapbasek);
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030051}
52
53static void mch_domain_set_resources(struct device *dev)
54{
Stefan Reinauerb15975b2011-10-21 12:57:59 -070055 assign_resources(dev->link_list);
56}
57
58static struct device_operations pci_domain_ops = {
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030059 .read_resources = mch_domain_read_resources,
60 .set_resources = mch_domain_set_resources,
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020061 .scan_bus = pci_domain_scan_bus,
Angel Pons1fc0edd2020-05-31 00:03:28 +020062 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauerb15975b2011-10-21 12:57:59 -070063};
64
Elyes HAOUAS97e8b752018-05-09 17:39:47 +020065static void cpu_bus_init(struct device *dev)
Stefan Reinauerb15975b2011-10-21 12:57:59 -070066{
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020067 initialize_cpus(dev->link_list);
Stefan Reinauerb15975b2011-10-21 12:57:59 -070068}
69
Stefan Reinauerb15975b2011-10-21 12:57:59 -070070static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020071 .read_resources = noop_read_resources,
72 .set_resources = noop_set_resources,
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020073 .init = cpu_bus_init,
Stefan Reinauerb15975b2011-10-21 12:57:59 -070074};
75
76static void enable_dev(struct device *dev)
77{
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020078 /* Set the operations if it is a special bus type */
79 if (dev->path.type == DEVICE_PATH_DOMAIN) {
80 dev->ops = &pci_domain_ops;
81 }
82 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
83 dev->ops = &cpu_bus_ops;
84 }
Stefan Reinauerb15975b2011-10-21 12:57:59 -070085}
86
Kyösti Mälkki0a0d5e82011-10-31 14:18:33 +020087struct chip_operations northbridge_intel_e7505_ops = {
88 CHIP_NAME("Intel E7505 Northbridge")
Stefan Reinauerb15975b2011-10-21 12:57:59 -070089 .enable_dev = enable_dev,
90};