From: Kumar Gala Date: Mon, 8 Sep 2008 13:51:29 +0000 (-0500) Subject: 85xx: Ensure timebase is zero on secondary cores X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e0ff3d350d6b7960deb5a881dfc5acf3a63ef676;p=project%2Fbcm63xx%2Fu-boot.git 85xx: Ensure timebase is zero on secondary cores The e500um says the timebase is volatile out of reset. To ensure TB sync works we need to make sure its zero. Signed-off-by: Kumar Gala --- diff --git a/cpu/mpc85xx/release.S b/cpu/mpc85xx/release.S index 75676b5b9e..ec5e4daf88 100644 --- a/cpu/mpc85xx/release.S +++ b/cpu/mpc85xx/release.S @@ -37,6 +37,11 @@ __secondary_start_page: li r3,0x201 mtspr SPRN_BUCSR,r3 + /* Ensure TB is 0 */ + li r3,0 + mttbl r3 + mttbu r3 + /* Enable/invalidate the I-Cache */ mfspr r0,SPRN_L1CSR1 ori r0,r0,(L1CSR1_ICFI|L1CSR1_ICE)