diff options
author | Keith Hui <buurin@gmail.com> | 2017-08-10 20:49:05 -0400 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2017-08-15 21:00:36 +0000 |
commit | 95f296e47cefe5da950c59b3f4234fffc5fc8a2f (patch) | |
tree | 9eaae26c19d25c937a4d8ae8096fd5dbe840c283 /src/mainboard/asus | |
parent | 0fda9f54c774b73efbd89ae20ed10136fa55dc96 (diff) |
440BX boards: Use combined RAM init routine
Change all 440BX boards to use the combined RAM init routine added in
commit 078e3240 (northbridge/intel/i440bx: Merge RAM init routines) [1].
[1] https://review.coreboot.org/20676
Change-Id: I699db882189f99018d4a6fdcb00f9438b2a7a1bc
Signed-off-by: Keith Hui <buurin@gmail.com>
Reviewed-on: https://review.coreboot.org/20868
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r-- | src/mainboard/asus/p2b-ds/romstage.c | 5 | ||||
-rw-r--r-- | src/mainboard/asus/p2b-ls/romstage.c | 5 | ||||
-rw-r--r-- | src/mainboard/asus/p2b/romstage.c | 5 | ||||
-rw-r--r-- | src/mainboard/asus/p3b-f/romstage.c | 5 |
4 files changed, 4 insertions, 16 deletions
diff --git a/src/mainboard/asus/p2b-ds/romstage.c b/src/mainboard/asus/p2b-ds/romstage.c index 809f1f6709..1d34bd9cd0 100644 --- a/src/mainboard/asus/p2b-ds/romstage.c +++ b/src/mainboard/asus/p2b-ds/romstage.c @@ -39,8 +39,5 @@ void mainboard_romstage_entry(unsigned long bist) report_bist_failure(bist); enable_smbus(); - dump_spd_registers(); - sdram_set_registers(); - sdram_set_spd_registers(); - sdram_enable(); + sdram_initialize(); } diff --git a/src/mainboard/asus/p2b-ls/romstage.c b/src/mainboard/asus/p2b-ls/romstage.c index 5ed878fbee..ecfc8b8224 100644 --- a/src/mainboard/asus/p2b-ls/romstage.c +++ b/src/mainboard/asus/p2b-ls/romstage.c @@ -40,8 +40,5 @@ void mainboard_romstage_entry(unsigned long bist) report_bist_failure(bist); enable_smbus(); - dump_spd_registers(); - sdram_set_registers(); - sdram_set_spd_registers(); - sdram_enable(); + sdram_initialize(); } diff --git a/src/mainboard/asus/p2b/romstage.c b/src/mainboard/asus/p2b/romstage.c index 6cf86c110c..70e4323281 100644 --- a/src/mainboard/asus/p2b/romstage.c +++ b/src/mainboard/asus/p2b/romstage.c @@ -39,8 +39,5 @@ void mainboard_romstage_entry(unsigned long bist) report_bist_failure(bist); enable_smbus(); - dump_spd_registers(); - sdram_set_registers(); - sdram_set_spd_registers(); - sdram_enable(); + sdram_initialize(); } diff --git a/src/mainboard/asus/p3b-f/romstage.c b/src/mainboard/asus/p3b-f/romstage.c index bb16c78f6f..0bb5bca314 100644 --- a/src/mainboard/asus/p3b-f/romstage.c +++ b/src/mainboard/asus/p3b-f/romstage.c @@ -76,10 +76,7 @@ void mainboard_romstage_entry(unsigned long bist) enable_spd(); - dump_spd_registers(); - sdram_set_registers(); - sdram_set_spd_registers(); - sdram_enable(); + sdram_initialize(); disable_spd(); } |