Changeset a33f0a6 in mainline for kernel/arch/mips64/include/interrupt.h
- Timestamp:
- 2011-08-03T17:34:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1940326
- Parents:
- 52a79081 (diff), 3fab770 (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. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips64/include/interrupt.h
r52a79081 ra33f0a6 1 1 /* 2 * Copyright (c) 200 6Jakub Jermar2 * Copyright (c) 2003-2004 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup sparc6429 /** @addtogroup mips64 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef KERN_ sparc64_FHC_H_36 #define KERN_ sparc64_FHC_H_35 #ifndef KERN_mips64_INTERRUPT_H_ 36 #define KERN_mips64_INTERRUPT_H_ 37 37 38 38 #include <typedefs.h> 39 #include < genarch/ofw/ofw_tree.h>39 #include <arch/exception.h> 40 40 41 typedef struct { 42 volatile uint32_t *uart_imap; 43 } fhc_t; 41 #define IVT_ITEMS 32 42 #define IVT_FIRST 0 44 43 45 extern fhc_t *central_fhc; 44 #define VECTOR_TLB_SHOOTDOWN_IPI EXC_Int 46 45 47 extern fhc_t *fhc_init(ofw_tree_node_t *); 48 extern void fhc_enable_interrupt(fhc_t *, int); 49 extern void fhc_clear_interrupt(void *, int); 46 extern function virtual_timer_fnc; 47 extern uint32_t count_hi; 48 49 extern void interrupt_init(void); 50 50 51 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.