diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2006-05-05 03:54:31 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2006-05-05 03:54:31 +0000 |
commit | 1656c18d76773afe2b48dd8bf29d8f4e0b40d6ba (patch) | |
tree | 17286a4575baf631e024b4251a9694d2030a92f9 /src/mainboard/olpc/rev_a | |
parent | 070a10f7593014f1ae8a0f15d34293f59790f9cf (diff) |
reorder early startup so that it might work.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2298 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/olpc/rev_a')
-rw-r--r-- | src/mainboard/olpc/rev_a/auto.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mainboard/olpc/rev_a/auto.c b/src/mainboard/olpc/rev_a/auto.c index 06c235bf66..65c87103c1 100644 --- a/src/mainboard/olpc/rev_a/auto.c +++ b/src/mainboard/olpc/rev_a/auto.c @@ -157,12 +157,16 @@ static void main(unsigned long bist) SystemPreInit(); msr_init(); + cs5536_early_setup(); + + /* NOTE: must do this AFTER the early_setup! + * it is counting on some early MSR setup + * for cs5536 + */ cs5536_setup_onchipuart(); uart_init(); console_init(); - cs5536_early_setup(); - pll_reset(); cpuRegInit(); |