From 4ab7c11c4aa9201959db1c591b06c7667026b0a5 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Thu, 19 Mar 2009 10:10:24 +0000 Subject: [PATCH] Output GeodeLink and RAM speed in case of overclock error to make things more clear. Signed-off-by: Mart Raudsepp Acked-by: Myles Watson git-svn-id: svn://coreboot.org/repository/coreboot-v3@1156 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- northbridge/amd/geodelx/raminit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/northbridge/amd/geodelx/raminit.c b/northbridge/amd/geodelx/raminit.c index 5b6893ba13..611cbd8092 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(); } }