aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh
diff options
context:
space:
mode:
authorKuninori Morimoto <morimoto.kuninori@renesas.com>2009-03-05 03:37:12 -0500
committerPaul Mundt <lethal@linux-sh.org>2009-03-05 03:37:12 -0500
commit929ef1a1f566087e4b362e3a56c50bf9db30e3c5 (patch)
tree835bb6b3c0bfd1f50c8bafb8d088ea4f96561782 /arch/sh
parent5ac072e110ff358a9ebc318a1b54f0182b799f72 (diff)
sh: urquell: Add smc91x support and update defconfig accordingly.
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r--arch/sh/boards/board-urquell.c34
-rw-r--r--arch/sh/configs/urquell_defconfig926
2 files changed, 896 insertions, 64 deletions
diff --git a/arch/sh/boards/board-urquell.c b/arch/sh/boards/board-urquell.c
index d5caeabf46e0..17036ce20086 100644
--- a/arch/sh/boards/board-urquell.c
+++ b/arch/sh/boards/board-urquell.c
@@ -11,6 +11,7 @@
11#include <linux/init.h> 11#include <linux/init.h>
12#include <linux/platform_device.h> 12#include <linux/platform_device.h>
13#include <linux/fb.h> 13#include <linux/fb.h>
14#include <linux/smc91x.h>
14#include <linux/mtd/physmap.h> 15#include <linux/mtd/physmap.h>
15#include <linux/delay.h> 16#include <linux/delay.h>
16#include <linux/gpio.h> 17#include <linux/gpio.h>
@@ -42,6 +43,32 @@ static struct platform_device heartbeat_device = {
42 .resource = heartbeat_resources, 43 .resource = heartbeat_resources,
43}; 44};
44 45
46static struct smc91x_platdata smc91x_info = {
47 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
48};
49
50static struct resource smc91x_eth_resources[] = {
51 [0] = {
52 .name = "SMC91C111" ,
53 .start = 0x05800300,
54 .end = 0x0580030f,
55 .flags = IORESOURCE_MEM,
56 },
57 [1] = {
58 .start = 11,
59 .flags = IORESOURCE_IRQ,
60 },
61};
62
63static struct platform_device smc91x_eth_device = {
64 .name = "smc91x",
65 .num_resources = ARRAY_SIZE(smc91x_eth_resources),
66 .resource = smc91x_eth_resources,
67 .dev = {
68 .platform_data = &smc91x_info,
69 },
70};
71
45static struct mtd_partition nor_flash_partitions[] = { 72static struct mtd_partition nor_flash_partitions[] = {
46 { 73 {
47 .name = "loader", 74 .name = "loader",
@@ -92,6 +119,7 @@ static struct platform_device nor_flash_device = {
92 119
93static struct platform_device *urquell_devices[] __initdata = { 120static struct platform_device *urquell_devices[] __initdata = {
94 &heartbeat_device, 121 &heartbeat_device,
122 &smc91x_eth_device,
95 &nor_flash_device, 123 &nor_flash_device,
96}; 124};
97 125
@@ -111,6 +139,11 @@ static void urquell_power_off(void)
111 __raw_writew(0xa5a5, UBOARDREG(SRSTR)); 139 __raw_writew(0xa5a5, UBOARDREG(SRSTR));
112} 140}
113 141
142static void __init urquell_init_irq(void)
143{
144 plat_irq_setup_pins(IRQ_MODE_IRL3210_MASK);
145}
146
114/* Initialize the board */ 147/* Initialize the board */
115static void __init urquell_setup(char **cmdline_p) 148static void __init urquell_setup(char **cmdline_p)
116{ 149{
@@ -125,4 +158,5 @@ static void __init urquell_setup(char **cmdline_p)
125static struct sh_machine_vector mv_urquell __initmv = { 158static struct sh_machine_vector mv_urquell __initmv = {
126 .mv_name = "Urquell", 159 .mv_name = "Urquell",
127 .mv_setup = urquell_setup, 160 .mv_setup = urquell_setup,
161 .mv_init_irq = urquell_init_irq,
128}; 162};
diff --git a/arch/sh/configs/urquell_defconfig b/arch/sh/configs/urquell_defconfig
index 94a4bdbd1bc0..be726c7cdf91 100644
--- a/arch/sh/configs/urquell_defconfig
+++ b/arch/sh/configs/urquell_defconfig
@@ -1,12 +1,13 @@
1# 1#
2# Automatically generated make config: don't edit 2# Automatically generated make config: don't edit
3# Linux kernel version: 2.6.29-rc4 3# Linux kernel version: 2.6.29-rc4
4# Tue Mar 3 16:20:09 2009 4# Thu Mar 5 17:28:13 2009
5# 5#
6CONFIG_SUPERH=y 6CONFIG_SUPERH=y
7CONFIG_SUPERH32=y 7CONFIG_SUPERH32=y
8CONFIG_ARCH_DEFCONFIG="arch/sh/configs/shx3_defconfig" 8CONFIG_ARCH_DEFCONFIG="arch/sh/configs/shx3_defconfig"
9CONFIG_RWSEM_GENERIC_SPINLOCK=y 9CONFIG_RWSEM_GENERIC_SPINLOCK=y
10CONFIG_GENERIC_BUG=y
10CONFIG_GENERIC_FIND_NEXT_BIT=y 11CONFIG_GENERIC_FIND_NEXT_BIT=y
11CONFIG_GENERIC_HWEIGHT=y 12CONFIG_GENERIC_HWEIGHT=y
12CONFIG_GENERIC_HARDIRQS=y 13CONFIG_GENERIC_HARDIRQS=y
@@ -29,13 +30,20 @@ CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
29# 30#
30# General setup 31# General setup
31# 32#
32# CONFIG_EXPERIMENTAL is not set 33CONFIG_EXPERIMENTAL=y
33CONFIG_BROKEN_ON_SMP=y 34CONFIG_BROKEN_ON_SMP=y
35CONFIG_LOCK_KERNEL=y
34CONFIG_INIT_ENV_ARG_LIMIT=32 36CONFIG_INIT_ENV_ARG_LIMIT=32
35CONFIG_LOCALVERSION="" 37CONFIG_LOCALVERSION=""
36# CONFIG_LOCALVERSION_AUTO is not set 38CONFIG_LOCALVERSION_AUTO=y
37# CONFIG_SYSVIPC is not set 39CONFIG_SWAP=y
38# CONFIG_BSD_PROCESS_ACCT is not set 40CONFIG_SYSVIPC=y
41CONFIG_SYSVIPC_SYSCTL=y
42# CONFIG_POSIX_MQUEUE is not set
43CONFIG_BSD_PROCESS_ACCT=y
44# CONFIG_BSD_PROCESS_ACCT_V3 is not set
45# CONFIG_TASKSTATS is not set
46# CONFIG_AUDIT is not set
39 47
40# 48#
41# RCU Subsystem 49# RCU Subsystem
@@ -45,45 +53,82 @@ CONFIG_CLASSIC_RCU=y
45# CONFIG_PREEMPT_RCU is not set 53# CONFIG_PREEMPT_RCU is not set
46# CONFIG_TREE_RCU_TRACE is not set 54# CONFIG_TREE_RCU_TRACE is not set
47# CONFIG_PREEMPT_RCU_TRACE is not set 55# CONFIG_PREEMPT_RCU_TRACE is not set
48# CONFIG_IKCONFIG is not set 56CONFIG_IKCONFIG=y
49CONFIG_LOG_BUF_SHIFT=17 57CONFIG_IKCONFIG_PROC=y
58CONFIG_LOG_BUF_SHIFT=14
59CONFIG_GROUP_SCHED=y
60CONFIG_FAIR_GROUP_SCHED=y
61# CONFIG_RT_GROUP_SCHED is not set
62CONFIG_USER_SCHED=y
63# CONFIG_CGROUP_SCHED is not set
50# CONFIG_CGROUPS is not set 64# CONFIG_CGROUPS is not set
65CONFIG_SYSFS_DEPRECATED=y
66CONFIG_SYSFS_DEPRECATED_V2=y
51# CONFIG_RELAY is not set 67# CONFIG_RELAY is not set
52# CONFIG_NAMESPACES is not set 68# CONFIG_NAMESPACES is not set
53# CONFIG_BLK_DEV_INITRD is not set 69# CONFIG_BLK_DEV_INITRD is not set
54# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set 70CONFIG_CC_OPTIMIZE_FOR_SIZE=y
71CONFIG_SYSCTL=y
55CONFIG_EMBEDDED=y 72CONFIG_EMBEDDED=y
56# CONFIG_UID16 is not set 73CONFIG_UID16=y
57# CONFIG_SYSCTL_SYSCALL is not set 74CONFIG_SYSCTL_SYSCALL=y
58# CONFIG_KALLSYMS is not set 75CONFIG_KALLSYMS=y
59# CONFIG_HOTPLUG is not set 76# CONFIG_KALLSYMS_EXTRA_PASS is not set
60# CONFIG_PRINTK is not set 77CONFIG_HOTPLUG=y
61# CONFIG_BUG is not set 78CONFIG_PRINTK=y
62# CONFIG_ELF_CORE is not set 79CONFIG_BUG=y
63# CONFIG_COMPAT_BRK is not set 80CONFIG_ELF_CORE=y
64# CONFIG_BASE_FULL is not set 81CONFIG_COMPAT_BRK=y
65# CONFIG_FUTEX is not set 82CONFIG_BASE_FULL=y
66# CONFIG_EPOLL is not set 83CONFIG_FUTEX=y
67# CONFIG_SIGNALFD is not set 84CONFIG_ANON_INODES=y
68# CONFIG_TIMERFD is not set 85CONFIG_EPOLL=y
69# CONFIG_EVENTFD is not set 86CONFIG_SIGNALFD=y
87CONFIG_TIMERFD=y
88CONFIG_EVENTFD=y
70CONFIG_SHMEM=y 89CONFIG_SHMEM=y
71# CONFIG_AIO is not set 90CONFIG_AIO=y
72# CONFIG_VM_EVENT_COUNTERS is not set 91CONFIG_VM_EVENT_COUNTERS=y
73# CONFIG_SLAB is not set 92CONFIG_SLAB=y
74CONFIG_SLUB=y 93# CONFIG_SLUB is not set
75# CONFIG_SLOB is not set 94# CONFIG_SLOB is not set
76# CONFIG_PROFILING is not set 95CONFIG_PROFILING=y
96# CONFIG_OPROFILE is not set
77CONFIG_HAVE_OPROFILE=y 97CONFIG_HAVE_OPROFILE=y
98# CONFIG_KPROBES is not set
78CONFIG_HAVE_IOREMAP_PROT=y 99CONFIG_HAVE_IOREMAP_PROT=y
79CONFIG_HAVE_KPROBES=y 100CONFIG_HAVE_KPROBES=y
80CONFIG_HAVE_KRETPROBES=y 101CONFIG_HAVE_KRETPROBES=y
81CONFIG_HAVE_ARCH_TRACEHOOK=y 102CONFIG_HAVE_ARCH_TRACEHOOK=y
82CONFIG_HAVE_CLK=y 103CONFIG_HAVE_CLK=y
83CONFIG_HAVE_GENERIC_DMA_COHERENT=y 104CONFIG_HAVE_GENERIC_DMA_COHERENT=y
84CONFIG_BASE_SMALL=1 105CONFIG_SLABINFO=y
85# CONFIG_MODULES is not set 106CONFIG_RT_MUTEXES=y
86# CONFIG_BLOCK is not set 107CONFIG_BASE_SMALL=0
108CONFIG_MODULES=y
109# CONFIG_MODULE_FORCE_LOAD is not set
110CONFIG_MODULE_UNLOAD=y
111# CONFIG_MODULE_FORCE_UNLOAD is not set
112# CONFIG_MODVERSIONS is not set
113# CONFIG_MODULE_SRCVERSION_ALL is not set
114CONFIG_BLOCK=y
115# CONFIG_LBD is not set
116# CONFIG_BLK_DEV_IO_TRACE is not set
117# CONFIG_BLK_DEV_BSG is not set
118# CONFIG_BLK_DEV_INTEGRITY is not set
119
120#
121# IO Schedulers
122#
123CONFIG_IOSCHED_NOOP=y
124CONFIG_IOSCHED_AS=y
125CONFIG_IOSCHED_DEADLINE=y
126CONFIG_IOSCHED_CFQ=y
127# CONFIG_DEFAULT_AS is not set
128# CONFIG_DEFAULT_DEADLINE is not set
129CONFIG_DEFAULT_CFQ=y
130# CONFIG_DEFAULT_NOOP is not set
131CONFIG_DEFAULT_IOSCHED="cfq"
87# CONFIG_FREEZER is not set 132# CONFIG_FREEZER is not set
88 133
89# 134#
@@ -135,9 +180,11 @@ CONFIG_QUICKLIST=y
135CONFIG_MMU=y 180CONFIG_MMU=y
136CONFIG_PAGE_OFFSET=0x80000000 181CONFIG_PAGE_OFFSET=0x80000000
137CONFIG_MEMORY_START=0x08000000 182CONFIG_MEMORY_START=0x08000000
138CONFIG_MEMORY_SIZE=0x04000000 183CONFIG_MEMORY_SIZE=0x08000000
139CONFIG_29BIT=y 184CONFIG_29BIT=y
185# CONFIG_X2TLB is not set
140CONFIG_VSYSCALL=y 186CONFIG_VSYSCALL=y
187# CONFIG_NUMA is not set
141CONFIG_ARCH_FLATMEM_ENABLE=y 188CONFIG_ARCH_FLATMEM_ENABLE=y
142CONFIG_ARCH_SPARSEMEM_ENABLE=y 189CONFIG_ARCH_SPARSEMEM_ENABLE=y
143CONFIG_ARCH_SPARSEMEM_DEFAULT=y 190CONFIG_ARCH_SPARSEMEM_DEFAULT=y
@@ -158,6 +205,7 @@ CONFIG_SPARSEMEM_MANUAL=y
158CONFIG_SPARSEMEM=y 205CONFIG_SPARSEMEM=y
159CONFIG_HAVE_MEMORY_PRESENT=y 206CONFIG_HAVE_MEMORY_PRESENT=y
160CONFIG_SPARSEMEM_STATIC=y 207CONFIG_SPARSEMEM_STATIC=y
208# CONFIG_MEMORY_HOTPLUG is not set
161CONFIG_PAGEFLAGS_EXTENDED=y 209CONFIG_PAGEFLAGS_EXTENDED=y
162CONFIG_SPLIT_PTLOCK_CPUS=4 210CONFIG_SPLIT_PTLOCK_CPUS=4
163CONFIG_MIGRATION=y 211CONFIG_MIGRATION=y
@@ -180,7 +228,7 @@ CONFIG_CACHE_WRITEBACK=y
180CONFIG_CPU_LITTLE_ENDIAN=y 228CONFIG_CPU_LITTLE_ENDIAN=y
181# CONFIG_CPU_BIG_ENDIAN is not set 229# CONFIG_CPU_BIG_ENDIAN is not set
182CONFIG_SH_FPU=y 230CONFIG_SH_FPU=y
183# CONFIG_SH_STORE_QUEUES is not set 231CONFIG_SH_STORE_QUEUES=y
184CONFIG_CPU_HAS_INTEVT=y 232CONFIG_CPU_HAS_INTEVT=y
185CONFIG_CPU_HAS_SR_RB=y 233CONFIG_CPU_HAS_SR_RB=y
186CONFIG_CPU_HAS_FPU=y 234CONFIG_CPU_HAS_FPU=y
@@ -195,9 +243,9 @@ CONFIG_SH_URQUELL=y
195# 243#
196CONFIG_SH_TMU=y 244CONFIG_SH_TMU=y
197CONFIG_SH_TIMER_IRQ=16 245CONFIG_SH_TIMER_IRQ=16
198CONFIG_SH_PCLK_FREQ=31250000 246CONFIG_SH_PCLK_FREQ=33333333
199CONFIG_TICK_ONESHOT=y 247CONFIG_TICK_ONESHOT=y
200CONFIG_NO_HZ=y 248# CONFIG_NO_HZ is not set
201CONFIG_HIGH_RES_TIMERS=y 249CONFIG_HIGH_RES_TIMERS=y
202CONFIG_GENERIC_CLOCKEVENTS_BUILD=y 250CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
203 251
@@ -230,9 +278,12 @@ CONFIG_HZ_250=y
230# CONFIG_HZ_1000 is not set 278# CONFIG_HZ_1000 is not set
231CONFIG_HZ=250 279CONFIG_HZ=250
232CONFIG_SCHED_HRTICK=y 280CONFIG_SCHED_HRTICK=y
233CONFIG_PREEMPT_NONE=y 281CONFIG_KEXEC=y
282# CONFIG_CRASH_DUMP is not set
283# CONFIG_SECCOMP is not set
284# CONFIG_PREEMPT_NONE is not set
234# CONFIG_PREEMPT_VOLUNTARY is not set 285# CONFIG_PREEMPT_VOLUNTARY is not set
235# CONFIG_PREEMPT is not set 286CONFIG_PREEMPT=y
236CONFIG_GUSA=y 287CONFIG_GUSA=y
237 288
238# 289#
@@ -240,20 +291,116 @@ CONFIG_GUSA=y
240# 291#
241CONFIG_ZERO_PAGE_OFFSET=0x00001000 292CONFIG_ZERO_PAGE_OFFSET=0x00001000
242CONFIG_BOOT_LINK_OFFSET=0x00800000 293CONFIG_BOOT_LINK_OFFSET=0x00800000
243# CONFIG_CMDLINE_BOOL is not set 294CONFIG_CMDLINE_BOOL=y
295CONFIG_CMDLINE="console=ttySC1, 38400 earlyprintk=serial ip=on ignore_loglevel root=/dev/nfs ip=dhcp memchunk.vpu=4m"
244 296
245# 297#
246# Bus options 298# Bus options
247# 299#
248# CONFIG_ARCH_SUPPORTS_MSI is not set 300# CONFIG_ARCH_SUPPORTS_MSI is not set
301# CONFIG_PCCARD is not set
249 302
250# 303#
251# Executable file formats 304# Executable file formats
252# 305#
253CONFIG_BINFMT_ELF=y 306CONFIG_BINFMT_ELF=y
307# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
254# CONFIG_HAVE_AOUT is not set 308# CONFIG_HAVE_AOUT is not set
255# CONFIG_BINFMT_MISC is not set 309# CONFIG_BINFMT_MISC is not set
256# CONFIG_NET is not set 310
311#
312# Power management options (EXPERIMENTAL)
313#
314# CONFIG_PM is not set
315# CONFIG_CPU_IDLE is not set
316CONFIG_NET=y
317
318#
319# Networking options
320#
321CONFIG_COMPAT_NET_DEV_OPS=y
322CONFIG_PACKET=y
323# CONFIG_PACKET_MMAP is not set
324CONFIG_UNIX=y
325CONFIG_XFRM=y
326# CONFIG_XFRM_USER is not set
327# CONFIG_XFRM_SUB_POLICY is not set
328# CONFIG_XFRM_MIGRATE is not set
329# CONFIG_XFRM_STATISTICS is not set
330# CONFIG_NET_KEY is not set
331CONFIG_INET=y
332# CONFIG_IP_MULTICAST is not set
333CONFIG_IP_ADVANCED_ROUTER=y
334CONFIG_ASK_IP_FIB_HASH=y
335# CONFIG_IP_FIB_TRIE is not set
336CONFIG_IP_FIB_HASH=y
337# CONFIG_IP_MULTIPLE_TABLES is not set
338# CONFIG_IP_ROUTE_MULTIPATH is not set
339# CONFIG_IP_ROUTE_VERBOSE is not set
340CONFIG_IP_PNP=y
341CONFIG_IP_PNP_DHCP=y
342# CONFIG_IP_PNP_BOOTP is not set
343# CONFIG_IP_PNP_RARP is not set
344# CONFIG_NET_IPIP is not set
345# CONFIG_NET_IPGRE is not set
346# CONFIG_ARPD is not set
347# CONFIG_SYN_COOKIES is not set
348# CONFIG_INET_AH is not set
349# CONFIG_INET_ESP is not set
350# CONFIG_INET_IPCOMP is not set
351# CONFIG_INET_XFRM_TUNNEL is not set
352# CONFIG_INET_TUNNEL is not set
353CONFIG_INET_XFRM_MODE_TRANSPORT=y
354CONFIG_INET_XFRM_MODE_TUNNEL=y
355CONFIG_INET_XFRM_MODE_BEET=y
356# CONFIG_INET_LRO is not set
357CONFIG_INET_DIAG=y
358CONFIG_INET_TCP_DIAG=y
359# CONFIG_TCP_CONG_ADVANCED is not set
360CONFIG_TCP_CONG_CUBIC=y
361CONFIG_DEFAULT_TCP_CONG="cubic"
362# CONFIG_TCP_MD5SIG is not set
363# CONFIG_IPV6 is not set
364# CONFIG_NETWORK_SECMARK is not set
365# CONFIG_NETFILTER is not set
366# CONFIG_IP_DCCP is not set
367# CONFIG_IP_SCTP is not set
368# CONFIG_TIPC is not set
369# CONFIG_ATM is not set
370# CONFIG_BRIDGE is not set
371# CONFIG_NET_DSA is not set
372# CONFIG_VLAN_8021Q is not set
373# CONFIG_DECNET is not set
374# CONFIG_LLC2 is not set
375# CONFIG_IPX is not set
376# CONFIG_ATALK is not set
377# CONFIG_X25 is not set
378# CONFIG_LAPB is not set
379# CONFIG_ECONET is not set
380# CONFIG_WAN_ROUTER is not set
381# CONFIG_NET_SCHED is not set
382# CONFIG_DCB is not set
383
384#
385# Network testing
386#
387# CONFIG_NET_PKTGEN is not set
388# CONFIG_HAMRADIO is not set
389# CONFIG_CAN is not set
390# CONFIG_IRDA is not set
391# CONFIG_BT is not set
392# CONFIG_AF_RXRPC is not set
393# CONFIG_PHONET is not set
394CONFIG_WIRELESS=y
395# CONFIG_CFG80211 is not set
396# CONFIG_WIRELESS_OLD_REGULATORY is not set
397CONFIG_WIRELESS_EXT=y
398CONFIG_WIRELESS_EXT_SYSFS=y
399# CONFIG_LIB80211 is not set
400# CONFIG_MAC80211 is not set
401# CONFIG_WIMAX is not set
402# CONFIG_RFKILL is not set
403# CONFIG_NET_9P is not set
257 404
258# 405#
259# Device Drivers 406# Device Drivers
@@ -262,25 +409,39 @@ CONFIG_BINFMT_ELF=y
262# 409#
263# Generic Driver Options 410# Generic Driver Options
264# 411#
412CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
265CONFIG_STANDALONE=y 413CONFIG_STANDALONE=y
266# CONFIG_PREVENT_FIRMWARE_BUILD is not set 414CONFIG_PREVENT_FIRMWARE_BUILD=y
415# CONFIG_FW_LOADER is not set
267# CONFIG_SYS_HYPERVISOR is not set 416# CONFIG_SYS_HYPERVISOR is not set
417# CONFIG_CONNECTOR is not set
268CONFIG_MTD=y 418CONFIG_MTD=y
269# CONFIG_MTD_DEBUG is not set 419# CONFIG_MTD_DEBUG is not set
270# CONFIG_MTD_CONCAT is not set 420CONFIG_MTD_CONCAT=y
271# CONFIG_MTD_PARTITIONS is not set 421CONFIG_MTD_PARTITIONS=y
422# CONFIG_MTD_TESTS is not set
423# CONFIG_MTD_REDBOOT_PARTS is not set
424# CONFIG_MTD_CMDLINE_PARTS is not set
425# CONFIG_MTD_AR7_PARTS is not set
272 426
273# 427#
274# User Modules And Translation Layers 428# User Modules And Translation Layers
275# 429#
276# CONFIG_MTD_CHAR is not set 430CONFIG_MTD_CHAR=y
431CONFIG_MTD_BLKDEVS=y
432CONFIG_MTD_BLOCK=y
433# CONFIG_FTL is not set
434# CONFIG_NFTL is not set
435# CONFIG_INFTL is not set
436# CONFIG_RFD_FTL is not set
437# CONFIG_SSFDC is not set
277# CONFIG_MTD_OOPS is not set 438# CONFIG_MTD_OOPS is not set
278 439
279# 440#
280# RAM/ROM/Flash chip drivers 441# RAM/ROM/Flash chip drivers
281# 442#
282CONFIG_MTD_CFI=y 443CONFIG_MTD_CFI=y
283CONFIG_MTD_JEDECPROBE=y 444# CONFIG_MTD_JEDECPROBE is not set
284CONFIG_MTD_GEN_PROBE=y 445CONFIG_MTD_GEN_PROBE=y
285# CONFIG_MTD_CFI_ADV_OPTIONS is not set 446# CONFIG_MTD_CFI_ADV_OPTIONS is not set
286CONFIG_MTD_MAP_BANK_WIDTH_1=y 447CONFIG_MTD_MAP_BANK_WIDTH_1=y
@@ -294,7 +455,7 @@ CONFIG_MTD_CFI_I2=y
294# CONFIG_MTD_CFI_I4 is not set 455# CONFIG_MTD_CFI_I4 is not set
295# CONFIG_MTD_CFI_I8 is not set 456# CONFIG_MTD_CFI_I8 is not set
296# CONFIG_MTD_CFI_INTELEXT is not set 457# CONFIG_MTD_CFI_INTELEXT is not set
297# CONFIG_MTD_CFI_AMDSTD is not set 458CONFIG_MTD_CFI_AMDSTD=y
298# CONFIG_MTD_CFI_STAA is not set 459# CONFIG_MTD_CFI_STAA is not set
299CONFIG_MTD_CFI_UTIL=y 460CONFIG_MTD_CFI_UTIL=y
300# CONFIG_MTD_RAM is not set 461# CONFIG_MTD_RAM is not set
@@ -315,6 +476,7 @@ CONFIG_MTD_PHYSMAP=y
315# CONFIG_MTD_SLRAM is not set 476# CONFIG_MTD_SLRAM is not set
316# CONFIG_MTD_PHRAM is not set 477# CONFIG_MTD_PHRAM is not set
317# CONFIG_MTD_MTDRAM is not set 478# CONFIG_MTD_MTDRAM is not set
479# CONFIG_MTD_BLOCK2MTD is not set
318 480
319# 481#
320# Disk-On-Chip Device Drivers 482# Disk-On-Chip Device Drivers
@@ -336,20 +498,176 @@ CONFIG_MTD_PHYSMAP=y
336# 498#
337# CONFIG_MTD_UBI is not set 499# CONFIG_MTD_UBI is not set
338# CONFIG_PARPORT is not set 500# CONFIG_PARPORT is not set
501CONFIG_BLK_DEV=y
502# CONFIG_BLK_DEV_COW_COMMON is not set
503# CONFIG_BLK_DEV_LOOP is not set
504# CONFIG_BLK_DEV_NBD is not set
505# CONFIG_BLK_DEV_UB is not set
506CONFIG_BLK_DEV_RAM=y
507CONFIG_BLK_DEV_RAM_COUNT=16
508CONFIG_BLK_DEV_RAM_SIZE=4096
509# CONFIG_BLK_DEV_XIP is not set
510# CONFIG_CDROM_PKTCDVD is not set
511# CONFIG_ATA_OVER_ETH is not set
512# CONFIG_BLK_DEV_HD is not set
339# CONFIG_MISC_DEVICES is not set 513# CONFIG_MISC_DEVICES is not set
340CONFIG_HAVE_IDE=y 514CONFIG_HAVE_IDE=y
515# CONFIG_IDE is not set
341 516
342# 517#
343# SCSI device support 518# SCSI device support
344# 519#
345# CONFIG_SCSI_DMA is not set 520# CONFIG_RAID_ATTRS is not set
521CONFIG_SCSI=y
522CONFIG_SCSI_DMA=y
523# CONFIG_SCSI_TGT is not set
346# CONFIG_SCSI_NETLINK is not set 524# CONFIG_SCSI_NETLINK is not set
525CONFIG_SCSI_PROC_FS=y
526
527#
528# SCSI support type (disk, tape, CD-ROM)
529#
530CONFIG_BLK_DEV_SD=y
531# CONFIG_CHR_DEV_ST is not set
532# CONFIG_CHR_DEV_OSST is not set
533# CONFIG_BLK_DEV_SR is not set
534# CONFIG_CHR_DEV_SG is not set
535# CONFIG_CHR_DEV_SCH is not set
536
537#
538# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
539#
540# CONFIG_SCSI_MULTI_LUN is not set
541# CONFIG_SCSI_CONSTANTS is not set
542# CONFIG_SCSI_LOGGING is not set
543# CONFIG_SCSI_SCAN_ASYNC is not set
544CONFIG_SCSI_WAIT_SCAN=m
545
546#
547# SCSI Transports
548#
549# CONFIG_SCSI_SPI_ATTRS is not set
550# CONFIG_SCSI_FC_ATTRS is not set
551# CONFIG_SCSI_ISCSI_ATTRS is not set
552# CONFIG_SCSI_SAS_LIBSAS is not set
553# CONFIG_SCSI_SRP_ATTRS is not set
554# CONFIG_SCSI_LOWLEVEL is not set
555# CONFIG_SCSI_DH is not set
556CONFIG_ATA=y
557# CONFIG_ATA_NONSTANDARD is not set
558CONFIG_SATA_PMP=y
559CONFIG_ATA_SFF=y
560# CONFIG_SATA_MV is not set
561# CONFIG_PATA_PLATFORM is not set
562# CONFIG_MD is not set
563CONFIG_NETDEVICES=y
564# CONFIG_DUMMY is not set
565# CONFIG_BONDING is not set
566# CONFIG_MACVLAN is not set
567# CONFIG_EQUALIZER is not set
568# CONFIG_TUN is not set
569# CONFIG_VETH is not set
570CONFIG_PHYLIB=y
571
572#
573# MII PHY device drivers
574#
575# CONFIG_MARVELL_PHY is not set
576# CONFIG_DAVICOM_PHY is not set
577# CONFIG_QSEMI_PHY is not set
578# CONFIG_LXT_PHY is not set
579# CONFIG_CICADA_PHY is not set
580# CONFIG_VITESSE_PHY is not set
581# CONFIG_SMSC_PHY is not set
582# CONFIG_BROADCOM_PHY is not set
583# CONFIG_ICPLUS_PHY is not set
584# CONFIG_REALTEK_PHY is not set
585# CONFIG_NATIONAL_PHY is not set
586# CONFIG_STE10XP is not set
587# CONFIG_LSI_ET1011C_PHY is not set
588# CONFIG_FIXED_PHY is not set
589# CONFIG_MDIO_BITBANG is not set
590CONFIG_NET_ETHERNET=y
591CONFIG_MII=y
592# CONFIG_AX88796 is not set
593# CONFIG_STNIC is not set
594CONFIG_SMC91X=y
595# CONFIG_SMC911X is not set
596# CONFIG_SMSC911X is not set
597# CONFIG_IBM_NEW_EMAC_ZMII is not set
598# CONFIG_IBM_NEW_EMAC_RGMII is not set
599# CONFIG_IBM_NEW_EMAC_TAH is not set
600# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
601# CONFIG_IBM_NEW_EMAC_NO_FLOW_CTRL is not set
602# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
603# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
604# CONFIG_B44 is not set
605# CONFIG_NETDEV_1000 is not set
606# CONFIG_NETDEV_10000 is not set
607
608#
609# Wireless LAN
610#
611# CONFIG_WLAN_PRE80211 is not set
612# CONFIG_WLAN_80211 is not set
613# CONFIG_IWLWIFI_LEDS is not set
614
615#
616# Enable WiMAX (Networking options) to see the WiMAX drivers
617#
618
619#
620# USB Network Adapters
621#
622# CONFIG_USB_CATC is not set
623# CONFIG_USB_KAWETH is not set
624# CONFIG_USB_PEGASUS is not set
625# CONFIG_USB_RTL8150 is not set
626# CONFIG_USB_USBNET is not set
627# CONFIG_WAN is not set
628# CONFIG_PPP is not set
629# CONFIG_SLIP is not set
630# CONFIG_NETCONSOLE is not set
631# CONFIG_NETPOLL is not set
632# CONFIG_NET_POLL_CONTROLLER is not set
633# CONFIG_ISDN is not set
347# CONFIG_PHONE is not set 634# CONFIG_PHONE is not set
348 635
349# 636#
350# Input device support 637# Input device support
351# 638#
352# CONFIG_INPUT is not set 639CONFIG_INPUT=y
640CONFIG_INPUT_FF_MEMLESS=m
641# CONFIG_INPUT_POLLDEV is not set
642
643#
644# Userland interfaces
645#
646CONFIG_INPUT_MOUSEDEV=y
647# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
648CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
649CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
650# CONFIG_INPUT_JOYDEV is not set
651# CONFIG_INPUT_EVDEV is not set
652# CONFIG_INPUT_EVBUG is not set
653
654#
655# Input Device Drivers
656#
657CONFIG_INPUT_KEYBOARD=y
658# CONFIG_KEYBOARD_ATKBD is not set
659# CONFIG_KEYBOARD_SUNKBD is not set
660# CONFIG_KEYBOARD_LKKBD is not set
661# CONFIG_KEYBOARD_XTKBD is not set
662# CONFIG_KEYBOARD_NEWTON is not set
663# CONFIG_KEYBOARD_STOWAWAY is not set
664# CONFIG_KEYBOARD_GPIO is not set
665# CONFIG_KEYBOARD_SH_KEYSC is not set
666# CONFIG_INPUT_MOUSE is not set
667# CONFIG_INPUT_JOYSTICK is not set
668# CONFIG_INPUT_TABLET is not set
669# CONFIG_INPUT_TOUCHSCREEN is not set
670# CONFIG_INPUT_MISC is not set
353 671
354# 672#
355# Hardware I/O ports 673# Hardware I/O ports
@@ -360,8 +678,12 @@ CONFIG_HAVE_IDE=y
360# 678#
361# Character devices 679# Character devices
362# 680#
363# CONFIG_VT is not set 681CONFIG_VT=y
364# CONFIG_DEVKMEM is not set 682CONFIG_CONSOLE_TRANSLATIONS=y
683CONFIG_VT_CONSOLE=y
684CONFIG_HW_CONSOLE=y
685CONFIG_VT_HW_CONSOLE_BINDING=y
686CONFIG_DEVKMEM=y
365# CONFIG_SERIAL_NONSTANDARD is not set 687# CONFIG_SERIAL_NONSTANDARD is not set
366 688
367# 689#
@@ -377,15 +699,64 @@ CONFIG_SERIAL_SH_SCI_NR_UARTS=6
377CONFIG_SERIAL_SH_SCI_CONSOLE=y 699CONFIG_SERIAL_SH_SCI_CONSOLE=y
378CONFIG_SERIAL_CORE=y 700CONFIG_SERIAL_CORE=y
379CONFIG_SERIAL_CORE_CONSOLE=y 701CONFIG_SERIAL_CORE_CONSOLE=y
380# CONFIG_UNIX98_PTYS is not set 702CONFIG_UNIX98_PTYS=y
381# CONFIG_LEGACY_PTYS is not set 703# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
704CONFIG_LEGACY_PTYS=y
705CONFIG_LEGACY_PTY_COUNT=256
382# CONFIG_IPMI_HANDLER is not set 706# CONFIG_IPMI_HANDLER is not set
383# CONFIG_HW_RANDOM is not set 707CONFIG_HW_RANDOM=y
384# CONFIG_R3964 is not set 708# CONFIG_R3964 is not set
385# CONFIG_I2C is not set 709# CONFIG_RAW_DRIVER is not set
710# CONFIG_TCG_TPM is not set
711CONFIG_I2C=y
712CONFIG_I2C_BOARDINFO=y
713# CONFIG_I2C_CHARDEV is not set
714CONFIG_I2C_HELPER_AUTO=y
715CONFIG_I2C_ALGOPCA=y
716
717#
718# I2C Hardware Bus support
719#
720
721#
722# I2C system bus drivers (mostly embedded / system-on-chip)
723#
724# CONFIG_I2C_GPIO is not set
725# CONFIG_I2C_OCORES is not set
726# CONFIG_I2C_SH_MOBILE is not set
727# CONFIG_I2C_SIMTEC is not set
728
729#
730# External I2C/SMBus adapter drivers
731#
732# CONFIG_I2C_PARPORT_LIGHT is not set
733# CONFIG_I2C_TAOS_EVM is not set
734# CONFIG_I2C_TINY_USB is not set
735
736#
737# Other I2C/SMBus bus drivers
738#
739CONFIG_I2C_PCA_PLATFORM=y
740# CONFIG_I2C_STUB is not set
741
742#
743# Miscellaneous I2C Chip support
744#
745# CONFIG_DS1682 is not set
746# CONFIG_SENSORS_PCF8574 is not set
747# CONFIG_PCF8575 is not set
748# CONFIG_SENSORS_PCA9539 is not set
749# CONFIG_SENSORS_PCF8591 is not set
750# CONFIG_SENSORS_MAX6875 is not set
751# CONFIG_SENSORS_TSL2550 is not set
752# CONFIG_I2C_DEBUG_CORE is not set
753# CONFIG_I2C_DEBUG_ALGO is not set
754# CONFIG_I2C_DEBUG_BUS is not set
755# CONFIG_I2C_DEBUG_CHIP is not set
386# CONFIG_SPI is not set 756# CONFIG_SPI is not set
387CONFIG_ARCH_REQUIRE_GPIOLIB=y 757CONFIG_ARCH_REQUIRE_GPIOLIB=y
388CONFIG_GPIOLIB=y 758CONFIG_GPIOLIB=y
759# CONFIG_GPIO_SYSFS is not set
389 760
390# 761#
391# Memory mapped GPIO expanders: 762# Memory mapped GPIO expanders:
@@ -394,6 +765,9 @@ CONFIG_GPIOLIB=y
394# 765#
395# I2C GPIO expanders: 766# I2C GPIO expanders:
396# 767#
768# CONFIG_GPIO_MAX732X is not set
769# CONFIG_GPIO_PCA953X is not set
770# CONFIG_GPIO_PCF857X is not set
397 771
398# 772#
399# PCI GPIO expanders: 773# PCI GPIO expanders:
@@ -419,9 +793,16 @@ CONFIG_SSB_POSSIBLE=y
419# Multifunction device drivers 793# Multifunction device drivers
420# 794#
421# CONFIG_MFD_CORE is not set 795# CONFIG_MFD_CORE is not set
422# CONFIG_MFD_SM501 is not set 796CONFIG_MFD_SM501=y
797# CONFIG_MFD_SM501_GPIO is not set
423# CONFIG_HTC_PASIC3 is not set 798# CONFIG_HTC_PASIC3 is not set
799# CONFIG_TPS65010 is not set
800# CONFIG_TWL4030_CORE is not set
424# CONFIG_MFD_TMIO is not set 801# CONFIG_MFD_TMIO is not set
802# CONFIG_PMIC_DA903X is not set
803# CONFIG_MFD_WM8400 is not set
804# CONFIG_MFD_WM8350_I2C is not set
805# CONFIG_MFD_PCF50633 is not set
425# CONFIG_REGULATOR is not set 806# CONFIG_REGULATOR is not set
426 807
427# 808#
@@ -432,6 +813,7 @@ CONFIG_SSB_POSSIBLE=y
432# Multimedia core support 813# Multimedia core support
433# 814#
434# CONFIG_VIDEO_DEV is not set 815# CONFIG_VIDEO_DEV is not set
816# CONFIG_DVB_CORE is not set
435# CONFIG_VIDEO_MEDIA is not set 817# CONFIG_VIDEO_MEDIA is not set
436 818
437# 819#
@@ -444,15 +826,202 @@ CONFIG_SSB_POSSIBLE=y
444# 826#
445# CONFIG_VGASTATE is not set 827# CONFIG_VGASTATE is not set
446# CONFIG_VIDEO_OUTPUT_CONTROL is not set 828# CONFIG_VIDEO_OUTPUT_CONTROL is not set
447# CONFIG_FB is not set 829CONFIG_FB=y
830# CONFIG_FIRMWARE_EDID is not set
831# CONFIG_FB_DDC is not set
832# CONFIG_FB_BOOT_VESA_SUPPORT is not set
833CONFIG_FB_CFB_FILLRECT=y
834CONFIG_FB_CFB_COPYAREA=y
835CONFIG_FB_CFB_IMAGEBLIT=y
836# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
837CONFIG_FB_SYS_FILLRECT=m
838CONFIG_FB_SYS_COPYAREA=m
839CONFIG_FB_SYS_IMAGEBLIT=m
840# CONFIG_FB_FOREIGN_ENDIAN is not set
841CONFIG_FB_SYS_FOPS=m
842CONFIG_FB_DEFERRED_IO=y
843# CONFIG_FB_SVGALIB is not set
844# CONFIG_FB_MACMODES is not set
845# CONFIG_FB_BACKLIGHT is not set
846# CONFIG_FB_MODE_HELPERS is not set
847# CONFIG_FB_TILEBLITTING is not set
848
849#
850# Frame buffer hardware drivers
851#
852# CONFIG_FB_S1D13XXX is not set
853CONFIG_FB_SH_MOBILE_LCDC=m
854CONFIG_FB_SM501=y
855# CONFIG_FB_VIRTUAL is not set
856# CONFIG_FB_METRONOME is not set
857# CONFIG_FB_MB862XX is not set
448# CONFIG_BACKLIGHT_LCD_SUPPORT is not set 858# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
449 859
450# 860#
451# Display device support 861# Display device support
452# 862#
453# CONFIG_DISPLAY_SUPPORT is not set 863# CONFIG_DISPLAY_SUPPORT is not set
864
865#
866# Console display driver support
867#
868CONFIG_DUMMY_CONSOLE=y
869CONFIG_FRAMEBUFFER_CONSOLE=y
870# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
871# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
872# CONFIG_FONTS is not set
873CONFIG_FONT_8x8=y
874CONFIG_FONT_8x16=y
875CONFIG_LOGO=y
876# CONFIG_LOGO_LINUX_MONO is not set
877# CONFIG_LOGO_LINUX_VGA16 is not set
878CONFIG_LOGO_LINUX_CLUT224=y
879# CONFIG_LOGO_SUPERH_MONO is not set
880# CONFIG_LOGO_SUPERH_VGA16 is not set
881# CONFIG_LOGO_SUPERH_CLUT224 is not set
454# CONFIG_SOUND is not set 882# CONFIG_SOUND is not set
455# CONFIG_USB_SUPPORT is not set 883CONFIG_HID_SUPPORT=y
884CONFIG_HID=y
885# CONFIG_HID_DEBUG is not set
886# CONFIG_HIDRAW is not set
887
888#
889# USB Input Devices
890#
891CONFIG_USB_HID=y
892# CONFIG_HID_PID is not set
893# CONFIG_USB_HIDDEV is not set
894
895#
896# Special HID drivers
897#
898CONFIG_HID_COMPAT=y
899CONFIG_HID_A4TECH=y
900CONFIG_HID_APPLE=y
901CONFIG_HID_BELKIN=y
902CONFIG_HID_CHERRY=y
903CONFIG_HID_CHICONY=y
904CONFIG_HID_CYPRESS=y
905CONFIG_HID_EZKEY=y
906CONFIG_HID_GYRATION=y
907CONFIG_HID_LOGITECH=y
908# CONFIG_LOGITECH_FF is not set
909# CONFIG_LOGIRUMBLEPAD2_FF is not set
910CONFIG_HID_MICROSOFT=y
911CONFIG_HID_MONTEREY=y
912# CONFIG_HID_NTRIG is not set
913CONFIG_HID_PANTHERLORD=y
914# CONFIG_PANTHERLORD_FF is not set
915CONFIG_HID_PETALYNX=y
916CONFIG_HID_SAMSUNG=y
917CONFIG_HID_SONY=y
918CONFIG_HID_SUNPLUS=y
919# CONFIG_GREENASIA_FF is not set
920# CONFIG_HID_TOPSEED is not set
921CONFIG_THRUSTMASTER_FF=m
922CONFIG_ZEROPLUS_FF=m
923CONFIG_USB_SUPPORT=y
924CONFIG_USB_ARCH_HAS_HCD=y
925# CONFIG_USB_ARCH_HAS_OHCI is not set
926# CONFIG_USB_ARCH_HAS_EHCI is not set
927CONFIG_USB=y
928# CONFIG_USB_DEBUG is not set
929CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
930
931#
932# Miscellaneous USB options
933#
934CONFIG_USB_DEVICEFS=y
935CONFIG_USB_DEVICE_CLASS=y
936# CONFIG_USB_DYNAMIC_MINORS is not set
937# CONFIG_USB_OTG is not set
938# CONFIG_USB_OTG_WHITELIST is not set
939# CONFIG_USB_OTG_BLACKLIST_HUB is not set
940CONFIG_USB_MON=y
941# CONFIG_USB_WUSB is not set
942# CONFIG_USB_WUSB_CBAF is not set
943
944#
945# USB Host Controller Drivers
946#
947# CONFIG_USB_C67X00_HCD is not set
948# CONFIG_USB_OXU210HP_HCD is not set
949# CONFIG_USB_ISP116X_HCD is not set
950# CONFIG_USB_SL811_HCD is not set
951# CONFIG_USB_R8A66597_HCD is not set
952# CONFIG_USB_HWA_HCD is not set
953
954#
955# USB Device Class drivers
956#
957# CONFIG_USB_ACM is not set
958# CONFIG_USB_PRINTER is not set
959# CONFIG_USB_WDM is not set
960# CONFIG_USB_TMC is not set
961
962#
963# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
964#
965
966#
967# see USB_STORAGE Help for more information
968#
969CONFIG_USB_STORAGE=y
970# CONFIG_USB_STORAGE_DEBUG is not set
971# CONFIG_USB_STORAGE_DATAFAB is not set
972# CONFIG_USB_STORAGE_FREECOM is not set
973# CONFIG_USB_STORAGE_ISD200 is not set
974# CONFIG_USB_STORAGE_USBAT is not set
975# CONFIG_USB_STORAGE_SDDR09 is not set
976# CONFIG_USB_STORAGE_SDDR55 is not set
977# CONFIG_USB_STORAGE_JUMPSHOT is not set
978# CONFIG_USB_STORAGE_ALAUDA is not set
979# CONFIG_USB_STORAGE_ONETOUCH is not set
980# CONFIG_USB_STORAGE_KARMA is not set
981# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
982# CONFIG_USB_LIBUSUAL is not set
983
984#
985# USB Imaging devices
986#
987# CONFIG_USB_MDC800 is not set
988# CONFIG_USB_MICROTEK is not set
989
990#
991# USB port drivers
992#
993# CONFIG_USB_SERIAL is not set
994
995#
996# USB Miscellaneous drivers
997#
998# CONFIG_USB_EMI62 is not set
999# CONFIG_USB_EMI26 is not set
1000# CONFIG_USB_ADUTUX is not set
1001# CONFIG_USB_SEVSEG is not set
1002# CONFIG_USB_RIO500 is not set
1003# CONFIG_USB_LEGOTOWER is not set
1004# CONFIG_USB_LCD is not set
1005# CONFIG_USB_BERRY_CHARGE is not set
1006# CONFIG_USB_LED is not set
1007# CONFIG_USB_CYPRESS_CY7C63 is not set
1008# CONFIG_USB_CYTHERM is not set
1009# CONFIG_USB_PHIDGET is not set
1010# CONFIG_USB_IDMOUSE is not set
1011# CONFIG_USB_FTDI_ELAN is not set
1012# CONFIG_USB_APPLEDISPLAY is not set
1013# CONFIG_USB_LD is not set
1014# CONFIG_USB_TRANCEVIBRATOR is not set
1015# CONFIG_USB_IOWARRIOR is not set
1016# CONFIG_USB_TEST is not set
1017# CONFIG_USB_ISIGHTFW is not set
1018# CONFIG_USB_VST is not set
1019# CONFIG_USB_GADGET is not set
1020
1021#
1022# OTG and related infrastructure
1023#
1024# CONFIG_USB_GPIO_VBUS is not set
456# CONFIG_MMC is not set 1025# CONFIG_MMC is not set
457# CONFIG_MEMSTICK is not set 1026# CONFIG_MEMSTICK is not set
458# CONFIG_NEW_LEDS is not set 1027# CONFIG_NEW_LEDS is not set
@@ -465,38 +1034,171 @@ CONFIG_SSB_POSSIBLE=y
465# 1034#
466# File systems 1035# File systems
467# 1036#
468# CONFIG_DNOTIFY is not set 1037CONFIG_EXT2_FS=y
469# CONFIG_INOTIFY is not set 1038# CONFIG_EXT2_FS_XATTR is not set
1039# CONFIG_EXT2_FS_XIP is not set
1040CONFIG_EXT3_FS=y
1041CONFIG_EXT3_FS_XATTR=y
1042# CONFIG_EXT3_FS_POSIX_ACL is not set
1043# CONFIG_EXT3_FS_SECURITY is not set
1044# CONFIG_EXT4_FS is not set
1045CONFIG_JBD=y
1046CONFIG_FS_MBCACHE=y
1047# CONFIG_REISERFS_FS is not set
1048# CONFIG_JFS_FS is not set
1049CONFIG_FS_POSIX_ACL=y
1050CONFIG_FILE_LOCKING=y
1051# CONFIG_XFS_FS is not set
1052# CONFIG_OCFS2_FS is not set
1053# CONFIG_BTRFS_FS is not set
1054CONFIG_DNOTIFY=y
1055CONFIG_INOTIFY=y
1056CONFIG_INOTIFY_USER=y
470# CONFIG_QUOTA is not set 1057# CONFIG_QUOTA is not set
471# CONFIG_AUTOFS_FS is not set 1058# CONFIG_AUTOFS_FS is not set
472# CONFIG_AUTOFS4_FS is not set 1059# CONFIG_AUTOFS4_FS is not set
473# CONFIG_FUSE_FS is not set 1060# CONFIG_FUSE_FS is not set
474 1061
475# 1062#
1063# CD-ROM/DVD Filesystems
1064#
1065# CONFIG_ISO9660_FS is not set
1066# CONFIG_UDF_FS is not set
1067
1068#
1069# DOS/FAT/NT Filesystems
1070#
1071CONFIG_FAT_FS=y
1072CONFIG_MSDOS_FS=y
1073CONFIG_VFAT_FS=y
1074CONFIG_FAT_DEFAULT_CODEPAGE=437
1075CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
1076CONFIG_NTFS_FS=y
1077# CONFIG_NTFS_DEBUG is not set
1078CONFIG_NTFS_RW=y
1079
1080#
476# Pseudo filesystems 1081# Pseudo filesystems
477# 1082#
478# CONFIG_PROC_FS is not set 1083CONFIG_PROC_FS=y
479# CONFIG_SYSFS is not set 1084CONFIG_PROC_KCORE=y
480# CONFIG_TMPFS is not set 1085CONFIG_PROC_SYSCTL=y
1086CONFIG_PROC_PAGE_MONITOR=y
1087CONFIG_SYSFS=y
1088CONFIG_TMPFS=y
1089# CONFIG_TMPFS_POSIX_ACL is not set
481# CONFIG_HUGETLBFS is not set 1090# CONFIG_HUGETLBFS is not set
482# CONFIG_HUGETLB_PAGE is not set 1091# CONFIG_HUGETLB_PAGE is not set
483# CONFIG_MISC_FILESYSTEMS is not set 1092# CONFIG_CONFIGFS_FS is not set
484# CONFIG_NLS is not set 1093CONFIG_MISC_FILESYSTEMS=y
1094# CONFIG_ADFS_FS is not set
1095# CONFIG_AFFS_FS is not set
1096# CONFIG_HFS_FS is not set
1097# CONFIG_HFSPLUS_FS is not set
1098# CONFIG_BEFS_FS is not set
1099# CONFIG_BFS_FS is not set
1100# CONFIG_EFS_FS is not set
1101# CONFIG_JFFS2_FS is not set
1102# CONFIG_CRAMFS is not set
1103# CONFIG_SQUASHFS is not set
1104# CONFIG_VXFS_FS is not set
1105CONFIG_MINIX_FS=y
1106# CONFIG_OMFS_FS is not set
1107# CONFIG_HPFS_FS is not set
1108# CONFIG_QNX4FS_FS is not set
1109# CONFIG_ROMFS_FS is not set
1110# CONFIG_SYSV_FS is not set
1111# CONFIG_UFS_FS is not set
1112CONFIG_NETWORK_FILESYSTEMS=y
1113CONFIG_NFS_FS=y
1114CONFIG_NFS_V3=y
1115# CONFIG_NFS_V3_ACL is not set
1116CONFIG_NFS_V4=y
1117CONFIG_ROOT_NFS=y
1118CONFIG_NFSD=y
1119CONFIG_NFSD_V3=y
1120# CONFIG_NFSD_V3_ACL is not set
1121CONFIG_NFSD_V4=y
1122CONFIG_LOCKD=y
1123CONFIG_LOCKD_V4=y
1124CONFIG_EXPORTFS=y
1125CONFIG_NFS_COMMON=y
1126CONFIG_SUNRPC=y
1127CONFIG_SUNRPC_GSS=y
1128# CONFIG_SUNRPC_REGISTER_V4 is not set
1129CONFIG_RPCSEC_GSS_KRB5=y
1130# CONFIG_RPCSEC_GSS_SPKM3 is not set
1131# CONFIG_SMB_FS is not set
1132# CONFIG_CIFS is not set
1133# CONFIG_NCP_FS is not set
1134# CONFIG_CODA_FS is not set
1135# CONFIG_AFS_FS is not set
1136
1137#
1138# Partition Types
1139#
1140# CONFIG_PARTITION_ADVANCED is not set
1141CONFIG_MSDOS_PARTITION=y
1142CONFIG_NLS=y
1143CONFIG_NLS_DEFAULT="iso8859-1"
1144CONFIG_NLS_CODEPAGE_437=y
1145# CONFIG_NLS_CODEPAGE_737 is not set
1146# CONFIG_NLS_CODEPAGE_775 is not set
1147# CONFIG_NLS_CODEPAGE_850 is not set
1148# CONFIG_NLS_CODEPAGE_852 is not set
1149# CONFIG_NLS_CODEPAGE_855 is not set
1150# CONFIG_NLS_CODEPAGE_857 is not set
1151# CONFIG_NLS_CODEPAGE_860 is not set
1152# CONFIG_NLS_CODEPAGE_861 is not set
1153# CONFIG_NLS_CODEPAGE_862 is not set
1154# CONFIG_NLS_CODEPAGE_863 is not set
1155# CONFIG_NLS_CODEPAGE_864 is not set
1156# CONFIG_NLS_CODEPAGE_865 is not set
1157# CONFIG_NLS_CODEPAGE_866 is not set
1158# CONFIG_NLS_CODEPAGE_869 is not set
1159# CONFIG_NLS_CODEPAGE_936 is not set
1160# CONFIG_NLS_CODEPAGE_950 is not set
1161CONFIG_NLS_CODEPAGE_932=y
1162# CONFIG_NLS_CODEPAGE_949 is not set
1163# CONFIG_NLS_CODEPAGE_874 is not set
1164# CONFIG_NLS_ISO8859_8 is not set
1165# CONFIG_NLS_CODEPAGE_1250 is not set
1166# CONFIG_NLS_CODEPAGE_1251 is not set
1167# CONFIG_NLS_ASCII is not set
1168CONFIG_NLS_ISO8859_1=y
1169# CONFIG_NLS_ISO8859_2 is not set
1170# CONFIG_NLS_ISO8859_3 is not set
1171# CONFIG_NLS_ISO8859_4 is not set
1172# CONFIG_NLS_ISO8859_5 is not set
1173# CONFIG_NLS_ISO8859_6 is not set
1174# CONFIG_NLS_ISO8859_7 is not set
1175# CONFIG_NLS_ISO8859_9 is not set
1176# CONFIG_NLS_ISO8859_13 is not set
1177# CONFIG_NLS_ISO8859_14 is not set
1178# CONFIG_NLS_ISO8859_15 is not set
1179# CONFIG_NLS_KOI8_R is not set
1180# CONFIG_NLS_KOI8_U is not set
1181# CONFIG_NLS_UTF8 is not set
1182# CONFIG_DLM is not set
485 1183
486# 1184#
487# Kernel hacking 1185# Kernel hacking
488# 1186#
489CONFIG_TRACE_IRQFLAGS_SUPPORT=y 1187CONFIG_TRACE_IRQFLAGS_SUPPORT=y
1188# CONFIG_PRINTK_TIME is not set
490# CONFIG_ENABLE_WARN_DEPRECATED is not set 1189# CONFIG_ENABLE_WARN_DEPRECATED is not set
491# CONFIG_ENABLE_MUST_CHECK is not set 1190# CONFIG_ENABLE_MUST_CHECK is not set
492CONFIG_FRAME_WARN=1024 1191CONFIG_FRAME_WARN=1024
493# CONFIG_MAGIC_SYSRQ is not set 1192# CONFIG_MAGIC_SYSRQ is not set
494# CONFIG_UNUSED_SYMBOLS is not set 1193# CONFIG_UNUSED_SYMBOLS is not set
1194# CONFIG_DEBUG_FS is not set
495# CONFIG_HEADERS_CHECK is not set 1195# CONFIG_HEADERS_CHECK is not set
496# CONFIG_DEBUG_KERNEL is not set 1196# CONFIG_DEBUG_KERNEL is not set
1197# CONFIG_DEBUG_BUGVERBOSE is not set
497# CONFIG_DEBUG_MEMORY_INIT is not set 1198# CONFIG_DEBUG_MEMORY_INIT is not set
498# CONFIG_RCU_CPU_STALL_DETECTOR is not set 1199# CONFIG_RCU_CPU_STALL_DETECTOR is not set
499# CONFIG_LATENCYTOP is not set 1200# CONFIG_LATENCYTOP is not set
1201CONFIG_SYSCTL_SYSCALL_CHECK=y
500CONFIG_HAVE_FUNCTION_TRACER=y 1202CONFIG_HAVE_FUNCTION_TRACER=y
501CONFIG_HAVE_DYNAMIC_FTRACE=y 1203CONFIG_HAVE_DYNAMIC_FTRACE=y
502CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y 1204CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
@@ -504,6 +1206,7 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
504# 1206#
505# Tracers 1207# Tracers
506# 1208#
1209# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
507# CONFIG_SAMPLES is not set 1210# CONFIG_SAMPLES is not set
508CONFIG_HAVE_ARCH_KGDB=y 1211CONFIG_HAVE_ARCH_KGDB=y
509# CONFIG_SH_STANDARD_BIOS is not set 1212# CONFIG_SH_STANDARD_BIOS is not set
@@ -514,21 +1217,116 @@ CONFIG_HAVE_ARCH_KGDB=y
514# Security options 1217# Security options
515# 1218#
516# CONFIG_KEYS is not set 1219# CONFIG_KEYS is not set
1220# CONFIG_SECURITY is not set
517# CONFIG_SECURITYFS is not set 1221# CONFIG_SECURITYFS is not set
518# CONFIG_SECURITY_FILE_CAPABILITIES is not set 1222# CONFIG_SECURITY_FILE_CAPABILITIES is not set
519# CONFIG_CRYPTO is not set 1223CONFIG_CRYPTO=y
1224
1225#
1226# Crypto core or helper
1227#
1228# CONFIG_CRYPTO_FIPS is not set
1229CONFIG_CRYPTO_ALGAPI=y
1230CONFIG_CRYPTO_ALGAPI2=y
1231CONFIG_CRYPTO_AEAD2=y
1232CONFIG_CRYPTO_BLKCIPHER=y
1233CONFIG_CRYPTO_BLKCIPHER2=y
1234CONFIG_CRYPTO_HASH=y
1235CONFIG_CRYPTO_HASH2=y
1236CONFIG_CRYPTO_RNG2=y
1237CONFIG_CRYPTO_MANAGER=y
1238CONFIG_CRYPTO_MANAGER2=y
1239# CONFIG_CRYPTO_GF128MUL is not set
1240# CONFIG_CRYPTO_NULL is not set
1241# CONFIG_CRYPTO_CRYPTD is not set
1242# CONFIG_CRYPTO_AUTHENC is not set
1243# CONFIG_CRYPTO_TEST is not set
1244
1245#
1246# Authenticated Encryption with Associated Data
1247#
1248# CONFIG_CRYPTO_CCM is not set
1249# CONFIG_CRYPTO_GCM is not set
1250# CONFIG_CRYPTO_SEQIV is not set
1251
1252#
1253# Block modes
1254#
1255CONFIG_CRYPTO_CBC=y
1256# CONFIG_CRYPTO_CTR is not set
1257# CONFIG_CRYPTO_CTS is not set
1258# CONFIG_CRYPTO_ECB is not set
1259# CONFIG_CRYPTO_LRW is not set
1260# CONFIG_CRYPTO_PCBC is not set
1261# CONFIG_CRYPTO_XTS is not set
1262
1263#
1264# Hash modes
1265#
1266CONFIG_CRYPTO_HMAC=y
1267# CONFIG_CRYPTO_XCBC is not set
1268
1269#
1270# Digest
1271#
1272# CONFIG_CRYPTO_CRC32C is not set
1273# CONFIG_CRYPTO_MD4 is not set
1274CONFIG_CRYPTO_MD5=y
1275# CONFIG_CRYPTO_MICHAEL_MIC is not set
1276# CONFIG_CRYPTO_RMD128 is not set
1277# CONFIG_CRYPTO_RMD160 is not set
1278# CONFIG_CRYPTO_RMD256 is not set
1279# CONFIG_CRYPTO_RMD320 is not set
1280# CONFIG_CRYPTO_SHA1 is not set
1281# CONFIG_CRYPTO_SHA256 is not set
1282# CONFIG_CRYPTO_SHA512 is not set
1283# CONFIG_CRYPTO_TGR192 is not set
1284# CONFIG_CRYPTO_WP512 is not set
1285
1286#
1287# Ciphers
1288#
1289# CONFIG_CRYPTO_AES is not set
1290# CONFIG_CRYPTO_ANUBIS is not set
1291# CONFIG_CRYPTO_ARC4 is not set
1292# CONFIG_CRYPTO_BLOWFISH is not set
1293# CONFIG_CRYPTO_CAMELLIA is not set
1294# CONFIG_CRYPTO_CAST5 is not set
1295# CONFIG_CRYPTO_CAST6 is not set
1296CONFIG_CRYPTO_DES=y
1297# CONFIG_CRYPTO_FCRYPT is not set
1298# CONFIG_CRYPTO_KHAZAD is not set
1299# CONFIG_CRYPTO_SALSA20 is not set
1300# CONFIG_CRYPTO_SEED is not set
1301# CONFIG_CRYPTO_SERPENT is not set
1302# CONFIG_CRYPTO_TEA is not set
1303# CONFIG_CRYPTO_TWOFISH is not set
1304
1305#
1306# Compression
1307#
1308# CONFIG_CRYPTO_DEFLATE is not set
1309# CONFIG_CRYPTO_LZO is not set
1310
1311#
1312# Random Number Generation
1313#
1314# CONFIG_CRYPTO_ANSI_CPRNG is not set
1315# CONFIG_CRYPTO_HW is not set
520 1316
521# 1317#
522# Library routines 1318# Library routines
523# 1319#
1320CONFIG_BITREVERSE=y
524CONFIG_GENERIC_FIND_LAST_BIT=y 1321CONFIG_GENERIC_FIND_LAST_BIT=y
525# CONFIG_CRC_CCITT is not set 1322# CONFIG_CRC_CCITT is not set
526# CONFIG_CRC16 is not set 1323# CONFIG_CRC16 is not set
527# CONFIG_CRC_T10DIF is not set 1324# CONFIG_CRC_T10DIF is not set
528# CONFIG_CRC_ITU_T is not set 1325# CONFIG_CRC_ITU_T is not set
529# CONFIG_CRC32 is not set 1326CONFIG_CRC32=y
530# CONFIG_CRC7 is not set 1327# CONFIG_CRC7 is not set
531# CONFIG_LIBCRC32C is not set 1328# CONFIG_LIBCRC32C is not set
1329CONFIG_PLIST=y
532CONFIG_HAS_IOMEM=y 1330CONFIG_HAS_IOMEM=y
533CONFIG_HAS_IOPORT=y 1331CONFIG_HAS_IOPORT=y
534CONFIG_HAS_DMA=y 1332CONFIG_HAS_DMA=y