summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/e7505/northbridge.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2022-11-28 12:37:17 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2022-11-30 04:05:55 +0000
commitf2b9852a8e583bf7d485541152782f2a1ba0d49e (patch)
treedcec312f9cf01b283785ce13f9730f516dffd957 /src/northbridge/intel/e7505/northbridge.c
parent8b8ada6fdb3ebab672571c581eed3a7285589d83 (diff)
downloadcoreboot-f2b9852a8e583bf7d485541152782f2a1ba0d49e.tar.gz
coreboot-f2b9852a8e583bf7d485541152782f2a1ba0d49e.tar.bz2
coreboot-f2b9852a8e583bf7d485541152782f2a1ba0d49e.zip
nb/intel/e7505: Hook up PCI domain and CPU ops to devicetree
Change-Id: I70fb470b63ddd06f1d1e34deaea296d81e24f75f Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70058 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel/e7505/northbridge.c')
-rw-r--r--src/northbridge/intel/e7505/northbridge.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/northbridge/intel/e7505/northbridge.c b/src/northbridge/intel/e7505/northbridge.c
index cc7f85d98024..a353759d3bdb 100644
--- a/src/northbridge/intel/e7505/northbridge.c
+++ b/src/northbridge/intel/e7505/northbridge.c
@@ -55,7 +55,7 @@ static void mch_domain_set_resources(struct device *dev)
assign_resources(dev->link_list);
}
-static struct device_operations pci_domain_ops = {
+struct device_operations e7505_pci_domain_ops = {
.read_resources = mch_domain_read_resources,
.set_resources = mch_domain_set_resources,
.scan_bus = pci_domain_scan_bus,
@@ -63,23 +63,12 @@ static struct device_operations pci_domain_ops = {
};
-static struct device_operations cpu_bus_ops = {
+struct device_operations e7505_cpu_bus_ops = {
.read_resources = noop_read_resources,
.set_resources = noop_set_resources,
.init = mp_cpu_bus_init,
};
-static void enable_dev(struct device *dev)
-{
- /* Set the operations if it is a special bus type */
- if (dev->path.type == DEVICE_PATH_DOMAIN) {
- dev->ops = &pci_domain_ops;
- } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
- dev->ops = &cpu_bus_ops;
- }
-}
-
struct chip_operations northbridge_intel_e7505_ops = {
CHIP_NAME("Intel E7505 Northbridge")
- .enable_dev = enable_dev,
};