2011-02-26 07:01:19 +00:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
|
2007-07-22 02:18:57 +00:00
|
|
|
#include <asm/btfixup.h>
|
|
|
|
|
2011-04-18 11:25:44 +00:00
|
|
|
struct irq_bucket {
|
|
|
|
struct irq_bucket *next;
|
|
|
|
unsigned int real_irq;
|
|
|
|
unsigned int irq;
|
|
|
|
unsigned int pil;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SUN4D_MAX_BOARD 10
|
|
|
|
#define SUN4D_MAX_IRQ ((SUN4D_MAX_BOARD + 2) << 5)
|
|
|
|
|
|
|
|
/* Map between the irq identifier used in hw to the
|
|
|
|
* irq_bucket. The map is sufficient large to hold
|
|
|
|
* the sun4d hw identifiers.
|
|
|
|
*/
|
|
|
|
extern struct irq_bucket *irq_map[SUN4D_MAX_IRQ];
|
|
|
|
|
|
|
|
|
2011-02-26 07:02:11 +00:00
|
|
|
/* sun4m specific type definitions */
|
|
|
|
|
|
|
|
/* This maps direct to CPU specific interrupt registers */
|
|
|
|
struct sun4m_irq_percpu {
|
|
|
|
u32 pending;
|
|
|
|
u32 clear;
|
|
|
|
u32 set;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* This maps direct to global interrupt registers */
|
|
|
|
struct sun4m_irq_global {
|
|
|
|
u32 pending;
|
|
|
|
u32 mask;
|
|
|
|
u32 mask_clear;
|
|
|
|
u32 mask_set;
|
|
|
|
u32 interrupt_target;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct sun4m_irq_percpu __iomem *sun4m_irq_percpu[SUN4M_NCPUS];
|
|
|
|
extern struct sun4m_irq_global __iomem *sun4m_irq_global;
|
|
|
|
|
2011-02-26 07:00:19 +00:00
|
|
|
/*
|
|
|
|
* Platform specific irq configuration
|
|
|
|
* The individual platforms assign their platform
|
|
|
|
* specifics in their init functions.
|
|
|
|
*/
|
|
|
|
struct sparc_irq_config {
|
|
|
|
void (*init_timers)(irq_handler_t);
|
2011-02-26 07:01:19 +00:00
|
|
|
unsigned int (*build_device_irq)(struct platform_device *op,
|
|
|
|
unsigned int real_irq);
|
2011-02-26 07:00:19 +00:00
|
|
|
};
|
|
|
|
extern struct sparc_irq_config sparc_irq_config;
|
|
|
|
|
2011-04-18 11:25:44 +00:00
|
|
|
unsigned int irq_alloc(unsigned int real_irq, unsigned int pil);
|
|
|
|
void irq_link(unsigned int irq);
|
|
|
|
void irq_unlink(unsigned int irq);
|
|
|
|
void handler_irq(unsigned int pil, struct pt_regs *regs);
|
2011-02-26 07:00:19 +00:00
|
|
|
|
2007-07-22 02:19:38 +00:00
|
|
|
/* Dave Redman (djhr@tadpole.co.uk)
|
|
|
|
* changed these to function pointers.. it saves cycles and will allow
|
|
|
|
* the irq dependencies to be split into different files at a later date
|
|
|
|
* sun4c_irq.c, sun4m_irq.c etc so we could reduce the kernel size.
|
|
|
|
* Jakub Jelinek (jj@sunsite.mff.cuni.cz)
|
|
|
|
* Changed these to btfixup entities... It saves cycles :)
|
|
|
|
*/
|
|
|
|
|
2007-07-22 02:18:57 +00:00
|
|
|
BTFIXUPDEF_CALL(void, clear_clock_irq, void)
|
|
|
|
BTFIXUPDEF_CALL(void, load_profile_irq, int, unsigned int)
|
|
|
|
|
|
|
|
static inline void clear_clock_irq(void)
|
|
|
|
{
|
|
|
|
BTFIXUP_CALL(clear_clock_irq)();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void load_profile_irq(int cpu, int limit)
|
|
|
|
{
|
|
|
|
BTFIXUP_CALL(load_profile_irq)(cpu, limit);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
BTFIXUPDEF_CALL(void, set_cpu_int, int, int)
|
|
|
|
BTFIXUPDEF_CALL(void, clear_cpu_int, int, int)
|
|
|
|
BTFIXUPDEF_CALL(void, set_irq_udt, int)
|
|
|
|
|
|
|
|
#define set_cpu_int(cpu,level) BTFIXUP_CALL(set_cpu_int)(cpu,level)
|
|
|
|
#define clear_cpu_int(cpu,level) BTFIXUP_CALL(clear_cpu_int)(cpu,level)
|
|
|
|
#define set_irq_udt(cpu) BTFIXUP_CALL(set_irq_udt)(cpu)
|
2011-05-02 00:08:54 +00:00
|
|
|
|
|
|
|
/* All SUN4D IPIs are sent on this IRQ, may be shared with hard IRQs */
|
2011-08-28 22:16:28 +00:00
|
|
|
#define SUN4D_IPI_IRQ 13
|
2011-05-02 00:08:54 +00:00
|
|
|
|
|
|
|
extern void sun4d_ipi_interrupt(void);
|
|
|
|
|
2007-07-22 02:18:57 +00:00
|
|
|
#endif
|