aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/northbridge/amd/amdk8/northbridge.c15
-rw-r--r--src/northbridge/amd/amdk8/root_complex/Config.lb1
-rw-r--r--src/northbridge/amd/amdk8/root_complex/chip.h5
3 files changed, 16 insertions, 5 deletions
diff --git a/src/northbridge/amd/amdk8/northbridge.c b/src/northbridge/amd/amdk8/northbridge.c
index 8954bfefaa..1e953ebfc7 100644
--- a/src/northbridge/amd/amdk8/northbridge.c
+++ b/src/northbridge/amd/amdk8/northbridge.c
@@ -9,7 +9,7 @@
#include <string.h>
#include <bitops.h>
#include <cpu/cpu.h>
-#include "chip.h"
+#include "root_complex/chip.h"
#include "northbridge.h"
#include "amdk8.h"
@@ -488,6 +488,11 @@ static struct pci_driver mcf0_driver __pci_driver = {
};
+struct chip_operations northbridge_amd_amdk8_ops = {
+ CHIP_NAME("AMD K8 Northbridge")
+ .enable_dev = 0,
+};
+
static void pci_domain_read_resources(device_t dev)
{
struct resource *resource;
@@ -712,7 +717,7 @@ static struct device_operations cpu_bus_ops = {
.scan_bus = cpu_bus_scan,
};
-static void enable_dev(struct device *dev)
+static void root_complex_enable_dev(struct device *dev)
{
/* Set the operations if it is a special bus type */
if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
@@ -724,7 +729,7 @@ static void enable_dev(struct device *dev)
}
}
-struct chip_operations northbridge_amd_amdk8_ops = {
- CHIP_NAME("AMD K8 Northbridge")
- .enable_dev = enable_dev,
+struct chip_operations northbridge_amd_amdk8_root_complex_ops = {
+ CHIP_NAME("AMD K8 Root Complex")
+ .enable_dev = root_complex_enable_dev,
};
diff --git a/src/northbridge/amd/amdk8/root_complex/Config.lb b/src/northbridge/amd/amdk8/root_complex/Config.lb
new file mode 100644
index 0000000000..610e929159
--- /dev/null
+++ b/src/northbridge/amd/amdk8/root_complex/Config.lb
@@ -0,0 +1 @@
+config chip.h
diff --git a/src/northbridge/amd/amdk8/root_complex/chip.h b/src/northbridge/amd/amdk8/root_complex/chip.h
new file mode 100644
index 0000000000..0b49ca8ae9
--- /dev/null
+++ b/src/northbridge/amd/amdk8/root_complex/chip.h
@@ -0,0 +1,5 @@
+struct northbridge_amd_amdk8_root_complex_config
+{
+};
+
+extern struct chip_operations northbridge_amd_amdk8_root_complex_ops;