2005-04-16 18:20:36 -04:00
|
|
|
#ifndef __ASM_SH_HW_IRQ_H
|
|
|
|
#define __ASM_SH_HW_IRQ_H
|
|
|
|
|
2007-07-18 04:25:09 -04:00
|
|
|
#include <linux/init.h>
|
2008-10-01 03:13:54 -04:00
|
|
|
#include <linux/sh_intc.h>
|
2006-10-06 02:31:16 -04:00
|
|
|
#include <asm/atomic.h>
|
|
|
|
|
|
|
|
extern atomic_t irq_err_count;
|
|
|
|
|
2007-06-15 05:56:19 -04: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 04:57:34 -04:00
|
|
|
void __init plat_irq_setup(void);
|
2008-04-24 08:30:09 -04:00
|
|
|
void __init plat_irq_setup_sh3(void);
|
2008-10-01 03:13:54 -04:00
|
|
|
void __init plat_irq_setup_pins(int mode);
|
2007-07-18 04:57:34 -04:00
|
|
|
|
2007-07-31 04:11:21 -04:00
|
|
|
enum { IRQ_MODE_IRQ, IRQ_MODE_IRQ7654, IRQ_MODE_IRQ3210,
|
2007-09-09 23:03:50 -04:00
|
|
|
IRQ_MODE_IRL7654_MASK, IRQ_MODE_IRL3210_MASK,
|
2007-07-31 04:11:21 -04:00
|
|
|
IRQ_MODE_IRL7654, IRQ_MODE_IRL3210 };
|
2007-07-19 23:10:29 -04:00
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
#endif /* __ASM_SH_HW_IRQ_H */
|