blob: 42851122bbd9c35b184a22454540fbc182e1c7e9 [file] [log] [blame]
Sam Ravnborg1d059952011-02-25 23:01:19 -08001#include <linux/platform_device.h>
2
Al Viro32231a62007-07-21 19:18:57 -07003#include <asm/btfixup.h>
4
Sam Ravnborg6baa9b22011-04-18 11:25:44 +00005struct irq_bucket {
6 struct irq_bucket *next;
7 unsigned int real_irq;
8 unsigned int irq;
9 unsigned int pil;
10};
11
12#define SUN4D_MAX_BOARD 10
13#define SUN4D_MAX_IRQ ((SUN4D_MAX_BOARD + 2) << 5)
14
15/* Map between the irq identifier used in hw to the
16 * irq_bucket. The map is sufficient large to hold
17 * the sun4d hw identifiers.
18 */
19extern struct irq_bucket *irq_map[SUN4D_MAX_IRQ];
20
21
Sam Ravnborg0399bb52011-02-25 23:02:11 -080022/* sun4m specific type definitions */
23
24/* This maps direct to CPU specific interrupt registers */
25struct sun4m_irq_percpu {
26 u32 pending;
27 u32 clear;
28 u32 set;
29};
30
31/* This maps direct to global interrupt registers */
32struct sun4m_irq_global {
33 u32 pending;
34 u32 mask;
35 u32 mask_clear;
36 u32 mask_set;
37 u32 interrupt_target;
38};
39
40extern struct sun4m_irq_percpu __iomem *sun4m_irq_percpu[SUN4M_NCPUS];
41extern struct sun4m_irq_global __iomem *sun4m_irq_global;
42
Sam Ravnborgbbdc2662011-02-25 23:00:19 -080043/*
44 * Platform specific irq configuration
45 * The individual platforms assign their platform
46 * specifics in their init functions.
47 */
48struct sparc_irq_config {
49 void (*init_timers)(irq_handler_t);
Sam Ravnborg1d059952011-02-25 23:01:19 -080050 unsigned int (*build_device_irq)(struct platform_device *op,
51 unsigned int real_irq);
Sam Ravnborgbbdc2662011-02-25 23:00:19 -080052};
53extern struct sparc_irq_config sparc_irq_config;
54
Sam Ravnborg6baa9b22011-04-18 11:25:44 +000055unsigned int irq_alloc(unsigned int real_irq, unsigned int pil);
56void irq_link(unsigned int irq);
57void irq_unlink(unsigned int irq);
58void handler_irq(unsigned int pil, struct pt_regs *regs);
Sam Ravnborgbbdc2662011-02-25 23:00:19 -080059
Al Viro0f516812007-07-21 19:19:38 -070060/* Dave Redman (djhr@tadpole.co.uk)
61 * changed these to function pointers.. it saves cycles and will allow
62 * the irq dependencies to be split into different files at a later date
63 * sun4c_irq.c, sun4m_irq.c etc so we could reduce the kernel size.
64 * Jakub Jelinek (jj@sunsite.mff.cuni.cz)
65 * Changed these to btfixup entities... It saves cycles :)
66 */
67
Al Viro32231a62007-07-21 19:18:57 -070068BTFIXUPDEF_CALL(void, clear_clock_irq, void)
Al Viro32231a62007-07-21 19:18:57 -070069BTFIXUPDEF_CALL(void, load_profile_irq, int, unsigned int)
70
Al Viro32231a62007-07-21 19:18:57 -070071static inline void clear_clock_irq(void)
72{
73 BTFIXUP_CALL(clear_clock_irq)();
74}
75
Al Viro32231a62007-07-21 19:18:57 -070076static inline void load_profile_irq(int cpu, int limit)
77{
78 BTFIXUP_CALL(load_profile_irq)(cpu, limit);
79}
80
Al Viro32231a62007-07-21 19:18:57 -070081#ifdef CONFIG_SMP
82BTFIXUPDEF_CALL(void, set_cpu_int, int, int)
83BTFIXUPDEF_CALL(void, clear_cpu_int, int, int)
84BTFIXUPDEF_CALL(void, set_irq_udt, int)
85
86#define set_cpu_int(cpu,level) BTFIXUP_CALL(set_cpu_int)(cpu,level)
87#define clear_cpu_int(cpu,level) BTFIXUP_CALL(clear_cpu_int)(cpu,level)
88#define set_irq_udt(cpu) BTFIXUP_CALL(set_irq_udt)(cpu)
Daniel Hellstrom55dd23e2011-05-02 00:08:54 +000089
90/* All SUN4D IPIs are sent on this IRQ, may be shared with hard IRQs */
Kjetil Oftedal38f7f8f2011-08-29 00:16:28 +020091#define SUN4D_IPI_IRQ 13
Daniel Hellstrom55dd23e2011-05-02 00:08:54 +000092
93extern void sun4d_ipi_interrupt(void);
94
Al Viro32231a62007-07-21 19:18:57 -070095#endif