summaryrefslogtreecommitdiff
path: root/src/mainboard/asrock/e350m1/mainboard.c
diff options
context:
space:
mode:
authorJens Rottmann <JRottmann@LiPPERTembedded.de>2013-03-21 22:21:28 +0100
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-03-22 01:06:12 +0100
commitdb6c5bfd8bdef4489e7fec533cb2ca8ae6c24cf3 (patch)
tree643d47e1f168190469f269c9ecf4621b745e3885 /src/mainboard/asrock/e350m1/mainboard.c
parent3db86ccfd7caaec5a1c494dfe3bfe9b092837f65 (diff)
downloadcoreboot-db6c5bfd8bdef4489e7fec533cb2ca8ae6c24cf3.tar.xz
Asrock E350M1: Use SPD read code from F14 wrapper
Changes: - Get rid of the E350M1 mainboard specific code and use the platform generic function wrapper that was added in change http://review.coreboot.org/#/c/2497/ AMD f14: Add SPD read functions to wrapper code - Move DIMM addresses into devicetree.cb - Add the ASF init that used to be in the SPD read code into mainboard_enable() Notes: - The DIMM reads only happen in romstage, so the function is not available in ramstage. Point the read-SPD callback to a generic function in ramstage. Change-Id: I08c2aebc62facc14f94400ee1ad188901ba73f19 Signed-off-by: Jens Rottmann <JRottmann@LiPPERTembedded.de> Reviewed-on: http://review.coreboot.org/2875 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/mainboard/asrock/e350m1/mainboard.c')
-rw-r--r--src/mainboard/asrock/e350m1/mainboard.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainboard/asrock/e350m1/mainboard.c b/src/mainboard/asrock/e350m1/mainboard.c
index 971b1915e7..be5c36c763 100644
--- a/src/mainboard/asrock/e350m1/mainboard.c
+++ b/src/mainboard/asrock/e350m1/mainboard.c
@@ -53,6 +53,15 @@ void set_pcie_dereset(void)
static void mainboard_enable(device_t dev)
{
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
+
+ /*
+ * Initialize ASF registers to an arbitrary address because someone
+ * long ago set things up this way inside the SPD read code. The
+ * SPD read code has been made generic and moved out of the board
+ * directory, so the ASF init is being done here.
+ */
+ pm_iowrite(0x29, 0x80);
+ pm_iowrite(0x28, 0x61);
}
struct chip_operations mainboard_ops = {