blob: c4de8f12e17647cda679c09b088ab2746cbccfb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef _PPC_KERNEL_PPC8xx_H
#define _PPC_KERNEL_PPC8xx_H
#include "local_irq.h"
extern struct hw_interrupt_type ppc8xx_pic;
void m8xx_pic_init(void);
void m8xx_do_IRQ(struct pt_regs *regs,
int cpu,
int isfake);
int m8xx_get_irq(struct pt_regs *regs);
#ifdef CONFIG_MBX
#include "i8259.h"
#include <asm/io.h>
void mbx_i8259_action(int cpl, void *dev_id, struct pt_regs *regs);
#endif
#endif /* _PPC_KERNEL_PPC8xx_H */
|