| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/arch/sh/boards/dmida/mach.c | 
|  | 3 | * | 
|  | 4 | * by Greg Banks <gbanks@pocketpenguins.com> | 
|  | 5 | * (c) 2000 PocketPenguins Inc | 
|  | 6 | * | 
|  | 7 | * Derived from mach_hp600.c, which bore the message: | 
|  | 8 | * Copyright (C) 2000 Stuart Menefy (stuart.menefy@st.com) | 
|  | 9 | * | 
|  | 10 | * May be copied or modified under the terms of the GNU General Public | 
|  | 11 | * License.  See linux/COPYING for more information. | 
|  | 12 | * | 
|  | 13 | * Machine vector for the DataMyte Industrial Digital Assistant(tm). | 
|  | 14 | * See http://www.dmida.com | 
|  | 15 | * | 
|  | 16 | */ | 
|  | 17 |  | 
|  | 18 | #include <linux/init.h> | 
|  | 19 |  | 
|  | 20 | #include <asm/machvec.h> | 
|  | 21 | #include <asm/rtc.h> | 
|  | 22 | #include <asm/machvec_init.h> | 
|  | 23 |  | 
|  | 24 | #include <asm/io.h> | 
|  | 25 | #include <asm/hd64465/hd64465.h> | 
|  | 26 | #include <asm/irq.h> | 
|  | 27 |  | 
|  | 28 | /* | 
|  | 29 | * The Machine Vector | 
|  | 30 | */ | 
|  | 31 |  | 
|  | 32 | struct sh_machine_vector mv_dmida __initmv = { | 
|  | 33 | .mv_nr_irqs		= HD64465_IRQ_BASE+HD64465_IRQ_NUM, | 
|  | 34 |  | 
|  | 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, | 
|  | 41 |  | 
|  | 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, | 
|  | 48 |  | 
|  | 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, | 
|  | 55 |  | 
|  | 56 | .mv_irq_demux		= hd64465_irq_demux, | 
|  | 57 | }; | 
|  | 58 | ALIAS_MV(dmida) | 
|  | 59 |  |