irq-rm7000.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (C) 2003 Ralf Baechle
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation; either version 2 of the License, or (at your
  7. * option) any later version.
  8. *
  9. * Handler for RM7000 extended interrupts. These are a non-standard
  10. * feature so we handle them separately from standard interrupts.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/kernel.h>
  15. #include <asm/irq_cpu.h>
  16. #include <asm/mipsregs.h>
  17. #include <asm/system.h>
  18. static int irq_base;
  19. static inline void unmask_rm7k_irq(unsigned int irq)
  20. {
  21. set_c0_intcontrol(0x100 << (irq - irq_base));
  22. }
  23. static inline void mask_rm7k_irq(unsigned int irq)
  24. {
  25. clear_c0_intcontrol(0x100 << (irq - irq_base));
  26. }
  27. static struct irq_chip rm7k_irq_controller = {
  28. .typename = "RM7000",
  29. .ack = mask_rm7k_irq,
  30. .mask = mask_rm7k_irq,
  31. .mask_ack = mask_rm7k_irq,
  32. .unmask = unmask_rm7k_irq,
  33. };
  34. void __init rm7k_cpu_irq_init(int base)
  35. {
  36. int i;
  37. clear_c0_intcontrol(0x00000f00); /* Mask all */
  38. for (i = base; i < base + 4; i++)
  39. set_irq_chip_and_handler(i, &rm7k_irq_controller,
  40. handle_level_irq);
  41. irq_base = base;
  42. }