1 /* 2 * arch/ppc/kernel/xics.h 3 * 4 * Copyright 2000 IBM Corporation. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 9 * 2 of the License, or (at your option) any later version. 10 */ 11 12 #ifndef _PPC_KERNEL_XICS_H 13 #define _PPC_KERNEL_XICS_H 14 15 #include "local_irq.h" 16 17 extern struct hw_interrupt_type xics_pic; 18 extern struct hw_interrupt_type xics_8259_pic; 19 20 void xics_init_IRQ(void); 21 void xics_init_irq_desc(irq_desc_t *); 22 int xics_get_irq(struct pt_regs *); 23 24 #endif /* _PPC_KERNEL_XICS_H */ 25