1 /* $NetBSD: pic.h,v 1.7 2009/04/19 14:11:37 ad Exp $ */
9 * Structure common to all PIC softcs
16 __cpu_simple_lock_t pic_lock
;
17 void (*pic_hwmask
)(struct pic
*, int);
18 void (*pic_hwunmask
)(struct pic
*, int);
19 void (*pic_addroute
)(struct pic
*, struct cpu_info
*, int, int, int);
20 void (*pic_delroute
)(struct pic
*, struct cpu_info
*, int, int, int);
21 bool (*pic_trymask
)(struct pic
*, int);
22 struct intrstub
*pic_level_stubs
;
23 struct intrstub
*pic_edge_stubs
;
24 struct ioapic_softc
*pic_ioapic
; /* if pic_type == PIC_IOAPIC */
35 extern struct pic i8259_pic
;
36 extern struct pic local_pic
;
37 extern struct pic softintr_pic
;