1 /* SPDX-License-Identifier: GPL-2.0
3 * include/asm-sh/machvec.h
8 #ifndef _ASM_SH_MACHVEC_H
9 #define _ASM_SH_MACHVEC_H
11 #include <linux/types.h>
12 #include <linux/time.h>
13 #include <generated/machtypes.h>
15 struct sh_machine_vector {
16 void (*mv_setup)(char **cmdline_p);
19 int (*mv_irq_demux)(int irq);
20 void (*mv_init_irq)(void);
22 int (*mv_clk_init)(void);
23 int (*mv_mode_pins)(void);
25 void (*mv_mem_init)(void);
26 void (*mv_mem_reserve)(void);
29 extern struct sh_machine_vector sh_mv;
31 #define get_system_type() sh_mv.mv_name
34 __used __section(".machvec.init")
36 #endif /* _ASM_SH_MACHVEC_H */