Changeset c23baab in mainline
- Timestamp:
- 2006-09-29T10:18:35Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 398e7688
- Parents:
- 00b38a3
- Location:
- kernel/arch/sparc64/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/mm/tlb.c
r00b38a3 rc23baab 72 72 { 73 73 /* 74 * TLBs are actually initialized early 75 * in start.S. 74 * Invalidate all non-locked DTLB and ITLB entries. 76 75 */ 76 tlb_invalidate_all(); 77 77 } 78 78 -
kernel/arch/sparc64/src/start.S
r00b38a3 rc23baab 81 81 */ 82 82 brz %l7, 0f ! skip if you are not the bootstrap CPU 83 nop 84 83 85 sethi %hi(bootinfo), %o0 84 86 call memcpy … … 256 258 and %g1, UPA_CONFIG_MID_MASK, %g1 257 259 260 #ifdef CONFIG_SMP 258 261 /* 259 262 * Active loop for APs until the BSP picks them up. … … 269 272 nop 270 273 271 #ifdef CONFIG_SMP 274 272 275 /* 273 276 * Configure stack for the AP. … … 281 284 call main_ap 282 285 nop 286 287 /* Not reached. */ 283 288 #endif 284 285 /* Not reached. */286 289 287 290 0:
Note:
See TracChangeset
for help on using the changeset viewer.