diff options
author | Peter Griffin <pgriffin@mpc-data.co.uk> | 2008-11-28 08:56:45 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 04:43:51 -0500 |
commit | 6feb348783767e3f38d7612e6551ee8b580ac4e9 (patch) | |
tree | 6d6aeece24de46fce62bd2bc4ff24e8537501d87 /arch | |
parent | 2825999e8a9bd7ab7e25a7e7475c7cdd10371a13 (diff) |
sh: RSK+ 7201 board support.
This patch adds support for the RTE RSK+ 7201 board.
Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/boards/Kconfig | 4 | ||||
-rw-r--r-- | arch/sh/boards/Makefile | 1 | ||||
-rw-r--r-- | arch/sh/boards/board-rsk7201.c | 105 | ||||
-rw-r--r-- | arch/sh/configs/rsk7201_defconfig | 691 | ||||
-rw-r--r-- | arch/sh/tools/mach-types | 1 |
5 files changed, 802 insertions, 0 deletions
diff --git a/arch/sh/boards/Kconfig b/arch/sh/boards/Kconfig index 50467f9d0d0b..2bf3f6c73c12 100644 --- a/arch/sh/boards/Kconfig +++ b/arch/sh/boards/Kconfig | |||
@@ -126,6 +126,10 @@ config SH_RTS7751R2D | |||
126 | Select RTS7751R2D if configuring for a Renesas Technology | 126 | Select RTS7751R2D if configuring for a Renesas Technology |
127 | Sales SH-Graphics board. | 127 | Sales SH-Graphics board. |
128 | 128 | ||
129 | config SH_RSK7201 | ||
130 | bool "RSK7201" | ||
131 | depends on CPU_SUBTYPE_SH7201 | ||
132 | |||
129 | config SH_RSK7203 | 133 | config SH_RSK7203 |
130 | bool "RSK7203" | 134 | bool "RSK7203" |
131 | select GENERIC_GPIO | 135 | select GENERIC_GPIO |
diff --git a/arch/sh/boards/Makefile b/arch/sh/boards/Makefile index d9efa3923721..ce4d4d465185 100644 --- a/arch/sh/boards/Makefile +++ b/arch/sh/boards/Makefile | |||
@@ -3,6 +3,7 @@ | |||
3 | # | 3 | # |
4 | obj-$(CONFIG_SH_AP325RXA) += board-ap325rxa.o | 4 | obj-$(CONFIG_SH_AP325RXA) += board-ap325rxa.o |
5 | obj-$(CONFIG_SH_MAGIC_PANEL_R2) += board-magicpanelr2.o | 5 | obj-$(CONFIG_SH_MAGIC_PANEL_R2) += board-magicpanelr2.o |
6 | obj-$(CONFIG_SH_RSK7201) += board-rsk7201.o | ||
6 | obj-$(CONFIG_SH_RSK7203) += board-rsk7203.o | 7 | obj-$(CONFIG_SH_RSK7203) += board-rsk7203.o |
7 | obj-$(CONFIG_SH_SH7785LCR) += board-sh7785lcr.o | 8 | obj-$(CONFIG_SH_SH7785LCR) += board-sh7785lcr.o |
8 | obj-$(CONFIG_SH_SHMIN) += board-shmin.o | 9 | obj-$(CONFIG_SH_SHMIN) += board-shmin.o |
diff --git a/arch/sh/boards/board-rsk7201.c b/arch/sh/boards/board-rsk7201.c new file mode 100644 index 000000000000..6fcf64453752 --- /dev/null +++ b/arch/sh/boards/board-rsk7201.c | |||
@@ -0,0 +1,105 @@ | |||
1 | /* | ||
2 | * Renesas Technology Europe RSK+ 7201 Support. | ||
3 | * | ||
4 | * Copyright (C) 2008 Peter Griffin <pgriffin@mpc-data.co.uk> | ||
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/types.h> | ||
12 | #include <linux/platform_device.h> | ||
13 | #include <linux/interrupt.h> | ||
14 | #include <linux/mtd/mtd.h> | ||
15 | #include <linux/mtd/partitions.h> | ||
16 | #include <linux/mtd/physmap.h> | ||
17 | #include <linux/mtd/map.h> | ||
18 | #include <asm/machvec.h> | ||
19 | #include <asm/io.h> | ||
20 | |||
21 | static const char *probes[] = { "cmdlinepart", NULL }; | ||
22 | |||
23 | static struct mtd_partition *parsed_partitions; | ||
24 | |||
25 | static struct mtd_partition rsk7201_partitions[] = { | ||
26 | { | ||
27 | .name = "Bootloader", | ||
28 | .offset = 0x00000000, | ||
29 | .size = 0x00040000, | ||
30 | .mask_flags = MTD_WRITEABLE, | ||
31 | }, { | ||
32 | .name = "Kernel", | ||
33 | .offset = MTDPART_OFS_NXTBLK, | ||
34 | .size = 0x001c0000, | ||
35 | }, { | ||
36 | .name = "Flash_FS", | ||
37 | .offset = MTDPART_OFS_NXTBLK, | ||
38 | .size = MTDPART_SIZ_FULL, | ||
39 | } | ||
40 | }; | ||
41 | |||
42 | static struct physmap_flash_data flash_data = { | ||
43 | .width = 2, | ||
44 | }; | ||
45 | |||
46 | static struct resource flash_resource = { | ||
47 | .start = 0x20000000, | ||
48 | .end = 0x20400000, | ||
49 | .flags = IORESOURCE_MEM, | ||
50 | }; | ||
51 | |||
52 | static struct platform_device flash_device = { | ||
53 | .name = "physmap-flash", | ||
54 | .id = -1, | ||
55 | .resource = &flash_resource, | ||
56 | .num_resources = 1, | ||
57 | .dev = { | ||
58 | .platform_data = &flash_data, | ||
59 | }, | ||
60 | }; | ||
61 | |||
62 | static struct mtd_info *flash_mtd; | ||
63 | |||
64 | static struct map_info rsk7201_flash_map = { | ||
65 | .name = "RSK+ Flash", | ||
66 | .size = 0x400000, | ||
67 | .bankwidth = 2, | ||
68 | }; | ||
69 | |||
70 | static void __init set_mtd_partitions(void) | ||
71 | { | ||
72 | int nr_parts = 0; | ||
73 | |||
74 | simple_map_init(&rsk7201_flash_map); | ||
75 | flash_mtd = do_map_probe("cfi_probe", &rsk7201_flash_map); | ||
76 | nr_parts = parse_mtd_partitions(flash_mtd, probes, | ||
77 | &parsed_partitions, 0); | ||
78 | /* If there is no partition table, used the hard coded table */ | ||
79 | if (nr_parts <= 0) { | ||
80 | flash_data.parts = rsk7201_partitions; | ||
81 | flash_data.nr_parts = ARRAY_SIZE(rsk7201_partitions); | ||
82 | } else { | ||
83 | flash_data.nr_parts = nr_parts; | ||
84 | flash_data.parts = parsed_partitions; | ||
85 | } | ||
86 | } | ||
87 | |||
88 | static struct platform_device *rsk7201_devices[] __initdata = { | ||
89 | &flash_device, | ||
90 | }; | ||
91 | |||
92 | static int __init rsk7201_devices_setup(void) | ||
93 | { | ||
94 | set_mtd_partitions(); | ||
95 | return platform_add_devices(rsk7201_devices, | ||
96 | ARRAY_SIZE(rsk7201_devices)); | ||
97 | } | ||
98 | device_initcall(rsk7201_devices_setup); | ||
99 | |||
100 | /* | ||
101 | * The Machine Vector | ||
102 | */ | ||
103 | static struct sh_machine_vector mv_rsk7201 __initmv = { | ||
104 | .mv_name = "RSK+7201", | ||
105 | }; | ||
diff --git a/arch/sh/configs/rsk7201_defconfig b/arch/sh/configs/rsk7201_defconfig new file mode 100644 index 000000000000..4a75584721fc --- /dev/null +++ b/arch/sh/configs/rsk7201_defconfig | |||
@@ -0,0 +1,691 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.28-rc6 | ||
4 | # Thu Nov 27 12:14:18 2008 | ||
5 | # | ||
6 | CONFIG_SUPERH=y | ||
7 | CONFIG_SUPERH32=y | ||
8 | CONFIG_ARCH_DEFCONFIG="arch/sh/configs/shx3_defconfig" | ||
9 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
10 | CONFIG_GENERIC_BUG=y | ||
11 | CONFIG_GENERIC_FIND_NEXT_BIT=y | ||
12 | CONFIG_GENERIC_HWEIGHT=y | ||
13 | CONFIG_GENERIC_HARDIRQS=y | ||
14 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | ||
15 | CONFIG_GENERIC_IRQ_PROBE=y | ||
16 | # CONFIG_GENERIC_GPIO is not set | ||
17 | # CONFIG_GENERIC_TIME is not set | ||
18 | # CONFIG_GENERIC_CLOCKEVENTS is not set | ||
19 | CONFIG_STACKTRACE_SUPPORT=y | ||
20 | CONFIG_LOCKDEP_SUPPORT=y | ||
21 | CONFIG_HAVE_LATENCYTOP_SUPPORT=y | ||
22 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
23 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
24 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | ||
25 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
26 | |||
27 | # | ||
28 | # General setup | ||
29 | # | ||
30 | CONFIG_EXPERIMENTAL=y | ||
31 | CONFIG_BROKEN_ON_SMP=y | ||
32 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
33 | CONFIG_LOCALVERSION="" | ||
34 | # CONFIG_LOCALVERSION_AUTO is not set | ||
35 | CONFIG_SYSVIPC=y | ||
36 | CONFIG_SYSVIPC_SYSCTL=y | ||
37 | CONFIG_BSD_PROCESS_ACCT=y | ||
38 | # CONFIG_BSD_PROCESS_ACCT_V3 is not set | ||
39 | CONFIG_IKCONFIG=y | ||
40 | # CONFIG_IKCONFIG_PROC is not set | ||
41 | CONFIG_LOG_BUF_SHIFT=14 | ||
42 | # CONFIG_CGROUPS is not set | ||
43 | # CONFIG_GROUP_SCHED is not set | ||
44 | # CONFIG_SYSFS_DEPRECATED_V2 is not set | ||
45 | # CONFIG_RELAY is not set | ||
46 | CONFIG_NAMESPACES=y | ||
47 | CONFIG_UTS_NS=y | ||
48 | CONFIG_IPC_NS=y | ||
49 | CONFIG_USER_NS=y | ||
50 | CONFIG_PID_NS=y | ||
51 | CONFIG_BLK_DEV_INITRD=y | ||
52 | CONFIG_INITRAMFS_SOURCE="" | ||
53 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
54 | CONFIG_SYSCTL=y | ||
55 | CONFIG_EMBEDDED=y | ||
56 | CONFIG_UID16=y | ||
57 | CONFIG_SYSCTL_SYSCALL=y | ||
58 | CONFIG_KALLSYMS=y | ||
59 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
60 | CONFIG_HOTPLUG=y | ||
61 | CONFIG_PRINTK=y | ||
62 | CONFIG_BUG=y | ||
63 | CONFIG_ELF_CORE=y | ||
64 | CONFIG_COMPAT_BRK=y | ||
65 | CONFIG_BASE_FULL=y | ||
66 | CONFIG_FUTEX=y | ||
67 | CONFIG_ANON_INODES=y | ||
68 | CONFIG_EPOLL=y | ||
69 | CONFIG_SIGNALFD=y | ||
70 | CONFIG_TIMERFD=y | ||
71 | CONFIG_EVENTFD=y | ||
72 | # CONFIG_AIO is not set | ||
73 | CONFIG_VM_EVENT_COUNTERS=y | ||
74 | # CONFIG_SLAB is not set | ||
75 | # CONFIG_SLUB is not set | ||
76 | CONFIG_SLOB=y | ||
77 | CONFIG_PROFILING=y | ||
78 | # CONFIG_MARKERS is not set | ||
79 | CONFIG_OPROFILE=y | ||
80 | CONFIG_HAVE_OPROFILE=y | ||
81 | # CONFIG_KPROBES is not set | ||
82 | CONFIG_HAVE_KPROBES=y | ||
83 | CONFIG_HAVE_KRETPROBES=y | ||
84 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
85 | CONFIG_HAVE_CLK=y | ||
86 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | ||
87 | CONFIG_RT_MUTEXES=y | ||
88 | CONFIG_TINY_SHMEM=y | ||
89 | CONFIG_BASE_SMALL=0 | ||
90 | CONFIG_MODULES=y | ||
91 | # CONFIG_MODULE_FORCE_LOAD is not set | ||
92 | # CONFIG_MODULE_UNLOAD is not set | ||
93 | # CONFIG_MODVERSIONS is not set | ||
94 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
95 | CONFIG_KMOD=y | ||
96 | CONFIG_BLOCK=y | ||
97 | # CONFIG_LBD is not set | ||
98 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
99 | # CONFIG_LSF is not set | ||
100 | # CONFIG_BLK_DEV_BSG is not set | ||
101 | # CONFIG_BLK_DEV_INTEGRITY is not set | ||
102 | |||
103 | # | ||
104 | # IO Schedulers | ||
105 | # | ||
106 | CONFIG_IOSCHED_NOOP=y | ||
107 | # CONFIG_IOSCHED_AS is not set | ||
108 | # CONFIG_IOSCHED_DEADLINE is not set | ||
109 | # CONFIG_IOSCHED_CFQ is not set | ||
110 | # CONFIG_DEFAULT_AS is not set | ||
111 | # CONFIG_DEFAULT_DEADLINE is not set | ||
112 | # CONFIG_DEFAULT_CFQ is not set | ||
113 | CONFIG_DEFAULT_NOOP=y | ||
114 | CONFIG_DEFAULT_IOSCHED="noop" | ||
115 | CONFIG_CLASSIC_RCU=y | ||
116 | # CONFIG_FREEZER is not set | ||
117 | |||
118 | # | ||
119 | # System type | ||
120 | # | ||
121 | CONFIG_CPU_SH2=y | ||
122 | CONFIG_CPU_SH2A=y | ||
123 | # CONFIG_CPU_SUBTYPE_SH7619 is not set | ||
124 | CONFIG_CPU_SUBTYPE_SH7201=y | ||
125 | # CONFIG_CPU_SUBTYPE_SH7203 is not set | ||
126 | # CONFIG_CPU_SUBTYPE_SH7206 is not set | ||
127 | # CONFIG_CPU_SUBTYPE_SH7263 is not set | ||
128 | # CONFIG_CPU_SUBTYPE_MXG is not set | ||
129 | # CONFIG_CPU_SUBTYPE_SH7705 is not set | ||
130 | # CONFIG_CPU_SUBTYPE_SH7706 is not set | ||
131 | # CONFIG_CPU_SUBTYPE_SH7707 is not set | ||
132 | # CONFIG_CPU_SUBTYPE_SH7708 is not set | ||
133 | # CONFIG_CPU_SUBTYPE_SH7709 is not set | ||
134 | # CONFIG_CPU_SUBTYPE_SH7710 is not set | ||
135 | # CONFIG_CPU_SUBTYPE_SH7712 is not set | ||
136 | # CONFIG_CPU_SUBTYPE_SH7720 is not set | ||
137 | # CONFIG_CPU_SUBTYPE_SH7721 is not set | ||
138 | # CONFIG_CPU_SUBTYPE_SH7750 is not set | ||
139 | # CONFIG_CPU_SUBTYPE_SH7091 is not set | ||
140 | # CONFIG_CPU_SUBTYPE_SH7750R is not set | ||
141 | # CONFIG_CPU_SUBTYPE_SH7750S is not set | ||
142 | # CONFIG_CPU_SUBTYPE_SH7751 is not set | ||
143 | # CONFIG_CPU_SUBTYPE_SH7751R is not set | ||
144 | # CONFIG_CPU_SUBTYPE_SH7760 is not set | ||
145 | # CONFIG_CPU_SUBTYPE_SH4_202 is not set | ||
146 | # CONFIG_CPU_SUBTYPE_SH7723 is not set | ||
147 | # CONFIG_CPU_SUBTYPE_SH7763 is not set | ||
148 | # CONFIG_CPU_SUBTYPE_SH7770 is not set | ||
149 | # CONFIG_CPU_SUBTYPE_SH7780 is not set | ||
150 | # CONFIG_CPU_SUBTYPE_SH7785 is not set | ||
151 | # CONFIG_CPU_SUBTYPE_SHX3 is not set | ||
152 | # CONFIG_CPU_SUBTYPE_SH7343 is not set | ||
153 | # CONFIG_CPU_SUBTYPE_SH7722 is not set | ||
154 | # CONFIG_CPU_SUBTYPE_SH7366 is not set | ||
155 | # CONFIG_CPU_SUBTYPE_SH5_101 is not set | ||
156 | # CONFIG_CPU_SUBTYPE_SH5_103 is not set | ||
157 | |||
158 | # | ||
159 | # Memory management options | ||
160 | # | ||
161 | CONFIG_QUICKLIST=y | ||
162 | CONFIG_PAGE_OFFSET=0x00000000 | ||
163 | CONFIG_MEMORY_START=0x08000000 | ||
164 | CONFIG_MEMORY_SIZE=0x01000000 | ||
165 | CONFIG_29BIT=y | ||
166 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
167 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | ||
168 | CONFIG_ARCH_SPARSEMEM_DEFAULT=y | ||
169 | CONFIG_MAX_ACTIVE_REGIONS=1 | ||
170 | CONFIG_ARCH_POPULATES_NODE_MAP=y | ||
171 | CONFIG_ARCH_SELECT_MEMORY_MODEL=y | ||
172 | CONFIG_PAGE_SIZE_4KB=y | ||
173 | # CONFIG_PAGE_SIZE_8KB is not set | ||
174 | # CONFIG_PAGE_SIZE_16KB is not set | ||
175 | # CONFIG_PAGE_SIZE_64KB is not set | ||
176 | CONFIG_ENTRY_OFFSET=0x00001000 | ||
177 | CONFIG_SELECT_MEMORY_MODEL=y | ||
178 | CONFIG_FLATMEM_MANUAL=y | ||
179 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
180 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
181 | CONFIG_FLATMEM=y | ||
182 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
183 | CONFIG_SPARSEMEM_STATIC=y | ||
184 | CONFIG_PAGEFLAGS_EXTENDED=y | ||
185 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
186 | # CONFIG_RESOURCES_64BIT is not set | ||
187 | # CONFIG_PHYS_ADDR_T_64BIT is not set | ||
188 | CONFIG_ZONE_DMA_FLAG=0 | ||
189 | CONFIG_NR_QUICK=2 | ||
190 | |||
191 | # | ||
192 | # Cache configuration | ||
193 | # | ||
194 | # CONFIG_SH_DIRECT_MAPPED is not set | ||
195 | CONFIG_CACHE_WRITEBACK=y | ||
196 | # CONFIG_CACHE_WRITETHROUGH is not set | ||
197 | # CONFIG_CACHE_OFF is not set | ||
198 | |||
199 | # | ||
200 | # Processor features | ||
201 | # | ||
202 | # CONFIG_CPU_LITTLE_ENDIAN is not set | ||
203 | CONFIG_CPU_BIG_ENDIAN=y | ||
204 | CONFIG_SH_FPU=y | ||
205 | CONFIG_CPU_HAS_FPU=y | ||
206 | |||
207 | # | ||
208 | # Board support | ||
209 | # | ||
210 | CONFIG_SH_RSK7201=y | ||
211 | |||
212 | # | ||
213 | # Timer and clock configuration | ||
214 | # | ||
215 | # CONFIG_SH_CMT is not set | ||
216 | CONFIG_SH_MTU2=y | ||
217 | CONFIG_SH_TIMER_IRQ=16 | ||
218 | CONFIG_SH_PCLK_FREQ=40000000 | ||
219 | CONFIG_SH_CLK_MD=0 | ||
220 | |||
221 | # | ||
222 | # CPU Frequency scaling | ||
223 | # | ||
224 | # CONFIG_CPU_FREQ is not set | ||
225 | |||
226 | # | ||
227 | # DMA support | ||
228 | # | ||
229 | |||
230 | # | ||
231 | # Companion Chips | ||
232 | # | ||
233 | |||
234 | # | ||
235 | # Additional SuperH Device Drivers | ||
236 | # | ||
237 | # CONFIG_HEARTBEAT is not set | ||
238 | # CONFIG_PUSH_SWITCH is not set | ||
239 | |||
240 | # | ||
241 | # Kernel features | ||
242 | # | ||
243 | # CONFIG_HZ_100 is not set | ||
244 | # CONFIG_HZ_250 is not set | ||
245 | # CONFIG_HZ_300 is not set | ||
246 | CONFIG_HZ_1000=y | ||
247 | CONFIG_HZ=1000 | ||
248 | # CONFIG_SCHED_HRTICK is not set | ||
249 | # CONFIG_KEXEC is not set | ||
250 | # CONFIG_CRASH_DUMP is not set | ||
251 | # CONFIG_SECCOMP is not set | ||
252 | CONFIG_PREEMPT_NONE=y | ||
253 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
254 | # CONFIG_PREEMPT is not set | ||
255 | CONFIG_GUSA=y | ||
256 | |||
257 | # | ||
258 | # Boot options | ||
259 | # | ||
260 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | ||
261 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | ||
262 | CONFIG_CMDLINE_BOOL=y | ||
263 | CONFIG_CMDLINE="console=ttySC0,115200 earlyprintk=serial ignore_loglevel" | ||
264 | |||
265 | # | ||
266 | # Bus options | ||
267 | # | ||
268 | # CONFIG_ARCH_SUPPORTS_MSI is not set | ||
269 | # CONFIG_PCCARD is not set | ||
270 | |||
271 | # | ||
272 | # Executable file formats | ||
273 | # | ||
274 | CONFIG_BINFMT_ELF_FDPIC=y | ||
275 | CONFIG_BINFMT_FLAT=y | ||
276 | CONFIG_BINFMT_ZFLAT=y | ||
277 | CONFIG_BINFMT_SHARED_FLAT=y | ||
278 | # CONFIG_HAVE_AOUT is not set | ||
279 | # CONFIG_BINFMT_MISC is not set | ||
280 | # CONFIG_NET is not set | ||
281 | |||
282 | # | ||
283 | # Device Drivers | ||
284 | # | ||
285 | |||
286 | # | ||
287 | # Generic Driver Options | ||
288 | # | ||
289 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
290 | # CONFIG_STANDALONE is not set | ||
291 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
292 | # CONFIG_FW_LOADER is not set | ||
293 | # CONFIG_SYS_HYPERVISOR is not set | ||
294 | CONFIG_MTD=y | ||
295 | # CONFIG_MTD_DEBUG is not set | ||
296 | CONFIG_MTD_CONCAT=y | ||
297 | CONFIG_MTD_PARTITIONS=y | ||
298 | CONFIG_MTD_REDBOOT_PARTS=y | ||
299 | CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 | ||
300 | # CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set | ||
301 | # CONFIG_MTD_REDBOOT_PARTS_READONLY is not set | ||
302 | # CONFIG_MTD_CMDLINE_PARTS is not set | ||
303 | # CONFIG_MTD_AR7_PARTS is not set | ||
304 | |||
305 | # | ||
306 | # User Modules And Translation Layers | ||
307 | # | ||
308 | CONFIG_MTD_CHAR=y | ||
309 | CONFIG_MTD_BLKDEVS=y | ||
310 | CONFIG_MTD_BLOCK=y | ||
311 | # CONFIG_FTL is not set | ||
312 | # CONFIG_NFTL is not set | ||
313 | # CONFIG_INFTL is not set | ||
314 | # CONFIG_RFD_FTL is not set | ||
315 | # CONFIG_SSFDC is not set | ||
316 | # CONFIG_MTD_OOPS is not set | ||
317 | |||
318 | # | ||
319 | # RAM/ROM/Flash chip drivers | ||
320 | # | ||
321 | CONFIG_MTD_CFI=y | ||
322 | # CONFIG_MTD_JEDECPROBE is not set | ||
323 | CONFIG_MTD_GEN_PROBE=y | ||
324 | # CONFIG_MTD_CFI_ADV_OPTIONS is not set | ||
325 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
326 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
327 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
328 | # CONFIG_MTD_MAP_BANK_WIDTH_8 is not set | ||
329 | # CONFIG_MTD_MAP_BANK_WIDTH_16 is not set | ||
330 | # CONFIG_MTD_MAP_BANK_WIDTH_32 is not set | ||
331 | CONFIG_MTD_CFI_I1=y | ||
332 | CONFIG_MTD_CFI_I2=y | ||
333 | # CONFIG_MTD_CFI_I4 is not set | ||
334 | # CONFIG_MTD_CFI_I8 is not set | ||
335 | # CONFIG_MTD_CFI_INTELEXT is not set | ||
336 | CONFIG_MTD_CFI_AMDSTD=y | ||
337 | # CONFIG_MTD_CFI_STAA is not set | ||
338 | CONFIG_MTD_CFI_UTIL=y | ||
339 | # CONFIG_MTD_RAM is not set | ||
340 | # CONFIG_MTD_ROM is not set | ||
341 | # CONFIG_MTD_ABSENT is not set | ||
342 | |||
343 | # | ||
344 | # Mapping drivers for chip access | ||
345 | # | ||
346 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
347 | CONFIG_MTD_PHYSMAP=y | ||
348 | CONFIG_MTD_PHYSMAP_START=0x0 | ||
349 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
350 | CONFIG_MTD_PHYSMAP_BANKWIDTH=4 | ||
351 | # CONFIG_MTD_PLATRAM is not set | ||
352 | |||
353 | # | ||
354 | # Self-contained MTD device drivers | ||
355 | # | ||
356 | # CONFIG_MTD_SLRAM is not set | ||
357 | # CONFIG_MTD_PHRAM is not set | ||
358 | # CONFIG_MTD_MTDRAM is not set | ||
359 | # CONFIG_MTD_BLOCK2MTD is not set | ||
360 | |||
361 | # | ||
362 | # Disk-On-Chip Device Drivers | ||
363 | # | ||
364 | # CONFIG_MTD_DOC2000 is not set | ||
365 | # CONFIG_MTD_DOC2001 is not set | ||
366 | # CONFIG_MTD_DOC2001PLUS is not set | ||
367 | # CONFIG_MTD_NAND is not set | ||
368 | # CONFIG_MTD_ONENAND is not set | ||
369 | |||
370 | # | ||
371 | # UBI - Unsorted block images | ||
372 | # | ||
373 | # CONFIG_MTD_UBI is not set | ||
374 | # CONFIG_PARPORT is not set | ||
375 | CONFIG_BLK_DEV=y | ||
376 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
377 | # CONFIG_BLK_DEV_LOOP is not set | ||
378 | # CONFIG_BLK_DEV_RAM is not set | ||
379 | # CONFIG_CDROM_PKTCDVD is not set | ||
380 | # CONFIG_BLK_DEV_HD is not set | ||
381 | CONFIG_MISC_DEVICES=y | ||
382 | # CONFIG_EEPROM_93CX6 is not set | ||
383 | # CONFIG_ENCLOSURE_SERVICES is not set | ||
384 | # CONFIG_C2PORT is not set | ||
385 | CONFIG_HAVE_IDE=y | ||
386 | # CONFIG_IDE is not set | ||
387 | |||
388 | # | ||
389 | # SCSI device support | ||
390 | # | ||
391 | # CONFIG_RAID_ATTRS is not set | ||
392 | # CONFIG_SCSI is not set | ||
393 | # CONFIG_SCSI_DMA is not set | ||
394 | # CONFIG_SCSI_NETLINK is not set | ||
395 | # CONFIG_ATA is not set | ||
396 | # CONFIG_MD is not set | ||
397 | # CONFIG_PHONE is not set | ||
398 | |||
399 | # | ||
400 | # Input device support | ||
401 | # | ||
402 | CONFIG_INPUT=y | ||
403 | # CONFIG_INPUT_FF_MEMLESS is not set | ||
404 | # CONFIG_INPUT_POLLDEV is not set | ||
405 | |||
406 | # | ||
407 | # Userland interfaces | ||
408 | # | ||
409 | # CONFIG_INPUT_MOUSEDEV is not set | ||
410 | # CONFIG_INPUT_JOYDEV is not set | ||
411 | # CONFIG_INPUT_EVDEV is not set | ||
412 | # CONFIG_INPUT_EVBUG is not set | ||
413 | |||
414 | # | ||
415 | # Input Device Drivers | ||
416 | # | ||
417 | # CONFIG_INPUT_KEYBOARD is not set | ||
418 | # CONFIG_INPUT_MOUSE is not set | ||
419 | # CONFIG_INPUT_JOYSTICK is not set | ||
420 | # CONFIG_INPUT_TABLET is not set | ||
421 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
422 | # CONFIG_INPUT_MISC is not set | ||
423 | |||
424 | # | ||
425 | # Hardware I/O ports | ||
426 | # | ||
427 | # CONFIG_SERIO is not set | ||
428 | # CONFIG_GAMEPORT is not set | ||
429 | |||
430 | # | ||
431 | # Character devices | ||
432 | # | ||
433 | # CONFIG_VT is not set | ||
434 | CONFIG_DEVKMEM=y | ||
435 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
436 | |||
437 | # | ||
438 | # Serial drivers | ||
439 | # | ||
440 | # CONFIG_SERIAL_8250 is not set | ||
441 | |||
442 | # | ||
443 | # Non-8250 serial port support | ||
444 | # | ||
445 | CONFIG_SERIAL_SH_SCI=y | ||
446 | CONFIG_SERIAL_SH_SCI_NR_UARTS=8 | ||
447 | CONFIG_SERIAL_SH_SCI_CONSOLE=y | ||
448 | CONFIG_SERIAL_CORE=y | ||
449 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
450 | # CONFIG_UNIX98_PTYS is not set | ||
451 | # CONFIG_LEGACY_PTYS is not set | ||
452 | # CONFIG_IPMI_HANDLER is not set | ||
453 | # CONFIG_HW_RANDOM is not set | ||
454 | # CONFIG_R3964 is not set | ||
455 | # CONFIG_RAW_DRIVER is not set | ||
456 | # CONFIG_TCG_TPM is not set | ||
457 | # CONFIG_I2C is not set | ||
458 | # CONFIG_SPI is not set | ||
459 | # CONFIG_W1 is not set | ||
460 | # CONFIG_POWER_SUPPLY is not set | ||
461 | # CONFIG_HWMON is not set | ||
462 | CONFIG_THERMAL=y | ||
463 | # CONFIG_WATCHDOG is not set | ||
464 | CONFIG_SSB_POSSIBLE=y | ||
465 | |||
466 | # | ||
467 | # Sonics Silicon Backplane | ||
468 | # | ||
469 | # CONFIG_SSB is not set | ||
470 | |||
471 | # | ||
472 | # Multifunction device drivers | ||
473 | # | ||
474 | # CONFIG_MFD_CORE is not set | ||
475 | # CONFIG_MFD_SM501 is not set | ||
476 | # CONFIG_HTC_PASIC3 is not set | ||
477 | # CONFIG_MFD_TMIO is not set | ||
478 | # CONFIG_REGULATOR is not set | ||
479 | |||
480 | # | ||
481 | # Multimedia devices | ||
482 | # | ||
483 | |||
484 | # | ||
485 | # Multimedia core support | ||
486 | # | ||
487 | # CONFIG_VIDEO_DEV is not set | ||
488 | # CONFIG_VIDEO_MEDIA is not set | ||
489 | |||
490 | # | ||
491 | # Multimedia drivers | ||
492 | # | ||
493 | CONFIG_DAB=y | ||
494 | |||
495 | # | ||
496 | # Graphics support | ||
497 | # | ||
498 | # CONFIG_VGASTATE is not set | ||
499 | CONFIG_VIDEO_OUTPUT_CONTROL=y | ||
500 | # CONFIG_FB is not set | ||
501 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
502 | |||
503 | # | ||
504 | # Display device support | ||
505 | # | ||
506 | # CONFIG_DISPLAY_SUPPORT is not set | ||
507 | # CONFIG_SOUND is not set | ||
508 | # CONFIG_HID_SUPPORT is not set | ||
509 | # CONFIG_USB_SUPPORT is not set | ||
510 | # CONFIG_MMC is not set | ||
511 | # CONFIG_MEMSTICK is not set | ||
512 | # CONFIG_NEW_LEDS is not set | ||
513 | # CONFIG_ACCESSIBILITY is not set | ||
514 | CONFIG_RTC_LIB=y | ||
515 | CONFIG_RTC_CLASS=y | ||
516 | CONFIG_RTC_HCTOSYS=y | ||
517 | CONFIG_RTC_HCTOSYS_DEVICE="rtc0" | ||
518 | # CONFIG_RTC_DEBUG is not set | ||
519 | |||
520 | # | ||
521 | # RTC interfaces | ||
522 | # | ||
523 | CONFIG_RTC_INTF_SYSFS=y | ||
524 | CONFIG_RTC_INTF_PROC=y | ||
525 | CONFIG_RTC_INTF_DEV=y | ||
526 | # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set | ||
527 | # CONFIG_RTC_DRV_TEST is not set | ||
528 | |||
529 | # | ||
530 | # SPI RTC drivers | ||
531 | # | ||
532 | |||
533 | # | ||
534 | # Platform RTC drivers | ||
535 | # | ||
536 | # CONFIG_RTC_DRV_DS1286 is not set | ||
537 | # CONFIG_RTC_DRV_DS1511 is not set | ||
538 | # CONFIG_RTC_DRV_DS1553 is not set | ||
539 | # CONFIG_RTC_DRV_DS1742 is not set | ||
540 | # CONFIG_RTC_DRV_STK17TA8 is not set | ||
541 | # CONFIG_RTC_DRV_M48T86 is not set | ||
542 | # CONFIG_RTC_DRV_M48T35 is not set | ||
543 | # CONFIG_RTC_DRV_M48T59 is not set | ||
544 | # CONFIG_RTC_DRV_BQ4802 is not set | ||
545 | # CONFIG_RTC_DRV_V3020 is not set | ||
546 | |||
547 | # | ||
548 | # on-CPU RTC drivers | ||
549 | # | ||
550 | CONFIG_RTC_DRV_SH=y | ||
551 | # CONFIG_DMADEVICES is not set | ||
552 | # CONFIG_UIO is not set | ||
553 | # CONFIG_STAGING is not set | ||
554 | CONFIG_STAGING_EXCLUDE_BUILD=y | ||
555 | |||
556 | # | ||
557 | # File systems | ||
558 | # | ||
559 | CONFIG_EXT2_FS=y | ||
560 | # CONFIG_EXT2_FS_XATTR is not set | ||
561 | # CONFIG_EXT3_FS is not set | ||
562 | # CONFIG_EXT4_FS is not set | ||
563 | # CONFIG_REISERFS_FS is not set | ||
564 | # CONFIG_JFS_FS is not set | ||
565 | # CONFIG_FS_POSIX_ACL is not set | ||
566 | # CONFIG_FILE_LOCKING is not set | ||
567 | # CONFIG_XFS_FS is not set | ||
568 | # CONFIG_DNOTIFY is not set | ||
569 | # CONFIG_INOTIFY is not set | ||
570 | # CONFIG_QUOTA is not set | ||
571 | # CONFIG_AUTOFS_FS is not set | ||
572 | # CONFIG_AUTOFS4_FS is not set | ||
573 | # CONFIG_FUSE_FS is not set | ||
574 | |||
575 | # | ||
576 | # CD-ROM/DVD Filesystems | ||
577 | # | ||
578 | # CONFIG_ISO9660_FS is not set | ||
579 | # CONFIG_UDF_FS is not set | ||
580 | |||
581 | # | ||
582 | # DOS/FAT/NT Filesystems | ||
583 | # | ||
584 | # CONFIG_MSDOS_FS is not set | ||
585 | # CONFIG_VFAT_FS is not set | ||
586 | # CONFIG_NTFS_FS is not set | ||
587 | |||
588 | # | ||
589 | # Pseudo filesystems | ||
590 | # | ||
591 | CONFIG_PROC_FS=y | ||
592 | CONFIG_PROC_SYSCTL=y | ||
593 | CONFIG_SYSFS=y | ||
594 | # CONFIG_TMPFS is not set | ||
595 | # CONFIG_HUGETLB_PAGE is not set | ||
596 | # CONFIG_CONFIGFS_FS is not set | ||
597 | |||
598 | # | ||
599 | # Miscellaneous filesystems | ||
600 | # | ||
601 | # CONFIG_ADFS_FS is not set | ||
602 | # CONFIG_AFFS_FS is not set | ||
603 | # CONFIG_HFS_FS is not set | ||
604 | # CONFIG_HFSPLUS_FS is not set | ||
605 | # CONFIG_BEFS_FS is not set | ||
606 | # CONFIG_BFS_FS is not set | ||
607 | # CONFIG_EFS_FS is not set | ||
608 | CONFIG_JFFS2_FS=y | ||
609 | CONFIG_JFFS2_FS_DEBUG=0 | ||
610 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
611 | # CONFIG_JFFS2_FS_WBUF_VERIFY is not set | ||
612 | # CONFIG_JFFS2_SUMMARY is not set | ||
613 | # CONFIG_JFFS2_FS_XATTR is not set | ||
614 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
615 | CONFIG_JFFS2_ZLIB=y | ||
616 | # CONFIG_JFFS2_LZO is not set | ||
617 | CONFIG_JFFS2_RTIME=y | ||
618 | # CONFIG_JFFS2_RUBIN is not set | ||
619 | # CONFIG_CRAMFS is not set | ||
620 | # CONFIG_VXFS_FS is not set | ||
621 | # CONFIG_MINIX_FS is not set | ||
622 | # CONFIG_OMFS_FS is not set | ||
623 | # CONFIG_HPFS_FS is not set | ||
624 | # CONFIG_QNX4FS_FS is not set | ||
625 | CONFIG_ROMFS_FS=y | ||
626 | # CONFIG_SYSV_FS is not set | ||
627 | # CONFIG_UFS_FS is not set | ||
628 | |||
629 | # | ||
630 | # Partition Types | ||
631 | # | ||
632 | # CONFIG_PARTITION_ADVANCED is not set | ||
633 | CONFIG_MSDOS_PARTITION=y | ||
634 | # CONFIG_NLS is not set | ||
635 | |||
636 | # | ||
637 | # Kernel hacking | ||
638 | # | ||
639 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
640 | # CONFIG_PRINTK_TIME is not set | ||
641 | CONFIG_ENABLE_WARN_DEPRECATED=y | ||
642 | # CONFIG_ENABLE_MUST_CHECK is not set | ||
643 | CONFIG_FRAME_WARN=1024 | ||
644 | CONFIG_MAGIC_SYSRQ=y | ||
645 | # CONFIG_UNUSED_SYMBOLS is not set | ||
646 | CONFIG_DEBUG_FS=y | ||
647 | # CONFIG_HEADERS_CHECK is not set | ||
648 | # CONFIG_DEBUG_KERNEL is not set | ||
649 | # CONFIG_DEBUG_BUGVERBOSE is not set | ||
650 | # CONFIG_DEBUG_MEMORY_INIT is not set | ||
651 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
652 | # CONFIG_LATENCYTOP is not set | ||
653 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
654 | CONFIG_HAVE_FUNCTION_TRACER=y | ||
655 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
656 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
657 | |||
658 | # | ||
659 | # Tracers | ||
660 | # | ||
661 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | ||
662 | # CONFIG_SAMPLES is not set | ||
663 | # CONFIG_SH_STANDARD_BIOS is not set | ||
664 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
665 | |||
666 | # | ||
667 | # Security options | ||
668 | # | ||
669 | # CONFIG_KEYS is not set | ||
670 | # CONFIG_SECURITY is not set | ||
671 | # CONFIG_SECURITYFS is not set | ||
672 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | ||
673 | # CONFIG_CRYPTO is not set | ||
674 | |||
675 | # | ||
676 | # Library routines | ||
677 | # | ||
678 | CONFIG_BITREVERSE=y | ||
679 | # CONFIG_CRC_CCITT is not set | ||
680 | # CONFIG_CRC16 is not set | ||
681 | # CONFIG_CRC_T10DIF is not set | ||
682 | # CONFIG_CRC_ITU_T is not set | ||
683 | CONFIG_CRC32=y | ||
684 | # CONFIG_CRC7 is not set | ||
685 | # CONFIG_LIBCRC32C is not set | ||
686 | CONFIG_ZLIB_INFLATE=y | ||
687 | CONFIG_ZLIB_DEFLATE=y | ||
688 | CONFIG_PLIST=y | ||
689 | CONFIG_HAS_IOMEM=y | ||
690 | CONFIG_HAS_IOPORT=y | ||
691 | CONFIG_HAS_DMA=y | ||
diff --git a/arch/sh/tools/mach-types b/arch/sh/tools/mach-types index d0c2928d1066..69a9aeedf6e3 100644 --- a/arch/sh/tools/mach-types +++ b/arch/sh/tools/mach-types | |||
@@ -46,6 +46,7 @@ R2D_1 RTS7751R2D_1 | |||
46 | CAYMAN SH_CAYMAN | 46 | CAYMAN SH_CAYMAN |
47 | SDK7780 SH_SDK7780 | 47 | SDK7780 SH_SDK7780 |
48 | MIGOR SH_MIGOR | 48 | MIGOR SH_MIGOR |
49 | RSK7201 SH_RSK7201 | ||
49 | RSK7203 SH_RSK7203 | 50 | RSK7203 SH_RSK7203 |
50 | AP325RXA SH_AP325RXA | 51 | AP325RXA SH_AP325RXA |
51 | SH7763RDP SH_SH7763RDP | 52 | SH7763RDP SH_SH7763RDP |