Output GeodeLink and RAM speed in case of overclock error to make things more clear.
Signed-off-by: Mart Raudsepp mart.raudsepp@artecdesign.ee --- northbridge/amd/geodelx/raminit.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/northbridge/amd/geodelx/raminit.c b/northbridge/amd/geodelx/raminit.c index 5b6893b..611cbd8 100644 --- a/northbridge/amd/geodelx/raminit.c +++ b/northbridge/amd/geodelx/raminit.c @@ -267,6 +267,7 @@ static void check_ddr_max(u8 dimm0, u8 dimm1) if (geode_link_speed() > speed) { printk(BIOS_EMERG, "DIMM overclocked. Check GeodeLink speed.\n"); post_code(POST_PLL_MEM_FAIL); + printk(BIOS_EMERG, "GeodeLink speed: %u\nIntended RAM speed: %u\n", geode_link_speed(), speed); hlt(); } }
On Wed, Mar 18, 2009 at 11:35 AM, Mart Raudsepp mart.raudsepp@artecdesign.ee wrote:
Output GeodeLink and RAM speed in case of overclock error to make things more clear.
Signed-off-by: Mart Raudsepp mart.raudsepp@artecdesign.ee
Acked-by: Myles Watson mylesgw@gmail.com
Thanks, Myles
northbridge/amd/geodelx/raminit.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/northbridge/amd/geodelx/raminit.c b/northbridge/amd/geodelx/raminit.c index 5b6893b..611cbd8 100644 --- a/northbridge/amd/geodelx/raminit.c +++ b/northbridge/amd/geodelx/raminit.c @@ -267,6 +267,7 @@ static void check_ddr_max(u8 dimm0, u8 dimm1) if (geode_link_speed() > speed) { printk(BIOS_EMERG, "DIMM overclocked. Check GeodeLink speed.\n"); post_code(POST_PLL_MEM_FAIL);
- printk(BIOS_EMERG, "GeodeLink speed: %u\nIntended RAM speed: %u\n", geode_link_speed(), speed);
hlt(); } } -- 1.6.1.2
-- coreboot mailing list: coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot
Ühel kenal päeval, K, 2009-03-18 kell 12:41, kirjutas Myles Watson:
On Wed, Mar 18, 2009 at 11:35 AM, Mart Raudsepp mart.raudsepp@artecdesign.ee wrote:
Output GeodeLink and RAM speed in case of overclock error to make things more clear.
Signed-off-by: Mart Raudsepp mart.raudsepp@artecdesign.ee
Acked-by: Myles Watson mylesgw@gmail.com
Thanks, r1156