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