diff options
Diffstat (limited to 'arch/sh/boards/se/770x/mach.c')
-rw-r--r-- | arch/sh/boards/se/770x/mach.c | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/arch/sh/boards/se/770x/mach.c b/arch/sh/boards/se/770x/mach.c new file mode 100644 index 000000000000..f9b4c56cc47e --- /dev/null +++ b/arch/sh/boards/se/770x/mach.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/kernel/mach_se.c | ||
3 | * | ||
4 | * Copyright (C) 2000 Stuart Menefy (stuart.menefy@st.com) | ||
5 | * | ||
6 | * May be copied or modified under the terms of the GNU General Public | ||
7 | * License. See linux/COPYING for more information. | ||
8 | * | ||
9 | * Machine vector for the Hitachi SolutionEngine | ||
10 | */ | ||
11 | |||
12 | #include <linux/config.h> | ||
13 | #include <linux/init.h> | ||
14 | |||
15 | #include <asm/machvec.h> | ||
16 | #include <asm/rtc.h> | ||
17 | #include <asm/machvec_init.h> | ||
18 | |||
19 | #include <asm/se/io.h> | ||
20 | |||
21 | void heartbeat_se(void); | ||
22 | void setup_se(void); | ||
23 | void init_se_IRQ(void); | ||
24 | |||
25 | /* | ||
26 | * The Machine Vector | ||
27 | */ | ||
28 | |||
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 | ||
39 | |||
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, | ||
46 | |||
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, | ||
53 | |||
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, | ||
60 | |||
61 | .mv_isa_port2addr = se_isa_port2addr, | ||
62 | |||
63 | .mv_init_irq = init_se_IRQ, | ||
64 | #ifdef CONFIG_HEARTBEAT | ||
65 | .mv_heartbeat = heartbeat_se, | ||
66 | #endif | ||
67 | }; | ||
68 | ALIAS_MV(se) | ||