Changeset 53ad43c in mainline for kernel/arch/ia64
- Timestamp:
- 2018-03-08T18:54:30Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ef16903
- Parents:
- e0a4686
- Location:
- kernel/arch/ia64/include/arch
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/arch/interrupt.h
re0a4686 r53ad43c 36 36 #define KERN_ia64_INTERRUPT_H_ 37 37 38 #ifndef __AS M__38 #ifndef __ASSEMBLER__ 39 39 #include <arch/istate.h> 40 40 #include <stdint.h> … … 83 83 #define EOI 0 /**< The actual value doesn't matter. */ 84 84 85 #ifndef __AS M__85 #ifndef __ASSEMBLER__ 86 86 extern void *ivt; 87 87 -
kernel/arch/ia64/include/arch/mm/asid.h
re0a4686 r53ad43c 36 36 #define KERN_ia64_ASID_H_ 37 37 38 #ifndef __AS M__38 #ifndef __ASSEMBLER__ 39 39 40 40 #include <stdint.h> … … 43 43 typedef uint32_t rid_t; 44 44 45 #endif /* __AS M__ */45 #endif /* __ASSEMBLER__ */ 46 46 47 47 /** -
kernel/arch/ia64/include/arch/mm/frame.h
re0a4686 r53ad43c 41 41 #define FRAME_LOWPRIO 0 42 42 43 #ifndef __AS M__43 #ifndef __ASSEMBLER__ 44 44 45 45 #include <typedefs.h> … … 51 51 #define physmem_print() 52 52 53 #endif /* __AS M__ */53 #endif /* __ASSEMBLER__ */ 54 54 55 55 #endif -
kernel/arch/ia64/include/arch/mm/page.h
re0a4686 r53ad43c 39 39 #include <arch/mm/frame.h> 40 40 41 #ifndef __AS M__41 #ifndef __ASSEMBLER__ 42 42 #include <assert.h> 43 43 #endif … … 55 55 #define VA2VRN(va) ((va) >> VRN_SHIFT) 56 56 57 #ifdef __AS M__57 #ifdef __ASSEMBLER__ 58 58 #define VRN_KERNEL 7 59 59 #else … … 84 84 #define AR_WRITE 0x02 85 85 86 #ifndef __AS M__86 #ifndef __ASSEMBLER__ 87 87 88 88 #include <arch/mm/as.h> … … 297 297 extern void vhpt_set_record(vhpt_entry_t *v, uintptr_t page, asid_t asid, uintptr_t frame, int flags); 298 298 299 #endif /* __AS M__ */299 #endif /* __ASSEMBLER__ */ 300 300 301 301 #endif -
kernel/arch/ia64/include/arch/register.h
re0a4686 r53ad43c 143 143 /* CR82-CR127 are reserved */ 144 144 145 #ifndef __AS M__145 #ifndef __ASSEMBLER__ 146 146 147 147 /** Processor Status Register. */ … … 269 269 } cpuid3_t; 270 270 271 #endif /* !__AS M__ */271 #endif /* !__ASSEMBLER__ */ 272 272 273 273 #endif
Note:
See TracChangeset
for help on using the changeset viewer.