irq_cpu.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 <asm/irq_cpu.h>
  34. #include <asm/mipsregs.h>
  35. #include <asm/mipsmtregs.h>
  36. #include <asm/system.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. };
  55. /*
  56. * Basically the same as above but taking care of all the MT stuff
  57. */
  58. static unsigned int mips_mt_cpu_irq_startup(struct irq_data *d)
  59. {
  60. unsigned int vpflags = dvpe();
  61. clear_c0_cause(0x100 << (d->irq - MIPS_CPU_IRQ_BASE));
  62. evpe(vpflags);
  63. unmask_mips_irq(d);
  64. return 0;
  65. }
  66. /*
  67. * While we ack the interrupt interrupts are disabled and thus we don't need
  68. * to deal with concurrency issues. Same for mips_cpu_irq_end.
  69. */
  70. static void mips_mt_cpu_irq_ack(struct irq_data *d)
  71. {
  72. unsigned int vpflags = dvpe();
  73. clear_c0_cause(0x100 << (d->irq - MIPS_CPU_IRQ_BASE));
  74. evpe(vpflags);
  75. mask_mips_irq(d);
  76. }
  77. static struct irq_chip mips_mt_cpu_irq_controller = {
  78. .name = "MIPS",
  79. .irq_startup = mips_mt_cpu_irq_startup,
  80. .irq_ack = mips_mt_cpu_irq_ack,
  81. .irq_mask = mask_mips_irq,
  82. .irq_mask_ack = mips_mt_cpu_irq_ack,
  83. .irq_unmask = unmask_mips_irq,
  84. .irq_eoi = unmask_mips_irq,
  85. };
  86. void __init mips_cpu_irq_init(void)
  87. {
  88. int irq_base = MIPS_CPU_IRQ_BASE;
  89. int i;
  90. /* Mask interrupts. */
  91. clear_c0_status(ST0_IM);
  92. clear_c0_cause(CAUSEF_IP);
  93. /*
  94. * Only MT is using the software interrupts currently, so we just
  95. * leave them uninitialized for other processors.
  96. */
  97. if (cpu_has_mipsmt)
  98. for (i = irq_base; i < irq_base + 2; i++)
  99. irq_set_chip_and_handler(i, &mips_mt_cpu_irq_controller,
  100. handle_percpu_irq);
  101. for (i = irq_base + 2; i < irq_base + 8; i++)
  102. irq_set_chip_and_handler(i, &mips_cpu_irq_controller,
  103. handle_percpu_irq);
  104. }