Changeset 83dab11 in mainline for kernel/arch/mips32
- Timestamp:
- 2017-06-01T21:22:44Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fb864d65
- Parents:
- 44a7ee5
- Location:
- kernel/arch/mips32
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch/arch.h
r44a7ee5 r83dab11 36 36 #define KERN_mips32_ARCH_H_ 37 37 38 #include <typedefs.h> 38 #include <stddef.h> 39 #include <stdint.h> 39 40 40 41 #define TASKMAP_MAX_RECORDS 32 -
kernel/arch/mips32/include/arch/context.h
r44a7ee5 r83dab11 39 39 #include <arch/stack.h> 40 40 #include <arch/context_struct.h> 41 #include <typedefs.h>42 41 43 42 /* -
kernel/arch/mips32/include/arch/cp0.h
r44a7ee5 r83dab11 35 35 #ifndef KERN_mips32_CP0_H_ 36 36 #define KERN_mips32_CP0_H_ 37 38 #include <stdint.h> 37 39 38 40 #define cp0_status_ie_enabled_bit (1 << 0) -
kernel/arch/mips32/include/arch/cpu.h
r44a7ee5 r83dab11 36 36 #define KERN_mips32_CPU_H_ 37 37 38 #include <typedefs.h>39 38 #include <arch/asm.h> 39 #include <stdint.h> 40 40 41 41 typedef struct { -
kernel/arch/mips32/include/arch/exception.h
r44a7ee5 r83dab11 36 36 #define KERN_mips32_EXCEPTION_H_ 37 37 38 #include <typedefs.h>39 38 #include <arch/istate.h> 40 39 -
kernel/arch/mips32/include/arch/interrupt.h
r44a7ee5 r83dab11 36 36 #define KERN_mips32_INTERRUPT_H_ 37 37 38 #include <typedefs.h>39 38 #include <arch/exception.h> 40 39 -
kernel/arch/mips32/include/arch/mm/asid.h
r44a7ee5 r83dab11 36 36 #define KERN_mips32_ASID_H_ 37 37 38 #include < typedefs.h>38 #include <stdint.h> 39 39 40 40 #define ASID_MAX_ARCH 255 /* 2^8 - 1 */ -
kernel/arch/mips32/include/arch/smp/dorder.h
r44a7ee5 r83dab11 36 36 #define KERN_mips32_DORDER_H_ 37 37 38 #include < typedefs.h>38 #include <stdint.h> 39 39 40 40 extern uint32_t dorder_cpuid(void); -
kernel/arch/mips32/src/exception.c
r44a7ee5 r83dab11 38 38 #include <panic.h> 39 39 #include <arch/cp0.h> 40 #include <typedefs.h>41 40 #include <arch.h> 42 41 #include <debug.h> -
kernel/arch/mips32/src/smp/dorder.c
r44a7ee5 r83dab11 33 33 */ 34 34 35 #include < typedefs.h>35 #include <stdint.h> 36 36 #include <smp/ipi.h> 37 37 #include <arch/smp/dorder.h>
Note:
See TracChangeset
for help on using the changeset viewer.