Changeset d99c1d2 in mainline for kernel/arch/mips32
- 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/mips32
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/asm.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_ASM_H_ 37 37 38 #include <arch/types.h>39 38 #include <typedefs.h> 40 39 #include <config.h> -
kernel/arch/mips32/include/context.h
r7c682dd1 rd99c1d2 46 46 #ifndef __ASM__ 47 47 48 #include < arch/types.h>48 #include <typedefs.h> 49 49 50 50 #define context_set(ctx, pc, stack, size) \ -
kernel/arch/mips32/include/cp0.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_CP0_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define cp0_status_ie_enabled_bit (1 << 0) -
kernel/arch/mips32/include/cpu.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_CPU_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/asm.h> 40 40 -
kernel/arch/mips32/include/debugger.h
r7c682dd1 rd99c1d2 37 37 38 38 #include <arch/exception.h> 39 #include < arch/types.h>39 #include <typedefs.h> 40 40 41 41 #define BKPOINTS_MAX 10 -
kernel/arch/mips32/include/exception.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_EXCEPTION_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 #include <arch/cp0.h> 40 40 -
kernel/arch/mips32/include/faddr.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_FADDR_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define FADDR(fptr) ((uintptr_t) (fptr)) -
kernel/arch/mips32/include/fpu_context.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_FPU_CONTEXT_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define FPU_CONTEXT_ALIGN sizeof(unative_t) -
kernel/arch/mips32/include/mm/asid.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_ASID_H_ 37 37 38 #include < arch/types.h>38 #include <typedefs.h> 39 39 40 40 #define ASID_MAX_ARCH 255 /* 2^8 - 1 */ -
kernel/arch/mips32/include/mm/tlb.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_TLB_H_ 37 37 38 #include <arch/types.h>39 38 #include <typedefs.h> 40 39 #include <arch/mm/asid.h> -
kernel/arch/mips32/include/types.h
r7c682dd1 rd99c1d2 36 36 #define KERN_mips32_TYPES_H_ 37 37 38 typedef signed char int8_t;39 typedef signed short int16_t;40 typedef signed long int32_t;41 typedef signed long long int64_t;42 43 typedef unsigned char uint8_t;44 typedef unsigned short uint16_t;45 typedef unsigned long uint32_t;46 typedef unsigned long long uint64_t;47 48 38 typedef uint32_t size_t; 49 39 … … 60 50 } fncptr_t; 61 51 62 #define PRIp "x" 63 #define PRIs "u" 52 #define PRIp "x" /**< Format for uintptr_t. */ 53 #define PRIs "u" /**< Format for size_t. */ 64 54 65 #define PRId8 "d" 66 #define PRId16 "d" 67 #define PRId32 "ld" 68 #define PRId64 "lld" 69 #define PRIdn "d" 55 #define PRId8 "d" /**< Format for int8_t. */ 56 #define PRId16 "d" /**< Format for int16_t. */ 57 #define PRId32 "ld" /**< Format for int32_t. */ 58 #define PRId64 "lld" /**< Format for int64_t. */ 59 #define PRIdn "d" /**< Format for native_t. */ 70 60 71 #define PRIu8 "u" 72 #define PRIu16 "u" 73 #define PRIu32 "u" 74 #define PRIu64 "llu" 75 #define PRIun "u" 61 #define PRIu8 "u" /**< Format for uint8_t. */ 62 #define PRIu16 "u" /**< Format for uint16_t. */ 63 #define PRIu32 "u" /**< Format for uint32_t. */ 64 #define PRIu64 "llu" /**< Format for uint64_t. */ 65 #define PRIun "u" /**< Format for unative_t. */ 76 66 77 #define PRIx8 "x" 78 #define PRIx16 "x" 79 #define PRIx32 "x" 80 #define PRIx64 "llx" 81 #define PRIxn "x" 67 #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ 68 #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ 69 #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ 70 #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ 71 #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ 82 72 83 73 #endif -
kernel/arch/mips32/src/ddi/ddi.c
r7c682dd1 rd99c1d2 35 35 #include <ddi/ddi.h> 36 36 #include <proc/task.h> 37 #include < arch/types.h>37 #include <typedefs.h> 38 38 #include <security/cap.h> 39 39 #include <arch.h> -
kernel/arch/mips32/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/mips32/src/exception.c
r7c682dd1 rd99c1d2 38 38 #include <panic.h> 39 39 #include <arch/cp0.h> 40 #include < arch/types.h>40 #include <typedefs.h> 41 41 #include <arch.h> 42 42 #include <debug.h> -
kernel/arch/mips32/src/interrupt.c
r7c682dd1 rd99c1d2 35 35 #include <interrupt.h> 36 36 #include <arch/interrupt.h> 37 #include < arch/types.h>37 #include <typedefs.h> 38 38 #include <arch.h> 39 39 #include <arch/cp0.h>
Note:
See TracChangeset
for help on using the changeset viewer.