2 * linux/arch/sh/kernel/mach_se.c
4 * Copyright (C) 2000 Stuart Menefy (stuart.menefy@st.com)
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 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/se/io.h>
21 void heartbeat_se(void);
23 void init_se_IRQ(void);
29 struct sh_machine_vector mv_se __initmv
= {
30 #if defined(CONFIG_CPU_SH4)
32 #elif defined(CONFIG_CPU_SUBTYPE_SH7708)
34 #elif defined(CONFIG_CPU_SUBTYPE_SH7709)
36 #elif defined(CONFIG_CPU_SUBTYPE_SH7705)
50 .mv_outb_p
= se_outb_p
,
61 .mv_isa_port2addr
= se_isa_port2addr
,
63 .mv_init_irq
= init_se_IRQ
,
64 #ifdef CONFIG_HEARTBEAT
65 .mv_heartbeat
= heartbeat_se
,