mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-05 19:24:48 +00:00
Must enable timebase earlier on MPC5200
This commit is contained in:
parent
1f4bb37d6b
commit
96dd9af4c7
2 changed files with 6 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue