Changeset 25eec4e in mainline for kernel/arch/arm32/include/arch/mm/frame.h
- Timestamp:
- 2013-04-19T18:38:18Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6d717a4
- Parents:
- a1e2df13 (diff), 289cb7dd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/arch/mm/frame.h
ra1e2df13 r25eec4e 47 47 48 48 #ifdef MACHINE_gta02 49 50 #define PHYSMEM_START_ADDR 0x30008000 49 51 #define BOOT_PAGE_TABLE_ADDRESS 0x30010000 52 53 #elif defined MACHINE_beagleboardxm 54 55 #define PHYSMEM_START_ADDR 0x80000000 56 #define BOOT_PAGE_TABLE_ADDRESS 0x80008000 57 58 #elif defined MACHINE_beaglebone 59 60 #define PHYSMEM_START_ADDR 0x80000000 61 #define BOOT_PAGE_TABLE_ADDRESS 0x80008000 62 50 63 #else 64 65 #define PHYSMEM_START_ADDR 0x00000000 51 66 #define BOOT_PAGE_TABLE_ADDRESS 0x00008000 67 52 68 #endif 53 69 54 70 #define BOOT_PAGE_TABLE_START_FRAME (BOOT_PAGE_TABLE_ADDRESS >> FRAME_WIDTH) 55 71 #define BOOT_PAGE_TABLE_SIZE_IN_FRAMES (BOOT_PAGE_TABLE_SIZE >> FRAME_WIDTH) 56 57 #ifdef MACHINE_gta0258 #define PHYSMEM_START_ADDR 0x3000800059 #else60 #define PHYSMEM_START_ADDR 0x0000000061 #endif62 72 63 73 extern void frame_low_arch_init(void);
Note:
See TracChangeset
for help on using the changeset viewer.