Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / sh / boards / se / 770x / mach.c
blobf9b4c56cc47ea994377cf514479d887777cc090f
1 /*
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>
16 #include <asm/rtc.h>
17 #include <asm/machvec_init.h>
19 #include <asm/se/io.h>
21 void heartbeat_se(void);
22 void setup_se(void);
23 void init_se_IRQ(void);
26 * The Machine Vector
29 struct sh_machine_vector mv_se __initmv = {
30 #if defined(CONFIG_CPU_SH4)
31 .mv_nr_irqs = 48,
32 #elif defined(CONFIG_CPU_SUBTYPE_SH7708)
33 .mv_nr_irqs = 32,
34 #elif defined(CONFIG_CPU_SUBTYPE_SH7709)
35 .mv_nr_irqs = 61,
36 #elif defined(CONFIG_CPU_SUBTYPE_SH7705)
37 .mv_nr_irqs = 86,
38 #endif
40 .mv_inb = se_inb,
41 .mv_inw = se_inw,
42 .mv_inl = se_inl,
43 .mv_outb = se_outb,
44 .mv_outw = se_outw,
45 .mv_outl = se_outl,
47 .mv_inb_p = se_inb_p,
48 .mv_inw_p = se_inw,
49 .mv_inl_p = se_inl,
50 .mv_outb_p = se_outb_p,
51 .mv_outw_p = se_outw,
52 .mv_outl_p = se_outl,
54 .mv_insb = se_insb,
55 .mv_insw = se_insw,
56 .mv_insl = se_insl,
57 .mv_outsb = se_outsb,
58 .mv_outsw = se_outsw,
59 .mv_outsl = se_outsl,
61 .mv_isa_port2addr = se_isa_port2addr,
63 .mv_init_irq = init_se_IRQ,
64 #ifdef CONFIG_HEARTBEAT
65 .mv_heartbeat = heartbeat_se,
66 #endif
68 ALIAS_MV(se)