2005-04-16 15:20:36 -07:00
|
|
|
#ifndef __ASM_SH_HW_IRQ_H
|
|
|
|
#define __ASM_SH_HW_IRQ_H
|
|
|
|
|
2007-07-18 01:25:09 -07:00
|
|
|
#include <linux/init.h>
|
2008-10-01 00:13:54 -07:00
|
|
|
#include <linux/sh_intc.h>
|
2006-10-05 23:31:16 -07:00
|
|
|
#include <asm/atomic.h>
|
|
|
|
|
|
|
|
extern atomic_t irq_err_count;
|
|
|
|
|
2007-06-15 02:56:19 -07:00
|
|
|
struct ipr_data {
|
|
|
|
unsigned char irq;
|
|
|
|
unsigned char ipr_idx; /* Index for the IPR registered */
|
|
|
|
unsigned char shift; /* Number of bits to shift the data */
|
|
|
|
unsigned char priority; /* The priority */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ipr_desc {
|
|
|
|
unsigned long *ipr_offsets;
|
|
|
|
unsigned int nr_offsets;
|
|
|
|
struct ipr_data *ipr_data;
|
|
|
|
unsigned int nr_irqs;
|
|
|
|
struct irq_chip chip;
|
|
|
|
};
|
|
|
|
|
|
|
|
void register_ipr_controller(struct ipr_desc *);
|
|
|
|
|
2007-07-18 01:57:34 -07:00
|
|
|
void __init plat_irq_setup(void);
|
2008-04-24 05:30:09 -07:00
|
|
|
void __init plat_irq_setup_sh3(void);
|
2008-10-01 00:13:54 -07:00
|
|
|
void __init plat_irq_setup_pins(int mode);
|
2007-07-18 01:57:34 -07:00
|
|
|
|
2007-07-31 01:11:21 -07:00
|
|
|
enum { IRQ_MODE_IRQ, IRQ_MODE_IRQ7654, IRQ_MODE_IRQ3210,
|
2007-09-09 20:03:50 -07:00
|
|
|
IRQ_MODE_IRL7654_MASK, IRQ_MODE_IRL3210_MASK,
|
2007-07-31 01:11:21 -07:00
|
|
|
IRQ_MODE_IRL7654, IRQ_MODE_IRL3210 };
|
2007-07-19 20:10:29 -07:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif /* __ASM_SH_HW_IRQ_H */
|