blob: faa46e0d8a83f9aa2295335f3051d1d405b986dc [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
Stefan Reinauerb15975b2011-10-21 12:57:59 -07003#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Stefan Reinauerb15975b2011-10-21 12:57:59 -07005#include <device/device.h>
6#include <device/pci.h>
7#include <cpu/cpu.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +01008
Kyösti Mälkki0a0d5e82011-10-31 14:18:33 +02009#include "e7505.h"
Vladimir Serbinenkoc7310d92014-09-01 09:45:05 +020010
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030011static void mch_domain_read_resources(struct device *dev)
Stefan Reinauerb15975b2011-10-21 12:57:59 -070012{
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030013 int idx;
14 unsigned long tomk, tolmk;
15 unsigned long remapbasek, remaplimitk;
16 const unsigned long basek_4G = 4 * (GiB / KiB);
Elyes HAOUAS97e8b752018-05-09 17:39:47 +020017 struct device *mc_dev;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070018
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030019 pci_domain_read_resources(dev);
20
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030021 mc_dev = pcidev_on_root(0, 0);
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030022 if (!mc_dev)
23 die("Could not find MCH device\n");
Stefan Reinauerb15975b2011-10-21 12:57:59 -070024
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030025 tolmk = pci_read_config16(mc_dev, TOLM) >> 11;
26 tolmk <<= 17;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070027
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030028 tomk = pci_read_config8(mc_dev, DRB_ROW_7);
29 tomk <<= 16;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070030
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030031 /* Remapped region with a 64 MiB granularity in register
32 definition. Limit is inclusive, so add one. */
33 remapbasek = pci_read_config16(mc_dev, REMAPBASE) & 0x3ff;
34 remapbasek <<= 16;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070035
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030036 remaplimitk = pci_read_config16(mc_dev, REMAPLIMIT) & 0x3ff;
37 remaplimitk += 1;
38 remaplimitk <<= 16;
Stefan Reinauerb15975b2011-10-21 12:57:59 -070039
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030040 /* Report the memory regions */
41 idx = 10;
Kyösti Mälkki27d62992022-05-24 20:25:58 +030042 ram_resource_kb(dev, idx++, 0, tolmk);
43 mmio_resource_kb(dev, idx++, 0xa0000 / KiB, (0xc0000 - 0xa0000) / KiB);
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030044
45 if (tomk > basek_4G)
Kyösti Mälkki27d62992022-05-24 20:25:58 +030046 ram_resource_kb(dev, idx++, basek_4G, tomk - basek_4G);
Kyösti Mälkki717b6e32018-05-17 14:16:03 +030047
48 if (remaplimitk > remapbasek)
Kyösti Mälkki27d62992022-05-24 20:25:58 +030049 ram_resource_kb(dev, idx++, remapbasek, remaplimitk - remapbasek);
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030050}
51
52static void mch_domain_set_resources(struct device *dev)
53{
Stefan Reinauerb15975b2011-10-21 12:57:59 -070054 assign_resources(dev->link_list);
55}
56
57static struct device_operations pci_domain_ops = {
Kyösti Mälkki9e69c872018-06-02 15:35:27 +030058 .read_resources = mch_domain_read_resources,
59 .set_resources = mch_domain_set_resources,
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020060 .scan_bus = pci_domain_scan_bus,
Angel Pons1fc0edd2020-05-31 00:03:28 +020061 .ops_pci = &pci_dev_ops_pci,
Stefan Reinauerb15975b2011-10-21 12:57:59 -070062};
63
Elyes HAOUAS97e8b752018-05-09 17:39:47 +020064static void cpu_bus_init(struct device *dev)
Stefan Reinauerb15975b2011-10-21 12:57:59 -070065{
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020066 initialize_cpus(dev->link_list);
Stefan Reinauerb15975b2011-10-21 12:57:59 -070067}
68
Stefan Reinauerb15975b2011-10-21 12:57:59 -070069static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020070 .read_resources = noop_read_resources,
71 .set_resources = noop_set_resources,
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020072 .init = cpu_bus_init,
Stefan Reinauerb15975b2011-10-21 12:57:59 -070073};
74
75static void enable_dev(struct device *dev)
76{
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +020077 /* Set the operations if it is a special bus type */
78 if (dev->path.type == DEVICE_PATH_DOMAIN) {
79 dev->ops = &pci_domain_ops;
80 }
81 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
82 dev->ops = &cpu_bus_ops;
83 }
Stefan Reinauerb15975b2011-10-21 12:57:59 -070084}
85
Kyösti Mälkki0a0d5e82011-10-31 14:18:33 +020086struct chip_operations northbridge_intel_e7505_ops = {
87 CHIP_NAME("Intel E7505 Northbridge")
Stefan Reinauerb15975b2011-10-21 12:57:59 -070088 .enable_dev = enable_dev,
89};