diff options
author | wdenk <wdenk> | 2003-07-31 22:56:30 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-07-31 22:56:30 +0000 |
commit | 96dd9af4c7c5669924c2e40734b246f207b9a8b4 (patch) | |
tree | 375c20dc2ca61a2c8a9bf9dd373ecc2882c2a102 /cpu/mpc5xxx/cpu_init.c | |
parent | 1f4bb37d6bcae59b18a2438f3cdca6545a831ab5 (diff) | |
download | u-boot-96dd9af4c7c5669924c2e40734b246f207b9a8b4.tar.gz u-boot-96dd9af4c7c5669924c2e40734b246f207b9a8b4.tar.xz u-boot-96dd9af4c7c5669924c2e40734b246f207b9a8b4.zip |
Must enable timebase earlier on MPC5200
Diffstat (limited to 'cpu/mpc5xxx/cpu_init.c')
-rw-r--r-- | cpu/mpc5xxx/cpu_init.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpu/mpc5xxx/cpu_init.c b/cpu/mpc5xxx/cpu_init.c index 7322027e8b..cec5c2bc67 100644 --- a/cpu/mpc5xxx/cpu_init.c +++ b/cpu/mpc5xxx/cpu_init.c @@ -155,6 +155,11 @@ void cpu_init_f (void) #if defined(CFG_GPS_PORT_CONFIG) *(vu_long *)MPC5XXX_GPS_PORT_CONFIG = CFG_GPS_PORT_CONFIG; #endif + +#if defined(CONFIG_MPC5200) + /* enable timebase */ + *(vu_long *)(MPC5XXX_XLBARB + 0x40) |= (1 << 13); +#endif } /* @@ -171,11 +176,6 @@ int cpu_init_r (void) *(vu_long *)MPC5XXX_ICTL_CRIT |= 0x0001ffff; *(vu_long *)MPC5XXX_ICTL_EXT &= ~0x00000f00; -#if defined(CONFIG_MPC5200) - /* enable timebase */ - *(vu_long *)(MPC5XXX_XLBARB + 0x40) |= (1 << 13); -#endif - #if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_MPC5XXX_FEC) /* load FEC microcode */ loadtask(0, 2); |