blob: 1073599a7be93e6fa2de4e40d88793e5fd62b531 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-parisc/irq.h
3 *
4 * Copyright 2005 Matthew Wilcox <matthew@wil.cx>
5 */
6
7#ifndef _ASM_PARISC_IRQ_H
8#define _ASM_PARISC_IRQ_H
9
James Bottomleyc2ab64d2005-11-17 16:28:37 -050010#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/types.h>
12
13#define NO_IRQ (-1)
14
15#ifdef CONFIG_GSC
16#define GSC_IRQ_BASE 16
17#define GSC_IRQ_MAX 63
18#define CPU_IRQ_BASE 64
19#else
20#define CPU_IRQ_BASE 16
21#endif
22
23#define TIMER_IRQ (CPU_IRQ_BASE + 0)
24#define IPI_IRQ (CPU_IRQ_BASE + 1)
25#define CPU_IRQ_MAX (CPU_IRQ_BASE + (BITS_PER_LONG - 1))
26
27#define NR_IRQS (CPU_IRQ_MAX + 1)
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static __inline__ int irq_canonicalize(int irq)
30{
31 return (irq == 2) ? 9 : irq;
32}
33
Kyle McMartin5cfe87d2006-08-13 22:25:45 -040034struct irq_chip;
Thomas Gleixner4c4231e2011-02-06 20:45:52 +000035struct irq_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Thomas Gleixner4c4231e2011-02-06 20:45:52 +000037void cpu_ack_irq(struct irq_data *d);
38void cpu_eoi_irq(struct irq_data *d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40extern int txn_alloc_irq(unsigned int nbits);
41extern int txn_claim_irq(int);
42extern unsigned int txn_alloc_data(unsigned int);
43extern unsigned long txn_alloc_addr(unsigned int);
James Bottomleyc2ab64d2005-11-17 16:28:37 -050044extern unsigned long txn_affinity_addr(unsigned int irq, int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Kyle McMartin5cfe87d2006-08-13 22:25:45 -040046extern int cpu_claim_irq(unsigned int irq, struct irq_chip *, void *);
Thomas Gleixner4c4231e2011-02-06 20:45:52 +000047extern int cpu_check_affinity(struct irq_data *d, const struct cpumask *dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/* soft power switch support (power.c) */
50extern struct tasklet_struct power_tasklet;
51
52#endif /* _ASM_PARISC_IRQ_H */