irq_cpu.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * Copyright 2001 MontaVista Software Inc.
  3. * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
  4. *
  5. * Copyright (C) 2001 Ralf Baechle
  6. * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved.
  7. * Author: Maciej W. Rozycki <macro@mips.com>
  8. *
  9. * This file define the irq handler for MIPS CPU interrupts.
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. */
  16. /*
  17. * Almost all MIPS CPUs define 8 interrupt sources. They are typically
  18. * level triggered (i.e., cannot be cleared from CPU; must be cleared from
  19. * device). The first two are software interrupts which we don't really
  20. * use or support. The last one is usually the CPU timer interrupt if
  21. * counter register is present or, for CPUs with an external FPU, by
  22. * convention it's the FPU exception interrupt.
  23. *
  24. * Don't even think about using this on SMP. You have been warned.
  25. *
  26. * This file exports one global function:
  27. * void mips_cpu_irq_init(void);
  28. */
  29. #include <linux/init.h>
  30. #include <linux/interrupt.h>
  31. #include <linux/kernel.h>
  32. #include <linux/irq.h>
  33. #include <linux/irqdomain.h>
  34. #include <asm/irq_cpu.h>
  35. #include <asm/mipsregs.h>
  36. #include <asm/mipsmtregs.h>
  37. static inline void unmask_mips_irq(struct irq_data *d)
  38. {
  39. set_c0_status(0x100 << (d->irq - MIPS_CPU_IRQ_BASE));
  40. irq_enable_hazard();
  41. }
  42. static inline void mask_mips_irq(struct irq_data *d)
  43. {
  44. clear_c0_status(0x100 << (d->irq - MIPS_CPU_IRQ_BASE));
  45. irq_disable_hazard();
  46. }
  47. static struct irq_chip mips_cpu_irq_controller = {
  48. .name = "MIPS",
  49. .irq_ack = mask_mips_irq,
  50. .irq_mask = mask_mips_irq,
  51. .irq_mask_ack = mask_mips_irq,
  52. .irq_unmask = unmask_mips_irq,
  53. .irq_eoi = unmask_mips_irq,
  54. .irq_disable = mask_mips_irq,
  55. .irq_enable = unmask_mips_irq,
  56. };
  57. /*
  58. * Basically the same as above but taking care of all the MT stuff
  59. */
  60. static unsigned int mips_mt_cpu_irq_startup(struct irq_data *d)
  61. {
  62. unsigned int vpflags = dvpe();
  63. clear_c0_cause(0x100 << (d->irq - MIPS_CPU_IRQ_BASE));
  64. evpe(vpflags);
  65. unmask_mips_irq(d);
  66. return 0;
  67. }
  68. /*
  69. * While we ack the interrupt interrupts are disabled and thus we don't need
  70. * to deal with concurrency issues. Same for mips_cpu_irq_end.
  71. */
  72. static void mips_mt_cpu_irq_ack(struct irq_data *d)
  73. {
  74. unsigned int vpflags = dvpe();
  75. clear_c0_cause(0x100 << (d->irq - MIPS_CPU_IRQ_BASE));
  76. evpe(vpflags);
  77. mask_mips_irq(d);
  78. }
  79. static struct irq_chip mips_mt_cpu_irq_controller = {
  80. .name = "MIPS",
  81. .irq_startup = mips_mt_cpu_irq_startup,
  82. .irq_ack = mips_mt_cpu_irq_ack,
  83. .irq_mask = mask_mips_irq,
  84. .irq_mask_ack = mips_mt_cpu_irq_ack,
  85. .irq_unmask = unmask_mips_irq,
  86. .irq_eoi = unmask_mips_irq,
  87. .irq_disable = mask_mips_irq,
  88. .irq_enable = unmask_mips_irq,
  89. };
  90. void __init mips_cpu_irq_init(void)
  91. {
  92. int irq_base = MIPS_CPU_IRQ_BASE;
  93. int i;
  94. /* Mask interrupts. */
  95. clear_c0_status(ST0_IM);
  96. clear_c0_cause(CAUSEF_IP);
  97. /* Software interrupts are used for MT/CMT IPI */
  98. for (i = irq_base; i < irq_base + 2; i++)
  99. irq_set_chip_and_handler(i, cpu_has_mipsmt ?
  100. &mips_mt_cpu_irq_controller :
  101. &mips_cpu_irq_controller,
  102. handle_percpu_irq);
  103. for (i = irq_base + 2; i < irq_base + 8; i++)
  104. irq_set_chip_and_handler(i, &mips_cpu_irq_controller,
  105. handle_percpu_irq);
  106. }
  107. #ifdef CONFIG_IRQ_DOMAIN
  108. static int mips_cpu_intc_map(struct irq_domain *d, unsigned int irq,
  109. irq_hw_number_t hw)
  110. {
  111. static struct irq_chip *chip;
  112. if (hw < 2 && cpu_has_mipsmt) {
  113. /* Software interrupts are used for MT/CMT IPI */
  114. chip = &mips_mt_cpu_irq_controller;
  115. } else {
  116. chip = &mips_cpu_irq_controller;
  117. }
  118. irq_set_chip_and_handler(irq, chip, handle_percpu_irq);
  119. return 0;
  120. }
  121. static const struct irq_domain_ops mips_cpu_intc_irq_domain_ops = {
  122. .map = mips_cpu_intc_map,
  123. .xlate = irq_domain_xlate_onecell,
  124. };
  125. int __init mips_cpu_intc_init(struct device_node *of_node,
  126. struct device_node *parent)
  127. {
  128. struct irq_domain *domain;
  129. /* Mask interrupts. */
  130. clear_c0_status(ST0_IM);
  131. clear_c0_cause(CAUSEF_IP);
  132. domain = irq_domain_add_legacy(of_node, 8, MIPS_CPU_IRQ_BASE, 0,
  133. &mips_cpu_intc_irq_domain_ops, NULL);
  134. if (!domain)
  135. panic("Failed to add irqdomain for MIPS CPU");
  136. return 0;
  137. }
  138. #endif /* CONFIG_IRQ_DOMAIN */