irq.h 3.0 KB
Newer Older
1 2
#include <linux/platform_device.h>

3
#include <asm/btfixup.h>
4
#include <asm/cpu_type.h>
5

S
Sam Ravnborg 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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];


23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/* 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;

44 45 46 47 48
/* The following definitions describe the individual platform features: */
#define FEAT_L10_CLOCKSOURCE (1 << 0) /* L10 timer is used as a clocksource */
#define FEAT_L10_CLOCKEVENT  (1 << 1) /* L10 timer is used as a clockevent */
#define FEAT_L14_ONESHOT     (1 << 2) /* L14 timer clockevent can oneshot */

49
/*
50
 * Platform specific configuration
51 52 53
 * The individual platforms assign their platform
 * specifics in their init functions.
 */
54
struct sparc_config {
55
	void (*init_timers)(void);
56 57
	unsigned int (*build_device_irq)(struct platform_device *op,
	                                 unsigned int real_irq);
58 59 60 61 62 63 64 65 66 67 68 69

	/* generic clockevent features - see FEAT_* above */
	int features;

	/* clock rate used for clock event timer */
	int clock_rate;

	/* one period for clock source timer */
	unsigned int cs_period;

	/* function to obtain offsett for cs period */
	unsigned int (*get_cycles_offset)(void);
70
};
71
extern struct sparc_config sparc_config;
72

S
Sam Ravnborg 已提交
73 74 75 76
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);
77

78 79 80
/* 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
81
 * sun4m_irq.c etc so we could reduce the kernel size.
82 83 84 85
 * Jakub Jelinek (jj@sunsite.mff.cuni.cz)
 * Changed these to btfixup entities... It saves cycles :)
 */

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
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)

#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)
105 106

/* All SUN4D IPIs are sent on this IRQ, may be shared with hard IRQs */
107
#define SUN4D_IPI_IRQ 13
108 109 110

extern void sun4d_ipi_interrupt(void);

111
#endif