2010-06-19 01:09:59 +08:00
|
|
|
#ifndef __OF_IRQ_H
|
|
|
|
#define __OF_IRQ_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
2010-06-08 21:48:06 +08:00
|
|
|
#include <linux/errno.h>
|
2010-10-22 01:34:55 +08:00
|
|
|
#include <linux/irq.h>
|
2012-02-24 23:24:17 +08:00
|
|
|
#include <linux/irqdomain.h>
|
2010-06-08 21:48:06 +08:00
|
|
|
#include <linux/ioport.h>
|
2010-06-19 01:09:59 +08:00
|
|
|
#include <linux/of.h>
|
|
|
|
|
2011-09-21 04:13:50 +08:00
|
|
|
typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *);
|
|
|
|
|
2010-06-08 21:48:06 +08:00
|
|
|
/*
|
|
|
|
* Workarounds only applied to 32bit powermac machines
|
|
|
|
*/
|
|
|
|
#define OF_IMAP_OLDWORLD_MAC 0x00000001
|
|
|
|
#define OF_IMAP_NO_PHANDLE 0x00000002
|
|
|
|
|
|
|
|
#if defined(CONFIG_PPC32) && defined(CONFIG_PPC_PMAC)
|
|
|
|
extern unsigned int of_irq_workarounds;
|
|
|
|
extern struct device_node *of_irq_dflt_pic;
|
2013-09-20 00:22:36 +08:00
|
|
|
extern int of_irq_parse_oldworld(struct device_node *device, int index,
|
2013-09-15 23:39:11 +08:00
|
|
|
struct of_phandle_args *out_irq);
|
2010-06-08 21:48:06 +08:00
|
|
|
#else /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
|
|
|
|
#define of_irq_workarounds (0)
|
|
|
|
#define of_irq_dflt_pic (NULL)
|
2013-09-20 00:22:36 +08:00
|
|
|
static inline int of_irq_parse_oldworld(struct device_node *device, int index,
|
2013-09-15 23:39:11 +08:00
|
|
|
struct of_phandle_args *out_irq)
|
2010-06-08 21:48:06 +08:00
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
|
|
|
|
|
2013-09-16 05:32:39 +08:00
|
|
|
extern int of_irq_parse_raw(const __be32 *addr, struct of_phandle_args *out_irq);
|
2013-09-20 00:22:36 +08:00
|
|
|
extern int of_irq_parse_one(struct device_node *device, int index,
|
2013-09-15 23:39:11 +08:00
|
|
|
struct of_phandle_args *out_irq);
|
2013-09-15 23:55:53 +08:00
|
|
|
extern unsigned int irq_create_of_mapping(struct of_phandle_args *irq_data);
|
2010-06-08 21:48:06 +08:00
|
|
|
extern int of_irq_to_resource(struct device_node *dev, int index,
|
|
|
|
struct resource *r);
|
2010-10-11 11:35:05 +08:00
|
|
|
extern int of_irq_to_resource_table(struct device_node *dev,
|
|
|
|
struct resource *res, int nr_irqs);
|
2010-06-19 01:09:59 +08:00
|
|
|
|
2011-09-21 04:13:50 +08:00
|
|
|
extern void of_irq_init(const struct of_device_id *matches);
|
2011-07-26 17:19:06 +08:00
|
|
|
|
2013-11-08 02:13:27 +08:00
|
|
|
#ifdef CONFIG_OF_IRQ
|
|
|
|
extern int of_irq_count(struct device_node *dev);
|
2014-04-24 06:57:41 +08:00
|
|
|
extern int of_irq_get(struct device_node *dev, int index);
|
2014-05-20 18:42:02 +08:00
|
|
|
extern int of_irq_get_byname(struct device_node *dev, const char *name);
|
2013-11-08 02:13:27 +08:00
|
|
|
#else
|
|
|
|
static inline int of_irq_count(struct device_node *dev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-04-24 06:57:41 +08:00
|
|
|
static inline int of_irq_get(struct device_node *dev, int index)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-05-20 18:42:02 +08:00
|
|
|
static inline int of_irq_get_byname(struct device_node *dev, const char *name)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2013-11-08 02:13:27 +08:00
|
|
|
#endif
|
|
|
|
|
2013-09-04 23:52:57 +08:00
|
|
|
#if defined(CONFIG_OF)
|
|
|
|
/*
|
|
|
|
* irq_of_parse_and_map() is used by all OF enabled platforms; but SPARC
|
|
|
|
* implements it differently. However, the prototype is the same for all,
|
|
|
|
* so declare it here regardless of the CONFIG_OF_IRQ setting.
|
|
|
|
*/
|
|
|
|
extern unsigned int irq_of_parse_and_map(struct device_node *node, int index);
|
|
|
|
extern struct device_node *of_irq_find_parent(struct device_node *child);
|
2012-03-25 23:02:49 +08:00
|
|
|
|
|
|
|
#else /* !CONFIG_OF */
|
|
|
|
static inline unsigned int irq_of_parse_and_map(struct device_node *dev,
|
|
|
|
int index)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2012-08-08 20:44:59 +08:00
|
|
|
|
|
|
|
static inline void *of_irq_find_parent(struct device_node *child)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-03-25 23:02:49 +08:00
|
|
|
#endif /* !CONFIG_OF */
|
|
|
|
|
2010-06-19 01:09:59 +08:00
|
|
|
#endif /* __OF_IRQ_H */
|