setup.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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/machvec_init.h>
  12. #include <asm/mach/io.h>
  13. void heartbeat_7300se(void);
  14. void init_7300se_IRQ(void);
  15. const char *
  16. get_system_type(void)
  17. {
  18. return "SolutionEngine 7300";
  19. }
  20. /*
  21. * The Machine Vector
  22. */
  23. struct sh_machine_vector mv_7300se __initmv = {
  24. .mv_nr_irqs = 109,
  25. .mv_inb = sh7300se_inb,
  26. .mv_inw = sh7300se_inw,
  27. .mv_inl = sh7300se_inl,
  28. .mv_outb = sh7300se_outb,
  29. .mv_outw = sh7300se_outw,
  30. .mv_outl = sh7300se_outl,
  31. .mv_inb_p = sh7300se_inb_p,
  32. .mv_inw_p = sh7300se_inw,
  33. .mv_inl_p = sh7300se_inl,
  34. .mv_outb_p = sh7300se_outb_p,
  35. .mv_outw_p = sh7300se_outw,
  36. .mv_outl_p = sh7300se_outl,
  37. .mv_insb = sh7300se_insb,
  38. .mv_insw = sh7300se_insw,
  39. .mv_insl = sh7300se_insl,
  40. .mv_outsb = sh7300se_outsb,
  41. .mv_outsw = sh7300se_outsw,
  42. .mv_outsl = sh7300se_outsl,
  43. .mv_init_irq = init_7300se_IRQ,
  44. #ifdef CONFIG_HEARTBEAT
  45. .mv_heartbeat = heartbeat_7300se,
  46. #endif
  47. };
  48. ALIAS_MV(7300se)
  49. /*
  50. * Initialize the board
  51. */
  52. void __init
  53. platform_setup(void)
  54. {
  55. }