2 * arch/sh/boards/saturn/setup.c
4 * Hardware support for the Sega Saturn.
6 * Copyright (c) 2002 Paul Mundt
8 * Released under the terms of the GNU GPL v2.0.
10 #include <linux/kernel.h>
11 #include <linux/init.h>
14 #include <asm/machvec.h>
15 #include <asm/mach/io.h>
17 extern int saturn_irq_demux(int irq_nr
);
19 const char *get_system_type(void)
27 struct sh_machine_vector mv_saturn __initmv
= {
28 .mv_nr_irqs
= 80, /* Fix this later */
30 .mv_isa_port2addr
= saturn_isa_port2addr
,
31 .mv_irq_demux
= saturn_irq_demux
,
33 .mv_ioremap
= saturn_ioremap
,
34 .mv_iounmap
= saturn_iounmap
,
39 int __init
platform_setup(void)