Changeset 5b0cf63 in mainline for kernel/arch/arm32
- Timestamp:
- 2018-01-25T13:42:08Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ab3c4b
- Parents:
- c832ab15
- git-author:
- Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
- Location:
- kernel/arch/arm32/include/arch
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/arch/elf.h
rc832ab15 r5b0cf63 40 40 41 41 #ifdef __BE__ 42 42 #define ELF_DATA_ENCODING ELFDATA2MSB 43 43 #else 44 44 #define ELF_DATA_ENCODING ELFDATA2LSB 45 45 #endif 46 46 -
kernel/arch/arm32/include/arch/exception.h
rc832ab15 r5b0cf63 45 45 46 46 #ifdef HIGH_EXCEPTION_VECTORS 47 47 #define EXC_BASE_ADDRESS 0xffff0000 48 48 #else 49 49 #define EXC_BASE_ADDRESS 0x0 50 50 #endif 51 51 -
kernel/arch/arm32/include/arch/mach/integratorcp/integratorcp.h
rc832ab15 r5b0cf63 77 77 78 78 typedef struct { 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 79 uintptr_t uart; 80 uintptr_t kbd_ctrl; 81 uintptr_t kbd_stat; 82 uintptr_t kbd_data; 83 uintptr_t kbd_intstat; 84 uintptr_t rtc; 85 uintptr_t rtc1_load; 86 uintptr_t rtc1_read; 87 uintptr_t rtc1_ctl; 88 uintptr_t rtc1_intrclr; 89 uintptr_t rtc1_intrstat; 90 uintptr_t rtc1_bgload; 91 uintptr_t irqc; 92 uintptr_t irqc_mask; 93 uintptr_t irqc_unmask; 94 uintptr_t vga; 95 uintptr_t cmcr; 96 uintptr_t sdramcr; 97 97 } icp_hw_map_t; 98 98 -
kernel/arch/arm32/include/arch/machine_func.h
rc832ab15 r5b0cf63 108 108 extern size_t machine_get_irq_count(void); 109 109 110 extern const char * 110 extern const char *machine_get_platform_name(void); 111 111 112 112 #endif -
kernel/arch/arm32/include/arch/types.h
rc832ab15 r5b0cf63 38 38 39 39 #ifndef DOXYGEN 40 40 #define ATTRIBUTE_PACKED __attribute__((packed)) 41 41 #else 42 42 #define ATTRIBUTE_PACKED 43 43 #endif 44 44
Note:
See TracChangeset
for help on using the changeset viewer.