Changeset 46bbccb in mainline for arch/ppc32/loader/asm.S
- Timestamp:
- 2006-03-15T00:52:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5e7b926
- Parents:
- 96e08225
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/asm.S
r96e08225 r46bbccb 28 28 29 29 #include "regname.h" 30 #include "spr.h"31 30 32 31 .data … … 165 164 166 165 li r3, 0 167 ori r3, r3, ( HID0_ICE | HID0_DCE | HID0_ICFI | HID0_DCI)168 mfspr r4, SPRN_HID0166 ori r3, r3, (hid0_ice | hid0_dce | hid0_icfi | hid0_dci) 167 mfspr r4, hid0 169 168 or r5, r4, r3 170 169 isync 171 mtspr SPRN_HID0, r5170 mtspr hid0, r5 172 171 sync 173 172 isync … … 175 174 # Enable instruction cache 176 175 177 ori r5, r4, HID0_ICE178 mtspr SPRN_HID0, r5176 ori r5, r4, hid0_ice 177 mtspr hid0, r5 179 178 sync 180 179 isync … … 185 184 mtlr r3 186 185 blr 187
Note:
See TracChangeset
for help on using the changeset viewer.