diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2006-02-28 23:07:27 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2006-02-28 23:07:27 +0000 |
commit | c0fe3190c49aca5339ee37e32c4dfd3e3e824dd0 (patch) | |
tree | f19669f768f64ac0d33d4edbeb9edc7e40bd260f /src/mainboard/amd/rumba | |
parent | b2528aa653224d903f3b64e3af9aef4cc46fb7b9 (diff) | |
download | coreboot-c0fe3190c49aca5339ee37e32c4dfd3e3e824dd0.tar.xz |
remove more unused code
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2188 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd/rumba')
-rw-r--r-- | src/mainboard/amd/rumba/auto.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/mainboard/amd/rumba/auto.c b/src/mainboard/amd/rumba/auto.c index 08fe8ed6ca..82776281e5 100644 --- a/src/mainboard/amd/rumba/auto.c +++ b/src/mainboard/amd/rumba/auto.c @@ -24,7 +24,7 @@ static void msr_init(void) { - __builtin_wrmsr(0x1808, 0x22fffc02, 0x10f3bf00); + __builtin_wrmsr(0x1808, 0x10f3bf00, 0x22fffc02); __builtin_wrmsr(0x10000020, 0xfff80, 0x20000000); __builtin_wrmsr(0x10000021, 0x80fffe0, 0x20000000); @@ -48,16 +48,6 @@ static void msr_init(void) __builtin_wrmsr(0xa0002001, 0x86002, 0x0); __builtin_wrmsr(0x50002001, 0x27, 0x0); __builtin_wrmsr(0x4c002001, 0x1, 0x0); - - __builtin_wrmsr(0x20000018, 0x3400, 0x10076013); - __builtin_wrmsr(0x20000019, 0x696332a3, 0x18000008); - __builtin_wrmsr(0x2000001a, 0x101, 0x0); - - __builtin_wrmsr(0x2000001c, 0xff00ff, 0x0); - __builtin_wrmsr(0x2000001d, 0x0, 0x0); - __builtin_wrmsr(0x2000001f, 0x0, 0x0); - __builtin_wrmsr(0x20000020, 0x6, 0x0); - } static void pll_reset(void) @@ -107,6 +97,7 @@ static void main(unsigned long bist) print_err("hi\n\r"); pll_reset(); + msr_init(); /* Halt if there was a built in self test failure */ //report_bist_failure(bist); |