Changeset c0699467 in mainline for kernel/arch/mips64
- Timestamp:
- 2011-08-09T18:08:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b538ca5c
- Parents:
- 3666d386
- Location:
- kernel/arch/mips64
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips64/include/context_offset.h
r3666d386 rc0699467 63 63 #ifdef __ASM__ 64 64 65 #ifdef KERNEL 66 65 67 #include <arch/asm/regname.h> 66 68 67 # ctx: address of the structure with saved context 69 #else /* KERNEL */ 70 71 #include <libarch/regname.h> 72 73 #endif /* KERNEL */ 74 75 /* ctx: address of the structure with saved context */ 68 76 .macro CONTEXT_SAVE_ARCH_CORE ctx:req 69 77 sd $s0, OFFSET_S0(\ctx) … … 121 129 .endm 122 130 123 # ctx: address of the structure with saved context 131 /* ctx: address of the structure with saved context */ 124 132 .macro CONTEXT_RESTORE_ARCH_CORE ctx:req 125 133 ld $s0, OFFSET_S0(\ctx) -
kernel/arch/mips64/include/cp0.h
r3666d386 rc0699467 35 35 #ifndef KERN_mips64_CP0_H_ 36 36 #define KERN_mips64_CP0_H_ 37 38 #ifdef KERNEL39 40 #include <typedefs.h>41 42 #else43 44 #include <sys/types.h>45 46 #endif47 37 48 38 #define cp0_status_ie_enabled_bit (1 << 0) -
kernel/arch/mips64/include/istate.h
r3666d386 rc0699467 36 36 #define KERN_mips64_ISTATE_H_ 37 37 38 #include < arch/cp0.h>38 #include <trace.h> 39 39 40 40 #ifdef KERNEL 41 41 42 #include <typedefs.h> 43 #include <trace.h> 42 #include <arch/cp0.h> 44 43 45 #else 44 #else /* KERNEL */ 46 45 47 #include <sys/types.h> 48 #define NO_TRACE 46 #include <libarch/cp0.h> 49 47 50 #endif 48 #endif /* KERNEL */ 51 49 52 50 typedef struct istate { -
kernel/arch/mips64/include/mm/frame.h
r3666d386 rc0699467 39 39 #define FRAME_SIZE (1 << FRAME_WIDTH) 40 40 41 #ifdef KERNEL42 41 #ifndef __ASM__ 43 42 … … 46 45 47 46 #endif /* __ASM__ */ 48 #endif /* KERNEL */49 47 50 48 #endif -
kernel/arch/mips64/include/mm/page.h
r3666d386 rc0699467 50 50 #endif 51 51 52 #ifdef KERNEL53 52 #ifndef __ASM__ 54 53 … … 56 55 57 56 #endif /* __ASM__ */ 58 #endif /* KERNEL */59 57 60 58 #endif -
kernel/arch/mips64/src/mips64.c
r3666d386 rc0699467 41 41 #include <memstr.h> 42 42 #include <proc/thread.h> 43 #include < proc/uarg.h>43 #include <abi/proc/uarg.h> 44 44 #include <print.h> 45 45 #include <console/console.h> … … 52 52 #include <arch/debugger.h> 53 53 #include <genarch/fb/fb.h> 54 #include < genarch/fb/visuals.h>54 #include <abi/fb/visuals.h> 55 55 #include <genarch/drivers/dsrln/dsrlnin.h> 56 56 #include <genarch/drivers/dsrln/dsrlnout.h>
Note:
See TracChangeset
for help on using the changeset viewer.