setup.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * arch/sh/boards/se/73180/setup.c
  3. *
  4. * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp>
  5. * Based on arch/sh/setup_shmse.c
  6. *
  7. * Modified for 73180 SolutionEngine
  8. * by YOSHII Takashi <yoshii-takashi@hitachi-ul.co.jp>
  9. *
  10. */
  11. #include <linux/init.h>
  12. #include <asm/machvec.h>
  13. #include <asm/machvec_init.h>
  14. #include <asm/mach/io.h>
  15. void heartbeat_73180se(void);
  16. void init_73180se_IRQ(void);
  17. const char *
  18. get_system_type(void)
  19. {
  20. return "SolutionEngine 73180";
  21. }
  22. /*
  23. * The Machine Vector
  24. */
  25. struct sh_machine_vector mv_73180se __initmv = {
  26. .mv_nr_irqs = 108,
  27. .mv_inb = sh73180se_inb,
  28. .mv_inw = sh73180se_inw,
  29. .mv_inl = sh73180se_inl,
  30. .mv_outb = sh73180se_outb,
  31. .mv_outw = sh73180se_outw,
  32. .mv_outl = sh73180se_outl,
  33. .mv_inb_p = sh73180se_inb_p,
  34. .mv_inw_p = sh73180se_inw,
  35. .mv_inl_p = sh73180se_inl,
  36. .mv_outb_p = sh73180se_outb_p,
  37. .mv_outw_p = sh73180se_outw,
  38. .mv_outl_p = sh73180se_outl,
  39. .mv_insb = sh73180se_insb,
  40. .mv_insw = sh73180se_insw,
  41. .mv_insl = sh73180se_insl,
  42. .mv_outsb = sh73180se_outsb,
  43. .mv_outsw = sh73180se_outsw,
  44. .mv_outsl = sh73180se_outsl,
  45. .mv_init_irq = init_73180se_IRQ,
  46. #ifdef CONFIG_HEARTBEAT
  47. .mv_heartbeat = heartbeat_73180se,
  48. #endif
  49. };
  50. ALIAS_MV(73180se)
  51. /*
  52. * Initialize the board
  53. */
  54. void __init
  55. platform_setup(void)
  56. {
  57. }