sh: Board updates for I/O routine rework.
[linux-2.6] / arch / sh / boards / se / 73180 / setup.c
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
12 #include <linux/init.h>
13 #include <asm/machvec.h>
14 #include <asm/se73180.h>
15
16 void heartbeat_73180se(void);
17 void init_73180se_IRQ(void);
18
19 const char *
20 get_system_type(void)
21 {
22         return "SolutionEngine 73180";
23 }
24
25 /*
26  * The Machine Vector
27  */
28
29 struct sh_machine_vector mv_73180se __initmv = {
30         .mv_nr_irqs = 108,
31         .mv_inb = sh73180se_inb,
32         .mv_inw = sh73180se_inw,
33         .mv_inl = sh73180se_inl,
34         .mv_outb = sh73180se_outb,
35         .mv_outw = sh73180se_outw,
36         .mv_outl = sh73180se_outl,
37
38         .mv_inb_p = sh73180se_inb_p,
39         .mv_inw_p = sh73180se_inw,
40         .mv_inl_p = sh73180se_inl,
41         .mv_outb_p = sh73180se_outb_p,
42         .mv_outw_p = sh73180se_outw,
43         .mv_outl_p = sh73180se_outl,
44
45         .mv_insb = sh73180se_insb,
46         .mv_insw = sh73180se_insw,
47         .mv_insl = sh73180se_insl,
48         .mv_outsb = sh73180se_outsb,
49         .mv_outsw = sh73180se_outsw,
50         .mv_outsl = sh73180se_outsl,
51
52         .mv_init_irq = init_73180se_IRQ,
53 #ifdef CONFIG_HEARTBEAT
54         .mv_heartbeat = heartbeat_73180se,
55 #endif
56 };
57
58 ALIAS_MV(73180se)
59 /*
60  * Initialize the board
61  */
62 void __init
63 platform_setup(void)
64 {
65
66 }