of/irq: Replace of_irq with of_phandle_args
[deliverable/linux.git] / include / linux / of_irq.h
CommitLineData
e3873444
GL
1#ifndef __OF_IRQ_H
2#define __OF_IRQ_H
3
e3873444 4#include <linux/types.h>
7dc2e113 5#include <linux/errno.h>
530719b2 6#include <linux/irq.h>
d593f25f 7#include <linux/irqdomain.h>
7dc2e113 8#include <linux/ioport.h>
e3873444
GL
9#include <linux/of.h>
10
c71a54b0
RH
11typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *);
12
7dc2e113
GL
13/*
14 * Workarounds only applied to 32bit powermac machines
15 */
16#define OF_IMAP_OLDWORLD_MAC 0x00000001
17#define OF_IMAP_NO_PHANDLE 0x00000002
18
19#if defined(CONFIG_PPC32) && defined(CONFIG_PPC_PMAC)
20extern unsigned int of_irq_workarounds;
21extern struct device_node *of_irq_dflt_pic;
0c02c800 22extern int of_irq_parse_oldworld(struct device_node *device, int index,
530210c7 23 struct of_phandle_args *out_irq);
7dc2e113
GL
24#else /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
25#define of_irq_workarounds (0)
26#define of_irq_dflt_pic (NULL)
0c02c800 27static inline int of_irq_parse_oldworld(struct device_node *device, int index,
530210c7 28 struct of_phandle_args *out_irq)
7dc2e113
GL
29{
30 return -EINVAL;
31}
32#endif /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
33
34
0c02c800 35extern int of_irq_parse_raw(struct device_node *parent, const __be32 *intspec,
d2e41518 36 u32 ointsize, const __be32 *addr,
530210c7 37 struct of_phandle_args *out_irq);
0c02c800 38extern int of_irq_parse_one(struct device_node *device, int index,
530210c7 39 struct of_phandle_args *out_irq);
e3873444
GL
40extern unsigned int irq_create_of_mapping(struct device_node *controller,
41 const u32 *intspec,
42 unsigned int intsize);
7dc2e113
GL
43extern int of_irq_to_resource(struct device_node *dev, int index,
44 struct resource *r);
52f6537c
AS
45extern int of_irq_count(struct device_node *dev);
46extern int of_irq_to_resource_table(struct device_node *dev,
47 struct resource *res, int nr_irqs);
e3873444 48
c71a54b0 49extern void of_irq_init(const struct of_device_id *matches);
08a543ad 50
b0b8c960
RH
51#if defined(CONFIG_OF)
52/*
53 * irq_of_parse_and_map() is used by all OF enabled platforms; but SPARC
54 * implements it differently. However, the prototype is the same for all,
55 * so declare it here regardless of the CONFIG_OF_IRQ setting.
56 */
57extern unsigned int irq_of_parse_and_map(struct device_node *node, int index);
58extern struct device_node *of_irq_find_parent(struct device_node *child);
766644d2
TA
59
60#else /* !CONFIG_OF */
61static inline unsigned int irq_of_parse_and_map(struct device_node *dev,
62 int index)
63{
64 return 0;
65}
62861095
LJ
66
67static inline void *of_irq_find_parent(struct device_node *child)
68{
69 return NULL;
70}
766644d2
TA
71#endif /* !CONFIG_OF */
72
e3873444 73#endif /* __OF_IRQ_H */
This page took 0.308758 seconds and 5 git commands to generate.