mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
3a47024791
Support for the SBC610 VPX Single Board Computer from GE Fanuc (PowerPC MPC8641D). A number of MPC8641D based route interrupts for on-board interrupts through a FPGA based interrupt controller, which is chained with the MPC8641D's mpic. This patch provides a basic driver to allow basic routing of interrupts to the mpic. Signed-off-by: Martyn Welch <martyn.welch@gefanuc.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11 lines
231 B
C
11 lines
231 B
C
#ifndef __GEF_PIC_H__
|
|
#define __GEF_PIC_H__
|
|
|
|
#include <linux/init.h>
|
|
|
|
void gef_pic_cascade(unsigned int, struct irq_desc *);
|
|
unsigned int gef_pic_get_irq(void);
|
|
void gef_pic_init(struct device_node *);
|
|
|
|
#endif /* __GEF_PIC_H__ */
|
|
|