diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-04-12 11:26:57 -0400 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2007-04-27 07:44:15 -0400 |
commit | 9ca20a8366462c553c27216161c735937f9de108 (patch) | |
tree | da29b02189dca4c13caa784a3b941b7948eee75b /arch/avr32 | |
parent | 2c1a2a3441a754a9b5a8e7184071154f8a9bd61b (diff) |
[AVR32] Board code for ATNGW100
Add board code and defconfig for the ATNGW100 Network Gateway kit.
For more information about this board, see
http://www.atmel.com/dyn/products/tools_card.asp?tool_id=4102
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/Kconfig | 3 | ||||
-rw-r--r-- | arch/avr32/Makefile | 1 | ||||
-rw-r--r-- | arch/avr32/boards/atngw100/Makefile | 1 | ||||
-rw-r--r-- | arch/avr32/boards/atngw100/flash.c | 95 | ||||
-rw-r--r-- | arch/avr32/boards/atngw100/setup.c | 124 | ||||
-rw-r--r-- | arch/avr32/configs/atngw100_defconfig | 1085 |
6 files changed, 1309 insertions, 0 deletions
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index 7a1eb445c17f..50fee549e1cd 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
@@ -111,6 +111,9 @@ choice | |||
111 | config BOARD_ATSTK1000 | 111 | config BOARD_ATSTK1000 |
112 | bool "ATSTK1000 evaluation board" | 112 | bool "ATSTK1000 evaluation board" |
113 | select BOARD_ATSTK1002 if CPU_AT32AP7000 | 113 | select BOARD_ATSTK1002 if CPU_AT32AP7000 |
114 | |||
115 | config BOARD_ATNGW100 | ||
116 | bool "ATNGW100 Network Gateway" | ||
114 | endchoice | 117 | endchoice |
115 | 118 | ||
116 | choice | 119 | choice |
diff --git a/arch/avr32/Makefile b/arch/avr32/Makefile index 7b842e98efed..6115fc1f0cfa 100644 --- a/arch/avr32/Makefile +++ b/arch/avr32/Makefile | |||
@@ -27,6 +27,7 @@ head-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/head.o | |||
27 | head-y += arch/avr32/kernel/head.o | 27 | head-y += arch/avr32/kernel/head.o |
28 | core-$(CONFIG_PLATFORM_AT32AP) += arch/avr32/mach-at32ap/ | 28 | core-$(CONFIG_PLATFORM_AT32AP) += arch/avr32/mach-at32ap/ |
29 | core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/ | 29 | core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/ |
30 | core-$(CONFIG_BOARD_ATNGW100) += arch/avr32/boards/atngw100/ | ||
30 | core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/ | 31 | core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/ |
31 | core-y += arch/avr32/kernel/ | 32 | core-y += arch/avr32/kernel/ |
32 | core-y += arch/avr32/mm/ | 33 | core-y += arch/avr32/mm/ |
diff --git a/arch/avr32/boards/atngw100/Makefile b/arch/avr32/boards/atngw100/Makefile new file mode 100644 index 000000000000..c740aa116755 --- /dev/null +++ b/arch/avr32/boards/atngw100/Makefile | |||
@@ -0,0 +1 @@ | |||
obj-y += setup.o flash.o | |||
diff --git a/arch/avr32/boards/atngw100/flash.c b/arch/avr32/boards/atngw100/flash.c new file mode 100644 index 000000000000..f9b32a8eab9b --- /dev/null +++ b/arch/avr32/boards/atngw100/flash.c | |||
@@ -0,0 +1,95 @@ | |||
1 | /* | ||
2 | * ATNGW100 board-specific flash initialization | ||
3 | * | ||
4 | * Copyright (C) 2005-2006 Atmel Corporation | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/init.h> | ||
11 | #include <linux/platform_device.h> | ||
12 | #include <linux/mtd/mtd.h> | ||
13 | #include <linux/mtd/partitions.h> | ||
14 | #include <linux/mtd/physmap.h> | ||
15 | |||
16 | #include <asm/arch/smc.h> | ||
17 | |||
18 | static struct smc_config flash_config __initdata = { | ||
19 | .ncs_read_setup = 0, | ||
20 | .nrd_setup = 40, | ||
21 | .ncs_write_setup = 0, | ||
22 | .nwe_setup = 10, | ||
23 | |||
24 | .ncs_read_pulse = 80, | ||
25 | .nrd_pulse = 40, | ||
26 | .ncs_write_pulse = 65, | ||
27 | .nwe_pulse = 55, | ||
28 | |||
29 | .read_cycle = 120, | ||
30 | .write_cycle = 120, | ||
31 | |||
32 | .bus_width = 2, | ||
33 | .nrd_controlled = 1, | ||
34 | .nwe_controlled = 1, | ||
35 | .byte_write = 1, | ||
36 | }; | ||
37 | |||
38 | static struct mtd_partition flash_parts[] = { | ||
39 | { | ||
40 | .name = "u-boot", | ||
41 | .offset = 0x00000000, | ||
42 | .size = 0x00020000, /* 128 KiB */ | ||
43 | .mask_flags = MTD_WRITEABLE, | ||
44 | }, | ||
45 | { | ||
46 | .name = "root", | ||
47 | .offset = 0x00020000, | ||
48 | .size = 0x007d0000, | ||
49 | }, | ||
50 | { | ||
51 | .name = "env", | ||
52 | .offset = 0x007f0000, | ||
53 | .size = 0x00010000, | ||
54 | .mask_flags = MTD_WRITEABLE, | ||
55 | }, | ||
56 | }; | ||
57 | |||
58 | static struct physmap_flash_data flash_data = { | ||
59 | .width = 2, | ||
60 | .nr_parts = ARRAY_SIZE(flash_parts), | ||
61 | .parts = flash_parts, | ||
62 | }; | ||
63 | |||
64 | static struct resource flash_resource = { | ||
65 | .start = 0x00000000, | ||
66 | .end = 0x007fffff, | ||
67 | .flags = IORESOURCE_MEM, | ||
68 | }; | ||
69 | |||
70 | static struct platform_device flash_device = { | ||
71 | .name = "physmap-flash", | ||
72 | .id = 0, | ||
73 | .resource = &flash_resource, | ||
74 | .num_resources = 1, | ||
75 | .dev = { | ||
76 | .platform_data = &flash_data, | ||
77 | }, | ||
78 | }; | ||
79 | |||
80 | /* This needs to be called after the SMC has been initialized */ | ||
81 | static int __init atngw100_flash_init(void) | ||
82 | { | ||
83 | int ret; | ||
84 | |||
85 | ret = smc_set_configuration(0, &flash_config); | ||
86 | if (ret < 0) { | ||
87 | printk(KERN_ERR "atngw100: failed to set NOR flash timing\n"); | ||
88 | return ret; | ||
89 | } | ||
90 | |||
91 | platform_device_register(&flash_device); | ||
92 | |||
93 | return 0; | ||
94 | } | ||
95 | device_initcall(atngw100_flash_init); | ||
diff --git a/arch/avr32/boards/atngw100/setup.c b/arch/avr32/boards/atngw100/setup.c new file mode 100644 index 000000000000..9bc37d4f6687 --- /dev/null +++ b/arch/avr32/boards/atngw100/setup.c | |||
@@ -0,0 +1,124 @@ | |||
1 | /* | ||
2 | * Board-specific setup code for the ATNGW100 Network Gateway | ||
3 | * | ||
4 | * Copyright (C) 2005-2006 Atmel Corporation | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/clk.h> | ||
11 | #include <linux/etherdevice.h> | ||
12 | #include <linux/init.h> | ||
13 | #include <linux/linkage.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <linux/types.h> | ||
16 | #include <linux/spi/spi.h> | ||
17 | |||
18 | #include <asm/io.h> | ||
19 | #include <asm/setup.h> | ||
20 | |||
21 | #include <asm/arch/at32ap7000.h> | ||
22 | #include <asm/arch/board.h> | ||
23 | #include <asm/arch/init.h> | ||
24 | |||
25 | /* Initialized by bootloader-specific startup code. */ | ||
26 | struct tag *bootloader_tags __initdata; | ||
27 | |||
28 | struct eth_addr { | ||
29 | u8 addr[6]; | ||
30 | }; | ||
31 | static struct eth_addr __initdata hw_addr[2]; | ||
32 | static struct eth_platform_data __initdata eth_data[2]; | ||
33 | |||
34 | static struct spi_board_info spi0_board_info[] __initdata = { | ||
35 | { | ||
36 | .modalias = "mtd_dataflash", | ||
37 | .max_speed_hz = 10000000, | ||
38 | .chip_select = 0, | ||
39 | }, | ||
40 | }; | ||
41 | |||
42 | /* | ||
43 | * The next two functions should go away as the boot loader is | ||
44 | * supposed to initialize the macb address registers with a valid | ||
45 | * ethernet address. But we need to keep it around for a while until | ||
46 | * we can be reasonably sure the boot loader does this. | ||
47 | * | ||
48 | * The phy_id is ignored as the driver will probe for it. | ||
49 | */ | ||
50 | static int __init parse_tag_ethernet(struct tag *tag) | ||
51 | { | ||
52 | int i; | ||
53 | |||
54 | i = tag->u.ethernet.mac_index; | ||
55 | if (i < ARRAY_SIZE(hw_addr)) | ||
56 | memcpy(hw_addr[i].addr, tag->u.ethernet.hw_address, | ||
57 | sizeof(hw_addr[i].addr)); | ||
58 | |||
59 | return 0; | ||
60 | } | ||
61 | __tagtable(ATAG_ETHERNET, parse_tag_ethernet); | ||
62 | |||
63 | static void __init set_hw_addr(struct platform_device *pdev) | ||
64 | { | ||
65 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
66 | const u8 *addr; | ||
67 | void __iomem *regs; | ||
68 | struct clk *pclk; | ||
69 | |||
70 | if (!res) | ||
71 | return; | ||
72 | if (pdev->id >= ARRAY_SIZE(hw_addr)) | ||
73 | return; | ||
74 | |||
75 | addr = hw_addr[pdev->id].addr; | ||
76 | if (!is_valid_ether_addr(addr)) | ||
77 | return; | ||
78 | |||
79 | /* | ||
80 | * Since this is board-specific code, we'll cheat and use the | ||
81 | * physical address directly as we happen to know that it's | ||
82 | * the same as the virtual address. | ||
83 | */ | ||
84 | regs = (void __iomem __force *)res->start; | ||
85 | pclk = clk_get(&pdev->dev, "pclk"); | ||
86 | if (!pclk) | ||
87 | return; | ||
88 | |||
89 | clk_enable(pclk); | ||
90 | __raw_writel((addr[3] << 24) | (addr[2] << 16) | ||
91 | | (addr[1] << 8) | addr[0], regs + 0x98); | ||
92 | __raw_writel((addr[5] << 8) | addr[4], regs + 0x9c); | ||
93 | clk_disable(pclk); | ||
94 | clk_put(pclk); | ||
95 | } | ||
96 | |||
97 | struct platform_device *at32_usart_map[1]; | ||
98 | unsigned int at32_nr_usarts = 1; | ||
99 | |||
100 | void __init setup_board(void) | ||
101 | { | ||
102 | at32_map_usart(1, 0); /* USART 1: /dev/ttyS0, DB9 */ | ||
103 | at32_setup_serial_console(0); | ||
104 | } | ||
105 | |||
106 | static int __init atngw100_init(void) | ||
107 | { | ||
108 | /* | ||
109 | * ATNGW100 uses 16-bit SDRAM interface, so we don't need to | ||
110 | * reserve any pins for it. | ||
111 | */ | ||
112 | |||
113 | at32_add_system_devices(); | ||
114 | |||
115 | at32_add_device_usart(0); | ||
116 | |||
117 | set_hw_addr(at32_add_device_eth(0, ð_data[0])); | ||
118 | set_hw_addr(at32_add_device_eth(1, ð_data[1])); | ||
119 | |||
120 | at32_add_device_spi(0, spi0_board_info, ARRAY_SIZE(spi0_board_info)); | ||
121 | |||
122 | return 0; | ||
123 | } | ||
124 | postcore_initcall(atngw100_init); | ||
diff --git a/arch/avr32/configs/atngw100_defconfig b/arch/avr32/configs/atngw100_defconfig new file mode 100644 index 000000000000..c254ffcfa458 --- /dev/null +++ b/arch/avr32/configs/atngw100_defconfig | |||
@@ -0,0 +1,1085 @@ | |||
1 | # | ||
2 | # Automatically generated make config: don't edit | ||
3 | # Linux kernel version: 2.6.21-rc6 | ||
4 | # Thu Apr 12 16:35:07 2007 | ||
5 | # | ||
6 | CONFIG_AVR32=y | ||
7 | CONFIG_GENERIC_GPIO=y | ||
8 | CONFIG_GENERIC_HARDIRQS=y | ||
9 | CONFIG_HARDIRQS_SW_RESEND=y | ||
10 | CONFIG_GENERIC_IRQ_PROBE=y | ||
11 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
12 | CONFIG_GENERIC_TIME=y | ||
13 | # CONFIG_ARCH_HAS_ILOG2_U32 is not set | ||
14 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | ||
15 | CONFIG_GENERIC_HWEIGHT=y | ||
16 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
17 | CONFIG_GENERIC_BUG=y | ||
18 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | ||
19 | |||
20 | # | ||
21 | # Code maturity level options | ||
22 | # | ||
23 | CONFIG_EXPERIMENTAL=y | ||
24 | CONFIG_BROKEN_ON_SMP=y | ||
25 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
26 | |||
27 | # | ||
28 | # General setup | ||
29 | # | ||
30 | CONFIG_LOCALVERSION="" | ||
31 | # CONFIG_LOCALVERSION_AUTO is not set | ||
32 | CONFIG_SWAP=y | ||
33 | CONFIG_SYSVIPC=y | ||
34 | # CONFIG_IPC_NS is not set | ||
35 | CONFIG_SYSVIPC_SYSCTL=y | ||
36 | CONFIG_POSIX_MQUEUE=y | ||
37 | CONFIG_BSD_PROCESS_ACCT=y | ||
38 | CONFIG_BSD_PROCESS_ACCT_V3=y | ||
39 | # CONFIG_TASKSTATS is not set | ||
40 | # CONFIG_UTS_NS is not set | ||
41 | # CONFIG_AUDIT is not set | ||
42 | # CONFIG_IKCONFIG is not set | ||
43 | CONFIG_SYSFS_DEPRECATED=y | ||
44 | # CONFIG_RELAY is not set | ||
45 | CONFIG_BLK_DEV_INITRD=y | ||
46 | CONFIG_INITRAMFS_SOURCE="" | ||
47 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
48 | CONFIG_SYSCTL=y | ||
49 | CONFIG_EMBEDDED=y | ||
50 | # CONFIG_SYSCTL_SYSCALL is not set | ||
51 | CONFIG_KALLSYMS=y | ||
52 | # CONFIG_KALLSYMS_ALL is not set | ||
53 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
54 | CONFIG_HOTPLUG=y | ||
55 | CONFIG_PRINTK=y | ||
56 | CONFIG_BUG=y | ||
57 | CONFIG_ELF_CORE=y | ||
58 | # CONFIG_BASE_FULL is not set | ||
59 | CONFIG_FUTEX=y | ||
60 | CONFIG_EPOLL=y | ||
61 | CONFIG_SHMEM=y | ||
62 | CONFIG_SLAB=y | ||
63 | CONFIG_VM_EVENT_COUNTERS=y | ||
64 | CONFIG_RT_MUTEXES=y | ||
65 | # CONFIG_TINY_SHMEM is not set | ||
66 | CONFIG_BASE_SMALL=1 | ||
67 | # CONFIG_SLOB is not set | ||
68 | |||
69 | # | ||
70 | # Loadable module support | ||
71 | # | ||
72 | CONFIG_MODULES=y | ||
73 | CONFIG_MODULE_UNLOAD=y | ||
74 | CONFIG_MODULE_FORCE_UNLOAD=y | ||
75 | # CONFIG_MODVERSIONS is not set | ||
76 | # CONFIG_MODULE_SRCVERSION_ALL is not set | ||
77 | CONFIG_KMOD=y | ||
78 | |||
79 | # | ||
80 | # Block layer | ||
81 | # | ||
82 | CONFIG_BLOCK=y | ||
83 | # CONFIG_LBD is not set | ||
84 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
85 | # CONFIG_LSF is not set | ||
86 | |||
87 | # | ||
88 | # IO Schedulers | ||
89 | # | ||
90 | CONFIG_IOSCHED_NOOP=y | ||
91 | # CONFIG_IOSCHED_AS is not set | ||
92 | # CONFIG_IOSCHED_DEADLINE is not set | ||
93 | CONFIG_IOSCHED_CFQ=y | ||
94 | # CONFIG_DEFAULT_AS is not set | ||
95 | # CONFIG_DEFAULT_DEADLINE is not set | ||
96 | CONFIG_DEFAULT_CFQ=y | ||
97 | # CONFIG_DEFAULT_NOOP is not set | ||
98 | CONFIG_DEFAULT_IOSCHED="cfq" | ||
99 | |||
100 | # | ||
101 | # System Type and features | ||
102 | # | ||
103 | CONFIG_SUBARCH_AVR32B=y | ||
104 | CONFIG_MMU=y | ||
105 | CONFIG_PERFORMANCE_COUNTERS=y | ||
106 | CONFIG_PLATFORM_AT32AP=y | ||
107 | CONFIG_CPU_AT32AP7000=y | ||
108 | # CONFIG_BOARD_ATSTK1000 is not set | ||
109 | CONFIG_BOARD_ATNGW100=y | ||
110 | CONFIG_LOADER_U_BOOT=y | ||
111 | |||
112 | # | ||
113 | # Atmel AVR32 AP options | ||
114 | # | ||
115 | # CONFIG_AP7000_32_BIT_SMC is not set | ||
116 | CONFIG_AP7000_16_BIT_SMC=y | ||
117 | # CONFIG_AP7000_8_BIT_SMC is not set | ||
118 | CONFIG_LOAD_ADDRESS=0x10000000 | ||
119 | CONFIG_ENTRY_ADDRESS=0x90000000 | ||
120 | CONFIG_PHYS_OFFSET=0x10000000 | ||
121 | CONFIG_PREEMPT_NONE=y | ||
122 | # CONFIG_PREEMPT_VOLUNTARY is not set | ||
123 | # CONFIG_PREEMPT is not set | ||
124 | # CONFIG_HAVE_ARCH_BOOTMEM_NODE is not set | ||
125 | # CONFIG_ARCH_HAVE_MEMORY_PRESENT is not set | ||
126 | # CONFIG_NEED_NODE_MEMMAP_SIZE is not set | ||
127 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
128 | # CONFIG_ARCH_DISCONTIGMEM_ENABLE is not set | ||
129 | # CONFIG_ARCH_SPARSEMEM_ENABLE is not set | ||
130 | CONFIG_SELECT_MEMORY_MODEL=y | ||
131 | CONFIG_FLATMEM_MANUAL=y | ||
132 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
133 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
134 | CONFIG_FLATMEM=y | ||
135 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
136 | # CONFIG_SPARSEMEM_STATIC is not set | ||
137 | CONFIG_SPLIT_PTLOCK_CPUS=4 | ||
138 | # CONFIG_RESOURCES_64BIT is not set | ||
139 | CONFIG_ZONE_DMA_FLAG=0 | ||
140 | # CONFIG_OWNERSHIP_TRACE is not set | ||
141 | # CONFIG_HZ_100 is not set | ||
142 | CONFIG_HZ_250=y | ||
143 | # CONFIG_HZ_300 is not set | ||
144 | # CONFIG_HZ_1000 is not set | ||
145 | CONFIG_HZ=250 | ||
146 | CONFIG_CMDLINE="" | ||
147 | |||
148 | # | ||
149 | # Bus options | ||
150 | # | ||
151 | |||
152 | # | ||
153 | # PCCARD (PCMCIA/CardBus) support | ||
154 | # | ||
155 | # CONFIG_PCCARD is not set | ||
156 | |||
157 | # | ||
158 | # Executable file formats | ||
159 | # | ||
160 | CONFIG_BINFMT_ELF=y | ||
161 | # CONFIG_BINFMT_MISC is not set | ||
162 | |||
163 | # | ||
164 | # Networking | ||
165 | # | ||
166 | CONFIG_NET=y | ||
167 | |||
168 | # | ||
169 | # Networking options | ||
170 | # | ||
171 | # CONFIG_NETDEBUG is not set | ||
172 | CONFIG_PACKET=y | ||
173 | CONFIG_PACKET_MMAP=y | ||
174 | CONFIG_UNIX=y | ||
175 | CONFIG_XFRM=y | ||
176 | CONFIG_XFRM_USER=y | ||
177 | # CONFIG_XFRM_SUB_POLICY is not set | ||
178 | # CONFIG_XFRM_MIGRATE is not set | ||
179 | CONFIG_NET_KEY=y | ||
180 | # CONFIG_NET_KEY_MIGRATE is not set | ||
181 | CONFIG_INET=y | ||
182 | CONFIG_IP_MULTICAST=y | ||
183 | CONFIG_IP_ADVANCED_ROUTER=y | ||
184 | CONFIG_ASK_IP_FIB_HASH=y | ||
185 | # CONFIG_IP_FIB_TRIE is not set | ||
186 | CONFIG_IP_FIB_HASH=y | ||
187 | # CONFIG_IP_MULTIPLE_TABLES is not set | ||
188 | # CONFIG_IP_ROUTE_MULTIPATH is not set | ||
189 | # CONFIG_IP_ROUTE_VERBOSE is not set | ||
190 | CONFIG_IP_PNP=y | ||
191 | CONFIG_IP_PNP_DHCP=y | ||
192 | # CONFIG_IP_PNP_BOOTP is not set | ||
193 | # CONFIG_IP_PNP_RARP is not set | ||
194 | # CONFIG_NET_IPIP is not set | ||
195 | # CONFIG_NET_IPGRE is not set | ||
196 | CONFIG_IP_MROUTE=y | ||
197 | CONFIG_IP_PIMSM_V1=y | ||
198 | # CONFIG_IP_PIMSM_V2 is not set | ||
199 | # CONFIG_ARPD is not set | ||
200 | CONFIG_SYN_COOKIES=y | ||
201 | CONFIG_INET_AH=y | ||
202 | CONFIG_INET_ESP=y | ||
203 | CONFIG_INET_IPCOMP=y | ||
204 | CONFIG_INET_XFRM_TUNNEL=y | ||
205 | CONFIG_INET_TUNNEL=y | ||
206 | CONFIG_INET_XFRM_MODE_TRANSPORT=y | ||
207 | CONFIG_INET_XFRM_MODE_TUNNEL=y | ||
208 | CONFIG_INET_XFRM_MODE_BEET=y | ||
209 | CONFIG_INET_DIAG=y | ||
210 | CONFIG_INET_TCP_DIAG=y | ||
211 | # CONFIG_TCP_CONG_ADVANCED is not set | ||
212 | CONFIG_TCP_CONG_CUBIC=y | ||
213 | CONFIG_DEFAULT_TCP_CONG="cubic" | ||
214 | # CONFIG_TCP_MD5SIG is not set | ||
215 | |||
216 | # | ||
217 | # IP: Virtual Server Configuration | ||
218 | # | ||
219 | # CONFIG_IP_VS is not set | ||
220 | CONFIG_IPV6=y | ||
221 | # CONFIG_IPV6_PRIVACY is not set | ||
222 | # CONFIG_IPV6_ROUTER_PREF is not set | ||
223 | CONFIG_INET6_AH=y | ||
224 | CONFIG_INET6_ESP=y | ||
225 | CONFIG_INET6_IPCOMP=y | ||
226 | # CONFIG_IPV6_MIP6 is not set | ||
227 | CONFIG_INET6_XFRM_TUNNEL=y | ||
228 | CONFIG_INET6_TUNNEL=y | ||
229 | CONFIG_INET6_XFRM_MODE_TRANSPORT=y | ||
230 | CONFIG_INET6_XFRM_MODE_TUNNEL=y | ||
231 | CONFIG_INET6_XFRM_MODE_BEET=y | ||
232 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | ||
233 | CONFIG_IPV6_SIT=y | ||
234 | # CONFIG_IPV6_TUNNEL is not set | ||
235 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | ||
236 | # CONFIG_NETWORK_SECMARK is not set | ||
237 | CONFIG_NETFILTER=y | ||
238 | # CONFIG_NETFILTER_DEBUG is not set | ||
239 | |||
240 | # | ||
241 | # Core Netfilter Configuration | ||
242 | # | ||
243 | # CONFIG_NETFILTER_NETLINK is not set | ||
244 | CONFIG_NF_CONNTRACK_ENABLED=m | ||
245 | CONFIG_NF_CONNTRACK_SUPPORT=y | ||
246 | # CONFIG_IP_NF_CONNTRACK_SUPPORT is not set | ||
247 | CONFIG_NF_CONNTRACK=m | ||
248 | CONFIG_NF_CT_ACCT=y | ||
249 | CONFIG_NF_CONNTRACK_MARK=y | ||
250 | # CONFIG_NF_CONNTRACK_EVENTS is not set | ||
251 | CONFIG_NF_CT_PROTO_GRE=m | ||
252 | # CONFIG_NF_CT_PROTO_SCTP is not set | ||
253 | CONFIG_NF_CONNTRACK_AMANDA=m | ||
254 | CONFIG_NF_CONNTRACK_FTP=m | ||
255 | CONFIG_NF_CONNTRACK_H323=m | ||
256 | CONFIG_NF_CONNTRACK_IRC=m | ||
257 | CONFIG_NF_CONNTRACK_NETBIOS_NS=m | ||
258 | CONFIG_NF_CONNTRACK_PPTP=m | ||
259 | CONFIG_NF_CONNTRACK_SANE=m | ||
260 | CONFIG_NF_CONNTRACK_SIP=m | ||
261 | CONFIG_NF_CONNTRACK_TFTP=m | ||
262 | CONFIG_NETFILTER_XTABLES=y | ||
263 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | ||
264 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | ||
265 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | ||
266 | CONFIG_NETFILTER_XT_TARGET_MARK=m | ||
267 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | ||
268 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | ||
269 | # CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set | ||
270 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | ||
271 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | ||
272 | CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m | ||
273 | CONFIG_NETFILTER_XT_MATCH_CONNMARK=m | ||
274 | CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m | ||
275 | # CONFIG_NETFILTER_XT_MATCH_DCCP is not set | ||
276 | # CONFIG_NETFILTER_XT_MATCH_DSCP is not set | ||
277 | CONFIG_NETFILTER_XT_MATCH_ESP=m | ||
278 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | ||
279 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | ||
280 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | ||
281 | CONFIG_NETFILTER_XT_MATCH_MAC=m | ||
282 | CONFIG_NETFILTER_XT_MATCH_MARK=m | ||
283 | CONFIG_NETFILTER_XT_MATCH_POLICY=m | ||
284 | CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m | ||
285 | CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m | ||
286 | CONFIG_NETFILTER_XT_MATCH_QUOTA=m | ||
287 | CONFIG_NETFILTER_XT_MATCH_REALM=m | ||
288 | # CONFIG_NETFILTER_XT_MATCH_SCTP is not set | ||
289 | CONFIG_NETFILTER_XT_MATCH_STATE=m | ||
290 | CONFIG_NETFILTER_XT_MATCH_STATISTIC=m | ||
291 | CONFIG_NETFILTER_XT_MATCH_STRING=m | ||
292 | CONFIG_NETFILTER_XT_MATCH_TCPMSS=m | ||
293 | CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m | ||
294 | |||
295 | # | ||
296 | # IP: Netfilter Configuration | ||
297 | # | ||
298 | CONFIG_NF_CONNTRACK_IPV4=m | ||
299 | CONFIG_NF_CONNTRACK_PROC_COMPAT=y | ||
300 | # CONFIG_IP_NF_QUEUE is not set | ||
301 | CONFIG_IP_NF_IPTABLES=m | ||
302 | CONFIG_IP_NF_MATCH_IPRANGE=m | ||
303 | CONFIG_IP_NF_MATCH_TOS=m | ||
304 | CONFIG_IP_NF_MATCH_RECENT=m | ||
305 | CONFIG_IP_NF_MATCH_ECN=m | ||
306 | CONFIG_IP_NF_MATCH_AH=m | ||
307 | CONFIG_IP_NF_MATCH_TTL=m | ||
308 | CONFIG_IP_NF_MATCH_OWNER=m | ||
309 | CONFIG_IP_NF_MATCH_ADDRTYPE=m | ||
310 | CONFIG_IP_NF_FILTER=m | ||
311 | CONFIG_IP_NF_TARGET_REJECT=m | ||
312 | CONFIG_IP_NF_TARGET_LOG=m | ||
313 | # CONFIG_IP_NF_TARGET_ULOG is not set | ||
314 | CONFIG_NF_NAT=m | ||
315 | CONFIG_NF_NAT_NEEDED=y | ||
316 | CONFIG_IP_NF_TARGET_MASQUERADE=m | ||
317 | CONFIG_IP_NF_TARGET_REDIRECT=m | ||
318 | CONFIG_IP_NF_TARGET_NETMAP=m | ||
319 | CONFIG_IP_NF_TARGET_SAME=m | ||
320 | CONFIG_NF_NAT_SNMP_BASIC=m | ||
321 | CONFIG_NF_NAT_PROTO_GRE=m | ||
322 | CONFIG_NF_NAT_FTP=m | ||
323 | CONFIG_NF_NAT_IRC=m | ||
324 | CONFIG_NF_NAT_TFTP=m | ||
325 | CONFIG_NF_NAT_AMANDA=m | ||
326 | CONFIG_NF_NAT_PPTP=m | ||
327 | CONFIG_NF_NAT_H323=m | ||
328 | CONFIG_NF_NAT_SIP=m | ||
329 | CONFIG_IP_NF_MANGLE=m | ||
330 | CONFIG_IP_NF_TARGET_TOS=m | ||
331 | CONFIG_IP_NF_TARGET_ECN=m | ||
332 | CONFIG_IP_NF_TARGET_TTL=m | ||
333 | CONFIG_IP_NF_TARGET_CLUSTERIP=m | ||
334 | CONFIG_IP_NF_RAW=m | ||
335 | CONFIG_IP_NF_ARPTABLES=m | ||
336 | CONFIG_IP_NF_ARPFILTER=m | ||
337 | CONFIG_IP_NF_ARP_MANGLE=m | ||
338 | |||
339 | # | ||
340 | # IPv6: Netfilter Configuration (EXPERIMENTAL) | ||
341 | # | ||
342 | CONFIG_NF_CONNTRACK_IPV6=m | ||
343 | CONFIG_IP6_NF_QUEUE=m | ||
344 | CONFIG_IP6_NF_IPTABLES=m | ||
345 | CONFIG_IP6_NF_MATCH_RT=m | ||
346 | CONFIG_IP6_NF_MATCH_OPTS=m | ||
347 | CONFIG_IP6_NF_MATCH_FRAG=m | ||
348 | CONFIG_IP6_NF_MATCH_HL=m | ||
349 | CONFIG_IP6_NF_MATCH_OWNER=m | ||
350 | CONFIG_IP6_NF_MATCH_IPV6HEADER=m | ||
351 | CONFIG_IP6_NF_MATCH_AH=m | ||
352 | CONFIG_IP6_NF_MATCH_MH=m | ||
353 | CONFIG_IP6_NF_MATCH_EUI64=m | ||
354 | CONFIG_IP6_NF_FILTER=m | ||
355 | CONFIG_IP6_NF_TARGET_LOG=m | ||
356 | CONFIG_IP6_NF_TARGET_REJECT=m | ||
357 | CONFIG_IP6_NF_MANGLE=m | ||
358 | CONFIG_IP6_NF_TARGET_HL=m | ||
359 | CONFIG_IP6_NF_RAW=m | ||
360 | |||
361 | # | ||
362 | # DCCP Configuration (EXPERIMENTAL) | ||
363 | # | ||
364 | # CONFIG_IP_DCCP is not set | ||
365 | |||
366 | # | ||
367 | # SCTP Configuration (EXPERIMENTAL) | ||
368 | # | ||
369 | # CONFIG_IP_SCTP is not set | ||
370 | |||
371 | # | ||
372 | # TIPC Configuration (EXPERIMENTAL) | ||
373 | # | ||
374 | # CONFIG_TIPC is not set | ||
375 | # CONFIG_ATM is not set | ||
376 | # CONFIG_BRIDGE is not set | ||
377 | CONFIG_VLAN_8021Q=m | ||
378 | # CONFIG_DECNET is not set | ||
379 | # CONFIG_LLC2 is not set | ||
380 | # CONFIG_IPX is not set | ||
381 | # CONFIG_ATALK is not set | ||
382 | # CONFIG_X25 is not set | ||
383 | # CONFIG_LAPB is not set | ||
384 | # CONFIG_ECONET is not set | ||
385 | # CONFIG_WAN_ROUTER is not set | ||
386 | |||
387 | # | ||
388 | # QoS and/or fair queueing | ||
389 | # | ||
390 | # CONFIG_NET_SCHED is not set | ||
391 | CONFIG_NET_CLS_ROUTE=y | ||
392 | |||
393 | # | ||
394 | # Network testing | ||
395 | # | ||
396 | # CONFIG_NET_PKTGEN is not set | ||
397 | # CONFIG_HAMRADIO is not set | ||
398 | # CONFIG_IRDA is not set | ||
399 | # CONFIG_BT is not set | ||
400 | # CONFIG_IEEE80211 is not set | ||
401 | |||
402 | # | ||
403 | # Device Drivers | ||
404 | # | ||
405 | |||
406 | # | ||
407 | # Generic Driver Options | ||
408 | # | ||
409 | CONFIG_STANDALONE=y | ||
410 | # CONFIG_PREVENT_FIRMWARE_BUILD is not set | ||
411 | # CONFIG_FW_LOADER is not set | ||
412 | # CONFIG_DEBUG_DRIVER is not set | ||
413 | # CONFIG_DEBUG_DEVRES is not set | ||
414 | # CONFIG_SYS_HYPERVISOR is not set | ||
415 | |||
416 | # | ||
417 | # Connector - unified userspace <-> kernelspace linker | ||
418 | # | ||
419 | # CONFIG_CONNECTOR is not set | ||
420 | |||
421 | # | ||
422 | # Memory Technology Devices (MTD) | ||
423 | # | ||
424 | CONFIG_MTD=y | ||
425 | # CONFIG_MTD_DEBUG is not set | ||
426 | # CONFIG_MTD_CONCAT is not set | ||
427 | CONFIG_MTD_PARTITIONS=y | ||
428 | # CONFIG_MTD_REDBOOT_PARTS is not set | ||
429 | CONFIG_MTD_CMDLINE_PARTS=y | ||
430 | |||
431 | # | ||
432 | # User Modules And Translation Layers | ||
433 | # | ||
434 | CONFIG_MTD_CHAR=y | ||
435 | CONFIG_MTD_BLKDEVS=y | ||
436 | CONFIG_MTD_BLOCK=y | ||
437 | # CONFIG_FTL is not set | ||
438 | # CONFIG_NFTL is not set | ||
439 | # CONFIG_INFTL is not set | ||
440 | # CONFIG_RFD_FTL is not set | ||
441 | # CONFIG_SSFDC 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 | # CONFIG_MTD_OBSOLETE_CHIPS is not set | ||
468 | |||
469 | # | ||
470 | # Mapping drivers for chip access | ||
471 | # | ||
472 | # CONFIG_MTD_COMPLEX_MAPPINGS is not set | ||
473 | CONFIG_MTD_PHYSMAP=y | ||
474 | CONFIG_MTD_PHYSMAP_START=0x80000000 | ||
475 | CONFIG_MTD_PHYSMAP_LEN=0x0 | ||
476 | CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | ||
477 | # CONFIG_MTD_PLATRAM is not set | ||
478 | |||
479 | # | ||
480 | # Self-contained MTD device drivers | ||
481 | # | ||
482 | CONFIG_MTD_DATAFLASH=y | ||
483 | # CONFIG_MTD_M25P80 is not set | ||
484 | # CONFIG_MTD_SLRAM is not set | ||
485 | # CONFIG_MTD_PHRAM is not set | ||
486 | # CONFIG_MTD_MTDRAM is not set | ||
487 | # CONFIG_MTD_BLOCK2MTD is not set | ||
488 | |||
489 | # | ||
490 | # Disk-On-Chip Device Drivers | ||
491 | # | ||
492 | # CONFIG_MTD_DOC2000 is not set | ||
493 | # CONFIG_MTD_DOC2001 is not set | ||
494 | # CONFIG_MTD_DOC2001PLUS is not set | ||
495 | |||
496 | # | ||
497 | # NAND Flash Device Drivers | ||
498 | # | ||
499 | # CONFIG_MTD_NAND is not set | ||
500 | |||
501 | # | ||
502 | # OneNAND Flash Device Drivers | ||
503 | # | ||
504 | # CONFIG_MTD_ONENAND is not set | ||
505 | |||
506 | # | ||
507 | # Parallel port support | ||
508 | # | ||
509 | # CONFIG_PARPORT is not set | ||
510 | |||
511 | # | ||
512 | # Plug and Play support | ||
513 | # | ||
514 | # CONFIG_PNPACPI is not set | ||
515 | |||
516 | # | ||
517 | # Block devices | ||
518 | # | ||
519 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
520 | CONFIG_BLK_DEV_LOOP=m | ||
521 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
522 | CONFIG_BLK_DEV_NBD=m | ||
523 | CONFIG_BLK_DEV_RAM=m | ||
524 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
525 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
526 | CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 | ||
527 | # CONFIG_CDROM_PKTCDVD is not set | ||
528 | # CONFIG_ATA_OVER_ETH is not set | ||
529 | |||
530 | # | ||
531 | # Misc devices | ||
532 | # | ||
533 | |||
534 | # | ||
535 | # ATA/ATAPI/MFM/RLL support | ||
536 | # | ||
537 | # CONFIG_IDE is not set | ||
538 | |||
539 | # | ||
540 | # SCSI device support | ||
541 | # | ||
542 | # CONFIG_RAID_ATTRS is not set | ||
543 | # CONFIG_SCSI is not set | ||
544 | # CONFIG_SCSI_NETLINK is not set | ||
545 | |||
546 | # | ||
547 | # Serial ATA (prod) and Parallel ATA (experimental) drivers | ||
548 | # | ||
549 | # CONFIG_ATA is not set | ||
550 | |||
551 | # | ||
552 | # Multi-device support (RAID and LVM) | ||
553 | # | ||
554 | # CONFIG_MD is not set | ||
555 | |||
556 | # | ||
557 | # Fusion MPT device support | ||
558 | # | ||
559 | # CONFIG_FUSION is not set | ||
560 | |||
561 | # | ||
562 | # IEEE 1394 (FireWire) support | ||
563 | # | ||
564 | |||
565 | # | ||
566 | # I2O device support | ||
567 | # | ||
568 | |||
569 | # | ||
570 | # Network device support | ||
571 | # | ||
572 | CONFIG_NETDEVICES=y | ||
573 | # CONFIG_DUMMY is not set | ||
574 | # CONFIG_BONDING is not set | ||
575 | # CONFIG_EQUALIZER is not set | ||
576 | CONFIG_TUN=m | ||
577 | |||
578 | # | ||
579 | # PHY device support | ||
580 | # | ||
581 | # CONFIG_PHYLIB is not set | ||
582 | |||
583 | # | ||
584 | # Ethernet (10 or 100Mbit) | ||
585 | # | ||
586 | CONFIG_NET_ETHERNET=y | ||
587 | CONFIG_MII=y | ||
588 | CONFIG_MACB=y | ||
589 | |||
590 | # | ||
591 | # Ethernet (1000 Mbit) | ||
592 | # | ||
593 | |||
594 | # | ||
595 | # Ethernet (10000 Mbit) | ||
596 | # | ||
597 | |||
598 | # | ||
599 | # Token Ring devices | ||
600 | # | ||
601 | |||
602 | # | ||
603 | # Wireless LAN (non-hamradio) | ||
604 | # | ||
605 | # CONFIG_NET_RADIO is not set | ||
606 | |||
607 | # | ||
608 | # Wan interfaces | ||
609 | # | ||
610 | # CONFIG_WAN is not set | ||
611 | CONFIG_PPP=m | ||
612 | # CONFIG_PPP_MULTILINK is not set | ||
613 | CONFIG_PPP_FILTER=y | ||
614 | CONFIG_PPP_ASYNC=m | ||
615 | # CONFIG_PPP_SYNC_TTY is not set | ||
616 | CONFIG_PPP_DEFLATE=m | ||
617 | CONFIG_PPP_BSDCOMP=m | ||
618 | CONFIG_PPP_MPPE=m | ||
619 | CONFIG_PPPOE=m | ||
620 | # CONFIG_SLIP is not set | ||
621 | CONFIG_SLHC=m | ||
622 | # CONFIG_SHAPER is not set | ||
623 | # CONFIG_NETCONSOLE is not set | ||
624 | # CONFIG_NETPOLL is not set | ||
625 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
626 | |||
627 | # | ||
628 | # ISDN subsystem | ||
629 | # | ||
630 | # CONFIG_ISDN is not set | ||
631 | |||
632 | # | ||
633 | # Telephony Support | ||
634 | # | ||
635 | # CONFIG_PHONE is not set | ||
636 | |||
637 | # | ||
638 | # Input device support | ||
639 | # | ||
640 | # CONFIG_INPUT is not set | ||
641 | |||
642 | # | ||
643 | # Hardware I/O ports | ||
644 | # | ||
645 | # CONFIG_SERIO is not set | ||
646 | # CONFIG_GAMEPORT is not set | ||
647 | |||
648 | # | ||
649 | # Character devices | ||
650 | # | ||
651 | # CONFIG_VT is not set | ||
652 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
653 | |||
654 | # | ||
655 | # Serial drivers | ||
656 | # | ||
657 | # CONFIG_SERIAL_8250 is not set | ||
658 | |||
659 | # | ||
660 | # Non-8250 serial port support | ||
661 | # | ||
662 | CONFIG_SERIAL_ATMEL=y | ||
663 | CONFIG_SERIAL_ATMEL_CONSOLE=y | ||
664 | # CONFIG_SERIAL_ATMEL_TTYAT is not set | ||
665 | CONFIG_SERIAL_CORE=y | ||
666 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
667 | CONFIG_UNIX98_PTYS=y | ||
668 | # CONFIG_LEGACY_PTYS is not set | ||
669 | |||
670 | # | ||
671 | # IPMI | ||
672 | # | ||
673 | # CONFIG_IPMI_HANDLER is not set | ||
674 | |||
675 | # | ||
676 | # Watchdog Cards | ||
677 | # | ||
678 | # CONFIG_WATCHDOG is not set | ||
679 | # CONFIG_HW_RANDOM is not set | ||
680 | # CONFIG_RTC is not set | ||
681 | # CONFIG_GEN_RTC is not set | ||
682 | # CONFIG_DTLK is not set | ||
683 | # CONFIG_R3964 is not set | ||
684 | # CONFIG_RAW_DRIVER is not set | ||
685 | |||
686 | # | ||
687 | # TPM devices | ||
688 | # | ||
689 | # CONFIG_TCG_TPM is not set | ||
690 | |||
691 | # | ||
692 | # I2C support | ||
693 | # | ||
694 | # CONFIG_I2C is not set | ||
695 | |||
696 | # | ||
697 | # SPI support | ||
698 | # | ||
699 | CONFIG_SPI=y | ||
700 | # CONFIG_SPI_DEBUG is not set | ||
701 | CONFIG_SPI_MASTER=y | ||
702 | |||
703 | # | ||
704 | # SPI Master Controller Drivers | ||
705 | # | ||
706 | CONFIG_SPI_ATMEL=y | ||
707 | # CONFIG_SPI_BITBANG is not set | ||
708 | |||
709 | # | ||
710 | # SPI Protocol Masters | ||
711 | # | ||
712 | # CONFIG_SPI_AT25 is not set | ||
713 | |||
714 | # | ||
715 | # Dallas's 1-wire bus | ||
716 | # | ||
717 | # CONFIG_W1 is not set | ||
718 | |||
719 | # | ||
720 | # Hardware Monitoring support | ||
721 | # | ||
722 | # CONFIG_HWMON is not set | ||
723 | # CONFIG_HWMON_VID is not set | ||
724 | |||
725 | # | ||
726 | # Multifunction device drivers | ||
727 | # | ||
728 | # CONFIG_MFD_SM501 is not set | ||
729 | |||
730 | # | ||
731 | # Multimedia devices | ||
732 | # | ||
733 | # CONFIG_VIDEO_DEV is not set | ||
734 | |||
735 | # | ||
736 | # Digital Video Broadcasting Devices | ||
737 | # | ||
738 | # CONFIG_DVB is not set | ||
739 | |||
740 | # | ||
741 | # Graphics support | ||
742 | # | ||
743 | # CONFIG_BACKLIGHT_LCD_SUPPORT is not set | ||
744 | # CONFIG_FB is not set | ||
745 | |||
746 | # | ||
747 | # Sound | ||
748 | # | ||
749 | # CONFIG_SOUND is not set | ||
750 | |||
751 | # | ||
752 | # USB support | ||
753 | # | ||
754 | # CONFIG_USB_ARCH_HAS_HCD is not set | ||
755 | # CONFIG_USB_ARCH_HAS_OHCI is not set | ||
756 | # CONFIG_USB_ARCH_HAS_EHCI is not set | ||
757 | |||
758 | # | ||
759 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | ||
760 | # | ||
761 | |||
762 | # | ||
763 | # USB Gadget Support | ||
764 | # | ||
765 | # CONFIG_USB_GADGET is not set | ||
766 | |||
767 | # | ||
768 | # MMC/SD Card support | ||
769 | # | ||
770 | # CONFIG_MMC is not set | ||
771 | |||
772 | # | ||
773 | # LED devices | ||
774 | # | ||
775 | # CONFIG_NEW_LEDS is not set | ||
776 | |||
777 | # | ||
778 | # LED drivers | ||
779 | # | ||
780 | |||
781 | # | ||
782 | # LED Triggers | ||
783 | # | ||
784 | |||
785 | # | ||
786 | # InfiniBand support | ||
787 | # | ||
788 | |||
789 | # | ||
790 | # EDAC - error detection and reporting (RAS) (EXPERIMENTAL) | ||
791 | # | ||
792 | |||
793 | # | ||
794 | # Real Time Clock | ||
795 | # | ||
796 | # CONFIG_RTC_CLASS is not set | ||
797 | |||
798 | # | ||
799 | # DMA Engine support | ||
800 | # | ||
801 | # CONFIG_DMA_ENGINE is not set | ||
802 | |||
803 | # | ||
804 | # DMA Clients | ||
805 | # | ||
806 | |||
807 | # | ||
808 | # DMA Devices | ||
809 | # | ||
810 | |||
811 | # | ||
812 | # Auxiliary Display support | ||
813 | # | ||
814 | |||
815 | # | ||
816 | # Virtualization | ||
817 | # | ||
818 | |||
819 | # | ||
820 | # File systems | ||
821 | # | ||
822 | CONFIG_EXT2_FS=y | ||
823 | # CONFIG_EXT2_FS_XATTR is not set | ||
824 | # CONFIG_EXT2_FS_XIP is not set | ||
825 | CONFIG_EXT3_FS=y | ||
826 | # CONFIG_EXT3_FS_XATTR is not set | ||
827 | # CONFIG_EXT4DEV_FS is not set | ||
828 | CONFIG_JBD=y | ||
829 | # CONFIG_JBD_DEBUG is not set | ||
830 | # CONFIG_REISERFS_FS is not set | ||
831 | # CONFIG_JFS_FS is not set | ||
832 | # CONFIG_FS_POSIX_ACL is not set | ||
833 | # CONFIG_XFS_FS is not set | ||
834 | # CONFIG_GFS2_FS is not set | ||
835 | # CONFIG_OCFS2_FS is not set | ||
836 | # CONFIG_MINIX_FS is not set | ||
837 | # CONFIG_ROMFS_FS is not set | ||
838 | # CONFIG_INOTIFY is not set | ||
839 | # CONFIG_QUOTA is not set | ||
840 | # CONFIG_DNOTIFY is not set | ||
841 | # CONFIG_AUTOFS_FS is not set | ||
842 | # CONFIG_AUTOFS4_FS is not set | ||
843 | CONFIG_FUSE_FS=m | ||
844 | |||
845 | # | ||
846 | # CD-ROM/DVD Filesystems | ||
847 | # | ||
848 | # CONFIG_ISO9660_FS is not set | ||
849 | # CONFIG_UDF_FS is not set | ||
850 | |||
851 | # | ||
852 | # DOS/FAT/NT Filesystems | ||
853 | # | ||
854 | CONFIG_FAT_FS=m | ||
855 | CONFIG_MSDOS_FS=m | ||
856 | CONFIG_VFAT_FS=m | ||
857 | CONFIG_FAT_DEFAULT_CODEPAGE=850 | ||
858 | CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" | ||
859 | # CONFIG_NTFS_FS is not set | ||
860 | |||
861 | # | ||
862 | # Pseudo filesystems | ||
863 | # | ||
864 | CONFIG_PROC_FS=y | ||
865 | # CONFIG_PROC_KCORE is not set | ||
866 | CONFIG_PROC_SYSCTL=y | ||
867 | CONFIG_SYSFS=y | ||
868 | CONFIG_TMPFS=y | ||
869 | # CONFIG_TMPFS_POSIX_ACL is not set | ||
870 | # CONFIG_HUGETLB_PAGE is not set | ||
871 | CONFIG_RAMFS=y | ||
872 | CONFIG_CONFIGFS_FS=y | ||
873 | |||
874 | # | ||
875 | # Miscellaneous filesystems | ||
876 | # | ||
877 | # CONFIG_ADFS_FS is not set | ||
878 | # CONFIG_AFFS_FS is not set | ||
879 | # CONFIG_HFS_FS is not set | ||
880 | # CONFIG_HFSPLUS_FS is not set | ||
881 | # CONFIG_BEFS_FS is not set | ||
882 | # CONFIG_BFS_FS is not set | ||
883 | # CONFIG_EFS_FS is not set | ||
884 | CONFIG_JFFS2_FS=y | ||
885 | CONFIG_JFFS2_FS_DEBUG=0 | ||
886 | CONFIG_JFFS2_FS_WRITEBUFFER=y | ||
887 | # CONFIG_JFFS2_SUMMARY is not set | ||
888 | # CONFIG_JFFS2_FS_XATTR is not set | ||
889 | # CONFIG_JFFS2_COMPRESSION_OPTIONS is not set | ||
890 | CONFIG_JFFS2_ZLIB=y | ||
891 | CONFIG_JFFS2_RTIME=y | ||
892 | # CONFIG_JFFS2_RUBIN is not set | ||
893 | # CONFIG_CRAMFS is not set | ||
894 | # CONFIG_VXFS_FS is not set | ||
895 | # CONFIG_HPFS_FS is not set | ||
896 | # CONFIG_QNX4FS_FS is not set | ||
897 | # CONFIG_SYSV_FS is not set | ||
898 | # CONFIG_UFS_FS is not set | ||
899 | |||
900 | # | ||
901 | # Network File Systems | ||
902 | # | ||
903 | CONFIG_NFS_FS=y | ||
904 | CONFIG_NFS_V3=y | ||
905 | # CONFIG_NFS_V3_ACL is not set | ||
906 | # CONFIG_NFS_V4 is not set | ||
907 | # CONFIG_NFS_DIRECTIO is not set | ||
908 | # CONFIG_NFSD is not set | ||
909 | CONFIG_ROOT_NFS=y | ||
910 | CONFIG_LOCKD=y | ||
911 | CONFIG_LOCKD_V4=y | ||
912 | CONFIG_NFS_COMMON=y | ||
913 | CONFIG_SUNRPC=y | ||
914 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
915 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
916 | CONFIG_SMB_FS=m | ||
917 | # CONFIG_SMB_NLS_DEFAULT is not set | ||
918 | CONFIG_CIFS=m | ||
919 | # CONFIG_CIFS_STATS is not set | ||
920 | # CONFIG_CIFS_WEAK_PW_HASH is not set | ||
921 | # CONFIG_CIFS_XATTR is not set | ||
922 | # CONFIG_CIFS_DEBUG2 is not set | ||
923 | # CONFIG_CIFS_EXPERIMENTAL is not set | ||
924 | # CONFIG_NCP_FS is not set | ||
925 | # CONFIG_CODA_FS is not set | ||
926 | # CONFIG_AFS_FS is not set | ||
927 | # CONFIG_9P_FS is not set | ||
928 | |||
929 | # | ||
930 | # Partition Types | ||
931 | # | ||
932 | # CONFIG_PARTITION_ADVANCED is not set | ||
933 | CONFIG_MSDOS_PARTITION=y | ||
934 | |||
935 | # | ||
936 | # Native Language Support | ||
937 | # | ||
938 | CONFIG_NLS=y | ||
939 | CONFIG_NLS_DEFAULT="iso8859-1" | ||
940 | # CONFIG_NLS_CODEPAGE_437 is not set | ||
941 | # CONFIG_NLS_CODEPAGE_737 is not set | ||
942 | # CONFIG_NLS_CODEPAGE_775 is not set | ||
943 | CONFIG_NLS_CODEPAGE_850=y | ||
944 | # CONFIG_NLS_CODEPAGE_852 is not set | ||
945 | # CONFIG_NLS_CODEPAGE_855 is not set | ||
946 | # CONFIG_NLS_CODEPAGE_857 is not set | ||
947 | # CONFIG_NLS_CODEPAGE_860 is not set | ||
948 | # CONFIG_NLS_CODEPAGE_861 is not set | ||
949 | # CONFIG_NLS_CODEPAGE_862 is not set | ||
950 | # CONFIG_NLS_CODEPAGE_863 is not set | ||
951 | # CONFIG_NLS_CODEPAGE_864 is not set | ||
952 | # CONFIG_NLS_CODEPAGE_865 is not set | ||
953 | # CONFIG_NLS_CODEPAGE_866 is not set | ||
954 | # CONFIG_NLS_CODEPAGE_869 is not set | ||
955 | # CONFIG_NLS_CODEPAGE_936 is not set | ||
956 | # CONFIG_NLS_CODEPAGE_950 is not set | ||
957 | # CONFIG_NLS_CODEPAGE_932 is not set | ||
958 | # CONFIG_NLS_CODEPAGE_949 is not set | ||
959 | # CONFIG_NLS_CODEPAGE_874 is not set | ||
960 | # CONFIG_NLS_ISO8859_8 is not set | ||
961 | # CONFIG_NLS_CODEPAGE_1250 is not set | ||
962 | # CONFIG_NLS_CODEPAGE_1251 is not set | ||
963 | # CONFIG_NLS_ASCII is not set | ||
964 | CONFIG_NLS_ISO8859_1=y | ||
965 | # CONFIG_NLS_ISO8859_2 is not set | ||
966 | # CONFIG_NLS_ISO8859_3 is not set | ||
967 | # CONFIG_NLS_ISO8859_4 is not set | ||
968 | # CONFIG_NLS_ISO8859_5 is not set | ||
969 | # CONFIG_NLS_ISO8859_6 is not set | ||
970 | # CONFIG_NLS_ISO8859_7 is not set | ||
971 | # CONFIG_NLS_ISO8859_9 is not set | ||
972 | # CONFIG_NLS_ISO8859_13 is not set | ||
973 | # CONFIG_NLS_ISO8859_14 is not set | ||
974 | # CONFIG_NLS_ISO8859_15 is not set | ||
975 | # CONFIG_NLS_KOI8_R is not set | ||
976 | # CONFIG_NLS_KOI8_U is not set | ||
977 | CONFIG_NLS_UTF8=y | ||
978 | |||
979 | # | ||
980 | # Distributed Lock Manager | ||
981 | # | ||
982 | # CONFIG_DLM is not set | ||
983 | |||
984 | # | ||
985 | # Kernel hacking | ||
986 | # | ||
987 | CONFIG_TRACE_IRQFLAGS_SUPPORT=y | ||
988 | # CONFIG_PRINTK_TIME is not set | ||
989 | CONFIG_ENABLE_MUST_CHECK=y | ||
990 | CONFIG_MAGIC_SYSRQ=y | ||
991 | # CONFIG_UNUSED_SYMBOLS is not set | ||
992 | # CONFIG_DEBUG_FS is not set | ||
993 | # CONFIG_HEADERS_CHECK is not set | ||
994 | CONFIG_DEBUG_KERNEL=y | ||
995 | # CONFIG_DEBUG_SHIRQ is not set | ||
996 | CONFIG_LOG_BUF_SHIFT=14 | ||
997 | CONFIG_DETECT_SOFTLOCKUP=y | ||
998 | # CONFIG_SCHEDSTATS is not set | ||
999 | # CONFIG_TIMER_STATS is not set | ||
1000 | # CONFIG_DEBUG_SLAB is not set | ||
1001 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1002 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1003 | # CONFIG_DEBUG_SPINLOCK is not set | ||
1004 | # CONFIG_DEBUG_MUTEXES is not set | ||
1005 | # CONFIG_DEBUG_SPINLOCK_SLEEP is not set | ||
1006 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | ||
1007 | # CONFIG_DEBUG_KOBJECT is not set | ||
1008 | CONFIG_DEBUG_BUGVERBOSE=y | ||
1009 | # CONFIG_DEBUG_INFO is not set | ||
1010 | # CONFIG_DEBUG_VM is not set | ||
1011 | # CONFIG_DEBUG_LIST is not set | ||
1012 | CONFIG_FRAME_POINTER=y | ||
1013 | # CONFIG_FORCED_INLINING is not set | ||
1014 | # CONFIG_RCU_TORTURE_TEST is not set | ||
1015 | # CONFIG_FAULT_INJECTION is not set | ||
1016 | # CONFIG_KPROBES is not set | ||
1017 | |||
1018 | # | ||
1019 | # Security options | ||
1020 | # | ||
1021 | # CONFIG_KEYS is not set | ||
1022 | # CONFIG_SECURITY is not set | ||
1023 | |||
1024 | # | ||
1025 | # Cryptographic options | ||
1026 | # | ||
1027 | CONFIG_CRYPTO=y | ||
1028 | CONFIG_CRYPTO_ALGAPI=y | ||
1029 | CONFIG_CRYPTO_BLKCIPHER=y | ||
1030 | CONFIG_CRYPTO_HASH=y | ||
1031 | CONFIG_CRYPTO_MANAGER=y | ||
1032 | CONFIG_CRYPTO_HMAC=y | ||
1033 | # CONFIG_CRYPTO_XCBC is not set | ||
1034 | # CONFIG_CRYPTO_NULL is not set | ||
1035 | # CONFIG_CRYPTO_MD4 is not set | ||
1036 | CONFIG_CRYPTO_MD5=y | ||
1037 | CONFIG_CRYPTO_SHA1=y | ||
1038 | # CONFIG_CRYPTO_SHA256 is not set | ||
1039 | # CONFIG_CRYPTO_SHA512 is not set | ||
1040 | # CONFIG_CRYPTO_WP512 is not set | ||
1041 | # CONFIG_CRYPTO_TGR192 is not set | ||
1042 | # CONFIG_CRYPTO_GF128MUL is not set | ||
1043 | CONFIG_CRYPTO_ECB=m | ||
1044 | CONFIG_CRYPTO_CBC=y | ||
1045 | CONFIG_CRYPTO_PCBC=m | ||
1046 | # CONFIG_CRYPTO_LRW 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=m | ||
1057 | # CONFIG_CRYPTO_KHAZAD is not set | ||
1058 | # CONFIG_CRYPTO_ANUBIS is not set | ||
1059 | CONFIG_CRYPTO_DEFLATE=y | ||
1060 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | ||
1061 | # CONFIG_CRYPTO_CRC32C is not set | ||
1062 | # CONFIG_CRYPTO_CAMELLIA is not set | ||
1063 | # CONFIG_CRYPTO_TEST is not set | ||
1064 | |||
1065 | # | ||
1066 | # Hardware crypto devices | ||
1067 | # | ||
1068 | |||
1069 | # | ||
1070 | # Library routines | ||
1071 | # | ||
1072 | CONFIG_BITREVERSE=y | ||
1073 | CONFIG_CRC_CCITT=m | ||
1074 | # CONFIG_CRC16 is not set | ||
1075 | CONFIG_CRC32=y | ||
1076 | # CONFIG_LIBCRC32C is not set | ||
1077 | CONFIG_ZLIB_INFLATE=y | ||
1078 | CONFIG_ZLIB_DEFLATE=y | ||
1079 | CONFIG_TEXTSEARCH=y | ||
1080 | CONFIG_TEXTSEARCH_KMP=m | ||
1081 | CONFIG_TEXTSEARCH_BM=m | ||
1082 | CONFIG_TEXTSEARCH_FSM=m | ||
1083 | CONFIG_PLIST=y | ||
1084 | CONFIG_HAS_IOMEM=y | ||
1085 | CONFIG_HAS_IOPORT=y | ||