Changeset c0699467 in mainline for kernel/arch/ia64
- 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/ia64
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/elf.h
r3666d386 rc0699467 27 27 */ 28 28 29 /** @addtogroup ia64 29 /** @addtogroup ia64 30 30 * @{ 31 31 */ … … 36 36 #define KERN_ia64_ELF_H_ 37 37 38 #define ELF_MACHINEEM_IA_6439 #define ELF_DATA_ENCODING 40 #define ELF_CLASS 38 #define ELF_MACHINE EM_IA_64 39 #define ELF_DATA_ENCODING ELFDATA2LSB 40 #define ELF_CLASS ELFCLASS64 41 41 42 42 #endif -
kernel/arch/ia64/include/istate.h
r3666d386 rc0699467 36 36 #define KERN_ia64_ISTATE_H_ 37 37 38 #include <trace.h> 39 40 #ifdef KERNEL 41 38 42 #include <arch/register.h> 39 43 40 #ifdef KERNEL 41 #include <typedefs.h> 42 #include <trace.h> 43 #else 44 #include <sys/types.h> 45 #define NO_TRACE 46 #endif 44 #else /* KERNEL */ 45 46 #include <libarch/register.h> 47 48 #endif /* KERNEL */ 47 49 48 50 typedef struct istate { -
kernel/arch/ia64/include/mm/frame.h
r3666d386 rc0699467 39 39 #define FRAME_SIZE (1 << FRAME_WIDTH) 40 40 41 #ifdef KERNEL42 41 #ifndef __ASM__ 43 42 … … 50 49 51 50 #endif /* __ASM__ */ 52 #endif /* KERNEL */53 51 54 52 #endif -
kernel/arch/ia64/include/mm/page.h
r3666d386 rc0699467 41 41 #define PAGE_SIZE FRAME_SIZE 42 42 #define PAGE_WIDTH FRAME_WIDTH 43 44 #ifdef KERNEL45 43 46 44 /** Bit width of the TLB-locked portion of kernel address space. */ … … 316 314 #endif /* __ASM__ */ 317 315 318 #endif /* KERNEL */319 320 316 #endif 321 317 -
kernel/arch/ia64/include/register.h
r3666d386 rc0699467 61 61 #define PSR_CPL_MASK_SHIFTED 3 62 62 63 #define PSR_RI_SHIFT 64 #define PSR_RI_LEN 63 #define PSR_RI_SHIFT 41 64 #define PSR_RI_LEN 2 65 65 66 66 #define PFM_MASK (~0x3fffffffff) … … 145 145 #ifndef __ASM__ 146 146 147 #ifdef KERNEL148 #include <typedefs.h>149 #else150 #include <sys/types.h>151 #endif152 153 147 /** Processor Status Register. */ 154 148 typedef union { -
kernel/arch/ia64/src/ia64.c
r3666d386 rc0699467 50 50 #include <userspace.h> 51 51 #include <console/console.h> 52 #include < proc/uarg.h>52 #include <abi/proc/uarg.h> 53 53 #include <syscall/syscall.h> 54 54 #include <ddi/irq.h>
Note:
See TracChangeset
for help on using the changeset viewer.