summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/e7501/raminit.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2016-11-08 11:05:16 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2016-11-08 19:47:08 +0100
commitf338fa1f315086324797b1c864d6d33654f4eabc (patch)
treed02e3c916c68b9cde0423435defbb5cca4ef42ce /src/northbridge/intel/e7501/raminit.h
parent8160a2f63db5a04a846b434701a88b449cc6f05f (diff)
downloadcoreboot-f338fa1f315086324797b1c864d6d33654f4eabc.tar.xz
intel/e7501: Remove unused northbridge code
No boards left in the tree for this northbridge. Change-Id: Id45da11b9d78cbd6bd50acb5a3c6c3c270f9020e Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17281 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
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 */