Blame view

include/linux/of_irq.h 3.6 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
e38734449   Grant Likely   of/irq: Move irq_...
2
3
  #ifndef __OF_IRQ_H
  #define __OF_IRQ_H
e38734449   Grant Likely   of/irq: Move irq_...
4
  #include <linux/types.h>
7dc2e1134   Grant Likely   of/irq: merge irq...
5
  #include <linux/errno.h>
530719b23   Grant Likely   of/irq: of_irq.c ...
6
  #include <linux/irq.h>
d593f25ff   Grant Likely   irq_domain: Centr...
7
  #include <linux/irqdomain.h>
7dc2e1134   Grant Likely   of/irq: merge irq...
8
  #include <linux/ioport.h>
e38734449   Grant Likely   of/irq: Move irq_...
9
  #include <linux/of.h>
df3ed9323   Rob Herring   Partially Revert ...
10
  typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *);
c71a54b08   Rob Herring   of/irq: introduce...
11

7dc2e1134   Grant Likely   of/irq: merge irq...
12
13
14
15
16
17
18
19
20
  /*
   * 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;
0c02c8007   Grant Likely   of/irq: Rename of...
21
  extern int of_irq_parse_oldworld(struct device_node *device, int index,
530210c78   Grant Likely   of/irq: Replace o...
22
  			       struct of_phandle_args *out_irq);
7dc2e1134   Grant Likely   of/irq: merge irq...
23
24
25
  #else /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
  #define of_irq_workarounds (0)
  #define of_irq_dflt_pic (NULL)
0c02c8007   Grant Likely   of/irq: Rename of...
26
  static inline int of_irq_parse_oldworld(struct device_node *device, int index,
530210c78   Grant Likely   of/irq: Replace o...
27
  				      struct of_phandle_args *out_irq)
7dc2e1134   Grant Likely   of/irq: merge irq...
28
29
30
31
  {
  	return -EINVAL;
  }
  #endif /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
236161320   Grant Likely   of/irq: Refactor ...
32
  extern int of_irq_parse_raw(const __be32 *addr, struct of_phandle_args *out_irq);
0c02c8007   Grant Likely   of/irq: Rename of...
33
  extern int of_irq_parse_one(struct device_node *device, int index,
530210c78   Grant Likely   of/irq: Replace o...
34
  			  struct of_phandle_args *out_irq);
e6d30ab1e   Grant Likely   of/irq: simplify ...
35
  extern unsigned int irq_create_of_mapping(struct of_phandle_args *irq_data);
7dc2e1134   Grant Likely   of/irq: merge irq...
36
37
  extern int of_irq_to_resource(struct device_node *dev, int index,
  			      struct resource *r);
e38734449   Grant Likely   of/irq: Move irq_...
38

c71a54b08   Rob Herring   of/irq: introduce...
39
  extern void of_irq_init(const struct of_device_id *matches);
08a543ad3   Grant Likely   irq: add irq_doma...
40

a8d3f362f   Rob Herring   dt/irq: add empty...
41
42
  #ifdef CONFIG_OF_IRQ
  extern int of_irq_count(struct device_node *dev);
9ec36cafe   Rob Herring   of/irq: do irq re...
43
  extern int of_irq_get(struct device_node *dev, int index);
ad69674e7   Grygorii Strashko   of/irq: do irq re...
44
  extern int of_irq_get_byname(struct device_node *dev, const char *name);
d616a703a   Geert Uytterhoeven   of: Add dummy of_...
45
46
  extern int of_irq_to_resource_table(struct device_node *dev,
  		struct resource *res, int nr_irqs);
4c3141e09   Carlo Caione   of/irq: Export of...
47
  extern struct device_node *of_irq_find_parent(struct device_node *child);
48ae34fb3   Marc Zyngier   of/irq: Add suppo...
48
49
50
  extern struct irq_domain *of_msi_get_domain(struct device *dev,
  					    struct device_node *np,
  					    enum irq_domain_bus_token token);
82b9b4243   Marc Zyngier   of/irq: Use the m...
51
52
  extern struct irq_domain *of_msi_map_get_device_domain(struct device *dev,
  						       u32 rid);
f9f9f11dc   Jonas Gorski   of/irq: move of_m...
53
  extern void of_msi_configure(struct device *dev, struct device_node *np);
eaddb5725   Rob Herring   of/irq: move of_m...
54
  u32 of_msi_map_rid(struct device *dev, struct device_node *msi_np, u32 rid_in);
a8d3f362f   Rob Herring   dt/irq: add empty...
55
56
57
58
59
  #else
  static inline int of_irq_count(struct device_node *dev)
  {
  	return 0;
  }
9ec36cafe   Rob Herring   of/irq: do irq re...
60
61
62
63
  static inline int of_irq_get(struct device_node *dev, int index)
  {
  	return 0;
  }
ad69674e7   Grygorii Strashko   of/irq: do irq re...
64
65
66
67
  static inline int of_irq_get_byname(struct device_node *dev, const char *name)
  {
  	return 0;
  }
d616a703a   Geert Uytterhoeven   of: Add dummy of_...
68
69
70
71
72
  static inline int of_irq_to_resource_table(struct device_node *dev,
  					   struct resource *res, int nr_irqs)
  {
  	return 0;
  }
4c3141e09   Carlo Caione   of/irq: Export of...
73
74
75
76
  static inline void *of_irq_find_parent(struct device_node *child)
  {
  	return NULL;
  }
48ae34fb3   Marc Zyngier   of/irq: Add suppo...
77
78
79
80
81
82
  static inline struct irq_domain *of_msi_get_domain(struct device *dev,
  						   struct device_node *np,
  						   enum irq_domain_bus_token token)
  {
  	return NULL;
  }
82b9b4243   Marc Zyngier   of/irq: Use the m...
83
84
85
86
87
  static inline struct irq_domain *of_msi_map_get_device_domain(struct device *dev,
  							      u32 rid)
  {
  	return NULL;
  }
f9f9f11dc   Jonas Gorski   of/irq: move of_m...
88
89
90
  static inline void of_msi_configure(struct device *dev, struct device_node *np)
  {
  }
eaddb5725   Rob Herring   of/irq: move of_m...
91
92
93
94
95
  static inline u32 of_msi_map_rid(struct device *dev,
  				 struct device_node *msi_np, u32 rid_in)
  {
  	return rid_in;
  }
a8d3f362f   Rob Herring   dt/irq: add empty...
96
  #endif
62ebf9319   Jonas Gorski   of/irq: fix guard...
97
  #if defined(CONFIG_OF_IRQ) || defined(CONFIG_SPARC)
b0b8c960f   Rob Herring   of: clean-up ifde...
98
99
100
101
102
103
  /*
   * 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);
766644d2d   Thomas Abraham   of/irq: add empty...
104

62ebf9319   Jonas Gorski   of/irq: fix guard...
105
  #else /* !CONFIG_OF && !CONFIG_SPARC */
766644d2d   Thomas Abraham   of/irq: add empty...
106
107
108
109
110
111
  static inline unsigned int irq_of_parse_and_map(struct device_node *dev,
  						int index)
  {
  	return 0;
  }
  #endif /* !CONFIG_OF */
e38734449   Grant Likely   of/irq: Move irq_...
112
  #endif /* __OF_IRQ_H */