| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * include/asm-sh/machvec.h | 
 | 3 |  * | 
 | 4 |  * Copyright 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 |  | 
 | 10 | #ifndef _ASM_SH_MACHVEC_H | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 11 | #define _ASM_SH_MACHVEC_H | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/types.h> | 
 | 14 | #include <linux/time.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/machtypes.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
| Paul Mundt | b66c1a3 | 2006-01-16 22:14:15 -0800 | [diff] [blame] | 17 | struct sh_machine_vector { | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 18 | 	void (*mv_setup)(char **cmdline_p); | 
 | 19 | 	const char *mv_name; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | 	int mv_nr_irqs; | 
 | 21 |  | 
| Paul Mundt | b66c1a3 | 2006-01-16 22:14:15 -0800 | [diff] [blame] | 22 | 	u8 (*mv_inb)(unsigned long); | 
 | 23 | 	u16 (*mv_inw)(unsigned long); | 
 | 24 | 	u32 (*mv_inl)(unsigned long); | 
 | 25 | 	void (*mv_outb)(u8, unsigned long); | 
 | 26 | 	void (*mv_outw)(u16, unsigned long); | 
 | 27 | 	void (*mv_outl)(u32, unsigned long); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 |  | 
| Paul Mundt | b66c1a3 | 2006-01-16 22:14:15 -0800 | [diff] [blame] | 29 | 	u8 (*mv_inb_p)(unsigned long); | 
 | 30 | 	u16 (*mv_inw_p)(unsigned long); | 
 | 31 | 	u32 (*mv_inl_p)(unsigned long); | 
 | 32 | 	void (*mv_outb_p)(u8, unsigned long); | 
 | 33 | 	void (*mv_outw_p)(u16, unsigned long); | 
 | 34 | 	void (*mv_outl_p)(u32, unsigned long); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 |  | 
| Paul Mundt | b66c1a3 | 2006-01-16 22:14:15 -0800 | [diff] [blame] | 36 | 	void (*mv_insb)(unsigned long, void *dst, unsigned long count); | 
 | 37 | 	void (*mv_insw)(unsigned long, void *dst, unsigned long count); | 
 | 38 | 	void (*mv_insl)(unsigned long, void *dst, unsigned long count); | 
 | 39 | 	void (*mv_outsb)(unsigned long, const void *src, unsigned long count); | 
 | 40 | 	void (*mv_outsw)(unsigned long, const void *src, unsigned long count); | 
 | 41 | 	void (*mv_outsl)(unsigned long, const void *src, unsigned long count); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | 	int (*mv_irq_demux)(int irq); | 
 | 44 |  | 
 | 45 | 	void (*mv_init_irq)(void); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 |  | 
| Paul Mundt | b66c1a3 | 2006-01-16 22:14:15 -0800 | [diff] [blame] | 47 | 	void __iomem *(*mv_ioport_map)(unsigned long port, unsigned int size); | 
 | 48 | 	void (*mv_ioport_unmap)(void __iomem *); | 
| Paul Mundt | 253b088 | 2009-05-13 17:38:11 +0900 | [diff] [blame] | 49 |  | 
 | 50 | 	int (*mv_clk_init)(void); | 
| Magnus Damm | eb9b9b5 | 2009-05-28 11:51:51 +0000 | [diff] [blame] | 51 | 	int (*mv_mode_pins)(void); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | }; | 
 | 53 |  | 
 | 54 | extern struct sh_machine_vector sh_mv; | 
 | 55 |  | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 56 | #define get_system_type()	sh_mv.mv_name | 
 | 57 |  | 
| Paul Mundt | 82f81f4 | 2007-05-15 15:19:34 +0900 | [diff] [blame] | 58 | #define __initmv \ | 
| Adrian Bunk | 3ff6eec | 2008-01-24 22:16:20 +0100 | [diff] [blame] | 59 | 	__used __section(.machvec.init) | 
| Paul Mundt | 82f81f4 | 2007-05-15 15:19:34 +0900 | [diff] [blame] | 60 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #endif /* _ASM_SH_MACHVEC_H */ |