Changeset 3e828ea in mainline for kernel/arch/amd64/include
- Timestamp:
- 2019-09-23T12:49:29Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9be2358
- Parents:
- 9259d20 (diff), 1a4ec93f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- Jiri Svoboda <jiri@…> (2019-09-22 12:49:07)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-09-23 12:49:29)
- Location:
- kernel/arch/amd64/include/arch
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/arch/interrupt.h
r9259d20 r3e828ea 61 61 /* NS16550 at COM1 */ 62 62 #define IRQ_NS16550 4 63 #define IRQ_PIC _SPUR763 #define IRQ_PIC0_SPUR 7 64 64 #define IRQ_MOUSE 12 65 #define IRQ_PIC1_SPUR 15 65 66 66 67 /* This one must have four least significant bits set to ones */ … … 77 78 #define VECTOR_PF (IVT_EXCBASE + EXC_PF) 78 79 #define VECTOR_CLK (IVT_IRQBASE + IRQ_CLK) 79 #define VECTOR_PIC_SPUR (IVT_IRQBASE + IRQ_PIC_SPUR) 80 #define VECTOR_PIC0_SPUR (IVT_IRQBASE + IRQ_PIC0_SPUR) 81 #define VECTOR_PIC1_SPUR (IVT_IRQBASE + IRQ_PIC1_SPUR) 80 82 #define VECTOR_SYSCALL IVT_FREEBASE 81 83 #define VECTOR_TLB_SHOOTDOWN_IPI (IVT_FREEBASE + 1) 82 84 #define VECTOR_DEBUG_IPI (IVT_FREEBASE + 2) 83 85 84 extern void (*disable_irqs_function)(uint16_t);85 extern void (*enable_irqs_function)(uint16_t);86 extern void (*eoi_function)(void);87 extern const char *irqs_info;88 89 86 extern void interrupt_init(void); 90 extern void trap_virtual_enable_irqs(uint16_t);91 extern void trap_virtual_disable_irqs(uint16_t);92 87 93 88 #endif -
kernel/arch/amd64/include/arch/mm/as.h
r9259d20 r3e828ea 40 40 41 41 #define KERNEL_ADDRESS_SPACE_SHADOWED_ARCH 0 42 #define KERNEL_SEPARATE_PTL0_ARCH 0 42 43 43 44 #define KERNEL_ADDRESS_SPACE_START_ARCH UINT64_C(0xffff800000000000) -
kernel/arch/amd64/include/arch/mm/page.h
r9259d20 r3e828ea 37 37 38 38 #include <arch/mm/frame.h> 39 #include <trace.h>40 39 41 40 #define PAGE_WIDTH FRAME_WIDTH … … 164 163 #ifndef __ASSEMBLER__ 165 164 165 #include <arch/interrupt.h> 166 166 #include <mm/mm.h> 167 #include < arch/interrupt.h>167 #include <trace.h> 168 168 #include <typedefs.h> 169 169
Note:
See TracChangeset
for help on using the changeset viewer.
