aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/e7501/raminit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/intel/e7501/raminit.h')
-rw-r--r--src/northbridge/intel/e7501/raminit.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/northbridge/intel/e7501/raminit.h b/src/northbridge/intel/e7501/raminit.h
deleted file mode 100644
index 05c3889aa2..0000000000
--- a/src/northbridge/intel/e7501/raminit.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef RAMINIT_H
-#define RAMINIT_H
-
-#define MAX_DIMM_SOCKETS_PER_CHANNEL 4
-#define MAX_NUM_CHANNELS 2
-#define MAX_DIMM_SOCKETS (MAX_NUM_CHANNELS * MAX_DIMM_SOCKETS_PER_CHANNEL)
-
-struct mem_controller {
- device_t d0, d0f1; // PCI bus/device/fcns of E7501 memory controller
-
- // SMBus addresses of DIMM slots for each channel,
- // in order from closest to MCH to furthest away
- // 0 == not present
- uint16_t channel0[MAX_DIMM_SOCKETS_PER_CHANNEL];
- uint16_t channel1[MAX_DIMM_SOCKETS_PER_CHANNEL];
-};
-
-void sdram_initialize(int controllers, const struct mem_controller *ctrl);
-
-#endif /* RAMINIT_H */