diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-03-14 20:01:51 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-03-14 20:01:51 +0000 |
commit | a41ff52ba9eceb0ef72eddc8f2c14be5751d85a3 (patch) | |
tree | 82823eb572ec1c2a2bae80db5451fa57ac9b6e37 /src/mainboard/amd | |
parent | c994c973c654817f5e764615776b78b84cd21910 (diff) |
Make the pll stuff parameterized.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2198 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/rumba/auto.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/amd/rumba/auto.c b/src/mainboard/amd/rumba/auto.c index 19f7049c8e..6b2fd758c0 100644 --- a/src/mainboard/amd/rumba/auto.c +++ b/src/mainboard/amd/rumba/auto.c @@ -40,6 +40,10 @@ static void sdram_set_spd_registers(const struct mem_controller *ctrl) { #include "northbridge/amd/gx2/raminit.c" #include "sdram/generic_sdram.c" +#define PLLMSRhi 0x00001490 +#define PLLMSRlo 0x02000030 +#define PLLMSRhi2 ((0xde << 16) | (1 << 26) | (1 << 24)) +#define PLLMSRlo2 ((1<<14) |(1<<13) | (1<<0)) #include "northbridge/amd/gx2/pll_reset.c" static void msr_init(void) |