diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-04-25 04:07:44 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-04-25 04:07:44 +0000 |
commit | 5ee2bbb90cdc079e3e598c1f20237a32eed43e04 (patch) | |
tree | d0a3a68ee76625569d75a183c9932c710cd1943b /src | |
parent | 6c20eb440020803f89f3679c3fa80ddcb233c053 (diff) |
fix the msr.lo for olpc 0x20000019
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2275 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/olpc/rev_a/auto.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainboard/olpc/rev_a/auto.c b/src/mainboard/olpc/rev_a/auto.c index 249df48814..06c235bf66 100644 --- a/src/mainboard/olpc/rev_a/auto.c +++ b/src/mainboard/olpc/rev_a/auto.c @@ -117,6 +117,10 @@ static void sdram_set_spd_registers(const struct mem_controller *ctrl) (2<<6)| // dplwr (2<<4)| // dplrd (3); // dal + /* the msr value reported by quanta is very, very different. + * we will go with that value for now. + */ + msr.lo = 0x286332a3; wrmsr(0x20000019, msr); |