2 * linux/arch/sh/boards/dmida/mach.c
4 * by Greg Banks <gbanks@pocketpenguins.com>
5 * (c) 2000 PocketPenguins Inc
7 * Derived from mach_hp600.c, which bore the message:
8 * Copyright (C) 2000 Stuart Menefy (stuart.menefy@st.com)
10 * May be copied or modified under the terms of the GNU General Public
11 * License. See linux/COPYING for more information.
13 * Machine vector for the DataMyte Industrial Digital Assistant(tm).
14 * See http://www.dmida.com
18 #include <linux/init.h>
20 #include <asm/machvec.h>
22 #include <asm/machvec_init.h>
25 #include <asm/hd64465/hd64465.h>
32 struct sh_machine_vector mv_dmida __initmv
= {
33 .mv_nr_irqs
= HD64465_IRQ_BASE
+HD64465_IRQ_NUM
,
35 .mv_inb
= hd64465_inb
,
36 .mv_inw
= hd64465_inw
,
37 .mv_inl
= hd64465_inl
,
38 .mv_outb
= hd64465_outb
,
39 .mv_outw
= hd64465_outw
,
40 .mv_outl
= hd64465_outl
,
42 .mv_inb_p
= hd64465_inb_p
,
43 .mv_inw_p
= hd64465_inw
,
44 .mv_inl_p
= hd64465_inl
,
45 .mv_outb_p
= hd64465_outb_p
,
46 .mv_outw_p
= hd64465_outw
,
47 .mv_outl_p
= hd64465_outl
,
49 .mv_insb
= hd64465_insb
,
50 .mv_insw
= hd64465_insw
,
51 .mv_insl
= hd64465_insl
,
52 .mv_outsb
= hd64465_outsb
,
53 .mv_outsw
= hd64465_outsw
,
54 .mv_outsl
= hd64465_outsl
,
56 .mv_irq_demux
= hd64465_irq_demux
,