1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* linux/arch/sh/kernel/mach_unknown.c
*
* Copyright (C) 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.
*
* Machine specific code for an unknown machine (internal peripherials only)
*/
#include <linux/config.h>
#include <linux/init.h>
#include <asm/machvec.h>
#include <asm/machvec_init.h>
#include <asm/io_unknown.h>
/*
* The Machine Vector
*/
struct sh_machine_vector mv_unknown __initmv = {
mv_name: "Unknown",
#if defined(__SH4__)
mv_nr_irqs: 48,
#elif defined(CONFIG_CPU_SUBTYPE_SH7708)
mv_nr_irqs: 32,
#elif defined(CONFIG_CPU_SUBTYPE_SH7709)
mv_nr_irqs: 61,
#endif
mv_inb: unknown_inb,
mv_inw: unknown_inw,
mv_inl: unknown_inl,
mv_outb: unknown_outb,
mv_outw: unknown_outw,
mv_outl: unknown_outl,
mv_inb_p: unknown_inb_p,
mv_inw_p: unknown_inw_p,
mv_inl_p: unknown_inl_p,
mv_outb_p: unknown_outb_p,
mv_outw_p: unknown_outw_p,
mv_outl_p: unknown_outl_p,
mv_insb: unknown_insb,
mv_insw: unknown_insw,
mv_insl: unknown_insl,
mv_outsb: unknown_outsb,
mv_outsw: unknown_outsw,
mv_outsl: unknown_outsl,
mv_readb: unknown_readb,
mv_readw: unknown_readw,
mv_readl: unknown_readl,
mv_writeb: unknown_writeb,
mv_writew: unknown_writew,
mv_writel: unknown_writel,
mv_ioremap: unknown_ioremap,
mv_ioremap_nocache: unknown_ioremap_nocache,
mv_iounmap: unknown_iounmap,
mv_isa_port2addr: unknown_isa_port2addr,
};
ALIAS_MV(unknown)
|