Changeset 124bc22 in mainline for kernel/arch/mips32/include
- Timestamp:
- 2019-04-04T18:08:51Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5d97627
- Parents:
- e064102
- Location:
- kernel/arch/mips32/include/arch
- Files:
-
- 3 edited
-
exception.h (modified) (1 diff)
-
mach/malta/malta.h (modified) (2 diffs)
-
machine_func.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch/exception.h
re064102 r124bc22 57 57 #define EXC_VCED 31 58 58 59 #define INT_SW0 0 60 #define INT_SW1 1 61 #define INT_HW0 2 62 #define INT_HW1 3 63 #define INT_HW2 4 64 #define INT_HW3 5 65 #define INT_HW4 6 66 #define INT_TIMER 7 67 68 #define INTERRUPTS 8 69 #define HW_INTERRUPTS (INTERRUPTS - 3) 70 71 typedef void (* int_handler_t)(unsigned int); 72 extern int_handler_t int_handler[]; 73 59 74 extern void exception(istate_t *istate); 60 75 extern void tlb_refill_entry(void); -
kernel/arch/mips32/include/arch/mach/malta/malta.h
re064102 r124bc22 39 39 #include <arch/machine_func.h> 40 40 #include <arch/mm/page.h> 41 #include <typedefs.h> 41 42 42 43 #define MALTA_PCI_BASE PA2KSEG1(0x18000000UL) … … 47 48 48 49 #define TTY_BASE (MALTA_PCI_BASE + 0x3f8) 49 #define TTY_CPU_INT 250 50 #define TTY_ISA_IRQ 4 51 51 52 #define GT64120_PCI0_INTACK ( MALTA_GT64120_BASE + 0xc34)52 #define GT64120_PCI0_INTACK ((ioport32_t *) (MALTA_GT64120_BASE + 0xc34)) 53 53 54 54 extern struct mips32_machine_ops malta_machine_ops; -
kernel/arch/mips32/include/arch/machine_func.h
re064102 r124bc22 43 43 44 44 #include <typedefs.h> 45 #include <stdbool.h> 45 46 46 47 struct mips32_machine_ops {
Note:
See TracChangeset
for help on using the changeset viewer.
