board-secureedge5410.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright (C) 2002 David McCullough <davidm@snapgear.com>
  3. * Copyright (C) 2003 Paul Mundt <lethal@linux-sh.org>
  4. *
  5. * Based on files with the following comments:
  6. *
  7. * Copyright (C) 2000 Kazumoto Kojima
  8. *
  9. * Modified for 7751 Solution Engine by
  10. * Ian da Silva and Jeremy Siegel, 2001.
  11. */
  12. #include <linux/init.h>
  13. #include <linux/irq.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/timer.h>
  16. #include <linux/delay.h>
  17. #include <linux/module.h>
  18. #include <linux/sched.h>
  19. #include <asm/machvec.h>
  20. #include <mach/secureedge5410.h>
  21. #include <asm/irq.h>
  22. #include <asm/io.h>
  23. #include <cpu/timer.h>
  24. unsigned short secureedge5410_ioport;
  25. /*
  26. * EraseConfig handling functions
  27. */
  28. static irqreturn_t eraseconfig_interrupt(int irq, void *dev_id)
  29. {
  30. ctrl_delay(); /* dummy read */
  31. printk("SnapGear: erase switch interrupt!\n");
  32. return IRQ_HANDLED;
  33. }
  34. static int __init eraseconfig_init(void)
  35. {
  36. unsigned int irq = evt2irq(0x240);
  37. printk("SnapGear: EraseConfig init\n");
  38. /* Setup "EraseConfig" switch on external IRQ 0 */
  39. if (request_irq(irq, eraseconfig_interrupt, IRQF_DISABLED,
  40. "Erase Config", NULL))
  41. printk("SnapGear: failed to register IRQ%d for Reset witch\n",
  42. irq);
  43. else
  44. printk("SnapGear: registered EraseConfig switch on IRQ%d\n",
  45. irq);
  46. return 0;
  47. }
  48. module_init(eraseconfig_init);
  49. /*
  50. * Initialize IRQ setting
  51. *
  52. * IRL0 = erase switch
  53. * IRL1 = eth0
  54. * IRL2 = eth1
  55. * IRL3 = crypto
  56. */
  57. static void __init init_snapgear_IRQ(void)
  58. {
  59. printk("Setup SnapGear IRQ/IPR ...\n");
  60. /* enable individual interrupt mode for externals */
  61. plat_irq_setup_pins(IRQ_MODE_IRQ);
  62. }
  63. /*
  64. * The Machine Vector
  65. */
  66. static struct sh_machine_vector mv_snapgear __initmv = {
  67. .mv_name = "SnapGear SecureEdge5410",
  68. .mv_nr_irqs = 72,
  69. .mv_init_irq = init_snapgear_IRQ,
  70. };