Changeset e93bb24 in mainline
- Timestamp:
- 2013-08-15T09:36:14Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 34847e2
- Parents:
- 7bf9217
- Location:
- boot/arch/arm32/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/asm.S
r7bf9217 re93bb24 75 75 bic r4, r4, #(1 << CP15_C1_DC) 76 76 77 # Disable I-cache and Branche predicotrs on non-armv777 # Disable I-cache and Branche predictors. 78 78 bic r4, r4, #(1 << CP15_C1_IC) 79 79 bic r4, r4, #(1 << CP15_C1_BP) … … 88 88 dsb 89 89 #else 90 #cp15 dsb, r4 is ignored (should be zero) 90 91 mov r4, #0 91 #cp15 dsb, r4 is ignored (should be zero)92 92 mcr p15, 0, r4, c7, c10, 4 93 93 #endif 94 94 95 95 # Clean ICache and BPredictors, r4 ignored (SBZ) 96 mov r4, #0 96 97 mcr p15, 0, r4, c7, c5, 0 97 98 nop -
boot/arch/arm32/src/mm.c
r7bf9217 re93bb24 169 169 * Create 1:1 virtual-physical mapping. 170 170 * Physical memory on BBxM a BBone starts at 2GB 171 * boundary, gta02 has a memory mirror at 2GB. 172 * icp somehow works (probably due to limited address size) 173 */ 174 for (pfn_t page = 0; page < PTL0_ENTRIES; page++) 171 * boundary, icp has a memory mirror at 2GB. 172 * (ARM Integrator Core Module User guide ch. 6.3, p. 6-7) 173 * gta02 somehow works (probably due to limited address size), 174 * s3c2442b manual ch. 5, p.5-1: 175 * "Address space: 128Mbytes per bank (total 1GB/8 banks)" 176 */ 177 for (pfn_t page = 0; page < PTL0_ENTRIES; ++page) 175 178 init_ptl0_section(&boot_pt[page], page); 176 179
Note:
See TracChangeset
for help on using the changeset viewer.