Changes in boot/arch/arm32/src/mm.c [193d280c:f7fba727] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/mm.c
r193d280c rf7fba727 116 116 if (address >= AM335x_RAM_START && address < AM335x_RAM_END) 117 117 return 1; 118 #elif defined MACHINE_raspberrypi119 if (address < BCM2835_RAM_END)120 return 1;121 118 #endif 122 119 return address * 0; … … 193 190 } 194 191 195 static void enable_paging(void) 196 { 197 /* 198 * c3 - each two bits controls access to the one of domains (16) 192 static void enable_paging() 193 { 194 /* c3 - each two bits controls access to the one of domains (16) 199 195 * 0b01 - behave as a client (user) of a domain 200 196 */ … … 233 229 234 230 /** Start the MMU - initialize page table and enable paging. */ 235 void mmu_start(void) 236 { 231 void mmu_start() { 237 232 disable_paging(); 238 233 #ifdef PROCESSOR_ARCH_armv7_a
Note:
See TracChangeset
for help on using the changeset viewer.