irq.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * linux/arch/sh/boards/renesas/sdk7780/irq.c
  3. *
  4. * Renesas Technology Europe SDK7780 Support.
  5. *
  6. * Copyright (C) 2008 Nicholas Beck <nbeck@mpc-data.co.uk>
  7. *
  8. * This file is subject to the terms and conditions of the GNU General Public
  9. * License. See the file "COPYING" in the main directory of this archive
  10. * for more details.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/irq.h>
  14. #include <linux/io.h>
  15. #include <mach/sdk7780.h>
  16. enum {
  17. UNUSED = 0,
  18. /* board specific interrupt sources */
  19. SMC91C111, /* Ethernet controller */
  20. };
  21. static struct intc_vect fpga_vectors[] __initdata = {
  22. INTC_IRQ(SMC91C111, IRQ_ETHERNET),
  23. };
  24. static struct intc_mask_reg fpga_mask_registers[] __initdata = {
  25. { 0, FPGA_IRQ0MR, 16,
  26. { 0, 0, 0, 0, 0, 0, 0, 0,
  27. 0, 0, 0, SMC91C111, 0, 0, 0, 0 } },
  28. };
  29. static DECLARE_INTC_DESC(fpga_intc_desc, "sdk7780-irq", fpga_vectors,
  30. NULL, fpga_mask_registers, NULL, NULL);
  31. void __init init_sdk7780_IRQ(void)
  32. {
  33. printk(KERN_INFO "Using SDK7780 interrupt controller.\n");
  34. __raw_writew(0xFFFF, FPGA_IRQ0MR);
  35. /* Setup IRL 0-3 */
  36. __raw_writew(0x0003, FPGA_IMSR);
  37. plat_irq_setup_pins(IRQ_MODE_IRL3210);
  38. register_intc_controller(&fpga_intc_desc);
  39. }