RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / sh / boards / mach-dreamcast / setup.c
blobad1a4db72e0406308484ce7bebe6ad514433696b
1 /*
2 * arch/sh/boards/dreamcast/setup.c
4 * Hardware support for the Sega Dreamcast.
6 * Copyright (c) 2001, 2002 M. R. Brown <mrbrown@linuxdc.org>
7 * Copyright (c) 2002, 2003, 2004 Paul Mundt <lethal@linux-sh.org>
9 * This file is part of the LinuxDC project (www.linuxdc.org)
11 * Released under the terms of the GNU GPL v2.0.
13 * This file originally bore the message (with enclosed-$):
14 * Id: setup_dc.c,v 1.5 2001/05/24 05:09:16 mrbrown Exp
15 * SEGA Dreamcast support
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/param.h>
21 #include <linux/interrupt.h>
22 #include <linux/init.h>
23 #include <linux/irq.h>
24 #include <linux/device.h>
25 #include <asm/io.h>
26 #include <asm/irq.h>
27 #include <asm/rtc.h>
28 #include <asm/machvec.h>
29 #include <mach/sysasic.h>
31 static void __init dreamcast_setup(char **cmdline_p)
33 board_time_init = aica_time_init;
36 static struct sh_machine_vector mv_dreamcast __initmv = {
37 .mv_name = "Sega Dreamcast",
38 .mv_setup = dreamcast_setup,
39 .mv_irq_demux = systemasic_irq_demux,
40 .mv_init_irq = systemasic_irq_init,