diff options
author | Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> | 2008-03-21 02:54:13 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-04-18 12:50:02 -0400 |
commit | 6e862995a07629858bfa16e0991a258de35007f3 (patch) | |
tree | 353fc5ae889e74f41d5032890d9843100f462e01 /arch/sh | |
parent | d391c6217d3214bd8278e1e3517ef57abbc4b317 (diff) |
sh: Add support for Solution Engine SH7721 board
Add support for Solution Engine SH7721 board(MS7721RP01).
Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/Kconfig | 8 | ||||
-rw-r--r-- | arch/sh/Makefile | 1 | ||||
-rw-r--r-- | arch/sh/boards/se/7721/Makefile | 1 | ||||
-rw-r--r-- | arch/sh/boards/se/7721/irq.c | 45 | ||||
-rw-r--r-- | arch/sh/boards/se/7721/setup.c | 99 | ||||
-rw-r--r-- | arch/sh/configs/se7721_defconfig | 1085 | ||||
-rw-r--r-- | arch/sh/kernel/cf-enabler.c | 15 | ||||
-rw-r--r-- | arch/sh/tools/mach-types | 1 |
8 files changed, 1249 insertions, 6 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 5b94cacc7d54..df2e2f99b902 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -372,6 +372,14 @@ config SH_7619_SOLUTION_ENGINE | |||
372 | Select 7619 SolutionEngine if configuring for a Hitachi SH7619 | 372 | Select 7619 SolutionEngine if configuring for a Hitachi SH7619 |
373 | evaluation board. | 373 | evaluation board. |
374 | 374 | ||
375 | config SH_7721_SOLUTION_ENGINE | ||
376 | bool "SolutionEngine7721" | ||
377 | select SOLUTION_ENGINE | ||
378 | depends on CPU_SUBTYPE_SH7721 | ||
379 | help | ||
380 | Select 7721 SolutionEngine if configuring for a Hitachi SH7721 | ||
381 | evaluation board. | ||
382 | |||
375 | config SH_7722_SOLUTION_ENGINE | 383 | config SH_7722_SOLUTION_ENGINE |
376 | bool "SolutionEngine7722" | 384 | bool "SolutionEngine7722" |
377 | select SOLUTION_ENGINE | 385 | select SOLUTION_ENGINE |
diff --git a/arch/sh/Makefile b/arch/sh/Makefile index cffc92b1bf2e..bb06f83e6239 100644 --- a/arch/sh/Makefile +++ b/arch/sh/Makefile | |||
@@ -107,6 +107,7 @@ machdir-$(CONFIG_SH_7722_SOLUTION_ENGINE) += se/7722 | |||
107 | machdir-$(CONFIG_SH_7751_SOLUTION_ENGINE) += se/7751 | 107 | machdir-$(CONFIG_SH_7751_SOLUTION_ENGINE) += se/7751 |
108 | machdir-$(CONFIG_SH_7780_SOLUTION_ENGINE) += se/7780 | 108 | machdir-$(CONFIG_SH_7780_SOLUTION_ENGINE) += se/7780 |
109 | machdir-$(CONFIG_SH_7343_SOLUTION_ENGINE) += se/7343 | 109 | machdir-$(CONFIG_SH_7343_SOLUTION_ENGINE) += se/7343 |
110 | machdir-$(CONFIG_SH_7721_SOLUTION_ENGINE) += se/7721 | ||
110 | machdir-$(CONFIG_SH_HP6XX) += hp6xx | 111 | machdir-$(CONFIG_SH_HP6XX) += hp6xx |
111 | machdir-$(CONFIG_SH_DREAMCAST) += dreamcast | 112 | machdir-$(CONFIG_SH_DREAMCAST) += dreamcast |
112 | machdir-$(CONFIG_SH_MPC1211) += mpc1211 | 113 | machdir-$(CONFIG_SH_MPC1211) += mpc1211 |
diff --git a/arch/sh/boards/se/7721/Makefile b/arch/sh/boards/se/7721/Makefile new file mode 100644 index 000000000000..7f09030980b3 --- /dev/null +++ b/arch/sh/boards/se/7721/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y := setup.o irq.o | |||
diff --git a/arch/sh/boards/se/7721/irq.c b/arch/sh/boards/se/7721/irq.c new file mode 100644 index 000000000000..c4fdd622bf8b --- /dev/null +++ b/arch/sh/boards/se/7721/irq.c | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/boards/se/7721/irq.c | ||
3 | * | ||
4 | * Copyright (C) 2008 Renesas Solutions Corp. | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/irq.h> | ||
12 | #include <linux/interrupt.h> | ||
13 | #include <linux/io.h> | ||
14 | #include <asm/se7721.h> | ||
15 | |||
16 | enum { | ||
17 | UNUSED = 0, | ||
18 | |||
19 | /* board specific interrupt sources */ | ||
20 | MRSHPC, | ||
21 | }; | ||
22 | |||
23 | static struct intc_vect vectors[] __initdata = { | ||
24 | INTC_IRQ(MRSHPC, MRSHPC_IRQ0), | ||
25 | }; | ||
26 | |||
27 | static struct intc_prio_reg prio_registers[] __initdata = { | ||
28 | { FPGA_ILSR6, 0, 8, 4, /* IRLMSK */ | ||
29 | { 0, MRSHPC } }, | ||
30 | }; | ||
31 | |||
32 | static DECLARE_INTC_DESC(intc_desc, "SE7721", vectors, | ||
33 | NULL, NULL, prio_registers, NULL); | ||
34 | |||
35 | /* | ||
36 | * Initialize IRQ setting | ||
37 | */ | ||
38 | void __init init_se7721_IRQ(void) | ||
39 | { | ||
40 | /* PPCR */ | ||
41 | ctrl_outw(ctrl_inw(0xa4050118) & ~0x00ff, 0xa4050118); | ||
42 | |||
43 | register_intc_controller(&intc_desc); | ||
44 | intc_set_priority(MRSHPC_IRQ0, 0xf - MRSHPC_IRQ0); | ||
45 | } | ||
diff --git a/arch/sh/boards/se/7721/setup.c b/arch/sh/boards/se/7721/setup.c new file mode 100644 index 000000000000..1be3e92752f7 --- /dev/null +++ b/arch/sh/boards/se/7721/setup.c | |||
@@ -0,0 +1,99 @@ | |||
1 | /* | ||
2 | * linux/arch/sh/boards/se/7721/setup.c | ||
3 | * | ||
4 | * Copyright (C) 2008 Renesas Solutions Corp. | ||
5 | * | ||
6 | * Hitachi UL SolutionEngine 7721 Support. | ||
7 | * | ||
8 | * This file is subject to the terms and conditions of the GNU General Public | ||
9 | * License. See the file "COPYING" in the main directory of this archive | ||
10 | * for more details. | ||
11 | * | ||
12 | */ | ||
13 | #include <linux/init.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <asm/machvec.h> | ||
16 | #include <asm/se7721.h> | ||
17 | #include <asm/io.h> | ||
18 | #include <asm/heartbeat.h> | ||
19 | |||
20 | static unsigned char heartbeat_bit_pos[] = { 8, 9, 10, 11, 12, 13, 14, 15 }; | ||
21 | |||
22 | static struct heartbeat_data heartbeat_data = { | ||
23 | .bit_pos = heartbeat_bit_pos, | ||
24 | .nr_bits = ARRAY_SIZE(heartbeat_bit_pos), | ||
25 | .regsize = 16, | ||
26 | }; | ||
27 | |||
28 | static struct resource heartbeat_resources[] = { | ||
29 | [0] = { | ||
30 | .start = PA_LED, | ||
31 | .end = PA_LED, | ||
32 | .flags = IORESOURCE_MEM, | ||
33 | }, | ||
34 | }; | ||
35 | |||
36 | static struct platform_device heartbeat_device = { | ||
37 | .name = "heartbeat", | ||
38 | .id = -1, | ||
39 | .dev = { | ||
40 | .platform_data = &heartbeat_data, | ||
41 | }, | ||
42 | .num_resources = ARRAY_SIZE(heartbeat_resources), | ||
43 | .resource = heartbeat_resources, | ||
44 | }; | ||
45 | |||
46 | static struct resource cf_ide_resources[] = { | ||
47 | [0] = { | ||
48 | .start = PA_MRSHPC_IO + 0x1f0, | ||
49 | .end = PA_MRSHPC_IO + 0x1f0 + 8 , | ||
50 | .flags = IORESOURCE_IO, | ||
51 | }, | ||
52 | [1] = { | ||
53 | .start = PA_MRSHPC_IO + 0x1f0 + 0x206, | ||
54 | .end = PA_MRSHPC_IO + 0x1f0 + 8 + 0x206 + 8, | ||
55 | .flags = IORESOURCE_IO, | ||
56 | }, | ||
57 | [2] = { | ||
58 | .start = MRSHPC_IRQ0, | ||
59 | .flags = IORESOURCE_IRQ, | ||
60 | }, | ||
61 | }; | ||
62 | |||
63 | static struct platform_device cf_ide_device = { | ||
64 | .name = "pata_platform", | ||
65 | .id = -1, | ||
66 | .num_resources = ARRAY_SIZE(cf_ide_resources), | ||
67 | .resource = cf_ide_resources, | ||
68 | }; | ||
69 | |||
70 | static struct platform_device *se7721_devices[] __initdata = { | ||
71 | &cf_ide_device, | ||
72 | &heartbeat_device | ||
73 | }; | ||
74 | |||
75 | static int __init se7721_devices_setup(void) | ||
76 | { | ||
77 | return platform_add_devices(se7721_devices, | ||
78 | ARRAY_SIZE(se7721_devices)); | ||
79 | } | ||
80 | device_initcall(se7721_devices_setup); | ||
81 | |||
82 | static void __init se7721_setup(char **cmdline_p) | ||
83 | { | ||
84 | /* for USB */ | ||
85 | ctrl_outw(0x0000, 0xA405010C); /* PGCR */ | ||
86 | ctrl_outw(0x0000, 0xA405010E); /* PHCR */ | ||
87 | ctrl_outw(0x00AA, 0xA4050118); /* PPCR */ | ||
88 | ctrl_outw(0x0000, 0xA4050124); /* PSELA */ | ||
89 | } | ||
90 | |||
91 | /* | ||
92 | * The Machine Vector | ||
93 | */ | ||
94 | struct sh_machine_vector mv_se7721 __initmv = { | ||
95 | .mv_name = "Solution Engine 7721", | ||
96 | .mv_setup = se7721_setup, | ||
97 | .mv_nr_irqs = 109, | ||
98 | .mv_init_irq = init_se7721_IRQ, | ||
99 | }; | ||
diff --git a/arch/sh/configs/se7721_defconfig b/arch/sh/configs/se7721_defconfig new file mode 100644 index 000000000000..f3d4ca0caa46 --- /dev/null +++ b/arch/sh/configs/se7721_defconfig | |||
@@ -0,0 +1,1085 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.25-rc5 | ||
4 | # Fri Mar 21 12:05:31 2008 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_SUPERH32=y | ||
8 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
9 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
10 | CONFIG_GENERIC_HWEIGHT=y | ||
11 | CONFIG_GENERIC_HARDIRQS=y | ||
12 | CONFIG_GENERIC_IRQ_PROBE=y | ||
13 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
14 | CONFIG_GENERIC_TIME=y | ||
15 | CONFIG_GENERIC_CLOCKEVENTS=y | ||
16 | CONFIG_STACKTRACE_SUPPORT=y | ||
17 | CONFIG_LOCKDEP_SUPPORT=y | ||
18 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
19 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
20 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
21 | CONFIG_ARCH_SUPPORTS_AOUT=y | ||
22 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
23 | |||
24 | # | ||
25 | # General setup | ||
26 | # | ||
27 | CONFIG_EXPERIMENTAL=y | ||
28 | CONFIG_BROKEN_ON_SMP=y | ||
29 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
30 | CONFIG_LOCALVERSION="" | ||
31 | # CONFIG_LOCALVERSION_AUTO is not set | ||
32 | # CONFIG_SWAP is not set | ||
33 | CONFIG_SYSVIPC=y | ||
34 | CONFIG_SYSVIPC_SYSCTL=y | ||
35 | CONFIG_POSIX_MQUEUE=y | ||
36 | CONFIG_BSD_PROCESS_ACCT=y | ||
37 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
38 | # CONFIG_TASKSTATS is not set | ||
39 | # CONFIG_AUDIT is not set | ||
40 | # CONFIG_IKCONFIG is not set | ||
41 | CONFIG_LOG_BUF_SHIFT=14 | ||
42 | # CONFIG_CGROUPS is not set | ||
43 | CONFIG_GROUP_SCHED=y | ||
44 | CONFIG_FAIR_GROUP_SCHED=y | ||
45 | # CONFIG_RT_GROUP_SCHED is not set | ||
46 | CONFIG_USER_SCHED=y | ||
47 | # CONFIG_CGROUP_SCHED is not set | ||
48 | CONFIG_SYSFS_DEPRECATED=y | ||
49 | CONFIG_SYSFS_DEPRECATED_V2=y | ||
50 | # CONFIG_RELAY is not set | ||
51 | # CONFIG_NAMESPACES is not set | ||
52 | # CONFIG_BLK_DEV_INITRD is not set | ||
53 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
54 | CONFIG_SYSCTL=y | ||
55 | CONFIG_EMBEDDED=y | ||
56 | CONFIG_UID16=y | ||
57 | CONFIG_SYSCTL_SYSCALL=y | ||
58 | CONFIG_KALLSYMS=y | ||
59 | CONFIG_KALLSYMS_ALL=y | ||
60 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
61 | CONFIG_HOTPLUG=y | ||
62 | CONFIG_PRINTK=y | ||
63 | # CONFIG_BUG is not set | ||
64 | CONFIG_ELF_CORE=y | ||
65 | CONFIG_COMPAT_BRK=y | ||
66 | # CONFIG_BASE_FULL is not set | ||
67 | CONFIG_FUTEX=y | ||
68 | CONFIG_ANON_INODES=y | ||
69 | CONFIG_EPOLL=y | ||
70 | CONFIG_SIGNALFD=y | ||
71 | CONFIG_TIMERFD=y | ||
72 | CONFIG_EVENTFD=y | ||
73 | # CONFIG_SHMEM is not set | ||
74 | CONFIG_VM_EVENT_COUNTERS=y | ||
75 | CONFIG_SLAB=y | ||
76 | # CONFIG_SLUB is not set | ||
77 | # CONFIG_SLOB is not set | ||
78 | # CONFIG_PROFILING is not set | ||
79 | # CONFIG_MARKERS is not set | ||
80 | CONFIG_HAVE_OPROFILE=y | ||
81 | # CONFIG_HAVE_KPROBES is not set | ||
82 | # CONFIG_HAVE_KRETPROBES is not set | ||
83 | CONFIG_PROC_PAGE_MONITOR=y | ||
84 | CONFIG_SLABINFO=y | ||
85 | CONFIG_RT_MUTEXES=y | ||
86 | CONFIG_TINY_SHMEM=y | ||
87 | CONFIG_BASE_SMALL=1 | ||
88 | CONFIG_MODULES=y | ||
89 | # CONFIG_MODULE_UNLOAD is not set | ||
90 | # CONFIG_MODVERSIONS is not set | ||
91 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
92 | # CONFIG_KMOD is not set | ||
93 | CONFIG_BLOCK=y | ||
94 | # CONFIG_LBD is not set | ||
95 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
96 | # CONFIG_LSF is not set | ||
97 | # CONFIG_BLK_DEV_BSG is not set | ||
98 | |||
99 | # | ||
100 | # IO Schedulers | ||
101 | # | ||
102 | CONFIG_IOSCHED_NOOP=y | ||
103 | # CONFIG_IOSCHED_AS is not set | ||
104 | # CONFIG_IOSCHED_DEADLINE is not set | ||
105 | # CONFIG_IOSCHED_CFQ is not set | ||
106 | # CONFIG_DEFAULT_AS is not set | ||
107 | # CONFIG_DEFAULT_DEADLINE is not set | ||
108 | # CONFIG_DEFAULT_CFQ is not set | ||
109 | CONFIG_DEFAULT_NOOP=y | ||
110 | CONFIG_DEFAULT_IOSCHED="noop" | ||
111 | CONFIG_CLASSIC_RCU=y | ||
112 | |||
113 | # | ||
114 | # System type | ||
115 | # | ||
116 | CONFIG_CPU_SH3=y | ||
117 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
118 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
119 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | ||
120 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
121 | # CONFIG_CPU_SUBTYPE_MXG is not set | ||
122 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
123 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
124 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
125 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
126 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
128 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | ||
129 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
130 | CONFIG_CPU_SUBTYPE_SH7721=y | ||
131 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
132 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
134 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
139 | # CONFIG_CPU_SUBTYPE_SH7763 is not set | ||
140 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
141 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
142 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | ||
143 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
145 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | ||
146 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
148 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
149 | |||
150 | # | ||
151 | # Memory management options | ||
152 | # | ||
153 | CONFIG_QUICKLIST=y | ||
154 | CONFIG_MMU=y | ||
155 | CONFIG_PAGE_OFFSET=0x80000000 | ||
156 | CONFIG_MEMORY_START=0x0c000000 | ||
157 | CONFIG_MEMORY_SIZE=0x02000000 | ||
158 | CONFIG_29BIT=y | ||
159 | CONFIG_VSYSCALL=y | ||
160 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
161 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
162 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
163 | CONFIG_MAX_ACTIVE_REGIONS=1 | ||
164 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
165 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
166 | CONFIG_PAGE_SIZE_4KB=y | ||
167 | # CONFIG_PAGE_SIZE_8KB is not set | ||
168 | # CONFIG_PAGE_SIZE_64KB is not set | ||
169 | CONFIG_SELECT_MEMORY_MODEL=y | ||
170 | CONFIG_FLATMEM_MANUAL=y | ||
171 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
172 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
173 | CONFIG_FLATMEM=y | ||
174 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
175 | CONFIG_SPARSEMEM_STATIC=y | ||
176 | # CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set | ||
177 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
178 | # CONFIG_RESOURCES_64BIT is not set | ||
179 | CONFIG_ZONE_DMA_FLAG=0 | ||
180 | CONFIG_NR_QUICK=2 | ||
181 | |||
182 | # | ||
183 | # Cache configuration | ||
184 | # | ||
185 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
186 | CONFIG_CACHE_WRITEBACK=y | ||
187 | # CONFIG_CACHE_WRITETHROUGH is not set | ||
188 | # CONFIG_CACHE_OFF is not set | ||
189 | |||
190 | # | ||
191 | # Processor features | ||
192 | # | ||
193 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
194 | # CONFIG_CPU_BIG_ENDIAN is not set | ||
195 | # CONFIG_SH_FPU_EMU is not set | ||
196 | # CONFIG_SH_DSP is not set | ||
197 | # CONFIG_SH_ADC is not set | ||
198 | CONFIG_CPU_HAS_INTEVT=y | ||
199 | CONFIG_CPU_HAS_SR_RB=y | ||
200 | CONFIG_CPU_HAS_DSP=y | ||
201 | |||
202 | # | ||
203 | # Board support | ||
204 | # | ||
205 | CONFIG_SOLUTION_ENGINE=y | ||
206 | CONFIG_SH_7721_SOLUTION_ENGINE=y | ||
207 | |||
208 | # | ||
209 | # Timer and clock configuration | ||
210 | # | ||
211 | CONFIG_SH_TMU=y | ||
212 | CONFIG_SH_TIMER_IRQ=16 | ||
213 | CONFIG_SH_PCLK_FREQ=33333333 | ||
214 | # CONFIG_TICK_ONESHOT is not set | ||
215 | # CONFIG_NO_HZ is not set | ||
216 | # CONFIG_HIGH_RES_TIMERS is not set | ||
217 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | ||
218 | |||
219 | # | ||
220 | # CPU Frequency scaling | ||
221 | # | ||
222 | # CONFIG_CPU_FREQ is not set | ||
223 | |||
224 | # | ||
225 | # DMA support | ||
226 | # | ||
227 | # CONFIG_SH_DMA is not set | ||
228 | |||
229 | # | ||
230 | # Companion Chips | ||
231 | # | ||
232 | |||
233 | # | ||
234 | # Additional SuperH Device Drivers | ||
235 | # | ||
236 | CONFIG_HEARTBEAT=y | ||
237 | # CONFIG_PUSH_SWITCH is not set | ||
238 | |||
239 | # | ||
240 | # Kernel features | ||
241 | # | ||
242 | # CONFIG_HZ_100 is not set | ||
243 | CONFIG_HZ_250=y | ||
244 | # CONFIG_HZ_300 is not set | ||
245 | # CONFIG_HZ_1000 is not set | ||
246 | CONFIG_HZ=250 | ||
247 | # CONFIG_SCHED_HRTICK is not set | ||
248 | # CONFIG_KEXEC is not set | ||
249 | # CONFIG_CRASH_DUMP is not set | ||
250 | # CONFIG_PREEMPT_NONE is not set | ||
251 | CONFIG_PREEMPT_VOLUNTARY=y | ||
252 | # CONFIG_PREEMPT is not set | ||
253 | CONFIG_GUSA=y | ||
254 | # CONFIG_GUSA_RB is not set | ||
255 | |||
256 | # | ||
257 | # Boot options | ||
258 | # | ||
259 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
260 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
261 | CONFIG_CMDLINE_BOOL=y | ||
262 | CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/sda2" | ||
263 | |||
264 | # | ||
265 | # Bus options | ||
266 | # | ||
267 | CONFIG_CF_ENABLER=y | ||
268 | # CONFIG_CF_AREA5 is not set | ||
269 | CONFIG_CF_AREA6=y | ||
270 | CONFIG_CF_BASE_ADDR=0xb8000000 | ||
271 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
272 | # CONFIG_PCCARD is not set | ||
273 | |||
274 | # | ||
275 | # Executable file formats | ||
276 | # | ||
277 | CONFIG_BINFMT_ELF=y | ||
278 | # CONFIG_BINFMT_MISC is not set | ||
279 | |||
280 | # | ||
281 | # Networking | ||
282 | # | ||
283 | CONFIG_NET=y | ||
284 | |||
285 | # | ||
286 | # Networking options | ||
287 | # | ||
288 | CONFIG_PACKET=y | ||
289 | CONFIG_PACKET_MMAP=y | ||
290 | CONFIG_UNIX=y | ||
291 | CONFIG_XFRM=y | ||
292 | # CONFIG_XFRM_USER is not set | ||
293 | # CONFIG_XFRM_SUB_POLICY is not set | ||
294 | # CONFIG_XFRM_MIGRATE is not set | ||
295 | # CONFIG_XFRM_STATISTICS is not set | ||
296 | CONFIG_NET_KEY=y | ||
297 | # CONFIG_NET_KEY_MIGRATE is not set | ||
298 | CONFIG_INET=y | ||
299 | CONFIG_IP_MULTICAST=y | ||
300 | CONFIG_IP_ADVANCED_ROUTER=y | ||
301 | CONFIG_ASK_IP_FIB_HASH=y | ||
302 | # CONFIG_IP_FIB_TRIE is not set | ||
303 | CONFIG_IP_FIB_HASH=y | ||
304 | CONFIG_IP_MULTIPLE_TABLES=y | ||
305 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
306 | CONFIG_IP_ROUTE_VERBOSE=y | ||
307 | CONFIG_IP_PNP=y | ||
308 | CONFIG_IP_PNP_DHCP=y | ||
309 | # CONFIG_IP_PNP_BOOTP is not set | ||
310 | # CONFIG_IP_PNP_RARP is not set | ||
311 | # CONFIG_NET_IPIP is not set | ||
312 | # CONFIG_NET_IPGRE is not set | ||
313 | CONFIG_IP_MROUTE=y | ||
314 | CONFIG_IP_PIMSM_V1=y | ||
315 | CONFIG_IP_PIMSM_V2=y | ||
316 | # CONFIG_ARPD is not set | ||
317 | CONFIG_SYN_COOKIES=y | ||
318 | CONFIG_INET_AH=y | ||
319 | CONFIG_INET_ESP=y | ||
320 | CONFIG_INET_IPCOMP=y | ||
321 | CONFIG_INET_XFRM_TUNNEL=y | ||
322 | CONFIG_INET_TUNNEL=y | ||
323 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
324 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
325 | CONFIG_INET_XFRM_MODE_BEET=y | ||
326 | # CONFIG_INET_LRO is not set | ||
327 | # CONFIG_INET_DIAG is not set | ||
328 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
329 | CONFIG_TCP_CONG_CUBIC=y | ||
330 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
331 | # CONFIG_TCP_MD5SIG is not set | ||
332 | # CONFIG_IPV6 is not set | ||
333 | # CONFIG_INET6_XFRM_TUNNEL is not set | ||
334 | # CONFIG_INET6_TUNNEL is not set | ||
335 | # CONFIG_NETWORK_SECMARK is not set | ||
336 | # CONFIG_NETFILTER is not set | ||
337 | # CONFIG_IP_DCCP is not set | ||
338 | # CONFIG_IP_SCTP is not set | ||
339 | # CONFIG_TIPC is not set | ||
340 | # CONFIG_ATM is not set | ||
341 | # CONFIG_BRIDGE is not set | ||
342 | # CONFIG_VLAN_8021Q is not set | ||
343 | # CONFIG_DECNET is not set | ||
344 | # CONFIG_LLC2 is not set | ||
345 | # CONFIG_IPX is not set | ||
346 | # CONFIG_ATALK is not set | ||
347 | # CONFIG_X25 is not set | ||
348 | # CONFIG_LAPB is not set | ||
349 | # CONFIG_ECONET is not set | ||
350 | # CONFIG_WAN_ROUTER is not set | ||
351 | CONFIG_NET_SCHED=y | ||
352 | |||
353 | # | ||
354 | # Queueing/Scheduling | ||
355 | # | ||
356 | CONFIG_NET_SCH_CBQ=y | ||
357 | CONFIG_NET_SCH_HTB=y | ||
358 | CONFIG_NET_SCH_HFSC=y | ||
359 | CONFIG_NET_SCH_PRIO=y | ||
360 | # CONFIG_NET_SCH_RR is not set | ||
361 | CONFIG_NET_SCH_RED=y | ||
362 | CONFIG_NET_SCH_SFQ=y | ||
363 | CONFIG_NET_SCH_TEQL=y | ||
364 | CONFIG_NET_SCH_TBF=y | ||
365 | CONFIG_NET_SCH_GRED=y | ||
366 | CONFIG_NET_SCH_DSMARK=y | ||
367 | CONFIG_NET_SCH_NETEM=y | ||
368 | |||
369 | # | ||
370 | # Classification | ||
371 | # | ||
372 | CONFIG_NET_CLS=y | ||
373 | # CONFIG_NET_CLS_BASIC is not set | ||
374 | CONFIG_NET_CLS_TCINDEX=y | ||
375 | CONFIG_NET_CLS_ROUTE4=y | ||
376 | CONFIG_NET_CLS_ROUTE=y | ||
377 | CONFIG_NET_CLS_FW=y | ||
378 | # CONFIG_NET_CLS_U32 is not set | ||
379 | # CONFIG_NET_CLS_RSVP is not set | ||
380 | # CONFIG_NET_CLS_RSVP6 is not set | ||
381 | # CONFIG_NET_CLS_FLOW is not set | ||
382 | # CONFIG_NET_EMATCH is not set | ||
383 | # CONFIG_NET_CLS_ACT is not set | ||
384 | CONFIG_NET_CLS_IND=y | ||
385 | CONFIG_NET_SCH_FIFO=y | ||
386 | |||
387 | # | ||
388 | # Network testing | ||
389 | # | ||
390 | # CONFIG_NET_PKTGEN is not set | ||
391 | # CONFIG_HAMRADIO is not set | ||
392 | # CONFIG_CAN is not set | ||
393 | # CONFIG_IRDA is not set | ||
394 | # CONFIG_BT is not set | ||
395 | # CONFIG_AF_RXRPC is not set | ||
396 | CONFIG_FIB_RULES=y | ||
397 | |||
398 | # | ||
399 | # Wireless | ||
400 | # | ||
401 | # CONFIG_CFG80211 is not set | ||
402 | # CONFIG_WIRELESS_EXT is not set | ||
403 | # CONFIG_MAC80211 is not set | ||
404 | # CONFIG_IEEE80211 is not set | ||
405 | # CONFIG_RFKILL is not set | ||
406 | # CONFIG_NET_9P is not set | ||
407 | |||
408 | # | ||
409 | # Device Drivers | ||
410 | # | ||
411 | |||
412 | # | ||
413 | # Generic Driver Options | ||
414 | # | ||
415 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
416 | CONFIG_STANDALONE=y | ||
417 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
418 | CONFIG_FW_LOADER=y | ||
419 | # CONFIG_DEBUG_DRIVER is not set | ||
420 | # CONFIG_DEBUG_DEVRES is not set | ||
421 | # CONFIG_SYS_HYPERVISOR is not set | ||
422 | # CONFIG_CONNECTOR is not set | ||
423 | CONFIG_MTD=y | ||
424 | # CONFIG_MTD_DEBUG is not set | ||
425 | CONFIG_MTD_CONCAT=y | ||
426 | CONFIG_MTD_PARTITIONS=y | ||
427 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
428 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
429 | |||
430 | # | ||
431 | # User Modules And Translation Layers | ||
432 | # | ||
433 | CONFIG_MTD_CHAR=y | ||
434 | CONFIG_MTD_BLKDEVS=y | ||
435 | CONFIG_MTD_BLOCK=y | ||
436 | # CONFIG_FTL is not set | ||
437 | # CONFIG_NFTL is not set | ||
438 | # CONFIG_INFTL is not set | ||
439 | # CONFIG_RFD_FTL is not set | ||
440 | # CONFIG_SSFDC is not set | ||
441 | # CONFIG_MTD_OOPS is not set | ||
442 | |||
443 | # | ||
444 | # RAM/ROM/Flash chip drivers | ||
445 | # | ||
446 | CONFIG_MTD_CFI=y | ||
447 | # CONFIG_MTD_JEDECPROBE is not set | ||
448 | CONFIG_MTD_GEN_PROBE=y | ||
449 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
450 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
451 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
452 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
453 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
454 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
455 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
456 | CONFIG_MTD_CFI_I1=y | ||
457 | CONFIG_MTD_CFI_I2=y | ||
458 | # CONFIG_MTD_CFI_I4 is not set | ||
459 | # CONFIG_MTD_CFI_I8 is not set | ||
460 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
461 | CONFIG_MTD_CFI_AMDSTD=y | ||
462 | # CONFIG_MTD_CFI_STAA is not set | ||
463 | CONFIG_MTD_CFI_UTIL=y | ||
464 | # CONFIG_MTD_RAM is not set | ||
465 | # CONFIG_MTD_ROM is not set | ||
466 | # CONFIG_MTD_ABSENT is not set | ||
467 | |||
468 | # | ||
469 | # Mapping drivers for chip access | ||
470 | # | ||
471 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
472 | # CONFIG_MTD_PHYSMAP is not set | ||
473 | # CONFIG_MTD_PLATRAM is not set | ||
474 | |||
475 | # | ||
476 | # Self-contained MTD device drivers | ||
477 | # | ||
478 | # CONFIG_MTD_SLRAM is not set | ||
479 | # CONFIG_MTD_PHRAM is not set | ||
480 | # CONFIG_MTD_MTDRAM is not set | ||
481 | # CONFIG_MTD_BLOCK2MTD is not set | ||
482 | |||
483 | # | ||
484 | # Disk-On-Chip Device Drivers | ||
485 | # | ||
486 | # CONFIG_MTD_DOC2000 is not set | ||
487 | # CONFIG_MTD_DOC2001 is not set | ||
488 | # CONFIG_MTD_DOC2001PLUS is not set | ||
489 | # CONFIG_MTD_NAND is not set | ||
490 | # CONFIG_MTD_ONENAND is not set | ||
491 | |||
492 | # | ||
493 | # UBI - Unsorted block images | ||
494 | # | ||
495 | # CONFIG_MTD_UBI is not set | ||
496 | # CONFIG_PARPORT is not set | ||
497 | CONFIG_BLK_DEV=y | ||
498 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
499 | # CONFIG_BLK_DEV_LOOP is not set | ||
500 | # CONFIG_BLK_DEV_NBD is not set | ||
501 | # CONFIG_BLK_DEV_UB is not set | ||
502 | # CONFIG_BLK_DEV_RAM is not set | ||
503 | # CONFIG_CDROM_PKTCDVD is not set | ||
504 | # CONFIG_ATA_OVER_ETH is not set | ||
505 | CONFIG_MISC_DEVICES=y | ||
506 | # CONFIG_EEPROM_93CX6 is not set | ||
507 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
508 | CONFIG_HAVE_IDE=y | ||
509 | # CONFIG_IDE is not set | ||
510 | |||
511 | # | ||
512 | # SCSI device support | ||
513 | # | ||
514 | # CONFIG_RAID_ATTRS is not set | ||
515 | CONFIG_SCSI=y | ||
516 | CONFIG_SCSI_DMA=y | ||
517 | # CONFIG_SCSI_TGT is not set | ||
518 | # CONFIG_SCSI_NETLINK is not set | ||
519 | CONFIG_SCSI_PROC_FS=y | ||
520 | |||
521 | # | ||
522 | # SCSI support type (disk, tape, CD-ROM) | ||
523 | # | ||
524 | CONFIG_BLK_DEV_SD=y | ||
525 | # CONFIG_CHR_DEV_ST is not set | ||
526 | # CONFIG_CHR_DEV_OSST is not set | ||
527 | # CONFIG_BLK_DEV_SR is not set | ||
528 | # CONFIG_CHR_DEV_SG is not set | ||
529 | # CONFIG_CHR_DEV_SCH is not set | ||
530 | |||
531 | # | ||
532 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
533 | # | ||
534 | CONFIG_SCSI_MULTI_LUN=y | ||
535 | # CONFIG_SCSI_CONSTANTS is not set | ||
536 | # CONFIG_SCSI_LOGGING is not set | ||
537 | # CONFIG_SCSI_SCAN_ASYNC is not set | ||
538 | CONFIG_SCSI_WAIT_SCAN=m | ||
539 | |||
540 | # | ||
541 | # SCSI Transports | ||
542 | # | ||
543 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
544 | # CONFIG_SCSI_FC_ATTRS is not set | ||
545 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
546 | # CONFIG_SCSI_SAS_LIBSAS is not set | ||
547 | # CONFIG_SCSI_SRP_ATTRS is not set | ||
548 | # CONFIG_SCSI_LOWLEVEL is not set | ||
549 | CONFIG_ATA=y | ||
550 | # CONFIG_ATA_NONSTANDARD is not set | ||
551 | # CONFIG_SATA_MV is not set | ||
552 | CONFIG_PATA_PLATFORM=y | ||
553 | # CONFIG_MD is not set | ||
554 | CONFIG_NETDEVICES=y | ||
555 | # CONFIG_NETDEVICES_MULTIQUEUE is not set | ||
556 | # CONFIG_DUMMY is not set | ||
557 | # CONFIG_BONDING is not set | ||
558 | # CONFIG_MACVLAN is not set | ||
559 | # CONFIG_EQUALIZER is not set | ||
560 | # CONFIG_TUN is not set | ||
561 | # CONFIG_VETH is not set | ||
562 | # CONFIG_NET_ETHERNET is not set | ||
563 | CONFIG_NETDEV_1000=y | ||
564 | # CONFIG_E1000E_ENABLED is not set | ||
565 | CONFIG_NETDEV_10000=y | ||
566 | |||
567 | # | ||
568 | # Wireless LAN | ||
569 | # | ||
570 | # CONFIG_WLAN_PRE80211 is not set | ||
571 | # CONFIG_WLAN_80211 is not set | ||
572 | |||
573 | # | ||
574 | # USB Network Adapters | ||
575 | # | ||
576 | # CONFIG_USB_CATC is not set | ||
577 | # CONFIG_USB_KAWETH is not set | ||
578 | # CONFIG_USB_PEGASUS is not set | ||
579 | # CONFIG_USB_RTL8150 is not set | ||
580 | # CONFIG_USB_USBNET is not set | ||
581 | # CONFIG_WAN is not set | ||
582 | # CONFIG_PPP is not set | ||
583 | # CONFIG_SLIP is not set | ||
584 | # CONFIG_NETCONSOLE is not set | ||
585 | # CONFIG_NETPOLL is not set | ||
586 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
587 | # CONFIG_ISDN is not set | ||
588 | # CONFIG_PHONE is not set | ||
589 | |||
590 | # | ||
591 | # Input device support | ||
592 | # | ||
593 | CONFIG_INPUT=y | ||
594 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
595 | # CONFIG_INPUT_POLLDEV is not set | ||
596 | |||
597 | # | ||
598 | # Userland interfaces | ||
599 | # | ||
600 | CONFIG_INPUT_MOUSEDEV=y | ||
601 | CONFIG_INPUT_MOUSEDEV_PSAUX=y | ||
602 | CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 | ||
603 | CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 | ||
604 | # CONFIG_INPUT_JOYDEV is not set | ||
605 | CONFIG_INPUT_EVDEV=y | ||
606 | # CONFIG_INPUT_EVBUG is not set | ||
607 | |||
608 | # | ||
609 | # Input Device Drivers | ||
610 | # | ||
611 | CONFIG_INPUT_KEYBOARD=y | ||
612 | # CONFIG_KEYBOARD_ATKBD is not set | ||
613 | # CONFIG_KEYBOARD_SUNKBD is not set | ||
614 | # CONFIG_KEYBOARD_LKKBD is not set | ||
615 | # CONFIG_KEYBOARD_XTKBD is not set | ||
616 | # CONFIG_KEYBOARD_NEWTON is not set | ||
617 | # CONFIG_KEYBOARD_STOWAWAY is not set | ||
618 | # CONFIG_KEYBOARD_SH_KEYSC is not set | ||
619 | CONFIG_INPUT_MOUSE=y | ||
620 | # CONFIG_MOUSE_PS2 is not set | ||
621 | # CONFIG_MOUSE_SERIAL is not set | ||
622 | # CONFIG_MOUSE_APPLETOUCH is not set | ||
623 | # CONFIG_MOUSE_VSXXXAA is not set | ||
624 | # CONFIG_INPUT_JOYSTICK is not set | ||
625 | # CONFIG_INPUT_TABLET is not set | ||
626 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
627 | # CONFIG_INPUT_MISC is not set | ||
628 | |||
629 | # | ||
630 | # Hardware I/O ports | ||
631 | # | ||
632 | # CONFIG_SERIO is not set | ||
633 | # CONFIG_GAMEPORT is not set | ||
634 | |||
635 | # | ||
636 | # Character devices | ||
637 | # | ||
638 | # CONFIG_VT is not set | ||
639 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
640 | |||
641 | # | ||
642 | # Serial drivers | ||
643 | # | ||
644 | # CONFIG_SERIAL_8250 is not set | ||
645 | |||
646 | # | ||
647 | # Non-8250 serial port support | ||
648 | # | ||
649 | CONFIG_SERIAL_SH_SCI=y | ||
650 | CONFIG_SERIAL_SH_SCI_NR_UARTS=2 | ||
651 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
652 | CONFIG_SERIAL_CORE=y | ||
653 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
654 | CONFIG_UNIX98_PTYS=y | ||
655 | # CONFIG_LEGACY_PTYS is not set | ||
656 | # CONFIG_IPMI_HANDLER is not set | ||
657 | # CONFIG_HW_RANDOM is not set | ||
658 | # CONFIG_R3964 is not set | ||
659 | # CONFIG_RAW_DRIVER is not set | ||
660 | # CONFIG_TCG_TPM is not set | ||
661 | # CONFIG_I2C is not set | ||
662 | |||
663 | # | ||
664 | # SPI support | ||
665 | # | ||
666 | # CONFIG_SPI is not set | ||
667 | # CONFIG_SPI_MASTER is not set | ||
668 | # CONFIG_W1 is not set | ||
669 | # CONFIG_POWER_SUPPLY is not set | ||
670 | # CONFIG_HWMON is not set | ||
671 | CONFIG_THERMAL=y | ||
672 | # CONFIG_WATCHDOG is not set | ||
673 | |||
674 | # | ||
675 | # Sonics Silicon Backplane | ||
676 | # | ||
677 | CONFIG_SSB_POSSIBLE=y | ||
678 | # CONFIG_SSB is not set | ||
679 | |||
680 | # | ||
681 | # Multifunction device drivers | ||
682 | # | ||
683 | # CONFIG_MFD_SM501 is not set | ||
684 | |||
685 | # | ||
686 | # Multimedia devices | ||
687 | # | ||
688 | # CONFIG_VIDEO_DEV is not set | ||
689 | # CONFIG_DVB_CORE is not set | ||
690 | # CONFIG_DAB is not set | ||
691 | |||
692 | # | ||
693 | # Graphics support | ||
694 | # | ||
695 | # CONFIG_VGASTATE is not set | ||
696 | # CONFIG_VIDEO_OUTPUT_CONTROL is not set | ||
697 | # CONFIG_FB is not set | ||
698 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
699 | |||
700 | # | ||
701 | # Display device support | ||
702 | # | ||
703 | # CONFIG_DISPLAY_SUPPORT is not set | ||
704 | |||
705 | # | ||
706 | # Sound | ||
707 | # | ||
708 | # CONFIG_SOUND is not set | ||
709 | CONFIG_HID_SUPPORT=y | ||
710 | CONFIG_HID=y | ||
711 | # CONFIG_HID_DEBUG is not set | ||
712 | # CONFIG_HIDRAW is not set | ||
713 | |||
714 | # | ||
715 | # USB Input Devices | ||
716 | # | ||
717 | CONFIG_USB_HID=y | ||
718 | # CONFIG_USB_HIDINPUT_POWERBOOK is not set | ||
719 | # CONFIG_HID_FF is not set | ||
720 | # CONFIG_USB_HIDDEV is not set | ||
721 | CONFIG_USB_SUPPORT=y | ||
722 | CONFIG_USB_ARCH_HAS_HCD=y | ||
723 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
724 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
725 | CONFIG_USB=y | ||
726 | # CONFIG_USB_DEBUG is not set | ||
727 | # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set | ||
728 | |||
729 | # | ||
730 | # Miscellaneous USB options | ||
731 | # | ||
732 | # CONFIG_USB_DEVICEFS is not set | ||
733 | CONFIG_USB_DEVICE_CLASS=y | ||
734 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
735 | # CONFIG_USB_OTG is not set | ||
736 | |||
737 | # | ||
738 | # USB Host Controller Drivers | ||
739 | # | ||
740 | # CONFIG_USB_ISP116X_HCD is not set | ||
741 | CONFIG_USB_OHCI_HCD=y | ||
742 | # CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set | ||
743 | # CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set | ||
744 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
745 | # CONFIG_USB_SL811_HCD is not set | ||
746 | # CONFIG_USB_R8A66597_HCD is not set | ||
747 | |||
748 | # | ||
749 | # USB Device Class drivers | ||
750 | # | ||
751 | # CONFIG_USB_ACM is not set | ||
752 | # CONFIG_USB_PRINTER is not set | ||
753 | |||
754 | # | ||
755 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
756 | # | ||
757 | |||
758 | # | ||
759 | # may also be needed; see USB_STORAGE Help for more information | ||
760 | # | ||
761 | CONFIG_USB_STORAGE=y | ||
762 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
763 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
764 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
765 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
766 | # CONFIG_USB_STORAGE_DPCM is not set | ||
767 | # CONFIG_USB_STORAGE_USBAT is not set | ||
768 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
769 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
770 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
771 | # CONFIG_USB_STORAGE_ALAUDA is not set | ||
772 | # CONFIG_USB_STORAGE_ONETOUCH is not set | ||
773 | # CONFIG_USB_STORAGE_KARMA is not set | ||
774 | # CONFIG_USB_LIBUSUAL is not set | ||
775 | |||
776 | # | ||
777 | # USB Imaging devices | ||
778 | # | ||
779 | # CONFIG_USB_MDC800 is not set | ||
780 | # CONFIG_USB_MICROTEK is not set | ||
781 | CONFIG_USB_MON=y | ||
782 | |||
783 | # | ||
784 | # USB port drivers | ||
785 | # | ||
786 | # CONFIG_USB_SERIAL is not set | ||
787 | |||
788 | # | ||
789 | # USB Miscellaneous drivers | ||
790 | # | ||
791 | # CONFIG_USB_EMI62 is not set | ||
792 | # CONFIG_USB_EMI26 is not set | ||
793 | # CONFIG_USB_ADUTUX is not set | ||
794 | # CONFIG_USB_AUERSWALD is not set | ||
795 | # CONFIG_USB_RIO500 is not set | ||
796 | # CONFIG_USB_LEGOTOWER is not set | ||
797 | # CONFIG_USB_LCD is not set | ||
798 | # CONFIG_USB_BERRY_CHARGE is not set | ||
799 | # CONFIG_USB_LED is not set | ||
800 | # CONFIG_USB_CYPRESS_CY7C63 is not set | ||
801 | # CONFIG_USB_CYTHERM is not set | ||
802 | # CONFIG_USB_PHIDGET is not set | ||
803 | # CONFIG_USB_IDMOUSE is not set | ||
804 | # CONFIG_USB_FTDI_ELAN is not set | ||
805 | # CONFIG_USB_APPLEDISPLAY is not set | ||
806 | # CONFIG_USB_LD is not set | ||
807 | # CONFIG_USB_TRANCEVIBRATOR is not set | ||
808 | # CONFIG_USB_IOWARRIOR is not set | ||
809 | # CONFIG_USB_GADGET is not set | ||
810 | # CONFIG_MMC is not set | ||
811 | # CONFIG_MEMSTICK is not set | ||
812 | CONFIG_NEW_LEDS=y | ||
813 | CONFIG_LEDS_CLASS=y | ||
814 | |||
815 | # | ||
816 | # LED drivers | ||
817 | # | ||
818 | |||
819 | # | ||
820 | # LED Triggers | ||
821 | # | ||
822 | CONFIG_LEDS_TRIGGERS=y | ||
823 | # CONFIG_LEDS_TRIGGER_TIMER is not set | ||
824 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | ||
825 | # CONFIG_RTC_CLASS is not set | ||
826 | |||
827 | # | ||
828 | # Userspace I/O | ||
829 | # | ||
830 | # CONFIG_UIO is not set | ||
831 | |||
832 | # | ||
833 | # File systems | ||
834 | # | ||
835 | CONFIG_EXT2_FS=y | ||
836 | CONFIG_EXT2_FS_XATTR=y | ||
837 | CONFIG_EXT2_FS_POSIX_ACL=y | ||
838 | CONFIG_EXT2_FS_SECURITY=y | ||
839 | # CONFIG_EXT2_FS_XIP is not set | ||
840 | CONFIG_EXT3_FS=y | ||
841 | CONFIG_EXT3_FS_XATTR=y | ||
842 | # CONFIG_EXT3_FS_POSIX_ACL is not set | ||
843 | # CONFIG_EXT3_FS_SECURITY is not set | ||
844 | # CONFIG_EXT4DEV_FS is not set | ||
845 | CONFIG_JBD=y | ||
846 | CONFIG_FS_MBCACHE=y | ||
847 | # CONFIG_REISERFS_FS is not set | ||
848 | # CONFIG_JFS_FS is not set | ||
849 | CONFIG_FS_POSIX_ACL=y | ||
850 | # CONFIG_XFS_FS is not set | ||
851 | # CONFIG_GFS2_FS is not set | ||
852 | # CONFIG_OCFS2_FS is not set | ||
853 | # CONFIG_DNOTIFY is not set | ||
854 | # CONFIG_INOTIFY is not set | ||
855 | # CONFIG_QUOTA is not set | ||
856 | # CONFIG_AUTOFS_FS is not set | ||
857 | # CONFIG_AUTOFS4_FS is not set | ||
858 | # CONFIG_FUSE_FS is not set | ||
859 | |||
860 | # | ||
861 | # CD-ROM/DVD Filesystems | ||
862 | # | ||
863 | # CONFIG_ISO9660_FS is not set | ||
864 | # CONFIG_UDF_FS is not set | ||
865 | |||
866 | # | ||
867 | # DOS/FAT/NT Filesystems | ||
868 | # | ||
869 | CONFIG_FAT_FS=y | ||
870 | CONFIG_MSDOS_FS=y | ||
871 | CONFIG_VFAT_FS=y | ||
872 | CONFIG_FAT_DEFAULT_CODEPAGE=437 | ||
873 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
874 | # CONFIG_NTFS_FS is not set | ||
875 | |||
876 | # | ||
877 | # Pseudo filesystems | ||
878 | # | ||
879 | CONFIG_PROC_FS=y | ||
880 | # CONFIG_PROC_KCORE is not set | ||
881 | CONFIG_PROC_SYSCTL=y | ||
882 | CONFIG_SYSFS=y | ||
883 | CONFIG_TMPFS=y | ||
884 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
885 | # CONFIG_HUGETLBFS is not set | ||
886 | # CONFIG_HUGETLB_PAGE is not set | ||
887 | # CONFIG_CONFIGFS_FS is not set | ||
888 | |||
889 | # | ||
890 | # Miscellaneous filesystems | ||
891 | # | ||
892 | # CONFIG_ADFS_FS is not set | ||
893 | # CONFIG_AFFS_FS is not set | ||
894 | # CONFIG_HFS_FS is not set | ||
895 | # CONFIG_HFSPLUS_FS is not set | ||
896 | # CONFIG_BEFS_FS is not set | ||
897 | # CONFIG_BFS_FS is not set | ||
898 | # CONFIG_EFS_FS is not set | ||
899 | CONFIG_JFFS2_FS=y | ||
900 | CONFIG_JFFS2_FS_DEBUG=0 | ||
901 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
902 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
903 | # CONFIG_JFFS2_SUMMARY is not set | ||
904 | # CONFIG_JFFS2_FS_XATTR is not set | ||
905 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
906 | CONFIG_JFFS2_ZLIB=y | ||
907 | # CONFIG_JFFS2_LZO is not set | ||
908 | CONFIG_JFFS2_RTIME=y | ||
909 | # CONFIG_JFFS2_RUBIN is not set | ||
910 | CONFIG_CRAMFS=y | ||
911 | # CONFIG_VXFS_FS is not set | ||
912 | # CONFIG_MINIX_FS is not set | ||
913 | # CONFIG_HPFS_FS is not set | ||
914 | # CONFIG_QNX4FS_FS is not set | ||
915 | # CONFIG_ROMFS_FS is not set | ||
916 | # CONFIG_SYSV_FS is not set | ||
917 | # CONFIG_UFS_FS is not set | ||
918 | # CONFIG_NETWORK_FILESYSTEMS is not set | ||
919 | |||
920 | # | ||
921 | # Partition Types | ||
922 | # | ||
923 | # CONFIG_PARTITION_ADVANCED is not set | ||
924 | CONFIG_MSDOS_PARTITION=y | ||
925 | CONFIG_NLS=y | ||
926 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
927 | CONFIG_NLS_CODEPAGE_437=y | ||
928 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
929 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
930 | # CONFIG_NLS_CODEPAGE_850 is not set | ||
931 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
932 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
933 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
934 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
935 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
936 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
937 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
938 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
939 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
940 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
941 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
942 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
943 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
944 | CONFIG_NLS_CODEPAGE_932=y | ||
945 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
946 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
947 | # CONFIG_NLS_ISO8859_8 is not set | ||
948 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
949 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
950 | # CONFIG_NLS_ASCII is not set | ||
951 | CONFIG_NLS_ISO8859_1=y | ||
952 | # CONFIG_NLS_ISO8859_2 is not set | ||
953 | # CONFIG_NLS_ISO8859_3 is not set | ||
954 | # CONFIG_NLS_ISO8859_4 is not set | ||
955 | # CONFIG_NLS_ISO8859_5 is not set | ||
956 | # CONFIG_NLS_ISO8859_6 is not set | ||
957 | # CONFIG_NLS_ISO8859_7 is not set | ||
958 | # CONFIG_NLS_ISO8859_9 is not set | ||
959 | # CONFIG_NLS_ISO8859_13 is not set | ||
960 | # CONFIG_NLS_ISO8859_14 is not set | ||
961 | # CONFIG_NLS_ISO8859_15 is not set | ||
962 | # CONFIG_NLS_KOI8_R is not set | ||
963 | # CONFIG_NLS_KOI8_U is not set | ||
964 | # CONFIG_NLS_UTF8 is not set | ||
965 | # CONFIG_DLM is not set | ||
966 | |||
967 | # | ||
968 | # Kernel hacking | ||
969 | # | ||
970 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
971 | # CONFIG_PRINTK_TIME is not set | ||
972 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
973 | CONFIG_ENABLE_MUST_CHECK=y | ||
974 | # CONFIG_MAGIC_SYSRQ is not set | ||
975 | # CONFIG_UNUSED_SYMBOLS is not set | ||
976 | # CONFIG_DEBUG_FS is not set | ||
977 | # CONFIG_HEADERS_CHECK is not set | ||
978 | CONFIG_DEBUG_KERNEL=y | ||
979 | # CONFIG_DEBUG_SHIRQ is not set | ||
980 | # CONFIG_DETECT_SOFTLOCKUP is not set | ||
981 | CONFIG_SCHED_DEBUG=y | ||
982 | # CONFIG_SCHEDSTATS is not set | ||
983 | # CONFIG_TIMER_STATS is not set | ||
984 | # CONFIG_DEBUG_SLAB is not set | ||
985 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
986 | # CONFIG_RT_MUTEX_TESTER is not set | ||
987 | # CONFIG_DEBUG_SPINLOCK is not set | ||
988 | # CONFIG_DEBUG_MUTEXES is not set | ||
989 | # CONFIG_DEBUG_LOCK_ALLOC is not set | ||
990 | # CONFIG_PROVE_LOCKING is not set | ||
991 | # CONFIG_LOCK_STAT is not set | ||
992 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
993 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
994 | # CONFIG_DEBUG_KOBJECT is not set | ||
995 | CONFIG_DEBUG_INFO=y | ||
996 | # CONFIG_DEBUG_VM is not set | ||
997 | # CONFIG_DEBUG_LIST is not set | ||
998 | # CONFIG_DEBUG_SG is not set | ||
999 | CONFIG_FRAME_POINTER=y | ||
1000 | # CONFIG_BOOT_PRINTK_DELAY is not set | ||
1001 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1002 | # CONFIG_BACKTRACE_SELF_TEST is not set | ||
1003 | # CONFIG_FAULT_INJECTION is not set | ||
1004 | # CONFIG_SAMPLES is not set | ||
1005 | # CONFIG_SH_STANDARD_BIOS is not set | ||
1006 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1007 | # CONFIG_DEBUG_BOOTMEM is not set | ||
1008 | # CONFIG_DEBUG_STACKOVERFLOW is not set | ||
1009 | # CONFIG_DEBUG_STACK_USAGE is not set | ||
1010 | # CONFIG_4KSTACKS is not set | ||
1011 | # CONFIG_IRQSTACKS is not set | ||
1012 | # CONFIG_SH_KGDB is not set | ||
1013 | |||
1014 | # | ||
1015 | # Security options | ||
1016 | # | ||
1017 | # CONFIG_KEYS is not set | ||
1018 | # CONFIG_SECURITY is not set | ||
1019 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
1020 | CONFIG_CRYPTO=y | ||
1021 | CONFIG_CRYPTO_ALGAPI=y | ||
1022 | CONFIG_CRYPTO_AEAD=y | ||
1023 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1024 | # CONFIG_CRYPTO_SEQIV is not set | ||
1025 | CONFIG_CRYPTO_HASH=y | ||
1026 | CONFIG_CRYPTO_MANAGER=y | ||
1027 | CONFIG_CRYPTO_HMAC=y | ||
1028 | # CONFIG_CRYPTO_XCBC is not set | ||
1029 | # CONFIG_CRYPTO_NULL is not set | ||
1030 | # CONFIG_CRYPTO_MD4 is not set | ||
1031 | CONFIG_CRYPTO_MD5=y | ||
1032 | CONFIG_CRYPTO_SHA1=y | ||
1033 | # CONFIG_CRYPTO_SHA256 is not set | ||
1034 | # CONFIG_CRYPTO_SHA512 is not set | ||
1035 | # CONFIG_CRYPTO_WP512 is not set | ||
1036 | # CONFIG_CRYPTO_TGR192 is not set | ||
1037 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1038 | # CONFIG_CRYPTO_ECB is not set | ||
1039 | CONFIG_CRYPTO_CBC=y | ||
1040 | # CONFIG_CRYPTO_PCBC is not set | ||
1041 | # CONFIG_CRYPTO_LRW is not set | ||
1042 | # CONFIG_CRYPTO_XTS is not set | ||
1043 | # CONFIG_CRYPTO_CTR is not set | ||
1044 | # CONFIG_CRYPTO_GCM is not set | ||
1045 | # CONFIG_CRYPTO_CCM is not set | ||
1046 | # CONFIG_CRYPTO_CRYPTD is not set | ||
1047 | CONFIG_CRYPTO_DES=y | ||
1048 | # CONFIG_CRYPTO_FCRYPT is not set | ||
1049 | # CONFIG_CRYPTO_BLOWFISH is not set | ||
1050 | # CONFIG_CRYPTO_TWOFISH is not set | ||
1051 | # CONFIG_CRYPTO_SERPENT is not set | ||
1052 | # CONFIG_CRYPTO_AES is not set | ||
1053 | # CONFIG_CRYPTO_CAST5 is not set | ||
1054 | # CONFIG_CRYPTO_CAST6 is not set | ||
1055 | # CONFIG_CRYPTO_TEA is not set | ||
1056 | # CONFIG_CRYPTO_ARC4 is not set | ||
1057 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1058 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1059 | # CONFIG_CRYPTO_SEED is not set | ||
1060 | # CONFIG_CRYPTO_SALSA20 is not set | ||
1061 | CONFIG_CRYPTO_DEFLATE=y | ||
1062 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1063 | # CONFIG_CRYPTO_CRC32C is not set | ||
1064 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1065 | # CONFIG_CRYPTO_TEST is not set | ||
1066 | CONFIG_CRYPTO_AUTHENC=y | ||
1067 | # CONFIG_CRYPTO_LZO is not set | ||
1068 | CONFIG_CRYPTO_HW=y | ||
1069 | |||
1070 | # | ||
1071 | # Library routines | ||
1072 | # | ||
1073 | CONFIG_BITREVERSE=y | ||
1074 | CONFIG_CRC_CCITT=y | ||
1075 | # CONFIG_CRC16 is not set | ||
1076 | # CONFIG_CRC_ITU_T is not set | ||
1077 | CONFIG_CRC32=y | ||
1078 | # CONFIG_CRC7 is not set | ||
1079 | # CONFIG_LIBCRC32C is not set | ||
1080 | CONFIG_ZLIB_INFLATE=y | ||
1081 | CONFIG_ZLIB_DEFLATE=y | ||
1082 | CONFIG_PLIST=y | ||
1083 | CONFIG_HAS_IOMEM=y | ||
1084 | CONFIG_HAS_IOPORT=y | ||
1085 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/kernel/cf-enabler.c b/arch/sh/kernel/cf-enabler.c index 1c3b99642e1c..01ff4d05aab0 100644 --- a/arch/sh/kernel/cf-enabler.c +++ b/arch/sh/kernel/cf-enabler.c | |||
@@ -83,6 +83,8 @@ static int __init cf_init_default(void) | |||
83 | #include <asm/se.h> | 83 | #include <asm/se.h> |
84 | #elif defined(CONFIG_SH_7722_SOLUTION_ENGINE) | 84 | #elif defined(CONFIG_SH_7722_SOLUTION_ENGINE) |
85 | #include <asm/se7722.h> | 85 | #include <asm/se7722.h> |
86 | #elif defined(CONFIG_SH_7721_SOLUTION_ENGINE) | ||
87 | #include <asm/se7721.h> | ||
86 | #endif | 88 | #endif |
87 | 89 | ||
88 | /* | 90 | /* |
@@ -99,7 +101,9 @@ static int __init cf_init_default(void) | |||
99 | * 0xB0600000 : I/O | 101 | * 0xB0600000 : I/O |
100 | */ | 102 | */ |
101 | 103 | ||
102 | #if defined(CONFIG_SH_SOLUTION_ENGINE) || defined(CONFIG_SH_7722_SOLUTION_ENGINE) | 104 | #if defined(CONFIG_SH_SOLUTION_ENGINE) || \ |
105 | defined(CONFIG_SH_7722_SOLUTION_ENGINE) || \ | ||
106 | defined(CONFIG_SH_7721_SOLUTION_ENGINE) | ||
103 | static int __init cf_init_se(void) | 107 | static int __init cf_init_se(void) |
104 | { | 108 | { |
105 | if ((ctrl_inw(MRSHPC_CSR) & 0x000c) != 0) | 109 | if ((ctrl_inw(MRSHPC_CSR) & 0x000c) != 0) |
@@ -112,7 +116,7 @@ static int __init cf_init_se(void) | |||
112 | } | 116 | } |
113 | 117 | ||
114 | /* | 118 | /* |
115 | * PC-Card window open | 119 | * PC-Card window open |
116 | * flag == COMMON/ATTRIBUTE/IO | 120 | * flag == COMMON/ATTRIBUTE/IO |
117 | */ | 121 | */ |
118 | /* common window open */ | 122 | /* common window open */ |
@@ -122,7 +126,7 @@ static int __init cf_init_se(void) | |||
122 | ctrl_outw(0x0b00, MRSHPC_MW0CR2); | 126 | ctrl_outw(0x0b00, MRSHPC_MW0CR2); |
123 | else | 127 | else |
124 | /* common mode & bus width 16bit SWAP = 0*/ | 128 | /* common mode & bus width 16bit SWAP = 0*/ |
125 | ctrl_outw(0x0300, MRSHPC_MW0CR2); | 129 | ctrl_outw(0x0300, MRSHPC_MW0CR2); |
126 | 130 | ||
127 | /* attribute window open */ | 131 | /* attribute window open */ |
128 | ctrl_outw(0x8a85, MRSHPC_MW1CR1); | 132 | ctrl_outw(0x8a85, MRSHPC_MW1CR1); |
@@ -155,10 +159,9 @@ static int __init cf_init_se(void) | |||
155 | 159 | ||
156 | int __init cf_init(void) | 160 | int __init cf_init(void) |
157 | { | 161 | { |
158 | if( mach_is_se() || mach_is_7722se() ){ | 162 | if (mach_is_se() || mach_is_7722se() || mach_is_7721se()) |
159 | return cf_init_se(); | 163 | return cf_init_se(); |
160 | } | 164 | |
161 | |||
162 | return cf_init_default(); | 165 | return cf_init_default(); |
163 | } | 166 | } |
164 | 167 | ||
diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types index d63b93da952d..b9f6d74dcbe8 100644 --- a/arch/sh/tools/mach-types +++ b/arch/sh/tools/mach-types | |||
@@ -21,6 +21,7 @@ HD64465 HD64465 | |||
21 | 7206SE SH_7206_SOLUTION_ENGINE | 21 | 7206SE SH_7206_SOLUTION_ENGINE |
22 | 7343SE SH_7343_SOLUTION_ENGINE | 22 | 7343SE SH_7343_SOLUTION_ENGINE |
23 | 7619SE SH_7619_SOLUTION_ENGINE | 23 | 7619SE SH_7619_SOLUTION_ENGINE |
24 | 7721SE SH_7721_SOLUTION_ENGINE | ||
24 | 7722SE SH_7722_SOLUTION_ENGINE | 25 | 7722SE SH_7722_SOLUTION_ENGINE |
25 | 7751SE SH_7751_SOLUTION_ENGINE | 26 | 7751SE SH_7751_SOLUTION_ENGINE |
26 | 7780SE SH_7780_SOLUTION_ENGINE | 27 | 7780SE SH_7780_SOLUTION_ENGINE |