2 * linux/arch/sh/kernel/mach_7751se.c
4 * Minor tweak of mach_se.c file to reference 7751se-specific items.
6 * May be copied or modified under the terms of the GNU General Public
7 * License. See linux/COPYING for more information.
9 * Machine vector for the Hitachi 7751 SolutionEngine
12 #include <linux/config.h>
13 #include <linux/init.h>
15 #include <asm/machvec.h>
17 #include <asm/machvec_init.h>
19 #include <asm/se7751/io.h>
21 void heartbeat_7751se(void);
22 void init_7751se_IRQ(void);
28 struct sh_machine_vector mv_7751se __initmv
= {
31 .mv_inb
= sh7751se_inb
,
32 .mv_inw
= sh7751se_inw
,
33 .mv_inl
= sh7751se_inl
,
34 .mv_outb
= sh7751se_outb
,
35 .mv_outw
= sh7751se_outw
,
36 .mv_outl
= sh7751se_outl
,
38 .mv_inb_p
= sh7751se_inb_p
,
39 .mv_inw_p
= sh7751se_inw
,
40 .mv_inl_p
= sh7751se_inl
,
41 .mv_outb_p
= sh7751se_outb_p
,
42 .mv_outw_p
= sh7751se_outw
,
43 .mv_outl_p
= sh7751se_outl
,
45 .mv_insl
= sh7751se_insl
,
46 .mv_outsl
= sh7751se_outsl
,
48 .mv_isa_port2addr
= sh7751se_isa_port2addr
,
50 .mv_init_irq
= init_7751se_IRQ
,
51 #ifdef CONFIG_HEARTBEAT
52 .mv_heartbeat
= heartbeat_7751se
,