setup.c 1020 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * arch/sh/boards/dreamcast/setup.c
  4. *
  5. * Hardware support for the Sega Dreamcast.
  6. *
  7. * Copyright (c) 2001, 2002 M. R. Brown <[email protected]>
  8. * Copyright (c) 2002, 2003, 2004 Paul Mundt <[email protected]>
  9. *
  10. * This file is part of the LinuxDC project (www.linuxdc.org)
  11. *
  12. * This file originally bore the message (with enclosed-$):
  13. * Id: setup_dc.c,v 1.5 2001/05/24 05:09:16 mrbrown Exp
  14. * SEGA Dreamcast support
  15. */
  16. #include <linux/sched.h>
  17. #include <linux/kernel.h>
  18. #include <linux/param.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/init.h>
  21. #include <linux/irq.h>
  22. #include <linux/device.h>
  23. #include <asm/io.h>
  24. #include <asm/irq.h>
  25. #include <asm/rtc.h>
  26. #include <asm/machvec.h>
  27. #include <mach/sysasic.h>
  28. static void __init dreamcast_setup(char **cmdline_p)
  29. {
  30. }
  31. static struct sh_machine_vector mv_dreamcast __initmv = {
  32. .mv_name = "Sega Dreamcast",
  33. .mv_setup = dreamcast_setup,
  34. .mv_irq_demux = systemasic_irq_demux,
  35. .mv_init_irq = systemasic_irq_init,
  36. };