Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[pandora-kernel.git] / arch / sh / boards / saturn / setup.c
1 /* 
2  * arch/sh/boards/saturn/setup.c
3  *
4  * Hardware support for the Sega Saturn.
5  *
6  * Copyright (c) 2002 Paul Mundt
7  *
8  * Released under the terms of the GNU GPL v2.0.
9  */
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <asm/io.h>
13 #include <asm/machvec.h>
14 #include <asm/mach/io.h>
15
16 extern int saturn_irq_demux(int irq_nr);
17
18 /*
19  * The Machine Vector
20  */
21 struct sh_machine_vector mv_saturn __initmv = {
22         .mv_name                = "Sega Saturn",
23         .mv_nr_irqs             = 80,   /* Fix this later */
24
25         .mv_isa_port2addr       = saturn_isa_port2addr,
26         .mv_irq_demux           = saturn_irq_demux,
27
28         .mv_ioremap             = saturn_ioremap,
29         .mv_iounmap             = saturn_iounmap,
30 };
31 ALIAS_MV(saturn)