2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* include/asm-sh/machvec.h
|
|
|
|
*
|
|
|
|
* Copyright 2000 Stuart Menefy (stuart.menefy@st.com)
|
|
|
|
*
|
|
|
|
* May be copied or modified under the terms of the GNU General Public
|
|
|
|
* License. See linux/COPYING for more information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_SH_MACHVEC_H
|
2006-09-27 17:17:31 +08:00
|
|
|
#define _ASM_SH_MACHVEC_H
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/time.h>
|
2009-10-18 04:20:22 +08:00
|
|
|
#include <generated/machtypes.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2006-01-17 14:14:15 +08:00
|
|
|
struct sh_machine_vector {
|
2006-09-27 17:17:31 +08:00
|
|
|
void (*mv_setup)(char **cmdline_p);
|
|
|
|
const char *mv_name;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-05-25 19:06:13 +08:00
|
|
|
int (*mv_irq_demux)(int irq);
|
|
|
|
void (*mv_init_irq)(void);
|
|
|
|
|
2014-04-08 06:39:19 +08:00
|
|
|
#ifdef CONFIG_HAS_IOPORT_MAP
|
2006-01-17 14:14:15 +08:00
|
|
|
void __iomem *(*mv_ioport_map)(unsigned long port, unsigned int size);
|
|
|
|
void (*mv_ioport_unmap)(void __iomem *);
|
2010-05-25 19:06:13 +08:00
|
|
|
#endif
|
2009-05-13 16:38:11 +08:00
|
|
|
|
|
|
|
int (*mv_clk_init)(void);
|
2009-05-28 19:51:51 +08:00
|
|
|
int (*mv_mode_pins)(void);
|
2010-05-10 14:39:05 +08:00
|
|
|
|
|
|
|
void (*mv_mem_init)(void);
|
2011-01-07 14:19:56 +08:00
|
|
|
void (*mv_mem_reserve)(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct sh_machine_vector sh_mv;
|
|
|
|
|
2006-09-27 17:17:31 +08:00
|
|
|
#define get_system_type() sh_mv.mv_name
|
|
|
|
|
2007-05-15 14:19:34 +08:00
|
|
|
#define __initmv \
|
2008-01-25 05:16:20 +08:00
|
|
|
__used __section(.machvec.init)
|
2007-05-15 14:19:34 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _ASM_SH_MACHVEC_H */
|