Changeset d99c1d2 in mainline for kernel/arch/arm32
- Timestamp:
- 2010-03-23T14:41:06Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1b1164e8
- Parents:
- 7c682dd1
- Location:
- kernel/arch/arm32
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/asm.h
r7c682dd1 rd99c1d2 38 38 39 39 #include <typedefs.h> 40 #include <arch/types.h>41 40 #include <arch/stack.h> 42 41 #include <config.h> -
kernel/arch/arm32/include/context.h
r7c682dd1 rd99c1d2 52 52 #ifndef __ASM__ 53 53 54 #include < arch/types.h>54 #include <typedefs.h> 55 55 56 56 /** Thread context containing registers that must be preserved across function -
kernel/arch/arm32/include/cpu.h
r7c682dd1 rd99c1d2 37 37 #define KERN_arm32_CPU_H_ 38 38 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <arch/asm.h> 41 41 -
kernel/arch/arm32/include/exception.h
r7c682dd1 rd99c1d2 38 38 #define KERN_arm32_EXCEPTION_H_ 39 39 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <arch/regutils.h> 42 42 -
kernel/arch/arm32/include/faddr.h
r7c682dd1 rd99c1d2 37 37 #define KERN_arm32_FADDR_H_ 38 38 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 41 41 /** Calculate absolute address of function referenced by fptr pointer. -
kernel/arch/arm32/include/fpu_context.h
r7c682dd1 rd99c1d2 39 39 #define KERN_arm32_FPU_CONTEXT_H_ 40 40 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 43 43 #define FPU_CONTEXT_ALIGN 0 -
kernel/arch/arm32/include/interrupt.h
r7c682dd1 rd99c1d2 37 37 #define KERN_arm32_INTERRUPT_H_ 38 38 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <arch/exception.h> 41 41 -
kernel/arch/arm32/include/machine_func.h
r7c682dd1 rd99c1d2 43 43 44 44 #include <console/console.h> 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 #include <arch/exception.h> 47 47 -
kernel/arch/arm32/include/mm/asid.h
r7c682dd1 rd99c1d2 39 39 #define KERN_arm32_ASID_H_ 40 40 41 #include < arch/types.h>41 #include <typedefs.h> 42 42 43 43 #define ASID_MAX_ARCH 3 /* minimal required number */ -
kernel/arch/arm32/include/mm/frame.h
r7c682dd1 rd99c1d2 43 43 #ifndef __ASM__ 44 44 45 #include < arch/types.h>45 #include <typedefs.h> 46 46 47 47 #define BOOT_PAGE_TABLE_SIZE 0x4000 -
kernel/arch/arm32/include/mm/page_fault.h
r7c682dd1 rd99c1d2 37 37 #define KERN_arm32_PAGE_FAULT_H_ 38 38 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 41 41 -
kernel/arch/arm32/include/ras.h
r7c682dd1 rd99c1d2 38 38 39 39 #include <arch/exception.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 42 42 #define RAS_START 0 -
kernel/arch/arm32/include/types.h
r7c682dd1 rd99c1d2 43 43 #endif 44 44 45 typedef signed char int8_t;46 typedef signed short int16_t;47 typedef signed long int32_t;48 typedef signed long long int64_t;49 50 typedef unsigned char uint8_t;51 typedef unsigned short uint16_t;52 typedef unsigned long uint32_t;53 typedef unsigned long long uint64_t;54 55 45 typedef uint32_t size_t; 56 46 … … 67 57 } fncptr_t; 68 58 69 #define PRIp "x" 70 #define PRIs "u" 59 #define PRIp "x" /**< Format for uintptr_t. */ 60 #define PRIs "u" /**< Format for size_t. */ 71 61 72 #define PRId8 "d" 73 #define PRId16 "d" 74 #define PRId32 "d" 75 #define PRId64 "lld" 76 #define PRIdn "d" 62 #define PRId8 "d" /**< Format for int8_t. */ 63 #define PRId16 "d" /**< Format for int16_t. */ 64 #define PRId32 "d" /**< Format for int32_t. */ 65 #define PRId64 "lld" /**< Format for int64_t. */ 66 #define PRIdn "d" /**< Format for native_t. */ 77 67 78 #define PRIu8 "u" 79 #define PRIu16 "u" 80 #define PRIu32 "u" 81 #define PRIu64 "llu" 82 #define PRIun "u" 68 #define PRIu8 "u" /**< Format for uint8_t. */ 69 #define PRIu16 "u" /**< Format for uint16_t. */ 70 #define PRIu32 "u" /**< Format for uint32_t. */ 71 #define PRIu64 "llu" /**< Format for uint64_t. */ 72 #define PRIun "u" /**< Format for unative_t. */ 83 73 84 #define PRIx8 "x" 85 #define PRIx16 "x" 86 #define PRIx32 "x" 87 #define PRIx64 "llx" 88 #define PRIxn "x" 74 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 75 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 76 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 77 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ 78 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 89 79 90 80 #endif -
kernel/arch/arm32/src/ddi/ddi.c
r7c682dd1 rd99c1d2 36 36 #include <ddi/ddi.h> 37 37 #include <proc/task.h> 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 /** Enable I/O space range for task. -
kernel/arch/arm32/src/debug/stacktrace.c
r7c682dd1 rd99c1d2 35 35 #include <stacktrace.h> 36 36 #include <syscall/copy.h> 37 #include <arch/types.h>38 37 #include <typedefs.h> 39 38 -
kernel/arch/arm32/src/mm/page.c
r7c682dd1 rd99c1d2 41 41 #include <arch/exception.h> 42 42 #include <typedefs.h> 43 #include <arch/types.h>44 43 #include <interrupt.h> 45 44 #include <arch/mm/frame.h> -
kernel/arch/arm32/src/mm/tlb.c
r7c682dd1 rd99c1d2 37 37 #include <arch/mm/asid.h> 38 38 #include <arch/asm.h> 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 #include <arch/mm/page.h> 41 41 -
kernel/arch/arm32/src/ras.c
r7c682dd1 rd99c1d2 44 44 #include <arch.h> 45 45 #include <memstr.h> 46 #include < arch/types.h>46 #include <typedefs.h> 47 47 48 48 uintptr_t *ras_page = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.