ppc8xx_pic.h 446 B

12345678910111213141516171819
  1. #ifndef _PPC_KERNEL_PPC8xx_H
  2. #define _PPC_KERNEL_PPC8xx_H
  3. #include <linux/irq.h>
  4. #include <linux/interrupt.h>
  5. extern struct hw_interrupt_type ppc8xx_pic;
  6. void m8xx_do_IRQ(struct pt_regs *regs,
  7. int cpu);
  8. int m8xx_get_irq(struct pt_regs *regs);
  9. #ifdef CONFIG_MBX
  10. #include <asm/i8259.h>
  11. #include <asm/io.h>
  12. void mbx_i8259_action(int cpl, void *dev_id, struct pt_regs *regs);
  13. #endif
  14. #endif /* _PPC_KERNEL_PPC8xx_H */