of_irq.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. #ifndef __OF_IRQ_H
  2. #define __OF_IRQ_H
  3. #if defined(CONFIG_OF)
  4. struct of_irq;
  5. #include <linux/types.h>
  6. #include <linux/errno.h>
  7. #include <linux/ioport.h>
  8. #include <linux/of.h>
  9. /*
  10. * irq_of_parse_and_map() is used ba all OF enabled platforms; but SPARC
  11. * implements it differently. However, the prototype is the same for all,
  12. * so declare it here regardless of the CONFIG_OF_IRQ setting.
  13. */
  14. extern unsigned int irq_of_parse_and_map(struct device_node *node, int index);
  15. #if defined(CONFIG_OF_IRQ)
  16. /**
  17. * of_irq - container for device_node/irq_specifier pair for an irq controller
  18. * @controller: pointer to interrupt controller device tree node
  19. * @size: size of interrupt specifier
  20. * @specifier: array of cells @size long specifing the specific interrupt
  21. *
  22. * This structure is returned when an interrupt is mapped. The controller
  23. * field needs to be put() after use
  24. */
  25. #define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */
  26. struct of_irq {
  27. struct device_node *controller; /* Interrupt controller node */
  28. u32 size; /* Specifier size */
  29. u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
  30. };
  31. /*
  32. * Workarounds only applied to 32bit powermac machines
  33. */
  34. #define OF_IMAP_OLDWORLD_MAC 0x00000001
  35. #define OF_IMAP_NO_PHANDLE 0x00000002
  36. #if defined(CONFIG_PPC32) && defined(CONFIG_PPC_PMAC)
  37. extern unsigned int of_irq_workarounds;
  38. extern struct device_node *of_irq_dflt_pic;
  39. extern int of_irq_map_oldworld(struct device_node *device, int index,
  40. struct of_irq *out_irq);
  41. #else /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
  42. #define of_irq_workarounds (0)
  43. #define of_irq_dflt_pic (NULL)
  44. static inline int of_irq_map_oldworld(struct device_node *device, int index,
  45. struct of_irq *out_irq)
  46. {
  47. return -EINVAL;
  48. }
  49. #endif /* CONFIG_PPC32 && CONFIG_PPC_PMAC */
  50. extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
  51. u32 ointsize, const u32 *addr,
  52. struct of_irq *out_irq);
  53. extern int of_irq_map_one(struct device_node *device, int index,
  54. struct of_irq *out_irq);
  55. extern unsigned int irq_create_of_mapping(struct device_node *controller,
  56. const u32 *intspec,
  57. unsigned int intsize);
  58. extern int of_irq_to_resource(struct device_node *dev, int index,
  59. struct resource *r);
  60. #endif /* CONFIG_OF_IRQ */
  61. #endif /* CONFIG_OF */
  62. #endif /* __OF_IRQ_H */