setup.c 1.2 KB

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