setup.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * linux/arch/sh/boards/se/7300/setup.c
  3. *
  4. * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
  5. *
  6. * SH-Mobile SolutionEngine 7300 Support.
  7. *
  8. */
  9. #include <linux/init.h>
  10. #include <asm/machvec.h>
  11. #include <asm/se7300.h>
  12. void heartbeat_7300se(void);
  13. void init_7300se_IRQ(void);
  14. /*
  15. * The Machine Vector
  16. */
  17. struct sh_machine_vector mv_7300se __initmv = {
  18. .mv_name = "SolutionEngine 7300",
  19. .mv_nr_irqs = 109,
  20. .mv_inb = sh7300se_inb,
  21. .mv_inw = sh7300se_inw,
  22. .mv_inl = sh7300se_inl,
  23. .mv_outb = sh7300se_outb,
  24. .mv_outw = sh7300se_outw,
  25. .mv_outl = sh7300se_outl,
  26. .mv_inb_p = sh7300se_inb_p,
  27. .mv_inw_p = sh7300se_inw,
  28. .mv_inl_p = sh7300se_inl,
  29. .mv_outb_p = sh7300se_outb_p,
  30. .mv_outw_p = sh7300se_outw,
  31. .mv_outl_p = sh7300se_outl,
  32. .mv_insb = sh7300se_insb,
  33. .mv_insw = sh7300se_insw,
  34. .mv_insl = sh7300se_insl,
  35. .mv_outsb = sh7300se_outsb,
  36. .mv_outsw = sh7300se_outsw,
  37. .mv_outsl = sh7300se_outsl,
  38. .mv_init_irq = init_7300se_IRQ,
  39. #ifdef CONFIG_HEARTBEAT
  40. .mv_heartbeat = heartbeat_7300se,
  41. #endif
  42. };
  43. ALIAS_MV(7300se)