irq.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/arch/sh/boards/renesas/sdk7780/irq.c
  4. *
  5. * Renesas Technology Europe SDK7780 Support.
  6. *
  7. * Copyright (C) 2008 Nicholas Beck <[email protected]>
  8. */
  9. #include <linux/init.h>
  10. #include <linux/irq.h>
  11. #include <linux/io.h>
  12. #include <mach/sdk7780.h>
  13. enum {
  14. UNUSED = 0,
  15. /* board specific interrupt sources */
  16. SMC91C111, /* Ethernet controller */
  17. };
  18. static struct intc_vect fpga_vectors[] __initdata = {
  19. INTC_IRQ(SMC91C111, IRQ_ETHERNET),
  20. };
  21. static struct intc_mask_reg fpga_mask_registers[] __initdata = {
  22. { 0, FPGA_IRQ0MR, 16,
  23. { 0, 0, 0, 0, 0, 0, 0, 0,
  24. 0, 0, 0, SMC91C111, 0, 0, 0, 0 } },
  25. };
  26. static DECLARE_INTC_DESC(fpga_intc_desc, "sdk7780-irq", fpga_vectors,
  27. NULL, fpga_mask_registers, NULL, NULL);
  28. void __init init_sdk7780_IRQ(void)
  29. {
  30. printk(KERN_INFO "Using SDK7780 interrupt controller.\n");
  31. __raw_writew(0xFFFF, FPGA_IRQ0MR);
  32. /* Setup IRL 0-3 */
  33. __raw_writew(0x0003, FPGA_IMSR);
  34. plat_irq_setup_pins(IRQ_MODE_IRL3210);
  35. register_intc_controller(&fpga_intc_desc);
  36. }