irqdomain.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. /*
  2. * irq_domain - IRQ translation domains
  3. *
  4. * Translation infrastructure between hw and linux irq numbers. This is
  5. * helpful for interrupt controllers to implement mapping between hardware
  6. * irq numbers and the Linux irq number space.
  7. *
  8. * irq_domains also have a hook for translating device tree interrupt
  9. * representation into a hardware irq number that can be mapped back to a
  10. * Linux irq number without any extra platform support code.
  11. *
  12. * Interrupt controller "domain" data structure. This could be defined as a
  13. * irq domain controller. That is, it handles the mapping between hardware
  14. * and virtual interrupt numbers for a given interrupt domain. The domain
  15. * structure is generally created by the PIC code for a given PIC instance
  16. * (though a domain can cover more than one PIC if they have a flat number
  17. * model). It's the domain callbacks that are responsible for setting the
  18. * irq_chip on a given irq_desc after it's been mapped.
  19. *
  20. * The host code and data structures are agnostic to whether or not
  21. * we use an open firmware device-tree. We do have references to struct
  22. * device_node in two places: in irq_find_host() to find the host matching
  23. * a given interrupt controller node, and of course as an argument to its
  24. * counterpart domain->ops->match() callback. However, those are treated as
  25. * generic pointers by the core and the fact that it's actually a device-node
  26. * pointer is purely a convention between callers and implementation. This
  27. * code could thus be used on other architectures by replacing those two
  28. * by some sort of arch-specific void * "token" used to identify interrupt
  29. * controllers.
  30. */
  31. #ifndef _LINUX_IRQDOMAIN_H
  32. #define _LINUX_IRQDOMAIN_H
  33. #include <linux/types.h>
  34. #include <linux/irqhandler.h>
  35. #include <linux/radix-tree.h>
  36. struct device_node;
  37. struct irq_domain;
  38. struct of_device_id;
  39. struct irq_chip;
  40. struct irq_data;
  41. /* Number of irqs reserved for a legacy isa controller */
  42. #define NUM_ISA_INTERRUPTS 16
  43. /**
  44. * struct irq_domain_ops - Methods for irq_domain objects
  45. * @match: Match an interrupt controller device node to a host, returns
  46. * 1 on a match
  47. * @map: Create or update a mapping between a virtual irq number and a hw
  48. * irq number. This is called only once for a given mapping.
  49. * @unmap: Dispose of such a mapping
  50. * @xlate: Given a device tree node and interrupt specifier, decode
  51. * the hardware irq number and linux irq type value.
  52. *
  53. * Functions below are provided by the driver and called whenever a new mapping
  54. * is created or an old mapping is disposed. The driver can then proceed to
  55. * whatever internal data structures management is required. It also needs
  56. * to setup the irq_desc when returning from map().
  57. */
  58. struct irq_domain_ops {
  59. int (*match)(struct irq_domain *d, struct device_node *node);
  60. int (*map)(struct irq_domain *d, unsigned int virq, irq_hw_number_t hw);
  61. void (*unmap)(struct irq_domain *d, unsigned int virq);
  62. int (*xlate)(struct irq_domain *d, struct device_node *node,
  63. const u32 *intspec, unsigned int intsize,
  64. unsigned long *out_hwirq, unsigned int *out_type);
  65. #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
  66. /* extended V2 interfaces to support hierarchy irq_domains */
  67. int (*alloc)(struct irq_domain *d, unsigned int virq,
  68. unsigned int nr_irqs, void *arg);
  69. void (*free)(struct irq_domain *d, unsigned int virq,
  70. unsigned int nr_irqs);
  71. void (*activate)(struct irq_domain *d, struct irq_data *irq_data);
  72. void (*deactivate)(struct irq_domain *d, struct irq_data *irq_data);
  73. #endif
  74. };
  75. extern struct irq_domain_ops irq_generic_chip_ops;
  76. struct irq_domain_chip_generic;
  77. /**
  78. * struct irq_domain - Hardware interrupt number translation object
  79. * @link: Element in global irq_domain list.
  80. * @name: Name of interrupt domain
  81. * @ops: pointer to irq_domain methods
  82. * @host_data: private data pointer for use by owner. Not touched by irq_domain
  83. * core code.
  84. * @flags: host per irq_domain flags
  85. *
  86. * Optional elements
  87. * @of_node: Pointer to device tree nodes associated with the irq_domain. Used
  88. * when decoding device tree interrupt specifiers.
  89. * @gc: Pointer to a list of generic chips. There is a helper function for
  90. * setting up one or more generic chips for interrupt controllers
  91. * drivers using the generic chip library which uses this pointer.
  92. * @parent: Pointer to parent irq_domain to support hierarchy irq_domains
  93. *
  94. * Revmap data, used internally by irq_domain
  95. * @revmap_direct_max_irq: The largest hwirq that can be set for controllers that
  96. * support direct mapping
  97. * @revmap_size: Size of the linear map table @linear_revmap[]
  98. * @revmap_tree: Radix map tree for hwirqs that don't fit in the linear map
  99. * @linear_revmap: Linear table of hwirq->virq reverse mappings
  100. */
  101. struct irq_domain {
  102. struct list_head link;
  103. const char *name;
  104. const struct irq_domain_ops *ops;
  105. void *host_data;
  106. unsigned int flags;
  107. /* Optional data */
  108. struct device_node *of_node;
  109. struct irq_domain_chip_generic *gc;
  110. #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
  111. struct irq_domain *parent;
  112. #endif
  113. /* reverse map data. The linear map gets appended to the irq_domain */
  114. irq_hw_number_t hwirq_max;
  115. unsigned int revmap_direct_max_irq;
  116. unsigned int revmap_size;
  117. struct radix_tree_root revmap_tree;
  118. unsigned int linear_revmap[];
  119. };
  120. /* Irq domain flags */
  121. enum {
  122. /* Irq domain is hierarchical */
  123. IRQ_DOMAIN_FLAG_HIERARCHY = (1 << 0),
  124. /* Core calls alloc/free recursive through the domain hierarchy. */
  125. IRQ_DOMAIN_FLAG_AUTO_RECURSIVE = (1 << 1),
  126. /*
  127. * Flags starting from IRQ_DOMAIN_FLAG_NONCORE are reserved
  128. * for implementation specific purposes and ignored by the
  129. * core code.
  130. */
  131. IRQ_DOMAIN_FLAG_NONCORE = (1 << 16),
  132. };
  133. #ifdef CONFIG_IRQ_DOMAIN
  134. struct irq_domain *__irq_domain_add(struct device_node *of_node, int size,
  135. irq_hw_number_t hwirq_max, int direct_max,
  136. const struct irq_domain_ops *ops,
  137. void *host_data);
  138. struct irq_domain *irq_domain_add_simple(struct device_node *of_node,
  139. unsigned int size,
  140. unsigned int first_irq,
  141. const struct irq_domain_ops *ops,
  142. void *host_data);
  143. struct irq_domain *irq_domain_add_legacy(struct device_node *of_node,
  144. unsigned int size,
  145. unsigned int first_irq,
  146. irq_hw_number_t first_hwirq,
  147. const struct irq_domain_ops *ops,
  148. void *host_data);
  149. extern struct irq_domain *irq_find_host(struct device_node *node);
  150. extern void irq_set_default_host(struct irq_domain *host);
  151. /**
  152. * irq_domain_add_linear() - Allocate and register a linear revmap irq_domain.
  153. * @of_node: pointer to interrupt controller's device tree node.
  154. * @size: Number of interrupts in the domain.
  155. * @ops: map/unmap domain callbacks
  156. * @host_data: Controller private data pointer
  157. */
  158. static inline struct irq_domain *irq_domain_add_linear(struct device_node *of_node,
  159. unsigned int size,
  160. const struct irq_domain_ops *ops,
  161. void *host_data)
  162. {
  163. return __irq_domain_add(of_node, size, size, 0, ops, host_data);
  164. }
  165. static inline struct irq_domain *irq_domain_add_nomap(struct device_node *of_node,
  166. unsigned int max_irq,
  167. const struct irq_domain_ops *ops,
  168. void *host_data)
  169. {
  170. return __irq_domain_add(of_node, 0, max_irq, max_irq, ops, host_data);
  171. }
  172. static inline struct irq_domain *irq_domain_add_legacy_isa(
  173. struct device_node *of_node,
  174. const struct irq_domain_ops *ops,
  175. void *host_data)
  176. {
  177. return irq_domain_add_legacy(of_node, NUM_ISA_INTERRUPTS, 0, 0, ops,
  178. host_data);
  179. }
  180. static inline struct irq_domain *irq_domain_add_tree(struct device_node *of_node,
  181. const struct irq_domain_ops *ops,
  182. void *host_data)
  183. {
  184. return __irq_domain_add(of_node, 0, ~0, 0, ops, host_data);
  185. }
  186. extern void irq_domain_remove(struct irq_domain *host);
  187. extern int irq_domain_associate(struct irq_domain *domain, unsigned int irq,
  188. irq_hw_number_t hwirq);
  189. extern void irq_domain_associate_many(struct irq_domain *domain,
  190. unsigned int irq_base,
  191. irq_hw_number_t hwirq_base, int count);
  192. extern void irq_domain_disassociate(struct irq_domain *domain,
  193. unsigned int irq);
  194. extern unsigned int irq_create_mapping(struct irq_domain *host,
  195. irq_hw_number_t hwirq);
  196. extern void irq_dispose_mapping(unsigned int virq);
  197. /**
  198. * irq_linear_revmap() - Find a linux irq from a hw irq number.
  199. * @domain: domain owning this hardware interrupt
  200. * @hwirq: hardware irq number in that domain space
  201. *
  202. * This is a fast path alternative to irq_find_mapping() that can be
  203. * called directly by irq controller code to save a handful of
  204. * instructions. It is always safe to call, but won't find irqs mapped
  205. * using the radix tree.
  206. */
  207. static inline unsigned int irq_linear_revmap(struct irq_domain *domain,
  208. irq_hw_number_t hwirq)
  209. {
  210. return hwirq < domain->revmap_size ? domain->linear_revmap[hwirq] : 0;
  211. }
  212. extern unsigned int irq_find_mapping(struct irq_domain *host,
  213. irq_hw_number_t hwirq);
  214. extern unsigned int irq_create_direct_mapping(struct irq_domain *host);
  215. extern int irq_create_strict_mappings(struct irq_domain *domain,
  216. unsigned int irq_base,
  217. irq_hw_number_t hwirq_base, int count);
  218. static inline int irq_create_identity_mapping(struct irq_domain *host,
  219. irq_hw_number_t hwirq)
  220. {
  221. return irq_create_strict_mappings(host, hwirq, hwirq, 1);
  222. }
  223. extern const struct irq_domain_ops irq_domain_simple_ops;
  224. /* stock xlate functions */
  225. int irq_domain_xlate_onecell(struct irq_domain *d, struct device_node *ctrlr,
  226. const u32 *intspec, unsigned int intsize,
  227. irq_hw_number_t *out_hwirq, unsigned int *out_type);
  228. int irq_domain_xlate_twocell(struct irq_domain *d, struct device_node *ctrlr,
  229. const u32 *intspec, unsigned int intsize,
  230. irq_hw_number_t *out_hwirq, unsigned int *out_type);
  231. int irq_domain_xlate_onetwocell(struct irq_domain *d, struct device_node *ctrlr,
  232. const u32 *intspec, unsigned int intsize,
  233. irq_hw_number_t *out_hwirq, unsigned int *out_type);
  234. /* V2 interfaces to support hierarchy IRQ domains. */
  235. extern struct irq_data *irq_domain_get_irq_data(struct irq_domain *domain,
  236. unsigned int virq);
  237. extern void irq_domain_set_info(struct irq_domain *domain, unsigned int virq,
  238. irq_hw_number_t hwirq, struct irq_chip *chip,
  239. void *chip_data, irq_flow_handler_t handler,
  240. void *handler_data, const char *handler_name);
  241. #ifdef CONFIG_IRQ_DOMAIN_HIERARCHY
  242. extern struct irq_domain *irq_domain_add_hierarchy(struct irq_domain *parent,
  243. unsigned int flags, unsigned int size,
  244. struct device_node *node,
  245. const struct irq_domain_ops *ops, void *host_data);
  246. extern int __irq_domain_alloc_irqs(struct irq_domain *domain, int irq_base,
  247. unsigned int nr_irqs, int node, void *arg,
  248. bool realloc);
  249. extern void irq_domain_free_irqs(unsigned int virq, unsigned int nr_irqs);
  250. extern void irq_domain_activate_irq(struct irq_data *irq_data);
  251. extern void irq_domain_deactivate_irq(struct irq_data *irq_data);
  252. static inline int irq_domain_alloc_irqs(struct irq_domain *domain,
  253. unsigned int nr_irqs, int node, void *arg)
  254. {
  255. return __irq_domain_alloc_irqs(domain, -1, nr_irqs, node, arg, false);
  256. }
  257. extern int irq_domain_set_hwirq_and_chip(struct irq_domain *domain,
  258. unsigned int virq,
  259. irq_hw_number_t hwirq,
  260. struct irq_chip *chip,
  261. void *chip_data);
  262. extern void irq_domain_reset_irq_data(struct irq_data *irq_data);
  263. extern void irq_domain_free_irqs_common(struct irq_domain *domain,
  264. unsigned int virq,
  265. unsigned int nr_irqs);
  266. extern void irq_domain_free_irqs_top(struct irq_domain *domain,
  267. unsigned int virq, unsigned int nr_irqs);
  268. extern int irq_domain_alloc_irqs_parent(struct irq_domain *domain,
  269. unsigned int irq_base,
  270. unsigned int nr_irqs, void *arg);
  271. extern void irq_domain_free_irqs_parent(struct irq_domain *domain,
  272. unsigned int irq_base,
  273. unsigned int nr_irqs);
  274. static inline bool irq_domain_is_hierarchy(struct irq_domain *domain)
  275. {
  276. return domain->flags & IRQ_DOMAIN_FLAG_HIERARCHY;
  277. }
  278. #else /* CONFIG_IRQ_DOMAIN_HIERARCHY */
  279. static inline void irq_domain_activate_irq(struct irq_data *data) { }
  280. static inline void irq_domain_deactivate_irq(struct irq_data *data) { }
  281. static inline int irq_domain_alloc_irqs(struct irq_domain *domain,
  282. unsigned int nr_irqs, int node, void *arg)
  283. {
  284. return -1;
  285. }
  286. static inline bool irq_domain_is_hierarchy(struct irq_domain *domain)
  287. {
  288. return false;
  289. }
  290. #endif /* CONFIG_IRQ_DOMAIN_HIERARCHY */
  291. #else /* CONFIG_IRQ_DOMAIN */
  292. static inline void irq_dispose_mapping(unsigned int virq) { }
  293. static inline void irq_domain_activate_irq(struct irq_data *data) { }
  294. static inline void irq_domain_deactivate_irq(struct irq_data *data) { }
  295. #endif /* !CONFIG_IRQ_DOMAIN */
  296. #endif /* _LINUX_IRQDOMAIN_H */