irq-nvic.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * drivers/irq/irq-nvic.c
  3. *
  4. * Copyright (C) 2008 ARM Limited, All Rights Reserved.
  5. * Copyright (C) 2013 Pengutronix
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Support for the Nested Vectored Interrupt Controller found on the
  12. * ARMv7-M CPUs (Cortex-M3/M4)
  13. */
  14. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  15. #include <linux/init.h>
  16. #include <linux/kernel.h>
  17. #include <linux/slab.h>
  18. #include <linux/err.h>
  19. #include <linux/io.h>
  20. #include <linux/of.h>
  21. #include <linux/of_address.h>
  22. #include <linux/irq.h>
  23. #include <linux/irqchip.h>
  24. #include <linux/irqdomain.h>
  25. #include <asm/v7m.h>
  26. #include <asm/exception.h>
  27. #define NVIC_ISER 0x000
  28. #define NVIC_ICER 0x080
  29. #define NVIC_IPR 0x300
  30. #define NVIC_MAX_BANKS 16
  31. /*
  32. * Each bank handles 32 irqs. Only the 16th (= last) bank handles only
  33. * 16 irqs.
  34. */
  35. #define NVIC_MAX_IRQ ((NVIC_MAX_BANKS - 1) * 32 + 16)
  36. static struct irq_domain *nvic_irq_domain;
  37. asmlinkage void __exception_irq_entry
  38. nvic_handle_irq(irq_hw_number_t hwirq, struct pt_regs *regs)
  39. {
  40. unsigned int irq = irq_linear_revmap(nvic_irq_domain, hwirq);
  41. handle_IRQ(irq, regs);
  42. }
  43. static int nvic_irq_domain_translate(struct irq_domain *d,
  44. struct irq_fwspec *fwspec,
  45. unsigned long *hwirq, unsigned int *type)
  46. {
  47. if (WARN_ON(fwspec->param_count < 1))
  48. return -EINVAL;
  49. *hwirq = fwspec->param[0];
  50. *type = IRQ_TYPE_NONE;
  51. return 0;
  52. }
  53. static int nvic_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
  54. unsigned int nr_irqs, void *arg)
  55. {
  56. int i, ret;
  57. irq_hw_number_t hwirq;
  58. unsigned int type = IRQ_TYPE_NONE;
  59. struct irq_fwspec *fwspec = arg;
  60. ret = nvic_irq_domain_translate(domain, fwspec, &hwirq, &type);
  61. if (ret)
  62. return ret;
  63. for (i = 0; i < nr_irqs; i++)
  64. irq_map_generic_chip(domain, virq + i, hwirq + i);
  65. return 0;
  66. }
  67. static const struct irq_domain_ops nvic_irq_domain_ops = {
  68. .translate = nvic_irq_domain_translate,
  69. .alloc = nvic_irq_domain_alloc,
  70. .free = irq_domain_free_irqs_top,
  71. };
  72. static int __init nvic_of_init(struct device_node *node,
  73. struct device_node *parent)
  74. {
  75. unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
  76. unsigned int irqs, i, ret, numbanks;
  77. void __iomem *nvic_base;
  78. numbanks = (readl_relaxed(V7M_SCS_ICTR) &
  79. V7M_SCS_ICTR_INTLINESNUM_MASK) + 1;
  80. nvic_base = of_iomap(node, 0);
  81. if (!nvic_base) {
  82. pr_warn("unable to map nvic registers\n");
  83. return -ENOMEM;
  84. }
  85. irqs = numbanks * 32;
  86. if (irqs > NVIC_MAX_IRQ)
  87. irqs = NVIC_MAX_IRQ;
  88. nvic_irq_domain =
  89. irq_domain_add_linear(node, irqs, &nvic_irq_domain_ops, NULL);
  90. if (!nvic_irq_domain) {
  91. pr_warn("Failed to allocate irq domain\n");
  92. return -ENOMEM;
  93. }
  94. ret = irq_alloc_domain_generic_chips(nvic_irq_domain, 32, 1,
  95. "nvic_irq", handle_fasteoi_irq,
  96. clr, 0, IRQ_GC_INIT_MASK_CACHE);
  97. if (ret) {
  98. pr_warn("Failed to allocate irq chips\n");
  99. irq_domain_remove(nvic_irq_domain);
  100. return ret;
  101. }
  102. for (i = 0; i < numbanks; ++i) {
  103. struct irq_chip_generic *gc;
  104. gc = irq_get_domain_generic_chip(nvic_irq_domain, 32 * i);
  105. gc->reg_base = nvic_base + 4 * i;
  106. gc->chip_types[0].regs.enable = NVIC_ISER;
  107. gc->chip_types[0].regs.disable = NVIC_ICER;
  108. gc->chip_types[0].chip.irq_mask = irq_gc_mask_disable_reg;
  109. gc->chip_types[0].chip.irq_unmask = irq_gc_unmask_enable_reg;
  110. /* This is a no-op as end of interrupt is signaled by the
  111. * exception return sequence.
  112. */
  113. gc->chip_types[0].chip.irq_eoi = irq_gc_noop;
  114. /* disable interrupts */
  115. writel_relaxed(~0, gc->reg_base + NVIC_ICER);
  116. }
  117. /* Set priority on all interrupts */
  118. for (i = 0; i < irqs; i += 4)
  119. writel_relaxed(0, nvic_base + NVIC_IPR + i);
  120. return 0;
  121. }
  122. IRQCHIP_DECLARE(armv7m_nvic, "arm,armv7m-nvic", nvic_of_init);