diff options
Diffstat (limited to 'arch')
512 files changed, 5900 insertions, 3240 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index d82875820a1..9d055b4f058 100644 --- a/arch/Kconfig +++ b/arch/Kconfig | |||
@@ -135,9 +135,7 @@ config HAVE_DEFAULT_NO_SPIN_MUTEXES | |||
135 | 135 | ||
136 | config HAVE_HW_BREAKPOINT | 136 | config HAVE_HW_BREAKPOINT |
137 | bool | 137 | bool |
138 | depends on HAVE_PERF_EVENTS | 138 | depends on PERF_EVENTS |
139 | select ANON_INODES | ||
140 | select PERF_EVENTS | ||
141 | 139 | ||
142 | config HAVE_USER_RETURN_NOTIFIER | 140 | config HAVE_USER_RETURN_NOTIFIER |
143 | bool | 141 | bool |
diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index 443448154f3..bd7261ea8f9 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig | |||
@@ -9,6 +9,7 @@ config ALPHA | |||
9 | select HAVE_IDE | 9 | select HAVE_IDE |
10 | select HAVE_OPROFILE | 10 | select HAVE_OPROFILE |
11 | select HAVE_SYSCALL_WRAPPERS | 11 | select HAVE_SYSCALL_WRAPPERS |
12 | select HAVE_PERF_EVENTS | ||
12 | help | 13 | help |
13 | The Alpha is a 64-bit general-purpose processor designed and | 14 | The Alpha is a 64-bit general-purpose processor designed and |
14 | marketed by the Digital Equipment Corporation of blessed memory, | 15 | marketed by the Digital Equipment Corporation of blessed memory, |
diff --git a/arch/alpha/include/asm/bug.h b/arch/alpha/include/asm/bug.h index 1720c8ad86f..f091682e3cc 100644 --- a/arch/alpha/include/asm/bug.h +++ b/arch/alpha/include/asm/bug.h | |||
@@ -13,7 +13,8 @@ | |||
13 | "call_pal %0 # bugchk\n\t" \ | 13 | "call_pal %0 # bugchk\n\t" \ |
14 | ".long %1\n\t.8byte %2" \ | 14 | ".long %1\n\t.8byte %2" \ |
15 | : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \ | 15 | : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \ |
16 | for ( ; ; ); } while (0) | 16 | unreachable(); \ |
17 | } while (0) | ||
17 | 18 | ||
18 | #define HAVE_ARCH_BUG | 19 | #define HAVE_ARCH_BUG |
19 | #endif | 20 | #endif |
diff --git a/arch/alpha/include/asm/perf_event.h b/arch/alpha/include/asm/perf_event.h new file mode 100644 index 00000000000..3bef8522017 --- /dev/null +++ b/arch/alpha/include/asm/perf_event.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #ifndef __ASM_ALPHA_PERF_EVENT_H | ||
2 | #define __ASM_ALPHA_PERF_EVENT_H | ||
3 | |||
4 | /* Alpha only supports software events through this interface. */ | ||
5 | static inline void set_perf_event_pending(void) { } | ||
6 | |||
7 | #define PERF_EVENT_INDEX_OFFSET 0 | ||
8 | |||
9 | #endif /* __ASM_ALPHA_PERF_EVENT_H */ | ||
diff --git a/arch/alpha/include/asm/topology.h b/arch/alpha/include/asm/topology.h index 36b3a30ba0e..9251e13e144 100644 --- a/arch/alpha/include/asm/topology.h +++ b/arch/alpha/include/asm/topology.h | |||
@@ -28,6 +28,9 @@ static const struct cpumask *cpumask_of_node(int node) | |||
28 | { | 28 | { |
29 | int cpu; | 29 | int cpu; |
30 | 30 | ||
31 | if (node == -1) | ||
32 | return cpu_all_mask; | ||
33 | |||
31 | cpumask_clear(&node_to_cpumask_map[node]); | 34 | cpumask_clear(&node_to_cpumask_map[node]); |
32 | 35 | ||
33 | for_each_online_cpu(cpu) { | 36 | for_each_online_cpu(cpu) { |
diff --git a/arch/alpha/include/asm/unistd.h b/arch/alpha/include/asm/unistd.h index 7f23665122d..804e5311c84 100644 --- a/arch/alpha/include/asm/unistd.h +++ b/arch/alpha/include/asm/unistd.h | |||
@@ -247,6 +247,7 @@ | |||
247 | #define __IGNORE_pause | 247 | #define __IGNORE_pause |
248 | #define __IGNORE_time | 248 | #define __IGNORE_time |
249 | #define __IGNORE_utime | 249 | #define __IGNORE_utime |
250 | #define __IGNORE_umount2 | ||
250 | 251 | ||
251 | /* | 252 | /* |
252 | * Linux-specific system calls begin at 300 | 253 | * Linux-specific system calls begin at 300 |
@@ -434,10 +435,24 @@ | |||
434 | #define __NR_timerfd 477 | 435 | #define __NR_timerfd 477 |
435 | #define __NR_eventfd 478 | 436 | #define __NR_eventfd 478 |
436 | #define __NR_recvmmsg 479 | 437 | #define __NR_recvmmsg 479 |
438 | #define __NR_fallocate 480 | ||
439 | #define __NR_timerfd_create 481 | ||
440 | #define __NR_timerfd_settime 482 | ||
441 | #define __NR_timerfd_gettime 483 | ||
442 | #define __NR_signalfd4 484 | ||
443 | #define __NR_eventfd2 485 | ||
444 | #define __NR_epoll_create1 486 | ||
445 | #define __NR_dup3 487 | ||
446 | #define __NR_pipe2 488 | ||
447 | #define __NR_inotify_init1 489 | ||
448 | #define __NR_preadv 490 | ||
449 | #define __NR_pwritev 491 | ||
450 | #define __NR_rt_tgsigqueueinfo 492 | ||
451 | #define __NR_perf_event_open 493 | ||
437 | 452 | ||
438 | #ifdef __KERNEL__ | 453 | #ifdef __KERNEL__ |
439 | 454 | ||
440 | #define NR_SYSCALLS 480 | 455 | #define NR_SYSCALLS 494 |
441 | 456 | ||
442 | #define __ARCH_WANT_IPC_PARSE_VERSION | 457 | #define __ARCH_WANT_IPC_PARSE_VERSION |
443 | #define __ARCH_WANT_OLD_READDIR | 458 | #define __ARCH_WANT_OLD_READDIR |
diff --git a/arch/alpha/kernel/systbls.S b/arch/alpha/kernel/systbls.S index cda6b8b3d57..09acb786e72 100644 --- a/arch/alpha/kernel/systbls.S +++ b/arch/alpha/kernel/systbls.S | |||
@@ -495,9 +495,23 @@ sys_call_table: | |||
495 | .quad sys_epoll_pwait | 495 | .quad sys_epoll_pwait |
496 | .quad sys_utimensat /* 475 */ | 496 | .quad sys_utimensat /* 475 */ |
497 | .quad sys_signalfd | 497 | .quad sys_signalfd |
498 | .quad sys_ni_syscall | 498 | .quad sys_ni_syscall /* sys_timerfd */ |
499 | .quad sys_eventfd | 499 | .quad sys_eventfd |
500 | .quad sys_recvmmsg | 500 | .quad sys_recvmmsg |
501 | .quad sys_fallocate /* 480 */ | ||
502 | .quad sys_timerfd_create | ||
503 | .quad sys_timerfd_settime | ||
504 | .quad sys_timerfd_gettime | ||
505 | .quad sys_signalfd4 | ||
506 | .quad sys_eventfd2 /* 485 */ | ||
507 | .quad sys_epoll_create1 | ||
508 | .quad sys_dup3 | ||
509 | .quad sys_pipe2 | ||
510 | .quad sys_inotify_init1 | ||
511 | .quad sys_preadv /* 490 */ | ||
512 | .quad sys_pwritev | ||
513 | .quad sys_rt_tgsigqueueinfo | ||
514 | .quad sys_perf_event_open | ||
501 | 515 | ||
502 | .size sys_call_table, . - sys_call_table | 516 | .size sys_call_table, . - sys_call_table |
503 | .type sys_call_table, @object | 517 | .type sys_call_table, @object |
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 233a222752c..c2238cd474c 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -18,6 +18,8 @@ config ARM | |||
18 | select HAVE_KRETPROBES if (HAVE_KPROBES) | 18 | select HAVE_KRETPROBES if (HAVE_KPROBES) |
19 | select HAVE_FUNCTION_TRACER if (!XIP_KERNEL) | 19 | select HAVE_FUNCTION_TRACER if (!XIP_KERNEL) |
20 | select HAVE_GENERIC_DMA_COHERENT | 20 | select HAVE_GENERIC_DMA_COHERENT |
21 | select HAVE_KERNEL_GZIP | ||
22 | select HAVE_KERNEL_LZO | ||
21 | help | 23 | help |
22 | The ARM series is a line of low-power-consumption RISC chip designs | 24 | The ARM series is a line of low-power-consumption RISC chip designs |
23 | licensed by ARM Ltd and targeted at embedded applications and | 25 | licensed by ARM Ltd and targeted at embedded applications and |
@@ -688,6 +690,7 @@ config ARCH_DAVINCI | |||
688 | select HAVE_IDE | 690 | select HAVE_IDE |
689 | select COMMON_CLKDEV | 691 | select COMMON_CLKDEV |
690 | select GENERIC_ALLOCATOR | 692 | select GENERIC_ALLOCATOR |
693 | select ARCH_HAS_HOLES_MEMORYMODEL | ||
691 | help | 694 | help |
692 | Support for TI's DaVinci platform. | 695 | Support for TI's DaVinci platform. |
693 | 696 | ||
diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile index ce39dc54008..2d4d88ba73b 100644 --- a/arch/arm/boot/compressed/Makefile +++ b/arch/arm/boot/compressed/Makefile | |||
@@ -63,8 +63,12 @@ endif | |||
63 | 63 | ||
64 | SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/ | 64 | SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/ |
65 | 65 | ||
66 | targets := vmlinux vmlinux.lds piggy.gz piggy.o font.o font.c \ | 66 | suffix_$(CONFIG_KERNEL_GZIP) = gzip |
67 | head.o misc.o $(OBJS) | 67 | suffix_$(CONFIG_KERNEL_LZO) = lzo |
68 | |||
69 | targets := vmlinux vmlinux.lds \ | ||
70 | piggy.$(suffix_y) piggy.$(suffix_y).o \ | ||
71 | font.o font.c head.o misc.o $(OBJS) | ||
68 | 72 | ||
69 | ifeq ($(CONFIG_FUNCTION_TRACER),y) | 73 | ifeq ($(CONFIG_FUNCTION_TRACER),y) |
70 | ORIG_CFLAGS := $(KBUILD_CFLAGS) | 74 | ORIG_CFLAGS := $(KBUILD_CFLAGS) |
@@ -87,22 +91,34 @@ endif | |||
87 | ifneq ($(PARAMS_PHYS),) | 91 | ifneq ($(PARAMS_PHYS),) |
88 | LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS) | 92 | LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS) |
89 | endif | 93 | endif |
90 | LDFLAGS_vmlinux += -p --no-undefined -X \ | 94 | # ? |
91 | $(shell $(CC) $(KBUILD_CFLAGS) --print-libgcc-file-name) -T | 95 | LDFLAGS_vmlinux += -p |
96 | # Report unresolved symbol references | ||
97 | LDFLAGS_vmlinux += --no-undefined | ||
98 | # Delete all temporary local symbols | ||
99 | LDFLAGS_vmlinux += -X | ||
100 | # Next argument is a linker script | ||
101 | LDFLAGS_vmlinux += -T | ||
102 | |||
103 | # For __aeabi_uidivmod | ||
104 | lib1funcs = $(obj)/lib1funcs.o | ||
105 | |||
106 | $(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE | ||
107 | $(call cmd,shipped) | ||
92 | 108 | ||
93 | # Don't allow any static data in misc.o, which | 109 | # Don't allow any static data in misc.o, which |
94 | # would otherwise mess up our GOT table | 110 | # would otherwise mess up our GOT table |
95 | CFLAGS_misc.o := -Dstatic= | 111 | CFLAGS_misc.o := -Dstatic= |
96 | 112 | ||
97 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \ | 113 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \ |
98 | $(addprefix $(obj)/, $(OBJS)) FORCE | 114 | $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE |
99 | $(call if_changed,ld) | 115 | $(call if_changed,ld) |
100 | @: | 116 | @: |
101 | 117 | ||
102 | $(obj)/piggy.gz: $(obj)/../Image FORCE | 118 | $(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE |
103 | $(call if_changed,gzip) | 119 | $(call if_changed,$(suffix_y)) |
104 | 120 | ||
105 | $(obj)/piggy.o: $(obj)/piggy.gz FORCE | 121 | $(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE |
106 | 122 | ||
107 | CFLAGS_font.o := -Dstatic= | 123 | CFLAGS_font.o := -Dstatic= |
108 | 124 | ||
diff --git a/arch/arm/boot/compressed/misc.c b/arch/arm/boot/compressed/misc.c index 17153b54613..7e0fe4d42c7 100644 --- a/arch/arm/boot/compressed/misc.c +++ b/arch/arm/boot/compressed/misc.c | |||
@@ -18,10 +18,15 @@ | |||
18 | 18 | ||
19 | unsigned int __machine_arch_type; | 19 | unsigned int __machine_arch_type; |
20 | 20 | ||
21 | #define _LINUX_STRING_H_ | ||
22 | |||
21 | #include <linux/compiler.h> /* for inline */ | 23 | #include <linux/compiler.h> /* for inline */ |
22 | #include <linux/types.h> /* for size_t */ | 24 | #include <linux/types.h> /* for size_t */ |
23 | #include <linux/stddef.h> /* for NULL */ | 25 | #include <linux/stddef.h> /* for NULL */ |
24 | #include <asm/string.h> | 26 | #include <asm/string.h> |
27 | #include <linux/linkage.h> | ||
28 | |||
29 | #include <asm/unaligned.h> | ||
25 | 30 | ||
26 | #ifdef STANDALONE_DEBUG | 31 | #ifdef STANDALONE_DEBUG |
27 | #define putstr printf | 32 | #define putstr printf |
@@ -188,34 +193,8 @@ static inline __ptr_t memcpy(__ptr_t __dest, __const __ptr_t __src, | |||
188 | /* | 193 | /* |
189 | * gzip delarations | 194 | * gzip delarations |
190 | */ | 195 | */ |
191 | #define OF(args) args | ||
192 | #define STATIC static | 196 | #define STATIC static |
193 | 197 | ||
194 | typedef unsigned char uch; | ||
195 | typedef unsigned short ush; | ||
196 | typedef unsigned long ulg; | ||
197 | |||
198 | #define WSIZE 0x8000 /* Window size must be at least 32k, */ | ||
199 | /* and a power of two */ | ||
200 | |||
201 | static uch *inbuf; /* input buffer */ | ||
202 | static uch window[WSIZE]; /* Sliding window buffer */ | ||
203 | |||
204 | static unsigned insize; /* valid bytes in inbuf */ | ||
205 | static unsigned inptr; /* index of next byte to be processed in inbuf */ | ||
206 | static unsigned outcnt; /* bytes in output buffer */ | ||
207 | |||
208 | /* gzip flag byte */ | ||
209 | #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */ | ||
210 | #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */ | ||
211 | #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */ | ||
212 | #define ORIG_NAME 0x08 /* bit 3 set: original file name present */ | ||
213 | #define COMMENT 0x10 /* bit 4 set: file comment present */ | ||
214 | #define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */ | ||
215 | #define RESERVED 0xC0 /* bit 6,7: reserved */ | ||
216 | |||
217 | #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) | ||
218 | |||
219 | /* Diagnostic functions */ | 198 | /* Diagnostic functions */ |
220 | #ifdef DEBUG | 199 | #ifdef DEBUG |
221 | # define Assert(cond,msg) {if(!(cond)) error(msg);} | 200 | # define Assert(cond,msg) {if(!(cond)) error(msg);} |
@@ -233,24 +212,20 @@ static unsigned outcnt; /* bytes in output buffer */ | |||
233 | # define Tracecv(c,x) | 212 | # define Tracecv(c,x) |
234 | #endif | 213 | #endif |
235 | 214 | ||
236 | static int fill_inbuf(void); | ||
237 | static void flush_window(void); | ||
238 | static void error(char *m); | 215 | static void error(char *m); |
239 | 216 | ||
240 | extern char input_data[]; | 217 | extern char input_data[]; |
241 | extern char input_data_end[]; | 218 | extern char input_data_end[]; |
242 | 219 | ||
243 | static uch *output_data; | 220 | static unsigned char *output_data; |
244 | static ulg output_ptr; | 221 | static unsigned long output_ptr; |
245 | static ulg bytes_out; | ||
246 | 222 | ||
247 | static void error(char *m); | 223 | static void error(char *m); |
248 | 224 | ||
249 | static void putstr(const char *); | 225 | static void putstr(const char *); |
250 | 226 | ||
251 | extern int end; | 227 | static unsigned long free_mem_ptr; |
252 | static ulg free_mem_ptr; | 228 | static unsigned long free_mem_end_ptr; |
253 | static ulg free_mem_end_ptr; | ||
254 | 229 | ||
255 | #ifdef STANDALONE_DEBUG | 230 | #ifdef STANDALONE_DEBUG |
256 | #define NO_INFLATE_MALLOC | 231 | #define NO_INFLATE_MALLOC |
@@ -258,46 +233,13 @@ static ulg free_mem_end_ptr; | |||
258 | 233 | ||
259 | #define ARCH_HAS_DECOMP_WDOG | 234 | #define ARCH_HAS_DECOMP_WDOG |
260 | 235 | ||
261 | #include "../../../../lib/inflate.c" | 236 | #ifdef CONFIG_KERNEL_GZIP |
262 | 237 | #include "../../../../lib/decompress_inflate.c" | |
263 | /* =========================================================================== | 238 | #endif |
264 | * Fill the input buffer. This is called only when the buffer is empty | ||
265 | * and at least one byte is really needed. | ||
266 | */ | ||
267 | int fill_inbuf(void) | ||
268 | { | ||
269 | if (insize != 0) | ||
270 | error("ran out of input data"); | ||
271 | |||
272 | inbuf = input_data; | ||
273 | insize = &input_data_end[0] - &input_data[0]; | ||
274 | |||
275 | inptr = 1; | ||
276 | return inbuf[0]; | ||
277 | } | ||
278 | 239 | ||
279 | /* =========================================================================== | 240 | #ifdef CONFIG_KERNEL_LZO |
280 | * Write the output window window[0..outcnt-1] and update crc and bytes_out. | 241 | #include "../../../../lib/decompress_unlzo.c" |
281 | * (Used for the decompressed data only.) | 242 | #endif |
282 | */ | ||
283 | void flush_window(void) | ||
284 | { | ||
285 | ulg c = crc; | ||
286 | unsigned n; | ||
287 | uch *in, *out, ch; | ||
288 | |||
289 | in = window; | ||
290 | out = &output_data[output_ptr]; | ||
291 | for (n = 0; n < outcnt; n++) { | ||
292 | ch = *out++ = *in++; | ||
293 | c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8); | ||
294 | } | ||
295 | crc = c; | ||
296 | bytes_out += (ulg)outcnt; | ||
297 | output_ptr += (ulg)outcnt; | ||
298 | outcnt = 0; | ||
299 | putstr("."); | ||
300 | } | ||
301 | 243 | ||
302 | #ifndef arch_error | 244 | #ifndef arch_error |
303 | #define arch_error(x) | 245 | #define arch_error(x) |
@@ -314,22 +256,33 @@ static void error(char *x) | |||
314 | while(1); /* Halt */ | 256 | while(1); /* Halt */ |
315 | } | 257 | } |
316 | 258 | ||
259 | asmlinkage void __div0(void) | ||
260 | { | ||
261 | error("Attempting division by 0!"); | ||
262 | } | ||
263 | |||
317 | #ifndef STANDALONE_DEBUG | 264 | #ifndef STANDALONE_DEBUG |
318 | 265 | ||
319 | ulg | 266 | unsigned long |
320 | decompress_kernel(ulg output_start, ulg free_mem_ptr_p, ulg free_mem_ptr_end_p, | 267 | decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p, |
321 | int arch_id) | 268 | unsigned long free_mem_ptr_end_p, |
269 | int arch_id) | ||
322 | { | 270 | { |
323 | output_data = (uch *)output_start; /* Points to kernel start */ | 271 | unsigned char *tmp; |
272 | |||
273 | output_data = (unsigned char *)output_start; | ||
324 | free_mem_ptr = free_mem_ptr_p; | 274 | free_mem_ptr = free_mem_ptr_p; |
325 | free_mem_end_ptr = free_mem_ptr_end_p; | 275 | free_mem_end_ptr = free_mem_ptr_end_p; |
326 | __machine_arch_type = arch_id; | 276 | __machine_arch_type = arch_id; |
327 | 277 | ||
328 | arch_decomp_setup(); | 278 | arch_decomp_setup(); |
329 | 279 | ||
330 | makecrc(); | 280 | tmp = (unsigned char *) (((unsigned long)input_data_end) - 4); |
281 | output_ptr = get_unaligned_le32(tmp); | ||
282 | |||
331 | putstr("Uncompressing Linux..."); | 283 | putstr("Uncompressing Linux..."); |
332 | gunzip(); | 284 | decompress(input_data, input_data_end - input_data, |
285 | NULL, NULL, output_data, NULL, error); | ||
333 | putstr(" done, booting the kernel.\n"); | 286 | putstr(" done, booting the kernel.\n"); |
334 | return output_ptr; | 287 | return output_ptr; |
335 | } | 288 | } |
@@ -341,11 +294,10 @@ int main() | |||
341 | { | 294 | { |
342 | output_data = output_buffer; | 295 | output_data = output_buffer; |
343 | 296 | ||
344 | makecrc(); | ||
345 | putstr("Uncompressing Linux..."); | 297 | putstr("Uncompressing Linux..."); |
346 | gunzip(); | 298 | decompress(input_data, input_data_end - input_data, |
299 | NULL, NULL, output_data, NULL, error); | ||
347 | putstr("done.\n"); | 300 | putstr("done.\n"); |
348 | return 0; | 301 | return 0; |
349 | } | 302 | } |
350 | #endif | 303 | #endif |
351 | |||
diff --git a/arch/arm/boot/compressed/piggy.gzip.S b/arch/arm/boot/compressed/piggy.gzip.S new file mode 100644 index 00000000000..a68adf91a16 --- /dev/null +++ b/arch/arm/boot/compressed/piggy.gzip.S | |||
@@ -0,0 +1,6 @@ | |||
1 | .section .piggydata,#alloc | ||
2 | .globl input_data | ||
3 | input_data: | ||
4 | .incbin "arch/arm/boot/compressed/piggy.gzip" | ||
5 | .globl input_data_end | ||
6 | input_data_end: | ||
diff --git a/arch/arm/boot/compressed/piggy.S b/arch/arm/boot/compressed/piggy.lzo.S index 54c951800eb..a425ad95959 100644 --- a/arch/arm/boot/compressed/piggy.S +++ b/arch/arm/boot/compressed/piggy.lzo.S | |||
@@ -1,6 +1,6 @@ | |||
1 | .section .piggydata,#alloc | 1 | .section .piggydata,#alloc |
2 | .globl input_data | 2 | .globl input_data |
3 | input_data: | 3 | input_data: |
4 | .incbin "arch/arm/boot/compressed/piggy.gz" | 4 | .incbin "arch/arm/boot/compressed/piggy.lzo" |
5 | .globl input_data_end | 5 | .globl input_data_end |
6 | input_data_end: | 6 | input_data_end: |
diff --git a/arch/arm/common/dmabounce.c b/arch/arm/common/dmabounce.c index bc90364a96c..cc32c1e54a5 100644 --- a/arch/arm/common/dmabounce.c +++ b/arch/arm/common/dmabounce.c | |||
@@ -312,7 +312,7 @@ static inline void unmap_single(struct device *dev, dma_addr_t dma_addr, | |||
312 | * we need to ensure that the data will be coherent | 312 | * we need to ensure that the data will be coherent |
313 | * with user mappings. | 313 | * with user mappings. |
314 | */ | 314 | */ |
315 | __cpuc_flush_kernel_dcache_area(ptr, size); | 315 | __cpuc_flush_dcache_area(ptr, size); |
316 | } | 316 | } |
317 | free_safe_buffer(dev->archdata.dmabounce, buf); | 317 | free_safe_buffer(dev->archdata.dmabounce, buf); |
318 | } | 318 | } |
diff --git a/arch/arm/configs/acs5k_defconfig b/arch/arm/configs/acs5k_defconfig index 1cab4e79d36..6e32a85641a 100644 --- a/arch/arm/configs/acs5k_defconfig +++ b/arch/arm/configs/acs5k_defconfig | |||
@@ -187,7 +187,6 @@ CONFIG_MACH_ACS5K=y | |||
187 | # | 187 | # |
188 | # Processor Type | 188 | # Processor Type |
189 | # | 189 | # |
190 | CONFIG_CPU_32=y | ||
191 | CONFIG_CPU_ARM922T=y | 190 | CONFIG_CPU_ARM922T=y |
192 | CONFIG_CPU_32v4T=y | 191 | CONFIG_CPU_32v4T=y |
193 | CONFIG_CPU_ABRT_EV4T=y | 192 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/acs5k_tiny_defconfig b/arch/arm/configs/acs5k_tiny_defconfig index 8e3d084afd7..b34b1eabac3 100644 --- a/arch/arm/configs/acs5k_tiny_defconfig +++ b/arch/arm/configs/acs5k_tiny_defconfig | |||
@@ -186,7 +186,6 @@ CONFIG_MACH_ACS5K=y | |||
186 | # | 186 | # |
187 | # Processor Type | 187 | # Processor Type |
188 | # | 188 | # |
189 | CONFIG_CPU_32=y | ||
190 | CONFIG_CPU_ARM922T=y | 189 | CONFIG_CPU_ARM922T=y |
191 | CONFIG_CPU_32v4T=y | 190 | CONFIG_CPU_32v4T=y |
192 | CONFIG_CPU_ABRT_EV4T=y | 191 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/afeb9260_defconfig b/arch/arm/configs/afeb9260_defconfig index f7a272cb3da..64fe7f10c12 100644 --- a/arch/arm/configs/afeb9260_defconfig +++ b/arch/arm/configs/afeb9260_defconfig | |||
@@ -227,7 +227,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
227 | # | 227 | # |
228 | # Processor Type | 228 | # Processor Type |
229 | # | 229 | # |
230 | CONFIG_CPU_32=y | ||
231 | CONFIG_CPU_ARM926T=y | 230 | CONFIG_CPU_ARM926T=y |
232 | CONFIG_CPU_32v5=y | 231 | CONFIG_CPU_32v5=y |
233 | CONFIG_CPU_ABRT_EV5TJ=y | 232 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/am200epdkit_defconfig b/arch/arm/configs/am200epdkit_defconfig index 5e68420f468..30927cac6a9 100644 --- a/arch/arm/configs/am200epdkit_defconfig +++ b/arch/arm/configs/am200epdkit_defconfig | |||
@@ -189,7 +189,6 @@ CONFIG_PXA25x=y | |||
189 | # | 189 | # |
190 | # Processor Type | 190 | # Processor Type |
191 | # | 191 | # |
192 | CONFIG_CPU_32=y | ||
193 | CONFIG_CPU_XSCALE=y | 192 | CONFIG_CPU_XSCALE=y |
194 | CONFIG_CPU_32v5=y | 193 | CONFIG_CPU_32v5=y |
195 | CONFIG_CPU_ABRT_EV5T=y | 194 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/am3517_evm_defconfig b/arch/arm/configs/am3517_evm_defconfig index ad54e92dd43..abe9966781c 100644 --- a/arch/arm/configs/am3517_evm_defconfig +++ b/arch/arm/configs/am3517_evm_defconfig | |||
@@ -233,7 +233,6 @@ CONFIG_MACH_OMAP3517EVM=y | |||
233 | # | 233 | # |
234 | # Processor Type | 234 | # Processor Type |
235 | # | 235 | # |
236 | CONFIG_CPU_32=y | ||
237 | CONFIG_CPU_32v6K=y | 236 | CONFIG_CPU_32v6K=y |
238 | CONFIG_CPU_V7=y | 237 | CONFIG_CPU_V7=y |
239 | CONFIG_CPU_32v7=y | 238 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/ams_delta_defconfig b/arch/arm/configs/ams_delta_defconfig index e8f7380b67d..3b3a3775bbf 100644 --- a/arch/arm/configs/ams_delta_defconfig +++ b/arch/arm/configs/ams_delta_defconfig | |||
@@ -210,7 +210,6 @@ CONFIG_OMAP_ARM_150MHZ=y | |||
210 | # | 210 | # |
211 | # Processor Type | 211 | # Processor Type |
212 | # | 212 | # |
213 | CONFIG_CPU_32=y | ||
214 | CONFIG_CPU_ARM925T=y | 213 | CONFIG_CPU_ARM925T=y |
215 | CONFIG_CPU_32v4T=y | 214 | CONFIG_CPU_32v4T=y |
216 | CONFIG_CPU_ABRT_EV4T=y | 215 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/assabet_defconfig b/arch/arm/configs/assabet_defconfig index c66dd399e42..daa75bc98d4 100644 --- a/arch/arm/configs/assabet_defconfig +++ b/arch/arm/configs/assabet_defconfig | |||
@@ -101,7 +101,6 @@ CONFIG_SA1100_ASSABET=y | |||
101 | # | 101 | # |
102 | # Processor Type | 102 | # Processor Type |
103 | # | 103 | # |
104 | CONFIG_CPU_32=y | ||
105 | CONFIG_CPU_SA1100=y | 104 | CONFIG_CPU_SA1100=y |
106 | CONFIG_CPU_32v4=y | 105 | CONFIG_CPU_32v4=y |
107 | CONFIG_CPU_ABRT_EV4=y | 106 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/at91cap9adk_defconfig b/arch/arm/configs/at91cap9adk_defconfig index bc6bd9f6174..b1ab50bee46 100644 --- a/arch/arm/configs/at91cap9adk_defconfig +++ b/arch/arm/configs/at91cap9adk_defconfig | |||
@@ -181,7 +181,6 @@ CONFIG_AT91_TIMER_HZ=100 | |||
181 | # | 181 | # |
182 | # Processor Type | 182 | # Processor Type |
183 | # | 183 | # |
184 | CONFIG_CPU_32=y | ||
185 | CONFIG_CPU_ARM926T=y | 184 | CONFIG_CPU_ARM926T=y |
186 | CONFIG_CPU_32v5=y | 185 | CONFIG_CPU_32v5=y |
187 | CONFIG_CPU_ABRT_EV5TJ=y | 186 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/at91rm9200dk_defconfig b/arch/arm/configs/at91rm9200dk_defconfig index c97e1022ada..1fffec86a11 100644 --- a/arch/arm/configs/at91rm9200dk_defconfig +++ b/arch/arm/configs/at91rm9200dk_defconfig | |||
@@ -130,7 +130,6 @@ CONFIG_AT91_PROGRAMMABLE_CLOCKS=y | |||
130 | # | 130 | # |
131 | # Processor Type | 131 | # Processor Type |
132 | # | 132 | # |
133 | CONFIG_CPU_32=y | ||
134 | CONFIG_CPU_ARM920T=y | 133 | CONFIG_CPU_ARM920T=y |
135 | CONFIG_CPU_32v4=y | 134 | CONFIG_CPU_32v4=y |
136 | CONFIG_CPU_ABRT_EV4T=y | 135 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/at91rm9200ek_defconfig b/arch/arm/configs/at91rm9200ek_defconfig index 9f7a99ace51..c846a795d1d 100644 --- a/arch/arm/configs/at91rm9200ek_defconfig +++ b/arch/arm/configs/at91rm9200ek_defconfig | |||
@@ -129,7 +129,6 @@ CONFIG_AT91_PROGRAMMABLE_CLOCKS=y | |||
129 | # | 129 | # |
130 | # Processor Type | 130 | # Processor Type |
131 | # | 131 | # |
132 | CONFIG_CPU_32=y | ||
133 | CONFIG_CPU_ARM920T=y | 132 | CONFIG_CPU_ARM920T=y |
134 | CONFIG_CPU_32v4=y | 133 | CONFIG_CPU_32v4=y |
135 | CONFIG_CPU_ABRT_EV4T=y | 134 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/at91sam9260ek_defconfig b/arch/arm/configs/at91sam9260ek_defconfig index 98e2f3de4bc..472ea11eedf 100644 --- a/arch/arm/configs/at91sam9260ek_defconfig +++ b/arch/arm/configs/at91sam9260ek_defconfig | |||
@@ -188,7 +188,6 @@ CONFIG_AT91_TIMER_HZ=100 | |||
188 | # | 188 | # |
189 | # Processor Type | 189 | # Processor Type |
190 | # | 190 | # |
191 | CONFIG_CPU_32=y | ||
192 | CONFIG_CPU_ARM926T=y | 191 | CONFIG_CPU_ARM926T=y |
193 | CONFIG_CPU_32v5=y | 192 | CONFIG_CPU_32v5=y |
194 | CONFIG_CPU_ABRT_EV5TJ=y | 193 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/at91sam9261ek_defconfig b/arch/arm/configs/at91sam9261ek_defconfig index 14945614239..4ecde429cf1 100644 --- a/arch/arm/configs/at91sam9261ek_defconfig +++ b/arch/arm/configs/at91sam9261ek_defconfig | |||
@@ -181,7 +181,6 @@ CONFIG_AT91_TIMER_HZ=100 | |||
181 | # | 181 | # |
182 | # Processor Type | 182 | # Processor Type |
183 | # | 183 | # |
184 | CONFIG_CPU_32=y | ||
185 | CONFIG_CPU_ARM926T=y | 184 | CONFIG_CPU_ARM926T=y |
186 | CONFIG_CPU_32v5=y | 185 | CONFIG_CPU_32v5=y |
187 | CONFIG_CPU_ABRT_EV5TJ=y | 186 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/at91sam9263ek_defconfig b/arch/arm/configs/at91sam9263ek_defconfig index 21599f3c627..9b792b60c7f 100644 --- a/arch/arm/configs/at91sam9263ek_defconfig +++ b/arch/arm/configs/at91sam9263ek_defconfig | |||
@@ -181,7 +181,6 @@ CONFIG_AT91_TIMER_HZ=100 | |||
181 | # | 181 | # |
182 | # Processor Type | 182 | # Processor Type |
183 | # | 183 | # |
184 | CONFIG_CPU_32=y | ||
185 | CONFIG_CPU_ARM926T=y | 184 | CONFIG_CPU_ARM926T=y |
186 | CONFIG_CPU_32v5=y | 185 | CONFIG_CPU_32v5=y |
187 | CONFIG_CPU_ABRT_EV5TJ=y | 186 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/at91sam9g20ek_defconfig b/arch/arm/configs/at91sam9g20ek_defconfig index 7e018a04c31..64ce106d53e 100644 --- a/arch/arm/configs/at91sam9g20ek_defconfig +++ b/arch/arm/configs/at91sam9g20ek_defconfig | |||
@@ -187,7 +187,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
187 | # | 187 | # |
188 | # Processor Type | 188 | # Processor Type |
189 | # | 189 | # |
190 | CONFIG_CPU_32=y | ||
191 | CONFIG_CPU_ARM926T=y | 190 | CONFIG_CPU_ARM926T=y |
192 | CONFIG_CPU_32v5=y | 191 | CONFIG_CPU_32v5=y |
193 | CONFIG_CPU_ABRT_EV5TJ=y | 192 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/at91sam9rlek_defconfig b/arch/arm/configs/at91sam9rlek_defconfig index e2df81a3e80..90e48bfda16 100644 --- a/arch/arm/configs/at91sam9rlek_defconfig +++ b/arch/arm/configs/at91sam9rlek_defconfig | |||
@@ -179,7 +179,6 @@ CONFIG_AT91_TIMER_HZ=100 | |||
179 | # | 179 | # |
180 | # Processor Type | 180 | # Processor Type |
181 | # | 181 | # |
182 | CONFIG_CPU_32=y | ||
183 | CONFIG_CPU_ARM926T=y | 182 | CONFIG_CPU_ARM926T=y |
184 | CONFIG_CPU_32v5=y | 183 | CONFIG_CPU_32v5=y |
185 | CONFIG_CPU_ABRT_EV5TJ=y | 184 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/ateb9200_defconfig b/arch/arm/configs/ateb9200_defconfig index a19e824cf7f..6315534976c 100644 --- a/arch/arm/configs/ateb9200_defconfig +++ b/arch/arm/configs/ateb9200_defconfig | |||
@@ -132,7 +132,6 @@ CONFIG_MACH_ATEB9200=y | |||
132 | # | 132 | # |
133 | # Processor Type | 133 | # Processor Type |
134 | # | 134 | # |
135 | CONFIG_CPU_32=y | ||
136 | CONFIG_CPU_ARM920T=y | 135 | CONFIG_CPU_ARM920T=y |
137 | CONFIG_CPU_32v4=y | 136 | CONFIG_CPU_32v4=y |
138 | CONFIG_CPU_ABRT_EV4T=y | 137 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/badge4_defconfig b/arch/arm/configs/badge4_defconfig index f264846218a..b175b6b8feb 100644 --- a/arch/arm/configs/badge4_defconfig +++ b/arch/arm/configs/badge4_defconfig | |||
@@ -103,7 +103,6 @@ CONFIG_SA1100_BADGE4=y | |||
103 | # | 103 | # |
104 | # Processor Type | 104 | # Processor Type |
105 | # | 105 | # |
106 | CONFIG_CPU_32=y | ||
107 | CONFIG_CPU_SA1100=y | 106 | CONFIG_CPU_SA1100=y |
108 | CONFIG_CPU_32v4=y | 107 | CONFIG_CPU_32v4=y |
109 | CONFIG_CPU_ABRT_EV4=y | 108 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/bcmring_defconfig b/arch/arm/configs/bcmring_defconfig index bcc0bac551a..1e12167c89b 100644 --- a/arch/arm/configs/bcmring_defconfig +++ b/arch/arm/configs/bcmring_defconfig | |||
@@ -181,7 +181,6 @@ CONFIG_BCM_ZRELADDR=0x8000 | |||
181 | # | 181 | # |
182 | # Processor Type | 182 | # Processor Type |
183 | # | 183 | # |
184 | CONFIG_CPU_32=y | ||
185 | CONFIG_CPU_V6=y | 184 | CONFIG_CPU_V6=y |
186 | CONFIG_CPU_32v6K=y | 185 | CONFIG_CPU_32v6K=y |
187 | CONFIG_CPU_32v6=y | 186 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/cam60_defconfig b/arch/arm/configs/cam60_defconfig index 8448108347c..eef33de3ca1 100644 --- a/arch/arm/configs/cam60_defconfig +++ b/arch/arm/configs/cam60_defconfig | |||
@@ -196,7 +196,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
196 | # | 196 | # |
197 | # Processor Type | 197 | # Processor Type |
198 | # | 198 | # |
199 | CONFIG_CPU_32=y | ||
200 | CONFIG_CPU_ARM926T=y | 199 | CONFIG_CPU_ARM926T=y |
201 | CONFIG_CPU_32v5=y | 200 | CONFIG_CPU_32v5=y |
202 | CONFIG_CPU_ABRT_EV5TJ=y | 201 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/carmeva_defconfig b/arch/arm/configs/carmeva_defconfig index d392833b31f..b6a70630678 100644 --- a/arch/arm/configs/carmeva_defconfig +++ b/arch/arm/configs/carmeva_defconfig | |||
@@ -97,7 +97,6 @@ CONFIG_MACH_CARMEVA=y | |||
97 | # | 97 | # |
98 | # Processor Type | 98 | # Processor Type |
99 | # | 99 | # |
100 | CONFIG_CPU_32=y | ||
101 | CONFIG_CPU_ARM920T=y | 100 | CONFIG_CPU_ARM920T=y |
102 | CONFIG_CPU_32v4=y | 101 | CONFIG_CPU_32v4=y |
103 | CONFIG_CPU_ABRT_EV4T=y | 102 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/cerfcube_defconfig b/arch/arm/configs/cerfcube_defconfig index 2b4c0668b1b..d662cab9cc2 100644 --- a/arch/arm/configs/cerfcube_defconfig +++ b/arch/arm/configs/cerfcube_defconfig | |||
@@ -105,7 +105,6 @@ CONFIG_SA1100_CERF_FLASH_16MB=y | |||
105 | # | 105 | # |
106 | # Processor Type | 106 | # Processor Type |
107 | # | 107 | # |
108 | CONFIG_CPU_32=y | ||
109 | CONFIG_CPU_SA1100=y | 108 | CONFIG_CPU_SA1100=y |
110 | CONFIG_CPU_32v4=y | 109 | CONFIG_CPU_32v4=y |
111 | CONFIG_CPU_ABRT_EV4=y | 110 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/cm_t35_defconfig b/arch/arm/configs/cm_t35_defconfig index e42c5c873eb..893cd267e07 100644 --- a/arch/arm/configs/cm_t35_defconfig +++ b/arch/arm/configs/cm_t35_defconfig | |||
@@ -236,7 +236,6 @@ CONFIG_MACH_CM_T35=y | |||
236 | # | 236 | # |
237 | # Processor Type | 237 | # Processor Type |
238 | # | 238 | # |
239 | CONFIG_CPU_32=y | ||
240 | CONFIG_CPU_32v6K=y | 239 | CONFIG_CPU_32v6K=y |
241 | CONFIG_CPU_V7=y | 240 | CONFIG_CPU_V7=y |
242 | CONFIG_CPU_32v7=y | 241 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/cm_x2xx_defconfig b/arch/arm/configs/cm_x2xx_defconfig index 797b790cba7..47d22d09e70 100644 --- a/arch/arm/configs/cm_x2xx_defconfig +++ b/arch/arm/configs/cm_x2xx_defconfig | |||
@@ -205,7 +205,6 @@ CONFIG_PXA_SSP=y | |||
205 | # | 205 | # |
206 | # Processor Type | 206 | # Processor Type |
207 | # | 207 | # |
208 | CONFIG_CPU_32=y | ||
209 | CONFIG_CPU_XSCALE=y | 208 | CONFIG_CPU_XSCALE=y |
210 | CONFIG_CPU_32v5=y | 209 | CONFIG_CPU_32v5=y |
211 | CONFIG_CPU_ABRT_EV5T=y | 210 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/cm_x300_defconfig b/arch/arm/configs/cm_x300_defconfig index a0170867130..a334069c790 100644 --- a/arch/arm/configs/cm_x300_defconfig +++ b/arch/arm/configs/cm_x300_defconfig | |||
@@ -247,7 +247,6 @@ CONFIG_PLAT_PXA=y | |||
247 | # | 247 | # |
248 | # Processor Type | 248 | # Processor Type |
249 | # | 249 | # |
250 | CONFIG_CPU_32=y | ||
251 | CONFIG_CPU_XSC3=y | 250 | CONFIG_CPU_XSC3=y |
252 | CONFIG_CPU_32v5=y | 251 | CONFIG_CPU_32v5=y |
253 | CONFIG_CPU_ABRT_EV5T=y | 252 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/colibri_pxa270_defconfig b/arch/arm/configs/colibri_pxa270_defconfig index 4cf3bde1c52..c962870b3f8 100644 --- a/arch/arm/configs/colibri_pxa270_defconfig +++ b/arch/arm/configs/colibri_pxa270_defconfig | |||
@@ -204,7 +204,6 @@ CONFIG_PXA27x=y | |||
204 | # | 204 | # |
205 | # Processor Type | 205 | # Processor Type |
206 | # | 206 | # |
207 | CONFIG_CPU_32=y | ||
208 | CONFIG_CPU_XSCALE=y | 207 | CONFIG_CPU_XSCALE=y |
209 | CONFIG_CPU_32v5=y | 208 | CONFIG_CPU_32v5=y |
210 | CONFIG_CPU_ABRT_EV5T=y | 209 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/colibri_pxa300_defconfig b/arch/arm/configs/colibri_pxa300_defconfig index 4774a36fa74..11fdb5afdec 100644 --- a/arch/arm/configs/colibri_pxa300_defconfig +++ b/arch/arm/configs/colibri_pxa300_defconfig | |||
@@ -212,7 +212,6 @@ CONFIG_PXA3xx=y | |||
212 | # | 212 | # |
213 | # Processor Type | 213 | # Processor Type |
214 | # | 214 | # |
215 | CONFIG_CPU_32=y | ||
216 | CONFIG_CPU_XSC3=y | 215 | CONFIG_CPU_XSC3=y |
217 | CONFIG_CPU_32v5=y | 216 | CONFIG_CPU_32v5=y |
218 | CONFIG_CPU_ABRT_EV5T=y | 217 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/collie_defconfig b/arch/arm/configs/collie_defconfig index 1aa62249031..26e458d8263 100644 --- a/arch/arm/configs/collie_defconfig +++ b/arch/arm/configs/collie_defconfig | |||
@@ -125,7 +125,6 @@ CONFIG_SA1100_COLLIE=y | |||
125 | # | 125 | # |
126 | # Processor Type | 126 | # Processor Type |
127 | # | 127 | # |
128 | CONFIG_CPU_32=y | ||
129 | CONFIG_CPU_SA1100=y | 128 | CONFIG_CPU_SA1100=y |
130 | CONFIG_CPU_32v4=y | 129 | CONFIG_CPU_32v4=y |
131 | CONFIG_CPU_ABRT_EV4=y | 130 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/corgi_defconfig b/arch/arm/configs/corgi_defconfig index d6cd165e931..5e4069f4275 100644 --- a/arch/arm/configs/corgi_defconfig +++ b/arch/arm/configs/corgi_defconfig | |||
@@ -214,7 +214,6 @@ CONFIG_PXA_HAVE_BOARD_IRQS=y | |||
214 | # | 214 | # |
215 | # Processor Type | 215 | # Processor Type |
216 | # | 216 | # |
217 | CONFIG_CPU_32=y | ||
218 | CONFIG_CPU_XSCALE=y | 217 | CONFIG_CPU_XSCALE=y |
219 | CONFIG_CPU_32v5=y | 218 | CONFIG_CPU_32v5=y |
220 | CONFIG_CPU_ABRT_EV5T=y | 219 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/cpu9260_defconfig b/arch/arm/configs/cpu9260_defconfig index 601e7f3d5e9..c9137aaf23a 100644 --- a/arch/arm/configs/cpu9260_defconfig +++ b/arch/arm/configs/cpu9260_defconfig | |||
@@ -229,7 +229,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
229 | # | 229 | # |
230 | # Processor Type | 230 | # Processor Type |
231 | # | 231 | # |
232 | CONFIG_CPU_32=y | ||
233 | CONFIG_CPU_ARM926T=y | 232 | CONFIG_CPU_ARM926T=y |
234 | CONFIG_CPU_32v5=y | 233 | CONFIG_CPU_32v5=y |
235 | CONFIG_CPU_ABRT_EV5TJ=y | 234 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/cpu9g20_defconfig b/arch/arm/configs/cpu9g20_defconfig index b5b9cbbc697..d2344799171 100644 --- a/arch/arm/configs/cpu9g20_defconfig +++ b/arch/arm/configs/cpu9g20_defconfig | |||
@@ -219,7 +219,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
219 | # | 219 | # |
220 | # Processor Type | 220 | # Processor Type |
221 | # | 221 | # |
222 | CONFIG_CPU_32=y | ||
223 | CONFIG_CPU_ARM926T=y | 222 | CONFIG_CPU_ARM926T=y |
224 | CONFIG_CPU_32v5=y | 223 | CONFIG_CPU_32v5=y |
225 | CONFIG_CPU_ABRT_EV5TJ=y | 224 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/cpuat91_defconfig b/arch/arm/configs/cpuat91_defconfig index 4901827253f..1f8dda6e37c 100644 --- a/arch/arm/configs/cpuat91_defconfig +++ b/arch/arm/configs/cpuat91_defconfig | |||
@@ -230,7 +230,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
230 | # | 230 | # |
231 | # Processor Type | 231 | # Processor Type |
232 | # | 232 | # |
233 | CONFIG_CPU_32=y | ||
234 | CONFIG_CPU_ARM920T=y | 233 | CONFIG_CPU_ARM920T=y |
235 | CONFIG_CPU_32v4T=y | 234 | CONFIG_CPU_32v4T=y |
236 | CONFIG_CPU_ABRT_EV4T=y | 235 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/csb337_defconfig b/arch/arm/configs/csb337_defconfig index 29f68c2effe..f095040dab0 100644 --- a/arch/arm/configs/csb337_defconfig +++ b/arch/arm/configs/csb337_defconfig | |||
@@ -193,7 +193,6 @@ CONFIG_AT91_TIMER_HZ=128 | |||
193 | # | 193 | # |
194 | # Processor Type | 194 | # Processor Type |
195 | # | 195 | # |
196 | CONFIG_CPU_32=y | ||
197 | CONFIG_CPU_ARM920T=y | 196 | CONFIG_CPU_ARM920T=y |
198 | CONFIG_CPU_32v4T=y | 197 | CONFIG_CPU_32v4T=y |
199 | CONFIG_CPU_ABRT_EV4T=y | 198 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/csb637_defconfig b/arch/arm/configs/csb637_defconfig index f7b60ceed6c..507154016fc 100644 --- a/arch/arm/configs/csb637_defconfig +++ b/arch/arm/configs/csb637_defconfig | |||
@@ -215,7 +215,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
215 | # | 215 | # |
216 | # Processor Type | 216 | # Processor Type |
217 | # | 217 | # |
218 | CONFIG_CPU_32=y | ||
219 | CONFIG_CPU_ARM920T=y | 218 | CONFIG_CPU_ARM920T=y |
220 | CONFIG_CPU_32v4T=y | 219 | CONFIG_CPU_32v4T=y |
221 | CONFIG_CPU_ABRT_EV4T=y | 220 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/da8xx_omapl_defconfig b/arch/arm/configs/da8xx_omapl_defconfig index 50bd25a10f0..e14c99c2b57 100644 --- a/arch/arm/configs/da8xx_omapl_defconfig +++ b/arch/arm/configs/da8xx_omapl_defconfig | |||
@@ -225,7 +225,6 @@ CONFIG_DAVINCI_RESET_CLOCKS=y | |||
225 | # | 225 | # |
226 | # Processor Type | 226 | # Processor Type |
227 | # | 227 | # |
228 | CONFIG_CPU_32=y | ||
229 | CONFIG_CPU_ARM926T=y | 228 | CONFIG_CPU_ARM926T=y |
230 | CONFIG_CPU_32v5=y | 229 | CONFIG_CPU_32v5=y |
231 | CONFIG_CPU_ABRT_EV5TJ=y | 230 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/davinci_all_defconfig b/arch/arm/configs/davinci_all_defconfig index bd656e8e6e4..625035fd0a6 100644 --- a/arch/arm/configs/davinci_all_defconfig +++ b/arch/arm/configs/davinci_all_defconfig | |||
@@ -223,7 +223,6 @@ CONFIG_DAVINCI_RESET_CLOCKS=y | |||
223 | # | 223 | # |
224 | # Processor Type | 224 | # Processor Type |
225 | # | 225 | # |
226 | CONFIG_CPU_32=y | ||
227 | CONFIG_CPU_ARM926T=y | 226 | CONFIG_CPU_ARM926T=y |
228 | CONFIG_CPU_32v5=y | 227 | CONFIG_CPU_32v5=y |
229 | CONFIG_CPU_ABRT_EV5TJ=y | 228 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/dove_defconfig b/arch/arm/configs/dove_defconfig index b3a491675d5..b7b2ab088dd 100644 --- a/arch/arm/configs/dove_defconfig +++ b/arch/arm/configs/dove_defconfig | |||
@@ -186,7 +186,6 @@ CONFIG_PLAT_ORION=y | |||
186 | # | 186 | # |
187 | # Processor Type | 187 | # Processor Type |
188 | # | 188 | # |
189 | CONFIG_CPU_32=y | ||
190 | CONFIG_CPU_V6=y | 189 | CONFIG_CPU_V6=y |
191 | CONFIG_CPU_32v6K=y | 190 | CONFIG_CPU_32v6K=y |
192 | CONFIG_CPU_32v6=y | 191 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/ebsa110_defconfig b/arch/arm/configs/ebsa110_defconfig index afcfff6140f..d5e82796911 100644 --- a/arch/arm/configs/ebsa110_defconfig +++ b/arch/arm/configs/ebsa110_defconfig | |||
@@ -83,7 +83,6 @@ CONFIG_ARCH_EBSA110=y | |||
83 | # | 83 | # |
84 | # Processor Type | 84 | # Processor Type |
85 | # | 85 | # |
86 | CONFIG_CPU_32=y | ||
87 | CONFIG_CPU_SA110=y | 86 | CONFIG_CPU_SA110=y |
88 | CONFIG_CPU_32v4=y | 87 | CONFIG_CPU_32v4=y |
89 | CONFIG_CPU_ABRT_EV4=y | 88 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/ecbat91_defconfig b/arch/arm/configs/ecbat91_defconfig index ca520733bdb..25dd53b7cef 100644 --- a/arch/arm/configs/ecbat91_defconfig +++ b/arch/arm/configs/ecbat91_defconfig | |||
@@ -186,7 +186,6 @@ CONFIG_AT91_PROGRAMMABLE_CLOCKS=y | |||
186 | # | 186 | # |
187 | # Processor Type | 187 | # Processor Type |
188 | # | 188 | # |
189 | CONFIG_CPU_32=y | ||
190 | CONFIG_CPU_ARM920T=y | 189 | CONFIG_CPU_ARM920T=y |
191 | CONFIG_CPU_32v4T=y | 190 | CONFIG_CPU_32v4T=y |
192 | CONFIG_CPU_ABRT_EV4T=y | 191 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/edb7211_defconfig b/arch/arm/configs/edb7211_defconfig index 6ba7355ff85..e3a6cd32669 100644 --- a/arch/arm/configs/edb7211_defconfig +++ b/arch/arm/configs/edb7211_defconfig | |||
@@ -90,7 +90,6 @@ CONFIG_ARCH_EP7211=y | |||
90 | # | 90 | # |
91 | # Processor Type | 91 | # Processor Type |
92 | # | 92 | # |
93 | CONFIG_CPU_32=y | ||
94 | CONFIG_CPU_ARM720T=y | 93 | CONFIG_CPU_ARM720T=y |
95 | CONFIG_CPU_32v4=y | 94 | CONFIG_CPU_32v4=y |
96 | CONFIG_CPU_ABRT_LV4T=y | 95 | CONFIG_CPU_ABRT_LV4T=y |
diff --git a/arch/arm/configs/em_x270_defconfig b/arch/arm/configs/em_x270_defconfig index e9955b786c8..2bee932439f 100644 --- a/arch/arm/configs/em_x270_defconfig +++ b/arch/arm/configs/em_x270_defconfig | |||
@@ -202,7 +202,6 @@ CONFIG_PXA_SSP=y | |||
202 | # | 202 | # |
203 | # Processor Type | 203 | # Processor Type |
204 | # | 204 | # |
205 | CONFIG_CPU_32=y | ||
206 | CONFIG_CPU_XSCALE=y | 205 | CONFIG_CPU_XSCALE=y |
207 | CONFIG_CPU_32v5=y | 206 | CONFIG_CPU_32v5=y |
208 | CONFIG_CPU_ABRT_EV5T=y | 207 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/ep93xx_defconfig b/arch/arm/configs/ep93xx_defconfig index 3fb083b81b0..35d735ede9b 100644 --- a/arch/arm/configs/ep93xx_defconfig +++ b/arch/arm/configs/ep93xx_defconfig | |||
@@ -198,7 +198,6 @@ CONFIG_EP93XX_EARLY_UART1=y | |||
198 | # | 198 | # |
199 | # Processor Type | 199 | # Processor Type |
200 | # | 200 | # |
201 | CONFIG_CPU_32=y | ||
202 | CONFIG_CPU_ARM920T=y | 201 | CONFIG_CPU_ARM920T=y |
203 | CONFIG_CPU_32v4T=y | 202 | CONFIG_CPU_32v4T=y |
204 | CONFIG_CPU_ABRT_EV4T=y | 203 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/eseries_pxa_defconfig b/arch/arm/configs/eseries_pxa_defconfig index b6c5cbbf4c8..74baf570929 100644 --- a/arch/arm/configs/eseries_pxa_defconfig +++ b/arch/arm/configs/eseries_pxa_defconfig | |||
@@ -203,7 +203,6 @@ CONFIG_PXA_HAVE_BOARD_IRQS=y | |||
203 | # | 203 | # |
204 | # Processor Type | 204 | # Processor Type |
205 | # | 205 | # |
206 | CONFIG_CPU_32=y | ||
207 | CONFIG_CPU_XSCALE=y | 206 | CONFIG_CPU_XSCALE=y |
208 | CONFIG_CPU_32v5=y | 207 | CONFIG_CPU_32v5=y |
209 | CONFIG_CPU_ABRT_EV5T=y | 208 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/ezx_defconfig b/arch/arm/configs/ezx_defconfig index 492f29aba33..9e9057c5a2a 100644 --- a/arch/arm/configs/ezx_defconfig +++ b/arch/arm/configs/ezx_defconfig | |||
@@ -240,7 +240,6 @@ CONFIG_PLAT_PXA=y | |||
240 | # | 240 | # |
241 | # Processor Type | 241 | # Processor Type |
242 | # | 242 | # |
243 | CONFIG_CPU_32=y | ||
244 | CONFIG_CPU_XSCALE=y | 243 | CONFIG_CPU_XSCALE=y |
245 | CONFIG_CPU_32v5=y | 244 | CONFIG_CPU_32v5=y |
246 | CONFIG_CPU_ABRT_EV5T=y | 245 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/footbridge_defconfig b/arch/arm/configs/footbridge_defconfig index 6ace512fa10..04d97937afe 100644 --- a/arch/arm/configs/footbridge_defconfig +++ b/arch/arm/configs/footbridge_defconfig | |||
@@ -95,7 +95,6 @@ CONFIG_ARCH_EBSA285=y | |||
95 | # | 95 | # |
96 | # Processor Type | 96 | # Processor Type |
97 | # | 97 | # |
98 | CONFIG_CPU_32=y | ||
99 | CONFIG_CPU_SA110=y | 98 | CONFIG_CPU_SA110=y |
100 | CONFIG_CPU_32v4=y | 99 | CONFIG_CPU_32v4=y |
101 | CONFIG_CPU_ABRT_EV4=y | 100 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/fortunet_defconfig b/arch/arm/configs/fortunet_defconfig index 65dc73a88c4..d58142bf6fa 100644 --- a/arch/arm/configs/fortunet_defconfig +++ b/arch/arm/configs/fortunet_defconfig | |||
@@ -88,7 +88,6 @@ CONFIG_ARCH_FORTUNET=y | |||
88 | # | 88 | # |
89 | # Processor Type | 89 | # Processor Type |
90 | # | 90 | # |
91 | CONFIG_CPU_32=y | ||
92 | CONFIG_CPU_ARM720T=y | 91 | CONFIG_CPU_ARM720T=y |
93 | CONFIG_CPU_32v4=y | 92 | CONFIG_CPU_32v4=y |
94 | CONFIG_CPU_ABRT_LV4T=y | 93 | CONFIG_CPU_ABRT_LV4T=y |
diff --git a/arch/arm/configs/h3600_defconfig b/arch/arm/configs/h3600_defconfig index efa78e144e5..a8ad8fbe118 100644 --- a/arch/arm/configs/h3600_defconfig +++ b/arch/arm/configs/h3600_defconfig | |||
@@ -205,7 +205,6 @@ CONFIG_SA1100_H3600=y | |||
205 | # | 205 | # |
206 | # Processor Type | 206 | # Processor Type |
207 | # | 207 | # |
208 | CONFIG_CPU_32=y | ||
209 | CONFIG_CPU_SA1100=y | 208 | CONFIG_CPU_SA1100=y |
210 | CONFIG_CPU_32v4=y | 209 | CONFIG_CPU_32v4=y |
211 | CONFIG_CPU_ABRT_EV4=y | 210 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/h5000_defconfig b/arch/arm/configs/h5000_defconfig index 649baa37049..5bb73728fad 100644 --- a/arch/arm/configs/h5000_defconfig +++ b/arch/arm/configs/h5000_defconfig | |||
@@ -206,7 +206,6 @@ CONFIG_PXA25x=y | |||
206 | # | 206 | # |
207 | # Processor Type | 207 | # Processor Type |
208 | # | 208 | # |
209 | CONFIG_CPU_32=y | ||
210 | CONFIG_CPU_XSCALE=y | 209 | CONFIG_CPU_XSCALE=y |
211 | CONFIG_CPU_32v5=y | 210 | CONFIG_CPU_32v5=y |
212 | CONFIG_CPU_ABRT_EV5T=y | 211 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/h7201_defconfig b/arch/arm/configs/h7201_defconfig index 116920aecef..09a6c6a27bd 100644 --- a/arch/arm/configs/h7201_defconfig +++ b/arch/arm/configs/h7201_defconfig | |||
@@ -87,7 +87,6 @@ CONFIG_CPU_H7201=y | |||
87 | # | 87 | # |
88 | # Processor Type | 88 | # Processor Type |
89 | # | 89 | # |
90 | CONFIG_CPU_32=y | ||
91 | CONFIG_CPU_ARM720T=y | 90 | CONFIG_CPU_ARM720T=y |
92 | CONFIG_CPU_32v4=y | 91 | CONFIG_CPU_32v4=y |
93 | CONFIG_CPU_ABRT_LV4T=y | 92 | CONFIG_CPU_ABRT_LV4T=y |
diff --git a/arch/arm/configs/h7202_defconfig b/arch/arm/configs/h7202_defconfig index 0e739af5271..fedc52bd22b 100644 --- a/arch/arm/configs/h7202_defconfig +++ b/arch/arm/configs/h7202_defconfig | |||
@@ -91,7 +91,6 @@ CONFIG_CPU_H7202=y | |||
91 | # | 91 | # |
92 | # Processor Type | 92 | # Processor Type |
93 | # | 93 | # |
94 | CONFIG_CPU_32=y | ||
95 | CONFIG_CPU_ARM720T=y | 94 | CONFIG_CPU_ARM720T=y |
96 | CONFIG_CPU_32v4=y | 95 | CONFIG_CPU_32v4=y |
97 | CONFIG_CPU_ABRT_LV4T=y | 96 | CONFIG_CPU_ABRT_LV4T=y |
diff --git a/arch/arm/configs/hackkit_defconfig b/arch/arm/configs/hackkit_defconfig index db0708d5cbe..2da1acf41f4 100644 --- a/arch/arm/configs/hackkit_defconfig +++ b/arch/arm/configs/hackkit_defconfig | |||
@@ -103,7 +103,6 @@ CONFIG_SA1100_HACKKIT=y | |||
103 | # | 103 | # |
104 | # Processor Type | 104 | # Processor Type |
105 | # | 105 | # |
106 | CONFIG_CPU_32=y | ||
107 | CONFIG_CPU_SA1100=y | 106 | CONFIG_CPU_SA1100=y |
108 | CONFIG_CPU_32v4=y | 107 | CONFIG_CPU_32v4=y |
109 | CONFIG_CPU_ABRT_EV4=y | 108 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/htcherald_defconfig b/arch/arm/configs/htcherald_defconfig index 1b39691b816..e0ef0d121aa 100644 --- a/arch/arm/configs/htcherald_defconfig +++ b/arch/arm/configs/htcherald_defconfig | |||
@@ -241,7 +241,6 @@ CONFIG_OMAP_ARM_195MHZ=y | |||
241 | # | 241 | # |
242 | # Processor Type | 242 | # Processor Type |
243 | # | 243 | # |
244 | CONFIG_CPU_32=y | ||
245 | CONFIG_CPU_ARM925T=y | 244 | CONFIG_CPU_ARM925T=y |
246 | CONFIG_CPU_ARM926T=y | 245 | CONFIG_CPU_ARM926T=y |
247 | CONFIG_CPU_32v4T=y | 246 | CONFIG_CPU_32v4T=y |
diff --git a/arch/arm/configs/igep0020_defconfig b/arch/arm/configs/igep0020_defconfig index c97f8d0ded4..a192248c6dd 100644 --- a/arch/arm/configs/igep0020_defconfig +++ b/arch/arm/configs/igep0020_defconfig | |||
@@ -238,7 +238,6 @@ CONFIG_MACH_IGEP0020=y | |||
238 | # | 238 | # |
239 | # Processor Type | 239 | # Processor Type |
240 | # | 240 | # |
241 | CONFIG_CPU_32=y | ||
242 | CONFIG_CPU_32v6K=y | 241 | CONFIG_CPU_32v6K=y |
243 | CONFIG_CPU_V7=y | 242 | CONFIG_CPU_V7=y |
244 | CONFIG_CPU_32v7=y | 243 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/integrator_defconfig b/arch/arm/configs/integrator_defconfig index 3ce96e60b40..6b0d0439563 100644 --- a/arch/arm/configs/integrator_defconfig +++ b/arch/arm/configs/integrator_defconfig | |||
@@ -92,7 +92,6 @@ CONFIG_ARCH_INTEGRATOR_AP=y | |||
92 | # | 92 | # |
93 | # Processor Type | 93 | # Processor Type |
94 | # | 94 | # |
95 | CONFIG_CPU_32=y | ||
96 | CONFIG_CPU_ARM720T=y | 95 | CONFIG_CPU_ARM720T=y |
97 | CONFIG_CPU_ARM920T=y | 96 | CONFIG_CPU_ARM920T=y |
98 | # CONFIG_CPU_ARM922T is not set | 97 | # CONFIG_CPU_ARM922T is not set |
diff --git a/arch/arm/configs/iop13xx_defconfig b/arch/arm/configs/iop13xx_defconfig index 89c17761726..3c040cc9f3b 100644 --- a/arch/arm/configs/iop13xx_defconfig +++ b/arch/arm/configs/iop13xx_defconfig | |||
@@ -163,7 +163,6 @@ CONFIG_PLAT_IOP=y | |||
163 | # | 163 | # |
164 | # Processor Type | 164 | # Processor Type |
165 | # | 165 | # |
166 | CONFIG_CPU_32=y | ||
167 | CONFIG_CPU_XSC3=y | 166 | CONFIG_CPU_XSC3=y |
168 | CONFIG_CPU_32v5=y | 167 | CONFIG_CPU_32v5=y |
169 | CONFIG_CPU_ABRT_EV5T=y | 168 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/iop32x_defconfig b/arch/arm/configs/iop32x_defconfig index d70177b38f5..62a854996be 100644 --- a/arch/arm/configs/iop32x_defconfig +++ b/arch/arm/configs/iop32x_defconfig | |||
@@ -168,7 +168,6 @@ CONFIG_PLAT_IOP=y | |||
168 | # | 168 | # |
169 | # Processor Type | 169 | # Processor Type |
170 | # | 170 | # |
171 | CONFIG_CPU_32=y | ||
172 | CONFIG_CPU_XSCALE=y | 171 | CONFIG_CPU_XSCALE=y |
173 | CONFIG_CPU_32v5=y | 172 | CONFIG_CPU_32v5=y |
174 | CONFIG_CPU_ABRT_EV5T=y | 173 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/iop33x_defconfig b/arch/arm/configs/iop33x_defconfig index ed2d59d0182..0bc23ece4c2 100644 --- a/arch/arm/configs/iop33x_defconfig +++ b/arch/arm/configs/iop33x_defconfig | |||
@@ -198,7 +198,6 @@ CONFIG_PLAT_IOP=y | |||
198 | # | 198 | # |
199 | # Processor Type | 199 | # Processor Type |
200 | # | 200 | # |
201 | CONFIG_CPU_32=y | ||
202 | CONFIG_CPU_XSCALE=y | 201 | CONFIG_CPU_XSCALE=y |
203 | CONFIG_CPU_32v5=y | 202 | CONFIG_CPU_32v5=y |
204 | CONFIG_CPU_ABRT_EV5T=y | 203 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/ixp2000_defconfig b/arch/arm/configs/ixp2000_defconfig index 57526c15e85..8b5b5764a22 100644 --- a/arch/arm/configs/ixp2000_defconfig +++ b/arch/arm/configs/ixp2000_defconfig | |||
@@ -151,7 +151,6 @@ CONFIG_ARCH_IXDP2X01=y | |||
151 | # | 151 | # |
152 | # Processor Type | 152 | # Processor Type |
153 | # | 153 | # |
154 | CONFIG_CPU_32=y | ||
155 | CONFIG_CPU_XSCALE=y | 154 | CONFIG_CPU_XSCALE=y |
156 | CONFIG_CPU_32v5=y | 155 | CONFIG_CPU_32v5=y |
157 | CONFIG_CPU_ABRT_EV5T=y | 156 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/ixp23xx_defconfig b/arch/arm/configs/ixp23xx_defconfig index ef97561ed75..59c11c93180 100644 --- a/arch/arm/configs/ixp23xx_defconfig +++ b/arch/arm/configs/ixp23xx_defconfig | |||
@@ -145,7 +145,6 @@ CONFIG_MACH_ROADRUNNER=y | |||
145 | # | 145 | # |
146 | # Processor Type | 146 | # Processor Type |
147 | # | 147 | # |
148 | CONFIG_CPU_32=y | ||
149 | CONFIG_CPU_XSC3=y | 148 | CONFIG_CPU_XSC3=y |
150 | CONFIG_CPU_32v5=y | 149 | CONFIG_CPU_32v5=y |
151 | CONFIG_CPU_ABRT_EV5T=y | 150 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/ixp4xx_defconfig b/arch/arm/configs/ixp4xx_defconfig index 95cd8dfb5f1..a907ad50ad3 100644 --- a/arch/arm/configs/ixp4xx_defconfig +++ b/arch/arm/configs/ixp4xx_defconfig | |||
@@ -189,7 +189,6 @@ CONFIG_IXP4XX_NPE=y | |||
189 | # | 189 | # |
190 | # Processor Type | 190 | # Processor Type |
191 | # | 191 | # |
192 | CONFIG_CPU_32=y | ||
193 | CONFIG_CPU_XSCALE=y | 192 | CONFIG_CPU_XSCALE=y |
194 | CONFIG_CPU_32v5=y | 193 | CONFIG_CPU_32v5=y |
195 | CONFIG_CPU_ABRT_EV5T=y | 194 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/jornada720_defconfig b/arch/arm/configs/jornada720_defconfig index df9bfbea861..d1f1646e23c 100644 --- a/arch/arm/configs/jornada720_defconfig +++ b/arch/arm/configs/jornada720_defconfig | |||
@@ -202,7 +202,6 @@ CONFIG_SA1100_SSP=y | |||
202 | # | 202 | # |
203 | # Processor Type | 203 | # Processor Type |
204 | # | 204 | # |
205 | CONFIG_CPU_32=y | ||
206 | CONFIG_CPU_SA1100=y | 205 | CONFIG_CPU_SA1100=y |
207 | CONFIG_CPU_32v4=y | 206 | CONFIG_CPU_32v4=y |
208 | CONFIG_CPU_ABRT_EV4=y | 207 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/kafa_defconfig b/arch/arm/configs/kafa_defconfig index 9f92fc527f5..f661e765d9b 100644 --- a/arch/arm/configs/kafa_defconfig +++ b/arch/arm/configs/kafa_defconfig | |||
@@ -132,7 +132,6 @@ CONFIG_MACH_KAFA=y | |||
132 | # | 132 | # |
133 | # Processor Type | 133 | # Processor Type |
134 | # | 134 | # |
135 | CONFIG_CPU_32=y | ||
136 | CONFIG_CPU_ARM920T=y | 135 | CONFIG_CPU_ARM920T=y |
137 | CONFIG_CPU_32v4=y | 136 | CONFIG_CPU_32v4=y |
138 | CONFIG_CPU_ABRT_EV4T=y | 137 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/kb9202_defconfig b/arch/arm/configs/kb9202_defconfig index 605a8462f17..668ba59946d 100644 --- a/arch/arm/configs/kb9202_defconfig +++ b/arch/arm/configs/kb9202_defconfig | |||
@@ -230,7 +230,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
230 | # | 230 | # |
231 | # Processor Type | 231 | # Processor Type |
232 | # | 232 | # |
233 | CONFIG_CPU_32=y | ||
234 | CONFIG_CPU_ARM920T=y | 233 | CONFIG_CPU_ARM920T=y |
235 | CONFIG_CPU_32v4T=y | 234 | CONFIG_CPU_32v4T=y |
236 | CONFIG_CPU_ABRT_EV4T=y | 235 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/kirkwood_defconfig b/arch/arm/configs/kirkwood_defconfig index bcfade33bca..5fc44c94b0a 100644 --- a/arch/arm/configs/kirkwood_defconfig +++ b/arch/arm/configs/kirkwood_defconfig | |||
@@ -201,7 +201,6 @@ CONFIG_PLAT_ORION=y | |||
201 | # | 201 | # |
202 | # Processor Type | 202 | # Processor Type |
203 | # | 203 | # |
204 | CONFIG_CPU_32=y | ||
205 | CONFIG_CPU_FEROCEON=y | 204 | CONFIG_CPU_FEROCEON=y |
206 | # CONFIG_CPU_FEROCEON_OLD_ID is not set | 205 | # CONFIG_CPU_FEROCEON_OLD_ID is not set |
207 | CONFIG_CPU_32v5=y | 206 | CONFIG_CPU_32v5=y |
diff --git a/arch/arm/configs/ks8695_defconfig b/arch/arm/configs/ks8695_defconfig index d25c41bab06..e6f2276904f 100644 --- a/arch/arm/configs/ks8695_defconfig +++ b/arch/arm/configs/ks8695_defconfig | |||
@@ -186,7 +186,6 @@ CONFIG_MACH_DSM320=y | |||
186 | # | 186 | # |
187 | # Processor Type | 187 | # Processor Type |
188 | # | 188 | # |
189 | CONFIG_CPU_32=y | ||
190 | CONFIG_CPU_ARM922T=y | 189 | CONFIG_CPU_ARM922T=y |
191 | CONFIG_CPU_32v4T=y | 190 | CONFIG_CPU_32v4T=y |
192 | CONFIG_CPU_ABRT_EV4T=y | 191 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/lart_defconfig b/arch/arm/configs/lart_defconfig index 56ae56899d2..af759517693 100644 --- a/arch/arm/configs/lart_defconfig +++ b/arch/arm/configs/lart_defconfig | |||
@@ -99,7 +99,6 @@ CONFIG_SA1100_LART=y | |||
99 | # | 99 | # |
100 | # Processor Type | 100 | # Processor Type |
101 | # | 101 | # |
102 | CONFIG_CPU_32=y | ||
103 | CONFIG_CPU_SA1100=y | 102 | CONFIG_CPU_SA1100=y |
104 | CONFIG_CPU_32v4=y | 103 | CONFIG_CPU_32v4=y |
105 | CONFIG_CPU_ABRT_EV4=y | 104 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/loki_defconfig b/arch/arm/configs/loki_defconfig index b720fcffbcd..6df7b147161 100644 --- a/arch/arm/configs/loki_defconfig +++ b/arch/arm/configs/loki_defconfig | |||
@@ -174,7 +174,6 @@ CONFIG_PLAT_ORION=y | |||
174 | # | 174 | # |
175 | # Processor Type | 175 | # Processor Type |
176 | # | 176 | # |
177 | CONFIG_CPU_32=y | ||
178 | CONFIG_CPU_FEROCEON=y | 177 | CONFIG_CPU_FEROCEON=y |
179 | # CONFIG_CPU_FEROCEON_OLD_ID is not set | 178 | # CONFIG_CPU_FEROCEON_OLD_ID is not set |
180 | CONFIG_CPU_32v5=y | 179 | CONFIG_CPU_32v5=y |
diff --git a/arch/arm/configs/lpd270_defconfig b/arch/arm/configs/lpd270_defconfig index 1a38d8e3fe6..aeb76861534 100644 --- a/arch/arm/configs/lpd270_defconfig +++ b/arch/arm/configs/lpd270_defconfig | |||
@@ -143,7 +143,6 @@ CONFIG_PXA27x=y | |||
143 | # | 143 | # |
144 | # Processor Type | 144 | # Processor Type |
145 | # | 145 | # |
146 | CONFIG_CPU_32=y | ||
147 | CONFIG_CPU_XSCALE=y | 146 | CONFIG_CPU_XSCALE=y |
148 | CONFIG_CPU_32v5=y | 147 | CONFIG_CPU_32v5=y |
149 | CONFIG_CPU_ABRT_EV5T=y | 148 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/lpd7a400_defconfig b/arch/arm/configs/lpd7a400_defconfig index f8ac29d5c65..6116feea2e1 100644 --- a/arch/arm/configs/lpd7a400_defconfig +++ b/arch/arm/configs/lpd7a400_defconfig | |||
@@ -95,7 +95,6 @@ CONFIG_LPD7A40X_CPLD_SSP=y | |||
95 | # | 95 | # |
96 | # Processor Type | 96 | # Processor Type |
97 | # | 97 | # |
98 | CONFIG_CPU_32=y | ||
99 | CONFIG_CPU_ARM922T=y | 98 | CONFIG_CPU_ARM922T=y |
100 | CONFIG_CPU_32v4=y | 99 | CONFIG_CPU_32v4=y |
101 | CONFIG_CPU_ABRT_EV4T=y | 100 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/lpd7a404_defconfig b/arch/arm/configs/lpd7a404_defconfig index 7a2e932da1c..142cccdd971 100644 --- a/arch/arm/configs/lpd7a404_defconfig +++ b/arch/arm/configs/lpd7a404_defconfig | |||
@@ -117,7 +117,6 @@ CONFIG_ARCH_LH7A404=y | |||
117 | # | 117 | # |
118 | # Processor Type | 118 | # Processor Type |
119 | # | 119 | # |
120 | CONFIG_CPU_32=y | ||
121 | CONFIG_CPU_ARM922T=y | 120 | CONFIG_CPU_ARM922T=y |
122 | CONFIG_CPU_32v4=y | 121 | CONFIG_CPU_32v4=y |
123 | CONFIG_CPU_ABRT_EV4T=y | 122 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/lubbock_defconfig b/arch/arm/configs/lubbock_defconfig index e544bfbbde5..75c6293376b 100644 --- a/arch/arm/configs/lubbock_defconfig +++ b/arch/arm/configs/lubbock_defconfig | |||
@@ -92,7 +92,6 @@ CONFIG_PXA25x=y | |||
92 | # | 92 | # |
93 | # Processor Type | 93 | # Processor Type |
94 | # | 94 | # |
95 | CONFIG_CPU_32=y | ||
96 | CONFIG_CPU_XSCALE=y | 95 | CONFIG_CPU_XSCALE=y |
97 | CONFIG_CPU_32v5=y | 96 | CONFIG_CPU_32v5=y |
98 | CONFIG_CPU_ABRT_EV5T=y | 97 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/lusl7200_defconfig b/arch/arm/configs/lusl7200_defconfig index 42f6a77bc3c..c1a1fb049a7 100644 --- a/arch/arm/configs/lusl7200_defconfig +++ b/arch/arm/configs/lusl7200_defconfig | |||
@@ -82,7 +82,6 @@ CONFIG_ARCH_L7200=y | |||
82 | # | 82 | # |
83 | # Processor Type | 83 | # Processor Type |
84 | # | 84 | # |
85 | CONFIG_CPU_32=y | ||
86 | CONFIG_CPU_ARM720T=y | 85 | CONFIG_CPU_ARM720T=y |
87 | CONFIG_CPU_32v4=y | 86 | CONFIG_CPU_32v4=y |
88 | CONFIG_CPU_ABRT_LV4T=y | 87 | CONFIG_CPU_ABRT_LV4T=y |
diff --git a/arch/arm/configs/magician_defconfig b/arch/arm/configs/magician_defconfig index 957fd5fa27c..8e9a7232bc4 100644 --- a/arch/arm/configs/magician_defconfig +++ b/arch/arm/configs/magician_defconfig | |||
@@ -204,7 +204,6 @@ CONFIG_PXA_HAVE_BOARD_IRQS=y | |||
204 | # | 204 | # |
205 | # Processor Type | 205 | # Processor Type |
206 | # | 206 | # |
207 | CONFIG_CPU_32=y | ||
208 | CONFIG_CPU_XSCALE=y | 207 | CONFIG_CPU_XSCALE=y |
209 | CONFIG_CPU_32v5=y | 208 | CONFIG_CPU_32v5=y |
210 | CONFIG_CPU_ABRT_EV5T=y | 209 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/mainstone_defconfig b/arch/arm/configs/mainstone_defconfig index cc8c95b9929..1cddb617849 100644 --- a/arch/arm/configs/mainstone_defconfig +++ b/arch/arm/configs/mainstone_defconfig | |||
@@ -93,7 +93,6 @@ CONFIG_IWMMXT=y | |||
93 | # | 93 | # |
94 | # Processor Type | 94 | # Processor Type |
95 | # | 95 | # |
96 | CONFIG_CPU_32=y | ||
97 | CONFIG_CPU_XSCALE=y | 96 | CONFIG_CPU_XSCALE=y |
98 | CONFIG_CPU_32v5=y | 97 | CONFIG_CPU_32v5=y |
99 | CONFIG_CPU_ABRT_EV5T=y | 98 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/mini2440_defconfig b/arch/arm/configs/mini2440_defconfig index e49ed40f3be..d2a90eb844a 100644 --- a/arch/arm/configs/mini2440_defconfig +++ b/arch/arm/configs/mini2440_defconfig | |||
@@ -256,7 +256,6 @@ CONFIG_MACH_MINI2440=y | |||
256 | # | 256 | # |
257 | # Processor Type | 257 | # Processor Type |
258 | # | 258 | # |
259 | CONFIG_CPU_32=y | ||
260 | CONFIG_CPU_ARM920T=y | 259 | CONFIG_CPU_ARM920T=y |
261 | CONFIG_CPU_32v4T=y | 260 | CONFIG_CPU_32v4T=y |
262 | CONFIG_CPU_ABRT_EV4T=y | 261 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/msm_defconfig b/arch/arm/configs/msm_defconfig index cc3b06ee24f..fe25e3b9a45 100644 --- a/arch/arm/configs/msm_defconfig +++ b/arch/arm/configs/msm_defconfig | |||
@@ -155,7 +155,6 @@ CONFIG_MSM_SMD=y | |||
155 | # | 155 | # |
156 | # Processor Type | 156 | # Processor Type |
157 | # | 157 | # |
158 | CONFIG_CPU_32=y | ||
159 | CONFIG_CPU_V6=y | 158 | CONFIG_CPU_V6=y |
160 | # CONFIG_CPU_32v6K is not set | 159 | # CONFIG_CPU_32v6K is not set |
161 | CONFIG_CPU_32v6=y | 160 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/mv78xx0_defconfig b/arch/arm/configs/mv78xx0_defconfig index 398274b0771..6afa2c108ea 100644 --- a/arch/arm/configs/mv78xx0_defconfig +++ b/arch/arm/configs/mv78xx0_defconfig | |||
@@ -181,7 +181,6 @@ CONFIG_PLAT_ORION=y | |||
181 | # | 181 | # |
182 | # Processor Type | 182 | # Processor Type |
183 | # | 183 | # |
184 | CONFIG_CPU_32=y | ||
185 | CONFIG_CPU_FEROCEON=y | 184 | CONFIG_CPU_FEROCEON=y |
186 | CONFIG_CPU_FEROCEON_OLD_ID=y | 185 | CONFIG_CPU_FEROCEON_OLD_ID=y |
187 | CONFIG_CPU_32v5=y | 186 | CONFIG_CPU_32v5=y |
diff --git a/arch/arm/configs/mx1_defconfig b/arch/arm/configs/mx1_defconfig index 0200d67e30b..f5750703b70 100644 --- a/arch/arm/configs/mx1_defconfig +++ b/arch/arm/configs/mx1_defconfig | |||
@@ -190,7 +190,6 @@ CONFIG_MXC_IRQ_PRIOR=y | |||
190 | # | 190 | # |
191 | # Processor Type | 191 | # Processor Type |
192 | # | 192 | # |
193 | CONFIG_CPU_32=y | ||
194 | CONFIG_CPU_ARM920T=y | 193 | CONFIG_CPU_ARM920T=y |
195 | CONFIG_CPU_32v4T=y | 194 | CONFIG_CPU_32v4T=y |
196 | CONFIG_CPU_ABRT_EV4T=y | 195 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/mx1ads_defconfig b/arch/arm/configs/mx1ads_defconfig index 577d7e1b5d4..3cabbb6d927 100644 --- a/arch/arm/configs/mx1ads_defconfig +++ b/arch/arm/configs/mx1ads_defconfig | |||
@@ -88,7 +88,6 @@ CONFIG_ARCH_MX1ADS=y | |||
88 | # | 88 | # |
89 | # Processor Type | 89 | # Processor Type |
90 | # | 90 | # |
91 | CONFIG_CPU_32=y | ||
92 | CONFIG_CPU_ARM920T=y | 91 | CONFIG_CPU_ARM920T=y |
93 | CONFIG_CPU_32v4=y | 92 | CONFIG_CPU_32v4=y |
94 | CONFIG_CPU_ABRT_EV4T=y | 93 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/mx21_defconfig b/arch/arm/configs/mx21_defconfig index 4b04290d8e8..1ecd6276e0f 100644 --- a/arch/arm/configs/mx21_defconfig +++ b/arch/arm/configs/mx21_defconfig | |||
@@ -185,7 +185,6 @@ CONFIG_MXC_PWM=y | |||
185 | # | 185 | # |
186 | # Processor Type | 186 | # Processor Type |
187 | # | 187 | # |
188 | CONFIG_CPU_32=y | ||
189 | CONFIG_CPU_ARM926T=y | 188 | CONFIG_CPU_ARM926T=y |
190 | CONFIG_CPU_32v5=y | 189 | CONFIG_CPU_32v5=y |
191 | CONFIG_CPU_ABRT_EV5TJ=y | 190 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/mx27_defconfig b/arch/arm/configs/mx27_defconfig index 75263a83741..edfdd6faf80 100644 --- a/arch/arm/configs/mx27_defconfig +++ b/arch/arm/configs/mx27_defconfig | |||
@@ -207,7 +207,6 @@ CONFIG_MXC_PWM=y | |||
207 | # | 207 | # |
208 | # Processor Type | 208 | # Processor Type |
209 | # | 209 | # |
210 | CONFIG_CPU_32=y | ||
211 | CONFIG_CPU_ARM926T=y | 210 | CONFIG_CPU_ARM926T=y |
212 | CONFIG_CPU_32v5=y | 211 | CONFIG_CPU_32v5=y |
213 | CONFIG_CPU_ABRT_EV5TJ=y | 212 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/mx31pdk_defconfig b/arch/arm/configs/mx31pdk_defconfig index 95ffc0db95a..d40953798d9 100644 --- a/arch/arm/configs/mx31pdk_defconfig +++ b/arch/arm/configs/mx31pdk_defconfig | |||
@@ -173,7 +173,6 @@ CONFIG_MACH_MX31_3DS=y | |||
173 | # | 173 | # |
174 | # Processor Type | 174 | # Processor Type |
175 | # | 175 | # |
176 | CONFIG_CPU_32=y | ||
177 | CONFIG_CPU_V6=y | 176 | CONFIG_CPU_V6=y |
178 | # CONFIG_CPU_32v6K is not set | 177 | # CONFIG_CPU_32v6K is not set |
179 | CONFIG_CPU_32v6=y | 178 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/mx3_defconfig b/arch/arm/configs/mx3_defconfig index 7734ccab211..8a06bc64fe5 100644 --- a/arch/arm/configs/mx3_defconfig +++ b/arch/arm/configs/mx3_defconfig | |||
@@ -218,7 +218,6 @@ CONFIG_ARCH_MXC_IOMUX_V3=y | |||
218 | # | 218 | # |
219 | # Processor Type | 219 | # Processor Type |
220 | # | 220 | # |
221 | CONFIG_CPU_32=y | ||
222 | CONFIG_CPU_V6=y | 221 | CONFIG_CPU_V6=y |
223 | # CONFIG_CPU_32v6K is not set | 222 | # CONFIG_CPU_32v6K is not set |
224 | CONFIG_CPU_32v6=y | 223 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/n770_defconfig b/arch/arm/configs/n770_defconfig index a1657b73683..75cae18fbcb 100644 --- a/arch/arm/configs/n770_defconfig +++ b/arch/arm/configs/n770_defconfig | |||
@@ -210,7 +210,6 @@ CONFIG_OMAP_ARM_216MHZ=y | |||
210 | # | 210 | # |
211 | # Processor Type | 211 | # Processor Type |
212 | # | 212 | # |
213 | CONFIG_CPU_32=y | ||
214 | CONFIG_CPU_ARM926T=y | 213 | CONFIG_CPU_ARM926T=y |
215 | CONFIG_CPU_32v5=y | 214 | CONFIG_CPU_32v5=y |
216 | CONFIG_CPU_ABRT_EV5TJ=y | 215 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/n8x0_defconfig b/arch/arm/configs/n8x0_defconfig index 264f52b5c52..e6f667c5e58 100644 --- a/arch/arm/configs/n8x0_defconfig +++ b/arch/arm/configs/n8x0_defconfig | |||
@@ -232,7 +232,6 @@ CONFIG_MACH_NOKIA_N8X0=y | |||
232 | # | 232 | # |
233 | # Processor Type | 233 | # Processor Type |
234 | # | 234 | # |
235 | CONFIG_CPU_32=y | ||
236 | CONFIG_CPU_V6=y | 235 | CONFIG_CPU_V6=y |
237 | # CONFIG_CPU_32v6K is not set | 236 | # CONFIG_CPU_32v6K is not set |
238 | CONFIG_CPU_32v6=y | 237 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/neocore926_defconfig b/arch/arm/configs/neocore926_defconfig index e0e4e98b5aa..d165c757e44 100644 --- a/arch/arm/configs/neocore926_defconfig +++ b/arch/arm/configs/neocore926_defconfig | |||
@@ -218,7 +218,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
218 | # | 218 | # |
219 | # Processor Type | 219 | # Processor Type |
220 | # | 220 | # |
221 | CONFIG_CPU_32=y | ||
222 | CONFIG_CPU_ARM926T=y | 221 | CONFIG_CPU_ARM926T=y |
223 | CONFIG_CPU_32v5=y | 222 | CONFIG_CPU_32v5=y |
224 | CONFIG_CPU_ABRT_EV5TJ=y | 223 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/neponset_defconfig b/arch/arm/configs/neponset_defconfig index 36cd62edd05..171265ed02e 100644 --- a/arch/arm/configs/neponset_defconfig +++ b/arch/arm/configs/neponset_defconfig | |||
@@ -103,7 +103,6 @@ CONFIG_ASSABET_NEPONSET=y | |||
103 | # | 103 | # |
104 | # Processor Type | 104 | # Processor Type |
105 | # | 105 | # |
106 | CONFIG_CPU_32=y | ||
107 | CONFIG_CPU_SA1100=y | 106 | CONFIG_CPU_SA1100=y |
108 | CONFIG_CPU_32v4=y | 107 | CONFIG_CPU_32v4=y |
109 | CONFIG_CPU_ABRT_EV4=y | 108 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/netwinder_defconfig b/arch/arm/configs/netwinder_defconfig index c1a63a35c58..78f58a99c5a 100644 --- a/arch/arm/configs/netwinder_defconfig +++ b/arch/arm/configs/netwinder_defconfig | |||
@@ -89,7 +89,6 @@ CONFIG_FOOTBRIDGE_HOST=y | |||
89 | # | 89 | # |
90 | # Processor Type | 90 | # Processor Type |
91 | # | 91 | # |
92 | CONFIG_CPU_32=y | ||
93 | CONFIG_CPU_SA110=y | 92 | CONFIG_CPU_SA110=y |
94 | CONFIG_CPU_32v4=y | 93 | CONFIG_CPU_32v4=y |
95 | CONFIG_CPU_ABRT_EV4=y | 94 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/netx_defconfig b/arch/arm/configs/netx_defconfig index 61d0fc5b241..2a97e361ec7 100644 --- a/arch/arm/configs/netx_defconfig +++ b/arch/arm/configs/netx_defconfig | |||
@@ -122,7 +122,6 @@ CONFIG_MACH_NXEB500HMI=y | |||
122 | # | 122 | # |
123 | # Processor Type | 123 | # Processor Type |
124 | # | 124 | # |
125 | CONFIG_CPU_32=y | ||
126 | CONFIG_CPU_ARM926T=y | 125 | CONFIG_CPU_ARM926T=y |
127 | CONFIG_CPU_32v5=y | 126 | CONFIG_CPU_32v5=y |
128 | CONFIG_CPU_ABRT_EV5TJ=y | 127 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/nhk8815_defconfig b/arch/arm/configs/nhk8815_defconfig index 600cb270f2b..92d90862f5e 100644 --- a/arch/arm/configs/nhk8815_defconfig +++ b/arch/arm/configs/nhk8815_defconfig | |||
@@ -191,7 +191,6 @@ CONFIG_I2C_BITBANG_8815NHK=y | |||
191 | # | 191 | # |
192 | # Processor Type | 192 | # Processor Type |
193 | # | 193 | # |
194 | CONFIG_CPU_32=y | ||
195 | CONFIG_CPU_ARM926T=y | 194 | CONFIG_CPU_ARM926T=y |
196 | CONFIG_CPU_32v5=y | 195 | CONFIG_CPU_32v5=y |
197 | CONFIG_CPU_ABRT_EV5TJ=y | 196 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/nuc910_defconfig b/arch/arm/configs/nuc910_defconfig index 5245655a0ad..f80848a929a 100644 --- a/arch/arm/configs/nuc910_defconfig +++ b/arch/arm/configs/nuc910_defconfig | |||
@@ -180,7 +180,6 @@ CONFIG_MACH_W90P910EVB=y | |||
180 | # | 180 | # |
181 | # Processor Type | 181 | # Processor Type |
182 | # | 182 | # |
183 | CONFIG_CPU_32=y | ||
184 | CONFIG_CPU_ARM926T=y | 183 | CONFIG_CPU_ARM926T=y |
185 | CONFIG_CPU_32v5=y | 184 | CONFIG_CPU_32v5=y |
186 | CONFIG_CPU_ABRT_EV5TJ=y | 185 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/nuc950_defconfig b/arch/arm/configs/nuc950_defconfig index df1de9b45ca..97300ec478d 100644 --- a/arch/arm/configs/nuc950_defconfig +++ b/arch/arm/configs/nuc950_defconfig | |||
@@ -201,7 +201,6 @@ CONFIG_MACH_W90P950EVB=y | |||
201 | # | 201 | # |
202 | # Processor Type | 202 | # Processor Type |
203 | # | 203 | # |
204 | CONFIG_CPU_32=y | ||
205 | CONFIG_CPU_ARM926T=y | 204 | CONFIG_CPU_ARM926T=y |
206 | CONFIG_CPU_32v5=y | 205 | CONFIG_CPU_32v5=y |
207 | CONFIG_CPU_ABRT_EV5TJ=y | 206 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/nuc960_defconfig b/arch/arm/configs/nuc960_defconfig index 4b2cd9eae9b..aa7e128f5d7 100644 --- a/arch/arm/configs/nuc960_defconfig +++ b/arch/arm/configs/nuc960_defconfig | |||
@@ -201,7 +201,6 @@ CONFIG_MACH_W90N960EVB=y | |||
201 | # | 201 | # |
202 | # Processor Type | 202 | # Processor Type |
203 | # | 203 | # |
204 | CONFIG_CPU_32=y | ||
205 | CONFIG_CPU_ARM926T=y | 204 | CONFIG_CPU_ARM926T=y |
206 | CONFIG_CPU_32v5=y | 205 | CONFIG_CPU_32v5=y |
207 | CONFIG_CPU_ABRT_EV5TJ=y | 206 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap3_beagle_defconfig b/arch/arm/configs/omap3_beagle_defconfig index 9cfae374e04..c7999f5b1c9 100644 --- a/arch/arm/configs/omap3_beagle_defconfig +++ b/arch/arm/configs/omap3_beagle_defconfig | |||
@@ -213,7 +213,6 @@ CONFIG_MACH_OMAP3_BEAGLE=y | |||
213 | # | 213 | # |
214 | # Processor Type | 214 | # Processor Type |
215 | # | 215 | # |
216 | CONFIG_CPU_32=y | ||
217 | CONFIG_CPU_32v6K=y | 216 | CONFIG_CPU_32v6K=y |
218 | CONFIG_CPU_V7=y | 217 | CONFIG_CPU_V7=y |
219 | CONFIG_CPU_32v7=y | 218 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap3_defconfig b/arch/arm/configs/omap3_defconfig index 2af28eab906..367be98a6ae 100644 --- a/arch/arm/configs/omap3_defconfig +++ b/arch/arm/configs/omap3_defconfig | |||
@@ -245,7 +245,6 @@ CONFIG_MACH_OMAP_3630SDP=y | |||
245 | # | 245 | # |
246 | # Processor Type | 246 | # Processor Type |
247 | # | 247 | # |
248 | CONFIG_CPU_32=y | ||
249 | CONFIG_CPU_32v6K=y | 248 | CONFIG_CPU_32v6K=y |
250 | CONFIG_CPU_V7=y | 249 | CONFIG_CPU_V7=y |
251 | CONFIG_CPU_32v7=y | 250 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap3_evm_defconfig b/arch/arm/configs/omap3_evm_defconfig index e190fc8b9a7..86cc4bea616 100644 --- a/arch/arm/configs/omap3_evm_defconfig +++ b/arch/arm/configs/omap3_evm_defconfig | |||
@@ -220,7 +220,6 @@ CONFIG_MACH_OMAP3EVM=y | |||
220 | # | 220 | # |
221 | # Processor Type | 221 | # Processor Type |
222 | # | 222 | # |
223 | CONFIG_CPU_32=y | ||
224 | CONFIG_CPU_32v6K=y | 223 | CONFIG_CPU_32v6K=y |
225 | CONFIG_CPU_V7=y | 224 | CONFIG_CPU_V7=y |
226 | CONFIG_CPU_32v7=y | 225 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap3_pandora_defconfig b/arch/arm/configs/omap3_pandora_defconfig index b7a8d9fa49d..f74eb9a1d19 100644 --- a/arch/arm/configs/omap3_pandora_defconfig +++ b/arch/arm/configs/omap3_pandora_defconfig | |||
@@ -211,7 +211,6 @@ CONFIG_MACH_OMAP3_PANDORA=y | |||
211 | # | 211 | # |
212 | # Processor Type | 212 | # Processor Type |
213 | # | 213 | # |
214 | CONFIG_CPU_32=y | ||
215 | CONFIG_CPU_32v6K=y | 214 | CONFIG_CPU_32v6K=y |
216 | CONFIG_CPU_V7=y | 215 | CONFIG_CPU_V7=y |
217 | CONFIG_CPU_32v7=y | 216 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap3_touchbook_defconfig b/arch/arm/configs/omap3_touchbook_defconfig index 7c8515e65c0..74fe6be9c5e 100644 --- a/arch/arm/configs/omap3_touchbook_defconfig +++ b/arch/arm/configs/omap3_touchbook_defconfig | |||
@@ -246,7 +246,6 @@ CONFIG_MACH_OMAP3_TOUCHBOOK=y | |||
246 | # | 246 | # |
247 | # Processor Type | 247 | # Processor Type |
248 | # | 248 | # |
249 | CONFIG_CPU_32=y | ||
250 | CONFIG_CPU_32v6K=y | 249 | CONFIG_CPU_32v6K=y |
251 | CONFIG_CPU_V7=y | 250 | CONFIG_CPU_V7=y |
252 | CONFIG_CPU_32v7=y | 251 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap_2430sdp_defconfig b/arch/arm/configs/omap_2430sdp_defconfig index 640e9afc463..45b4ebae305 100644 --- a/arch/arm/configs/omap_2430sdp_defconfig +++ b/arch/arm/configs/omap_2430sdp_defconfig | |||
@@ -197,7 +197,6 @@ CONFIG_MACH_OMAP_2430SDP=y | |||
197 | # | 197 | # |
198 | # Processor Type | 198 | # Processor Type |
199 | # | 199 | # |
200 | CONFIG_CPU_32=y | ||
201 | CONFIG_CPU_V6=y | 200 | CONFIG_CPU_V6=y |
202 | # CONFIG_CPU_32v6K is not set | 201 | # CONFIG_CPU_32v6K is not set |
203 | CONFIG_CPU_32v6=y | 202 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/omap_3430sdp_defconfig b/arch/arm/configs/omap_3430sdp_defconfig index 592457cfbbe..bb2917e5cb4 100644 --- a/arch/arm/configs/omap_3430sdp_defconfig +++ b/arch/arm/configs/omap_3430sdp_defconfig | |||
@@ -232,7 +232,6 @@ CONFIG_MACH_OMAP_3430SDP=y | |||
232 | # | 232 | # |
233 | # Processor Type | 233 | # Processor Type |
234 | # | 234 | # |
235 | CONFIG_CPU_32=y | ||
236 | CONFIG_CPU_32v6K=y | 235 | CONFIG_CPU_32v6K=y |
237 | CONFIG_CPU_V7=y | 236 | CONFIG_CPU_V7=y |
238 | CONFIG_CPU_32v7=y | 237 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap_3630sdp_defconfig b/arch/arm/configs/omap_3630sdp_defconfig index e836c8a0014..d25c3d4424c 100644 --- a/arch/arm/configs/omap_3630sdp_defconfig +++ b/arch/arm/configs/omap_3630sdp_defconfig | |||
@@ -236,7 +236,6 @@ CONFIG_MACH_OMAP_3630SDP=y | |||
236 | # | 236 | # |
237 | # Processor Type | 237 | # Processor Type |
238 | # | 238 | # |
239 | CONFIG_CPU_32=y | ||
240 | CONFIG_CPU_32v6K=y | 239 | CONFIG_CPU_32v6K=y |
241 | CONFIG_CPU_V7=y | 240 | CONFIG_CPU_V7=y |
242 | CONFIG_CPU_32v7=y | 241 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap_4430sdp_defconfig b/arch/arm/configs/omap_4430sdp_defconfig index 2319113c86b..3de640ac294 100644 --- a/arch/arm/configs/omap_4430sdp_defconfig +++ b/arch/arm/configs/omap_4430sdp_defconfig | |||
@@ -220,7 +220,6 @@ CONFIG_MACH_OMAP_4430SDP=y | |||
220 | # | 220 | # |
221 | # Processor Type | 221 | # Processor Type |
222 | # | 222 | # |
223 | CONFIG_CPU_32=y | ||
224 | CONFIG_CPU_32v6K=y | 223 | CONFIG_CPU_32v6K=y |
225 | CONFIG_CPU_V7=y | 224 | CONFIG_CPU_V7=y |
226 | CONFIG_CPU_32v7=y | 225 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap_apollon_2420_defconfig b/arch/arm/configs/omap_apollon_2420_defconfig index ac7adf34c54..cc86342896a 100644 --- a/arch/arm/configs/omap_apollon_2420_defconfig +++ b/arch/arm/configs/omap_apollon_2420_defconfig | |||
@@ -196,7 +196,6 @@ CONFIG_MACH_OMAP_APOLLON=y | |||
196 | # | 196 | # |
197 | # Processor Type | 197 | # Processor Type |
198 | # | 198 | # |
199 | CONFIG_CPU_32=y | ||
200 | CONFIG_CPU_V6=y | 199 | CONFIG_CPU_V6=y |
201 | # CONFIG_CPU_32v6K is not set | 200 | # CONFIG_CPU_32v6K is not set |
202 | CONFIG_CPU_32v6=y | 201 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/omap_generic_1510_defconfig b/arch/arm/configs/omap_generic_1510_defconfig index ccdc661b585..61744e507e4 100644 --- a/arch/arm/configs/omap_generic_1510_defconfig +++ b/arch/arm/configs/omap_generic_1510_defconfig | |||
@@ -205,7 +205,6 @@ CONFIG_OMAP_ARM_168MHZ=y | |||
205 | # | 205 | # |
206 | # Processor Type | 206 | # Processor Type |
207 | # | 207 | # |
208 | CONFIG_CPU_32=y | ||
209 | CONFIG_CPU_ARM925T=y | 208 | CONFIG_CPU_ARM925T=y |
210 | CONFIG_CPU_32v4T=y | 209 | CONFIG_CPU_32v4T=y |
211 | CONFIG_CPU_ABRT_EV4T=y | 210 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/omap_generic_1610_defconfig b/arch/arm/configs/omap_generic_1610_defconfig index 0c42c895504..d773857ed0c 100644 --- a/arch/arm/configs/omap_generic_1610_defconfig +++ b/arch/arm/configs/omap_generic_1610_defconfig | |||
@@ -207,7 +207,6 @@ CONFIG_OMAP_ARM_192MHZ=y | |||
207 | # | 207 | # |
208 | # Processor Type | 208 | # Processor Type |
209 | # | 209 | # |
210 | CONFIG_CPU_32=y | ||
211 | CONFIG_CPU_ARM926T=y | 210 | CONFIG_CPU_ARM926T=y |
212 | CONFIG_CPU_32v5=y | 211 | CONFIG_CPU_32v5=y |
213 | CONFIG_CPU_ABRT_EV5TJ=y | 212 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap_generic_1710_defconfig b/arch/arm/configs/omap_generic_1710_defconfig index 0a00a708a4f..6ec487e6e02 100644 --- a/arch/arm/configs/omap_generic_1710_defconfig +++ b/arch/arm/configs/omap_generic_1710_defconfig | |||
@@ -201,7 +201,6 @@ CONFIG_OMAP_ARM_192MHZ=y | |||
201 | # | 201 | # |
202 | # Processor Type | 202 | # Processor Type |
203 | # | 203 | # |
204 | CONFIG_CPU_32=y | ||
205 | CONFIG_CPU_ARM926T=y | 204 | CONFIG_CPU_ARM926T=y |
206 | CONFIG_CPU_32v5=y | 205 | CONFIG_CPU_32v5=y |
207 | CONFIG_CPU_ABRT_EV5TJ=y | 206 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap_generic_2420_defconfig b/arch/arm/configs/omap_generic_2420_defconfig index cf4073b47aa..7218b96c0b7 100644 --- a/arch/arm/configs/omap_generic_2420_defconfig +++ b/arch/arm/configs/omap_generic_2420_defconfig | |||
@@ -191,7 +191,6 @@ CONFIG_ARCH_OMAP2420=y | |||
191 | # | 191 | # |
192 | # Processor Type | 192 | # Processor Type |
193 | # | 193 | # |
194 | CONFIG_CPU_32=y | ||
195 | CONFIG_CPU_V6=y | 194 | CONFIG_CPU_V6=y |
196 | # CONFIG_CPU_32v6K is not set | 195 | # CONFIG_CPU_32v6K is not set |
197 | CONFIG_CPU_32v6=y | 196 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/omap_h2_1610_defconfig b/arch/arm/configs/omap_h2_1610_defconfig index 74dbdc644d3..523189586a4 100644 --- a/arch/arm/configs/omap_h2_1610_defconfig +++ b/arch/arm/configs/omap_h2_1610_defconfig | |||
@@ -231,7 +231,6 @@ CONFIG_OMAP_ARM_60MHZ=y | |||
231 | # | 231 | # |
232 | # Processor Type | 232 | # Processor Type |
233 | # | 233 | # |
234 | CONFIG_CPU_32=y | ||
235 | CONFIG_CPU_ARM926T=y | 234 | CONFIG_CPU_ARM926T=y |
236 | CONFIG_CPU_32v5=y | 235 | CONFIG_CPU_32v5=y |
237 | CONFIG_CPU_ABRT_EV5TJ=y | 236 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap_h4_2420_defconfig b/arch/arm/configs/omap_h4_2420_defconfig index a4aab8e4c29..b12b406c196 100644 --- a/arch/arm/configs/omap_h4_2420_defconfig +++ b/arch/arm/configs/omap_h4_2420_defconfig | |||
@@ -201,7 +201,6 @@ CONFIG_MACH_OMAP_H4=y | |||
201 | # | 201 | # |
202 | # Processor Type | 202 | # Processor Type |
203 | # | 203 | # |
204 | CONFIG_CPU_32=y | ||
205 | CONFIG_CPU_V6=y | 204 | CONFIG_CPU_V6=y |
206 | # CONFIG_CPU_32v6K is not set | 205 | # CONFIG_CPU_32v6K is not set |
207 | CONFIG_CPU_32v6=y | 206 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/omap_innovator_1510_defconfig b/arch/arm/configs/omap_innovator_1510_defconfig index 0cfe363e336..e9c14082125 100644 --- a/arch/arm/configs/omap_innovator_1510_defconfig +++ b/arch/arm/configs/omap_innovator_1510_defconfig | |||
@@ -205,7 +205,6 @@ CONFIG_OMAP_ARM_168MHZ=y | |||
205 | # | 205 | # |
206 | # Processor Type | 206 | # Processor Type |
207 | # | 207 | # |
208 | CONFIG_CPU_32=y | ||
209 | CONFIG_CPU_ARM925T=y | 208 | CONFIG_CPU_ARM925T=y |
210 | CONFIG_CPU_32v4T=y | 209 | CONFIG_CPU_32v4T=y |
211 | CONFIG_CPU_ABRT_EV4T=y | 210 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/omap_innovator_1610_defconfig b/arch/arm/configs/omap_innovator_1610_defconfig index 95d9f2be53e..fea9319ed7f 100644 --- a/arch/arm/configs/omap_innovator_1610_defconfig +++ b/arch/arm/configs/omap_innovator_1610_defconfig | |||
@@ -206,7 +206,6 @@ CONFIG_OMAP_ARM_192MHZ=y | |||
206 | # | 206 | # |
207 | # Processor Type | 207 | # Processor Type |
208 | # | 208 | # |
209 | CONFIG_CPU_32=y | ||
210 | CONFIG_CPU_ARM926T=y | 209 | CONFIG_CPU_ARM926T=y |
211 | CONFIG_CPU_32v5=y | 210 | CONFIG_CPU_32v5=y |
212 | CONFIG_CPU_ABRT_EV5TJ=y | 211 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap_ldp_defconfig b/arch/arm/configs/omap_ldp_defconfig index 9139532c3be..0efb4b044ff 100644 --- a/arch/arm/configs/omap_ldp_defconfig +++ b/arch/arm/configs/omap_ldp_defconfig | |||
@@ -214,7 +214,6 @@ CONFIG_MACH_OMAP_LDP=y | |||
214 | # | 214 | # |
215 | # Processor Type | 215 | # Processor Type |
216 | # | 216 | # |
217 | CONFIG_CPU_32=y | ||
218 | CONFIG_CPU_32v6K=y | 217 | CONFIG_CPU_32v6K=y |
219 | CONFIG_CPU_V7=y | 218 | CONFIG_CPU_V7=y |
220 | CONFIG_CPU_32v7=y | 219 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap_osk_5912_defconfig b/arch/arm/configs/omap_osk_5912_defconfig index 6b3b5c610da..556fcca1b1d 100644 --- a/arch/arm/configs/omap_osk_5912_defconfig +++ b/arch/arm/configs/omap_osk_5912_defconfig | |||
@@ -212,7 +212,6 @@ CONFIG_OMAP_ARM_192MHZ=y | |||
212 | # | 212 | # |
213 | # Processor Type | 213 | # Processor Type |
214 | # | 214 | # |
215 | CONFIG_CPU_32=y | ||
216 | CONFIG_CPU_ARM926T=y | 215 | CONFIG_CPU_ARM926T=y |
217 | CONFIG_CPU_32v5=y | 216 | CONFIG_CPU_32v5=y |
218 | CONFIG_CPU_ABRT_EV5TJ=y | 217 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap_perseus2_730_defconfig b/arch/arm/configs/omap_perseus2_730_defconfig index b94800c0e00..9a15d5da57f 100644 --- a/arch/arm/configs/omap_perseus2_730_defconfig +++ b/arch/arm/configs/omap_perseus2_730_defconfig | |||
@@ -199,7 +199,6 @@ CONFIG_OMAP_ARM_182MHZ=y | |||
199 | # | 199 | # |
200 | # Processor Type | 200 | # Processor Type |
201 | # | 201 | # |
202 | CONFIG_CPU_32=y | ||
203 | CONFIG_CPU_ARM926T=y | 202 | CONFIG_CPU_ARM926T=y |
204 | CONFIG_CPU_32v5=y | 203 | CONFIG_CPU_32v5=y |
205 | CONFIG_CPU_ABRT_EV5TJ=y | 204 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/omap_zoom2_defconfig b/arch/arm/configs/omap_zoom2_defconfig index 4b00a430681..a82e81332a0 100644 --- a/arch/arm/configs/omap_zoom2_defconfig +++ b/arch/arm/configs/omap_zoom2_defconfig | |||
@@ -222,7 +222,6 @@ CONFIG_MACH_OMAP_ZOOM2=y | |||
222 | # | 222 | # |
223 | # Processor Type | 223 | # Processor Type |
224 | # | 224 | # |
225 | CONFIG_CPU_32=y | ||
226 | CONFIG_CPU_32v6K=y | 225 | CONFIG_CPU_32v6K=y |
227 | CONFIG_CPU_V7=y | 226 | CONFIG_CPU_V7=y |
228 | CONFIG_CPU_32v7=y | 227 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/omap_zoom3_defconfig b/arch/arm/configs/omap_zoom3_defconfig index 0d7e37a3651..a3e3c8274c9 100644 --- a/arch/arm/configs/omap_zoom3_defconfig +++ b/arch/arm/configs/omap_zoom3_defconfig | |||
@@ -236,7 +236,6 @@ CONFIG_MACH_OMAP_ZOOM3=y | |||
236 | # | 236 | # |
237 | # Processor Type | 237 | # Processor Type |
238 | # | 238 | # |
239 | CONFIG_CPU_32=y | ||
240 | CONFIG_CPU_32v6K=y | 239 | CONFIG_CPU_32v6K=y |
241 | CONFIG_CPU_V7=y | 240 | CONFIG_CPU_V7=y |
242 | CONFIG_CPU_32v7=y | 241 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/onearm_defconfig b/arch/arm/configs/onearm_defconfig index f8701fadb60..19b91dedc7f 100644 --- a/arch/arm/configs/onearm_defconfig +++ b/arch/arm/configs/onearm_defconfig | |||
@@ -161,7 +161,6 @@ CONFIG_AT91_PROGRAMMABLE_CLOCKS=y | |||
161 | # | 161 | # |
162 | # Processor Type | 162 | # Processor Type |
163 | # | 163 | # |
164 | CONFIG_CPU_32=y | ||
165 | CONFIG_CPU_ARM920T=y | 164 | CONFIG_CPU_ARM920T=y |
166 | CONFIG_CPU_32v4T=y | 165 | CONFIG_CPU_32v4T=y |
167 | CONFIG_CPU_ABRT_EV4T=y | 166 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/orion5x_defconfig b/arch/arm/configs/orion5x_defconfig index 5383cd0dff5..85b05d3e279 100644 --- a/arch/arm/configs/orion5x_defconfig +++ b/arch/arm/configs/orion5x_defconfig | |||
@@ -210,7 +210,6 @@ CONFIG_PLAT_ORION=y | |||
210 | # | 210 | # |
211 | # Processor Type | 211 | # Processor Type |
212 | # | 212 | # |
213 | CONFIG_CPU_32=y | ||
214 | CONFIG_CPU_FEROCEON=y | 213 | CONFIG_CPU_FEROCEON=y |
215 | CONFIG_CPU_FEROCEON_OLD_ID=y | 214 | CONFIG_CPU_FEROCEON_OLD_ID=y |
216 | CONFIG_CPU_32v5=y | 215 | CONFIG_CPU_32v5=y |
diff --git a/arch/arm/configs/overo_defconfig b/arch/arm/configs/overo_defconfig index b3ea2c4c0f9..bf06d3660a3 100644 --- a/arch/arm/configs/overo_defconfig +++ b/arch/arm/configs/overo_defconfig | |||
@@ -217,7 +217,6 @@ CONFIG_MACH_OVERO=y | |||
217 | # | 217 | # |
218 | # Processor Type | 218 | # Processor Type |
219 | # | 219 | # |
220 | CONFIG_CPU_32=y | ||
221 | CONFIG_CPU_32v6K=y | 220 | CONFIG_CPU_32v6K=y |
222 | CONFIG_CPU_V7=y | 221 | CONFIG_CPU_V7=y |
223 | CONFIG_CPU_32v7=y | 222 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/palmte_defconfig b/arch/arm/configs/palmte_defconfig index 40fc6a778e0..feffaa2deae 100644 --- a/arch/arm/configs/palmte_defconfig +++ b/arch/arm/configs/palmte_defconfig | |||
@@ -196,7 +196,6 @@ CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | |||
196 | # | 196 | # |
197 | # Processor Type | 197 | # Processor Type |
198 | # | 198 | # |
199 | CONFIG_CPU_32=y | ||
200 | CONFIG_CPU_ARM925T=y | 199 | CONFIG_CPU_ARM925T=y |
201 | CONFIG_CPU_32v4T=y | 200 | CONFIG_CPU_32v4T=y |
202 | CONFIG_CPU_ABRT_EV4T=y | 201 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/palmtt_defconfig b/arch/arm/configs/palmtt_defconfig index e54ced41217..55d5b7dfb7a 100644 --- a/arch/arm/configs/palmtt_defconfig +++ b/arch/arm/configs/palmtt_defconfig | |||
@@ -176,7 +176,6 @@ CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | |||
176 | # | 176 | # |
177 | # Processor Type | 177 | # Processor Type |
178 | # | 178 | # |
179 | CONFIG_CPU_32=y | ||
180 | CONFIG_CPU_ARM925T=y | 179 | CONFIG_CPU_ARM925T=y |
181 | CONFIG_CPU_32v4T=y | 180 | CONFIG_CPU_32v4T=y |
182 | CONFIG_CPU_ABRT_EV4T=y | 181 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/palmz71_defconfig b/arch/arm/configs/palmz71_defconfig index 08e14068fff..6efc7465a76 100644 --- a/arch/arm/configs/palmz71_defconfig +++ b/arch/arm/configs/palmz71_defconfig | |||
@@ -200,7 +200,6 @@ CONFIG_OMAP_CLOCKS_SET_BY_BOOTLOADER=y | |||
200 | # | 200 | # |
201 | # Processor Type | 201 | # Processor Type |
202 | # | 202 | # |
203 | CONFIG_CPU_32=y | ||
204 | CONFIG_CPU_ARM925T=y | 203 | CONFIG_CPU_ARM925T=y |
205 | CONFIG_CPU_32v4T=y | 204 | CONFIG_CPU_32v4T=y |
206 | CONFIG_CPU_ABRT_EV4T=y | 205 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/palmz72_defconfig b/arch/arm/configs/palmz72_defconfig index a0dc37c05de..6d162b137ce 100644 --- a/arch/arm/configs/palmz72_defconfig +++ b/arch/arm/configs/palmz72_defconfig | |||
@@ -209,7 +209,6 @@ CONFIG_PXA_PWM=y | |||
209 | # | 209 | # |
210 | # Processor Type | 210 | # Processor Type |
211 | # | 211 | # |
212 | CONFIG_CPU_32=y | ||
213 | CONFIG_CPU_XSCALE=y | 212 | CONFIG_CPU_XSCALE=y |
214 | CONFIG_CPU_32v5=y | 213 | CONFIG_CPU_32v5=y |
215 | CONFIG_CPU_ABRT_EV5T=y | 214 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/pcm027_defconfig b/arch/arm/configs/pcm027_defconfig index 05ad96a43b1..fa153f2711b 100644 --- a/arch/arm/configs/pcm027_defconfig +++ b/arch/arm/configs/pcm027_defconfig | |||
@@ -168,7 +168,6 @@ CONFIG_PXA27x=y | |||
168 | # | 168 | # |
169 | # Processor Type | 169 | # Processor Type |
170 | # | 170 | # |
171 | CONFIG_CPU_32=y | ||
172 | CONFIG_CPU_XSCALE=y | 171 | CONFIG_CPU_XSCALE=y |
173 | CONFIG_CPU_32v5=y | 172 | CONFIG_CPU_32v5=y |
174 | CONFIG_CPU_ABRT_EV5T=y | 173 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/picotux200_defconfig b/arch/arm/configs/picotux200_defconfig index 9018f0f298a..6e7155c122a 100644 --- a/arch/arm/configs/picotux200_defconfig +++ b/arch/arm/configs/picotux200_defconfig | |||
@@ -168,7 +168,6 @@ CONFIG_AT91_PROGRAMMABLE_CLOCKS=y | |||
168 | # | 168 | # |
169 | # Processor Type | 169 | # Processor Type |
170 | # | 170 | # |
171 | CONFIG_CPU_32=y | ||
172 | CONFIG_CPU_ARM920T=y | 171 | CONFIG_CPU_ARM920T=y |
173 | CONFIG_CPU_32v4T=y | 172 | CONFIG_CPU_32v4T=y |
174 | CONFIG_CPU_ABRT_EV4T=y | 173 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/pleb_defconfig b/arch/arm/configs/pleb_defconfig index f2d2dda2594..dbfabb5eede 100644 --- a/arch/arm/configs/pleb_defconfig +++ b/arch/arm/configs/pleb_defconfig | |||
@@ -100,7 +100,6 @@ CONFIG_SA1100_PLEB=y | |||
100 | # | 100 | # |
101 | # Processor Type | 101 | # Processor Type |
102 | # | 102 | # |
103 | CONFIG_CPU_32=y | ||
104 | CONFIG_CPU_SA1100=y | 103 | CONFIG_CPU_SA1100=y |
105 | CONFIG_CPU_32v4=y | 104 | CONFIG_CPU_32v4=y |
106 | CONFIG_CPU_ABRT_EV4=y | 105 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/pnx4008_defconfig b/arch/arm/configs/pnx4008_defconfig index 67b5f1e15f4..2f7b9ce7dad 100644 --- a/arch/arm/configs/pnx4008_defconfig +++ b/arch/arm/configs/pnx4008_defconfig | |||
@@ -121,7 +121,6 @@ CONFIG_ARCH_PNX4008=y | |||
121 | # | 121 | # |
122 | # Processor Type | 122 | # Processor Type |
123 | # | 123 | # |
124 | CONFIG_CPU_32=y | ||
125 | CONFIG_CPU_ARM926T=y | 124 | CONFIG_CPU_ARM926T=y |
126 | CONFIG_CPU_32v5=y | 125 | CONFIG_CPU_32v5=y |
127 | CONFIG_CPU_ABRT_EV5TJ=y | 126 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/pxa168_defconfig b/arch/arm/configs/pxa168_defconfig index db5faeaec96..791b8c39aef 100644 --- a/arch/arm/configs/pxa168_defconfig +++ b/arch/arm/configs/pxa168_defconfig | |||
@@ -184,7 +184,6 @@ CONFIG_PLAT_PXA=y | |||
184 | # | 184 | # |
185 | # Processor Type | 185 | # Processor Type |
186 | # | 186 | # |
187 | CONFIG_CPU_32=y | ||
188 | CONFIG_CPU_MOHAWK=y | 187 | CONFIG_CPU_MOHAWK=y |
189 | CONFIG_CPU_32v5=y | 188 | CONFIG_CPU_32v5=y |
190 | CONFIG_CPU_ABRT_EV5T=y | 189 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/pxa255-idp_defconfig b/arch/arm/configs/pxa255-idp_defconfig index 46e5089df0a..3365c5d77ca 100644 --- a/arch/arm/configs/pxa255-idp_defconfig +++ b/arch/arm/configs/pxa255-idp_defconfig | |||
@@ -92,7 +92,6 @@ CONFIG_PXA25x=y | |||
92 | # | 92 | # |
93 | # Processor Type | 93 | # Processor Type |
94 | # | 94 | # |
95 | CONFIG_CPU_32=y | ||
96 | CONFIG_CPU_XSCALE=y | 95 | CONFIG_CPU_XSCALE=y |
97 | CONFIG_CPU_32v5=y | 96 | CONFIG_CPU_32v5=y |
98 | CONFIG_CPU_ABRT_EV5T=y | 97 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/pxa3xx_defconfig b/arch/arm/configs/pxa3xx_defconfig index 733b851e5b7..82ca6c80d6a 100644 --- a/arch/arm/configs/pxa3xx_defconfig +++ b/arch/arm/configs/pxa3xx_defconfig | |||
@@ -240,7 +240,6 @@ CONFIG_PLAT_PXA=y | |||
240 | # | 240 | # |
241 | # Processor Type | 241 | # Processor Type |
242 | # | 242 | # |
243 | CONFIG_CPU_32=y | ||
244 | CONFIG_CPU_XSC3=y | 243 | CONFIG_CPU_XSC3=y |
245 | CONFIG_CPU_32v5=y | 244 | CONFIG_CPU_32v5=y |
246 | CONFIG_CPU_ABRT_EV5T=y | 245 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/pxa910_defconfig b/arch/arm/configs/pxa910_defconfig index 8c7e299f1d6..94e20fe6dbd 100644 --- a/arch/arm/configs/pxa910_defconfig +++ b/arch/arm/configs/pxa910_defconfig | |||
@@ -184,7 +184,6 @@ CONFIG_PLAT_PXA=y | |||
184 | # | 184 | # |
185 | # Processor Type | 185 | # Processor Type |
186 | # | 186 | # |
187 | CONFIG_CPU_32=y | ||
188 | CONFIG_CPU_MOHAWK=y | 187 | CONFIG_CPU_MOHAWK=y |
189 | CONFIG_CPU_32v5=y | 188 | CONFIG_CPU_32v5=y |
190 | CONFIG_CPU_ABRT_EV5T=y | 189 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/qil-a9260_defconfig b/arch/arm/configs/qil-a9260_defconfig index 9b32d0eb89b..12d0d64e321 100644 --- a/arch/arm/configs/qil-a9260_defconfig +++ b/arch/arm/configs/qil-a9260_defconfig | |||
@@ -195,7 +195,6 @@ CONFIG_AT91_EARLY_USART0=y | |||
195 | # | 195 | # |
196 | # Processor Type | 196 | # Processor Type |
197 | # | 197 | # |
198 | CONFIG_CPU_32=y | ||
199 | CONFIG_CPU_ARM926T=y | 198 | CONFIG_CPU_ARM926T=y |
200 | CONFIG_CPU_32v5=y | 199 | CONFIG_CPU_32v5=y |
201 | CONFIG_CPU_ABRT_EV5TJ=y | 200 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/realview-smp_defconfig b/arch/arm/configs/realview-smp_defconfig index 21db4b3ec8f..123701754d4 100644 --- a/arch/arm/configs/realview-smp_defconfig +++ b/arch/arm/configs/realview-smp_defconfig | |||
@@ -186,7 +186,6 @@ CONFIG_REALVIEW_HIGH_PHYS_OFFSET=y | |||
186 | # | 186 | # |
187 | # Processor Type | 187 | # Processor Type |
188 | # | 188 | # |
189 | CONFIG_CPU_32=y | ||
190 | # CONFIG_CPU_ARM926T is not set | 189 | # CONFIG_CPU_ARM926T is not set |
191 | CONFIG_CPU_V6=y | 190 | CONFIG_CPU_V6=y |
192 | CONFIG_CPU_32v6K=y | 191 | CONFIG_CPU_32v6K=y |
diff --git a/arch/arm/configs/realview_defconfig b/arch/arm/configs/realview_defconfig index 9a75c30b910..a509a5e59d2 100644 --- a/arch/arm/configs/realview_defconfig +++ b/arch/arm/configs/realview_defconfig | |||
@@ -184,7 +184,6 @@ CONFIG_MACH_REALVIEW_PB1176=y | |||
184 | # | 184 | # |
185 | # Processor Type | 185 | # Processor Type |
186 | # | 186 | # |
187 | CONFIG_CPU_32=y | ||
188 | # CONFIG_CPU_ARM926T is not set | 187 | # CONFIG_CPU_ARM926T is not set |
189 | CONFIG_CPU_V6=y | 188 | CONFIG_CPU_V6=y |
190 | # CONFIG_CPU_32v6K is not set | 189 | # CONFIG_CPU_32v6K is not set |
diff --git a/arch/arm/configs/rpc_defconfig b/arch/arm/configs/rpc_defconfig index a29d61fe4c6..e9124a00039 100644 --- a/arch/arm/configs/rpc_defconfig +++ b/arch/arm/configs/rpc_defconfig | |||
@@ -150,7 +150,6 @@ CONFIG_ARCH_ACORN=y | |||
150 | # | 150 | # |
151 | # Processor Type | 151 | # Processor Type |
152 | # | 152 | # |
153 | CONFIG_CPU_32=y | ||
154 | CONFIG_CPU_ARM610=y | 153 | CONFIG_CPU_ARM610=y |
155 | CONFIG_CPU_ARM710=y | 154 | CONFIG_CPU_ARM710=y |
156 | CONFIG_CPU_SA110=y | 155 | CONFIG_CPU_SA110=y |
diff --git a/arch/arm/configs/rx51_defconfig b/arch/arm/configs/rx51_defconfig index 15597342602..b6eeebb3176 100644 --- a/arch/arm/configs/rx51_defconfig +++ b/arch/arm/configs/rx51_defconfig | |||
@@ -212,7 +212,6 @@ CONFIG_MACH_NOKIA_RX51=y | |||
212 | # | 212 | # |
213 | # Processor Type | 213 | # Processor Type |
214 | # | 214 | # |
215 | CONFIG_CPU_32=y | ||
216 | CONFIG_CPU_32v6K=y | 215 | CONFIG_CPU_32v6K=y |
217 | CONFIG_CPU_V7=y | 216 | CONFIG_CPU_V7=y |
218 | CONFIG_CPU_32v7=y | 217 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/s3c2410_defconfig b/arch/arm/configs/s3c2410_defconfig index b49810461e4..2f10dae0279 100644 --- a/arch/arm/configs/s3c2410_defconfig +++ b/arch/arm/configs/s3c2410_defconfig | |||
@@ -277,7 +277,6 @@ CONFIG_MACH_SMDK2443=y | |||
277 | # | 277 | # |
278 | # Processor Type | 278 | # Processor Type |
279 | # | 279 | # |
280 | CONFIG_CPU_32=y | ||
281 | CONFIG_CPU_ARM920T=y | 280 | CONFIG_CPU_ARM920T=y |
282 | CONFIG_CPU_ARM926T=y | 281 | CONFIG_CPU_ARM926T=y |
283 | CONFIG_CPU_32v4T=y | 282 | CONFIG_CPU_32v4T=y |
diff --git a/arch/arm/configs/s3c6400_defconfig b/arch/arm/configs/s3c6400_defconfig index 32860609e05..f56e50fab79 100644 --- a/arch/arm/configs/s3c6400_defconfig +++ b/arch/arm/configs/s3c6400_defconfig | |||
@@ -192,7 +192,6 @@ CONFIG_SMDK6410_SD_CH0=y | |||
192 | # | 192 | # |
193 | # Processor Type | 193 | # Processor Type |
194 | # | 194 | # |
195 | CONFIG_CPU_32=y | ||
196 | CONFIG_CPU_V6=y | 195 | CONFIG_CPU_V6=y |
197 | CONFIG_CPU_32v6K=y | 196 | CONFIG_CPU_32v6K=y |
198 | CONFIG_CPU_32v6=y | 197 | CONFIG_CPU_32v6=y |
diff --git a/arch/arm/configs/s5pc100_defconfig b/arch/arm/configs/s5pc100_defconfig index b0d7d3d3a5e..dc108afc060 100644 --- a/arch/arm/configs/s5pc100_defconfig +++ b/arch/arm/configs/s5pc100_defconfig | |||
@@ -202,7 +202,6 @@ CONFIG_MACH_SMDKC100=y | |||
202 | # | 202 | # |
203 | # Processor Type | 203 | # Processor Type |
204 | # | 204 | # |
205 | CONFIG_CPU_32=y | ||
206 | CONFIG_CPU_32v6K=y | 205 | CONFIG_CPU_32v6K=y |
207 | CONFIG_CPU_V7=y | 206 | CONFIG_CPU_V7=y |
208 | CONFIG_CPU_32v7=y | 207 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/sam9_l9260_defconfig b/arch/arm/configs/sam9_l9260_defconfig index 1174e276487..81b290ad5d2 100644 --- a/arch/arm/configs/sam9_l9260_defconfig +++ b/arch/arm/configs/sam9_l9260_defconfig | |||
@@ -175,7 +175,6 @@ CONFIG_MTD_AT91_DATAFLASH_CARD=y | |||
175 | # | 175 | # |
176 | # Processor Type | 176 | # Processor Type |
177 | # | 177 | # |
178 | CONFIG_CPU_32=y | ||
179 | CONFIG_CPU_ARM926T=y | 178 | CONFIG_CPU_ARM926T=y |
180 | CONFIG_CPU_32v5=y | 179 | CONFIG_CPU_32v5=y |
181 | CONFIG_CPU_ABRT_EV5TJ=y | 180 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/shannon_defconfig b/arch/arm/configs/shannon_defconfig index 984f7096a53..7c49bc35246 100644 --- a/arch/arm/configs/shannon_defconfig +++ b/arch/arm/configs/shannon_defconfig | |||
@@ -99,7 +99,6 @@ CONFIG_SA1100_SHANNON=y | |||
99 | # | 99 | # |
100 | # Processor Type | 100 | # Processor Type |
101 | # | 101 | # |
102 | CONFIG_CPU_32=y | ||
103 | CONFIG_CPU_SA1100=y | 102 | CONFIG_CPU_SA1100=y |
104 | CONFIG_CPU_32v4=y | 103 | CONFIG_CPU_32v4=y |
105 | CONFIG_CPU_ABRT_EV4=y | 104 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/shark_defconfig b/arch/arm/configs/shark_defconfig index 90235bf7a1d..46de1247d12 100644 --- a/arch/arm/configs/shark_defconfig +++ b/arch/arm/configs/shark_defconfig | |||
@@ -173,7 +173,6 @@ CONFIG_ARCH_SHARK=y | |||
173 | # | 173 | # |
174 | # Processor Type | 174 | # Processor Type |
175 | # | 175 | # |
176 | CONFIG_CPU_32=y | ||
177 | CONFIG_CPU_SA110=y | 176 | CONFIG_CPU_SA110=y |
178 | CONFIG_CPU_32v4=y | 177 | CONFIG_CPU_32v4=y |
179 | CONFIG_CPU_ABRT_EV4=y | 178 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/simpad_defconfig b/arch/arm/configs/simpad_defconfig index 685d2b51320..ee25e634415 100644 --- a/arch/arm/configs/simpad_defconfig +++ b/arch/arm/configs/simpad_defconfig | |||
@@ -101,7 +101,6 @@ CONFIG_SA1100_SIMPAD=y | |||
101 | # | 101 | # |
102 | # Processor Type | 102 | # Processor Type |
103 | # | 103 | # |
104 | CONFIG_CPU_32=y | ||
105 | CONFIG_CPU_SA1100=y | 104 | CONFIG_CPU_SA1100=y |
106 | CONFIG_CPU_32v4=y | 105 | CONFIG_CPU_32v4=y |
107 | CONFIG_CPU_ABRT_EV4=y | 106 | CONFIG_CPU_ABRT_EV4=y |
diff --git a/arch/arm/configs/spitz_defconfig b/arch/arm/configs/spitz_defconfig index 745c68ffb88..7d894894194 100644 --- a/arch/arm/configs/spitz_defconfig +++ b/arch/arm/configs/spitz_defconfig | |||
@@ -212,7 +212,6 @@ CONFIG_PXA_SSP=y | |||
212 | # | 212 | # |
213 | # Processor Type | 213 | # Processor Type |
214 | # | 214 | # |
215 | CONFIG_CPU_32=y | ||
216 | CONFIG_CPU_XSCALE=y | 215 | CONFIG_CPU_XSCALE=y |
217 | CONFIG_CPU_32v5=y | 216 | CONFIG_CPU_32v5=y |
218 | CONFIG_CPU_ABRT_EV5T=y | 217 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/stmp378x_defconfig b/arch/arm/configs/stmp378x_defconfig index 44461f197a1..b1a3a97d46e 100644 --- a/arch/arm/configs/stmp378x_defconfig +++ b/arch/arm/configs/stmp378x_defconfig | |||
@@ -193,7 +193,6 @@ CONFIG_MACH_STMP378X=y | |||
193 | # | 193 | # |
194 | # Processor Type | 194 | # Processor Type |
195 | # | 195 | # |
196 | CONFIG_CPU_32=y | ||
197 | CONFIG_CPU_ARM926T=y | 196 | CONFIG_CPU_ARM926T=y |
198 | CONFIG_CPU_32v5=y | 197 | CONFIG_CPU_32v5=y |
199 | CONFIG_CPU_ABRT_EV5TJ=y | 198 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/stmp37xx_defconfig b/arch/arm/configs/stmp37xx_defconfig index 401279d531d..a3751c9e141 100644 --- a/arch/arm/configs/stmp37xx_defconfig +++ b/arch/arm/configs/stmp37xx_defconfig | |||
@@ -182,7 +182,6 @@ CONFIG_MACH_STMP37XX=y | |||
182 | # | 182 | # |
183 | # Processor Type | 183 | # Processor Type |
184 | # | 184 | # |
185 | CONFIG_CPU_32=y | ||
186 | CONFIG_CPU_ARM926T=y | 185 | CONFIG_CPU_ARM926T=y |
187 | CONFIG_CPU_32v5=y | 186 | CONFIG_CPU_32v5=y |
188 | CONFIG_CPU_ABRT_EV5TJ=y | 187 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/sx1_defconfig b/arch/arm/configs/sx1_defconfig index 25b007ff8ba..8a9e7e6bd03 100644 --- a/arch/arm/configs/sx1_defconfig +++ b/arch/arm/configs/sx1_defconfig | |||
@@ -210,7 +210,6 @@ CONFIG_OMAP_ARM_168MHZ=y | |||
210 | # | 210 | # |
211 | # Processor Type | 211 | # Processor Type |
212 | # | 212 | # |
213 | CONFIG_CPU_32=y | ||
214 | CONFIG_CPU_ARM925T=y | 213 | CONFIG_CPU_ARM925T=y |
215 | CONFIG_CPU_32v4T=y | 214 | CONFIG_CPU_32v4T=y |
216 | CONFIG_CPU_ABRT_EV4T=y | 215 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/tct_hammer_defconfig b/arch/arm/configs/tct_hammer_defconfig index 9d32faef05f..dccf14b4ee0 100644 --- a/arch/arm/configs/tct_hammer_defconfig +++ b/arch/arm/configs/tct_hammer_defconfig | |||
@@ -215,7 +215,6 @@ CONFIG_MACH_TCT_HAMMER=y | |||
215 | # | 215 | # |
216 | # Processor Type | 216 | # Processor Type |
217 | # | 217 | # |
218 | CONFIG_CPU_32=y | ||
219 | CONFIG_CPU_ARM920T=y | 218 | CONFIG_CPU_ARM920T=y |
220 | CONFIG_CPU_32v4T=y | 219 | CONFIG_CPU_32v4T=y |
221 | CONFIG_CPU_ABRT_EV4T=y | 220 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/trizeps4_defconfig b/arch/arm/configs/trizeps4_defconfig index b6f83819781..1e8f5a21185 100644 --- a/arch/arm/configs/trizeps4_defconfig +++ b/arch/arm/configs/trizeps4_defconfig | |||
@@ -156,7 +156,6 @@ CONFIG_PXA27x=y | |||
156 | # | 156 | # |
157 | # Processor Type | 157 | # Processor Type |
158 | # | 158 | # |
159 | CONFIG_CPU_32=y | ||
160 | CONFIG_CPU_XSCALE=y | 159 | CONFIG_CPU_XSCALE=y |
161 | CONFIG_CPU_32v5=y | 160 | CONFIG_CPU_32v5=y |
162 | CONFIG_CPU_ABRT_EV5T=y | 161 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/u300_defconfig b/arch/arm/configs/u300_defconfig index 953ba0297fc..9155196e623 100644 --- a/arch/arm/configs/u300_defconfig +++ b/arch/arm/configs/u300_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.32-rc5 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Sat Oct 17 23:32:24 2009 | 4 | # Wed Jan 6 00:01:36 2010 |
5 | # | 5 | # |
6 | CONFIG_ARM=y | 6 | CONFIG_ARM=y |
7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 7 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
@@ -46,6 +46,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
46 | # | 46 | # |
47 | CONFIG_TREE_RCU=y | 47 | CONFIG_TREE_RCU=y |
48 | # CONFIG_TREE_PREEMPT_RCU is not set | 48 | # CONFIG_TREE_PREEMPT_RCU is not set |
49 | # CONFIG_TINY_RCU is not set | ||
49 | # CONFIG_RCU_TRACE is not set | 50 | # CONFIG_RCU_TRACE is not set |
50 | CONFIG_RCU_FANOUT=32 | 51 | CONFIG_RCU_FANOUT=32 |
51 | # CONFIG_RCU_FANOUT_EXACT is not set | 52 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -119,14 +120,41 @@ CONFIG_BLOCK=y | |||
119 | # IO Schedulers | 120 | # IO Schedulers |
120 | # | 121 | # |
121 | CONFIG_IOSCHED_NOOP=y | 122 | CONFIG_IOSCHED_NOOP=y |
122 | # CONFIG_IOSCHED_AS is not set | ||
123 | CONFIG_IOSCHED_DEADLINE=y | 123 | CONFIG_IOSCHED_DEADLINE=y |
124 | # CONFIG_IOSCHED_CFQ is not set | 124 | # CONFIG_IOSCHED_CFQ is not set |
125 | # CONFIG_DEFAULT_AS is not set | ||
126 | CONFIG_DEFAULT_DEADLINE=y | 125 | CONFIG_DEFAULT_DEADLINE=y |
127 | # CONFIG_DEFAULT_CFQ is not set | 126 | # CONFIG_DEFAULT_CFQ is not set |
128 | # CONFIG_DEFAULT_NOOP is not set | 127 | # CONFIG_DEFAULT_NOOP is not set |
129 | CONFIG_DEFAULT_IOSCHED="deadline" | 128 | CONFIG_DEFAULT_IOSCHED="deadline" |
129 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
130 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
131 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
132 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
133 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
134 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
135 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
136 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
137 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
138 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
139 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
140 | # CONFIG_INLINE_READ_LOCK is not set | ||
141 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
142 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
143 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
144 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
145 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
146 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
147 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
148 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
149 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
150 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
151 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
152 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
153 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
154 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
155 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
156 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
157 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
130 | # CONFIG_FREEZER is not set | 158 | # CONFIG_FREEZER is not set |
131 | 159 | ||
132 | # | 160 | # |
@@ -155,6 +183,7 @@ CONFIG_MMU=y | |||
155 | # CONFIG_ARCH_IXP2000 is not set | 183 | # CONFIG_ARCH_IXP2000 is not set |
156 | # CONFIG_ARCH_IXP4XX is not set | 184 | # CONFIG_ARCH_IXP4XX is not set |
157 | # CONFIG_ARCH_L7200 is not set | 185 | # CONFIG_ARCH_L7200 is not set |
186 | # CONFIG_ARCH_DOVE is not set | ||
158 | # CONFIG_ARCH_KIRKWOOD is not set | 187 | # CONFIG_ARCH_KIRKWOOD is not set |
159 | # CONFIG_ARCH_LOKI is not set | 188 | # CONFIG_ARCH_LOKI is not set |
160 | # CONFIG_ARCH_MV78XX0 is not set | 189 | # CONFIG_ARCH_MV78XX0 is not set |
@@ -177,6 +206,7 @@ CONFIG_ARCH_U300=y | |||
177 | # CONFIG_ARCH_DAVINCI is not set | 206 | # CONFIG_ARCH_DAVINCI is not set |
178 | # CONFIG_ARCH_OMAP is not set | 207 | # CONFIG_ARCH_OMAP is not set |
179 | # CONFIG_ARCH_BCMRING is not set | 208 | # CONFIG_ARCH_BCMRING is not set |
209 | # CONFIG_ARCH_U8500 is not set | ||
180 | 210 | ||
181 | # | 211 | # |
182 | # ST-Ericsson AB U300/U330/U335/U365 Platform | 212 | # ST-Ericsson AB U300/U330/U335/U365 Platform |
@@ -207,7 +237,6 @@ CONFIG_MACH_U300_SPIDUMMY=y | |||
207 | # | 237 | # |
208 | # Processor Type | 238 | # Processor Type |
209 | # | 239 | # |
210 | CONFIG_CPU_32=y | ||
211 | CONFIG_CPU_ARM926T=y | 240 | CONFIG_CPU_ARM926T=y |
212 | CONFIG_CPU_32v5=y | 241 | CONFIG_CPU_32v5=y |
213 | CONFIG_CPU_ABRT_EV5TJ=y | 242 | CONFIG_CPU_ABRT_EV5TJ=y |
@@ -266,12 +295,10 @@ CONFIG_FLATMEM_MANUAL=y | |||
266 | CONFIG_FLATMEM=y | 295 | CONFIG_FLATMEM=y |
267 | CONFIG_FLAT_NODE_MEM_MAP=y | 296 | CONFIG_FLAT_NODE_MEM_MAP=y |
268 | CONFIG_PAGEFLAGS_EXTENDED=y | 297 | CONFIG_PAGEFLAGS_EXTENDED=y |
269 | CONFIG_SPLIT_PTLOCK_CPUS=4096 | 298 | CONFIG_SPLIT_PTLOCK_CPUS=999999 |
270 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 299 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
271 | CONFIG_ZONE_DMA_FLAG=0 | 300 | CONFIG_ZONE_DMA_FLAG=0 |
272 | CONFIG_VIRT_TO_BUS=y | 301 | CONFIG_VIRT_TO_BUS=y |
273 | CONFIG_HAVE_MLOCK=y | ||
274 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
275 | # CONFIG_KSM is not set | 302 | # CONFIG_KSM is not set |
276 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 303 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
277 | CONFIG_ALIGNMENT_TRAP=y | 304 | CONFIG_ALIGNMENT_TRAP=y |
@@ -500,14 +527,21 @@ CONFIG_MTD_NAND_IDS=y | |||
500 | CONFIG_BLK_DEV=y | 527 | CONFIG_BLK_DEV=y |
501 | # CONFIG_BLK_DEV_COW_COMMON is not set | 528 | # CONFIG_BLK_DEV_COW_COMMON is not set |
502 | # CONFIG_BLK_DEV_LOOP is not set | 529 | # CONFIG_BLK_DEV_LOOP is not set |
530 | |||
531 | # | ||
532 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
533 | # | ||
503 | # CONFIG_BLK_DEV_NBD is not set | 534 | # CONFIG_BLK_DEV_NBD is not set |
504 | # CONFIG_BLK_DEV_RAM is not set | 535 | # CONFIG_BLK_DEV_RAM is not set |
505 | # CONFIG_CDROM_PKTCDVD is not set | 536 | # CONFIG_CDROM_PKTCDVD is not set |
506 | # CONFIG_ATA_OVER_ETH is not set | 537 | # CONFIG_ATA_OVER_ETH is not set |
507 | CONFIG_MISC_DEVICES=y | 538 | CONFIG_MISC_DEVICES=y |
539 | # CONFIG_AD525X_DPOT is not set | ||
508 | # CONFIG_ICS932S401 is not set | 540 | # CONFIG_ICS932S401 is not set |
509 | # CONFIG_ENCLOSURE_SERVICES is not set | 541 | # CONFIG_ENCLOSURE_SERVICES is not set |
510 | # CONFIG_ISL29003 is not set | 542 | # CONFIG_ISL29003 is not set |
543 | # CONFIG_DS1682 is not set | ||
544 | # CONFIG_TI_DAC7512 is not set | ||
511 | # CONFIG_C2PORT is not set | 545 | # CONFIG_C2PORT is not set |
512 | 546 | ||
513 | # | 547 | # |
@@ -518,6 +552,7 @@ CONFIG_MISC_DEVICES=y | |||
518 | # CONFIG_EEPROM_LEGACY is not set | 552 | # CONFIG_EEPROM_LEGACY is not set |
519 | # CONFIG_EEPROM_MAX6875 is not set | 553 | # CONFIG_EEPROM_MAX6875 is not set |
520 | # CONFIG_EEPROM_93CX6 is not set | 554 | # CONFIG_EEPROM_93CX6 is not set |
555 | # CONFIG_IWMC3200TOP is not set | ||
521 | CONFIG_HAVE_IDE=y | 556 | CONFIG_HAVE_IDE=y |
522 | # CONFIG_IDE is not set | 557 | # CONFIG_IDE is not set |
523 | 558 | ||
@@ -540,6 +575,7 @@ CONFIG_HAVE_IDE=y | |||
540 | CONFIG_INPUT=y | 575 | CONFIG_INPUT=y |
541 | # CONFIG_INPUT_FF_MEMLESS is not set | 576 | # CONFIG_INPUT_FF_MEMLESS is not set |
542 | # CONFIG_INPUT_POLLDEV is not set | 577 | # CONFIG_INPUT_POLLDEV is not set |
578 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
543 | 579 | ||
544 | # | 580 | # |
545 | # Userland interfaces | 581 | # Userland interfaces |
@@ -646,7 +682,6 @@ CONFIG_I2C_STU300=y | |||
646 | # | 682 | # |
647 | # Miscellaneous I2C Chip support | 683 | # Miscellaneous I2C Chip support |
648 | # | 684 | # |
649 | # CONFIG_DS1682 is not set | ||
650 | # CONFIG_SENSORS_TSL2550 is not set | 685 | # CONFIG_SENSORS_TSL2550 is not set |
651 | # CONFIG_I2C_DEBUG_CORE is not set | 686 | # CONFIG_I2C_DEBUG_CORE is not set |
652 | # CONFIG_I2C_DEBUG_ALGO is not set | 687 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -662,6 +697,8 @@ CONFIG_SPI_MASTER=y | |||
662 | # CONFIG_SPI_BITBANG is not set | 697 | # CONFIG_SPI_BITBANG is not set |
663 | # CONFIG_SPI_GPIO is not set | 698 | # CONFIG_SPI_GPIO is not set |
664 | CONFIG_SPI_PL022=y | 699 | CONFIG_SPI_PL022=y |
700 | # CONFIG_SPI_XILINX is not set | ||
701 | # CONFIG_SPI_DESIGNWARE is not set | ||
665 | 702 | ||
666 | # | 703 | # |
667 | # SPI Protocol Masters | 704 | # SPI Protocol Masters |
@@ -709,6 +746,7 @@ CONFIG_SSB_POSSIBLE=y | |||
709 | # CONFIG_MFD_T7L66XB is not set | 746 | # CONFIG_MFD_T7L66XB is not set |
710 | # CONFIG_MFD_TC6387XB is not set | 747 | # CONFIG_MFD_TC6387XB is not set |
711 | # CONFIG_PMIC_DA903X is not set | 748 | # CONFIG_PMIC_DA903X is not set |
749 | # CONFIG_PMIC_ADP5520 is not set | ||
712 | # CONFIG_MFD_WM8400 is not set | 750 | # CONFIG_MFD_WM8400 is not set |
713 | # CONFIG_MFD_WM831X is not set | 751 | # CONFIG_MFD_WM831X is not set |
714 | # CONFIG_MFD_WM8350_I2C is not set | 752 | # CONFIG_MFD_WM8350_I2C is not set |
@@ -717,6 +755,8 @@ CONFIG_SSB_POSSIBLE=y | |||
717 | CONFIG_AB3100_CORE=y | 755 | CONFIG_AB3100_CORE=y |
718 | CONFIG_AB3100_OTP=y | 756 | CONFIG_AB3100_OTP=y |
719 | # CONFIG_EZX_PCAP is not set | 757 | # CONFIG_EZX_PCAP is not set |
758 | # CONFIG_MFD_88PM8607 is not set | ||
759 | # CONFIG_AB4500_CORE is not set | ||
720 | CONFIG_REGULATOR=y | 760 | CONFIG_REGULATOR=y |
721 | # CONFIG_REGULATOR_DEBUG is not set | 761 | # CONFIG_REGULATOR_DEBUG is not set |
722 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | 762 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set |
@@ -724,6 +764,7 @@ CONFIG_REGULATOR=y | |||
724 | # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set | 764 | # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set |
725 | # CONFIG_REGULATOR_BQ24022 is not set | 765 | # CONFIG_REGULATOR_BQ24022 is not set |
726 | # CONFIG_REGULATOR_MAX1586 is not set | 766 | # CONFIG_REGULATOR_MAX1586 is not set |
767 | # CONFIG_REGULATOR_MAX8660 is not set | ||
727 | # CONFIG_REGULATOR_LP3971 is not set | 768 | # CONFIG_REGULATOR_LP3971 is not set |
728 | CONFIG_REGULATOR_AB3100=y | 769 | CONFIG_REGULATOR_AB3100=y |
729 | # CONFIG_REGULATOR_TPS65023 is not set | 770 | # CONFIG_REGULATOR_TPS65023 is not set |
@@ -841,7 +882,9 @@ CONFIG_LEDS_CLASS=y | |||
841 | # CONFIG_LEDS_LP3944 is not set | 882 | # CONFIG_LEDS_LP3944 is not set |
842 | # CONFIG_LEDS_PCA955X is not set | 883 | # CONFIG_LEDS_PCA955X is not set |
843 | # CONFIG_LEDS_DAC124S085 is not set | 884 | # CONFIG_LEDS_DAC124S085 is not set |
885 | # CONFIG_LEDS_REGULATOR is not set | ||
844 | # CONFIG_LEDS_BD2802 is not set | 886 | # CONFIG_LEDS_BD2802 is not set |
887 | # CONFIG_LEDS_LT3593 is not set | ||
845 | 888 | ||
846 | # | 889 | # |
847 | # LED Triggers | 890 | # LED Triggers |
@@ -883,6 +926,7 @@ CONFIG_RTC_INTF_DEV=y | |||
883 | # CONFIG_RTC_DRV_PCF8563 is not set | 926 | # CONFIG_RTC_DRV_PCF8563 is not set |
884 | # CONFIG_RTC_DRV_PCF8583 is not set | 927 | # CONFIG_RTC_DRV_PCF8583 is not set |
885 | # CONFIG_RTC_DRV_M41T80 is not set | 928 | # CONFIG_RTC_DRV_M41T80 is not set |
929 | # CONFIG_RTC_DRV_BQ32K is not set | ||
886 | # CONFIG_RTC_DRV_S35390A is not set | 930 | # CONFIG_RTC_DRV_S35390A is not set |
887 | # CONFIG_RTC_DRV_FM3130 is not set | 931 | # CONFIG_RTC_DRV_FM3130 is not set |
888 | # CONFIG_RTC_DRV_RX8581 is not set | 932 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -912,7 +956,9 @@ CONFIG_RTC_INTF_DEV=y | |||
912 | # CONFIG_RTC_DRV_M48T86 is not set | 956 | # CONFIG_RTC_DRV_M48T86 is not set |
913 | # CONFIG_RTC_DRV_M48T35 is not set | 957 | # CONFIG_RTC_DRV_M48T35 is not set |
914 | # CONFIG_RTC_DRV_M48T59 is not set | 958 | # CONFIG_RTC_DRV_M48T59 is not set |
959 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
915 | # CONFIG_RTC_DRV_BQ4802 is not set | 960 | # CONFIG_RTC_DRV_BQ4802 is not set |
961 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
916 | # CONFIG_RTC_DRV_V3020 is not set | 962 | # CONFIG_RTC_DRV_V3020 is not set |
917 | CONFIG_RTC_DRV_AB3100=y | 963 | CONFIG_RTC_DRV_AB3100=y |
918 | 964 | ||
@@ -927,6 +973,15 @@ CONFIG_DMADEVICES=y | |||
927 | # | 973 | # |
928 | # DMA Devices | 974 | # DMA Devices |
929 | # | 975 | # |
976 | CONFIG_COH901318=y | ||
977 | CONFIG_DMA_ENGINE=y | ||
978 | |||
979 | # | ||
980 | # DMA Clients | ||
981 | # | ||
982 | # CONFIG_NET_DMA is not set | ||
983 | # CONFIG_ASYNC_TX_DMA is not set | ||
984 | # CONFIG_DMATEST is not set | ||
930 | # CONFIG_AUXDISPLAY is not set | 985 | # CONFIG_AUXDISPLAY is not set |
931 | # CONFIG_UIO is not set | 986 | # CONFIG_UIO is not set |
932 | 987 | ||
@@ -1019,7 +1074,7 @@ CONFIG_MISC_FILESYSTEMS=y | |||
1019 | CONFIG_MSDOS_PARTITION=y | 1074 | CONFIG_MSDOS_PARTITION=y |
1020 | CONFIG_NLS=y | 1075 | CONFIG_NLS=y |
1021 | CONFIG_NLS_DEFAULT="iso8859-1" | 1076 | CONFIG_NLS_DEFAULT="iso8859-1" |
1022 | # CONFIG_NLS_CODEPAGE_437 is not set | 1077 | CONFIG_NLS_CODEPAGE_437=y |
1023 | # CONFIG_NLS_CODEPAGE_737 is not set | 1078 | # CONFIG_NLS_CODEPAGE_737 is not set |
1024 | # CONFIG_NLS_CODEPAGE_775 is not set | 1079 | # CONFIG_NLS_CODEPAGE_775 is not set |
1025 | # CONFIG_NLS_CODEPAGE_850 is not set | 1080 | # CONFIG_NLS_CODEPAGE_850 is not set |
@@ -1136,6 +1191,7 @@ CONFIG_ARM_UNWIND=y | |||
1136 | # CONFIG_DEBUG_ERRORS is not set | 1191 | # CONFIG_DEBUG_ERRORS is not set |
1137 | # CONFIG_DEBUG_STACK_USAGE is not set | 1192 | # CONFIG_DEBUG_STACK_USAGE is not set |
1138 | # CONFIG_DEBUG_LL is not set | 1193 | # CONFIG_DEBUG_LL is not set |
1194 | # CONFIG_OC_ETM is not set | ||
1139 | 1195 | ||
1140 | # | 1196 | # |
1141 | # Security options | 1197 | # Security options |
@@ -1143,7 +1199,11 @@ CONFIG_ARM_UNWIND=y | |||
1143 | # CONFIG_KEYS is not set | 1199 | # CONFIG_KEYS is not set |
1144 | # CONFIG_SECURITY is not set | 1200 | # CONFIG_SECURITY is not set |
1145 | # CONFIG_SECURITYFS is not set | 1201 | # CONFIG_SECURITYFS is not set |
1146 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1202 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1203 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1204 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1205 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1206 | CONFIG_DEFAULT_SECURITY="" | ||
1147 | # CONFIG_CRYPTO is not set | 1207 | # CONFIG_CRYPTO is not set |
1148 | # CONFIG_BINARY_PRINTF is not set | 1208 | # CONFIG_BINARY_PRINTF is not set |
1149 | 1209 | ||
diff --git a/arch/arm/configs/u8500_defconfig b/arch/arm/configs/u8500_defconfig index 15fde22ce3f..727aff9fe34 100644 --- a/arch/arm/configs/u8500_defconfig +++ b/arch/arm/configs/u8500_defconfig | |||
@@ -201,7 +201,6 @@ CONFIG_MACH_U8500_MOP=y | |||
201 | # | 201 | # |
202 | # Processor Type | 202 | # Processor Type |
203 | # | 203 | # |
204 | CONFIG_CPU_32=y | ||
205 | CONFIG_CPU_32v6K=y | 204 | CONFIG_CPU_32v6K=y |
206 | CONFIG_CPU_V7=y | 205 | CONFIG_CPU_V7=y |
207 | CONFIG_CPU_32v7=y | 206 | CONFIG_CPU_32v7=y |
diff --git a/arch/arm/configs/usb-a9260_defconfig b/arch/arm/configs/usb-a9260_defconfig index fd7774033d6..87b700e2db8 100644 --- a/arch/arm/configs/usb-a9260_defconfig +++ b/arch/arm/configs/usb-a9260_defconfig | |||
@@ -195,7 +195,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
195 | # | 195 | # |
196 | # Processor Type | 196 | # Processor Type |
197 | # | 197 | # |
198 | CONFIG_CPU_32=y | ||
199 | CONFIG_CPU_ARM926T=y | 198 | CONFIG_CPU_ARM926T=y |
200 | CONFIG_CPU_32v5=y | 199 | CONFIG_CPU_32v5=y |
201 | CONFIG_CPU_ABRT_EV5TJ=y | 200 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/usb-a9263_defconfig b/arch/arm/configs/usb-a9263_defconfig index e7c19dd9255..7f018edd248 100644 --- a/arch/arm/configs/usb-a9263_defconfig +++ b/arch/arm/configs/usb-a9263_defconfig | |||
@@ -187,7 +187,6 @@ CONFIG_AT91_EARLY_DBGU=y | |||
187 | # | 187 | # |
188 | # Processor Type | 188 | # Processor Type |
189 | # | 189 | # |
190 | CONFIG_CPU_32=y | ||
191 | CONFIG_CPU_ARM926T=y | 190 | CONFIG_CPU_ARM926T=y |
192 | CONFIG_CPU_32v5=y | 191 | CONFIG_CPU_32v5=y |
193 | CONFIG_CPU_ABRT_EV5TJ=y | 192 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/versatile_defconfig b/arch/arm/configs/versatile_defconfig index b11c5da3996..a1af0b972c0 100644 --- a/arch/arm/configs/versatile_defconfig +++ b/arch/arm/configs/versatile_defconfig | |||
@@ -117,7 +117,6 @@ CONFIG_MACH_VERSATILE_AB=y | |||
117 | # | 117 | # |
118 | # Processor Type | 118 | # Processor Type |
119 | # | 119 | # |
120 | CONFIG_CPU_32=y | ||
121 | CONFIG_CPU_ARM926T=y | 120 | CONFIG_CPU_ARM926T=y |
122 | CONFIG_CPU_32v5=y | 121 | CONFIG_CPU_32v5=y |
123 | CONFIG_CPU_ABRT_EV5TJ=y | 122 | CONFIG_CPU_ABRT_EV5TJ=y |
diff --git a/arch/arm/configs/viper_defconfig b/arch/arm/configs/viper_defconfig index 6ab5dd5868d..909887ae524 100644 --- a/arch/arm/configs/viper_defconfig +++ b/arch/arm/configs/viper_defconfig | |||
@@ -204,7 +204,6 @@ CONFIG_PXA_HAVE_ISA_IRQS=y | |||
204 | # | 204 | # |
205 | # Processor Type | 205 | # Processor Type |
206 | # | 206 | # |
207 | CONFIG_CPU_32=y | ||
208 | CONFIG_CPU_XSCALE=y | 207 | CONFIG_CPU_XSCALE=y |
209 | CONFIG_CPU_32v5=y | 208 | CONFIG_CPU_32v5=y |
210 | CONFIG_CPU_ABRT_EV5T=y | 209 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/xcep_defconfig b/arch/arm/configs/xcep_defconfig index 33bb7250946..84a72ac222c 100644 --- a/arch/arm/configs/xcep_defconfig +++ b/arch/arm/configs/xcep_defconfig | |||
@@ -208,7 +208,6 @@ CONFIG_PLAT_PXA=y | |||
208 | # | 208 | # |
209 | # Processor Type | 209 | # Processor Type |
210 | # | 210 | # |
211 | CONFIG_CPU_32=y | ||
212 | CONFIG_CPU_XSCALE=y | 211 | CONFIG_CPU_XSCALE=y |
213 | CONFIG_CPU_32v5=y | 212 | CONFIG_CPU_32v5=y |
214 | CONFIG_CPU_ABRT_EV5T=y | 213 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/configs/yl9200_defconfig b/arch/arm/configs/yl9200_defconfig index 9192e597767..3b627aadeb5 100644 --- a/arch/arm/configs/yl9200_defconfig +++ b/arch/arm/configs/yl9200_defconfig | |||
@@ -183,7 +183,6 @@ CONFIG_MACH_YL9200=y | |||
183 | # | 183 | # |
184 | # Processor Type | 184 | # Processor Type |
185 | # | 185 | # |
186 | CONFIG_CPU_32=y | ||
187 | CONFIG_CPU_ARM920T=y | 186 | CONFIG_CPU_ARM920T=y |
188 | CONFIG_CPU_32v4T=y | 187 | CONFIG_CPU_32v4T=y |
189 | CONFIG_CPU_ABRT_EV4T=y | 188 | CONFIG_CPU_ABRT_EV4T=y |
diff --git a/arch/arm/configs/zeus_defconfig b/arch/arm/configs/zeus_defconfig index 823b11e7091..fca5ff68ea6 100644 --- a/arch/arm/configs/zeus_defconfig +++ b/arch/arm/configs/zeus_defconfig | |||
@@ -271,7 +271,6 @@ CONFIG_PLAT_PXA=y | |||
271 | # | 271 | # |
272 | # Processor Type | 272 | # Processor Type |
273 | # | 273 | # |
274 | CONFIG_CPU_32=y | ||
275 | CONFIG_CPU_XSCALE=y | 274 | CONFIG_CPU_XSCALE=y |
276 | CONFIG_CPU_32v5=y | 275 | CONFIG_CPU_32v5=y |
277 | CONFIG_CPU_ABRT_EV5T=y | 276 | CONFIG_CPU_ABRT_EV5T=y |
diff --git a/arch/arm/include/asm/cpu.h b/arch/arm/include/asm/cpu.h index 634b2d7c612..793968173be 100644 --- a/arch/arm/include/asm/cpu.h +++ b/arch/arm/include/asm/cpu.h | |||
@@ -11,6 +11,7 @@ | |||
11 | #define __ASM_ARM_CPU_H | 11 | #define __ASM_ARM_CPU_H |
12 | 12 | ||
13 | #include <linux/percpu.h> | 13 | #include <linux/percpu.h> |
14 | #include <linux/cpu.h> | ||
14 | 15 | ||
15 | struct cpuinfo_arm { | 16 | struct cpuinfo_arm { |
16 | struct cpu cpu; | 17 | struct cpu cpu; |
diff --git a/arch/arm/include/asm/dma.h b/arch/arm/include/asm/dma.h index 7edf3536df2..ca51143f97f 100644 --- a/arch/arm/include/asm/dma.h +++ b/arch/arm/include/asm/dma.h | |||
@@ -138,12 +138,12 @@ extern int get_dma_residue(unsigned int chan); | |||
138 | #define NO_DMA 255 | 138 | #define NO_DMA 255 |
139 | #endif | 139 | #endif |
140 | 140 | ||
141 | #endif /* CONFIG_ISA_DMA_API */ | ||
142 | |||
141 | #ifdef CONFIG_PCI | 143 | #ifdef CONFIG_PCI |
142 | extern int isa_dma_bridge_buggy; | 144 | extern int isa_dma_bridge_buggy; |
143 | #else | 145 | #else |
144 | #define isa_dma_bridge_buggy (0) | 146 | #define isa_dma_bridge_buggy (0) |
145 | #endif | 147 | #endif |
146 | 148 | ||
147 | #endif /* CONFIG_ISA_DMA_API */ | ||
148 | |||
149 | #endif /* __ASM_ARM_DMA_H */ | 149 | #endif /* __ASM_ARM_DMA_H */ |
diff --git a/arch/arm/include/asm/proc-fns.h b/arch/arm/include/asm/proc-fns.h index 3976412685f..8fdae9bc9ab 100644 --- a/arch/arm/include/asm/proc-fns.h +++ b/arch/arm/include/asm/proc-fns.h | |||
@@ -24,206 +24,228 @@ | |||
24 | * CPU_NAME - the prefix for CPU related functions | 24 | * CPU_NAME - the prefix for CPU related functions |
25 | */ | 25 | */ |
26 | 26 | ||
27 | #ifdef CONFIG_CPU_32 | 27 | #ifdef CONFIG_CPU_ARM610 |
28 | # ifdef CONFIG_CPU_ARM610 | 28 | # ifdef CPU_NAME |
29 | # ifdef CPU_NAME | 29 | # undef MULTI_CPU |
30 | # undef MULTI_CPU | 30 | # define MULTI_CPU |
31 | # define MULTI_CPU | 31 | # else |
32 | # else | 32 | # define CPU_NAME cpu_arm6 |
33 | # define CPU_NAME cpu_arm6 | ||
34 | # endif | ||
35 | # endif | 33 | # endif |
36 | # ifdef CONFIG_CPU_ARM7TDMI | 34 | #endif |
37 | # ifdef CPU_NAME | 35 | |
38 | # undef MULTI_CPU | 36 | #ifdef CONFIG_CPU_ARM7TDMI |
39 | # define MULTI_CPU | 37 | # ifdef CPU_NAME |
40 | # else | 38 | # undef MULTI_CPU |
41 | # define CPU_NAME cpu_arm7tdmi | 39 | # define MULTI_CPU |
42 | # endif | 40 | # else |
41 | # define CPU_NAME cpu_arm7tdmi | ||
43 | # endif | 42 | # endif |
44 | # ifdef CONFIG_CPU_ARM710 | 43 | #endif |
45 | # ifdef CPU_NAME | 44 | |
46 | # undef MULTI_CPU | 45 | #ifdef CONFIG_CPU_ARM710 |
47 | # define MULTI_CPU | 46 | # ifdef CPU_NAME |
48 | # else | 47 | # undef MULTI_CPU |
49 | # define CPU_NAME cpu_arm7 | 48 | # define MULTI_CPU |
50 | # endif | 49 | # else |
50 | # define CPU_NAME cpu_arm7 | ||
51 | # endif | 51 | # endif |
52 | # ifdef CONFIG_CPU_ARM720T | 52 | #endif |
53 | # ifdef CPU_NAME | 53 | |
54 | # undef MULTI_CPU | 54 | #ifdef CONFIG_CPU_ARM720T |
55 | # define MULTI_CPU | 55 | # ifdef CPU_NAME |
56 | # else | 56 | # undef MULTI_CPU |
57 | # define CPU_NAME cpu_arm720 | 57 | # define MULTI_CPU |
58 | # endif | 58 | # else |
59 | # define CPU_NAME cpu_arm720 | ||
59 | # endif | 60 | # endif |
60 | # ifdef CONFIG_CPU_ARM740T | 61 | #endif |
61 | # ifdef CPU_NAME | 62 | |
62 | # undef MULTI_CPU | 63 | #ifdef CONFIG_CPU_ARM740T |
63 | # define MULTI_CPU | 64 | # ifdef CPU_NAME |
64 | # else | 65 | # undef MULTI_CPU |
65 | # define CPU_NAME cpu_arm740 | 66 | # define MULTI_CPU |
66 | # endif | 67 | # else |
68 | # define CPU_NAME cpu_arm740 | ||
67 | # endif | 69 | # endif |
68 | # ifdef CONFIG_CPU_ARM9TDMI | 70 | #endif |
69 | # ifdef CPU_NAME | 71 | |
70 | # undef MULTI_CPU | 72 | #ifdef CONFIG_CPU_ARM9TDMI |
71 | # define MULTI_CPU | 73 | # ifdef CPU_NAME |
72 | # else | 74 | # undef MULTI_CPU |
73 | # define CPU_NAME cpu_arm9tdmi | 75 | # define MULTI_CPU |
74 | # endif | 76 | # else |
77 | # define CPU_NAME cpu_arm9tdmi | ||
75 | # endif | 78 | # endif |
76 | # ifdef CONFIG_CPU_ARM920T | 79 | #endif |
77 | # ifdef CPU_NAME | 80 | |
78 | # undef MULTI_CPU | 81 | #ifdef CONFIG_CPU_ARM920T |
79 | # define MULTI_CPU | 82 | # ifdef CPU_NAME |
80 | # else | 83 | # undef MULTI_CPU |
81 | # define CPU_NAME cpu_arm920 | 84 | # define MULTI_CPU |
82 | # endif | 85 | # else |
86 | # define CPU_NAME cpu_arm920 | ||
83 | # endif | 87 | # endif |
84 | # ifdef CONFIG_CPU_ARM922T | 88 | #endif |
85 | # ifdef CPU_NAME | 89 | |
86 | # undef MULTI_CPU | 90 | #ifdef CONFIG_CPU_ARM922T |
87 | # define MULTI_CPU | 91 | # ifdef CPU_NAME |
88 | # else | 92 | # undef MULTI_CPU |
89 | # define CPU_NAME cpu_arm922 | 93 | # define MULTI_CPU |
90 | # endif | 94 | # else |
95 | # define CPU_NAME cpu_arm922 | ||
91 | # endif | 96 | # endif |
92 | # ifdef CONFIG_CPU_FA526 | 97 | #endif |
93 | # ifdef CPU_NAME | 98 | |
94 | # undef MULTI_CPU | 99 | #ifdef CONFIG_CPU_FA526 |
95 | # define MULTI_CPU | 100 | # ifdef CPU_NAME |
96 | # else | 101 | # undef MULTI_CPU |
97 | # define CPU_NAME cpu_fa526 | 102 | # define MULTI_CPU |
98 | # endif | 103 | # else |
104 | # define CPU_NAME cpu_fa526 | ||
99 | # endif | 105 | # endif |
100 | # ifdef CONFIG_CPU_ARM925T | 106 | #endif |
101 | # ifdef CPU_NAME | 107 | |
102 | # undef MULTI_CPU | 108 | #ifdef CONFIG_CPU_ARM925T |
103 | # define MULTI_CPU | 109 | # ifdef CPU_NAME |
104 | # else | 110 | # undef MULTI_CPU |
105 | # define CPU_NAME cpu_arm925 | 111 | # define MULTI_CPU |
106 | # endif | 112 | # else |
113 | # define CPU_NAME cpu_arm925 | ||
107 | # endif | 114 | # endif |
108 | # ifdef CONFIG_CPU_ARM926T | 115 | #endif |
109 | # ifdef CPU_NAME | 116 | |
110 | # undef MULTI_CPU | 117 | #ifdef CONFIG_CPU_ARM926T |
111 | # define MULTI_CPU | 118 | # ifdef CPU_NAME |
112 | # else | 119 | # undef MULTI_CPU |
113 | # define CPU_NAME cpu_arm926 | 120 | # define MULTI_CPU |
114 | # endif | 121 | # else |
122 | # define CPU_NAME cpu_arm926 | ||
115 | # endif | 123 | # endif |
116 | # ifdef CONFIG_CPU_ARM940T | 124 | #endif |
117 | # ifdef CPU_NAME | 125 | |
118 | # undef MULTI_CPU | 126 | #ifdef CONFIG_CPU_ARM940T |
119 | # define MULTI_CPU | 127 | # ifdef CPU_NAME |
120 | # else | 128 | # undef MULTI_CPU |
121 | # define CPU_NAME cpu_arm940 | 129 | # define MULTI_CPU |
122 | # endif | 130 | # else |
131 | # define CPU_NAME cpu_arm940 | ||
123 | # endif | 132 | # endif |
124 | # ifdef CONFIG_CPU_ARM946E | 133 | #endif |
125 | # ifdef CPU_NAME | 134 | |
126 | # undef MULTI_CPU | 135 | #ifdef CONFIG_CPU_ARM946E |
127 | # define MULTI_CPU | 136 | # ifdef CPU_NAME |
128 | # else | 137 | # undef MULTI_CPU |
129 | # define CPU_NAME cpu_arm946 | 138 | # define MULTI_CPU |
130 | # endif | 139 | # else |
140 | # define CPU_NAME cpu_arm946 | ||
131 | # endif | 141 | # endif |
132 | # ifdef CONFIG_CPU_SA110 | 142 | #endif |
133 | # ifdef CPU_NAME | 143 | |
134 | # undef MULTI_CPU | 144 | #ifdef CONFIG_CPU_SA110 |
135 | # define MULTI_CPU | 145 | # ifdef CPU_NAME |
136 | # else | 146 | # undef MULTI_CPU |
137 | # define CPU_NAME cpu_sa110 | 147 | # define MULTI_CPU |
138 | # endif | 148 | # else |
149 | # define CPU_NAME cpu_sa110 | ||
139 | # endif | 150 | # endif |
140 | # ifdef CONFIG_CPU_SA1100 | 151 | #endif |
141 | # ifdef CPU_NAME | 152 | |
142 | # undef MULTI_CPU | 153 | #ifdef CONFIG_CPU_SA1100 |
143 | # define MULTI_CPU | 154 | # ifdef CPU_NAME |
144 | # else | 155 | # undef MULTI_CPU |
145 | # define CPU_NAME cpu_sa1100 | 156 | # define MULTI_CPU |
146 | # endif | 157 | # else |
158 | # define CPU_NAME cpu_sa1100 | ||
147 | # endif | 159 | # endif |
148 | # ifdef CONFIG_CPU_ARM1020 | 160 | #endif |
149 | # ifdef CPU_NAME | 161 | |
150 | # undef MULTI_CPU | 162 | #ifdef CONFIG_CPU_ARM1020 |
151 | # define MULTI_CPU | 163 | # ifdef CPU_NAME |
152 | # else | 164 | # undef MULTI_CPU |
153 | # define CPU_NAME cpu_arm1020 | 165 | # define MULTI_CPU |
154 | # endif | 166 | # else |
167 | # define CPU_NAME cpu_arm1020 | ||
155 | # endif | 168 | # endif |
156 | # ifdef CONFIG_CPU_ARM1020E | 169 | #endif |
157 | # ifdef CPU_NAME | 170 | |
158 | # undef MULTI_CPU | 171 | #ifdef CONFIG_CPU_ARM1020E |
159 | # define MULTI_CPU | 172 | # ifdef CPU_NAME |
160 | # else | 173 | # undef MULTI_CPU |
161 | # define CPU_NAME cpu_arm1020e | 174 | # define MULTI_CPU |
162 | # endif | 175 | # else |
176 | # define CPU_NAME cpu_arm1020e | ||
163 | # endif | 177 | # endif |
164 | # ifdef CONFIG_CPU_ARM1022 | 178 | #endif |
165 | # ifdef CPU_NAME | 179 | |
166 | # undef MULTI_CPU | 180 | #ifdef CONFIG_CPU_ARM1022 |
167 | # define MULTI_CPU | 181 | # ifdef CPU_NAME |
168 | # else | 182 | # undef MULTI_CPU |
169 | # define CPU_NAME cpu_arm1022 | 183 | # define MULTI_CPU |
170 | # endif | 184 | # else |
185 | # define CPU_NAME cpu_arm1022 | ||
171 | # endif | 186 | # endif |
172 | # ifdef CONFIG_CPU_ARM1026 | 187 | #endif |
173 | # ifdef CPU_NAME | 188 | |
174 | # undef MULTI_CPU | 189 | #ifdef CONFIG_CPU_ARM1026 |
175 | # define MULTI_CPU | 190 | # ifdef CPU_NAME |
176 | # else | 191 | # undef MULTI_CPU |
177 | # define CPU_NAME cpu_arm1026 | 192 | # define MULTI_CPU |
178 | # endif | 193 | # else |
194 | # define CPU_NAME cpu_arm1026 | ||
179 | # endif | 195 | # endif |
180 | # ifdef CONFIG_CPU_XSCALE | 196 | #endif |
181 | # ifdef CPU_NAME | 197 | |
182 | # undef MULTI_CPU | 198 | #ifdef CONFIG_CPU_XSCALE |
183 | # define MULTI_CPU | 199 | # ifdef CPU_NAME |
184 | # else | 200 | # undef MULTI_CPU |
185 | # define CPU_NAME cpu_xscale | 201 | # define MULTI_CPU |
186 | # endif | 202 | # else |
203 | # define CPU_NAME cpu_xscale | ||
187 | # endif | 204 | # endif |
188 | # ifdef CONFIG_CPU_XSC3 | 205 | #endif |
189 | # ifdef CPU_NAME | 206 | |
190 | # undef MULTI_CPU | 207 | #ifdef CONFIG_CPU_XSC3 |
191 | # define MULTI_CPU | 208 | # ifdef CPU_NAME |
192 | # else | 209 | # undef MULTI_CPU |
193 | # define CPU_NAME cpu_xsc3 | 210 | # define MULTI_CPU |
194 | # endif | 211 | # else |
212 | # define CPU_NAME cpu_xsc3 | ||
195 | # endif | 213 | # endif |
196 | # ifdef CONFIG_CPU_MOHAWK | 214 | #endif |
197 | # ifdef CPU_NAME | 215 | |
198 | # undef MULTI_CPU | 216 | #ifdef CONFIG_CPU_MOHAWK |
199 | # define MULTI_CPU | 217 | # ifdef CPU_NAME |
200 | # else | 218 | # undef MULTI_CPU |
201 | # define CPU_NAME cpu_mohawk | 219 | # define MULTI_CPU |
202 | # endif | 220 | # else |
221 | # define CPU_NAME cpu_mohawk | ||
203 | # endif | 222 | # endif |
204 | # ifdef CONFIG_CPU_FEROCEON | 223 | #endif |
205 | # ifdef CPU_NAME | 224 | |
206 | # undef MULTI_CPU | 225 | #ifdef CONFIG_CPU_FEROCEON |
207 | # define MULTI_CPU | 226 | # ifdef CPU_NAME |
208 | # else | 227 | # undef MULTI_CPU |
209 | # define CPU_NAME cpu_feroceon | 228 | # define MULTI_CPU |
210 | # endif | 229 | # else |
230 | # define CPU_NAME cpu_feroceon | ||
211 | # endif | 231 | # endif |
212 | # ifdef CONFIG_CPU_V6 | 232 | #endif |
213 | # ifdef CPU_NAME | 233 | |
214 | # undef MULTI_CPU | 234 | #ifdef CONFIG_CPU_V6 |
215 | # define MULTI_CPU | 235 | # ifdef CPU_NAME |
216 | # else | 236 | # undef MULTI_CPU |
217 | # define CPU_NAME cpu_v6 | 237 | # define MULTI_CPU |
218 | # endif | 238 | # else |
239 | # define CPU_NAME cpu_v6 | ||
219 | # endif | 240 | # endif |
220 | # ifdef CONFIG_CPU_V7 | 241 | #endif |
221 | # ifdef CPU_NAME | 242 | |
222 | # undef MULTI_CPU | 243 | #ifdef CONFIG_CPU_V7 |
223 | # define MULTI_CPU | 244 | # ifdef CPU_NAME |
224 | # else | 245 | # undef MULTI_CPU |
225 | # define CPU_NAME cpu_v7 | 246 | # define MULTI_CPU |
226 | # endif | 247 | # else |
248 | # define CPU_NAME cpu_v7 | ||
227 | # endif | 249 | # endif |
228 | #endif | 250 | #endif |
229 | 251 | ||
diff --git a/arch/arm/include/asm/ptrace.h b/arch/arm/include/asm/ptrace.h index bbecccda76d..eec6e897ceb 100644 --- a/arch/arm/include/asm/ptrace.h +++ b/arch/arm/include/asm/ptrace.h | |||
@@ -97,9 +97,15 @@ | |||
97 | * stack during a system call. Note that sizeof(struct pt_regs) | 97 | * stack during a system call. Note that sizeof(struct pt_regs) |
98 | * has to be a multiple of 8. | 98 | * has to be a multiple of 8. |
99 | */ | 99 | */ |
100 | #ifndef __KERNEL__ | ||
100 | struct pt_regs { | 101 | struct pt_regs { |
101 | long uregs[18]; | 102 | long uregs[18]; |
102 | }; | 103 | }; |
104 | #else /* __KERNEL__ */ | ||
105 | struct pt_regs { | ||
106 | unsigned long uregs[18]; | ||
107 | }; | ||
108 | #endif /* __KERNEL__ */ | ||
103 | 109 | ||
104 | #define ARM_cpsr uregs[16] | 110 | #define ARM_cpsr uregs[16] |
105 | #define ARM_pc uregs[15] | 111 | #define ARM_pc uregs[15] |
diff --git a/arch/arm/include/asm/thread_notify.h b/arch/arm/include/asm/thread_notify.h index f27379d7f72..c4391ba2035 100644 --- a/arch/arm/include/asm/thread_notify.h +++ b/arch/arm/include/asm/thread_notify.h | |||
@@ -41,7 +41,7 @@ static inline void thread_notify(unsigned long rc, struct thread_info *thread) | |||
41 | * These are the reason codes for the thread notifier. | 41 | * These are the reason codes for the thread notifier. |
42 | */ | 42 | */ |
43 | #define THREAD_NOTIFY_FLUSH 0 | 43 | #define THREAD_NOTIFY_FLUSH 0 |
44 | #define THREAD_NOTIFY_RELEASE 1 | 44 | #define THREAD_NOTIFY_EXIT 1 |
45 | #define THREAD_NOTIFY_SWITCH 2 | 45 | #define THREAD_NOTIFY_SWITCH 2 |
46 | 46 | ||
47 | #endif | 47 | #endif |
diff --git a/arch/arm/include/asm/unistd.h b/arch/arm/include/asm/unistd.h index 4e506d09e5f..cf9cdaa2d4d 100644 --- a/arch/arm/include/asm/unistd.h +++ b/arch/arm/include/asm/unistd.h | |||
@@ -391,6 +391,7 @@ | |||
391 | #define __NR_pwritev (__NR_SYSCALL_BASE+362) | 391 | #define __NR_pwritev (__NR_SYSCALL_BASE+362) |
392 | #define __NR_rt_tgsigqueueinfo (__NR_SYSCALL_BASE+363) | 392 | #define __NR_rt_tgsigqueueinfo (__NR_SYSCALL_BASE+363) |
393 | #define __NR_perf_event_open (__NR_SYSCALL_BASE+364) | 393 | #define __NR_perf_event_open (__NR_SYSCALL_BASE+364) |
394 | #define __NR_recvmmsg (__NR_SYSCALL_BASE+365) | ||
394 | 395 | ||
395 | /* | 396 | /* |
396 | * The following SWIs are ARM private. | 397 | * The following SWIs are ARM private. |
diff --git a/arch/arm/kernel/crunch.c b/arch/arm/kernel/crunch.c index 769abe15cf9..25ef223ba7f 100644 --- a/arch/arm/kernel/crunch.c +++ b/arch/arm/kernel/crunch.c | |||
@@ -51,7 +51,7 @@ static int crunch_do(struct notifier_block *self, unsigned long cmd, void *t) | |||
51 | * initialised state information on the first fault. | 51 | * initialised state information on the first fault. |
52 | */ | 52 | */ |
53 | 53 | ||
54 | case THREAD_NOTIFY_RELEASE: | 54 | case THREAD_NOTIFY_EXIT: |
55 | crunch_task_release(thread); | 55 | crunch_task_release(thread); |
56 | break; | 56 | break; |
57 | 57 | ||
diff --git a/arch/arm/kernel/dma-isa.c b/arch/arm/kernel/dma-isa.c index 0e88e46fc73..360bb6d701f 100644 --- a/arch/arm/kernel/dma-isa.c +++ b/arch/arm/kernel/dma-isa.c | |||
@@ -207,8 +207,6 @@ void __init isa_init_dma(void) | |||
207 | outb(0x32, 0x4d6); | 207 | outb(0x32, 0x4d6); |
208 | outb(0x33, 0x4d6); | 208 | outb(0x33, 0x4d6); |
209 | 209 | ||
210 | request_dma(DMA_ISA_CASCADE, "cascade"); | ||
211 | |||
212 | for (i = 0; i < ARRAY_SIZE(dma_resources); i++) | 210 | for (i = 0; i < ARRAY_SIZE(dma_resources); i++) |
213 | request_resource(&ioport_resource, dma_resources + i); | 211 | request_resource(&ioport_resource, dma_resources + i); |
214 | 212 | ||
@@ -218,5 +216,7 @@ void __init isa_init_dma(void) | |||
218 | printk(KERN_ERR "ISADMA%u: unable to register: %d\n", | 216 | printk(KERN_ERR "ISADMA%u: unable to register: %d\n", |
219 | chan, ret); | 217 | chan, ret); |
220 | } | 218 | } |
219 | |||
220 | request_dma(DMA_ISA_CASCADE, "cascade"); | ||
221 | } | 221 | } |
222 | } | 222 | } |
diff --git a/arch/arm/kernel/entry-armv.S b/arch/arm/kernel/entry-armv.S index d2903e3bc86..6c5cf369183 100644 --- a/arch/arm/kernel/entry-armv.S +++ b/arch/arm/kernel/entry-armv.S | |||
@@ -957,9 +957,7 @@ kuser_cmpxchg_fixup: | |||
957 | 957 | ||
958 | #else | 958 | #else |
959 | 959 | ||
960 | #ifdef CONFIG_SMP | 960 | smp_dmb |
961 | mcr p15, 0, r0, c7, c10, 5 @ dmb | ||
962 | #endif | ||
963 | 1: ldrex r3, [r2] | 961 | 1: ldrex r3, [r2] |
964 | subs r3, r3, r0 | 962 | subs r3, r3, r0 |
965 | strexeq r3, r1, [r2] | 963 | strexeq r3, r1, [r2] |
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index 0d96d0171c0..ba2adefa53f 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
@@ -212,7 +212,8 @@ void __show_regs(struct pt_regs *regs) | |||
212 | char buf[64]; | 212 | char buf[64]; |
213 | 213 | ||
214 | printk("CPU: %d %s (%s %.*s)\n", | 214 | printk("CPU: %d %s (%s %.*s)\n", |
215 | smp_processor_id(), print_tainted(), init_utsname()->release, | 215 | raw_smp_processor_id(), print_tainted(), |
216 | init_utsname()->release, | ||
216 | (int)strcspn(init_utsname()->version, " "), | 217 | (int)strcspn(init_utsname()->version, " "), |
217 | init_utsname()->version); | 218 | init_utsname()->version); |
218 | print_symbol("PC is at %s\n", instruction_pointer(regs)); | 219 | print_symbol("PC is at %s\n", instruction_pointer(regs)); |
@@ -274,17 +275,18 @@ void show_regs(struct pt_regs * regs) | |||
274 | __backtrace(); | 275 | __backtrace(); |
275 | } | 276 | } |
276 | 277 | ||
278 | ATOMIC_NOTIFIER_HEAD(thread_notify_head); | ||
279 | |||
280 | EXPORT_SYMBOL_GPL(thread_notify_head); | ||
281 | |||
277 | /* | 282 | /* |
278 | * Free current thread data structures etc.. | 283 | * Free current thread data structures etc.. |
279 | */ | 284 | */ |
280 | void exit_thread(void) | 285 | void exit_thread(void) |
281 | { | 286 | { |
287 | thread_notify(THREAD_NOTIFY_EXIT, current_thread_info()); | ||
282 | } | 288 | } |
283 | 289 | ||
284 | ATOMIC_NOTIFIER_HEAD(thread_notify_head); | ||
285 | |||
286 | EXPORT_SYMBOL_GPL(thread_notify_head); | ||
287 | |||
288 | void flush_thread(void) | 290 | void flush_thread(void) |
289 | { | 291 | { |
290 | struct thread_info *thread = current_thread_info(); | 292 | struct thread_info *thread = current_thread_info(); |
@@ -299,9 +301,6 @@ void flush_thread(void) | |||
299 | 301 | ||
300 | void release_thread(struct task_struct *dead_task) | 302 | void release_thread(struct task_struct *dead_task) |
301 | { | 303 | { |
302 | struct thread_info *thread = task_thread_info(dead_task); | ||
303 | |||
304 | thread_notify(THREAD_NOTIFY_RELEASE, thread); | ||
305 | } | 304 | } |
306 | 305 | ||
307 | asmlinkage void ret_from_fork(void) __asm__("ret_from_fork"); | 306 | asmlinkage void ret_from_fork(void) __asm__("ret_from_fork"); |
diff --git a/arch/arm/kernel/xscale-cp0.c b/arch/arm/kernel/xscale-cp0.c index 17127db906f..1796157e3dd 100644 --- a/arch/arm/kernel/xscale-cp0.c +++ b/arch/arm/kernel/xscale-cp0.c | |||
@@ -70,7 +70,7 @@ static int iwmmxt_do(struct notifier_block *self, unsigned long cmd, void *t) | |||
70 | * initialised state information on the first fault. | 70 | * initialised state information on the first fault. |
71 | */ | 71 | */ |
72 | 72 | ||
73 | case THREAD_NOTIFY_RELEASE: | 73 | case THREAD_NOTIFY_EXIT: |
74 | iwmmxt_task_release(thread); | 74 | iwmmxt_task_release(thread); |
75 | break; | 75 | break; |
76 | 76 | ||
diff --git a/arch/arm/mach-davinci/board-dm355-evm.c b/arch/arm/mach-davinci/board-dm355-evm.c index a9b650dcc17..077ecf4fecd 100644 --- a/arch/arm/mach-davinci/board-dm355-evm.c +++ b/arch/arm/mach-davinci/board-dm355-evm.c | |||
@@ -236,6 +236,7 @@ static struct vpfe_subdev_info vpfe_sub_devs[] = { | |||
236 | 236 | ||
237 | static struct vpfe_config vpfe_cfg = { | 237 | static struct vpfe_config vpfe_cfg = { |
238 | .num_subdevs = ARRAY_SIZE(vpfe_sub_devs), | 238 | .num_subdevs = ARRAY_SIZE(vpfe_sub_devs), |
239 | .i2c_adapter_id = 1, | ||
239 | .sub_devs = vpfe_sub_devs, | 240 | .sub_devs = vpfe_sub_devs, |
240 | .card_name = "DM355 EVM", | 241 | .card_name = "DM355 EVM", |
241 | .ccdc = "DM355 CCDC", | 242 | .ccdc = "DM355 CCDC", |
diff --git a/arch/arm/mach-davinci/board-dm365-evm.c b/arch/arm/mach-davinci/board-dm365-evm.c index 289fe1b7d25..b476395d2cd 100644 --- a/arch/arm/mach-davinci/board-dm365-evm.c +++ b/arch/arm/mach-davinci/board-dm365-evm.c | |||
@@ -192,7 +192,11 @@ static struct davinci_i2c_platform_data i2c_pdata = { | |||
192 | .bus_delay = 0 /* usec */, | 192 | .bus_delay = 0 /* usec */, |
193 | }; | 193 | }; |
194 | 194 | ||
195 | #ifdef CONFIG_KEYBOARD_DAVINCI | 195 | static int dm365evm_keyscan_enable(struct device *dev) |
196 | { | ||
197 | return davinci_cfg_reg(DM365_KEYSCAN); | ||
198 | } | ||
199 | |||
196 | static unsigned short dm365evm_keymap[] = { | 200 | static unsigned short dm365evm_keymap[] = { |
197 | KEY_KP2, | 201 | KEY_KP2, |
198 | KEY_LEFT, | 202 | KEY_LEFT, |
@@ -214,6 +218,7 @@ static unsigned short dm365evm_keymap[] = { | |||
214 | }; | 218 | }; |
215 | 219 | ||
216 | static struct davinci_ks_platform_data dm365evm_ks_data = { | 220 | static struct davinci_ks_platform_data dm365evm_ks_data = { |
221 | .device_enable = dm365evm_keyscan_enable, | ||
217 | .keymap = dm365evm_keymap, | 222 | .keymap = dm365evm_keymap, |
218 | .keymapsize = ARRAY_SIZE(dm365evm_keymap), | 223 | .keymapsize = ARRAY_SIZE(dm365evm_keymap), |
219 | .rep = 1, | 224 | .rep = 1, |
@@ -222,7 +227,6 @@ static struct davinci_ks_platform_data dm365evm_ks_data = { | |||
222 | .interval = 0x2, | 227 | .interval = 0x2, |
223 | .matrix_type = DAVINCI_KEYSCAN_MATRIX_4X4, | 228 | .matrix_type = DAVINCI_KEYSCAN_MATRIX_4X4, |
224 | }; | 229 | }; |
225 | #endif | ||
226 | 230 | ||
227 | static int cpld_mmc_get_cd(int module) | 231 | static int cpld_mmc_get_cd(int module) |
228 | { | 232 | { |
@@ -511,10 +515,7 @@ static __init void dm365_evm_init(void) | |||
511 | 515 | ||
512 | dm365_init_asp(&dm365_evm_snd_data); | 516 | dm365_init_asp(&dm365_evm_snd_data); |
513 | dm365_init_rtc(); | 517 | dm365_init_rtc(); |
514 | |||
515 | #ifdef CONFIG_KEYBOARD_DAVINCI | ||
516 | dm365_init_ks(&dm365evm_ks_data); | 518 | dm365_init_ks(&dm365evm_ks_data); |
517 | #endif | ||
518 | } | 519 | } |
519 | 520 | ||
520 | static __init void dm365_evm_irq_init(void) | 521 | static __init void dm365_evm_irq_init(void) |
diff --git a/arch/arm/mach-davinci/board-dm644x-evm.c b/arch/arm/mach-davinci/board-dm644x-evm.c index fd0398bc6db..e9612cf727b 100644 --- a/arch/arm/mach-davinci/board-dm644x-evm.c +++ b/arch/arm/mach-davinci/board-dm644x-evm.c | |||
@@ -247,6 +247,7 @@ static struct vpfe_subdev_info vpfe_sub_devs[] = { | |||
247 | 247 | ||
248 | static struct vpfe_config vpfe_cfg = { | 248 | static struct vpfe_config vpfe_cfg = { |
249 | .num_subdevs = ARRAY_SIZE(vpfe_sub_devs), | 249 | .num_subdevs = ARRAY_SIZE(vpfe_sub_devs), |
250 | .i2c_adapter_id = 1, | ||
250 | .sub_devs = vpfe_sub_devs, | 251 | .sub_devs = vpfe_sub_devs, |
251 | .card_name = "DM6446 EVM", | 252 | .card_name = "DM6446 EVM", |
252 | .ccdc = "DM6446 CCDC", | 253 | .ccdc = "DM6446 CCDC", |
diff --git a/arch/arm/mach-davinci/cp_intc.c b/arch/arm/mach-davinci/cp_intc.c index 52b287cf3a4..37311d1830e 100644 --- a/arch/arm/mach-davinci/cp_intc.c +++ b/arch/arm/mach-davinci/cp_intc.c | |||
@@ -81,12 +81,23 @@ static int cp_intc_set_irq_type(unsigned int irq, unsigned int flow_type) | |||
81 | return 0; | 81 | return 0; |
82 | } | 82 | } |
83 | 83 | ||
84 | /* | ||
85 | * Faking this allows us to to work with suspend functions of | ||
86 | * generic drivers which call {enable|disable}_irq_wake for | ||
87 | * wake up interrupt sources (eg RTC on DA850). | ||
88 | */ | ||
89 | static int cp_intc_set_wake(unsigned int irq, unsigned int on) | ||
90 | { | ||
91 | return 0; | ||
92 | } | ||
93 | |||
84 | static struct irq_chip cp_intc_irq_chip = { | 94 | static struct irq_chip cp_intc_irq_chip = { |
85 | .name = "cp_intc", | 95 | .name = "cp_intc", |
86 | .ack = cp_intc_ack_irq, | 96 | .ack = cp_intc_ack_irq, |
87 | .mask = cp_intc_mask_irq, | 97 | .mask = cp_intc_mask_irq, |
88 | .unmask = cp_intc_unmask_irq, | 98 | .unmask = cp_intc_unmask_irq, |
89 | .set_type = cp_intc_set_irq_type, | 99 | .set_type = cp_intc_set_irq_type, |
100 | .set_wake = cp_intc_set_wake, | ||
90 | }; | 101 | }; |
91 | 102 | ||
92 | void __init cp_intc_init(void __iomem *base, unsigned short num_irq, | 103 | void __init cp_intc_init(void __iomem *base, unsigned short num_irq, |
diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c index dd2d32c4ce8..a5105f03fd8 100644 --- a/arch/arm/mach-davinci/devices-da8xx.c +++ b/arch/arm/mach-davinci/devices-da8xx.c | |||
@@ -481,11 +481,18 @@ static struct platform_device da8xx_rtc_device = { | |||
481 | 481 | ||
482 | int da8xx_register_rtc(void) | 482 | int da8xx_register_rtc(void) |
483 | { | 483 | { |
484 | int ret; | ||
485 | |||
484 | /* Unlock the rtc's registers */ | 486 | /* Unlock the rtc's registers */ |
485 | __raw_writel(0x83e70b13, IO_ADDRESS(DA8XX_RTC_BASE + 0x6c)); | 487 | __raw_writel(0x83e70b13, IO_ADDRESS(DA8XX_RTC_BASE + 0x6c)); |
486 | __raw_writel(0x95a4f1e0, IO_ADDRESS(DA8XX_RTC_BASE + 0x70)); | 488 | __raw_writel(0x95a4f1e0, IO_ADDRESS(DA8XX_RTC_BASE + 0x70)); |
487 | 489 | ||
488 | return platform_device_register(&da8xx_rtc_device); | 490 | ret = platform_device_register(&da8xx_rtc_device); |
491 | if (!ret) | ||
492 | /* Atleast on DA850, RTC is a wakeup source */ | ||
493 | device_init_wakeup(&da8xx_rtc_device.dev, true); | ||
494 | |||
495 | return ret; | ||
489 | } | 496 | } |
490 | 497 | ||
491 | static struct resource da8xx_cpuidle_resources[] = { | 498 | static struct resource da8xx_cpuidle_resources[] = { |
diff --git a/arch/arm/mach-davinci/dm365.c b/arch/arm/mach-davinci/dm365.c index 2ec619ec165..f53735cb922 100644 --- a/arch/arm/mach-davinci/dm365.c +++ b/arch/arm/mach-davinci/dm365.c | |||
@@ -993,7 +993,6 @@ void __init dm365_init_asp(struct snd_platform_data *pdata) | |||
993 | 993 | ||
994 | void __init dm365_init_ks(struct davinci_ks_platform_data *pdata) | 994 | void __init dm365_init_ks(struct davinci_ks_platform_data *pdata) |
995 | { | 995 | { |
996 | davinci_cfg_reg(DM365_KEYSCAN); | ||
997 | dm365_ks_device.dev.platform_data = pdata; | 996 | dm365_ks_device.dev.platform_data = pdata; |
998 | platform_device_register(&dm365_ks_device); | 997 | platform_device_register(&dm365_ks_device); |
999 | } | 998 | } |
diff --git a/arch/arm/mach-davinci/include/mach/keyscan.h b/arch/arm/mach-davinci/include/mach/keyscan.h index b4e21a2976d..7a560e05bda 100644 --- a/arch/arm/mach-davinci/include/mach/keyscan.h +++ b/arch/arm/mach-davinci/include/mach/keyscan.h | |||
@@ -29,6 +29,7 @@ enum davinci_matrix_types { | |||
29 | }; | 29 | }; |
30 | 30 | ||
31 | struct davinci_ks_platform_data { | 31 | struct davinci_ks_platform_data { |
32 | int (*device_enable)(struct device *dev); | ||
32 | unsigned short *keymap; | 33 | unsigned short *keymap; |
33 | u32 keymapsize; | 34 | u32 keymapsize; |
34 | u8 rep:1; | 35 | u8 rep:1; |
diff --git a/arch/arm/mach-footbridge/Makefile b/arch/arm/mach-footbridge/Makefile index 32f8609e4f8..3afb1b25946 100644 --- a/arch/arm/mach-footbridge/Makefile +++ b/arch/arm/mach-footbridge/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | # Object file lists. | 5 | # Object file lists. |
6 | 6 | ||
7 | obj-y := common.o dc21285.o dma.o isa-irq.o time.o | 7 | obj-y := common.o dc21285.o dma.o isa-irq.o |
8 | obj-m := | 8 | obj-m := |
9 | obj-n := | 9 | obj-n := |
10 | obj- := | 10 | obj- := |
@@ -25,4 +25,4 @@ obj-$(CONFIG_ARCH_PERSONAL_SERVER) += personal.o dc21285-timer.o | |||
25 | obj-$(CONFIG_PCI) +=$(pci-y) | 25 | obj-$(CONFIG_PCI) +=$(pci-y) |
26 | obj-$(CONFIG_LEDS) +=$(leds-y) | 26 | obj-$(CONFIG_LEDS) +=$(leds-y) |
27 | 27 | ||
28 | obj-$(CONFIG_ISA) += isa.o | 28 | obj-$(CONFIG_ISA) += isa.o isa-rtc.o |
diff --git a/arch/arm/mach-footbridge/dc21285-timer.c b/arch/arm/mach-footbridge/dc21285-timer.c index da35bc5c5cc..bc5e83fb581 100644 --- a/arch/arm/mach-footbridge/dc21285-timer.c +++ b/arch/arm/mach-footbridge/dc21285-timer.c | |||
@@ -56,8 +56,6 @@ static void __init footbridge_timer_init(void) | |||
56 | *CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD | TIMER_CNTL_DIV16; | 56 | *CSR_TIMER1_CNTL = TIMER_CNTL_ENABLE | TIMER_CNTL_AUTORELOAD | TIMER_CNTL_DIV16; |
57 | 57 | ||
58 | setup_irq(IRQ_TIMER1, &footbridge_timer_irq); | 58 | setup_irq(IRQ_TIMER1, &footbridge_timer_irq); |
59 | |||
60 | isa_rtc_init(); | ||
61 | } | 59 | } |
62 | 60 | ||
63 | struct sys_timer footbridge_timer = { | 61 | struct sys_timer footbridge_timer = { |
diff --git a/arch/arm/mach-footbridge/isa-rtc.c b/arch/arm/mach-footbridge/isa-rtc.c new file mode 100644 index 00000000000..07fde4051f7 --- /dev/null +++ b/arch/arm/mach-footbridge/isa-rtc.c | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-footbridge/isa-rtc.c | ||
3 | * | ||
4 | * Copyright (C) 1998 Russell King. | ||
5 | * Copyright (C) 1998 Phil Blundell | ||
6 | * | ||
7 | * CATS has a real-time clock, though the evaluation board doesn't. | ||
8 | * | ||
9 | * Changelog: | ||
10 | * 21-Mar-1998 RMK Created | ||
11 | * 27-Aug-1998 PJB CATS support | ||
12 | * 28-Dec-1998 APH Made leds optional | ||
13 | * 20-Jan-1999 RMK Started merge of EBSA285, CATS and NetWinder | ||
14 | * 16-Mar-1999 RMK More support for EBSA285-like machines with RTCs in | ||
15 | */ | ||
16 | |||
17 | #define RTC_PORT(x) (0x70+(x)) | ||
18 | #define RTC_ALWAYS_BCD 0 | ||
19 | |||
20 | #include <linux/init.h> | ||
21 | #include <linux/mc146818rtc.h> | ||
22 | #include <linux/bcd.h> | ||
23 | #include <linux/io.h> | ||
24 | |||
25 | #include "common.h" | ||
26 | |||
27 | void __init isa_rtc_init(void) | ||
28 | { | ||
29 | int reg_d, reg_b; | ||
30 | |||
31 | /* | ||
32 | * Probe for the RTC. | ||
33 | */ | ||
34 | reg_d = CMOS_READ(RTC_REG_D); | ||
35 | |||
36 | /* | ||
37 | * make sure the divider is set | ||
38 | */ | ||
39 | CMOS_WRITE(RTC_REF_CLCK_32KHZ, RTC_REG_A); | ||
40 | |||
41 | /* | ||
42 | * Set control reg B | ||
43 | * (24 hour mode, update enabled) | ||
44 | */ | ||
45 | reg_b = CMOS_READ(RTC_REG_B) & 0x7f; | ||
46 | reg_b |= 2; | ||
47 | CMOS_WRITE(reg_b, RTC_REG_B); | ||
48 | |||
49 | if ((CMOS_READ(RTC_REG_A) & 0x7f) == RTC_REF_CLCK_32KHZ && | ||
50 | CMOS_READ(RTC_REG_B) == reg_b) { | ||
51 | /* | ||
52 | * We have a RTC. Check the battery | ||
53 | */ | ||
54 | if ((reg_d & 0x80) == 0) | ||
55 | printk(KERN_WARNING "RTC: *** warning: CMOS battery bad\n"); | ||
56 | } | ||
57 | } | ||
diff --git a/arch/arm/mach-footbridge/isa-timer.c b/arch/arm/mach-footbridge/isa-timer.c index 0c8390082fa..f488fa2082d 100644 --- a/arch/arm/mach-footbridge/isa-timer.c +++ b/arch/arm/mach-footbridge/isa-timer.c | |||
@@ -76,8 +76,6 @@ static struct irqaction isa_timer_irq = { | |||
76 | 76 | ||
77 | static void __init isa_timer_init(void) | 77 | static void __init isa_timer_init(void) |
78 | { | 78 | { |
79 | isa_rtc_init(); | ||
80 | |||
81 | /* enable PIT timer */ | 79 | /* enable PIT timer */ |
82 | /* set for periodic (4) and LSB/MSB write (0x30) */ | 80 | /* set for periodic (4) and LSB/MSB write (0x30) */ |
83 | outb(0x34, 0x43); | 81 | outb(0x34, 0x43); |
diff --git a/arch/arm/mach-footbridge/isa.c b/arch/arm/mach-footbridge/isa.c index 725a219d0ed..4d9276c27d6 100644 --- a/arch/arm/mach-footbridge/isa.c +++ b/arch/arm/mach-footbridge/isa.c | |||
@@ -11,6 +11,9 @@ | |||
11 | #include <linux/serial_8250.h> | 11 | #include <linux/serial_8250.h> |
12 | 12 | ||
13 | #include <asm/irq.h> | 13 | #include <asm/irq.h> |
14 | #include <asm/hardware/dec21285.h> | ||
15 | |||
16 | #include "common.h" | ||
14 | 17 | ||
15 | static struct resource rtc_resources[] = { | 18 | static struct resource rtc_resources[] = { |
16 | [0] = { | 19 | [0] = { |
@@ -77,11 +80,18 @@ static struct platform_device serial_device = { | |||
77 | 80 | ||
78 | static int __init footbridge_isa_init(void) | 81 | static int __init footbridge_isa_init(void) |
79 | { | 82 | { |
80 | int err; | 83 | int err = 0; |
81 | 84 | ||
82 | err = platform_device_register(&rtc_device); | 85 | if (!footbridge_cfn_mode()) |
83 | if (err) | 86 | return 0; |
84 | printk(KERN_ERR "Unable to register RTC device: %d\n", err); | 87 | |
88 | /* Personal server doesn't have RTC */ | ||
89 | if (!machine_is_personal_server()) { | ||
90 | isa_rtc_init(); | ||
91 | err = platform_device_register(&rtc_device); | ||
92 | if (err) | ||
93 | printk(KERN_ERR "Unable to register RTC device: %d\n", err); | ||
94 | } | ||
85 | err = platform_device_register(&serial_device); | 95 | err = platform_device_register(&serial_device); |
86 | if (err) | 96 | if (err) |
87 | printk(KERN_ERR "Unable to register serial device: %d\n", err); | 97 | printk(KERN_ERR "Unable to register serial device: %d\n", err); |
diff --git a/arch/arm/mach-footbridge/time.c b/arch/arm/mach-footbridge/time.c deleted file mode 100644 index cd1b54ff9fe..00000000000 --- a/arch/arm/mach-footbridge/time.c +++ /dev/null | |||
@@ -1,164 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-footbridge/include/mach/time.h | ||
3 | * | ||
4 | * Copyright (C) 1998 Russell King. | ||
5 | * Copyright (C) 1998 Phil Blundell | ||
6 | * | ||
7 | * CATS has a real-time clock, though the evaluation board doesn't. | ||
8 | * | ||
9 | * Changelog: | ||
10 | * 21-Mar-1998 RMK Created | ||
11 | * 27-Aug-1998 PJB CATS support | ||
12 | * 28-Dec-1998 APH Made leds optional | ||
13 | * 20-Jan-1999 RMK Started merge of EBSA285, CATS and NetWinder | ||
14 | * 16-Mar-1999 RMK More support for EBSA285-like machines with RTCs in | ||
15 | */ | ||
16 | |||
17 | #define RTC_PORT(x) (rtc_base+(x)) | ||
18 | #define RTC_ALWAYS_BCD 0 | ||
19 | |||
20 | #include <linux/timex.h> | ||
21 | #include <linux/init.h> | ||
22 | #include <linux/sched.h> | ||
23 | #include <linux/mc146818rtc.h> | ||
24 | #include <linux/bcd.h> | ||
25 | #include <linux/io.h> | ||
26 | |||
27 | #include <mach/hardware.h> | ||
28 | |||
29 | #include <asm/mach/time.h> | ||
30 | #include "common.h" | ||
31 | |||
32 | static int rtc_base; | ||
33 | |||
34 | static unsigned long __init get_isa_cmos_time(void) | ||
35 | { | ||
36 | unsigned int year, mon, day, hour, min, sec; | ||
37 | |||
38 | // check to see if the RTC makes sense..... | ||
39 | if ((CMOS_READ(RTC_VALID) & RTC_VRT) == 0) | ||
40 | return mktime(1970, 1, 1, 0, 0, 0); | ||
41 | |||
42 | do { | ||
43 | sec = CMOS_READ(RTC_SECONDS); | ||
44 | min = CMOS_READ(RTC_MINUTES); | ||
45 | hour = CMOS_READ(RTC_HOURS); | ||
46 | day = CMOS_READ(RTC_DAY_OF_MONTH); | ||
47 | mon = CMOS_READ(RTC_MONTH); | ||
48 | year = CMOS_READ(RTC_YEAR); | ||
49 | } while (sec != CMOS_READ(RTC_SECONDS)); | ||
50 | |||
51 | if (!(CMOS_READ(RTC_CONTROL) & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { | ||
52 | sec = bcd2bin(sec); | ||
53 | min = bcd2bin(min); | ||
54 | hour = bcd2bin(hour); | ||
55 | day = bcd2bin(day); | ||
56 | mon = bcd2bin(mon); | ||
57 | year = bcd2bin(year); | ||
58 | } | ||
59 | if ((year += 1900) < 1970) | ||
60 | year += 100; | ||
61 | return mktime(year, mon, day, hour, min, sec); | ||
62 | } | ||
63 | |||
64 | static int set_isa_cmos_time(void) | ||
65 | { | ||
66 | int retval = 0; | ||
67 | int real_seconds, real_minutes, cmos_minutes; | ||
68 | unsigned char save_control, save_freq_select; | ||
69 | unsigned long nowtime = xtime.tv_sec; | ||
70 | |||
71 | save_control = CMOS_READ(RTC_CONTROL); /* tell the clock it's being set */ | ||
72 | CMOS_WRITE((save_control|RTC_SET), RTC_CONTROL); | ||
73 | |||
74 | save_freq_select = CMOS_READ(RTC_FREQ_SELECT); /* stop and reset prescaler */ | ||
75 | CMOS_WRITE((save_freq_select|RTC_DIV_RESET2), RTC_FREQ_SELECT); | ||
76 | |||
77 | cmos_minutes = CMOS_READ(RTC_MINUTES); | ||
78 | if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) | ||
79 | cmos_minutes = bcd2bin(cmos_minutes); | ||
80 | |||
81 | /* | ||
82 | * since we're only adjusting minutes and seconds, | ||
83 | * don't interfere with hour overflow. This avoids | ||
84 | * messing with unknown time zones but requires your | ||
85 | * RTC not to be off by more than 15 minutes | ||
86 | */ | ||
87 | real_seconds = nowtime % 60; | ||
88 | real_minutes = nowtime / 60; | ||
89 | if (((abs(real_minutes - cmos_minutes) + 15)/30) & 1) | ||
90 | real_minutes += 30; /* correct for half hour time zone */ | ||
91 | real_minutes %= 60; | ||
92 | |||
93 | if (abs(real_minutes - cmos_minutes) < 30) { | ||
94 | if (!(save_control & RTC_DM_BINARY) || RTC_ALWAYS_BCD) { | ||
95 | real_seconds = bin2bcd(real_seconds); | ||
96 | real_minutes = bin2bcd(real_minutes); | ||
97 | } | ||
98 | CMOS_WRITE(real_seconds,RTC_SECONDS); | ||
99 | CMOS_WRITE(real_minutes,RTC_MINUTES); | ||
100 | } else | ||
101 | retval = -1; | ||
102 | |||
103 | /* The following flags have to be released exactly in this order, | ||
104 | * otherwise the DS12887 (popular MC146818A clone with integrated | ||
105 | * battery and quartz) will not reset the oscillator and will not | ||
106 | * update precisely 500 ms later. You won't find this mentioned in | ||
107 | * the Dallas Semiconductor data sheets, but who believes data | ||
108 | * sheets anyway ... -- Markus Kuhn | ||
109 | */ | ||
110 | CMOS_WRITE(save_control, RTC_CONTROL); | ||
111 | CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT); | ||
112 | |||
113 | return retval; | ||
114 | } | ||
115 | |||
116 | void __init isa_rtc_init(void) | ||
117 | { | ||
118 | if (machine_is_personal_server()) | ||
119 | /* | ||
120 | * Add-in 21285s shouldn't access the RTC | ||
121 | */ | ||
122 | rtc_base = 0; | ||
123 | else | ||
124 | rtc_base = 0x70; | ||
125 | |||
126 | if (rtc_base) { | ||
127 | int reg_d, reg_b; | ||
128 | |||
129 | /* | ||
130 | * Probe for the RTC. | ||
131 | */ | ||
132 | reg_d = CMOS_READ(RTC_REG_D); | ||
133 | |||
134 | /* | ||
135 | * make sure the divider is set | ||
136 | */ | ||
137 | CMOS_WRITE(RTC_REF_CLCK_32KHZ, RTC_REG_A); | ||
138 | |||
139 | /* | ||
140 | * Set control reg B | ||
141 | * (24 hour mode, update enabled) | ||
142 | */ | ||
143 | reg_b = CMOS_READ(RTC_REG_B) & 0x7f; | ||
144 | reg_b |= 2; | ||
145 | CMOS_WRITE(reg_b, RTC_REG_B); | ||
146 | |||
147 | if ((CMOS_READ(RTC_REG_A) & 0x7f) == RTC_REF_CLCK_32KHZ && | ||
148 | CMOS_READ(RTC_REG_B) == reg_b) { | ||
149 | struct timespec tv; | ||
150 | |||
151 | /* | ||
152 | * We have a RTC. Check the battery | ||
153 | */ | ||
154 | if ((reg_d & 0x80) == 0) | ||
155 | printk(KERN_WARNING "RTC: *** warning: CMOS battery bad\n"); | ||
156 | |||
157 | tv.tv_nsec = 0; | ||
158 | tv.tv_sec = get_isa_cmos_time(); | ||
159 | do_settimeofday(&tv); | ||
160 | set_rtc = set_isa_cmos_time; | ||
161 | } else | ||
162 | rtc_base = 0; | ||
163 | } | ||
164 | } | ||
diff --git a/arch/arm/mach-lh7a40x/clocks.c b/arch/arm/mach-lh7a40x/clocks.c index fcaf876f19b..0651f96653f 100644 --- a/arch/arm/mach-lh7a40x/clocks.c +++ b/arch/arm/mach-lh7a40x/clocks.c | |||
@@ -10,6 +10,8 @@ | |||
10 | #include <mach/hardware.h> | 10 | #include <mach/hardware.h> |
11 | #include <mach/clocks.h> | 11 | #include <mach/clocks.h> |
12 | #include <linux/err.h> | 12 | #include <linux/err.h> |
13 | #include <linux/device.h> | ||
14 | #include <linux/string.h> | ||
13 | 15 | ||
14 | struct module; | 16 | struct module; |
15 | 17 | ||
diff --git a/arch/arm/mach-mmp/ttc_dkb.c b/arch/arm/mach-mmp/ttc_dkb.c index 8f49b2b1260..b22dec4abf7 100644 --- a/arch/arm/mach-mmp/ttc_dkb.c +++ b/arch/arm/mach-mmp/ttc_dkb.c | |||
@@ -24,8 +24,6 @@ | |||
24 | 24 | ||
25 | #include "common.h" | 25 | #include "common.h" |
26 | 26 | ||
27 | #define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x) | ||
28 | |||
29 | static unsigned long ttc_dkb_pin_config[] __initdata = { | 27 | static unsigned long ttc_dkb_pin_config[] __initdata = { |
30 | /* UART2 */ | 28 | /* UART2 */ |
31 | GPIO47_UART2_RXD, | 29 | GPIO47_UART2_RXD, |
diff --git a/arch/arm/mach-mx2/mxt_td60.c b/arch/arm/mach-mx2/mxt_td60.c index 03dbbdc9895..8bcc1a5b882 100644 --- a/arch/arm/mach-mx2/mxt_td60.c +++ b/arch/arm/mach-mx2/mxt_td60.c | |||
@@ -58,21 +58,6 @@ static unsigned int mxt_td60_pins[] __initdata = { | |||
58 | PE9_PF_UART3_RXD, | 58 | PE9_PF_UART3_RXD, |
59 | PE10_PF_UART3_CTS, | 59 | PE10_PF_UART3_CTS, |
60 | PE11_PF_UART3_RTS, | 60 | PE11_PF_UART3_RTS, |
61 | /* UART3 */ | ||
62 | PB26_AF_UART4_RTS, | ||
63 | PB28_AF_UART4_TXD, | ||
64 | PB29_AF_UART4_CTS, | ||
65 | PB31_AF_UART4_RXD, | ||
66 | /* UART4 */ | ||
67 | PB18_AF_UART5_TXD, | ||
68 | PB19_AF_UART5_RXD, | ||
69 | PB20_AF_UART5_CTS, | ||
70 | PB21_AF_UART5_RTS, | ||
71 | /* UART5 */ | ||
72 | PB10_AF_UART6_TXD, | ||
73 | PB12_AF_UART6_CTS, | ||
74 | PB11_AF_UART6_RXD, | ||
75 | PB13_AF_UART6_RTS, | ||
76 | /* FEC */ | 61 | /* FEC */ |
77 | PD0_AIN_FEC_TXD0, | 62 | PD0_AIN_FEC_TXD0, |
78 | PD1_AIN_FEC_TXD1, | 63 | PD1_AIN_FEC_TXD1, |
@@ -261,12 +246,6 @@ static struct imxuart_platform_data uart_pdata[] = { | |||
261 | .flags = IMXUART_HAVE_RTSCTS, | 246 | .flags = IMXUART_HAVE_RTSCTS, |
262 | }, { | 247 | }, { |
263 | .flags = IMXUART_HAVE_RTSCTS, | 248 | .flags = IMXUART_HAVE_RTSCTS, |
264 | }, { | ||
265 | .flags = IMXUART_HAVE_RTSCTS, | ||
266 | }, { | ||
267 | .flags = IMXUART_HAVE_RTSCTS, | ||
268 | }, { | ||
269 | .flags = IMXUART_HAVE_RTSCTS, | ||
270 | }, | 249 | }, |
271 | }; | 250 | }; |
272 | 251 | ||
@@ -278,9 +257,6 @@ static void __init mxt_td60_board_init(void) | |||
278 | mxc_register_device(&mxc_uart_device0, &uart_pdata[0]); | 257 | mxc_register_device(&mxc_uart_device0, &uart_pdata[0]); |
279 | mxc_register_device(&mxc_uart_device1, &uart_pdata[1]); | 258 | mxc_register_device(&mxc_uart_device1, &uart_pdata[1]); |
280 | mxc_register_device(&mxc_uart_device2, &uart_pdata[2]); | 259 | mxc_register_device(&mxc_uart_device2, &uart_pdata[2]); |
281 | mxc_register_device(&mxc_uart_device3, &uart_pdata[3]); | ||
282 | mxc_register_device(&mxc_uart_device4, &uart_pdata[4]); | ||
283 | mxc_register_device(&mxc_uart_device5, &uart_pdata[5]); | ||
284 | mxc_register_device(&mxc_nand_device, &mxt_td60_nand_board_info); | 260 | mxc_register_device(&mxc_nand_device, &mxt_td60_nand_board_info); |
285 | 261 | ||
286 | i2c_register_board_info(0, mxt_td60_i2c_devices, | 262 | i2c_register_board_info(0, mxt_td60_i2c_devices, |
diff --git a/arch/arm/mach-mx25/clock.c b/arch/arm/mach-mx25/clock.c index ef26951a527..6e838b85771 100644 --- a/arch/arm/mach-mx25/clock.c +++ b/arch/arm/mach-mx25/clock.c | |||
@@ -173,6 +173,7 @@ DEFINE_CLOCK(pwm4_clk, 0, CCM_CGCR2, 2, get_rate_ipg, NULL); | |||
173 | DEFINE_CLOCK(kpp_clk, 0, CCM_CGCR1, 28, get_rate_ipg, NULL); | 173 | DEFINE_CLOCK(kpp_clk, 0, CCM_CGCR1, 28, get_rate_ipg, NULL); |
174 | DEFINE_CLOCK(tsc_clk, 0, CCM_CGCR2, 13, get_rate_ipg, NULL); | 174 | DEFINE_CLOCK(tsc_clk, 0, CCM_CGCR2, 13, get_rate_ipg, NULL); |
175 | DEFINE_CLOCK(i2c_clk, 0, CCM_CGCR0, 6, get_rate_i2c, NULL); | 175 | DEFINE_CLOCK(i2c_clk, 0, CCM_CGCR0, 6, get_rate_i2c, NULL); |
176 | DEFINE_CLOCK(fec_clk, 0, CCM_CGCR0, 23, get_rate_ipg, NULL); | ||
176 | 177 | ||
177 | #define _REGISTER_CLOCK(d, n, c) \ | 178 | #define _REGISTER_CLOCK(d, n, c) \ |
178 | { \ | 179 | { \ |
@@ -204,6 +205,7 @@ static struct clk_lookup lookups[] = { | |||
204 | _REGISTER_CLOCK("imx-i2c.0", NULL, i2c_clk) | 205 | _REGISTER_CLOCK("imx-i2c.0", NULL, i2c_clk) |
205 | _REGISTER_CLOCK("imx-i2c.1", NULL, i2c_clk) | 206 | _REGISTER_CLOCK("imx-i2c.1", NULL, i2c_clk) |
206 | _REGISTER_CLOCK("imx-i2c.2", NULL, i2c_clk) | 207 | _REGISTER_CLOCK("imx-i2c.2", NULL, i2c_clk) |
208 | _REGISTER_CLOCK("fec.0", NULL, fec_clk) | ||
207 | }; | 209 | }; |
208 | 210 | ||
209 | int __init mx25_clocks_init(unsigned long fref) | 211 | int __init mx25_clocks_init(unsigned long fref) |
diff --git a/arch/arm/mach-mx25/devices.c b/arch/arm/mach-mx25/devices.c index 63511de3a55..9fdeea1c083 100644 --- a/arch/arm/mach-mx25/devices.c +++ b/arch/arm/mach-mx25/devices.c | |||
@@ -419,3 +419,22 @@ int __init mxc_register_gpios(void) | |||
419 | return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports)); | 419 | return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports)); |
420 | } | 420 | } |
421 | 421 | ||
422 | static struct resource mx25_fec_resources[] = { | ||
423 | { | ||
424 | .start = MX25_FEC_BASE_ADDR, | ||
425 | .end = MX25_FEC_BASE_ADDR + 0xfff, | ||
426 | .flags = IORESOURCE_MEM, | ||
427 | }, | ||
428 | { | ||
429 | .start = MX25_INT_FEC, | ||
430 | .end = MX25_INT_FEC, | ||
431 | .flags = IORESOURCE_IRQ, | ||
432 | }, | ||
433 | }; | ||
434 | |||
435 | struct platform_device mx25_fec_device = { | ||
436 | .name = "fec", | ||
437 | .id = 0, | ||
438 | .num_resources = ARRAY_SIZE(mx25_fec_resources), | ||
439 | .resource = mx25_fec_resources, | ||
440 | }; | ||
diff --git a/arch/arm/mach-mx25/devices.h b/arch/arm/mach-mx25/devices.h index fe6bf88ad1d..fe5420fcd11 100644 --- a/arch/arm/mach-mx25/devices.h +++ b/arch/arm/mach-mx25/devices.h | |||
@@ -17,3 +17,4 @@ extern struct platform_device mxc_keypad_device; | |||
17 | extern struct platform_device mxc_i2c_device0; | 17 | extern struct platform_device mxc_i2c_device0; |
18 | extern struct platform_device mxc_i2c_device1; | 18 | extern struct platform_device mxc_i2c_device1; |
19 | extern struct platform_device mxc_i2c_device2; | 19 | extern struct platform_device mxc_i2c_device2; |
20 | extern struct platform_device mx25_fec_device; | ||
diff --git a/arch/arm/mach-mx25/mx25pdk.c b/arch/arm/mach-mx25/mx25pdk.c index d23ae571c03..921bc99ea23 100644 --- a/arch/arm/mach-mx25/mx25pdk.c +++ b/arch/arm/mach-mx25/mx25pdk.c | |||
@@ -18,10 +18,11 @@ | |||
18 | 18 | ||
19 | #include <linux/types.h> | 19 | #include <linux/types.h> |
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/delay.h> | ||
21 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
22 | #include <linux/irq.h> | 23 | #include <linux/irq.h> |
23 | #include <linux/gpio.h> | 24 | #include <linux/gpio.h> |
24 | #include <linux/smsc911x.h> | 25 | #include <linux/fec.h> |
25 | #include <linux/platform_device.h> | 26 | #include <linux/platform_device.h> |
26 | 27 | ||
27 | #include <mach/hardware.h> | 28 | #include <mach/hardware.h> |
@@ -35,16 +36,57 @@ | |||
35 | #include <mach/mx25.h> | 36 | #include <mach/mx25.h> |
36 | #include <mach/mxc_nand.h> | 37 | #include <mach/mxc_nand.h> |
37 | #include "devices.h" | 38 | #include "devices.h" |
38 | #include <mach/iomux-v3.h> | 39 | #include <mach/iomux.h> |
39 | 40 | ||
40 | static struct imxuart_platform_data uart_pdata = { | 41 | static struct imxuart_platform_data uart_pdata = { |
41 | .flags = IMXUART_HAVE_RTSCTS, | 42 | .flags = IMXUART_HAVE_RTSCTS, |
42 | }; | 43 | }; |
43 | 44 | ||
45 | static struct pad_desc mx25pdk_pads[] = { | ||
46 | MX25_PAD_FEC_MDC__FEC_MDC, | ||
47 | MX25_PAD_FEC_MDIO__FEC_MDIO, | ||
48 | MX25_PAD_FEC_TDATA0__FEC_TDATA0, | ||
49 | MX25_PAD_FEC_TDATA1__FEC_TDATA1, | ||
50 | MX25_PAD_FEC_TX_EN__FEC_TX_EN, | ||
51 | MX25_PAD_FEC_RDATA0__FEC_RDATA0, | ||
52 | MX25_PAD_FEC_RDATA1__FEC_RDATA1, | ||
53 | MX25_PAD_FEC_RX_DV__FEC_RX_DV, | ||
54 | MX25_PAD_FEC_TX_CLK__FEC_TX_CLK, | ||
55 | MX25_PAD_A17__GPIO_2_3, /* FEC_EN, GPIO 35 */ | ||
56 | MX25_PAD_D12__GPIO_4_8, /* FEC_RESET_B, GPIO 104 */ | ||
57 | }; | ||
58 | |||
59 | static struct fec_platform_data mx25_fec_pdata = { | ||
60 | .phy = PHY_INTERFACE_MODE_RMII, | ||
61 | }; | ||
62 | |||
63 | #define FEC_ENABLE_GPIO 35 | ||
64 | #define FEC_RESET_B_GPIO 104 | ||
65 | |||
66 | static void __init mx25pdk_fec_reset(void) | ||
67 | { | ||
68 | gpio_request(FEC_ENABLE_GPIO, "FEC PHY enable"); | ||
69 | gpio_request(FEC_RESET_B_GPIO, "FEC PHY reset"); | ||
70 | |||
71 | gpio_direction_output(FEC_ENABLE_GPIO, 0); /* drop PHY power */ | ||
72 | gpio_direction_output(FEC_RESET_B_GPIO, 0); /* assert reset */ | ||
73 | udelay(2); | ||
74 | |||
75 | /* turn on PHY power and lift reset */ | ||
76 | gpio_set_value(FEC_ENABLE_GPIO, 1); | ||
77 | gpio_set_value(FEC_RESET_B_GPIO, 1); | ||
78 | } | ||
79 | |||
44 | static void __init mx25pdk_init(void) | 80 | static void __init mx25pdk_init(void) |
45 | { | 81 | { |
82 | mxc_iomux_v3_setup_multiple_pads(mx25pdk_pads, | ||
83 | ARRAY_SIZE(mx25pdk_pads)); | ||
84 | |||
46 | mxc_register_device(&mxc_uart_device0, &uart_pdata); | 85 | mxc_register_device(&mxc_uart_device0, &uart_pdata); |
47 | mxc_register_device(&mxc_usbh2, NULL); | 86 | mxc_register_device(&mxc_usbh2, NULL); |
87 | |||
88 | mx25pdk_fec_reset(); | ||
89 | mxc_register_device(&mx25_fec_device, &mx25_fec_pdata); | ||
48 | } | 90 | } |
49 | 91 | ||
50 | static void __init mx25pdk_timer_init(void) | 92 | static void __init mx25pdk_timer_init(void) |
diff --git a/arch/arm/mach-mx3/Kconfig b/arch/arm/mach-mx3/Kconfig index ea8ed109a7c..28294416b0a 100644 --- a/arch/arm/mach-mx3/Kconfig +++ b/arch/arm/mach-mx3/Kconfig | |||
@@ -49,6 +49,7 @@ config MACH_PCM037_EET | |||
49 | config MACH_MX31LITE | 49 | config MACH_MX31LITE |
50 | bool "Support MX31 LITEKIT (LogicPD)" | 50 | bool "Support MX31 LITEKIT (LogicPD)" |
51 | select ARCH_MX31 | 51 | select ARCH_MX31 |
52 | select MXC_ULPI if USB_ULPI | ||
52 | help | 53 | help |
53 | Include support for MX31 LITEKIT platform. This includes specific | 54 | Include support for MX31 LITEKIT platform. This includes specific |
54 | configurations for the board and its peripherals. | 55 | configurations for the board and its peripherals. |
@@ -63,7 +64,7 @@ config MACH_MX31_3DS | |||
63 | config MACH_MX31MOBOARD | 64 | config MACH_MX31MOBOARD |
64 | bool "Support mx31moboard platforms (EPFL Mobots group)" | 65 | bool "Support mx31moboard platforms (EPFL Mobots group)" |
65 | select ARCH_MX31 | 66 | select ARCH_MX31 |
66 | select MXC_ULPI | 67 | select MXC_ULPI if USB_ULPI |
67 | help | 68 | help |
68 | Include support for mx31moboard platform. This includes specific | 69 | Include support for mx31moboard platform. This includes specific |
69 | configurations for the board and its peripherals. | 70 | configurations for the board and its peripherals. |
diff --git a/arch/arm/mach-mx3/mm.c b/arch/arm/mach-mx3/mm.c index bedf5b8d976..6858a4f9806 100644 --- a/arch/arm/mach-mx3/mm.c +++ b/arch/arm/mach-mx3/mm.c | |||
@@ -65,6 +65,11 @@ static struct map_desc mxc_io_desc[] __initdata = { | |||
65 | .pfn = __phys_to_pfn(AIPS2_BASE_ADDR), | 65 | .pfn = __phys_to_pfn(AIPS2_BASE_ADDR), |
66 | .length = AIPS2_SIZE, | 66 | .length = AIPS2_SIZE, |
67 | .type = MT_DEVICE_NONSHARED | 67 | .type = MT_DEVICE_NONSHARED |
68 | }, { | ||
69 | .virtual = SPBA0_BASE_ADDR_VIRT, | ||
70 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), | ||
71 | .length = SPBA0_SIZE, | ||
72 | .type = MT_DEVICE_NONSHARED | ||
68 | }, | 73 | }, |
69 | }; | 74 | }; |
70 | 75 | ||
diff --git a/arch/arm/mach-mx3/mx31ads.c b/arch/arm/mach-mx3/mx31ads.c index 0497c152be1..3e7bafa2ddb 100644 --- a/arch/arm/mach-mx3/mx31ads.c +++ b/arch/arm/mach-mx3/mx31ads.c | |||
@@ -494,11 +494,6 @@ static void mxc_init_i2c(void) | |||
494 | */ | 494 | */ |
495 | static struct map_desc mx31ads_io_desc[] __initdata = { | 495 | static struct map_desc mx31ads_io_desc[] __initdata = { |
496 | { | 496 | { |
497 | .virtual = SPBA0_BASE_ADDR_VIRT, | ||
498 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), | ||
499 | .length = SPBA0_SIZE, | ||
500 | .type = MT_DEVICE_NONSHARED | ||
501 | }, { | ||
502 | .virtual = CS4_BASE_ADDR_VIRT, | 497 | .virtual = CS4_BASE_ADDR_VIRT, |
503 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), | 498 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), |
504 | .length = CS4_SIZE / 2, | 499 | .length = CS4_SIZE / 2, |
diff --git a/arch/arm/mach-mx3/mx31lite.c b/arch/arm/mach-mx3/mx31lite.c index def6b673659..789b20d1730 100644 --- a/arch/arm/mach-mx3/mx31lite.c +++ b/arch/arm/mach-mx3/mx31lite.c | |||
@@ -135,6 +135,7 @@ static struct spi_board_info mc13783_spi_dev __initdata = { | |||
135 | * USB | 135 | * USB |
136 | */ | 136 | */ |
137 | 137 | ||
138 | #if defined(CONFIG_USB_ULPI) | ||
138 | #define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \ | 139 | #define USB_PAD_CFG (PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST | PAD_CTL_HYS_CMOS | \ |
139 | PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU) | 140 | PAD_CTL_ODE_CMOS | PAD_CTL_100K_PU) |
140 | 141 | ||
@@ -180,6 +181,7 @@ static struct mxc_usbh_platform_data usbh2_pdata = { | |||
180 | .portsc = MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT, | 181 | .portsc = MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT, |
181 | .flags = MXC_EHCI_POWER_PINS_ENABLED, | 182 | .flags = MXC_EHCI_POWER_PINS_ENABLED, |
182 | }; | 183 | }; |
184 | #endif | ||
183 | 185 | ||
184 | /* | 186 | /* |
185 | * NOR flash | 187 | * NOR flash |
@@ -212,11 +214,6 @@ static struct platform_device physmap_flash_device = { | |||
212 | */ | 214 | */ |
213 | static struct map_desc mx31lite_io_desc[] __initdata = { | 215 | static struct map_desc mx31lite_io_desc[] __initdata = { |
214 | { | 216 | { |
215 | .virtual = SPBA0_BASE_ADDR_VIRT, | ||
216 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), | ||
217 | .length = SPBA0_SIZE, | ||
218 | .type = MT_DEVICE_NONSHARED | ||
219 | }, { | ||
220 | .virtual = CS4_BASE_ADDR_VIRT, | 217 | .virtual = CS4_BASE_ADDR_VIRT, |
221 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), | 218 | .pfn = __phys_to_pfn(CS4_BASE_ADDR), |
222 | .length = CS4_SIZE, | 219 | .length = CS4_SIZE, |
@@ -261,11 +258,13 @@ static void __init mxc_board_init(void) | |||
261 | mxc_register_device(&mxc_spi_device1, &spi1_pdata); | 258 | mxc_register_device(&mxc_spi_device1, &spi1_pdata); |
262 | spi_register_board_info(&mc13783_spi_dev, 1); | 259 | spi_register_board_info(&mc13783_spi_dev, 1); |
263 | 260 | ||
261 | #if defined(CONFIG_USB_ULPI) | ||
264 | /* USB */ | 262 | /* USB */ |
265 | usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops, | 263 | usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops, |
266 | USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT); | 264 | USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT); |
267 | 265 | ||
268 | mxc_register_device(&mxc_usbh2, &usbh2_pdata); | 266 | mxc_register_device(&mxc_usbh2, &usbh2_pdata); |
267 | #endif | ||
269 | 268 | ||
270 | /* SMSC9117 IRQ pin */ | 269 | /* SMSC9117 IRQ pin */ |
271 | ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_SFS6), "sms9117-irq"); | 270 | ret = gpio_request(IOMUX_TO_GPIO(MX31_PIN_SFS6), "sms9117-irq"); |
diff --git a/arch/arm/mach-mx3/mx31moboard-devboard.c b/arch/arm/mach-mx3/mx31moboard-devboard.c index 8fc624f141c..438428eaf76 100644 --- a/arch/arm/mach-mx3/mx31moboard-devboard.c +++ b/arch/arm/mach-mx3/mx31moboard-devboard.c | |||
@@ -179,7 +179,7 @@ static int __init devboard_usbh1_init(void) | |||
179 | 179 | ||
180 | usbh1_pdata.otg = otg; | 180 | usbh1_pdata.otg = otg; |
181 | 181 | ||
182 | return mxc_register_device(&mx31_usbh1, &usbh1_pdata); | 182 | return mxc_register_device(&mxc_usbh1, &usbh1_pdata); |
183 | } | 183 | } |
184 | 184 | ||
185 | /* | 185 | /* |
diff --git a/arch/arm/mach-mx3/mx31moboard-marxbot.c b/arch/arm/mach-mx3/mx31moboard-marxbot.c index 85184a35e67..1f44b9ccbb0 100644 --- a/arch/arm/mach-mx3/mx31moboard-marxbot.c +++ b/arch/arm/mach-mx3/mx31moboard-marxbot.c | |||
@@ -294,7 +294,7 @@ static int __init marxbot_usbh1_init(void) | |||
294 | 294 | ||
295 | usbh1_pdata.otg = otg; | 295 | usbh1_pdata.otg = otg; |
296 | 296 | ||
297 | return mxc_register_device(&mx31_usbh1, &usbh1_pdata); | 297 | return mxc_register_device(&mxc_usbh1, &usbh1_pdata); |
298 | } | 298 | } |
299 | 299 | ||
300 | /* | 300 | /* |
diff --git a/arch/arm/mach-mx3/mx31moboard.c b/arch/arm/mach-mx3/mx31moboard.c index b7052914593..cfd605d078e 100644 --- a/arch/arm/mach-mx3/mx31moboard.c +++ b/arch/arm/mach-mx3/mx31moboard.c | |||
@@ -346,6 +346,8 @@ static struct fsl_usb2_platform_data usb_pdata = { | |||
346 | .phy_mode = FSL_USB2_PHY_ULPI, | 346 | .phy_mode = FSL_USB2_PHY_ULPI, |
347 | }; | 347 | }; |
348 | 348 | ||
349 | #if defined(CONFIG_USB_ULPI) | ||
350 | |||
349 | #define USBH2_EN_B IOMUX_TO_GPIO(MX31_PIN_SCK6) | 351 | #define USBH2_EN_B IOMUX_TO_GPIO(MX31_PIN_SCK6) |
350 | 352 | ||
351 | static int moboard_usbh2_hw_init(struct platform_device *pdev) | 353 | static int moboard_usbh2_hw_init(struct platform_device *pdev) |
@@ -392,8 +394,11 @@ static int __init moboard_usbh2_init(void) | |||
392 | usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops, | 394 | usbh2_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops, |
393 | USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT); | 395 | USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT); |
394 | 396 | ||
395 | return mxc_register_device(&mx31_usbh2, &usbh2_pdata); | 397 | return mxc_register_device(&mxc_usbh2, &usbh2_pdata); |
396 | } | 398 | } |
399 | #else | ||
400 | static inline int moboard_usbh2_init(void) { return 0; } | ||
401 | #endif | ||
397 | 402 | ||
398 | 403 | ||
399 | static struct gpio_led mx31moboard_leds[] = { | 404 | static struct gpio_led mx31moboard_leds[] = { |
diff --git a/arch/arm/mach-mx3/mx31pdk.c b/arch/arm/mach-mx3/mx31pdk.c index 0f7a2f06bc2..18715f1aa7e 100644 --- a/arch/arm/mach-mx3/mx31pdk.c +++ b/arch/arm/mach-mx3/mx31pdk.c | |||
@@ -211,11 +211,6 @@ static int __init mx31pdk_init_expio(void) | |||
211 | */ | 211 | */ |
212 | static struct map_desc mx31pdk_io_desc[] __initdata = { | 212 | static struct map_desc mx31pdk_io_desc[] __initdata = { |
213 | { | 213 | { |
214 | .virtual = SPBA0_BASE_ADDR_VIRT, | ||
215 | .pfn = __phys_to_pfn(SPBA0_BASE_ADDR), | ||
216 | .length = SPBA0_SIZE, | ||
217 | .type = MT_DEVICE_NONSHARED, | ||
218 | }, { | ||
219 | .virtual = CS5_BASE_ADDR_VIRT, | 214 | .virtual = CS5_BASE_ADDR_VIRT, |
220 | .pfn = __phys_to_pfn(CS5_BASE_ADDR), | 215 | .pfn = __phys_to_pfn(CS5_BASE_ADDR), |
221 | .length = CS5_SIZE, | 216 | .length = CS5_SIZE, |
diff --git a/arch/arm/mach-mx3/pcm037.c b/arch/arm/mach-mx3/pcm037.c index 6cbaabedf38..5be396917c9 100644 --- a/arch/arm/mach-mx3/pcm037.c +++ b/arch/arm/mach-mx3/pcm037.c | |||
@@ -322,16 +322,25 @@ static int pcm037_camera_power(struct device *dev, int on) | |||
322 | return 0; | 322 | return 0; |
323 | } | 323 | } |
324 | 324 | ||
325 | static struct i2c_board_info pcm037_i2c_2_devices[] = { | 325 | static struct i2c_board_info pcm037_i2c_camera[] = { |
326 | { | 326 | { |
327 | I2C_BOARD_INFO("mt9t031", 0x5d), | 327 | I2C_BOARD_INFO("mt9t031", 0x5d), |
328 | }, { | ||
329 | I2C_BOARD_INFO("mt9v022", 0x48), | ||
328 | }, | 330 | }, |
329 | }; | 331 | }; |
330 | 332 | ||
331 | static struct soc_camera_link iclink = { | 333 | static struct soc_camera_link iclink_mt9v022 = { |
334 | .bus_id = 0, /* Must match with the camera ID */ | ||
335 | .board_info = &pcm037_i2c_camera[1], | ||
336 | .i2c_adapter_id = 2, | ||
337 | .module_name = "mt9v022", | ||
338 | }; | ||
339 | |||
340 | static struct soc_camera_link iclink_mt9t031 = { | ||
332 | .bus_id = 0, /* Must match with the camera ID */ | 341 | .bus_id = 0, /* Must match with the camera ID */ |
333 | .power = pcm037_camera_power, | 342 | .power = pcm037_camera_power, |
334 | .board_info = &pcm037_i2c_2_devices[0], | 343 | .board_info = &pcm037_i2c_camera[0], |
335 | .i2c_adapter_id = 2, | 344 | .i2c_adapter_id = 2, |
336 | .module_name = "mt9t031", | 345 | .module_name = "mt9t031", |
337 | }; | 346 | }; |
@@ -345,11 +354,19 @@ static struct i2c_board_info pcm037_i2c_devices[] = { | |||
345 | } | 354 | } |
346 | }; | 355 | }; |
347 | 356 | ||
348 | static struct platform_device pcm037_camera = { | 357 | static struct platform_device pcm037_mt9t031 = { |
349 | .name = "soc-camera-pdrv", | 358 | .name = "soc-camera-pdrv", |
350 | .id = 0, | 359 | .id = 0, |
351 | .dev = { | 360 | .dev = { |
352 | .platform_data = &iclink, | 361 | .platform_data = &iclink_mt9t031, |
362 | }, | ||
363 | }; | ||
364 | |||
365 | static struct platform_device pcm037_mt9v022 = { | ||
366 | .name = "soc-camera-pdrv", | ||
367 | .id = 1, | ||
368 | .dev = { | ||
369 | .platform_data = &iclink_mt9v022, | ||
353 | }, | 370 | }, |
354 | }; | 371 | }; |
355 | 372 | ||
@@ -449,7 +466,8 @@ static int __init pcm037_camera_alloc_dma(const size_t buf_size) | |||
449 | static struct platform_device *devices[] __initdata = { | 466 | static struct platform_device *devices[] __initdata = { |
450 | &pcm037_flash, | 467 | &pcm037_flash, |
451 | &pcm037_sram_device, | 468 | &pcm037_sram_device, |
452 | &pcm037_camera, | 469 | &pcm037_mt9t031, |
470 | &pcm037_mt9v022, | ||
453 | }; | 471 | }; |
454 | 472 | ||
455 | static struct ipu_platform_data mx3_ipu_data = { | 473 | static struct ipu_platform_data mx3_ipu_data = { |
@@ -599,7 +617,7 @@ static void __init mxc_board_init(void) | |||
599 | if (!ret) | 617 | if (!ret) |
600 | gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_CSI_D5), 1); | 618 | gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_CSI_D5), 1); |
601 | else | 619 | else |
602 | iclink.power = NULL; | 620 | iclink_mt9t031.power = NULL; |
603 | 621 | ||
604 | if (!pcm037_camera_alloc_dma(4 * 1024 * 1024)) | 622 | if (!pcm037_camera_alloc_dma(4 * 1024 * 1024)) |
605 | mxc_register_device(&mx3_camera, &camera_pdata); | 623 | mxc_register_device(&mx3_camera, &camera_pdata); |
diff --git a/arch/arm/mach-omap1/clock_data.c b/arch/arm/mach-omap1/clock_data.c index ab995a9c606..65e7b5b85d8 100644 --- a/arch/arm/mach-omap1/clock_data.c +++ b/arch/arm/mach-omap1/clock_data.c | |||
@@ -599,7 +599,7 @@ static struct clk i2c_ick = { | |||
599 | static struct omap_clk omap_clks[] = { | 599 | static struct omap_clk omap_clks[] = { |
600 | /* non-ULPD clocks */ | 600 | /* non-ULPD clocks */ |
601 | CLK(NULL, "ck_ref", &ck_ref, CK_16XX | CK_1510 | CK_310 | CK_7XX), | 601 | CLK(NULL, "ck_ref", &ck_ref, CK_16XX | CK_1510 | CK_310 | CK_7XX), |
602 | CLK(NULL, "ck_dpll1", &ck_dpll1, CK_16XX | CK_1510 | CK_310), | 602 | CLK(NULL, "ck_dpll1", &ck_dpll1, CK_16XX | CK_1510 | CK_310 | CK_7XX), |
603 | /* CK_GEN1 clocks */ | 603 | /* CK_GEN1 clocks */ |
604 | CLK(NULL, "ck_dpll1out", &ck_dpll1out.clk, CK_16XX), | 604 | CLK(NULL, "ck_dpll1out", &ck_dpll1out.clk, CK_16XX), |
605 | CLK(NULL, "ck_sossi", &sossi_ck, CK_16XX), | 605 | CLK(NULL, "ck_sossi", &sossi_ck, CK_16XX), |
@@ -627,7 +627,7 @@ static struct omap_clk omap_clks[] = { | |||
627 | CLK(NULL, "tc2_ck", &tc2_ck, CK_16XX), | 627 | CLK(NULL, "tc2_ck", &tc2_ck, CK_16XX), |
628 | CLK(NULL, "dma_ck", &dma_ck, CK_16XX | CK_1510 | CK_310), | 628 | CLK(NULL, "dma_ck", &dma_ck, CK_16XX | CK_1510 | CK_310), |
629 | CLK(NULL, "dma_lcdfree_ck", &dma_lcdfree_ck, CK_16XX), | 629 | CLK(NULL, "dma_lcdfree_ck", &dma_lcdfree_ck, CK_16XX), |
630 | CLK(NULL, "api_ck", &api_ck.clk, CK_16XX | CK_1510 | CK_310), | 630 | CLK(NULL, "api_ck", &api_ck.clk, CK_16XX | CK_1510 | CK_310 | CK_7XX), |
631 | CLK(NULL, "lb_ck", &lb_ck.clk, CK_1510 | CK_310), | 631 | CLK(NULL, "lb_ck", &lb_ck.clk, CK_1510 | CK_310), |
632 | CLK(NULL, "rhea1_ck", &rhea1_ck, CK_16XX), | 632 | CLK(NULL, "rhea1_ck", &rhea1_ck, CK_16XX), |
633 | CLK(NULL, "rhea2_ck", &rhea2_ck, CK_16XX), | 633 | CLK(NULL, "rhea2_ck", &rhea2_ck, CK_16XX), |
@@ -658,6 +658,10 @@ static struct omap_clk omap_clks[] = { | |||
658 | CLK("i2c_omap.1", "fck", &i2c_fck, CK_16XX | CK_1510 | CK_310 | CK_7XX), | 658 | CLK("i2c_omap.1", "fck", &i2c_fck, CK_16XX | CK_1510 | CK_310 | CK_7XX), |
659 | CLK("i2c_omap.1", "ick", &i2c_ick, CK_16XX), | 659 | CLK("i2c_omap.1", "ick", &i2c_ick, CK_16XX), |
660 | CLK("i2c_omap.1", "ick", &dummy_ck, CK_1510 | CK_310 | CK_7XX), | 660 | CLK("i2c_omap.1", "ick", &dummy_ck, CK_1510 | CK_310 | CK_7XX), |
661 | CLK("omap1_spi100k.1", "fck", &dummy_ck, CK_7XX), | ||
662 | CLK("omap1_spi100k.1", "ick", &dummy_ck, CK_7XX), | ||
663 | CLK("omap1_spi100k.2", "fck", &dummy_ck, CK_7XX), | ||
664 | CLK("omap1_spi100k.2", "ick", &dummy_ck, CK_7XX), | ||
661 | CLK("omap_uwire", "fck", &armxor_ck.clk, CK_16XX | CK_1510 | CK_310), | 665 | CLK("omap_uwire", "fck", &armxor_ck.clk, CK_16XX | CK_1510 | CK_310), |
662 | CLK("omap-mcbsp.1", "ick", &dspper_ck, CK_16XX), | 666 | CLK("omap-mcbsp.1", "ick", &dspper_ck, CK_16XX), |
663 | CLK("omap-mcbsp.1", "ick", &dummy_ck, CK_1510 | CK_310), | 667 | CLK("omap-mcbsp.1", "ick", &dummy_ck, CK_1510 | CK_310), |
@@ -674,7 +678,7 @@ static struct omap_clk omap_clks[] = { | |||
674 | * init | 678 | * init |
675 | */ | 679 | */ |
676 | 680 | ||
677 | static struct clk_functions omap1_clk_functions __initdata = { | 681 | static struct clk_functions omap1_clk_functions = { |
678 | .clk_enable = omap1_clk_enable, | 682 | .clk_enable = omap1_clk_enable, |
679 | .clk_disable = omap1_clk_disable, | 683 | .clk_disable = omap1_clk_disable, |
680 | .clk_round_rate = omap1_clk_round_rate, | 684 | .clk_round_rate = omap1_clk_round_rate, |
diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c index 23ded2d4960..a2d07aa75c9 100644 --- a/arch/arm/mach-omap1/devices.c +++ b/arch/arm/mach-omap1/devices.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/init.h> | 14 | #include <linux/init.h> |
15 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | #include <linux/spi/spi.h> | ||
17 | 18 | ||
18 | #include <mach/hardware.h> | 19 | #include <mach/hardware.h> |
19 | #include <asm/mach/map.h> | 20 | #include <asm/mach/map.h> |
@@ -23,6 +24,7 @@ | |||
23 | #include <plat/mux.h> | 24 | #include <plat/mux.h> |
24 | #include <mach/gpio.h> | 25 | #include <mach/gpio.h> |
25 | #include <plat/mmc.h> | 26 | #include <plat/mmc.h> |
27 | #include <plat/omap7xx.h> | ||
26 | 28 | ||
27 | /*-------------------------------------------------------------------------*/ | 29 | /*-------------------------------------------------------------------------*/ |
28 | 30 | ||
@@ -196,6 +198,38 @@ void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data, | |||
196 | 198 | ||
197 | /*-------------------------------------------------------------------------*/ | 199 | /*-------------------------------------------------------------------------*/ |
198 | 200 | ||
201 | /* OMAP7xx SPI support */ | ||
202 | #if defined(CONFIG_SPI_OMAP_100K) || defined(CONFIG_SPI_OMAP_100K_MODULE) | ||
203 | |||
204 | struct platform_device omap_spi1 = { | ||
205 | .name = "omap1_spi100k", | ||
206 | .id = 1, | ||
207 | }; | ||
208 | |||
209 | struct platform_device omap_spi2 = { | ||
210 | .name = "omap1_spi100k", | ||
211 | .id = 2, | ||
212 | }; | ||
213 | |||
214 | static void omap_init_spi100k(void) | ||
215 | { | ||
216 | omap_spi1.dev.platform_data = ioremap(OMAP7XX_SPI1_BASE, 0x7ff); | ||
217 | if (omap_spi1.dev.platform_data) | ||
218 | platform_device_register(&omap_spi1); | ||
219 | |||
220 | omap_spi2.dev.platform_data = ioremap(OMAP7XX_SPI2_BASE, 0x7ff); | ||
221 | if (omap_spi2.dev.platform_data) | ||
222 | platform_device_register(&omap_spi2); | ||
223 | } | ||
224 | |||
225 | #else | ||
226 | static inline void omap_init_spi100k(void) | ||
227 | { | ||
228 | } | ||
229 | #endif | ||
230 | |||
231 | /*-------------------------------------------------------------------------*/ | ||
232 | |||
199 | #if defined(CONFIG_OMAP_STI) | 233 | #if defined(CONFIG_OMAP_STI) |
200 | 234 | ||
201 | #define OMAP1_STI_BASE 0xfffea000 | 235 | #define OMAP1_STI_BASE 0xfffea000 |
@@ -263,6 +297,7 @@ static int __init omap1_init_devices(void) | |||
263 | 297 | ||
264 | omap_init_mbox(); | 298 | omap_init_mbox(); |
265 | omap_init_rtc(); | 299 | omap_init_rtc(); |
300 | omap_init_spi100k(); | ||
266 | omap_init_sti(); | 301 | omap_init_sti(); |
267 | 302 | ||
268 | return 0; | 303 | return 0; |
diff --git a/arch/arm/mach-omap1/mux.c b/arch/arm/mach-omap1/mux.c index 07212cc621a..84341377232 100644 --- a/arch/arm/mach-omap1/mux.c +++ b/arch/arm/mach-omap1/mux.c | |||
@@ -62,6 +62,14 @@ MUX_CFG_7XX("MMC_7XX_DAT0", 2, 17, 0, 16, 1, 0) | |||
62 | /* I2C interface */ | 62 | /* I2C interface */ |
63 | MUX_CFG_7XX("I2C_7XX_SCL", 5, 1, 0, 0, 1, 0) | 63 | MUX_CFG_7XX("I2C_7XX_SCL", 5, 1, 0, 0, 1, 0) |
64 | MUX_CFG_7XX("I2C_7XX_SDA", 5, 5, 0, 0, 1, 0) | 64 | MUX_CFG_7XX("I2C_7XX_SDA", 5, 5, 0, 0, 1, 0) |
65 | |||
66 | /* SPI pins */ | ||
67 | MUX_CFG_7XX("SPI_7XX_1", 6, 5, 4, 4, 1, 0) | ||
68 | MUX_CFG_7XX("SPI_7XX_2", 6, 9, 4, 8, 1, 0) | ||
69 | MUX_CFG_7XX("SPI_7XX_3", 6, 13, 4, 12, 1, 0) | ||
70 | MUX_CFG_7XX("SPI_7XX_4", 6, 17, 4, 16, 1, 0) | ||
71 | MUX_CFG_7XX("SPI_7XX_5", 8, 25, 0, 24, 0, 0) | ||
72 | MUX_CFG_7XX("SPI_7XX_6", 9, 5, 0, 4, 0, 0) | ||
65 | }; | 73 | }; |
66 | #define OMAP7XX_PINS_SZ ARRAY_SIZE(omap7xx_pins) | 74 | #define OMAP7XX_PINS_SZ ARRAY_SIZE(omap7xx_pins) |
67 | #else | 75 | #else |
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index 10eafa70a90..606bf04f51b 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig | |||
@@ -80,6 +80,7 @@ config MACH_OVERO | |||
80 | config MACH_OMAP3EVM | 80 | config MACH_OMAP3EVM |
81 | bool "OMAP 3530 EVM board" | 81 | bool "OMAP 3530 EVM board" |
82 | depends on ARCH_OMAP3 && ARCH_OMAP34XX | 82 | depends on ARCH_OMAP3 && ARCH_OMAP34XX |
83 | select OMAP_PACKAGE_CBB | ||
83 | 84 | ||
84 | config MACH_OMAP3517EVM | 85 | config MACH_OMAP3517EVM |
85 | bool "OMAP3517/ AM3517 EVM board" | 86 | bool "OMAP3517/ AM3517 EVM board" |
diff --git a/arch/arm/mach-omap2/board-zoom-peripherals.c b/arch/arm/mach-omap2/board-zoom-peripherals.c index 8dd277c3666..1e3dfb652ac 100755 --- a/arch/arm/mach-omap2/board-zoom-peripherals.c +++ b/arch/arm/mach-omap2/board-zoom-peripherals.c | |||
@@ -63,21 +63,21 @@ static int board_keymap[] = { | |||
63 | KEY(5, 1, KEY_H), | 63 | KEY(5, 1, KEY_H), |
64 | KEY(5, 2, KEY_J), | 64 | KEY(5, 2, KEY_J), |
65 | KEY(5, 3, KEY_F3), | 65 | KEY(5, 3, KEY_F3), |
66 | KEY(5, 4, KEY_UNKNOWN), | ||
66 | KEY(5, 5, KEY_VOLUMEDOWN), | 67 | KEY(5, 5, KEY_VOLUMEDOWN), |
67 | KEY(5, 6, KEY_M), | 68 | KEY(5, 6, KEY_M), |
68 | KEY(5, 7, KEY_ENTER), | 69 | KEY(5, 7, KEY_RIGHT), |
69 | KEY(6, 0, KEY_Q), | 70 | KEY(6, 0, KEY_Q), |
70 | KEY(6, 1, KEY_A), | 71 | KEY(6, 1, KEY_A), |
71 | KEY(6, 2, KEY_N), | 72 | KEY(6, 2, KEY_N), |
72 | KEY(6, 3, KEY_BACKSPACE), | 73 | KEY(6, 3, KEY_BACKSPACE), |
73 | KEY(6, 6, KEY_P), | 74 | KEY(6, 6, KEY_P), |
74 | KEY(6, 7, KEY_SELECT), | 75 | KEY(6, 7, KEY_UP), |
75 | KEY(7, 0, KEY_PROG1), /*MACRO 1 <User defined> */ | 76 | KEY(7, 0, KEY_PROG1), /*MACRO 1 <User defined> */ |
76 | KEY(7, 1, KEY_PROG2), /*MACRO 2 <User defined> */ | 77 | KEY(7, 1, KEY_PROG2), /*MACRO 2 <User defined> */ |
77 | KEY(7, 2, KEY_PROG3), /*MACRO 3 <User defined> */ | 78 | KEY(7, 2, KEY_PROG3), /*MACRO 3 <User defined> */ |
78 | KEY(7, 3, KEY_PROG4), /*MACRO 4 <User defined> */ | 79 | KEY(7, 3, KEY_PROG4), /*MACRO 4 <User defined> */ |
79 | KEY(7, 5, KEY_RIGHT), | 80 | KEY(7, 6, KEY_SELECT), |
80 | KEY(7, 6, KEY_UP), | ||
81 | KEY(7, 7, KEY_DOWN) | 81 | KEY(7, 7, KEY_DOWN) |
82 | }; | 82 | }; |
83 | 83 | ||
diff --git a/arch/arm/mach-omap2/clock2xxx.c b/arch/arm/mach-omap2/clock2xxx.c index d0e3fb7f929..5420356eb40 100644 --- a/arch/arm/mach-omap2/clock2xxx.c +++ b/arch/arm/mach-omap2/clock2xxx.c | |||
@@ -449,40 +449,78 @@ int omap2_select_table_rate(struct clk *clk, unsigned long rate) | |||
449 | #ifdef CONFIG_CPU_FREQ | 449 | #ifdef CONFIG_CPU_FREQ |
450 | /* | 450 | /* |
451 | * Walk PRCM rate table and fillout cpufreq freq_table | 451 | * Walk PRCM rate table and fillout cpufreq freq_table |
452 | * XXX This should be replaced by an OPP layer in the near future | ||
452 | */ | 453 | */ |
453 | static struct cpufreq_frequency_table freq_table[ARRAY_SIZE(rate_table)]; | 454 | static struct cpufreq_frequency_table *freq_table; |
454 | 455 | ||
455 | void omap2_clk_init_cpufreq_table(struct cpufreq_frequency_table **table) | 456 | void omap2_clk_init_cpufreq_table(struct cpufreq_frequency_table **table) |
456 | { | 457 | { |
457 | struct prcm_config *prcm; | 458 | const struct prcm_config *prcm; |
459 | long sys_ck_rate; | ||
458 | int i = 0; | 460 | int i = 0; |
461 | int tbl_sz = 0; | ||
462 | |||
463 | sys_ck_rate = clk_get_rate(sclk); | ||
459 | 464 | ||
460 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | 465 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { |
461 | if (!(prcm->flags & cpu_mask)) | 466 | if (!(prcm->flags & cpu_mask)) |
462 | continue; | 467 | continue; |
463 | if (prcm->xtal_speed != sys_ck.rate) | 468 | if (prcm->xtal_speed != sys_ck_rate) |
464 | continue; | 469 | continue; |
465 | 470 | ||
466 | /* don't put bypass rates in table */ | 471 | /* don't put bypass rates in table */ |
467 | if (prcm->dpll_speed == prcm->xtal_speed) | 472 | if (prcm->dpll_speed == prcm->xtal_speed) |
468 | continue; | 473 | continue; |
469 | 474 | ||
470 | freq_table[i].index = i; | 475 | tbl_sz++; |
471 | freq_table[i].frequency = prcm->mpu_speed / 1000; | ||
472 | i++; | ||
473 | } | 476 | } |
474 | 477 | ||
475 | if (i == 0) { | 478 | /* |
476 | printk(KERN_WARNING "%s: failed to initialize frequency " | 479 | * XXX Ensure that we're doing what CPUFreq expects for this error |
477 | "table\n", __func__); | 480 | * case and the following one |
481 | */ | ||
482 | if (tbl_sz == 0) { | ||
483 | pr_warning("%s: no matching entries in rate_table\n", | ||
484 | __func__); | ||
485 | return; | ||
486 | } | ||
487 | |||
488 | /* Include the CPUFREQ_TABLE_END terminator entry */ | ||
489 | tbl_sz++; | ||
490 | |||
491 | freq_table = kzalloc(sizeof(struct cpufreq_frequency_table) * tbl_sz, | ||
492 | GFP_ATOMIC); | ||
493 | if (!freq_table) { | ||
494 | pr_err("%s: could not kzalloc frequency table\n", __func__); | ||
478 | return; | 495 | return; |
479 | } | 496 | } |
480 | 497 | ||
498 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | ||
499 | if (!(prcm->flags & cpu_mask)) | ||
500 | continue; | ||
501 | if (prcm->xtal_speed != sys_ck_rate) | ||
502 | continue; | ||
503 | |||
504 | /* don't put bypass rates in table */ | ||
505 | if (prcm->dpll_speed == prcm->xtal_speed) | ||
506 | continue; | ||
507 | |||
508 | freq_table[i].index = i; | ||
509 | freq_table[i].frequency = prcm->mpu_speed / 1000; | ||
510 | i++; | ||
511 | } | ||
512 | |||
481 | freq_table[i].index = i; | 513 | freq_table[i].index = i; |
482 | freq_table[i].frequency = CPUFREQ_TABLE_END; | 514 | freq_table[i].frequency = CPUFREQ_TABLE_END; |
483 | 515 | ||
484 | *table = &freq_table[0]; | 516 | *table = &freq_table[0]; |
485 | } | 517 | } |
518 | |||
519 | void omap2_clk_exit_cpufreq_table(struct cpufreq_frequency_table **table) | ||
520 | { | ||
521 | kfree(freq_table); | ||
522 | } | ||
523 | |||
486 | #endif | 524 | #endif |
487 | 525 | ||
488 | struct clk_functions omap2_clk_functions = { | 526 | struct clk_functions omap2_clk_functions = { |
@@ -494,6 +532,7 @@ struct clk_functions omap2_clk_functions = { | |||
494 | .clk_disable_unused = omap2_clk_disable_unused, | 532 | .clk_disable_unused = omap2_clk_disable_unused, |
495 | #ifdef CONFIG_CPU_FREQ | 533 | #ifdef CONFIG_CPU_FREQ |
496 | .clk_init_cpufreq_table = omap2_clk_init_cpufreq_table, | 534 | .clk_init_cpufreq_table = omap2_clk_init_cpufreq_table, |
535 | .clk_exit_cpufreq_table = omap2_clk_exit_cpufreq_table, | ||
497 | #endif | 536 | #endif |
498 | }; | 537 | }; |
499 | 538 | ||
diff --git a/arch/arm/mach-omap2/clock34xx.c b/arch/arm/mach-omap2/clock34xx.c index ded32364f32..d4217b93e10 100644 --- a/arch/arm/mach-omap2/clock34xx.c +++ b/arch/arm/mach-omap2/clock34xx.c | |||
@@ -34,7 +34,6 @@ | |||
34 | #include <asm/div64.h> | 34 | #include <asm/div64.h> |
35 | #include <asm/clkdev.h> | 35 | #include <asm/clkdev.h> |
36 | 36 | ||
37 | #include <plat/sdrc.h> | ||
38 | #include "clock.h" | 37 | #include "clock.h" |
39 | #include "clock34xx.h" | 38 | #include "clock34xx.h" |
40 | #include "sdrc.h" | 39 | #include "sdrc.h" |
diff --git a/arch/arm/mach-omap2/clock34xx_data.c b/arch/arm/mach-omap2/clock34xx_data.c index 8bdcc9cc7f9..c6031d74d6f 100644 --- a/arch/arm/mach-omap2/clock34xx_data.c +++ b/arch/arm/mach-omap2/clock34xx_data.c | |||
@@ -776,6 +776,8 @@ static struct clk dpll4_m5_ck = { | |||
776 | .clksel_mask = OMAP3430_CLKSEL_CAM_MASK, | 776 | .clksel_mask = OMAP3430_CLKSEL_CAM_MASK, |
777 | .clksel = div16_dpll4_clksel, | 777 | .clksel = div16_dpll4_clksel, |
778 | .clkdm_name = "dpll4_clkdm", | 778 | .clkdm_name = "dpll4_clkdm", |
779 | .set_rate = &omap2_clksel_set_rate, | ||
780 | .round_rate = &omap2_clksel_round_rate, | ||
779 | .recalc = &omap2_clksel_recalc, | 781 | .recalc = &omap2_clksel_recalc, |
780 | }; | 782 | }; |
781 | 783 | ||
@@ -1500,6 +1502,7 @@ static struct clk uart2_fck = { | |||
1500 | .parent = &core_48m_fck, | 1502 | .parent = &core_48m_fck, |
1501 | .enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1), | 1503 | .enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1), |
1502 | .enable_bit = OMAP3430_EN_UART2_SHIFT, | 1504 | .enable_bit = OMAP3430_EN_UART2_SHIFT, |
1505 | .clkdm_name = "core_l4_clkdm", | ||
1503 | .recalc = &followparent_recalc, | 1506 | .recalc = &followparent_recalc, |
1504 | }; | 1507 | }; |
1505 | 1508 | ||
@@ -1509,6 +1512,7 @@ static struct clk uart1_fck = { | |||
1509 | .parent = &core_48m_fck, | 1512 | .parent = &core_48m_fck, |
1510 | .enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1), | 1513 | .enable_reg = OMAP_CM_REGADDR(CORE_MOD, CM_FCLKEN1), |
1511 | .enable_bit = OMAP3430_EN_UART1_SHIFT, | 1514 | .enable_bit = OMAP3430_EN_UART1_SHIFT, |
1515 | .clkdm_name = "core_l4_clkdm", | ||
1512 | .recalc = &followparent_recalc, | 1516 | .recalc = &followparent_recalc, |
1513 | }; | 1517 | }; |
1514 | 1518 | ||
@@ -2745,7 +2749,7 @@ static struct clk mcbsp4_ick = { | |||
2745 | }; | 2749 | }; |
2746 | 2750 | ||
2747 | static const struct clksel mcbsp_234_clksel[] = { | 2751 | static const struct clksel mcbsp_234_clksel[] = { |
2748 | { .parent = &core_96m_fck, .rates = common_mcbsp_96m_rates }, | 2752 | { .parent = &per_96m_fck, .rates = common_mcbsp_96m_rates }, |
2749 | { .parent = &mcbsp_clks, .rates = common_mcbsp_mcbsp_rates }, | 2753 | { .parent = &mcbsp_clks, .rates = common_mcbsp_mcbsp_rates }, |
2750 | { .parent = NULL } | 2754 | { .parent = NULL } |
2751 | }; | 2755 | }; |
diff --git a/arch/arm/mach-omap2/clockdomain.c b/arch/arm/mach-omap2/clockdomain.c index 1a45ed1e8ba..dd285f00146 100644 --- a/arch/arm/mach-omap2/clockdomain.c +++ b/arch/arm/mach-omap2/clockdomain.c | |||
@@ -559,7 +559,7 @@ int omap2_clkdm_clk_enable(struct clockdomain *clkdm, struct clk *clk) | |||
559 | * downstream clocks for debugging purposes? | 559 | * downstream clocks for debugging purposes? |
560 | */ | 560 | */ |
561 | 561 | ||
562 | if (!clkdm || !clk) | 562 | if (!clkdm || !clk || !clkdm->clktrctrl_mask) |
563 | return -EINVAL; | 563 | return -EINVAL; |
564 | 564 | ||
565 | if (atomic_inc_return(&clkdm->usecount) > 1) | 565 | if (atomic_inc_return(&clkdm->usecount) > 1) |
@@ -610,7 +610,7 @@ int omap2_clkdm_clk_disable(struct clockdomain *clkdm, struct clk *clk) | |||
610 | * downstream clocks for debugging purposes? | 610 | * downstream clocks for debugging purposes? |
611 | */ | 611 | */ |
612 | 612 | ||
613 | if (!clkdm || !clk) | 613 | if (!clkdm || !clk || !clkdm->clktrctrl_mask) |
614 | return -EINVAL; | 614 | return -EINVAL; |
615 | 615 | ||
616 | #ifdef DEBUG | 616 | #ifdef DEBUG |
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index a8749e8017b..5a7996402c5 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
@@ -33,7 +33,6 @@ | |||
33 | #include <plat/sdrc.h> | 33 | #include <plat/sdrc.h> |
34 | #include <plat/gpmc.h> | 34 | #include <plat/gpmc.h> |
35 | #include <plat/serial.h> | 35 | #include <plat/serial.h> |
36 | #include <plat/mux.h> | ||
37 | #include <plat/vram.h> | 36 | #include <plat/vram.h> |
38 | 37 | ||
39 | #include "clock.h" | 38 | #include "clock.h" |
@@ -73,21 +72,21 @@ static struct map_desc omap24xx_io_desc[] __initdata = { | |||
73 | #ifdef CONFIG_ARCH_OMAP2420 | 72 | #ifdef CONFIG_ARCH_OMAP2420 |
74 | static struct map_desc omap242x_io_desc[] __initdata = { | 73 | static struct map_desc omap242x_io_desc[] __initdata = { |
75 | { | 74 | { |
76 | .virtual = DSP_MEM_24XX_VIRT, | 75 | .virtual = DSP_MEM_2420_VIRT, |
77 | .pfn = __phys_to_pfn(DSP_MEM_24XX_PHYS), | 76 | .pfn = __phys_to_pfn(DSP_MEM_2420_PHYS), |
78 | .length = DSP_MEM_24XX_SIZE, | 77 | .length = DSP_MEM_2420_SIZE, |
79 | .type = MT_DEVICE | 78 | .type = MT_DEVICE |
80 | }, | 79 | }, |
81 | { | 80 | { |
82 | .virtual = DSP_IPI_24XX_VIRT, | 81 | .virtual = DSP_IPI_2420_VIRT, |
83 | .pfn = __phys_to_pfn(DSP_IPI_24XX_PHYS), | 82 | .pfn = __phys_to_pfn(DSP_IPI_2420_PHYS), |
84 | .length = DSP_IPI_24XX_SIZE, | 83 | .length = DSP_IPI_2420_SIZE, |
85 | .type = MT_DEVICE | 84 | .type = MT_DEVICE |
86 | }, | 85 | }, |
87 | { | 86 | { |
88 | .virtual = DSP_MMU_24XX_VIRT, | 87 | .virtual = DSP_MMU_2420_VIRT, |
89 | .pfn = __phys_to_pfn(DSP_MMU_24XX_PHYS), | 88 | .pfn = __phys_to_pfn(DSP_MMU_2420_PHYS), |
90 | .length = DSP_MMU_24XX_SIZE, | 89 | .length = DSP_MMU_2420_SIZE, |
91 | .type = MT_DEVICE | 90 | .type = MT_DEVICE |
92 | }, | 91 | }, |
93 | }; | 92 | }; |
diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c index e071b3fd187..459ef23ab8a 100644 --- a/arch/arm/mach-omap2/mux.c +++ b/arch/arm/mach-omap2/mux.c | |||
@@ -994,8 +994,10 @@ int __init omap_mux_init(u32 mux_pbase, u32 mux_size, | |||
994 | } | 994 | } |
995 | 995 | ||
996 | #ifdef CONFIG_OMAP_MUX | 996 | #ifdef CONFIG_OMAP_MUX |
997 | omap_mux_package_fixup(package_subset, superset); | 997 | if (package_subset) |
998 | omap_mux_package_init_balls(package_balls, superset); | 998 | omap_mux_package_fixup(package_subset, superset); |
999 | if (package_balls) | ||
1000 | omap_mux_package_init_balls(package_balls, superset); | ||
999 | omap_mux_set_cmdline_signals(); | 1001 | omap_mux_set_cmdline_signals(); |
1000 | omap_mux_set_board_signals(board_mux); | 1002 | omap_mux_set_board_signals(board_mux); |
1001 | #endif | 1003 | #endif |
diff --git a/arch/arm/mach-omap2/opp2420_data.c b/arch/arm/mach-omap2/opp2420_data.c index 126a9396b3a..e6dda694fd5 100644 --- a/arch/arm/mach-omap2/opp2420_data.c +++ b/arch/arm/mach-omap2/opp2420_data.c | |||
@@ -9,45 +9,47 @@ | |||
9 | * The OMAP2 processor can be run at several discrete 'PRCM configurations'. | 9 | * The OMAP2 processor can be run at several discrete 'PRCM configurations'. |
10 | * These configurations are characterized by voltage and speed for clocks. | 10 | * These configurations are characterized by voltage and speed for clocks. |
11 | * The device is only validated for certain combinations. One way to express | 11 | * The device is only validated for certain combinations. One way to express |
12 | * these combinations is via the 'ratio's' which the clocks operate with | 12 | * these combinations is via the 'ratios' which the clocks operate with |
13 | * respect to each other. These ratio sets are for a given voltage/DPLL | 13 | * respect to each other. These ratio sets are for a given voltage/DPLL |
14 | * setting. All configurations can be described by a DPLL setting and a ratio | 14 | * setting. All configurations can be described by a DPLL setting and a ratio. |
15 | * There are 3 ratio sets for the 2430 and X ratio sets for 2420. | ||
16 | * | ||
17 | * 2430 differs from 2420 in that there are no more phase synchronizers used. | ||
18 | * They both have a slightly different clock domain setup. 2420(iva1,dsp) vs | ||
19 | * 2430 (iva2.1, NOdsp, mdm) | ||
20 | * | 15 | * |
21 | * XXX Missing voltage data. | 16 | * XXX Missing voltage data. |
17 | * XXX Missing 19.2MHz sys_clk rate sets (needed for N800/N810) | ||
22 | * | 18 | * |
23 | * THe format described in this file is deprecated. Once a reasonable | 19 | * THe format described in this file is deprecated. Once a reasonable |
24 | * OPP API exists, the data in this file should be converted to use it. | 20 | * OPP API exists, the data in this file should be converted to use it. |
25 | * | 21 | * |
26 | * This is technically part of the OMAP2xxx clock code. | 22 | * This is technically part of the OMAP2xxx clock code. |
23 | * | ||
24 | * Considerable work is still needed to fully support dynamic frequency | ||
25 | * changes on OMAP2xxx-series chips. Readers interested in such a | ||
26 | * project are encouraged to review the Maemo Diablo RX-34 and RX-44 | ||
27 | * kernel source at: | ||
28 | * http://repository.maemo.org/pool/diablo/free/k/kernel-source-diablo/ | ||
27 | */ | 29 | */ |
28 | 30 | ||
29 | #include "opp2xxx.h" | 31 | #include "opp2xxx.h" |
30 | #include "sdrc.h" | 32 | #include "sdrc.h" |
31 | #include "clock.h" | 33 | #include "clock.h" |
32 | 34 | ||
33 | /*------------------------------------------------------------------------- | 35 | /* |
34 | * Key dividers which make up a PRCM set. Ratio's for a PRCM are mandated. | 36 | * Key dividers which make up a PRCM set. Ratios for a PRCM are mandated. |
35 | * xtal_speed, dpll_speed, mpu_speed, CM_CLKSEL_MPU, | 37 | * xtal_speed, dpll_speed, mpu_speed, CM_CLKSEL_MPU, |
36 | * CM_CLKSEL_DSP, CM_CLKSEL_GFX, CM_CLKSEL1_CORE, CM_CLKSEL1_PLL, | 38 | * CM_CLKSEL_DSP, CM_CLKSEL_GFX, CM_CLKSEL1_CORE, CM_CLKSEL1_PLL, |
37 | * CM_CLKSEL2_PLL, CM_CLKSEL_MDM | 39 | * CM_CLKSEL2_PLL, CM_CLKSEL_MDM |
38 | * | 40 | * |
39 | * Filling in table based on H4 boards and 2430-SDPs variants available. | 41 | * Filling in table based on H4 boards available. There are quite a |
40 | * There are quite a few more rates combinations which could be defined. | 42 | * few more rate combinations which could be defined. |
41 | * | 43 | * |
42 | * When multiple values are defined the start up will try and choose the | 44 | * When multiple values are defined the start up will try and choose |
43 | * fastest one. If a 'fast' value is defined, then automatically, the /2 | 45 | * the fastest one. If a 'fast' value is defined, then automatically, |
44 | * one should be included as it can be used. Generally having more that | 46 | * the /2 one should be included as it can be used. Generally having |
45 | * one fast set does not make sense, as static timings need to be changed | 47 | * more than one fast set does not make sense, as static timings need |
46 | * to change the set. The exception is the bypass setting which is | 48 | * to be changed to change the set. The exception is the bypass |
47 | * availble for low power bypass. | 49 | * setting which is available for low power bypass. |
48 | * | 50 | * |
49 | * Note: This table needs to be sorted, fastest to slowest. | 51 | * Note: This table needs to be sorted, fastest to slowest. |
50 | *-------------------------------------------------------------------------*/ | 52 | **/ |
51 | const struct prcm_config omap2420_rate_table[] = { | 53 | const struct prcm_config omap2420_rate_table[] = { |
52 | /* PRCM I - FAST */ | 54 | /* PRCM I - FAST */ |
53 | {S12M, S660M, S330M, RI_CM_CLKSEL_MPU_VAL, /* 330MHz ARM */ | 55 | {S12M, S660M, S330M, RI_CM_CLKSEL_MPU_VAL, /* 330MHz ARM */ |
diff --git a/arch/arm/mach-omap2/opp2430_data.c b/arch/arm/mach-omap2/opp2430_data.c index edb81672c84..1b9596ae201 100644 --- a/arch/arm/mach-omap2/opp2430_data.c +++ b/arch/arm/mach-omap2/opp2430_data.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * opp2420_data.c - old-style "OPP" table for OMAP2420 | 2 | * opp2430_data.c - old-style "OPP" table for OMAP2430 |
3 | * | 3 | * |
4 | * Copyright (C) 2005-2009 Texas Instruments, Inc. | 4 | * Copyright (C) 2005-2009 Texas Instruments, Inc. |
5 | * Copyright (C) 2004-2009 Nokia Corporation | 5 | * Copyright (C) 2004-2009 Nokia Corporation |
@@ -9,16 +9,16 @@ | |||
9 | * The OMAP2 processor can be run at several discrete 'PRCM configurations'. | 9 | * The OMAP2 processor can be run at several discrete 'PRCM configurations'. |
10 | * These configurations are characterized by voltage and speed for clocks. | 10 | * These configurations are characterized by voltage and speed for clocks. |
11 | * The device is only validated for certain combinations. One way to express | 11 | * The device is only validated for certain combinations. One way to express |
12 | * these combinations is via the 'ratio's' which the clocks operate with | 12 | * these combinations is via the 'ratios' which the clocks operate with |
13 | * respect to each other. These ratio sets are for a given voltage/DPLL | 13 | * respect to each other. These ratio sets are for a given voltage/DPLL |
14 | * setting. All configurations can be described by a DPLL setting and a ratio | 14 | * setting. All configurations can be described by a DPLL setting and a ratio. |
15 | * There are 3 ratio sets for the 2430 and X ratio sets for 2420. | ||
16 | * | 15 | * |
17 | * 2430 differs from 2420 in that there are no more phase synchronizers used. | 16 | * 2430 differs from 2420 in that there are no more phase synchronizers used. |
18 | * They both have a slightly different clock domain setup. 2420(iva1,dsp) vs | 17 | * They both have a slightly different clock domain setup. 2420(iva1,dsp) vs |
19 | * 2430 (iva2.1, NOdsp, mdm) | 18 | * 2430 (iva2.1, NOdsp, mdm) |
20 | * | 19 | * |
21 | * XXX Missing voltage data. | 20 | * XXX Missing voltage data. |
21 | * XXX Missing 19.2MHz sys_clk rate sets. | ||
22 | * | 22 | * |
23 | * THe format described in this file is deprecated. Once a reasonable | 23 | * THe format described in this file is deprecated. Once a reasonable |
24 | * OPP API exists, the data in this file should be converted to use it. | 24 | * OPP API exists, the data in this file should be converted to use it. |
@@ -30,24 +30,24 @@ | |||
30 | #include "sdrc.h" | 30 | #include "sdrc.h" |
31 | #include "clock.h" | 31 | #include "clock.h" |
32 | 32 | ||
33 | /*------------------------------------------------------------------------- | 33 | /* |
34 | * Key dividers which make up a PRCM set. Ratio's for a PRCM are mandated. | 34 | * Key dividers which make up a PRCM set. Ratios for a PRCM are mandated. |
35 | * xtal_speed, dpll_speed, mpu_speed, CM_CLKSEL_MPU, | 35 | * xtal_speed, dpll_speed, mpu_speed, CM_CLKSEL_MPU, |
36 | * CM_CLKSEL_DSP, CM_CLKSEL_GFX, CM_CLKSEL1_CORE, CM_CLKSEL1_PLL, | 36 | * CM_CLKSEL_DSP, CM_CLKSEL_GFX, CM_CLKSEL1_CORE, CM_CLKSEL1_PLL, |
37 | * CM_CLKSEL2_PLL, CM_CLKSEL_MDM | 37 | * CM_CLKSEL2_PLL, CM_CLKSEL_MDM |
38 | * | 38 | * |
39 | * Filling in table based on H4 boards and 2430-SDPs variants available. | 39 | * Filling in table based on 2430-SDPs variants available. There are |
40 | * There are quite a few more rates combinations which could be defined. | 40 | * quite a few more rate combinations which could be defined. |
41 | * | 41 | * |
42 | * When multiple values are defined the start up will try and choose the | 42 | * When multiple values are defined the start up will try and choose |
43 | * fastest one. If a 'fast' value is defined, then automatically, the /2 | 43 | * the fastest one. If a 'fast' value is defined, then automatically, |
44 | * one should be included as it can be used. Generally having more that | 44 | * the /2 one should be included as it can be used. Generally having |
45 | * one fast set does not make sense, as static timings need to be changed | 45 | * more than one fast set does not make sense, as static timings need |
46 | * to change the set. The exception is the bypass setting which is | 46 | * to be changed to change the set. The exception is the bypass |
47 | * availble for low power bypass. | 47 | * setting which is available for low power bypass. |
48 | * | 48 | * |
49 | * Note: This table needs to be sorted, fastest to slowest. | 49 | * Note: This table needs to be sorted, fastest to slowest. |
50 | *-------------------------------------------------------------------------*/ | 50 | */ |
51 | const struct prcm_config omap2430_rate_table[] = { | 51 | const struct prcm_config omap2430_rate_table[] = { |
52 | /* PRCM #4 - ratio2 (ES2.1) - FAST */ | 52 | /* PRCM #4 - ratio2 (ES2.1) - FAST */ |
53 | {S13M, S798M, S399M, R2_CM_CLKSEL_MPU_VAL, /* 399MHz ARM */ | 53 | {S13M, S798M, S399M, R2_CM_CLKSEL_MPU_VAL, /* 399MHz ARM */ |
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index 81ed252a0f8..c6cc809afb7 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c | |||
@@ -124,8 +124,8 @@ static void omap3_core_save_context(void) | |||
124 | control_padconf_off |= START_PADCONF_SAVE; | 124 | control_padconf_off |= START_PADCONF_SAVE; |
125 | omap_ctrl_writel(control_padconf_off, OMAP343X_CONTROL_PADCONF_OFF); | 125 | omap_ctrl_writel(control_padconf_off, OMAP343X_CONTROL_PADCONF_OFF); |
126 | /* wait for the save to complete */ | 126 | /* wait for the save to complete */ |
127 | while (!omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS) | 127 | while (!(omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS) |
128 | & PADCONF_SAVE_DONE) | 128 | & PADCONF_SAVE_DONE)) |
129 | ; | 129 | ; |
130 | /* Save the Interrupt controller context */ | 130 | /* Save the Interrupt controller context */ |
131 | omap_intc_save_context(); | 131 | omap_intc_save_context(); |
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 19805a7de06..8c964bec815 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c | |||
@@ -125,6 +125,13 @@ static struct plat_serial8250_port serial_platform_data3[] = { | |||
125 | } | 125 | } |
126 | }; | 126 | }; |
127 | #endif | 127 | #endif |
128 | static inline unsigned int __serial_read_reg(struct uart_port *up, | ||
129 | int offset) | ||
130 | { | ||
131 | offset <<= up->regshift; | ||
132 | return (unsigned int)__raw_readb(up->membase + offset); | ||
133 | } | ||
134 | |||
128 | static inline unsigned int serial_read_reg(struct plat_serial8250_port *up, | 135 | static inline unsigned int serial_read_reg(struct plat_serial8250_port *up, |
129 | int offset) | 136 | int offset) |
130 | { | 137 | { |
@@ -583,11 +590,12 @@ static unsigned int serial_in_override(struct uart_port *up, int offset) | |||
583 | { | 590 | { |
584 | if (UART_RX == offset) { | 591 | if (UART_RX == offset) { |
585 | unsigned int lsr; | 592 | unsigned int lsr; |
586 | lsr = serial_read_reg(omap_uart[up->line].p, UART_LSR); | 593 | lsr = __serial_read_reg(up, UART_LSR); |
587 | if (!(lsr & UART_LSR_DR)) | 594 | if (!(lsr & UART_LSR_DR)) |
588 | return -EPERM; | 595 | return -EPERM; |
589 | } | 596 | } |
590 | return serial_read_reg(omap_uart[up->line].p, offset); | 597 | |
598 | return __serial_read_reg(up, offset); | ||
591 | } | 599 | } |
592 | 600 | ||
593 | void __init omap_serial_early_init(void) | 601 | void __init omap_serial_early_init(void) |
diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig index 8a0837ea029..dee92182749 100644 --- a/arch/arm/mach-pxa/Kconfig +++ b/arch/arm/mach-pxa/Kconfig | |||
@@ -37,6 +37,8 @@ config MACH_ZYLONITE320 | |||
37 | config MACH_LITTLETON | 37 | config MACH_LITTLETON |
38 | bool "PXA3xx Form Factor Platform (aka Littleton)" | 38 | bool "PXA3xx Form Factor Platform (aka Littleton)" |
39 | select PXA3xx | 39 | select PXA3xx |
40 | select CPU_PXA300 | ||
41 | select CPU_PXA310 | ||
40 | select PXA_SSP | 42 | select PXA_SSP |
41 | 43 | ||
42 | config MACH_TAVOREVB | 44 | config MACH_TAVOREVB |
diff --git a/arch/arm/mach-pxa/include/mach/hardware.h b/arch/arm/mach-pxa/include/mach/hardware.h index 50f1297bf5a..e741bf1bfb2 100644 --- a/arch/arm/mach-pxa/include/mach/hardware.h +++ b/arch/arm/mach-pxa/include/mach/hardware.h | |||
@@ -250,20 +250,17 @@ | |||
250 | 250 | ||
251 | #define cpu_is_pxa930() \ | 251 | #define cpu_is_pxa930() \ |
252 | ({ \ | 252 | ({ \ |
253 | unsigned int id = read_cpuid(CPUID_ID); \ | 253 | __cpu_is_pxa930(read_cpuid_id()); \ |
254 | __cpu_is_pxa930(id); \ | ||
255 | }) | 254 | }) |
256 | 255 | ||
257 | #define cpu_is_pxa935() \ | 256 | #define cpu_is_pxa935() \ |
258 | ({ \ | 257 | ({ \ |
259 | unsigned int id = read_cpuid(CPUID_ID); \ | 258 | __cpu_is_pxa935(read_cpuid_id()); \ |
260 | __cpu_is_pxa935(id); \ | ||
261 | }) | 259 | }) |
262 | 260 | ||
263 | #define cpu_is_pxa950() \ | 261 | #define cpu_is_pxa950() \ |
264 | ({ \ | 262 | ({ \ |
265 | unsigned int id = read_cpuid(CPUID_ID); \ | 263 | __cpu_is_pxa950(read_cpuid_id()); \ |
266 | __cpu_is_pxa950(id); \ | ||
267 | }) | 264 | }) |
268 | 265 | ||
269 | 266 | ||
diff --git a/arch/arm/mach-pxa/include/mach/zylonite.h b/arch/arm/mach-pxa/include/mach/zylonite.h index bf6785adccf..9edf645368d 100644 --- a/arch/arm/mach-pxa/include/mach/zylonite.h +++ b/arch/arm/mach-pxa/include/mach/zylonite.h | |||
@@ -8,13 +8,6 @@ | |||
8 | /* the following variables are processor specific and initialized | 8 | /* the following variables are processor specific and initialized |
9 | * by the corresponding zylonite_pxa3xx_init() | 9 | * by the corresponding zylonite_pxa3xx_init() |
10 | */ | 10 | */ |
11 | struct platform_mmc_slot { | ||
12 | int gpio_cd; | ||
13 | int gpio_wp; | ||
14 | }; | ||
15 | |||
16 | extern struct platform_mmc_slot zylonite_mmc_slot[]; | ||
17 | |||
18 | extern int gpio_eth_irq; | 11 | extern int gpio_eth_irq; |
19 | extern int gpio_debug_led1; | 12 | extern int gpio_debug_led1; |
20 | extern int gpio_debug_led2; | 13 | extern int gpio_debug_led2; |
diff --git a/arch/arm/mach-pxa/littleton.c b/arch/arm/mach-pxa/littleton.c index f28c1715b91..fa527b258d6 100644 --- a/arch/arm/mach-pxa/littleton.c +++ b/arch/arm/mach-pxa/littleton.c | |||
@@ -110,6 +110,12 @@ static mfp_cfg_t littleton_mfp_cfg[] __initdata = { | |||
110 | GPIO7_MMC1_CLK, | 110 | GPIO7_MMC1_CLK, |
111 | GPIO8_MMC1_CMD, | 111 | GPIO8_MMC1_CMD, |
112 | GPIO15_GPIO, /* card detect */ | 112 | GPIO15_GPIO, /* card detect */ |
113 | |||
114 | /* UART3 */ | ||
115 | GPIO107_UART3_CTS, | ||
116 | GPIO108_UART3_RTS, | ||
117 | GPIO109_UART3_TXD, | ||
118 | GPIO110_UART3_RXD, | ||
113 | }; | 119 | }; |
114 | 120 | ||
115 | static struct resource smc91x_resources[] = { | 121 | static struct resource smc91x_resources[] = { |
diff --git a/arch/arm/mach-pxa/magician.c b/arch/arm/mach-pxa/magician.c index 8a38d604dc7..189f330719a 100644 --- a/arch/arm/mach-pxa/magician.c +++ b/arch/arm/mach-pxa/magician.c | |||
@@ -381,7 +381,7 @@ err: | |||
381 | return ret; | 381 | return ret; |
382 | } | 382 | } |
383 | 383 | ||
384 | static int magician_backlight_notify(int brightness) | 384 | static int magician_backlight_notify(struct device *dev, int brightness) |
385 | { | 385 | { |
386 | gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness); | 386 | gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness); |
387 | if (brightness >= 200) { | 387 | if (brightness >= 200) { |
diff --git a/arch/arm/mach-pxa/palmld.c b/arch/arm/mach-pxa/palmld.c index 59140217890..e100af78b16 100644 --- a/arch/arm/mach-pxa/palmld.c +++ b/arch/arm/mach-pxa/palmld.c | |||
@@ -270,7 +270,7 @@ err: | |||
270 | return ret; | 270 | return ret; |
271 | } | 271 | } |
272 | 272 | ||
273 | static int palmld_backlight_notify(int brightness) | 273 | static int palmld_backlight_notify(struct device *dev, int brightness) |
274 | { | 274 | { |
275 | gpio_set_value(GPIO_NR_PALMLD_BL_POWER, brightness); | 275 | gpio_set_value(GPIO_NR_PALMLD_BL_POWER, brightness); |
276 | gpio_set_value(GPIO_NR_PALMLD_LCD_POWER, brightness); | 276 | gpio_set_value(GPIO_NR_PALMLD_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmt5.c b/arch/arm/mach-pxa/palmt5.c index 7f89ca20f13..8fe3ec27568 100644 --- a/arch/arm/mach-pxa/palmt5.c +++ b/arch/arm/mach-pxa/palmt5.c | |||
@@ -209,7 +209,7 @@ err: | |||
209 | return ret; | 209 | return ret; |
210 | } | 210 | } |
211 | 211 | ||
212 | static int palmt5_backlight_notify(int brightness) | 212 | static int palmt5_backlight_notify(struct device *dev, int brightness) |
213 | { | 213 | { |
214 | gpio_set_value(GPIO_NR_PALMT5_BL_POWER, brightness); | 214 | gpio_set_value(GPIO_NR_PALMT5_BL_POWER, brightness); |
215 | gpio_set_value(GPIO_NR_PALMT5_LCD_POWER, brightness); | 215 | gpio_set_value(GPIO_NR_PALMT5_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmtc.c b/arch/arm/mach-pxa/palmtc.c index 30841759200..b992f07ece2 100644 --- a/arch/arm/mach-pxa/palmtc.c +++ b/arch/arm/mach-pxa/palmtc.c | |||
@@ -185,7 +185,7 @@ err: | |||
185 | return ret; | 185 | return ret; |
186 | } | 186 | } |
187 | 187 | ||
188 | static int palmtc_backlight_notify(int brightness) | 188 | static int palmtc_backlight_notify(struct device *dev, int brightness) |
189 | { | 189 | { |
190 | /* backlight is on when GPIO16 AF0 is high */ | 190 | /* backlight is on when GPIO16 AF0 is high */ |
191 | gpio_set_value(GPIO_NR_PALMTC_BL_POWER, brightness); | 191 | gpio_set_value(GPIO_NR_PALMTC_BL_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmte2.c b/arch/arm/mach-pxa/palmte2.c index 265d62bae7d..dc728d6ab94 100644 --- a/arch/arm/mach-pxa/palmte2.c +++ b/arch/arm/mach-pxa/palmte2.c | |||
@@ -181,7 +181,7 @@ err: | |||
181 | return ret; | 181 | return ret; |
182 | } | 182 | } |
183 | 183 | ||
184 | static int palmte2_backlight_notify(int brightness) | 184 | static int palmte2_backlight_notify(struct device *dev, int brightness) |
185 | { | 185 | { |
186 | gpio_set_value(GPIO_NR_PALMTE2_BL_POWER, brightness); | 186 | gpio_set_value(GPIO_NR_PALMTE2_BL_POWER, brightness); |
187 | gpio_set_value(GPIO_NR_PALMTE2_LCD_POWER, brightness); | 187 | gpio_set_value(GPIO_NR_PALMTE2_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmtreo.c b/arch/arm/mach-pxa/palmtreo.c index 606eb7e8a17..b433bb49671 100644 --- a/arch/arm/mach-pxa/palmtreo.c +++ b/arch/arm/mach-pxa/palmtreo.c | |||
@@ -375,7 +375,7 @@ err: | |||
375 | return ret; | 375 | return ret; |
376 | } | 376 | } |
377 | 377 | ||
378 | static int treo_backlight_notify(int brightness) | 378 | static int treo_backlight_notify(struct device *dev, int brightness) |
379 | { | 379 | { |
380 | gpio_set_value(GPIO_NR_TREO_BL_POWER, brightness); | 380 | gpio_set_value(GPIO_NR_TREO_BL_POWER, brightness); |
381 | return TREO_MAX_INTENSITY - brightness; | 381 | return TREO_MAX_INTENSITY - brightness; |
diff --git a/arch/arm/mach-pxa/palmtx.c b/arch/arm/mach-pxa/palmtx.c index 7bf18c2f002..b37a025c0b7 100644 --- a/arch/arm/mach-pxa/palmtx.c +++ b/arch/arm/mach-pxa/palmtx.c | |||
@@ -269,7 +269,7 @@ err: | |||
269 | return ret; | 269 | return ret; |
270 | } | 270 | } |
271 | 271 | ||
272 | static int palmtx_backlight_notify(int brightness) | 272 | static int palmtx_backlight_notify(struct device *dev, int brightness) |
273 | { | 273 | { |
274 | gpio_set_value(GPIO_NR_PALMTX_BL_POWER, brightness); | 274 | gpio_set_value(GPIO_NR_PALMTX_BL_POWER, brightness); |
275 | gpio_set_value(GPIO_NR_PALMTX_LCD_POWER, brightness); | 275 | gpio_set_value(GPIO_NR_PALMTX_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmz72.c b/arch/arm/mach-pxa/palmz72.c index d787ac7cfdd..1c5d68a9451 100644 --- a/arch/arm/mach-pxa/palmz72.c +++ b/arch/arm/mach-pxa/palmz72.c | |||
@@ -196,7 +196,7 @@ err: | |||
196 | return ret; | 196 | return ret; |
197 | } | 197 | } |
198 | 198 | ||
199 | static int palmz72_backlight_notify(int brightness) | 199 | static int palmz72_backlight_notify(struct device *dev, int brightness) |
200 | { | 200 | { |
201 | gpio_set_value(GPIO_NR_PALMZ72_BL_POWER, brightness); | 201 | gpio_set_value(GPIO_NR_PALMZ72_BL_POWER, brightness); |
202 | gpio_set_value(GPIO_NR_PALMZ72_LCD_POWER, brightness); | 202 | gpio_set_value(GPIO_NR_PALMZ72_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index e5eeb3a62d0..c2b938a4d5c 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
@@ -293,7 +293,7 @@ static struct pxamci_platform_data poodle_mci_platform_data = { | |||
293 | .init = poodle_mci_init, | 293 | .init = poodle_mci_init, |
294 | .setpower = poodle_mci_setpower, | 294 | .setpower = poodle_mci_setpower, |
295 | .exit = poodle_mci_exit, | 295 | .exit = poodle_mci_exit, |
296 | .gpio_card_detect = POODLE_IRQ_GPIO_nSD_DETECT, | 296 | .gpio_card_detect = POODLE_GPIO_nSD_DETECT, |
297 | .gpio_card_ro = POODLE_GPIO_nSD_WP, | 297 | .gpio_card_ro = POODLE_GPIO_nSD_WP, |
298 | .gpio_power = -1, | 298 | .gpio_power = -1, |
299 | }; | 299 | }; |
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 4b50f144fa4..28352c0b8c3 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -389,13 +389,13 @@ static struct gpio_keys_button spitz_gpio_keys[] = { | |||
389 | .type = EV_SW, | 389 | .type = EV_SW, |
390 | .code = 0, | 390 | .code = 0, |
391 | .gpio = SPITZ_GPIO_SWA, | 391 | .gpio = SPITZ_GPIO_SWA, |
392 | .desc = "Display Down", | 392 | .desc = "Display Down", |
393 | }, | 393 | }, |
394 | { | 394 | { |
395 | .type = EV_SW, | 395 | .type = EV_SW, |
396 | .code = 1, | 396 | .code = 1, |
397 | .gpio = SPITZ_GPIO_SWB, | 397 | .gpio = SPITZ_GPIO_SWB, |
398 | .desc = "Lid Closed", | 398 | .desc = "Lid Closed", |
399 | }, | 399 | }, |
400 | }; | 400 | }; |
401 | 401 | ||
diff --git a/arch/arm/mach-pxa/viper.c b/arch/arm/mach-pxa/viper.c index 5352b4e5a7d..89f258c9e12 100644 --- a/arch/arm/mach-pxa/viper.c +++ b/arch/arm/mach-pxa/viper.c | |||
@@ -379,7 +379,7 @@ err_request_bckl: | |||
379 | return ret; | 379 | return ret; |
380 | } | 380 | } |
381 | 381 | ||
382 | static int viper_backlight_notify(int brightness) | 382 | static int viper_backlight_notify(struct device *dev, int brightness) |
383 | { | 383 | { |
384 | gpio_set_value(VIPER_LCD_EN_GPIO, !!brightness); | 384 | gpio_set_value(VIPER_LCD_EN_GPIO, !!brightness); |
385 | gpio_set_value(VIPER_BCKLIGHT_EN_GPIO, !!brightness); | 385 | gpio_set_value(VIPER_BCKLIGHT_EN_GPIO, !!brightness); |
diff --git a/arch/arm/mach-pxa/zeus.c b/arch/arm/mach-pxa/zeus.c index 5b986a8bd9e..75f2a37f945 100644 --- a/arch/arm/mach-pxa/zeus.c +++ b/arch/arm/mach-pxa/zeus.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <linux/mtd/physmap.h> | 25 | #include <linux/mtd/physmap.h> |
26 | #include <linux/i2c.h> | 26 | #include <linux/i2c.h> |
27 | #include <linux/i2c/pca953x.h> | 27 | #include <linux/i2c/pca953x.h> |
28 | #include <linux/apm-emulation.h> | ||
28 | 29 | ||
29 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
30 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
@@ -626,8 +627,27 @@ static void zeus_power_off(void) | |||
626 | pxa27x_cpu_suspend(PWRMODE_DEEPSLEEP); | 627 | pxa27x_cpu_suspend(PWRMODE_DEEPSLEEP); |
627 | } | 628 | } |
628 | 629 | ||
629 | int zeus_get_pcb_info(struct i2c_client *client, unsigned gpio, | 630 | #ifdef CONFIG_APM_EMULATION |
630 | unsigned ngpio, void *context) | 631 | static void zeus_get_power_status(struct apm_power_info *info) |
632 | { | ||
633 | /* Power supply is always present */ | ||
634 | info->ac_line_status = APM_AC_ONLINE; | ||
635 | info->battery_status = APM_BATTERY_STATUS_NOT_PRESENT; | ||
636 | info->battery_flag = APM_BATTERY_FLAG_NOT_PRESENT; | ||
637 | } | ||
638 | |||
639 | static inline void zeus_setup_apm(void) | ||
640 | { | ||
641 | apm_get_power_status = zeus_get_power_status; | ||
642 | } | ||
643 | #else | ||
644 | static inline void zeus_setup_apm(void) | ||
645 | { | ||
646 | } | ||
647 | #endif | ||
648 | |||
649 | static int zeus_get_pcb_info(struct i2c_client *client, unsigned gpio, | ||
650 | unsigned ngpio, void *context) | ||
631 | { | 651 | { |
632 | int i; | 652 | int i; |
633 | u8 pcb_info = 0; | 653 | u8 pcb_info = 0; |
@@ -726,9 +746,18 @@ static mfp_cfg_t zeus_pin_config[] __initdata = { | |||
726 | GPIO99_GPIO, /* CF RDY */ | 746 | GPIO99_GPIO, /* CF RDY */ |
727 | }; | 747 | }; |
728 | 748 | ||
749 | /* | ||
750 | * DM9k MSCx settings: SRAM, 16 bits | ||
751 | * 17 cycles delay first access | ||
752 | * 5 cycles delay next access | ||
753 | * 13 cycles recovery time | ||
754 | * faster device | ||
755 | */ | ||
756 | #define DM9K_MSC_VALUE 0xe4c9 | ||
757 | |||
729 | static void __init zeus_init(void) | 758 | static void __init zeus_init(void) |
730 | { | 759 | { |
731 | u16 dm9000_msc = 0xe279; | 760 | u16 dm9000_msc = DM9K_MSC_VALUE; |
732 | 761 | ||
733 | system_rev = __raw_readw(ZEUS_CPLD_VERSION); | 762 | system_rev = __raw_readw(ZEUS_CPLD_VERSION); |
734 | pr_info("Zeus CPLD V%dI%d\n", (system_rev & 0xf0) >> 4, (system_rev & 0x0f)); | 763 | pr_info("Zeus CPLD V%dI%d\n", (system_rev & 0xf0) >> 4, (system_rev & 0x0f)); |
@@ -738,6 +767,7 @@ static void __init zeus_init(void) | |||
738 | MSC1 = (MSC1 & 0xffff0000) | dm9000_msc; | 767 | MSC1 = (MSC1 & 0xffff0000) | dm9000_msc; |
739 | 768 | ||
740 | pm_power_off = zeus_power_off; | 769 | pm_power_off = zeus_power_off; |
770 | zeus_setup_apm(); | ||
741 | 771 | ||
742 | pxa2xx_mfp_config(ARRAY_AND_SIZE(zeus_pin_config)); | 772 | pxa2xx_mfp_config(ARRAY_AND_SIZE(zeus_pin_config)); |
743 | 773 | ||
diff --git a/arch/arm/mach-pxa/zylonite.c b/arch/arm/mach-pxa/zylonite.c index b66e9e2d06e..2b4043c04d0 100644 --- a/arch/arm/mach-pxa/zylonite.c +++ b/arch/arm/mach-pxa/zylonite.c | |||
@@ -36,9 +36,6 @@ | |||
36 | #include "devices.h" | 36 | #include "devices.h" |
37 | #include "generic.h" | 37 | #include "generic.h" |
38 | 38 | ||
39 | #define MAX_SLOTS 3 | ||
40 | struct platform_mmc_slot zylonite_mmc_slot[MAX_SLOTS]; | ||
41 | |||
42 | int gpio_eth_irq; | 39 | int gpio_eth_irq; |
43 | int gpio_debug_led1; | 40 | int gpio_debug_led1; |
44 | int gpio_debug_led2; | 41 | int gpio_debug_led2; |
@@ -220,84 +217,28 @@ static inline void zylonite_init_lcd(void) {} | |||
220 | #endif | 217 | #endif |
221 | 218 | ||
222 | #if defined(CONFIG_MMC) | 219 | #if defined(CONFIG_MMC) |
223 | static int zylonite_mci_ro(struct device *dev) | ||
224 | { | ||
225 | struct platform_device *pdev = to_platform_device(dev); | ||
226 | |||
227 | return gpio_get_value(zylonite_mmc_slot[pdev->id].gpio_wp); | ||
228 | } | ||
229 | |||
230 | static int zylonite_mci_init(struct device *dev, | ||
231 | irq_handler_t zylonite_detect_int, | ||
232 | void *data) | ||
233 | { | ||
234 | struct platform_device *pdev = to_platform_device(dev); | ||
235 | int err, cd_irq, gpio_cd, gpio_wp; | ||
236 | |||
237 | cd_irq = gpio_to_irq(zylonite_mmc_slot[pdev->id].gpio_cd); | ||
238 | gpio_cd = zylonite_mmc_slot[pdev->id].gpio_cd; | ||
239 | gpio_wp = zylonite_mmc_slot[pdev->id].gpio_wp; | ||
240 | |||
241 | /* | ||
242 | * setup GPIO for Zylonite MMC controller | ||
243 | */ | ||
244 | err = gpio_request(gpio_cd, "mmc card detect"); | ||
245 | if (err) | ||
246 | goto err_request_cd; | ||
247 | gpio_direction_input(gpio_cd); | ||
248 | |||
249 | err = gpio_request(gpio_wp, "mmc write protect"); | ||
250 | if (err) | ||
251 | goto err_request_wp; | ||
252 | gpio_direction_input(gpio_wp); | ||
253 | |||
254 | err = request_irq(cd_irq, zylonite_detect_int, | ||
255 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | ||
256 | "MMC card detect", data); | ||
257 | if (err) { | ||
258 | printk(KERN_ERR "%s: MMC/SD/SDIO: " | ||
259 | "can't request card detect IRQ\n", __func__); | ||
260 | goto err_request_irq; | ||
261 | } | ||
262 | |||
263 | return 0; | ||
264 | |||
265 | err_request_irq: | ||
266 | gpio_free(gpio_wp); | ||
267 | err_request_wp: | ||
268 | gpio_free(gpio_cd); | ||
269 | err_request_cd: | ||
270 | return err; | ||
271 | } | ||
272 | |||
273 | static void zylonite_mci_exit(struct device *dev, void *data) | ||
274 | { | ||
275 | struct platform_device *pdev = to_platform_device(dev); | ||
276 | int cd_irq, gpio_cd, gpio_wp; | ||
277 | |||
278 | cd_irq = gpio_to_irq(zylonite_mmc_slot[pdev->id].gpio_cd); | ||
279 | gpio_cd = zylonite_mmc_slot[pdev->id].gpio_cd; | ||
280 | gpio_wp = zylonite_mmc_slot[pdev->id].gpio_wp; | ||
281 | |||
282 | free_irq(cd_irq, data); | ||
283 | gpio_free(gpio_cd); | ||
284 | gpio_free(gpio_wp); | ||
285 | } | ||
286 | |||
287 | static struct pxamci_platform_data zylonite_mci_platform_data = { | 220 | static struct pxamci_platform_data zylonite_mci_platform_data = { |
288 | .detect_delay = 20, | 221 | .detect_delay = 20, |
289 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, | 222 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
290 | .init = zylonite_mci_init, | 223 | .gpio_card_detect = EXT_GPIO(0), |
291 | .exit = zylonite_mci_exit, | 224 | .gpio_card_ro = EXT_GPIO(2), |
292 | .get_ro = zylonite_mci_ro, | ||
293 | .gpio_card_detect = -1, | ||
294 | .gpio_card_ro = -1, | ||
295 | .gpio_power = -1, | 225 | .gpio_power = -1, |
296 | }; | 226 | }; |
297 | 227 | ||
298 | static struct pxamci_platform_data zylonite_mci2_platform_data = { | 228 | static struct pxamci_platform_data zylonite_mci2_platform_data = { |
299 | .detect_delay = 20, | 229 | .detect_delay = 20, |
300 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, | 230 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
231 | .gpio_card_detect = EXT_GPIO(1), | ||
232 | .gpio_card_ro = EXT_GPIO(3), | ||
233 | .gpio_power = -1, | ||
234 | }; | ||
235 | |||
236 | static struct pxamci_platform_data zylonite_mci3_platform_data = { | ||
237 | .detect_delay = 20, | ||
238 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, | ||
239 | .gpio_card_detect = EXT_GPIO(30), | ||
240 | .gpio_card_ro = EXT_GPIO(31), | ||
241 | .gpio_power = -1, | ||
301 | }; | 242 | }; |
302 | 243 | ||
303 | static void __init zylonite_init_mmc(void) | 244 | static void __init zylonite_init_mmc(void) |
@@ -305,7 +246,7 @@ static void __init zylonite_init_mmc(void) | |||
305 | pxa_set_mci_info(&zylonite_mci_platform_data); | 246 | pxa_set_mci_info(&zylonite_mci_platform_data); |
306 | pxa3xx_set_mci2_info(&zylonite_mci2_platform_data); | 247 | pxa3xx_set_mci2_info(&zylonite_mci2_platform_data); |
307 | if (cpu_is_pxa310()) | 248 | if (cpu_is_pxa310()) |
308 | pxa3xx_set_mci3_info(&zylonite_mci_platform_data); | 249 | pxa3xx_set_mci3_info(&zylonite_mci3_platform_data); |
309 | } | 250 | } |
310 | #else | 251 | #else |
311 | static inline void zylonite_init_mmc(void) {} | 252 | static inline void zylonite_init_mmc(void) {} |
diff --git a/arch/arm/mach-pxa/zylonite_pxa300.c b/arch/arm/mach-pxa/zylonite_pxa300.c index 84095440a87..3aa73b3e33f 100644 --- a/arch/arm/mach-pxa/zylonite_pxa300.c +++ b/arch/arm/mach-pxa/zylonite_pxa300.c | |||
@@ -129,8 +129,8 @@ static mfp_cfg_t common_mfp_cfg[] __initdata = { | |||
129 | GPIO22_I2C_SDA, | 129 | GPIO22_I2C_SDA, |
130 | 130 | ||
131 | /* GPIO */ | 131 | /* GPIO */ |
132 | GPIO18_GPIO, /* GPIO Expander #0 INT_N */ | 132 | GPIO18_GPIO | MFP_PULL_HIGH, /* GPIO Expander #0 INT_N */ |
133 | GPIO19_GPIO, /* GPIO Expander #1 INT_N */ | 133 | GPIO19_GPIO | MFP_PULL_HIGH, /* GPIO Expander #1 INT_N */ |
134 | }; | 134 | }; |
135 | 135 | ||
136 | static mfp_cfg_t pxa300_mfp_cfg[] __initdata = { | 136 | static mfp_cfg_t pxa300_mfp_cfg[] __initdata = { |
@@ -258,10 +258,6 @@ void __init zylonite_pxa300_init(void) | |||
258 | /* detect LCD panel */ | 258 | /* detect LCD panel */ |
259 | zylonite_detect_lcd_panel(); | 259 | zylonite_detect_lcd_panel(); |
260 | 260 | ||
261 | /* MMC card detect & write protect for controller 0 */ | ||
262 | zylonite_mmc_slot[0].gpio_cd = EXT_GPIO(0); | ||
263 | zylonite_mmc_slot[0].gpio_wp = EXT_GPIO(2); | ||
264 | |||
265 | /* WM9713 IRQ */ | 261 | /* WM9713 IRQ */ |
266 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO26); | 262 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO26); |
267 | 263 | ||
@@ -276,10 +272,6 @@ void __init zylonite_pxa300_init(void) | |||
276 | if (cpu_is_pxa310()) { | 272 | if (cpu_is_pxa310()) { |
277 | pxa3xx_mfp_config(ARRAY_AND_SIZE(pxa310_mfp_cfg)); | 273 | pxa3xx_mfp_config(ARRAY_AND_SIZE(pxa310_mfp_cfg)); |
278 | gpio_eth_irq = mfp_to_gpio(MFP_PIN_GPIO102); | 274 | gpio_eth_irq = mfp_to_gpio(MFP_PIN_GPIO102); |
279 | |||
280 | /* MMC card detect & write protect for controller 2 */ | ||
281 | zylonite_mmc_slot[2].gpio_cd = EXT_GPIO(30); | ||
282 | zylonite_mmc_slot[2].gpio_wp = EXT_GPIO(31); | ||
283 | } | 275 | } |
284 | 276 | ||
285 | /* GPIOs for Debug LEDs */ | 277 | /* GPIOs for Debug LEDs */ |
diff --git a/arch/arm/mach-pxa/zylonite_pxa320.c b/arch/arm/mach-pxa/zylonite_pxa320.c index 60d08f23f5e..9942bac4cf7 100644 --- a/arch/arm/mach-pxa/zylonite_pxa320.c +++ b/arch/arm/mach-pxa/zylonite_pxa320.c | |||
@@ -209,10 +209,6 @@ void __init zylonite_pxa320_init(void) | |||
209 | gpio_debug_led1 = mfp_to_gpio(MFP_PIN_GPIO1_2); | 209 | gpio_debug_led1 = mfp_to_gpio(MFP_PIN_GPIO1_2); |
210 | gpio_debug_led2 = mfp_to_gpio(MFP_PIN_GPIO4_2); | 210 | gpio_debug_led2 = mfp_to_gpio(MFP_PIN_GPIO4_2); |
211 | 211 | ||
212 | /* MMC card detect & write protect for controller 0 */ | ||
213 | zylonite_mmc_slot[0].gpio_cd = mfp_to_gpio(MFP_PIN_GPIO1); | ||
214 | zylonite_mmc_slot[0].gpio_wp = mfp_to_gpio(MFP_PIN_GPIO5); | ||
215 | |||
216 | /* WM9713 IRQ */ | 212 | /* WM9713 IRQ */ |
217 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO15); | 213 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO15); |
218 | } | 214 | } |
diff --git a/arch/arm/mach-realview/include/mach/board-pb1176.h b/arch/arm/mach-realview/include/mach/board-pb1176.h index 34b80b7d40b..2f5ccb29885 100644 --- a/arch/arm/mach-realview/include/mach/board-pb1176.h +++ b/arch/arm/mach-realview/include/mach/board-pb1176.h | |||
@@ -74,8 +74,8 @@ | |||
74 | #define REALVIEW_PB1176_L220_BASE 0x10110000 /* L220 registers */ | 74 | #define REALVIEW_PB1176_L220_BASE 0x10110000 /* L220 registers */ |
75 | 75 | ||
76 | /* | 76 | /* |
77 | * Control register SYS_RESETCTL is set to 1 to force a soft reset | 77 | * Control register SYS_RESETCTL Bit 8 is set to 1 to force a soft reset |
78 | */ | 78 | */ |
79 | #define REALVIEW_PB1176_SYS_LOCKVAL_RSTCTL 0x0100 | 79 | #define REALVIEW_PB1176_SYS_SOFT_RESET 0x0100 |
80 | 80 | ||
81 | #endif /* __ASM_ARCH_BOARD_PB1176_H */ | 81 | #endif /* __ASM_ARCH_BOARD_PB1176_H */ |
diff --git a/arch/arm/mach-realview/include/mach/platform.h b/arch/arm/mach-realview/include/mach/platform.h index 4f46bf71e75..86c0c4435a4 100644 --- a/arch/arm/mach-realview/include/mach/platform.h +++ b/arch/arm/mach-realview/include/mach/platform.h | |||
@@ -140,7 +140,7 @@ | |||
140 | * SYS_CLD, SYS_BOOTCS | 140 | * SYS_CLD, SYS_BOOTCS |
141 | */ | 141 | */ |
142 | #define REALVIEW_SYS_LOCK_LOCKED (1 << 16) | 142 | #define REALVIEW_SYS_LOCK_LOCKED (1 << 16) |
143 | #define REALVIEW_SYS_LOCKVAL_MASK 0xA05F /* Enable write access */ | 143 | #define REALVIEW_SYS_LOCK_VAL 0xA05F /* Enable write access */ |
144 | 144 | ||
145 | /* | 145 | /* |
146 | * REALVIEW_SYS_FLASH | 146 | * REALVIEW_SYS_FLASH |
diff --git a/arch/arm/mach-realview/realview_eb.c b/arch/arm/mach-realview/realview_eb.c index 917f8ca3abf..7d857d30055 100644 --- a/arch/arm/mach-realview/realview_eb.c +++ b/arch/arm/mach-realview/realview_eb.c | |||
@@ -381,6 +381,20 @@ static struct sys_timer realview_eb_timer = { | |||
381 | .init = realview_eb_timer_init, | 381 | .init = realview_eb_timer_init, |
382 | }; | 382 | }; |
383 | 383 | ||
384 | static void realview_eb_reset(char mode) | ||
385 | { | ||
386 | void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL); | ||
387 | void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK); | ||
388 | |||
389 | /* | ||
390 | * To reset, we hit the on-board reset register | ||
391 | * in the system FPGA | ||
392 | */ | ||
393 | __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl); | ||
394 | if (core_tile_eb11mp()) | ||
395 | __raw_writel(0x0008, reset_ctrl); | ||
396 | } | ||
397 | |||
384 | static void __init realview_eb_init(void) | 398 | static void __init realview_eb_init(void) |
385 | { | 399 | { |
386 | int i; | 400 | int i; |
@@ -408,6 +422,7 @@ static void __init realview_eb_init(void) | |||
408 | #ifdef CONFIG_LEDS | 422 | #ifdef CONFIG_LEDS |
409 | leds_event = realview_leds_event; | 423 | leds_event = realview_leds_event; |
410 | #endif | 424 | #endif |
425 | realview_reset = realview_eb_reset; | ||
411 | } | 426 | } |
412 | 427 | ||
413 | MACHINE_START(REALVIEW_EB, "ARM-RealView EB") | 428 | MACHINE_START(REALVIEW_EB, "ARM-RealView EB") |
diff --git a/arch/arm/mach-realview/realview_pb1176.c b/arch/arm/mach-realview/realview_pb1176.c index 7fb726d5f8b..44392e51dd5 100644 --- a/arch/arm/mach-realview/realview_pb1176.c +++ b/arch/arm/mach-realview/realview_pb1176.c | |||
@@ -292,12 +292,10 @@ static struct sys_timer realview_pb1176_timer = { | |||
292 | 292 | ||
293 | static void realview_pb1176_reset(char mode) | 293 | static void realview_pb1176_reset(char mode) |
294 | { | 294 | { |
295 | void __iomem *hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + | 295 | void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL); |
296 | REALVIEW_SYS_RESETCTL_OFFSET; | 296 | void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK); |
297 | void __iomem *rst_hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + | 297 | __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl); |
298 | REALVIEW_SYS_LOCK_OFFSET; | 298 | __raw_writel(REALVIEW_PB1176_SYS_SOFT_RESET, reset_ctrl); |
299 | __raw_writel(REALVIEW_SYS_LOCKVAL_MASK, rst_hdr_ctrl); | ||
300 | __raw_writel(REALVIEW_PB1176_SYS_LOCKVAL_RSTCTL, hdr_ctrl); | ||
301 | } | 299 | } |
302 | 300 | ||
303 | static void realview_pb1176_fixup(struct machine_desc *mdesc, | 301 | static void realview_pb1176_fixup(struct machine_desc *mdesc, |
diff --git a/arch/arm/mach-realview/realview_pb11mp.c b/arch/arm/mach-realview/realview_pb11mp.c index 9bbbfc05f22..3e02731af95 100644 --- a/arch/arm/mach-realview/realview_pb11mp.c +++ b/arch/arm/mach-realview/realview_pb11mp.c | |||
@@ -301,17 +301,16 @@ static struct sys_timer realview_pb11mp_timer = { | |||
301 | 301 | ||
302 | static void realview_pb11mp_reset(char mode) | 302 | static void realview_pb11mp_reset(char mode) |
303 | { | 303 | { |
304 | void __iomem *hdr_ctrl = __io_address(REALVIEW_SYS_BASE) + | 304 | void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL); |
305 | REALVIEW_SYS_RESETCTL_OFFSET; | 305 | void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK); |
306 | unsigned int val; | ||
307 | 306 | ||
308 | /* | 307 | /* |
309 | * To reset, we hit the on-board reset register | 308 | * To reset, we hit the on-board reset register |
310 | * in the system FPGA | 309 | * in the system FPGA |
311 | */ | 310 | */ |
312 | val = __raw_readl(hdr_ctrl); | 311 | __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl); |
313 | val |= REALVIEW_PB11MP_SYS_CTRL_RESET_CONFIGCLR; | 312 | __raw_writel(0x0000, reset_ctrl); |
314 | __raw_writel(val, hdr_ctrl); | 313 | __raw_writel(0x0004, reset_ctrl); |
315 | } | 314 | } |
316 | 315 | ||
317 | static void __init realview_pb11mp_init(void) | 316 | static void __init realview_pb11mp_init(void) |
diff --git a/arch/arm/mach-realview/realview_pba8.c b/arch/arm/mach-realview/realview_pba8.c index fe861e96c56..fe4e25c4201 100644 --- a/arch/arm/mach-realview/realview_pba8.c +++ b/arch/arm/mach-realview/realview_pba8.c | |||
@@ -272,6 +272,20 @@ static struct sys_timer realview_pba8_timer = { | |||
272 | .init = realview_pba8_timer_init, | 272 | .init = realview_pba8_timer_init, |
273 | }; | 273 | }; |
274 | 274 | ||
275 | static void realview_pba8_reset(char mode) | ||
276 | { | ||
277 | void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL); | ||
278 | void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK); | ||
279 | |||
280 | /* | ||
281 | * To reset, we hit the on-board reset register | ||
282 | * in the system FPGA | ||
283 | */ | ||
284 | __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl); | ||
285 | __raw_writel(0x0000, reset_ctrl); | ||
286 | __raw_writel(0x0004, reset_ctrl); | ||
287 | } | ||
288 | |||
275 | static void __init realview_pba8_init(void) | 289 | static void __init realview_pba8_init(void) |
276 | { | 290 | { |
277 | int i; | 291 | int i; |
@@ -291,6 +305,7 @@ static void __init realview_pba8_init(void) | |||
291 | #ifdef CONFIG_LEDS | 305 | #ifdef CONFIG_LEDS |
292 | leds_event = realview_leds_event; | 306 | leds_event = realview_leds_event; |
293 | #endif | 307 | #endif |
308 | realview_reset = realview_pba8_reset; | ||
294 | } | 309 | } |
295 | 310 | ||
296 | MACHINE_START(REALVIEW_PBA8, "ARM-RealView PB-A8") | 311 | MACHINE_START(REALVIEW_PBA8, "ARM-RealView PB-A8") |
diff --git a/arch/arm/mach-realview/realview_pbx.c b/arch/arm/mach-realview/realview_pbx.c index ec39488e2b4..a21a4b395f7 100644 --- a/arch/arm/mach-realview/realview_pbx.c +++ b/arch/arm/mach-realview/realview_pbx.c | |||
@@ -324,6 +324,20 @@ static void realview_pbx_fixup(struct machine_desc *mdesc, struct tag *tags, | |||
324 | #endif | 324 | #endif |
325 | } | 325 | } |
326 | 326 | ||
327 | static void realview_pbx_reset(char mode) | ||
328 | { | ||
329 | void __iomem *reset_ctrl = __io_address(REALVIEW_SYS_RESETCTL); | ||
330 | void __iomem *lock_ctrl = __io_address(REALVIEW_SYS_LOCK); | ||
331 | |||
332 | /* | ||
333 | * To reset, we hit the on-board reset register | ||
334 | * in the system FPGA | ||
335 | */ | ||
336 | __raw_writel(REALVIEW_SYS_LOCK_VAL, lock_ctrl); | ||
337 | __raw_writel(0x0000, reset_ctrl); | ||
338 | __raw_writel(0x0004, reset_ctrl); | ||
339 | } | ||
340 | |||
327 | static void __init realview_pbx_init(void) | 341 | static void __init realview_pbx_init(void) |
328 | { | 342 | { |
329 | int i; | 343 | int i; |
@@ -358,6 +372,7 @@ static void __init realview_pbx_init(void) | |||
358 | #ifdef CONFIG_LEDS | 372 | #ifdef CONFIG_LEDS |
359 | leds_event = realview_leds_event; | 373 | leds_event = realview_leds_event; |
360 | #endif | 374 | #endif |
375 | realview_reset = realview_pbx_reset; | ||
361 | } | 376 | } |
362 | 377 | ||
363 | MACHINE_START(REALVIEW_PBX, "ARM-RealView PBX") | 378 | MACHINE_START(REALVIEW_PBX, "ARM-RealView PBX") |
diff --git a/arch/arm/mach-s3c2410/include/mach/ts.h b/arch/arm/mach-s3c2410/include/mach/ts.h new file mode 100644 index 00000000000..dc361700d69 --- /dev/null +++ b/arch/arm/mach-s3c2410/include/mach/ts.h | |||
@@ -0,0 +1,21 @@ | |||
1 | /* linux/include/asm/arch-s3c2410/ts.h | ||
2 | * | ||
3 | * Copyright (c) 2005 Arnaud Patard <arnaud.patard@rtp-net.org> | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | */ | ||
9 | |||
10 | #ifndef __ASM_ARM_TS_H | ||
11 | #define __ASM_ARM_TS_H | ||
12 | |||
13 | struct s3c2410_ts_mach_info { | ||
14 | int delay; | ||
15 | int presc; | ||
16 | int oversampling_shift; | ||
17 | }; | ||
18 | |||
19 | extern void s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *); | ||
20 | |||
21 | #endif /* __ASM_ARM_TS_H */ | ||
diff --git a/arch/arm/mach-s3c2410/mach-bast.c b/arch/arm/mach-s3c2410/mach-bast.c index 4c79ac8a6c3..97162fdd059 100644 --- a/arch/arm/mach-s3c2410/mach-bast.c +++ b/arch/arm/mach-s3c2410/mach-bast.c | |||
@@ -279,6 +279,7 @@ static struct s3c2410_nand_set __initdata bast_nand_sets[] = { | |||
279 | .name = "SmartMedia", | 279 | .name = "SmartMedia", |
280 | .nr_chips = 1, | 280 | .nr_chips = 1, |
281 | .nr_map = smartmedia_map, | 281 | .nr_map = smartmedia_map, |
282 | .options = NAND_SCAN_SILENT_NODEV, | ||
282 | .nr_partitions = ARRAY_SIZE(bast_default_nand_part), | 283 | .nr_partitions = ARRAY_SIZE(bast_default_nand_part), |
283 | .partitions = bast_default_nand_part, | 284 | .partitions = bast_default_nand_part, |
284 | }, | 285 | }, |
@@ -293,6 +294,7 @@ static struct s3c2410_nand_set __initdata bast_nand_sets[] = { | |||
293 | .name = "chip1", | 294 | .name = "chip1", |
294 | .nr_chips = 1, | 295 | .nr_chips = 1, |
295 | .nr_map = chip1_map, | 296 | .nr_map = chip1_map, |
297 | .options = NAND_SCAN_SILENT_NODEV, | ||
296 | .nr_partitions = ARRAY_SIZE(bast_default_nand_part), | 298 | .nr_partitions = ARRAY_SIZE(bast_default_nand_part), |
297 | .partitions = bast_default_nand_part, | 299 | .partitions = bast_default_nand_part, |
298 | }, | 300 | }, |
@@ -300,6 +302,7 @@ static struct s3c2410_nand_set __initdata bast_nand_sets[] = { | |||
300 | .name = "chip2", | 302 | .name = "chip2", |
301 | .nr_chips = 1, | 303 | .nr_chips = 1, |
302 | .nr_map = chip2_map, | 304 | .nr_map = chip2_map, |
305 | .options = NAND_SCAN_SILENT_NODEV, | ||
303 | .nr_partitions = ARRAY_SIZE(bast_default_nand_part), | 306 | .nr_partitions = ARRAY_SIZE(bast_default_nand_part), |
304 | .partitions = bast_default_nand_part, | 307 | .partitions = bast_default_nand_part, |
305 | } | 308 | } |
diff --git a/arch/arm/mach-s3c2410/mach-h1940.c b/arch/arm/mach-s3c2410/mach-h1940.c index 49053254c98..1e34abe1a19 100644 --- a/arch/arm/mach-s3c2410/mach-h1940.c +++ b/arch/arm/mach-s3c2410/mach-h1940.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include <mach/h1940.h> | 46 | #include <mach/h1940.h> |
47 | #include <mach/h1940-latch.h> | 47 | #include <mach/h1940-latch.h> |
48 | #include <mach/fb.h> | 48 | #include <mach/fb.h> |
49 | #include <mach/ts.h> | ||
49 | #include <plat/udc.h> | 50 | #include <plat/udc.h> |
50 | #include <plat/iic.h> | 51 | #include <plat/iic.h> |
51 | 52 | ||
@@ -140,6 +141,11 @@ static struct s3c2410_udc_mach_info h1940_udc_cfg __initdata = { | |||
140 | .vbus_pin_inverted = 1, | 141 | .vbus_pin_inverted = 1, |
141 | }; | 142 | }; |
142 | 143 | ||
144 | static struct s3c2410_ts_mach_info h1940_ts_cfg __initdata = { | ||
145 | .delay = 10000, | ||
146 | .presc = 49, | ||
147 | .oversampling_shift = 2, | ||
148 | }; | ||
143 | 149 | ||
144 | /** | 150 | /** |
145 | * Set lcd on or off | 151 | * Set lcd on or off |
@@ -265,6 +271,7 @@ static struct platform_device h1940_lcd_powerdev = { | |||
265 | }; | 271 | }; |
266 | 272 | ||
267 | static struct platform_device *h1940_devices[] __initdata = { | 273 | static struct platform_device *h1940_devices[] __initdata = { |
274 | &s3c_device_ts, | ||
268 | &s3c_device_usb, | 275 | &s3c_device_usb, |
269 | &s3c_device_lcd, | 276 | &s3c_device_lcd, |
270 | &s3c_device_wdt, | 277 | &s3c_device_wdt, |
@@ -305,6 +312,7 @@ static void __init h1940_init(void) | |||
305 | 312 | ||
306 | s3c24xx_fb_set_platdata(&h1940_fb_info); | 313 | s3c24xx_fb_set_platdata(&h1940_fb_info); |
307 | s3c24xx_udc_set_platdata(&h1940_udc_cfg); | 314 | s3c24xx_udc_set_platdata(&h1940_udc_cfg); |
315 | s3c24xx_ts_set_platdata(&h1940_ts_cfg); | ||
308 | s3c_i2c0_set_platdata(NULL); | 316 | s3c_i2c0_set_platdata(NULL); |
309 | 317 | ||
310 | s3c_device_sdi.dev.platform_data = &h1940_mmc_cfg; | 318 | s3c_device_sdi.dev.platform_data = &h1940_mmc_cfg; |
diff --git a/arch/arm/mach-s3c2440/mach-mini2440.c b/arch/arm/mach-s3c2440/mach-mini2440.c index 547d4fc9913..2068e9096a4 100644 --- a/arch/arm/mach-s3c2440/mach-mini2440.c +++ b/arch/arm/mach-s3c2440/mach-mini2440.c | |||
@@ -288,7 +288,7 @@ static struct s3c2410_platform_nand mini2440_nand_info __initdata = { | |||
288 | 288 | ||
289 | /* DM9000AEP 10/100 ethernet controller */ | 289 | /* DM9000AEP 10/100 ethernet controller */ |
290 | 290 | ||
291 | static struct resource mini2440_dm9k_resource[] __initdata = { | 291 | static struct resource mini2440_dm9k_resource[] = { |
292 | [0] = { | 292 | [0] = { |
293 | .start = MACH_MINI2440_DM9K_BASE, | 293 | .start = MACH_MINI2440_DM9K_BASE, |
294 | .end = MACH_MINI2440_DM9K_BASE + 3, | 294 | .end = MACH_MINI2440_DM9K_BASE + 3, |
@@ -310,11 +310,11 @@ static struct resource mini2440_dm9k_resource[] __initdata = { | |||
310 | * The DM9000 has no eeprom, and it's MAC address is set by | 310 | * The DM9000 has no eeprom, and it's MAC address is set by |
311 | * the bootloader before starting the kernel. | 311 | * the bootloader before starting the kernel. |
312 | */ | 312 | */ |
313 | static struct dm9000_plat_data mini2440_dm9k_pdata __initdata = { | 313 | static struct dm9000_plat_data mini2440_dm9k_pdata = { |
314 | .flags = (DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM), | 314 | .flags = (DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM), |
315 | }; | 315 | }; |
316 | 316 | ||
317 | static struct platform_device mini2440_device_eth __initdata = { | 317 | static struct platform_device mini2440_device_eth = { |
318 | .name = "dm9000", | 318 | .name = "dm9000", |
319 | .id = -1, | 319 | .id = -1, |
320 | .num_resources = ARRAY_SIZE(mini2440_dm9k_resource), | 320 | .num_resources = ARRAY_SIZE(mini2440_dm9k_resource), |
@@ -341,7 +341,7 @@ static struct platform_device mini2440_device_eth __initdata = { | |||
341 | * | | +----+ +----+ | 341 | * | | +----+ +----+ |
342 | * ..... | 342 | * ..... |
343 | */ | 343 | */ |
344 | static struct gpio_keys_button mini2440_buttons[] __initdata = { | 344 | static struct gpio_keys_button mini2440_buttons[] = { |
345 | { | 345 | { |
346 | .gpio = S3C2410_GPG(0), /* K1 */ | 346 | .gpio = S3C2410_GPG(0), /* K1 */ |
347 | .code = KEY_F1, | 347 | .code = KEY_F1, |
@@ -384,12 +384,12 @@ static struct gpio_keys_button mini2440_buttons[] __initdata = { | |||
384 | #endif | 384 | #endif |
385 | }; | 385 | }; |
386 | 386 | ||
387 | static struct gpio_keys_platform_data mini2440_button_data __initdata = { | 387 | static struct gpio_keys_platform_data mini2440_button_data = { |
388 | .buttons = mini2440_buttons, | 388 | .buttons = mini2440_buttons, |
389 | .nbuttons = ARRAY_SIZE(mini2440_buttons), | 389 | .nbuttons = ARRAY_SIZE(mini2440_buttons), |
390 | }; | 390 | }; |
391 | 391 | ||
392 | static struct platform_device mini2440_button_device __initdata = { | 392 | static struct platform_device mini2440_button_device = { |
393 | .name = "gpio-keys", | 393 | .name = "gpio-keys", |
394 | .id = -1, | 394 | .id = -1, |
395 | .dev = { | 395 | .dev = { |
@@ -399,41 +399,41 @@ static struct platform_device mini2440_button_device __initdata = { | |||
399 | 399 | ||
400 | /* LEDS */ | 400 | /* LEDS */ |
401 | 401 | ||
402 | static struct s3c24xx_led_platdata mini2440_led1_pdata __initdata = { | 402 | static struct s3c24xx_led_platdata mini2440_led1_pdata = { |
403 | .name = "led1", | 403 | .name = "led1", |
404 | .gpio = S3C2410_GPB(5), | 404 | .gpio = S3C2410_GPB(5), |
405 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, | 405 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, |
406 | .def_trigger = "heartbeat", | 406 | .def_trigger = "heartbeat", |
407 | }; | 407 | }; |
408 | 408 | ||
409 | static struct s3c24xx_led_platdata mini2440_led2_pdata __initdata = { | 409 | static struct s3c24xx_led_platdata mini2440_led2_pdata = { |
410 | .name = "led2", | 410 | .name = "led2", |
411 | .gpio = S3C2410_GPB(6), | 411 | .gpio = S3C2410_GPB(6), |
412 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, | 412 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, |
413 | .def_trigger = "nand-disk", | 413 | .def_trigger = "nand-disk", |
414 | }; | 414 | }; |
415 | 415 | ||
416 | static struct s3c24xx_led_platdata mini2440_led3_pdata __initdata = { | 416 | static struct s3c24xx_led_platdata mini2440_led3_pdata = { |
417 | .name = "led3", | 417 | .name = "led3", |
418 | .gpio = S3C2410_GPB(7), | 418 | .gpio = S3C2410_GPB(7), |
419 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, | 419 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, |
420 | .def_trigger = "mmc0", | 420 | .def_trigger = "mmc0", |
421 | }; | 421 | }; |
422 | 422 | ||
423 | static struct s3c24xx_led_platdata mini2440_led4_pdata __initdata = { | 423 | static struct s3c24xx_led_platdata mini2440_led4_pdata = { |
424 | .name = "led4", | 424 | .name = "led4", |
425 | .gpio = S3C2410_GPB(8), | 425 | .gpio = S3C2410_GPB(8), |
426 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, | 426 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, |
427 | .def_trigger = "", | 427 | .def_trigger = "", |
428 | }; | 428 | }; |
429 | 429 | ||
430 | static struct s3c24xx_led_platdata mini2440_led_backlight_pdata __initdata = { | 430 | static struct s3c24xx_led_platdata mini2440_led_backlight_pdata = { |
431 | .name = "backlight", | 431 | .name = "backlight", |
432 | .gpio = S3C2410_GPG(4), | 432 | .gpio = S3C2410_GPG(4), |
433 | .def_trigger = "backlight", | 433 | .def_trigger = "backlight", |
434 | }; | 434 | }; |
435 | 435 | ||
436 | static struct platform_device mini2440_led1 __initdata = { | 436 | static struct platform_device mini2440_led1 = { |
437 | .name = "s3c24xx_led", | 437 | .name = "s3c24xx_led", |
438 | .id = 1, | 438 | .id = 1, |
439 | .dev = { | 439 | .dev = { |
@@ -441,7 +441,7 @@ static struct platform_device mini2440_led1 __initdata = { | |||
441 | }, | 441 | }, |
442 | }; | 442 | }; |
443 | 443 | ||
444 | static struct platform_device mini2440_led2 __initdata = { | 444 | static struct platform_device mini2440_led2 = { |
445 | .name = "s3c24xx_led", | 445 | .name = "s3c24xx_led", |
446 | .id = 2, | 446 | .id = 2, |
447 | .dev = { | 447 | .dev = { |
@@ -449,7 +449,7 @@ static struct platform_device mini2440_led2 __initdata = { | |||
449 | }, | 449 | }, |
450 | }; | 450 | }; |
451 | 451 | ||
452 | static struct platform_device mini2440_led3 __initdata = { | 452 | static struct platform_device mini2440_led3 = { |
453 | .name = "s3c24xx_led", | 453 | .name = "s3c24xx_led", |
454 | .id = 3, | 454 | .id = 3, |
455 | .dev = { | 455 | .dev = { |
@@ -457,7 +457,7 @@ static struct platform_device mini2440_led3 __initdata = { | |||
457 | }, | 457 | }, |
458 | }; | 458 | }; |
459 | 459 | ||
460 | static struct platform_device mini2440_led4 __initdata = { | 460 | static struct platform_device mini2440_led4 = { |
461 | .name = "s3c24xx_led", | 461 | .name = "s3c24xx_led", |
462 | .id = 4, | 462 | .id = 4, |
463 | .dev = { | 463 | .dev = { |
@@ -465,7 +465,7 @@ static struct platform_device mini2440_led4 __initdata = { | |||
465 | }, | 465 | }, |
466 | }; | 466 | }; |
467 | 467 | ||
468 | static struct platform_device mini2440_led_backlight __initdata = { | 468 | static struct platform_device mini2440_led_backlight = { |
469 | .name = "s3c24xx_led", | 469 | .name = "s3c24xx_led", |
470 | .id = 5, | 470 | .id = 5, |
471 | .dev = { | 471 | .dev = { |
@@ -475,14 +475,14 @@ static struct platform_device mini2440_led_backlight __initdata = { | |||
475 | 475 | ||
476 | /* AUDIO */ | 476 | /* AUDIO */ |
477 | 477 | ||
478 | static struct s3c24xx_uda134x_platform_data mini2440_audio_pins __initdata = { | 478 | static struct s3c24xx_uda134x_platform_data mini2440_audio_pins = { |
479 | .l3_clk = S3C2410_GPB(4), | 479 | .l3_clk = S3C2410_GPB(4), |
480 | .l3_mode = S3C2410_GPB(2), | 480 | .l3_mode = S3C2410_GPB(2), |
481 | .l3_data = S3C2410_GPB(3), | 481 | .l3_data = S3C2410_GPB(3), |
482 | .model = UDA134X_UDA1341 | 482 | .model = UDA134X_UDA1341 |
483 | }; | 483 | }; |
484 | 484 | ||
485 | static struct platform_device mini2440_audio __initdata = { | 485 | static struct platform_device mini2440_audio = { |
486 | .name = "s3c24xx_uda134x", | 486 | .name = "s3c24xx_uda134x", |
487 | .id = 0, | 487 | .id = 0, |
488 | .dev = { | 488 | .dev = { |
diff --git a/arch/arm/mach-s3c2440/mach-osiris.c b/arch/arm/mach-s3c2440/mach-osiris.c index 015dfb2a80d..f35371db33f 100644 --- a/arch/arm/mach-s3c2440/mach-osiris.c +++ b/arch/arm/mach-s3c2440/mach-osiris.c | |||
@@ -208,6 +208,7 @@ static struct s3c2410_nand_set __initdata osiris_nand_sets[] = { | |||
208 | .name = "External", | 208 | .name = "External", |
209 | .nr_chips = 1, | 209 | .nr_chips = 1, |
210 | .nr_map = external_map, | 210 | .nr_map = external_map, |
211 | .options = NAND_SCAN_SILENT_NODEV, | ||
211 | .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), | 212 | .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), |
212 | .partitions = osiris_default_nand_part, | 213 | .partitions = osiris_default_nand_part, |
213 | }, | 214 | }, |
@@ -222,6 +223,7 @@ static struct s3c2410_nand_set __initdata osiris_nand_sets[] = { | |||
222 | .name = "chip1", | 223 | .name = "chip1", |
223 | .nr_chips = 1, | 224 | .nr_chips = 1, |
224 | .nr_map = chip1_map, | 225 | .nr_map = chip1_map, |
226 | .options = NAND_SCAN_SILENT_NODEV, | ||
225 | .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), | 227 | .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), |
226 | .partitions = osiris_default_nand_part, | 228 | .partitions = osiris_default_nand_part, |
227 | }, | 229 | }, |
diff --git a/arch/arm/mach-s3c6410/mach-smdk6410.c b/arch/arm/mach-s3c6410/mach-smdk6410.c index 480d297c1de..8969fe73b83 100644 --- a/arch/arm/mach-s3c6410/mach-smdk6410.c +++ b/arch/arm/mach-s3c6410/mach-smdk6410.c | |||
@@ -211,6 +211,7 @@ static struct fixed_voltage_config smdk6410_b_pwr_5v_pdata = { | |||
211 | .supply_name = "B_PWR_5V", | 211 | .supply_name = "B_PWR_5V", |
212 | .microvolts = 5000000, | 212 | .microvolts = 5000000, |
213 | .init_data = &smdk6410_b_pwr_5v_data, | 213 | .init_data = &smdk6410_b_pwr_5v_data, |
214 | .gpio = -EINVAL, | ||
214 | }; | 215 | }; |
215 | 216 | ||
216 | static struct platform_device smdk6410_b_pwr_5v = { | 217 | static struct platform_device smdk6410_b_pwr_5v = { |
diff --git a/arch/arm/mach-w90x900/cpu.c b/arch/arm/mach-w90x900/cpu.c index 921cef991bf..20dc0c96214 100644 --- a/arch/arm/mach-w90x900/cpu.c +++ b/arch/arm/mach-w90x900/cpu.c | |||
@@ -96,6 +96,7 @@ static struct clk_lookup nuc900_clkregs[] = { | |||
96 | 96 | ||
97 | struct plat_serial8250_port nuc900_uart_data[] = { | 97 | struct plat_serial8250_port nuc900_uart_data[] = { |
98 | NUC900_8250PORT(UART0), | 98 | NUC900_8250PORT(UART0), |
99 | {}, | ||
99 | }; | 100 | }; |
100 | 101 | ||
101 | struct platform_device nuc900_serial_device = { | 102 | struct platform_device nuc900_serial_device = { |
diff --git a/arch/arm/mach-w90x900/dev.c b/arch/arm/mach-w90x900/dev.c index 51f17b75334..ec711f4b401 100644 --- a/arch/arm/mach-w90x900/dev.c +++ b/arch/arm/mach-w90x900/dev.c | |||
@@ -197,7 +197,7 @@ static struct platform_device nuc900_device_emc = { | |||
197 | 197 | ||
198 | /* SPI device */ | 198 | /* SPI device */ |
199 | 199 | ||
200 | static struct w90p910_spi_info nuc900_spiflash_data = { | 200 | static struct nuc900_spi_info nuc900_spiflash_data = { |
201 | .num_cs = 1, | 201 | .num_cs = 1, |
202 | .lsb = 0, | 202 | .lsb = 0, |
203 | .txneg = 1, | 203 | .txneg = 1, |
diff --git a/arch/arm/mach-w90x900/include/mach/system.h b/arch/arm/mach-w90x900/include/mach/system.h index 94064006685..ce228bdc66d 100644 --- a/arch/arm/mach-w90x900/include/mach/system.h +++ b/arch/arm/mach-w90x900/include/mach/system.h | |||
@@ -15,7 +15,15 @@ | |||
15 | * | 15 | * |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <linux/io.h> | ||
18 | #include <asm/proc-fns.h> | 19 | #include <asm/proc-fns.h> |
20 | #include <mach/map.h> | ||
21 | #include <mach/regs-timer.h> | ||
22 | |||
23 | #define WTCR (TMR_BA + 0x1C) | ||
24 | #define WTCLK (1 << 10) | ||
25 | #define WTE (1 << 7) | ||
26 | #define WTRE (1 << 1) | ||
19 | 27 | ||
20 | static void arch_idle(void) | 28 | static void arch_idle(void) |
21 | { | 29 | { |
@@ -23,6 +31,11 @@ static void arch_idle(void) | |||
23 | 31 | ||
24 | static void arch_reset(char mode, const char *cmd) | 32 | static void arch_reset(char mode, const char *cmd) |
25 | { | 33 | { |
26 | cpu_reset(0); | 34 | if (mode == 's') { |
35 | /* Jump into ROM at address 0 */ | ||
36 | cpu_reset(0); | ||
37 | } else { | ||
38 | __raw_writel(WTE | WTRE | WTCLK, WTCR); | ||
39 | } | ||
27 | } | 40 | } |
28 | 41 | ||
diff --git a/arch/arm/mach-w90x900/include/mach/uncompress.h b/arch/arm/mach-w90x900/include/mach/uncompress.h index 050d9fe5ae1..56f1a74d701 100644 --- a/arch/arm/mach-w90x900/include/mach/uncompress.h +++ b/arch/arm/mach-w90x900/include/mach/uncompress.h | |||
@@ -22,11 +22,21 @@ | |||
22 | 22 | ||
23 | #include <mach/regs-serial.h> | 23 | #include <mach/regs-serial.h> |
24 | #include <mach/map.h> | 24 | #include <mach/map.h> |
25 | #include <linux/serial_reg.h> | ||
25 | 26 | ||
26 | #define arch_decomp_wdog() | 27 | #define arch_decomp_wdog() |
27 | 28 | ||
29 | #define TX_DONE (UART_LSR_TEMT | UART_LSR_THRE) | ||
30 | static volatile u32 * uart_base = (u32 *)UART0_PA; | ||
31 | |||
28 | static void putc(int ch) | 32 | static void putc(int ch) |
29 | { | 33 | { |
34 | /* Check THRE and TEMT bits before we transmit the character. | ||
35 | */ | ||
36 | while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE) | ||
37 | barrier(); | ||
38 | |||
39 | *uart_base = ch; | ||
30 | } | 40 | } |
31 | 41 | ||
32 | static inline void flush(void) | 42 | static inline void flush(void) |
diff --git a/arch/arm/mach-w90x900/time.c b/arch/arm/mach-w90x900/time.c index 4128af870b4..b80f769bc13 100644 --- a/arch/arm/mach-w90x900/time.c +++ b/arch/arm/mach-w90x900/time.c | |||
@@ -42,7 +42,10 @@ | |||
42 | #define TICKS_PER_SEC 100 | 42 | #define TICKS_PER_SEC 100 |
43 | #define PRESCALE 0x63 /* Divider = prescale + 1 */ | 43 | #define PRESCALE 0x63 /* Divider = prescale + 1 */ |
44 | 44 | ||
45 | unsigned int timer0_load; | 45 | #define TDR_SHIFT 24 |
46 | #define TDR_MASK ((1 << TDR_SHIFT) - 1) | ||
47 | |||
48 | static unsigned int timer0_load; | ||
46 | 49 | ||
47 | static void nuc900_clockevent_setmode(enum clock_event_mode mode, | 50 | static void nuc900_clockevent_setmode(enum clock_event_mode mode, |
48 | struct clock_event_device *clk) | 51 | struct clock_event_device *clk) |
@@ -88,7 +91,7 @@ static int nuc900_clockevent_setnextevent(unsigned long evt, | |||
88 | static struct clock_event_device nuc900_clockevent_device = { | 91 | static struct clock_event_device nuc900_clockevent_device = { |
89 | .name = "nuc900-timer0", | 92 | .name = "nuc900-timer0", |
90 | .shift = 32, | 93 | .shift = 32, |
91 | .features = CLOCK_EVT_MODE_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, | 94 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
92 | .set_mode = nuc900_clockevent_setmode, | 95 | .set_mode = nuc900_clockevent_setmode, |
93 | .set_next_event = nuc900_clockevent_setnextevent, | 96 | .set_next_event = nuc900_clockevent_setnextevent, |
94 | .rating = 300, | 97 | .rating = 300, |
@@ -112,8 +115,23 @@ static struct irqaction nuc900_timer0_irq = { | |||
112 | .handler = nuc900_timer0_interrupt, | 115 | .handler = nuc900_timer0_interrupt, |
113 | }; | 116 | }; |
114 | 117 | ||
115 | static void __init nuc900_clockevents_init(unsigned int rate) | 118 | static void __init nuc900_clockevents_init(void) |
116 | { | 119 | { |
120 | unsigned int rate; | ||
121 | struct clk *clk = clk_get(NULL, "timer0"); | ||
122 | |||
123 | BUG_ON(IS_ERR(clk)); | ||
124 | |||
125 | __raw_writel(0x00, REG_TCSR0); | ||
126 | |||
127 | clk_enable(clk); | ||
128 | rate = clk_get_rate(clk) / (PRESCALE + 1); | ||
129 | |||
130 | timer0_load = (rate / TICKS_PER_SEC); | ||
131 | |||
132 | __raw_writel(RESETINT, REG_TISR); | ||
133 | setup_irq(IRQ_TIMER0, &nuc900_timer0_irq); | ||
134 | |||
117 | nuc900_clockevent_device.mult = div_sc(rate, NSEC_PER_SEC, | 135 | nuc900_clockevent_device.mult = div_sc(rate, NSEC_PER_SEC, |
118 | nuc900_clockevent_device.shift); | 136 | nuc900_clockevent_device.shift); |
119 | nuc900_clockevent_device.max_delta_ns = clockevent_delta2ns(0xffffffff, | 137 | nuc900_clockevent_device.max_delta_ns = clockevent_delta2ns(0xffffffff, |
@@ -127,26 +145,35 @@ static void __init nuc900_clockevents_init(unsigned int rate) | |||
127 | 145 | ||
128 | static cycle_t nuc900_get_cycles(struct clocksource *cs) | 146 | static cycle_t nuc900_get_cycles(struct clocksource *cs) |
129 | { | 147 | { |
130 | return ~__raw_readl(REG_TDR1); | 148 | return (~__raw_readl(REG_TDR1)) & TDR_MASK; |
131 | } | 149 | } |
132 | 150 | ||
133 | static struct clocksource clocksource_nuc900 = { | 151 | static struct clocksource clocksource_nuc900 = { |
134 | .name = "nuc900-timer1", | 152 | .name = "nuc900-timer1", |
135 | .rating = 200, | 153 | .rating = 200, |
136 | .read = nuc900_get_cycles, | 154 | .read = nuc900_get_cycles, |
137 | .mask = CLOCKSOURCE_MASK(32), | 155 | .mask = CLOCKSOURCE_MASK(TDR_SHIFT), |
138 | .shift = 20, | 156 | .shift = 10, |
139 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 157 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
140 | }; | 158 | }; |
141 | 159 | ||
142 | static void __init nuc900_clocksource_init(unsigned int rate) | 160 | static void __init nuc900_clocksource_init(void) |
143 | { | 161 | { |
144 | unsigned int val; | 162 | unsigned int val; |
163 | unsigned int rate; | ||
164 | struct clk *clk = clk_get(NULL, "timer1"); | ||
165 | |||
166 | BUG_ON(IS_ERR(clk)); | ||
167 | |||
168 | __raw_writel(0x00, REG_TCSR1); | ||
169 | |||
170 | clk_enable(clk); | ||
171 | rate = clk_get_rate(clk) / (PRESCALE + 1); | ||
145 | 172 | ||
146 | __raw_writel(0xffffffff, REG_TICR1); | 173 | __raw_writel(0xffffffff, REG_TICR1); |
147 | 174 | ||
148 | val = __raw_readl(REG_TCSR1); | 175 | val = __raw_readl(REG_TCSR1); |
149 | val |= (COUNTEN | PERIOD); | 176 | val |= (COUNTEN | PERIOD | PRESCALE); |
150 | __raw_writel(val, REG_TCSR1); | 177 | __raw_writel(val, REG_TCSR1); |
151 | 178 | ||
152 | clocksource_nuc900.mult = | 179 | clocksource_nuc900.mult = |
@@ -156,25 +183,8 @@ static void __init nuc900_clocksource_init(unsigned int rate) | |||
156 | 183 | ||
157 | static void __init nuc900_timer_init(void) | 184 | static void __init nuc900_timer_init(void) |
158 | { | 185 | { |
159 | struct clk *ck_ext = clk_get(NULL, "ext"); | 186 | nuc900_clocksource_init(); |
160 | unsigned int rate; | 187 | nuc900_clockevents_init(); |
161 | |||
162 | BUG_ON(IS_ERR(ck_ext)); | ||
163 | |||
164 | rate = clk_get_rate(ck_ext); | ||
165 | clk_put(ck_ext); | ||
166 | rate = rate / (PRESCALE + 0x01); | ||
167 | |||
168 | /* set a known state */ | ||
169 | __raw_writel(0x00, REG_TCSR0); | ||
170 | __raw_writel(0x00, REG_TCSR1); | ||
171 | __raw_writel(RESETINT, REG_TISR); | ||
172 | timer0_load = (rate / TICKS_PER_SEC); | ||
173 | |||
174 | setup_irq(IRQ_TIMER0, &nuc900_timer0_irq); | ||
175 | |||
176 | nuc900_clocksource_init(rate); | ||
177 | nuc900_clockevents_init(rate); | ||
178 | } | 188 | } |
179 | 189 | ||
180 | struct sys_timer nuc900_timer = { | 190 | struct sys_timer nuc900_timer = { |
diff --git a/arch/arm/mm/Kconfig b/arch/arm/mm/Kconfig index dd4698c67cc..baf638487a2 100644 --- a/arch/arm/mm/Kconfig +++ b/arch/arm/mm/Kconfig | |||
@@ -1,9 +1,5 @@ | |||
1 | comment "Processor Type" | 1 | comment "Processor Type" |
2 | 2 | ||
3 | config CPU_32 | ||
4 | bool | ||
5 | default y | ||
6 | |||
7 | # Select CPU types depending on the architecture selected. This selects | 3 | # Select CPU types depending on the architecture selected. This selects |
8 | # which CPUs we support in the kernel image, and the compiler instruction | 4 | # which CPUs we support in the kernel image, and the compiler instruction |
9 | # optimiser behaviour. | 5 | # optimiser behaviour. |
diff --git a/arch/arm/mm/Makefile b/arch/arm/mm/Makefile index 827e238e5d4..e8d34a80851 100644 --- a/arch/arm/mm/Makefile +++ b/arch/arm/mm/Makefile | |||
@@ -27,6 +27,9 @@ obj-$(CONFIG_CPU_ABRT_EV5TJ) += abort-ev5tj.o | |||
27 | obj-$(CONFIG_CPU_ABRT_EV6) += abort-ev6.o | 27 | obj-$(CONFIG_CPU_ABRT_EV6) += abort-ev6.o |
28 | obj-$(CONFIG_CPU_ABRT_EV7) += abort-ev7.o | 28 | obj-$(CONFIG_CPU_ABRT_EV7) += abort-ev7.o |
29 | 29 | ||
30 | AFLAGS_abort-ev6.o :=-Wa,-march=armv6k | ||
31 | AFLAGS_abort-ev7.o :=-Wa,-march=armv7-a | ||
32 | |||
30 | obj-$(CONFIG_CPU_PABRT_LEGACY) += pabort-legacy.o | 33 | obj-$(CONFIG_CPU_PABRT_LEGACY) += pabort-legacy.o |
31 | obj-$(CONFIG_CPU_PABRT_V6) += pabort-v6.o | 34 | obj-$(CONFIG_CPU_PABRT_V6) += pabort-v6.o |
32 | obj-$(CONFIG_CPU_PABRT_V7) += pabort-v7.o | 35 | obj-$(CONFIG_CPU_PABRT_V7) += pabort-v7.o |
@@ -39,6 +42,9 @@ obj-$(CONFIG_CPU_CACHE_V6) += cache-v6.o | |||
39 | obj-$(CONFIG_CPU_CACHE_V7) += cache-v7.o | 42 | obj-$(CONFIG_CPU_CACHE_V7) += cache-v7.o |
40 | obj-$(CONFIG_CPU_CACHE_FA) += cache-fa.o | 43 | obj-$(CONFIG_CPU_CACHE_FA) += cache-fa.o |
41 | 44 | ||
45 | AFLAGS_cache-v6.o :=-Wa,-march=armv6 | ||
46 | AFLAGS_cache-v7.o :=-Wa,-march=armv7-a | ||
47 | |||
42 | obj-$(CONFIG_CPU_COPY_V3) += copypage-v3.o | 48 | obj-$(CONFIG_CPU_COPY_V3) += copypage-v3.o |
43 | obj-$(CONFIG_CPU_COPY_V4WT) += copypage-v4wt.o | 49 | obj-$(CONFIG_CPU_COPY_V4WT) += copypage-v4wt.o |
44 | obj-$(CONFIG_CPU_COPY_V4WB) += copypage-v4wb.o | 50 | obj-$(CONFIG_CPU_COPY_V4WB) += copypage-v4wb.o |
@@ -58,6 +64,9 @@ obj-$(CONFIG_CPU_TLB_V6) += tlb-v6.o | |||
58 | obj-$(CONFIG_CPU_TLB_V7) += tlb-v7.o | 64 | obj-$(CONFIG_CPU_TLB_V7) += tlb-v7.o |
59 | obj-$(CONFIG_CPU_TLB_FA) += tlb-fa.o | 65 | obj-$(CONFIG_CPU_TLB_FA) += tlb-fa.o |
60 | 66 | ||
67 | AFLAGS_tlb-v6.o :=-Wa,-march=armv6 | ||
68 | AFLAGS_tlb-v7.o :=-Wa,-march=armv7-a | ||
69 | |||
61 | obj-$(CONFIG_CPU_ARM610) += proc-arm6_7.o | 70 | obj-$(CONFIG_CPU_ARM610) += proc-arm6_7.o |
62 | obj-$(CONFIG_CPU_ARM710) += proc-arm6_7.o | 71 | obj-$(CONFIG_CPU_ARM710) += proc-arm6_7.o |
63 | obj-$(CONFIG_CPU_ARM7TDMI) += proc-arm7tdmi.o | 72 | obj-$(CONFIG_CPU_ARM7TDMI) += proc-arm7tdmi.o |
@@ -84,6 +93,9 @@ obj-$(CONFIG_CPU_FEROCEON) += proc-feroceon.o | |||
84 | obj-$(CONFIG_CPU_V6) += proc-v6.o | 93 | obj-$(CONFIG_CPU_V6) += proc-v6.o |
85 | obj-$(CONFIG_CPU_V7) += proc-v7.o | 94 | obj-$(CONFIG_CPU_V7) += proc-v7.o |
86 | 95 | ||
96 | AFLAGS_proc-v6.o :=-Wa,-march=armv6 | ||
97 | AFLAGS_proc-v7.o :=-Wa,-march=armv7-a | ||
98 | |||
87 | obj-$(CONFIG_CACHE_FEROCEON_L2) += cache-feroceon-l2.o | 99 | obj-$(CONFIG_CACHE_FEROCEON_L2) += cache-feroceon-l2.o |
88 | obj-$(CONFIG_CACHE_L2X0) += cache-l2x0.o | 100 | obj-$(CONFIG_CACHE_L2X0) += cache-l2x0.o |
89 | obj-$(CONFIG_CACHE_XSC3L2) += cache-xsc3l2.o | 101 | obj-$(CONFIG_CACHE_XSC3L2) += cache-xsc3l2.o |
diff --git a/arch/arm/mm/cache-xsc3l2.c b/arch/arm/mm/cache-xsc3l2.c index 5d180cb0bd9..c3154928bcc 100644 --- a/arch/arm/mm/cache-xsc3l2.c +++ b/arch/arm/mm/cache-xsc3l2.c | |||
@@ -221,15 +221,14 @@ static int __init xsc3_l2_init(void) | |||
221 | if (!cpu_is_xsc3() || !xsc3_l2_present()) | 221 | if (!cpu_is_xsc3() || !xsc3_l2_present()) |
222 | return 0; | 222 | return 0; |
223 | 223 | ||
224 | if (!(get_cr() & CR_L2)) { | 224 | if (get_cr() & CR_L2) { |
225 | pr_info("XScale3 L2 cache enabled.\n"); | 225 | pr_info("XScale3 L2 cache enabled.\n"); |
226 | adjust_cr(CR_L2, CR_L2); | ||
227 | xsc3_l2_inv_all(); | 226 | xsc3_l2_inv_all(); |
228 | } | ||
229 | 227 | ||
230 | outer_cache.inv_range = xsc3_l2_inv_range; | 228 | outer_cache.inv_range = xsc3_l2_inv_range; |
231 | outer_cache.clean_range = xsc3_l2_clean_range; | 229 | outer_cache.clean_range = xsc3_l2_clean_range; |
232 | outer_cache.flush_range = xsc3_l2_flush_range; | 230 | outer_cache.flush_range = xsc3_l2_flush_range; |
231 | } | ||
233 | 232 | ||
234 | return 0; | 233 | return 0; |
235 | } | 234 | } |
diff --git a/arch/arm/mm/copypage-v6.c b/arch/arm/mm/copypage-v6.c index 841f355319b..0fa1319273d 100644 --- a/arch/arm/mm/copypage-v6.c +++ b/arch/arm/mm/copypage-v6.c | |||
@@ -48,7 +48,7 @@ static void v6_copy_user_highpage_nonaliasing(struct page *to, | |||
48 | */ | 48 | */ |
49 | if (page_address(to) != NULL) | 49 | if (page_address(to) != NULL) |
50 | #endif | 50 | #endif |
51 | __cpuc_flush_dcache_page(kto); | 51 | __cpuc_flush_dcache_area(kto, PAGE_SIZE); |
52 | kunmap_atomic(kto, KM_USER1); | 52 | kunmap_atomic(kto, KM_USER1); |
53 | kunmap_atomic(kfrom, KM_USER0); | 53 | kunmap_atomic(kfrom, KM_USER0); |
54 | } | 54 | } |
diff --git a/arch/arm/mm/fault-armv.c b/arch/arm/mm/fault-armv.c index 72960229195..56ee15321b0 100644 --- a/arch/arm/mm/fault-armv.c +++ b/arch/arm/mm/fault-armv.c | |||
@@ -207,9 +207,8 @@ void __init check_writebuffer_bugs(void) | |||
207 | page = alloc_page(GFP_KERNEL); | 207 | page = alloc_page(GFP_KERNEL); |
208 | if (page) { | 208 | if (page) { |
209 | unsigned long *p1, *p2; | 209 | unsigned long *p1, *p2; |
210 | pgprot_t prot = __pgprot(L_PTE_PRESENT|L_PTE_YOUNG| | 210 | pgprot_t prot = __pgprot_modify(PAGE_KERNEL, |
211 | L_PTE_DIRTY|L_PTE_WRITE| | 211 | L_PTE_MT_MASK, L_PTE_MT_BUFFERABLE); |
212 | L_PTE_MT_BUFFERABLE); | ||
213 | 212 | ||
214 | p1 = vmap(&page, 1, VM_IOREMAP, prot); | 213 | p1 = vmap(&page, 1, VM_IOREMAP, prot); |
215 | p2 = vmap(&page, 1, VM_IOREMAP, prot); | 214 | p2 = vmap(&page, 1, VM_IOREMAP, prot); |
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index 52c40d15567..a04ffbbbe25 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c | |||
@@ -616,7 +616,7 @@ void __init mem_init(void) | |||
616 | "%dK data, %dK init, %luK highmem)\n", | 616 | "%dK data, %dK init, %luK highmem)\n", |
617 | nr_free_pages() << (PAGE_SHIFT-10), codesize >> 10, | 617 | nr_free_pages() << (PAGE_SHIFT-10), codesize >> 10, |
618 | datasize >> 10, initsize >> 10, | 618 | datasize >> 10, initsize >> 10, |
619 | (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))); | 619 | totalhigh_pages << (PAGE_SHIFT-10)); |
620 | 620 | ||
621 | if (PAGE_SIZE >= 16384 && num_physpages <= 128) { | 621 | if (PAGE_SIZE >= 16384 && num_physpages <= 128) { |
622 | extern int sysctl_overcommit_memory; | 622 | extern int sysctl_overcommit_memory; |
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 8c7fbd19a4b..1708da82da9 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c | |||
@@ -453,8 +453,7 @@ static void __init build_mem_type_table(void) | |||
453 | 453 | ||
454 | pgprot_user = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | user_pgprot); | 454 | pgprot_user = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | user_pgprot); |
455 | pgprot_kernel = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | | 455 | pgprot_kernel = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | |
456 | L_PTE_DIRTY | L_PTE_WRITE | | 456 | L_PTE_DIRTY | L_PTE_WRITE | kern_pgprot); |
457 | L_PTE_EXEC | kern_pgprot); | ||
458 | 457 | ||
459 | mem_types[MT_LOW_VECTORS].prot_l1 |= ecc_mask; | 458 | mem_types[MT_LOW_VECTORS].prot_l1 |= ecc_mask; |
460 | mem_types[MT_HIGH_VECTORS].prot_l1 |= ecc_mask; | 459 | mem_types[MT_HIGH_VECTORS].prot_l1 |= ecc_mask; |
diff --git a/arch/arm/mm/proc-xsc3.S b/arch/arm/mm/proc-xsc3.S index 96456f54879..8e4f6dca899 100644 --- a/arch/arm/mm/proc-xsc3.S +++ b/arch/arm/mm/proc-xsc3.S | |||
@@ -407,6 +407,13 @@ __xsc3_setup: | |||
407 | 407 | ||
408 | adr r5, xsc3_crval | 408 | adr r5, xsc3_crval |
409 | ldmia r5, {r5, r6} | 409 | ldmia r5, {r5, r6} |
410 | |||
411 | #ifdef CONFIG_CACHE_XSC3L2 | ||
412 | mrc p15, 1, r0, c0, c0, 1 @ get L2 present information | ||
413 | ands r0, r0, #0xf8 | ||
414 | orrne r6, r6, #(1 << 26) @ enable L2 if present | ||
415 | #endif | ||
416 | |||
410 | mrc p15, 0, r0, c1, c0, 0 @ get control register | 417 | mrc p15, 0, r0, c1, c0, 0 @ get control register |
411 | bic r0, r0, r5 @ ..V. ..R. .... ..A. | 418 | bic r0, r0, r5 @ ..V. ..R. .... ..A. |
412 | orr r0, r0, r6 @ ..VI Z..S .... .C.M (mmu) | 419 | orr r0, r0, r6 @ ..VI Z..S .... .C.M (mmu) |
diff --git a/arch/arm/mm/tlb-v7.S b/arch/arm/mm/tlb-v7.S index a26a605b73b..0cb1848bd87 100644 --- a/arch/arm/mm/tlb-v7.S +++ b/arch/arm/mm/tlb-v7.S | |||
@@ -40,7 +40,6 @@ ENTRY(v7wbi_flush_user_tlb_range) | |||
40 | asid r3, r3 @ mask ASID | 40 | asid r3, r3 @ mask ASID |
41 | orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA | 41 | orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA |
42 | mov r1, r1, lsl #PAGE_SHIFT | 42 | mov r1, r1, lsl #PAGE_SHIFT |
43 | vma_vm_flags r2, r2 @ get vma->vm_flags | ||
44 | 1: | 43 | 1: |
45 | #ifdef CONFIG_SMP | 44 | #ifdef CONFIG_SMP |
46 | mcr p15, 0, r0, c8, c3, 1 @ TLB invalidate U MVA (shareable) | 45 | mcr p15, 0, r0, c8, c3, 1 @ TLB invalidate U MVA (shareable) |
diff --git a/arch/arm/nwfpe/Makefile b/arch/arm/nwfpe/Makefile index b29178c0414..deb3a82ddbd 100644 --- a/arch/arm/nwfpe/Makefile +++ b/arch/arm/nwfpe/Makefile | |||
@@ -6,7 +6,7 @@ obj-$(CONFIG_FPE_NWFPE) += nwfpe.o | |||
6 | 6 | ||
7 | nwfpe-y += fpa11.o fpa11_cpdo.o fpa11_cpdt.o \ | 7 | nwfpe-y += fpa11.o fpa11_cpdo.o fpa11_cpdt.o \ |
8 | fpa11_cprt.o fpmodule.o fpopcode.o \ | 8 | fpa11_cprt.o fpmodule.o fpopcode.o \ |
9 | softfloat.o single_cpdo.o double_cpdo.o | 9 | softfloat.o single_cpdo.o double_cpdo.o \ |
10 | entry.o | ||
10 | 11 | ||
11 | nwfpe-$(CONFIG_FPE_NWFPE_XP) += extended_cpdo.o | 12 | nwfpe-$(CONFIG_FPE_NWFPE_XP) += extended_cpdo.o |
12 | nwfpe-$(CONFIG_CPU_32) += entry.o | ||
diff --git a/arch/arm/oprofile/op_model_v7.c b/arch/arm/oprofile/op_model_v7.c index f20295f14ad..2088a6c0cc0 100644 --- a/arch/arm/oprofile/op_model_v7.c +++ b/arch/arm/oprofile/op_model_v7.c | |||
@@ -191,12 +191,8 @@ int armv7_setup_pmnc(void) | |||
191 | return -EBUSY; | 191 | return -EBUSY; |
192 | } | 192 | } |
193 | 193 | ||
194 | /* | 194 | /* Initialize & Reset PMNC: C bit and P bit */ |
195 | * Initialize & Reset PMNC: C bit, D bit and P bit. | 195 | armv7_pmnc_write(PMNC_P | PMNC_C); |
196 | * Note: Using a slower count for CCNT (D bit: divide by 64) results | ||
197 | * in a more stable system | ||
198 | */ | ||
199 | armv7_pmnc_write(PMNC_P | PMNC_C | PMNC_D); | ||
200 | 196 | ||
201 | 197 | ||
202 | for (cnt = CCNT; cnt < CNTMAX; cnt++) { | 198 | for (cnt = CCNT; cnt < CNTMAX; cnt++) { |
diff --git a/arch/arm/plat-mxc/include/mach/iomux-mx25.h b/arch/arm/plat-mxc/include/mach/iomux-mx25.h index 810c47f56e7..9af494f0ab3 100644 --- a/arch/arm/plat-mxc/include/mach/iomux-mx25.h +++ b/arch/arm/plat-mxc/include/mach/iomux-mx25.h | |||
@@ -58,19 +58,19 @@ | |||
58 | 58 | ||
59 | #define MX25_PAD_A18__A18 IOMUX_PAD(0x23c, 0x020, 0x10, 0, 0, NO_PAD_CTRL) | 59 | #define MX25_PAD_A18__A18 IOMUX_PAD(0x23c, 0x020, 0x10, 0, 0, NO_PAD_CTRL) |
60 | #define MX25_PAD_A18__GPIO_2_4 IOMUX_PAD(0x23c, 0x020, 0x15, 0, 0, NO_PAD_CTRL) | 60 | #define MX25_PAD_A18__GPIO_2_4 IOMUX_PAD(0x23c, 0x020, 0x15, 0, 0, NO_PAD_CTRL) |
61 | #define MX25_PAD_A18__FEC_COL IOMUX_PAD(0x23c, 0x020, 0x17, 0x504, 0, NO_PAD_CTL) | 61 | #define MX25_PAD_A18__FEC_COL IOMUX_PAD(0x23c, 0x020, 0x17, 0x504, 0, NO_PAD_CTRL) |
62 | 62 | ||
63 | #define MX25_PAD_A19__A19 IOMUX_PAD(0x240, 0x024, 0x10, 0, 0, NO_PAD_CTRL) | 63 | #define MX25_PAD_A19__A19 IOMUX_PAD(0x240, 0x024, 0x10, 0, 0, NO_PAD_CTRL) |
64 | #define MX25_PAD_A19__FEC_RX_ER IOMUX_PAD(0x240, 0x024, 0x17, 0x518, 0, NO_PAD_CTL) | 64 | #define MX25_PAD_A19__FEC_RX_ER IOMUX_PAD(0x240, 0x024, 0x17, 0x518, 0, NO_PAD_CTRL) |
65 | #define MX25_PAD_A19__GPIO_2_5 IOMUX_PAD(0x240, 0x024, 0x15, 0, 0, NO_PAD_CTRL) | 65 | #define MX25_PAD_A19__GPIO_2_5 IOMUX_PAD(0x240, 0x024, 0x15, 0, 0, NO_PAD_CTRL) |
66 | 66 | ||
67 | #define MX25_PAD_A20__A20 IOMUX_PAD(0x244, 0x028, 0x10, 0, 0, NO_PAD_CTRL) | 67 | #define MX25_PAD_A20__A20 IOMUX_PAD(0x244, 0x028, 0x10, 0, 0, NO_PAD_CTRL) |
68 | #define MX25_PAD_A20__GPIO_2_6 IOMUX_PAD(0x244, 0x028, 0x15, 0, 0, NO_PAD_CTRL) | 68 | #define MX25_PAD_A20__GPIO_2_6 IOMUX_PAD(0x244, 0x028, 0x15, 0, 0, NO_PAD_CTRL) |
69 | #define MX25_PAD_A20__FEC_RDATA2 IOMUX_PAD(0x244, 0x028, 0x17, 0x50c, 0, NO_PAD_CTL) | 69 | #define MX25_PAD_A20__FEC_RDATA2 IOMUX_PAD(0x244, 0x028, 0x17, 0x50c, 0, NO_PAD_CTRL) |
70 | 70 | ||
71 | #define MX25_PAD_A21__A21 IOMUX_PAD(0x248, 0x02c, 0x10, 0, 0, NO_PAD_CTRL) | 71 | #define MX25_PAD_A21__A21 IOMUX_PAD(0x248, 0x02c, 0x10, 0, 0, NO_PAD_CTRL) |
72 | #define MX25_PAD_A21__GPIO_2_7 IOMUX_PAD(0x248, 0x02c, 0x15, 0, 0, NO_PAD_CTRL) | 72 | #define MX25_PAD_A21__GPIO_2_7 IOMUX_PAD(0x248, 0x02c, 0x15, 0, 0, NO_PAD_CTRL) |
73 | #define MX25_PAD_A21__FEC_RDATA3 IOMUX_PAD(0x248, 0x02c, 0x17, 0x510, 0, NO_PAD_CTL) | 73 | #define MX25_PAD_A21__FEC_RDATA3 IOMUX_PAD(0x248, 0x02c, 0x17, 0x510, 0, NO_PAD_CTRL) |
74 | 74 | ||
75 | #define MX25_PAD_A22__A22 IOMUX_PAD(0x000, 0x030, 0x10, 0, 0, NO_PAD_CTRL) | 75 | #define MX25_PAD_A22__A22 IOMUX_PAD(0x000, 0x030, 0x10, 0, 0, NO_PAD_CTRL) |
76 | #define MX25_PAD_A22__GPIO_2_8 IOMUX_PAD(0x000, 0x030, 0x15, 0, 0, NO_PAD_CTRL) | 76 | #define MX25_PAD_A22__GPIO_2_8 IOMUX_PAD(0x000, 0x030, 0x15, 0, 0, NO_PAD_CTRL) |
@@ -80,11 +80,11 @@ | |||
80 | 80 | ||
81 | #define MX25_PAD_A24__A24 IOMUX_PAD(0x250, 0x038, 0x10, 0, 0, NO_PAD_CTRL) | 81 | #define MX25_PAD_A24__A24 IOMUX_PAD(0x250, 0x038, 0x10, 0, 0, NO_PAD_CTRL) |
82 | #define MX25_PAD_A24__GPIO_2_10 IOMUX_PAD(0x250, 0x038, 0x15, 0, 0, NO_PAD_CTRL) | 82 | #define MX25_PAD_A24__GPIO_2_10 IOMUX_PAD(0x250, 0x038, 0x15, 0, 0, NO_PAD_CTRL) |
83 | #define MX25_PAD_A24__FEC_RX_CLK IOMUX_PAD(0x250, 0x038, 0x17, 0x514, 0, NO_PAD_CTL) | 83 | #define MX25_PAD_A24__FEC_RX_CLK IOMUX_PAD(0x250, 0x038, 0x17, 0x514, 0, NO_PAD_CTRL) |
84 | 84 | ||
85 | #define MX25_PAD_A25__A25 IOMUX_PAD(0x254, 0x03c, 0x10, 0, 0, NO_PAD_CTRL) | 85 | #define MX25_PAD_A25__A25 IOMUX_PAD(0x254, 0x03c, 0x10, 0, 0, NO_PAD_CTRL) |
86 | #define MX25_PAD_A25__GPIO_2_11 IOMUX_PAD(0x254, 0x03c, 0x15, 0, 0, NO_PAD_CTRL) | 86 | #define MX25_PAD_A25__GPIO_2_11 IOMUX_PAD(0x254, 0x03c, 0x15, 0, 0, NO_PAD_CTRL) |
87 | #define MX25_PAD_A25__FEC_CRS IOMUX_PAD(0x254, 0x03c, 0x17, 0x508, 0, NO_PAD_CTL) | 87 | #define MX25_PAD_A25__FEC_CRS IOMUX_PAD(0x254, 0x03c, 0x17, 0x508, 0, NO_PAD_CTRL) |
88 | 88 | ||
89 | #define MX25_PAD_EB0__EB0 IOMUX_PAD(0x258, 0x040, 0x10, 0, 0, NO_PAD_CTRL) | 89 | #define MX25_PAD_EB0__EB0 IOMUX_PAD(0x258, 0x040, 0x10, 0, 0, NO_PAD_CTRL) |
90 | #define MX25_PAD_EB0__AUD4_TXD IOMUX_PAD(0x258, 0x040, 0x14, 0x464, 0, NO_PAD_CTRL) | 90 | #define MX25_PAD_EB0__AUD4_TXD IOMUX_PAD(0x258, 0x040, 0x14, 0x464, 0, NO_PAD_CTRL) |
@@ -112,7 +112,7 @@ | |||
112 | #define MX25_PAD_CS5__UART5_RTS IOMUX_PAD(0x268, 0x058, 0x13, 0x574, 0, NO_PAD_CTRL) | 112 | #define MX25_PAD_CS5__UART5_RTS IOMUX_PAD(0x268, 0x058, 0x13, 0x574, 0, NO_PAD_CTRL) |
113 | #define MX25_PAD_CS5__GPIO_3_21 IOMUX_PAD(0x268, 0x058, 0x15, 0, 0, NO_PAD_CTRL) | 113 | #define MX25_PAD_CS5__GPIO_3_21 IOMUX_PAD(0x268, 0x058, 0x15, 0, 0, NO_PAD_CTRL) |
114 | 114 | ||
115 | #define MX25_PAD_NF_CE0__NF_CE0 IOMUX_PAD(0x26c, 0x05c, 0x10, 0, 0, NO_PAD_CTL) | 115 | #define MX25_PAD_NF_CE0__NF_CE0 IOMUX_PAD(0x26c, 0x05c, 0x10, 0, 0, NO_PAD_CTRL) |
116 | #define MX25_PAD_NF_CE0__GPIO_3_22 IOMUX_PAD(0x26c, 0x05c, 0x15, 0, 0, NO_PAD_CTRL) | 116 | #define MX25_PAD_NF_CE0__GPIO_3_22 IOMUX_PAD(0x26c, 0x05c, 0x15, 0, 0, NO_PAD_CTRL) |
117 | 117 | ||
118 | #define MX25_PAD_ECB__ECB IOMUX_PAD(0x270, 0x060, 0x10, 0, 0, NO_PAD_CTRL) | 118 | #define MX25_PAD_ECB__ECB IOMUX_PAD(0x270, 0x060, 0x10, 0, 0, NO_PAD_CTRL) |
@@ -229,28 +229,28 @@ | |||
229 | #define MX25_PAD_LD7__GPIO_1_21 IOMUX_PAD(0x2dc, 0x0e4, 0x15, 0, 0, NO_PAD_CTRL) | 229 | #define MX25_PAD_LD7__GPIO_1_21 IOMUX_PAD(0x2dc, 0x0e4, 0x15, 0, 0, NO_PAD_CTRL) |
230 | 230 | ||
231 | #define MX25_PAD_LD8__LD8 IOMUX_PAD(0x2e0, 0x0e8, 0x10, 0, 0, NO_PAD_CTRL) | 231 | #define MX25_PAD_LD8__LD8 IOMUX_PAD(0x2e0, 0x0e8, 0x10, 0, 0, NO_PAD_CTRL) |
232 | #define MX25_PAD_LD8__FEC_TX_ERR IOMUX_PAD(0x2e0, 0x0e8, 0x15, 0, 0, NO_PAD_CTL) | 232 | #define MX25_PAD_LD8__FEC_TX_ERR IOMUX_PAD(0x2e0, 0x0e8, 0x15, 0, 0, NO_PAD_CTRL) |
233 | 233 | ||
234 | #define MX25_PAD_LD9__LD9 IOMUX_PAD(0x2e4, 0x0ec, 0x10, 0, 0, NO_PAD_CTRL) | 234 | #define MX25_PAD_LD9__LD9 IOMUX_PAD(0x2e4, 0x0ec, 0x10, 0, 0, NO_PAD_CTRL) |
235 | #define MX25_PAD_LD9__FEC_COL IOMUX_PAD(0x2e4, 0x0ec, 0x15, 0x504, 1, NO_PAD_CTL) | 235 | #define MX25_PAD_LD9__FEC_COL IOMUX_PAD(0x2e4, 0x0ec, 0x15, 0x504, 1, NO_PAD_CTRL) |
236 | 236 | ||
237 | #define MX25_PAD_LD10__LD10 IOMUX_PAD(0x2e8, 0x0f0, 0x10, 0, 0, NO_PAD_CTRL) | 237 | #define MX25_PAD_LD10__LD10 IOMUX_PAD(0x2e8, 0x0f0, 0x10, 0, 0, NO_PAD_CTRL) |
238 | #define MX25_PAD_LD10__FEC_RX_ER IOMUX_PAD(0x2e8, 0x0f0, 0x15, 0x518, 1, NO_PAD_CTL) | 238 | #define MX25_PAD_LD10__FEC_RX_ER IOMUX_PAD(0x2e8, 0x0f0, 0x15, 0x518, 1, NO_PAD_CTRL) |
239 | 239 | ||
240 | #define MX25_PAD_LD11__LD11 IOMUX_PAD(0x2ec, 0x0f4, 0x10, 0, 0, NO_PAD_CTRL) | 240 | #define MX25_PAD_LD11__LD11 IOMUX_PAD(0x2ec, 0x0f4, 0x10, 0, 0, NO_PAD_CTRL) |
241 | #define MX25_PAD_LD11__FEC_RDATA2 IOMUX_PAD(0x2ec, 0x0f4, 0x15, 0x50c, 1, NO_PAD_CTL) | 241 | #define MX25_PAD_LD11__FEC_RDATA2 IOMUX_PAD(0x2ec, 0x0f4, 0x15, 0x50c, 1, NO_PAD_CTRL) |
242 | 242 | ||
243 | #define MX25_PAD_LD12__LD12 IOMUX_PAD(0x2f0, 0x0f8, 0x10, 0, 0, NO_PAD_CTRL) | 243 | #define MX25_PAD_LD12__LD12 IOMUX_PAD(0x2f0, 0x0f8, 0x10, 0, 0, NO_PAD_CTRL) |
244 | #define MX25_PAD_LD12__FEC_RDATA3 IOMUX_PAD(0x2f0, 0x0f8, 0x15, 0x510, 1, NO_PAD_CTL) | 244 | #define MX25_PAD_LD12__FEC_RDATA3 IOMUX_PAD(0x2f0, 0x0f8, 0x15, 0x510, 1, NO_PAD_CTRL) |
245 | 245 | ||
246 | #define MX25_PAD_LD13__LD13 IOMUX_PAD(0x2f4, 0x0fc, 0x10, 0, 0, NO_PAD_CTRL) | 246 | #define MX25_PAD_LD13__LD13 IOMUX_PAD(0x2f4, 0x0fc, 0x10, 0, 0, NO_PAD_CTRL) |
247 | #define MX25_PAD_LD13__FEC_TDATA2 IOMUX_PAD(0x2f4, 0x0fc, 0x15, 0, 0, NO_PAD_CTL) | 247 | #define MX25_PAD_LD13__FEC_TDATA2 IOMUX_PAD(0x2f4, 0x0fc, 0x15, 0, 0, NO_PAD_CTRL) |
248 | 248 | ||
249 | #define MX25_PAD_LD14__LD14 IOMUX_PAD(0x2f8, 0x100, 0x10, 0, 0, NO_PAD_CTRL) | 249 | #define MX25_PAD_LD14__LD14 IOMUX_PAD(0x2f8, 0x100, 0x10, 0, 0, NO_PAD_CTRL) |
250 | #define MX25_PAD_LD14__FEC_TDATA3 IOMUX_PAD(0x2f8, 0x100, 0x15, 0, 0, NO_PAD_CTL) | 250 | #define MX25_PAD_LD14__FEC_TDATA3 IOMUX_PAD(0x2f8, 0x100, 0x15, 0, 0, NO_PAD_CTRL) |
251 | 251 | ||
252 | #define MX25_PAD_LD15__LD15 IOMUX_PAD(0x2fc, 0x104, 0x10, 0, 0, NO_PAD_CTRL) | 252 | #define MX25_PAD_LD15__LD15 IOMUX_PAD(0x2fc, 0x104, 0x10, 0, 0, NO_PAD_CTRL) |
253 | #define MX25_PAD_LD15__FEC_RX_CLK IOMUX_PAD(0x2fc, 0x104, 0x15, 0x514, 1, NO_PAD_CTL) | 253 | #define MX25_PAD_LD15__FEC_RX_CLK IOMUX_PAD(0x2fc, 0x104, 0x15, 0x514, 1, NO_PAD_CTRL) |
254 | 254 | ||
255 | #define MX25_PAD_HSYNC__HSYNC IOMUX_PAD(0x300, 0x108, 0x10, 0, 0, NO_PAD_CTRL) | 255 | #define MX25_PAD_HSYNC__HSYNC IOMUX_PAD(0x300, 0x108, 0x10, 0, 0, NO_PAD_CTRL) |
256 | #define MX25_PAD_HSYNC__GPIO_1_22 IOMUX_PAD(0x300, 0x108, 0x15, 0, 0, NO_PAD_CTRL) | 256 | #define MX25_PAD_HSYNC__GPIO_1_22 IOMUX_PAD(0x300, 0x108, 0x15, 0, 0, NO_PAD_CTRL) |
@@ -265,7 +265,7 @@ | |||
265 | #define MX25_PAD_OE_ACD__GPIO_1_25 IOMUX_PAD(0x30c, 0x114, 0x15, 0, 0, NO_PAD_CTRL) | 265 | #define MX25_PAD_OE_ACD__GPIO_1_25 IOMUX_PAD(0x30c, 0x114, 0x15, 0, 0, NO_PAD_CTRL) |
266 | 266 | ||
267 | #define MX25_PAD_CONTRAST__CONTRAST IOMUX_PAD(0x310, 0x118, 0x10, 0, 0, NO_PAD_CTRL) | 267 | #define MX25_PAD_CONTRAST__CONTRAST IOMUX_PAD(0x310, 0x118, 0x10, 0, 0, NO_PAD_CTRL) |
268 | #define MX25_PAD_CONTRAST__FEC_CRS IOMUX_PAD(0x310, 0x118, 0x15, 0x508, 1, NO_PAD_CTL) | 268 | #define MX25_PAD_CONTRAST__FEC_CRS IOMUX_PAD(0x310, 0x118, 0x15, 0x508, 1, NO_PAD_CTRL) |
269 | 269 | ||
270 | #define MX25_PAD_PWM__PWM IOMUX_PAD(0x314, 0x11c, 0x10, 0, 0, NO_PAD_CTRL) | 270 | #define MX25_PAD_PWM__PWM IOMUX_PAD(0x314, 0x11c, 0x10, 0, 0, NO_PAD_CTRL) |
271 | #define MX25_PAD_PWM__GPIO_1_26 IOMUX_PAD(0x314, 0x11c, 0x15, 0, 0, NO_PAD_CTRL) | 271 | #define MX25_PAD_PWM__GPIO_1_26 IOMUX_PAD(0x314, 0x11c, 0x15, 0, 0, NO_PAD_CTRL) |
@@ -354,19 +354,19 @@ | |||
354 | #define MX25_PAD_UART2_TXD__GPIO_4_27 IOMUX_PAD(0x37c, 0x184, 0x15, 0, 0, NO_PAD_CTRL) | 354 | #define MX25_PAD_UART2_TXD__GPIO_4_27 IOMUX_PAD(0x37c, 0x184, 0x15, 0, 0, NO_PAD_CTRL) |
355 | 355 | ||
356 | #define MX25_PAD_UART2_RTS__UART2_RTS IOMUX_PAD(0x380, 0x188, 0x10, 0, 0, NO_PAD_CTRL) | 356 | #define MX25_PAD_UART2_RTS__UART2_RTS IOMUX_PAD(0x380, 0x188, 0x10, 0, 0, NO_PAD_CTRL) |
357 | #define MX25_PAD_UART2_RTS__FEC_COL IOMUX_PAD(0x380, 0x188, 0x12, 0x504, 2, NO_PAD_CTL) | 357 | #define MX25_PAD_UART2_RTS__FEC_COL IOMUX_PAD(0x380, 0x188, 0x12, 0x504, 2, NO_PAD_CTRL) |
358 | #define MX25_PAD_UART2_RTS__GPIO_4_28 IOMUX_PAD(0x380, 0x188, 0x15, 0, 0, NO_PAD_CTRL) | 358 | #define MX25_PAD_UART2_RTS__GPIO_4_28 IOMUX_PAD(0x380, 0x188, 0x15, 0, 0, NO_PAD_CTRL) |
359 | 359 | ||
360 | #define MX25_PAD_UART2_CTS__FEC_RX_ER IOMUX_PAD(0x384, 0x18c, 0x12, 0x518, 2, NO_PAD_CTL) | 360 | #define MX25_PAD_UART2_CTS__FEC_RX_ER IOMUX_PAD(0x384, 0x18c, 0x12, 0x518, 2, NO_PAD_CTRL) |
361 | #define MX25_PAD_UART2_CTS__UART2_CTS IOMUX_PAD(0x384, 0x18c, 0x10, 0, 0, NO_PAD_CTRL) | 361 | #define MX25_PAD_UART2_CTS__UART2_CTS IOMUX_PAD(0x384, 0x18c, 0x10, 0, 0, NO_PAD_CTRL) |
362 | #define MX25_PAD_UART2_CTS__GPIO_4_29 IOMUX_PAD(0x384, 0x18c, 0x15, 0, 0, NO_PAD_CTRL) | 362 | #define MX25_PAD_UART2_CTS__GPIO_4_29 IOMUX_PAD(0x384, 0x18c, 0x15, 0, 0, NO_PAD_CTRL) |
363 | 363 | ||
364 | #define MX25_PAD_SD1_CMD__SD1_CMD IOMUX_PAD(0x388, 0x190, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) | 364 | #define MX25_PAD_SD1_CMD__SD1_CMD IOMUX_PAD(0x388, 0x190, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) |
365 | #define MX25_PAD_SD1_CMD__FEC_RDATA2 IOMUX_PAD(0x388, 0x190, 0x12, 0x50c, 2, NO_PAD_CTL) | 365 | #define MX25_PAD_SD1_CMD__FEC_RDATA2 IOMUX_PAD(0x388, 0x190, 0x12, 0x50c, 2, NO_PAD_CTRL) |
366 | #define MX25_PAD_SD1_CMD__GPIO_2_23 IOMUX_PAD(0x388, 0x190, 0x15, 0, 0, NO_PAD_CTRL) | 366 | #define MX25_PAD_SD1_CMD__GPIO_2_23 IOMUX_PAD(0x388, 0x190, 0x15, 0, 0, NO_PAD_CTRL) |
367 | 367 | ||
368 | #define MX25_PAD_SD1_CLK__SD1_CLK IOMUX_PAD(0x38c, 0x194, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) | 368 | #define MX25_PAD_SD1_CLK__SD1_CLK IOMUX_PAD(0x38c, 0x194, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) |
369 | #define MX25_PAD_SD1_CLK__FEC_RDATA3 IOMUX_PAD(0x38c, 0x194, 0x12, 0x510, 2, NO_PAD_CTL) | 369 | #define MX25_PAD_SD1_CLK__FEC_RDATA3 IOMUX_PAD(0x38c, 0x194, 0x12, 0x510, 2, NO_PAD_CTRL) |
370 | #define MX25_PAD_SD1_CLK__GPIO_2_24 IOMUX_PAD(0x38c, 0x194, 0x15, 0, 0, NO_PAD_CTRL) | 370 | #define MX25_PAD_SD1_CLK__GPIO_2_24 IOMUX_PAD(0x38c, 0x194, 0x15, 0, 0, NO_PAD_CTRL) |
371 | 371 | ||
372 | #define MX25_PAD_SD1_DATA0__SD1_DATA0 IOMUX_PAD(0x390, 0x198, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) | 372 | #define MX25_PAD_SD1_DATA0__SD1_DATA0 IOMUX_PAD(0x390, 0x198, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) |
@@ -377,11 +377,11 @@ | |||
377 | #define MX25_PAD_SD1_DATA1__GPIO_2_26 IOMUX_PAD(0x394, 0x19c, 0x15, 0, 0, NO_PAD_CTRL) | 377 | #define MX25_PAD_SD1_DATA1__GPIO_2_26 IOMUX_PAD(0x394, 0x19c, 0x15, 0, 0, NO_PAD_CTRL) |
378 | 378 | ||
379 | #define MX25_PAD_SD1_DATA2__SD1_DATA2 IOMUX_PAD(0x398, 0x1a0, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) | 379 | #define MX25_PAD_SD1_DATA2__SD1_DATA2 IOMUX_PAD(0x398, 0x1a0, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) |
380 | #define MX25_PAD_SD1_DATA2__FEC_RX_CLK IOMUX_PAD(0x398, 0x1a0, 0x15, 0x514, 2, NO_PAD_CTL) | 380 | #define MX25_PAD_SD1_DATA2__FEC_RX_CLK IOMUX_PAD(0x398, 0x1a0, 0x15, 0x514, 2, NO_PAD_CTRL) |
381 | #define MX25_PAD_SD1_DATA2__GPIO_2_27 IOMUX_PAD(0x398, 0x1a0, 0x15, 0, 0, NO_PAD_CTRL) | 381 | #define MX25_PAD_SD1_DATA2__GPIO_2_27 IOMUX_PAD(0x398, 0x1a0, 0x15, 0, 0, NO_PAD_CTRL) |
382 | 382 | ||
383 | #define MX25_PAD_SD1_DATA3__SD1_DATA3 IOMUX_PAD(0x39c, 0x1a4, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) | 383 | #define MX25_PAD_SD1_DATA3__SD1_DATA3 IOMUX_PAD(0x39c, 0x1a4, 0x10, 0, 0, PAD_CTL_PUS_47K_UP) |
384 | #define MX25_PAD_SD1_DATA3__FEC_CRS IOMUX_PAD(0x39c, 0x1a4, 0x10, 0x508, 2, NO_PAD_CTL) | 384 | #define MX25_PAD_SD1_DATA3__FEC_CRS IOMUX_PAD(0x39c, 0x1a4, 0x10, 0x508, 2, NO_PAD_CTRL) |
385 | #define MX25_PAD_SD1_DATA3__GPIO_2_28 IOMUX_PAD(0x39c, 0x1a4, 0x15, 0, 0, NO_PAD_CTRL) | 385 | #define MX25_PAD_SD1_DATA3__GPIO_2_28 IOMUX_PAD(0x39c, 0x1a4, 0x15, 0, 0, NO_PAD_CTRL) |
386 | 386 | ||
387 | #define MX25_PAD_KPP_ROW0__KPP_ROW0 IOMUX_PAD(0x3a0, 0x1a8, 0x10, 0, 0, PAD_CTL_PKE) | 387 | #define MX25_PAD_KPP_ROW0__KPP_ROW0 IOMUX_PAD(0x3a0, 0x1a8, 0x10, 0, 0, PAD_CTL_PKE) |
@@ -410,7 +410,7 @@ | |||
410 | #define MX25_PAD_KPP_COL3__KPP_COL3 IOMUX_PAD(0x3bc, 0x1c4, 0x10, 0, 0, PAD_CTL_PKE | PAD_CTL_ODE) | 410 | #define MX25_PAD_KPP_COL3__KPP_COL3 IOMUX_PAD(0x3bc, 0x1c4, 0x10, 0, 0, PAD_CTL_PKE | PAD_CTL_ODE) |
411 | #define MX25_PAD_KPP_COL3__GPIO_3_4 IOMUX_PAD(0x3bc, 0x1c4, 0x15, 0, 0, NO_PAD_CTRL) | 411 | #define MX25_PAD_KPP_COL3__GPIO_3_4 IOMUX_PAD(0x3bc, 0x1c4, 0x15, 0, 0, NO_PAD_CTRL) |
412 | 412 | ||
413 | #define MX25_PAD_FEC_MDC__FEC_MDC IOMUX_PAD(0x3c0, 0x1c8, 0x10, 0, 0, NO_PAD_CTL) | 413 | #define MX25_PAD_FEC_MDC__FEC_MDC IOMUX_PAD(0x3c0, 0x1c8, 0x10, 0, 0, NO_PAD_CTRL) |
414 | #define MX25_PAD_FEC_MDC__AUD4_TXD IOMUX_PAD(0x3c0, 0x1c8, 0x12, 0x464, 1, NO_PAD_CTRL) | 414 | #define MX25_PAD_FEC_MDC__AUD4_TXD IOMUX_PAD(0x3c0, 0x1c8, 0x12, 0x464, 1, NO_PAD_CTRL) |
415 | #define MX25_PAD_FEC_MDC__GPIO_3_5 IOMUX_PAD(0x3c0, 0x1c8, 0x15, 0, 0, NO_PAD_CTRL) | 415 | #define MX25_PAD_FEC_MDC__GPIO_3_5 IOMUX_PAD(0x3c0, 0x1c8, 0x15, 0, 0, NO_PAD_CTRL) |
416 | 416 | ||
@@ -418,23 +418,23 @@ | |||
418 | #define MX25_PAD_FEC_MDIO__AUD4_RXD IOMUX_PAD(0x3c4, 0x1cc, 0x12, 0x460, 1, NO_PAD_CTRL) | 418 | #define MX25_PAD_FEC_MDIO__AUD4_RXD IOMUX_PAD(0x3c4, 0x1cc, 0x12, 0x460, 1, NO_PAD_CTRL) |
419 | #define MX25_PAD_FEC_MDIO__GPIO_3_6 IOMUX_PAD(0x3c4, 0x1cc, 0x15, 0, 0, NO_PAD_CTRL) | 419 | #define MX25_PAD_FEC_MDIO__GPIO_3_6 IOMUX_PAD(0x3c4, 0x1cc, 0x15, 0, 0, NO_PAD_CTRL) |
420 | 420 | ||
421 | #define MX25_PAD_FEC_TDATA0__FEC_TDATA0 IOMUX_PAD(0x3c8, 0x1d0, 0x10, 0, 0, NO_PAD_CTL) | 421 | #define MX25_PAD_FEC_TDATA0__FEC_TDATA0 IOMUX_PAD(0x3c8, 0x1d0, 0x10, 0, 0, NO_PAD_CTRL) |
422 | #define MX25_PAD_FEC_TDATA0__GPIO_3_7 IOMUX_PAD(0x3c8, 0x1d0, 0x15, 0, 0, NO_PAD_CTRL) | 422 | #define MX25_PAD_FEC_TDATA0__GPIO_3_7 IOMUX_PAD(0x3c8, 0x1d0, 0x15, 0, 0, NO_PAD_CTRL) |
423 | 423 | ||
424 | #define MX25_PAD_FEC_TDATA1__FEC_TDATA1 IOMUX_PAD(0x3cc, 0x1d4, 0x10, 0, 0, NO_PAD_CTL) | 424 | #define MX25_PAD_FEC_TDATA1__FEC_TDATA1 IOMUX_PAD(0x3cc, 0x1d4, 0x10, 0, 0, NO_PAD_CTRL) |
425 | #define MX25_PAD_FEC_TDATA1__AUD4_TXFS IOMUX_PAD(0x3cc, 0x1d4, 0x12, 0x474, 1, NO_PAD_CTRL) | 425 | #define MX25_PAD_FEC_TDATA1__AUD4_TXFS IOMUX_PAD(0x3cc, 0x1d4, 0x12, 0x474, 1, NO_PAD_CTRL) |
426 | #define MX25_PAD_FEC_TDATA1__GPIO_3_8 IOMUX_PAD(0x3cc, 0x1d4, 0x15, 0, 0, NO_PAD_CTRL) | 426 | #define MX25_PAD_FEC_TDATA1__GPIO_3_8 IOMUX_PAD(0x3cc, 0x1d4, 0x15, 0, 0, NO_PAD_CTRL) |
427 | 427 | ||
428 | #define MX25_PAD_FEC_TX_EN__FEC_TX_EN IOMUX_PAD(0x3d0, 0x1d8, 0x10, 0, 0, NO_PAD_CTL) | 428 | #define MX25_PAD_FEC_TX_EN__FEC_TX_EN IOMUX_PAD(0x3d0, 0x1d8, 0x10, 0, 0, NO_PAD_CTRL) |
429 | #define MX25_PAD_FEC_TX_EN__GPIO_3_9 IOMUX_PAD(0x3d0, 0x1d8, 0x15, 0, 0, NO_PAD_CTRL) | 429 | #define MX25_PAD_FEC_TX_EN__GPIO_3_9 IOMUX_PAD(0x3d0, 0x1d8, 0x15, 0, 0, NO_PAD_CTRL) |
430 | 430 | ||
431 | #define MX25_PAD_FEC_RDATA0__FEC_RDATA0 IOMUX_PAD(0x3d4, 0x1dc, 0x10, 0, 0, PAD_CTL_PUS_100K_DOWN | NO_PAD_CTL) | 431 | #define MX25_PAD_FEC_RDATA0__FEC_RDATA0 IOMUX_PAD(0x3d4, 0x1dc, 0x10, 0, 0, PAD_CTL_PUS_100K_DOWN | NO_PAD_CTRL) |
432 | #define MX25_PAD_FEC_RDATA0__GPIO_3_10 IOMUX_PAD(0x3d4, 0x1dc, 0x15, 0, 0, NO_PAD_CTRL) | 432 | #define MX25_PAD_FEC_RDATA0__GPIO_3_10 IOMUX_PAD(0x3d4, 0x1dc, 0x15, 0, 0, NO_PAD_CTRL) |
433 | 433 | ||
434 | #define MX25_PAD_FEC_RDATA1__FEC_RDATA1 IOMUX_PAD(0x3d8, 0x1e0, 0x10, 0, 0, PAD_CTL_PUS_100K_DOWN | NO_PAD_CTL) | 434 | #define MX25_PAD_FEC_RDATA1__FEC_RDATA1 IOMUX_PAD(0x3d8, 0x1e0, 0x10, 0, 0, PAD_CTL_PUS_100K_DOWN | NO_PAD_CTRL) |
435 | #define MX25_PAD_FEC_RDATA1__GPIO_3_11 IOMUX_PAD(0x3d8, 0x1e0, 0x15, 0, 0, NO_PAD_CTRL) | 435 | #define MX25_PAD_FEC_RDATA1__GPIO_3_11 IOMUX_PAD(0x3d8, 0x1e0, 0x15, 0, 0, NO_PAD_CTRL) |
436 | 436 | ||
437 | #define MX25_PAD_FEC_RX_DV__FEC_RX_DV IOMUX_PAD(0x3dc, 0x1e4, 0x10, 0, 0, PAD_CTL_PUS_100K_DOWN | NO_PAD_CTL) | 437 | #define MX25_PAD_FEC_RX_DV__FEC_RX_DV IOMUX_PAD(0x3dc, 0x1e4, 0x10, 0, 0, PAD_CTL_PUS_100K_DOWN | NO_PAD_CTRL) |
438 | #define MX25_PAD_FEC_RX_DV__CAN2_RX IOMUX_PAD(0x3dc, 0x1e4, 0x14, 0x484, 0, PAD_CTL_PUS_22K_UP) | 438 | #define MX25_PAD_FEC_RX_DV__CAN2_RX IOMUX_PAD(0x3dc, 0x1e4, 0x14, 0x484, 0, PAD_CTL_PUS_22K_UP) |
439 | #define MX25_PAD_FEC_RX_DV__GPIO_3_12 IOMUX_PAD(0x3dc, 0x1e4, 0x15, 0, 0, NO_PAD_CTRL) | 439 | #define MX25_PAD_FEC_RX_DV__GPIO_3_12 IOMUX_PAD(0x3dc, 0x1e4, 0x15, 0, 0, NO_PAD_CTRL) |
440 | 440 | ||
diff --git a/arch/arm/plat-mxc/include/mach/mx25.h b/arch/arm/plat-mxc/include/mach/mx25.h index 91e73814480..854e2dc5848 100644 --- a/arch/arm/plat-mxc/include/mach/mx25.h +++ b/arch/arm/plat-mxc/include/mach/mx25.h | |||
@@ -41,4 +41,8 @@ | |||
41 | #define UART1_BASE_ADDR 0x43f90000 | 41 | #define UART1_BASE_ADDR 0x43f90000 |
42 | #define UART2_BASE_ADDR 0x43f94000 | 42 | #define UART2_BASE_ADDR 0x43f94000 |
43 | 43 | ||
44 | #define MX25_FEC_BASE_ADDR 0x50038000 | ||
45 | |||
46 | #define MX25_INT_FEC 57 | ||
47 | |||
44 | #endif /* __MACH_MX25_H__ */ | 48 | #endif /* __MACH_MX25_H__ */ |
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index 89cafc93724..d9f8c844c38 100644 --- a/arch/arm/plat-omap/clock.c +++ b/arch/arm/plat-omap/clock.c | |||
@@ -36,10 +36,6 @@ static struct clk_functions *arch_clock; | |||
36 | * Standard clock functions defined in include/linux/clk.h | 36 | * Standard clock functions defined in include/linux/clk.h |
37 | *-------------------------------------------------------------------------*/ | 37 | *-------------------------------------------------------------------------*/ |
38 | 38 | ||
39 | /* This functions is moved to arch/arm/common/clkdev.c. For OMAP4 since | ||
40 | * clock framework is not up , it is defined here to avoid rework in | ||
41 | * every driver. Also dummy prcm reset function is added */ | ||
42 | |||
43 | int clk_enable(struct clk *clk) | 39 | int clk_enable(struct clk *clk) |
44 | { | 40 | { |
45 | unsigned long flags; | 41 | unsigned long flags; |
@@ -305,7 +301,6 @@ void clk_enable_init_clocks(void) | |||
305 | clk_enable(clkp); | 301 | clk_enable(clkp); |
306 | } | 302 | } |
307 | } | 303 | } |
308 | EXPORT_SYMBOL(clk_enable_init_clocks); | ||
309 | 304 | ||
310 | /* | 305 | /* |
311 | * Low level helpers | 306 | * Low level helpers |
@@ -334,7 +329,16 @@ void clk_init_cpufreq_table(struct cpufreq_frequency_table **table) | |||
334 | arch_clock->clk_init_cpufreq_table(table); | 329 | arch_clock->clk_init_cpufreq_table(table); |
335 | spin_unlock_irqrestore(&clockfw_lock, flags); | 330 | spin_unlock_irqrestore(&clockfw_lock, flags); |
336 | } | 331 | } |
337 | EXPORT_SYMBOL(clk_init_cpufreq_table); | 332 | |
333 | void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table) | ||
334 | { | ||
335 | unsigned long flags; | ||
336 | |||
337 | spin_lock_irqsave(&clockfw_lock, flags); | ||
338 | if (arch_clock->clk_exit_cpufreq_table) | ||
339 | arch_clock->clk_exit_cpufreq_table(table); | ||
340 | spin_unlock_irqrestore(&clockfw_lock, flags); | ||
341 | } | ||
338 | #endif | 342 | #endif |
339 | 343 | ||
340 | /*-------------------------------------------------------------------------*/ | 344 | /*-------------------------------------------------------------------------*/ |
diff --git a/arch/arm/plat-omap/cpu-omap.c b/arch/arm/plat-omap/cpu-omap.c index f8ddbdd8b07..6d3d3336005 100644 --- a/arch/arm/plat-omap/cpu-omap.c +++ b/arch/arm/plat-omap/cpu-omap.c | |||
@@ -134,6 +134,7 @@ static int __init omap_cpu_init(struct cpufreq_policy *policy) | |||
134 | 134 | ||
135 | static int omap_cpu_exit(struct cpufreq_policy *policy) | 135 | static int omap_cpu_exit(struct cpufreq_policy *policy) |
136 | { | 136 | { |
137 | clk_exit_cpufreq_table(&freq_table); | ||
137 | clk_put(mpu_clk); | 138 | clk_put(mpu_clk); |
138 | return 0; | 139 | return 0; |
139 | } | 140 | } |
diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c index 04846811d0a..d17620c50c2 100644 --- a/arch/arm/plat-omap/gpio.c +++ b/arch/arm/plat-omap/gpio.c | |||
@@ -192,6 +192,7 @@ struct gpio_bank { | |||
192 | u32 saved_risingdetect; | 192 | u32 saved_risingdetect; |
193 | #endif | 193 | #endif |
194 | u32 level_mask; | 194 | u32 level_mask; |
195 | u32 toggle_mask; | ||
195 | spinlock_t lock; | 196 | spinlock_t lock; |
196 | struct gpio_chip chip; | 197 | struct gpio_chip chip; |
197 | struct clk *dbck; | 198 | struct clk *dbck; |
@@ -749,6 +750,44 @@ static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio, | |||
749 | } | 750 | } |
750 | #endif | 751 | #endif |
751 | 752 | ||
753 | /* | ||
754 | * This only applies to chips that can't do both rising and falling edge | ||
755 | * detection at once. For all other chips, this function is a noop. | ||
756 | */ | ||
757 | static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio) | ||
758 | { | ||
759 | void __iomem *reg = bank->base; | ||
760 | u32 l = 0; | ||
761 | |||
762 | switch (bank->method) { | ||
763 | #ifdef CONFIG_ARCH_OMAP1 | ||
764 | case METHOD_MPUIO: | ||
765 | reg += OMAP_MPUIO_GPIO_INT_EDGE; | ||
766 | break; | ||
767 | #endif | ||
768 | #ifdef CONFIG_ARCH_OMAP15XX | ||
769 | case METHOD_GPIO_1510: | ||
770 | reg += OMAP1510_GPIO_INT_CONTROL; | ||
771 | break; | ||
772 | #endif | ||
773 | #if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850) | ||
774 | case METHOD_GPIO_7XX: | ||
775 | reg += OMAP7XX_GPIO_INT_CONTROL; | ||
776 | break; | ||
777 | #endif | ||
778 | default: | ||
779 | return; | ||
780 | } | ||
781 | |||
782 | l = __raw_readl(reg); | ||
783 | if ((l >> gpio) & 1) | ||
784 | l &= ~(1 << gpio); | ||
785 | else | ||
786 | l |= 1 << gpio; | ||
787 | |||
788 | __raw_writel(l, reg); | ||
789 | } | ||
790 | |||
752 | static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger) | 791 | static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger) |
753 | { | 792 | { |
754 | void __iomem *reg = bank->base; | 793 | void __iomem *reg = bank->base; |
@@ -759,6 +798,8 @@ static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger) | |||
759 | case METHOD_MPUIO: | 798 | case METHOD_MPUIO: |
760 | reg += OMAP_MPUIO_GPIO_INT_EDGE; | 799 | reg += OMAP_MPUIO_GPIO_INT_EDGE; |
761 | l = __raw_readl(reg); | 800 | l = __raw_readl(reg); |
801 | if (trigger & IRQ_TYPE_EDGE_BOTH) | ||
802 | bank->toggle_mask |= 1 << gpio; | ||
762 | if (trigger & IRQ_TYPE_EDGE_RISING) | 803 | if (trigger & IRQ_TYPE_EDGE_RISING) |
763 | l |= 1 << gpio; | 804 | l |= 1 << gpio; |
764 | else if (trigger & IRQ_TYPE_EDGE_FALLING) | 805 | else if (trigger & IRQ_TYPE_EDGE_FALLING) |
@@ -771,6 +812,8 @@ static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger) | |||
771 | case METHOD_GPIO_1510: | 812 | case METHOD_GPIO_1510: |
772 | reg += OMAP1510_GPIO_INT_CONTROL; | 813 | reg += OMAP1510_GPIO_INT_CONTROL; |
773 | l = __raw_readl(reg); | 814 | l = __raw_readl(reg); |
815 | if (trigger & IRQ_TYPE_EDGE_BOTH) | ||
816 | bank->toggle_mask |= 1 << gpio; | ||
774 | if (trigger & IRQ_TYPE_EDGE_RISING) | 817 | if (trigger & IRQ_TYPE_EDGE_RISING) |
775 | l |= 1 << gpio; | 818 | l |= 1 << gpio; |
776 | else if (trigger & IRQ_TYPE_EDGE_FALLING) | 819 | else if (trigger & IRQ_TYPE_EDGE_FALLING) |
@@ -803,6 +846,8 @@ static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger) | |||
803 | case METHOD_GPIO_7XX: | 846 | case METHOD_GPIO_7XX: |
804 | reg += OMAP7XX_GPIO_INT_CONTROL; | 847 | reg += OMAP7XX_GPIO_INT_CONTROL; |
805 | l = __raw_readl(reg); | 848 | l = __raw_readl(reg); |
849 | if (trigger & IRQ_TYPE_EDGE_BOTH) | ||
850 | bank->toggle_mask |= 1 << gpio; | ||
806 | if (trigger & IRQ_TYPE_EDGE_RISING) | 851 | if (trigger & IRQ_TYPE_EDGE_RISING) |
807 | l |= 1 << gpio; | 852 | l |= 1 << gpio; |
808 | else if (trigger & IRQ_TYPE_EDGE_FALLING) | 853 | else if (trigger & IRQ_TYPE_EDGE_FALLING) |
@@ -1072,7 +1117,7 @@ static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int ena | |||
1072 | */ | 1117 | */ |
1073 | static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable) | 1118 | static int _set_gpio_wakeup(struct gpio_bank *bank, int gpio, int enable) |
1074 | { | 1119 | { |
1075 | unsigned long flags; | 1120 | unsigned long uninitialized_var(flags); |
1076 | 1121 | ||
1077 | switch (bank->method) { | 1122 | switch (bank->method) { |
1078 | #ifdef CONFIG_ARCH_OMAP16XX | 1123 | #ifdef CONFIG_ARCH_OMAP16XX |
@@ -1217,7 +1262,7 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
1217 | { | 1262 | { |
1218 | void __iomem *isr_reg = NULL; | 1263 | void __iomem *isr_reg = NULL; |
1219 | u32 isr; | 1264 | u32 isr; |
1220 | unsigned int gpio_irq; | 1265 | unsigned int gpio_irq, gpio_index; |
1221 | struct gpio_bank *bank; | 1266 | struct gpio_bank *bank; |
1222 | u32 retrigger = 0; | 1267 | u32 retrigger = 0; |
1223 | int unmasked = 0; | 1268 | int unmasked = 0; |
@@ -1284,9 +1329,23 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc) | |||
1284 | 1329 | ||
1285 | gpio_irq = bank->virtual_irq_start; | 1330 | gpio_irq = bank->virtual_irq_start; |
1286 | for (; isr != 0; isr >>= 1, gpio_irq++) { | 1331 | for (; isr != 0; isr >>= 1, gpio_irq++) { |
1332 | gpio_index = get_gpio_index(irq_to_gpio(gpio_irq)); | ||
1333 | |||
1287 | if (!(isr & 1)) | 1334 | if (!(isr & 1)) |
1288 | continue; | 1335 | continue; |
1289 | 1336 | ||
1337 | #ifdef CONFIG_ARCH_OMAP1 | ||
1338 | /* | ||
1339 | * Some chips can't respond to both rising and falling | ||
1340 | * at the same time. If this irq was requested with | ||
1341 | * both flags, we need to flip the ICR data for the IRQ | ||
1342 | * to respond to the IRQ for the opposite direction. | ||
1343 | * This will be indicated in the bank toggle_mask. | ||
1344 | */ | ||
1345 | if (bank->toggle_mask & (1 << gpio_index)) | ||
1346 | _toggle_gpio_edge_triggering(bank, gpio_index); | ||
1347 | #endif | ||
1348 | |||
1290 | generic_handle_irq(gpio_irq); | 1349 | generic_handle_irq(gpio_irq); |
1291 | } | 1350 | } |
1292 | } | 1351 | } |
diff --git a/arch/arm/plat-omap/include/plat/board.h b/arch/arm/plat-omap/include/plat/board.h index 376ce18216f..5cd622039da 100644 --- a/arch/arm/plat-omap/include/plat/board.h +++ b/arch/arm/plat-omap/include/plat/board.h | |||
@@ -99,7 +99,6 @@ struct fb_info; | |||
99 | struct omap_backlight_config { | 99 | struct omap_backlight_config { |
100 | int default_intensity; | 100 | int default_intensity; |
101 | int (*set_power)(struct device *dev, int state); | 101 | int (*set_power)(struct device *dev, int state); |
102 | int (*check_fb)(struct fb_info *fb); | ||
103 | }; | 102 | }; |
104 | 103 | ||
105 | struct omap_fbmem_config { | 104 | struct omap_fbmem_config { |
diff --git a/arch/arm/plat-omap/include/plat/clock.h b/arch/arm/plat-omap/include/plat/clock.h index 309b6d1dccd..94fe2a0ce40 100644 --- a/arch/arm/plat-omap/include/plat/clock.h +++ b/arch/arm/plat-omap/include/plat/clock.h | |||
@@ -119,6 +119,7 @@ struct clk_functions { | |||
119 | void (*clk_disable_unused)(struct clk *clk); | 119 | void (*clk_disable_unused)(struct clk *clk); |
120 | #ifdef CONFIG_CPU_FREQ | 120 | #ifdef CONFIG_CPU_FREQ |
121 | void (*clk_init_cpufreq_table)(struct cpufreq_frequency_table **); | 121 | void (*clk_init_cpufreq_table)(struct cpufreq_frequency_table **); |
122 | void (*clk_exit_cpufreq_table)(struct cpufreq_frequency_table **); | ||
122 | #endif | 123 | #endif |
123 | }; | 124 | }; |
124 | 125 | ||
@@ -135,6 +136,7 @@ extern unsigned long followparent_recalc(struct clk *clk); | |||
135 | extern void clk_enable_init_clocks(void); | 136 | extern void clk_enable_init_clocks(void); |
136 | #ifdef CONFIG_CPU_FREQ | 137 | #ifdef CONFIG_CPU_FREQ |
137 | extern void clk_init_cpufreq_table(struct cpufreq_frequency_table **table); | 138 | extern void clk_init_cpufreq_table(struct cpufreq_frequency_table **table); |
139 | extern void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table); | ||
138 | #endif | 140 | #endif |
139 | 141 | ||
140 | extern const struct clkops clkops_null; | 142 | extern const struct clkops clkops_null; |
diff --git a/arch/arm/plat-omap/include/plat/control.h b/arch/arm/plat-omap/include/plat/control.h index 2ae88437863..a745d62fad0 100644 --- a/arch/arm/plat-omap/include/plat/control.h +++ b/arch/arm/plat-omap/include/plat/control.h | |||
@@ -147,7 +147,7 @@ | |||
147 | #define OMAP343X_CONTROL_IVA2_BOOTADDR (OMAP2_CONTROL_GENERAL + 0x0190) | 147 | #define OMAP343X_CONTROL_IVA2_BOOTADDR (OMAP2_CONTROL_GENERAL + 0x0190) |
148 | #define OMAP343X_CONTROL_IVA2_BOOTMOD (OMAP2_CONTROL_GENERAL + 0x0194) | 148 | #define OMAP343X_CONTROL_IVA2_BOOTMOD (OMAP2_CONTROL_GENERAL + 0x0194) |
149 | #define OMAP343X_CONTROL_DEBOBS(i) (OMAP2_CONTROL_GENERAL + 0x01B0 \ | 149 | #define OMAP343X_CONTROL_DEBOBS(i) (OMAP2_CONTROL_GENERAL + 0x01B0 \ |
150 | + ((i) >> 1) * 4 + (!(i) & 1) * 2) | 150 | + ((i) >> 1) * 4 + (!((i) & 1)) * 2) |
151 | #define OMAP343X_CONTROL_PROG_IO0 (OMAP2_CONTROL_GENERAL + 0x01D4) | 151 | #define OMAP343X_CONTROL_PROG_IO0 (OMAP2_CONTROL_GENERAL + 0x01D4) |
152 | #define OMAP343X_CONTROL_PROG_IO1 (OMAP2_CONTROL_GENERAL + 0x01D8) | 152 | #define OMAP343X_CONTROL_PROG_IO1 (OMAP2_CONTROL_GENERAL + 0x01D8) |
153 | #define OMAP343X_CONTROL_DSS_DPLL_SPREADING (OMAP2_CONTROL_GENERAL + 0x01E0) | 153 | #define OMAP343X_CONTROL_DSS_DPLL_SPREADING (OMAP2_CONTROL_GENERAL + 0x01E0) |
diff --git a/arch/arm/plat-omap/include/plat/io.h b/arch/arm/plat-omap/include/plat/io.h index 7e5319f907d..a3e7b471bcb 100644 --- a/arch/arm/plat-omap/include/plat/io.h +++ b/arch/arm/plat-omap/include/plat/io.h | |||
@@ -122,16 +122,21 @@ | |||
122 | #define OMAP243X_SMS_VIRT (OMAP243X_SMS_PHYS + OMAP2_L3_IO_OFFSET) | 122 | #define OMAP243X_SMS_VIRT (OMAP243X_SMS_PHYS + OMAP2_L3_IO_OFFSET) |
123 | #define OMAP243X_SMS_SIZE SZ_1M | 123 | #define OMAP243X_SMS_SIZE SZ_1M |
124 | 124 | ||
125 | /* DSP */ | 125 | /* 2420 IVA */ |
126 | #define DSP_MEM_24XX_PHYS OMAP2420_DSP_MEM_BASE /* 0x58000000 */ | 126 | #define DSP_MEM_2420_PHYS OMAP2420_DSP_MEM_BASE |
127 | #define DSP_MEM_24XX_VIRT 0xe0000000 | 127 | /* 0x58000000 --> 0xfc100000 */ |
128 | #define DSP_MEM_24XX_SIZE 0x28000 | 128 | #define DSP_MEM_2420_VIRT 0xfc100000 |
129 | #define DSP_IPI_24XX_PHYS OMAP2420_DSP_IPI_BASE /* 0x59000000 */ | 129 | #define DSP_MEM_2420_SIZE 0x28000 |
130 | #define DSP_IPI_24XX_VIRT 0xe1000000 | 130 | #define DSP_IPI_2420_PHYS OMAP2420_DSP_IPI_BASE |
131 | #define DSP_IPI_24XX_SIZE SZ_4K | 131 | /* 0x59000000 --> 0xfc128000 */ |
132 | #define DSP_MMU_24XX_PHYS OMAP2420_DSP_MMU_BASE /* 0x5a000000 */ | 132 | #define DSP_IPI_2420_VIRT 0xfc128000 |
133 | #define DSP_MMU_24XX_VIRT 0xe2000000 | 133 | #define DSP_IPI_2420_SIZE SZ_4K |
134 | #define DSP_MMU_24XX_SIZE SZ_4K | 134 | #define DSP_MMU_2420_PHYS OMAP2420_DSP_MMU_BASE |
135 | /* 0x5a000000 --> 0xfc129000 */ | ||
136 | #define DSP_MMU_2420_VIRT 0xfc129000 | ||
137 | #define DSP_MMU_2420_SIZE SZ_4K | ||
138 | |||
139 | /* 2430 IVA2.1 - currently unmapped */ | ||
135 | 140 | ||
136 | /* | 141 | /* |
137 | * ---------------------------------------------------------------------------- | 142 | * ---------------------------------------------------------------------------- |
@@ -182,16 +187,7 @@ | |||
182 | #define OMAP343X_SDRC_VIRT (OMAP343X_SDRC_PHYS + OMAP2_L3_IO_OFFSET) | 187 | #define OMAP343X_SDRC_VIRT (OMAP343X_SDRC_PHYS + OMAP2_L3_IO_OFFSET) |
183 | #define OMAP343X_SDRC_SIZE SZ_1M | 188 | #define OMAP343X_SDRC_SIZE SZ_1M |
184 | 189 | ||
185 | /* DSP */ | 190 | /* 3430 IVA - currently unmapped */ |
186 | #define DSP_MEM_34XX_PHYS OMAP34XX_DSP_MEM_BASE /* 0x58000000 */ | ||
187 | #define DSP_MEM_34XX_VIRT 0xe0000000 | ||
188 | #define DSP_MEM_34XX_SIZE 0x28000 | ||
189 | #define DSP_IPI_34XX_PHYS OMAP34XX_DSP_IPI_BASE /* 0x59000000 */ | ||
190 | #define DSP_IPI_34XX_VIRT 0xe1000000 | ||
191 | #define DSP_IPI_34XX_SIZE SZ_4K | ||
192 | #define DSP_MMU_34XX_PHYS OMAP34XX_DSP_MMU_BASE /* 0x5a000000 */ | ||
193 | #define DSP_MMU_34XX_VIRT 0xe2000000 | ||
194 | #define DSP_MMU_34XX_SIZE SZ_4K | ||
195 | 191 | ||
196 | /* | 192 | /* |
197 | * ---------------------------------------------------------------------------- | 193 | * ---------------------------------------------------------------------------- |
diff --git a/arch/arm/plat-omap/include/plat/mux.h b/arch/arm/plat-omap/include/plat/mux.h index 8f069cc8035..692c90e89ac 100644 --- a/arch/arm/plat-omap/include/plat/mux.h +++ b/arch/arm/plat-omap/include/plat/mux.h | |||
@@ -183,6 +183,14 @@ enum omap7xx_index { | |||
183 | /* I2C */ | 183 | /* I2C */ |
184 | I2C_7XX_SCL, | 184 | I2C_7XX_SCL, |
185 | I2C_7XX_SDA, | 185 | I2C_7XX_SDA, |
186 | |||
187 | /* SPI */ | ||
188 | SPI_7XX_1, | ||
189 | SPI_7XX_2, | ||
190 | SPI_7XX_3, | ||
191 | SPI_7XX_4, | ||
192 | SPI_7XX_5, | ||
193 | SPI_7XX_6, | ||
186 | }; | 194 | }; |
187 | 195 | ||
188 | enum omap1xxx_index { | 196 | enum omap1xxx_index { |
diff --git a/arch/arm/plat-omap/include/plat/omap7xx.h b/arch/arm/plat-omap/include/plat/omap7xx.h index 53f52414b0e..48e4757e1e3 100644 --- a/arch/arm/plat-omap/include/plat/omap7xx.h +++ b/arch/arm/plat-omap/include/plat/omap7xx.h | |||
@@ -46,6 +46,9 @@ | |||
46 | #define OMAP7XX_DSPREG_SIZE SZ_128K | 46 | #define OMAP7XX_DSPREG_SIZE SZ_128K |
47 | #define OMAP7XX_DSPREG_START 0xE1000000 | 47 | #define OMAP7XX_DSPREG_START 0xE1000000 |
48 | 48 | ||
49 | #define OMAP7XX_SPI1_BASE 0xfffc0800 | ||
50 | #define OMAP7XX_SPI2_BASE 0xfffc1000 | ||
51 | |||
49 | /* | 52 | /* |
50 | * ---------------------------------------------------------------------------- | 53 | * ---------------------------------------------------------------------------- |
51 | * OMAP7XX specific configuration registers | 54 | * OMAP7XX specific configuration registers |
diff --git a/arch/arm/plat-omap/io.c b/arch/arm/plat-omap/io.c index 11f5d7961c7..0cfd54f519c 100644 --- a/arch/arm/plat-omap/io.c +++ b/arch/arm/plat-omap/io.c | |||
@@ -66,12 +66,12 @@ void __iomem *omap_ioremap(unsigned long p, size_t size, unsigned int type) | |||
66 | return XLATE(p, L4_24XX_PHYS, L4_24XX_VIRT); | 66 | return XLATE(p, L4_24XX_PHYS, L4_24XX_VIRT); |
67 | } | 67 | } |
68 | if (cpu_is_omap2420()) { | 68 | if (cpu_is_omap2420()) { |
69 | if (BETWEEN(p, DSP_MEM_24XX_PHYS, DSP_MEM_24XX_SIZE)) | 69 | if (BETWEEN(p, DSP_MEM_2420_PHYS, DSP_MEM_2420_SIZE)) |
70 | return XLATE(p, DSP_MEM_24XX_PHYS, DSP_MEM_24XX_VIRT); | 70 | return XLATE(p, DSP_MEM_2420_PHYS, DSP_MEM_2420_VIRT); |
71 | if (BETWEEN(p, DSP_IPI_24XX_PHYS, DSP_IPI_24XX_SIZE)) | 71 | if (BETWEEN(p, DSP_IPI_2420_PHYS, DSP_IPI_2420_SIZE)) |
72 | return XLATE(p, DSP_IPI_24XX_PHYS, DSP_IPI_24XX_SIZE); | 72 | return XLATE(p, DSP_IPI_2420_PHYS, DSP_IPI_2420_SIZE); |
73 | if (BETWEEN(p, DSP_MMU_24XX_PHYS, DSP_MMU_24XX_SIZE)) | 73 | if (BETWEEN(p, DSP_MMU_2420_PHYS, DSP_MMU_2420_SIZE)) |
74 | return XLATE(p, DSP_MMU_24XX_PHYS, DSP_MMU_24XX_VIRT); | 74 | return XLATE(p, DSP_MMU_2420_PHYS, DSP_MMU_2420_VIRT); |
75 | } | 75 | } |
76 | if (cpu_is_omap2430()) { | 76 | if (cpu_is_omap2430()) { |
77 | if (BETWEEN(p, L4_WK_243X_PHYS, L4_WK_243X_SIZE)) | 77 | if (BETWEEN(p, L4_WK_243X_PHYS, L4_WK_243X_SIZE)) |
diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c index c0ff1e39d89..463d6386aff 100644 --- a/arch/arm/plat-omap/iommu.c +++ b/arch/arm/plat-omap/iommu.c | |||
@@ -827,7 +827,7 @@ EXPORT_SYMBOL_GPL(iommu_get); | |||
827 | **/ | 827 | **/ |
828 | void iommu_put(struct iommu *obj) | 828 | void iommu_put(struct iommu *obj) |
829 | { | 829 | { |
830 | if (!obj && IS_ERR(obj)) | 830 | if (!obj || IS_ERR(obj)) |
831 | return; | 831 | return; |
832 | 832 | ||
833 | mutex_lock(&obj->iommu_lock); | 833 | mutex_lock(&obj->iommu_lock); |
diff --git a/arch/arm/plat-omap/mcbsp.c b/arch/arm/plat-omap/mcbsp.c index 2cc1cc328ba..f75767278fc 100644 --- a/arch/arm/plat-omap/mcbsp.c +++ b/arch/arm/plat-omap/mcbsp.c | |||
@@ -436,7 +436,7 @@ int omap_mcbsp_request(unsigned int id) | |||
436 | dev_err(mcbsp->dev, "Unable to request TX IRQ %d " | 436 | dev_err(mcbsp->dev, "Unable to request TX IRQ %d " |
437 | "for McBSP%d\n", mcbsp->tx_irq, | 437 | "for McBSP%d\n", mcbsp->tx_irq, |
438 | mcbsp->id); | 438 | mcbsp->id); |
439 | return err; | 439 | goto error; |
440 | } | 440 | } |
441 | 441 | ||
442 | init_completion(&mcbsp->rx_irq_completion); | 442 | init_completion(&mcbsp->rx_irq_completion); |
@@ -446,12 +446,26 @@ int omap_mcbsp_request(unsigned int id) | |||
446 | dev_err(mcbsp->dev, "Unable to request RX IRQ %d " | 446 | dev_err(mcbsp->dev, "Unable to request RX IRQ %d " |
447 | "for McBSP%d\n", mcbsp->rx_irq, | 447 | "for McBSP%d\n", mcbsp->rx_irq, |
448 | mcbsp->id); | 448 | mcbsp->id); |
449 | free_irq(mcbsp->tx_irq, (void *)mcbsp); | 449 | goto tx_irq; |
450 | return err; | ||
451 | } | 450 | } |
452 | } | 451 | } |
453 | 452 | ||
454 | return 0; | 453 | return 0; |
454 | tx_irq: | ||
455 | free_irq(mcbsp->tx_irq, (void *)mcbsp); | ||
456 | error: | ||
457 | if (mcbsp->pdata && mcbsp->pdata->ops && mcbsp->pdata->ops->free) | ||
458 | mcbsp->pdata->ops->free(id); | ||
459 | |||
460 | /* Do procedure specific to omap34xx arch, if applicable */ | ||
461 | omap34xx_mcbsp_free(mcbsp); | ||
462 | |||
463 | clk_disable(mcbsp->fclk); | ||
464 | clk_disable(mcbsp->iclk); | ||
465 | |||
466 | mcbsp->free = 1; | ||
467 | |||
468 | return err; | ||
455 | } | 469 | } |
456 | EXPORT_SYMBOL(omap_mcbsp_request); | 470 | EXPORT_SYMBOL(omap_mcbsp_request); |
457 | 471 | ||
diff --git a/arch/arm/plat-pxa/pwm.c b/arch/arm/plat-pxa/pwm.c index a9eabdcfa16..51dc5c8106c 100644 --- a/arch/arm/plat-pxa/pwm.c +++ b/arch/arm/plat-pxa/pwm.c | |||
@@ -204,14 +204,14 @@ static int __devinit pwm_probe(struct platform_device *pdev) | |||
204 | goto err_free_clk; | 204 | goto err_free_clk; |
205 | } | 205 | } |
206 | 206 | ||
207 | r = request_mem_region(r->start, r->end - r->start + 1, pdev->name); | 207 | r = request_mem_region(r->start, resource_size(r), pdev->name); |
208 | if (r == NULL) { | 208 | if (r == NULL) { |
209 | dev_err(&pdev->dev, "failed to request memory resource\n"); | 209 | dev_err(&pdev->dev, "failed to request memory resource\n"); |
210 | ret = -EBUSY; | 210 | ret = -EBUSY; |
211 | goto err_free_clk; | 211 | goto err_free_clk; |
212 | } | 212 | } |
213 | 213 | ||
214 | pwm->mmio_base = ioremap(r->start, r->end - r->start + 1); | 214 | pwm->mmio_base = ioremap(r->start, resource_size(r)); |
215 | if (pwm->mmio_base == NULL) { | 215 | if (pwm->mmio_base == NULL) { |
216 | dev_err(&pdev->dev, "failed to ioremap() registers\n"); | 216 | dev_err(&pdev->dev, "failed to ioremap() registers\n"); |
217 | ret = -ENODEV; | 217 | ret = -ENODEV; |
@@ -241,7 +241,7 @@ static int __devinit pwm_probe(struct platform_device *pdev) | |||
241 | return 0; | 241 | return 0; |
242 | 242 | ||
243 | err_free_mem: | 243 | err_free_mem: |
244 | release_mem_region(r->start, r->end - r->start + 1); | 244 | release_mem_region(r->start, resource_size(r)); |
245 | err_free_clk: | 245 | err_free_clk: |
246 | clk_put(pwm->clk); | 246 | clk_put(pwm->clk); |
247 | err_free: | 247 | err_free: |
@@ -271,7 +271,7 @@ static int __devexit pwm_remove(struct platform_device *pdev) | |||
271 | iounmap(pwm->mmio_base); | 271 | iounmap(pwm->mmio_base); |
272 | 272 | ||
273 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 273 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
274 | release_mem_region(r->start, r->end - r->start + 1); | 274 | release_mem_region(r->start, resource_size(r)); |
275 | 275 | ||
276 | clk_put(pwm->clk); | 276 | clk_put(pwm->clk); |
277 | kfree(pwm); | 277 | kfree(pwm); |
diff --git a/arch/arm/plat-s3c/dev-nand.c b/arch/arm/plat-s3c/dev-nand.c index e771e77dcd5..a52fb6cf618 100644 --- a/arch/arm/plat-s3c/dev-nand.c +++ b/arch/arm/plat-s3c/dev-nand.c | |||
@@ -58,8 +58,8 @@ static int __init s3c_nand_copy_set(struct s3c2410_nand_set *set) | |||
58 | return -ENOMEM; | 58 | return -ENOMEM; |
59 | } | 59 | } |
60 | 60 | ||
61 | size = sizeof(int) * set->nr_chips; | 61 | if (set->nr_map && set->nr_chips) { |
62 | if (size) { | 62 | size = sizeof(int) * set->nr_chips; |
63 | ptr = kmemdup(set->nr_map, size, GFP_KERNEL); | 63 | ptr = kmemdup(set->nr_map, size, GFP_KERNEL); |
64 | set->nr_map = ptr; | 64 | set->nr_map = ptr; |
65 | 65 | ||
@@ -114,7 +114,7 @@ void __init s3c_nand_set_platdata(struct s3c2410_platform_nand *nand) | |||
114 | 114 | ||
115 | for (i = 0; i < npd->nr_sets; i++) { | 115 | for (i = 0; i < npd->nr_sets; i++) { |
116 | ret = s3c_nand_copy_set(to); | 116 | ret = s3c_nand_copy_set(to); |
117 | if (!ret) { | 117 | if (ret) { |
118 | printk(KERN_ERR "%s: failed to copy set %d\n", | 118 | printk(KERN_ERR "%s: failed to copy set %d\n", |
119 | __func__, i); | 119 | __func__, i); |
120 | return; | 120 | return; |
@@ -122,6 +122,8 @@ void __init s3c_nand_set_platdata(struct s3c2410_platform_nand *nand) | |||
122 | to++; | 122 | to++; |
123 | } | 123 | } |
124 | } | 124 | } |
125 | |||
126 | s3c_device_nand.dev.platform_data = npd; | ||
125 | } | 127 | } |
126 | 128 | ||
127 | EXPORT_SYMBOL_GPL(s3c_nand_set_platdata); | 129 | EXPORT_SYMBOL_GPL(s3c_nand_set_platdata); |
diff --git a/arch/arm/plat-s3c/include/plat/devs.h b/arch/arm/plat-s3c/include/plat/devs.h index 932cbbbb427..c1c20b02391 100644 --- a/arch/arm/plat-s3c/include/plat/devs.h +++ b/arch/arm/plat-s3c/include/plat/devs.h | |||
@@ -31,6 +31,7 @@ extern struct platform_device s3c64xx_device_iisv4; | |||
31 | extern struct platform_device s3c64xx_device_pcm0; | 31 | extern struct platform_device s3c64xx_device_pcm0; |
32 | extern struct platform_device s3c64xx_device_pcm1; | 32 | extern struct platform_device s3c64xx_device_pcm1; |
33 | 33 | ||
34 | extern struct platform_device s3c_device_ts; | ||
34 | extern struct platform_device s3c_device_fb; | 35 | extern struct platform_device s3c_device_fb; |
35 | extern struct platform_device s3c_device_usb; | 36 | extern struct platform_device s3c_device_usb; |
36 | extern struct platform_device s3c_device_lcd; | 37 | extern struct platform_device s3c_device_lcd; |
diff --git a/arch/arm/plat-s3c24xx/devs.c b/arch/arm/plat-s3c24xx/devs.c index f52a92ce8dd..7f686a31e67 100644 --- a/arch/arm/plat-s3c24xx/devs.c +++ b/arch/arm/plat-s3c24xx/devs.c | |||
@@ -37,6 +37,8 @@ | |||
37 | #include <plat/cpu.h> | 37 | #include <plat/cpu.h> |
38 | #include <plat/regs-spi.h> | 38 | #include <plat/regs-spi.h> |
39 | 39 | ||
40 | #include <mach/ts.h> | ||
41 | |||
40 | /* Serial port registrations */ | 42 | /* Serial port registrations */ |
41 | 43 | ||
42 | static struct resource s3c2410_uart0_resource[] = { | 44 | static struct resource s3c2410_uart0_resource[] = { |
@@ -182,6 +184,22 @@ void __init s3c24xx_fb_set_platdata(struct s3c2410fb_mach_info *pd) | |||
182 | } | 184 | } |
183 | } | 185 | } |
184 | 186 | ||
187 | /* Touchscreen */ | ||
188 | struct platform_device s3c_device_ts = { | ||
189 | .name = "s3c2410-ts", | ||
190 | .id = -1, | ||
191 | }; | ||
192 | EXPORT_SYMBOL(s3c_device_ts); | ||
193 | |||
194 | static struct s3c2410_ts_mach_info s3c2410ts_info; | ||
195 | |||
196 | void __init s3c24xx_ts_set_platdata(struct s3c2410_ts_mach_info *hard_s3c2410ts_info) | ||
197 | { | ||
198 | memcpy(&s3c2410ts_info, hard_s3c2410ts_info, sizeof(struct s3c2410_ts_mach_info)); | ||
199 | s3c_device_ts.dev.platform_data = &s3c2410ts_info; | ||
200 | } | ||
201 | EXPORT_SYMBOL(s3c24xx_ts_set_platdata); | ||
202 | |||
185 | /* USB Device (Gadget)*/ | 203 | /* USB Device (Gadget)*/ |
186 | 204 | ||
187 | static struct resource s3c_usbgadget_resource[] = { | 205 | static struct resource s3c_usbgadget_resource[] = { |
diff --git a/arch/arm/plat-s3c24xx/s3c244x.c b/arch/arm/plat-s3c24xx/s3c244x.c index 1364317d421..12623a474b5 100644 --- a/arch/arm/plat-s3c24xx/s3c244x.c +++ b/arch/arm/plat-s3c24xx/s3c244x.c | |||
@@ -70,6 +70,7 @@ void __init s3c244x_map_io(void) | |||
70 | s3c_device_sdi.name = "s3c2440-sdi"; | 70 | s3c_device_sdi.name = "s3c2440-sdi"; |
71 | s3c_device_i2c0.name = "s3c2440-i2c"; | 71 | s3c_device_i2c0.name = "s3c2440-i2c"; |
72 | s3c_device_nand.name = "s3c2440-nand"; | 72 | s3c_device_nand.name = "s3c2440-nand"; |
73 | s3c_device_ts.name = "s3c2440-ts"; | ||
73 | s3c_device_usbgadget.name = "s3c2440-usbgadget"; | 74 | s3c_device_usbgadget.name = "s3c2440-usbgadget"; |
74 | } | 75 | } |
75 | 76 | ||
diff --git a/arch/arm/plat-s3c64xx/s3c6400-clock.c b/arch/arm/plat-s3c64xx/s3c6400-clock.c index 6ffa21eb1b9..ffd56deb9e8 100644 --- a/arch/arm/plat-s3c64xx/s3c6400-clock.c +++ b/arch/arm/plat-s3c64xx/s3c6400-clock.c | |||
@@ -46,6 +46,7 @@ static struct clk clk_ext_xtal_mux = { | |||
46 | #define clk_fin_epll clk_ext_xtal_mux | 46 | #define clk_fin_epll clk_ext_xtal_mux |
47 | 47 | ||
48 | #define clk_fout_mpll clk_mpll | 48 | #define clk_fout_mpll clk_mpll |
49 | #define clk_fout_epll clk_epll | ||
49 | 50 | ||
50 | struct clk_sources { | 51 | struct clk_sources { |
51 | unsigned int nr_sources; | 52 | unsigned int nr_sources; |
@@ -88,11 +89,6 @@ static struct clksrc_clk clk_mout_apll = { | |||
88 | .sources = &clk_src_apll, | 89 | .sources = &clk_src_apll, |
89 | }; | 90 | }; |
90 | 91 | ||
91 | static struct clk clk_fout_epll = { | ||
92 | .name = "fout_epll", | ||
93 | .id = -1, | ||
94 | }; | ||
95 | |||
96 | static struct clk *clk_src_epll_list[] = { | 92 | static struct clk *clk_src_epll_list[] = { |
97 | [0] = &clk_fin_epll, | 93 | [0] = &clk_fin_epll, |
98 | [1] = &clk_fout_epll, | 94 | [1] = &clk_fout_epll, |
@@ -715,7 +711,6 @@ static struct clk *clks[] __initdata = { | |||
715 | &clk_iis_cd1, | 711 | &clk_iis_cd1, |
716 | &clk_pcm_cd, | 712 | &clk_pcm_cd, |
717 | &clk_mout_epll.clk, | 713 | &clk_mout_epll.clk, |
718 | &clk_fout_epll, | ||
719 | &clk_mout_mpll.clk, | 714 | &clk_mout_mpll.clk, |
720 | &clk_dout_mpll, | 715 | &clk_dout_mpll, |
721 | &clk_mmc0.clk, | 716 | &clk_mmc0.clk, |
@@ -760,7 +755,4 @@ void __init s3c6400_register_clocks(unsigned armclk_divlimit) | |||
760 | clkp->name, ret); | 755 | clkp->name, ret); |
761 | } | 756 | } |
762 | } | 757 | } |
763 | |||
764 | clk_mpll.parent = &clk_mout_mpll.clk; | ||
765 | clk_epll.parent = &clk_mout_epll.clk; | ||
766 | } | 758 | } |
diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index aed05bc3c2e..f60a5400a25 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c | |||
@@ -63,14 +63,15 @@ static void vfp_thread_flush(struct thread_info *thread) | |||
63 | put_cpu(); | 63 | put_cpu(); |
64 | } | 64 | } |
65 | 65 | ||
66 | static void vfp_thread_release(struct thread_info *thread) | 66 | static void vfp_thread_exit(struct thread_info *thread) |
67 | { | 67 | { |
68 | /* release case: Per-thread VFP cleanup. */ | 68 | /* release case: Per-thread VFP cleanup. */ |
69 | union vfp_state *vfp = &thread->vfpstate; | 69 | union vfp_state *vfp = &thread->vfpstate; |
70 | unsigned int cpu = thread->cpu; | 70 | unsigned int cpu = get_cpu(); |
71 | 71 | ||
72 | if (last_VFP_context[cpu] == vfp) | 72 | if (last_VFP_context[cpu] == vfp) |
73 | last_VFP_context[cpu] = NULL; | 73 | last_VFP_context[cpu] = NULL; |
74 | put_cpu(); | ||
74 | } | 75 | } |
75 | 76 | ||
76 | /* | 77 | /* |
@@ -88,11 +89,13 @@ static void vfp_thread_release(struct thread_info *thread) | |||
88 | * but may change at any time. | 89 | * but may change at any time. |
89 | * - we could be preempted if tree preempt rcu is enabled, so | 90 | * - we could be preempted if tree preempt rcu is enabled, so |
90 | * it is unsafe to use thread->cpu. | 91 | * it is unsafe to use thread->cpu. |
91 | * THREAD_NOTIFY_RELEASE: | 92 | * THREAD_NOTIFY_EXIT |
92 | * - the thread (v) will not be running on any CPU; it is a dead thread. | 93 | * - the thread (v) will be running on the local CPU, so |
93 | * - thread->cpu will be the last CPU the thread ran on, which may not | 94 | * v === current_thread_info() |
94 | * be the current CPU. | 95 | * - thread->cpu is the local CPU number at the time it is accessed, |
95 | * - we could be preempted if tree preempt rcu is enabled. | 96 | * but may change at any time. |
97 | * - we could be preempted if tree preempt rcu is enabled, so | ||
98 | * it is unsafe to use thread->cpu. | ||
96 | */ | 99 | */ |
97 | static int vfp_notifier(struct notifier_block *self, unsigned long cmd, void *v) | 100 | static int vfp_notifier(struct notifier_block *self, unsigned long cmd, void *v) |
98 | { | 101 | { |
@@ -133,7 +136,7 @@ static int vfp_notifier(struct notifier_block *self, unsigned long cmd, void *v) | |||
133 | if (cmd == THREAD_NOTIFY_FLUSH) | 136 | if (cmd == THREAD_NOTIFY_FLUSH) |
134 | vfp_thread_flush(thread); | 137 | vfp_thread_flush(thread); |
135 | else | 138 | else |
136 | vfp_thread_release(thread); | 139 | vfp_thread_exit(thread); |
137 | 140 | ||
138 | return NOTIFY_DONE; | 141 | return NOTIFY_DONE; |
139 | } | 142 | } |
diff --git a/arch/blackfin/include/asm/page.h b/arch/blackfin/include/asm/page.h index 944a07c6cfd..1d04e407834 100644 --- a/arch/blackfin/include/asm/page.h +++ b/arch/blackfin/include/asm/page.h | |||
@@ -10,4 +10,9 @@ | |||
10 | #include <asm-generic/page.h> | 10 | #include <asm-generic/page.h> |
11 | #define MAP_NR(addr) (((unsigned long)(addr)-PAGE_OFFSET) >> PAGE_SHIFT) | 11 | #define MAP_NR(addr) (((unsigned long)(addr)-PAGE_OFFSET) >> PAGE_SHIFT) |
12 | 12 | ||
13 | #define VM_DATA_DEFAULT_FLAGS \ | ||
14 | (VM_READ | VM_WRITE | \ | ||
15 | ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \ | ||
16 | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) | ||
17 | |||
13 | #endif | 18 | #endif |
diff --git a/arch/blackfin/kernel/kgdb.c b/arch/blackfin/kernel/kgdb.c index f1036b6b929..34c7c3ed2c9 100644 --- a/arch/blackfin/kernel/kgdb.c +++ b/arch/blackfin/kernel/kgdb.c | |||
@@ -6,23 +6,9 @@ | |||
6 | * Licensed under the GPL-2 or later. | 6 | * Licensed under the GPL-2 or later. |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include <linux/string.h> | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/sched.h> | ||
12 | #include <linux/smp.h> | ||
13 | #include <linux/spinlock.h> | ||
14 | #include <linux/delay.h> | ||
15 | #include <linux/ptrace.h> /* for linux pt_regs struct */ | 9 | #include <linux/ptrace.h> /* for linux pt_regs struct */ |
16 | #include <linux/kgdb.h> | 10 | #include <linux/kgdb.h> |
17 | #include <linux/console.h> | ||
18 | #include <linux/init.h> | ||
19 | #include <linux/errno.h> | ||
20 | #include <linux/irq.h> | ||
21 | #include <linux/uaccess.h> | 11 | #include <linux/uaccess.h> |
22 | #include <asm/system.h> | ||
23 | #include <asm/traps.h> | ||
24 | #include <asm/blackfin.h> | ||
25 | #include <asm/dma.h> | ||
26 | 12 | ||
27 | void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs) | 13 | void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs) |
28 | { | 14 | { |
@@ -147,7 +133,7 @@ void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs) | |||
147 | regs->lb1 = gdb_regs[BFIN_LB1]; | 133 | regs->lb1 = gdb_regs[BFIN_LB1]; |
148 | regs->usp = gdb_regs[BFIN_USP]; | 134 | regs->usp = gdb_regs[BFIN_USP]; |
149 | regs->syscfg = gdb_regs[BFIN_SYSCFG]; | 135 | regs->syscfg = gdb_regs[BFIN_SYSCFG]; |
150 | regs->retx = gdb_regs[BFIN_PC]; | 136 | regs->retx = gdb_regs[BFIN_RETX]; |
151 | regs->retn = gdb_regs[BFIN_RETN]; | 137 | regs->retn = gdb_regs[BFIN_RETN]; |
152 | regs->rete = gdb_regs[BFIN_RETE]; | 138 | regs->rete = gdb_regs[BFIN_RETE]; |
153 | regs->pc = gdb_regs[BFIN_PC]; | 139 | regs->pc = gdb_regs[BFIN_PC]; |
@@ -424,182 +410,6 @@ struct kgdb_arch arch_kgdb_ops = { | |||
424 | .correct_hw_break = bfin_correct_hw_break, | 410 | .correct_hw_break = bfin_correct_hw_break, |
425 | }; | 411 | }; |
426 | 412 | ||
427 | static int hex(char ch) | ||
428 | { | ||
429 | if ((ch >= 'a') && (ch <= 'f')) | ||
430 | return ch - 'a' + 10; | ||
431 | if ((ch >= '0') && (ch <= '9')) | ||
432 | return ch - '0'; | ||
433 | if ((ch >= 'A') && (ch <= 'F')) | ||
434 | return ch - 'A' + 10; | ||
435 | return -1; | ||
436 | } | ||
437 | |||
438 | static int validate_memory_access_address(unsigned long addr, int size) | ||
439 | { | ||
440 | if (size < 0 || addr == 0) | ||
441 | return -EFAULT; | ||
442 | return bfin_mem_access_type(addr, size); | ||
443 | } | ||
444 | |||
445 | static int bfin_probe_kernel_read(char *dst, char *src, int size) | ||
446 | { | ||
447 | unsigned long lsrc = (unsigned long)src; | ||
448 | int mem_type; | ||
449 | |||
450 | mem_type = validate_memory_access_address(lsrc, size); | ||
451 | if (mem_type < 0) | ||
452 | return mem_type; | ||
453 | |||
454 | if (lsrc >= SYSMMR_BASE) { | ||
455 | if (size == 2 && lsrc % 2 == 0) { | ||
456 | u16 mmr = bfin_read16(src); | ||
457 | memcpy(dst, &mmr, sizeof(mmr)); | ||
458 | return 0; | ||
459 | } else if (size == 4 && lsrc % 4 == 0) { | ||
460 | u32 mmr = bfin_read32(src); | ||
461 | memcpy(dst, &mmr, sizeof(mmr)); | ||
462 | return 0; | ||
463 | } | ||
464 | } else { | ||
465 | switch (mem_type) { | ||
466 | case BFIN_MEM_ACCESS_CORE: | ||
467 | case BFIN_MEM_ACCESS_CORE_ONLY: | ||
468 | return probe_kernel_read(dst, src, size); | ||
469 | /* XXX: should support IDMA here with SMP */ | ||
470 | case BFIN_MEM_ACCESS_DMA: | ||
471 | if (dma_memcpy(dst, src, size)) | ||
472 | return 0; | ||
473 | break; | ||
474 | case BFIN_MEM_ACCESS_ITEST: | ||
475 | if (isram_memcpy(dst, src, size)) | ||
476 | return 0; | ||
477 | break; | ||
478 | } | ||
479 | } | ||
480 | |||
481 | return -EFAULT; | ||
482 | } | ||
483 | |||
484 | static int bfin_probe_kernel_write(char *dst, char *src, int size) | ||
485 | { | ||
486 | unsigned long ldst = (unsigned long)dst; | ||
487 | int mem_type; | ||
488 | |||
489 | mem_type = validate_memory_access_address(ldst, size); | ||
490 | if (mem_type < 0) | ||
491 | return mem_type; | ||
492 | |||
493 | if (ldst >= SYSMMR_BASE) { | ||
494 | if (size == 2 && ldst % 2 == 0) { | ||
495 | u16 mmr; | ||
496 | memcpy(&mmr, src, sizeof(mmr)); | ||
497 | bfin_write16(dst, mmr); | ||
498 | return 0; | ||
499 | } else if (size == 4 && ldst % 4 == 0) { | ||
500 | u32 mmr; | ||
501 | memcpy(&mmr, src, sizeof(mmr)); | ||
502 | bfin_write32(dst, mmr); | ||
503 | return 0; | ||
504 | } | ||
505 | } else { | ||
506 | switch (mem_type) { | ||
507 | case BFIN_MEM_ACCESS_CORE: | ||
508 | case BFIN_MEM_ACCESS_CORE_ONLY: | ||
509 | return probe_kernel_write(dst, src, size); | ||
510 | /* XXX: should support IDMA here with SMP */ | ||
511 | case BFIN_MEM_ACCESS_DMA: | ||
512 | if (dma_memcpy(dst, src, size)) | ||
513 | return 0; | ||
514 | break; | ||
515 | case BFIN_MEM_ACCESS_ITEST: | ||
516 | if (isram_memcpy(dst, src, size)) | ||
517 | return 0; | ||
518 | break; | ||
519 | } | ||
520 | } | ||
521 | |||
522 | return -EFAULT; | ||
523 | } | ||
524 | |||
525 | /* | ||
526 | * Convert the memory pointed to by mem into hex, placing result in buf. | ||
527 | * Return a pointer to the last char put in buf (null). May return an error. | ||
528 | */ | ||
529 | int kgdb_mem2hex(char *mem, char *buf, int count) | ||
530 | { | ||
531 | char *tmp; | ||
532 | int err; | ||
533 | |||
534 | /* | ||
535 | * We use the upper half of buf as an intermediate buffer for the | ||
536 | * raw memory copy. Hex conversion will work against this one. | ||
537 | */ | ||
538 | tmp = buf + count; | ||
539 | |||
540 | err = bfin_probe_kernel_read(tmp, mem, count); | ||
541 | if (!err) { | ||
542 | while (count > 0) { | ||
543 | buf = pack_hex_byte(buf, *tmp); | ||
544 | tmp++; | ||
545 | count--; | ||
546 | } | ||
547 | |||
548 | *buf = 0; | ||
549 | } | ||
550 | |||
551 | return err; | ||
552 | } | ||
553 | |||
554 | /* | ||
555 | * Copy the binary array pointed to by buf into mem. Fix $, #, and | ||
556 | * 0x7d escaped with 0x7d. Return a pointer to the character after | ||
557 | * the last byte written. | ||
558 | */ | ||
559 | int kgdb_ebin2mem(char *buf, char *mem, int count) | ||
560 | { | ||
561 | char *tmp_old, *tmp_new; | ||
562 | int size; | ||
563 | |||
564 | tmp_old = tmp_new = buf; | ||
565 | |||
566 | for (size = 0; size < count; ++size) { | ||
567 | if (*tmp_old == 0x7d) | ||
568 | *tmp_new = *(++tmp_old) ^ 0x20; | ||
569 | else | ||
570 | *tmp_new = *tmp_old; | ||
571 | tmp_new++; | ||
572 | tmp_old++; | ||
573 | } | ||
574 | |||
575 | return bfin_probe_kernel_write(mem, buf, count); | ||
576 | } | ||
577 | |||
578 | /* | ||
579 | * Convert the hex array pointed to by buf into binary to be placed in mem. | ||
580 | * Return a pointer to the character AFTER the last byte written. | ||
581 | * May return an error. | ||
582 | */ | ||
583 | int kgdb_hex2mem(char *buf, char *mem, int count) | ||
584 | { | ||
585 | char *tmp_raw, *tmp_hex; | ||
586 | |||
587 | /* | ||
588 | * We use the upper half of buf as an intermediate buffer for the | ||
589 | * raw memory that is converted from hex. | ||
590 | */ | ||
591 | tmp_raw = buf + count * 2; | ||
592 | |||
593 | tmp_hex = tmp_raw - 1; | ||
594 | while (tmp_hex >= buf) { | ||
595 | tmp_raw--; | ||
596 | *tmp_raw = hex(*tmp_hex--); | ||
597 | *tmp_raw |= hex(*tmp_hex--) << 4; | ||
598 | } | ||
599 | |||
600 | return bfin_probe_kernel_write(mem, tmp_raw, count); | ||
601 | } | ||
602 | |||
603 | #define IN_MEM(addr, size, l1_addr, l1_size) \ | 413 | #define IN_MEM(addr, size, l1_addr, l1_size) \ |
604 | ({ \ | 414 | ({ \ |
605 | unsigned long __addr = (unsigned long)(addr); \ | 415 | unsigned long __addr = (unsigned long)(addr); \ |
@@ -629,21 +439,6 @@ int kgdb_validate_break_address(unsigned long addr) | |||
629 | return -EFAULT; | 439 | return -EFAULT; |
630 | } | 440 | } |
631 | 441 | ||
632 | int kgdb_arch_set_breakpoint(unsigned long addr, char *saved_instr) | ||
633 | { | ||
634 | int err = bfin_probe_kernel_read(saved_instr, (char *)addr, | ||
635 | BREAK_INSTR_SIZE); | ||
636 | if (err) | ||
637 | return err; | ||
638 | return bfin_probe_kernel_write((char *)addr, arch_kgdb_ops.gdb_bpt_instr, | ||
639 | BREAK_INSTR_SIZE); | ||
640 | } | ||
641 | |||
642 | int kgdb_arch_remove_breakpoint(unsigned long addr, char *bundle) | ||
643 | { | ||
644 | return bfin_probe_kernel_write((char *)addr, bundle, BREAK_INSTR_SIZE); | ||
645 | } | ||
646 | |||
647 | int kgdb_arch_init(void) | 442 | int kgdb_arch_init(void) |
648 | { | 443 | { |
649 | kgdb_single_step = 0; | 444 | kgdb_single_step = 0; |
diff --git a/arch/blackfin/mm/Makefile b/arch/blackfin/mm/Makefile index d489f894f4b..4c011b1f661 100644 --- a/arch/blackfin/mm/Makefile +++ b/arch/blackfin/mm/Makefile | |||
@@ -2,4 +2,4 @@ | |||
2 | # arch/blackfin/mm/Makefile | 2 | # arch/blackfin/mm/Makefile |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := sram-alloc.o isram-driver.o init.o | 5 | obj-y := sram-alloc.o isram-driver.o init.o maccess.o |
diff --git a/arch/blackfin/mm/maccess.c b/arch/blackfin/mm/maccess.c new file mode 100644 index 00000000000..b71cebc1f8a --- /dev/null +++ b/arch/blackfin/mm/maccess.c | |||
@@ -0,0 +1,97 @@ | |||
1 | /* | ||
2 | * safe read and write memory routines callable while atomic | ||
3 | * | ||
4 | * Copyright 2005-2008 Analog Devices Inc. | ||
5 | * | ||
6 | * Licensed under the GPL-2 or later. | ||
7 | */ | ||
8 | |||
9 | #include <linux/uaccess.h> | ||
10 | #include <asm/dma.h> | ||
11 | |||
12 | static int validate_memory_access_address(unsigned long addr, int size) | ||
13 | { | ||
14 | if (size < 0 || addr == 0) | ||
15 | return -EFAULT; | ||
16 | return bfin_mem_access_type(addr, size); | ||
17 | } | ||
18 | |||
19 | long probe_kernel_read(void *dst, void *src, size_t size) | ||
20 | { | ||
21 | unsigned long lsrc = (unsigned long)src; | ||
22 | int mem_type; | ||
23 | |||
24 | mem_type = validate_memory_access_address(lsrc, size); | ||
25 | if (mem_type < 0) | ||
26 | return mem_type; | ||
27 | |||
28 | if (lsrc >= SYSMMR_BASE) { | ||
29 | if (size == 2 && lsrc % 2 == 0) { | ||
30 | u16 mmr = bfin_read16(src); | ||
31 | memcpy(dst, &mmr, sizeof(mmr)); | ||
32 | return 0; | ||
33 | } else if (size == 4 && lsrc % 4 == 0) { | ||
34 | u32 mmr = bfin_read32(src); | ||
35 | memcpy(dst, &mmr, sizeof(mmr)); | ||
36 | return 0; | ||
37 | } | ||
38 | } else { | ||
39 | switch (mem_type) { | ||
40 | case BFIN_MEM_ACCESS_CORE: | ||
41 | case BFIN_MEM_ACCESS_CORE_ONLY: | ||
42 | return __probe_kernel_read(dst, src, size); | ||
43 | /* XXX: should support IDMA here with SMP */ | ||
44 | case BFIN_MEM_ACCESS_DMA: | ||
45 | if (dma_memcpy(dst, src, size)) | ||
46 | return 0; | ||
47 | break; | ||
48 | case BFIN_MEM_ACCESS_ITEST: | ||
49 | if (isram_memcpy(dst, src, size)) | ||
50 | return 0; | ||
51 | break; | ||
52 | } | ||
53 | } | ||
54 | |||
55 | return -EFAULT; | ||
56 | } | ||
57 | |||
58 | long probe_kernel_write(void *dst, void *src, size_t size) | ||
59 | { | ||
60 | unsigned long ldst = (unsigned long)dst; | ||
61 | int mem_type; | ||
62 | |||
63 | mem_type = validate_memory_access_address(ldst, size); | ||
64 | if (mem_type < 0) | ||
65 | return mem_type; | ||
66 | |||
67 | if (ldst >= SYSMMR_BASE) { | ||
68 | if (size == 2 && ldst % 2 == 0) { | ||
69 | u16 mmr; | ||
70 | memcpy(&mmr, src, sizeof(mmr)); | ||
71 | bfin_write16(dst, mmr); | ||
72 | return 0; | ||
73 | } else if (size == 4 && ldst % 4 == 0) { | ||
74 | u32 mmr; | ||
75 | memcpy(&mmr, src, sizeof(mmr)); | ||
76 | bfin_write32(dst, mmr); | ||
77 | return 0; | ||
78 | } | ||
79 | } else { | ||
80 | switch (mem_type) { | ||
81 | case BFIN_MEM_ACCESS_CORE: | ||
82 | case BFIN_MEM_ACCESS_CORE_ONLY: | ||
83 | return __probe_kernel_write(dst, src, size); | ||
84 | /* XXX: should support IDMA here with SMP */ | ||
85 | case BFIN_MEM_ACCESS_DMA: | ||
86 | if (dma_memcpy(dst, src, size)) | ||
87 | return 0; | ||
88 | break; | ||
89 | case BFIN_MEM_ACCESS_ITEST: | ||
90 | if (isram_memcpy(dst, src, size)) | ||
91 | return 0; | ||
92 | break; | ||
93 | } | ||
94 | } | ||
95 | |||
96 | return -EFAULT; | ||
97 | } | ||
diff --git a/arch/frv/include/asm/page.h b/arch/frv/include/asm/page.h index 25c6a500235..8c97068ac8f 100644 --- a/arch/frv/include/asm/page.h +++ b/arch/frv/include/asm/page.h | |||
@@ -63,12 +63,10 @@ extern unsigned long max_pfn; | |||
63 | #define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT) | 63 | #define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT) |
64 | 64 | ||
65 | 65 | ||
66 | #ifdef CONFIG_MMU | ||
67 | #define VM_DATA_DEFAULT_FLAGS \ | 66 | #define VM_DATA_DEFAULT_FLAGS \ |
68 | (VM_READ | VM_WRITE | \ | 67 | (VM_READ | VM_WRITE | \ |
69 | ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \ | 68 | ((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \ |
70 | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) | 69 | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) |
71 | #endif | ||
72 | 70 | ||
73 | #endif /* __ASSEMBLY__ */ | 71 | #endif /* __ASSEMBLY__ */ |
74 | 72 | ||
diff --git a/arch/ia64/include/asm/acpi.h b/arch/ia64/include/asm/acpi.h index 91df9686a0d..7ae58892ba8 100644 --- a/arch/ia64/include/asm/acpi.h +++ b/arch/ia64/include/asm/acpi.h | |||
@@ -132,6 +132,12 @@ extern int __devinitdata pxm_to_nid_map[MAX_PXM_DOMAINS]; | |||
132 | extern int __initdata nid_to_pxm_map[MAX_NUMNODES]; | 132 | extern int __initdata nid_to_pxm_map[MAX_NUMNODES]; |
133 | #endif | 133 | #endif |
134 | 134 | ||
135 | static inline bool arch_has_acpi_pdc(void) { return true; } | ||
136 | static inline void arch_acpi_set_pdc_bits(u32 *buf) | ||
137 | { | ||
138 | buf[2] |= ACPI_PDC_EST_CAPABILITY_SMP; | ||
139 | } | ||
140 | |||
135 | #define acpi_unlazy_tlb(x) | 141 | #define acpi_unlazy_tlb(x) |
136 | 142 | ||
137 | #ifdef CONFIG_ACPI_NUMA | 143 | #ifdef CONFIG_ACPI_NUMA |
diff --git a/arch/ia64/include/asm/ftrace.h b/arch/ia64/include/asm/ftrace.h index d20db3c2a65..fbd1a2470ca 100644 --- a/arch/ia64/include/asm/ftrace.h +++ b/arch/ia64/include/asm/ftrace.h | |||
@@ -8,7 +8,6 @@ | |||
8 | extern void _mcount(unsigned long pfs, unsigned long r1, unsigned long b0, unsigned long r0); | 8 | extern void _mcount(unsigned long pfs, unsigned long r1, unsigned long b0, unsigned long r0); |
9 | #define mcount _mcount | 9 | #define mcount _mcount |
10 | 10 | ||
11 | #include <asm/kprobes.h> | ||
12 | /* In IA64, MCOUNT_ADDR is set in link time, so it's not a constant at compile time */ | 11 | /* In IA64, MCOUNT_ADDR is set in link time, so it's not a constant at compile time */ |
13 | #define MCOUNT_ADDR (((struct fnptr *)mcount)->ip) | 12 | #define MCOUNT_ADDR (((struct fnptr *)mcount)->ip) |
14 | #define FTRACE_ADDR (((struct fnptr *)ftrace_caller)->ip) | 13 | #define FTRACE_ADDR (((struct fnptr *)ftrace_caller)->ip) |
diff --git a/arch/ia64/include/asm/kprobes.h b/arch/ia64/include/asm/kprobes.h index dbf83fb28db..d5505d6f238 100644 --- a/arch/ia64/include/asm/kprobes.h +++ b/arch/ia64/include/asm/kprobes.h | |||
@@ -103,11 +103,6 @@ typedef struct kprobe_opcode { | |||
103 | bundle_t bundle; | 103 | bundle_t bundle; |
104 | } kprobe_opcode_t; | 104 | } kprobe_opcode_t; |
105 | 105 | ||
106 | struct fnptr { | ||
107 | unsigned long ip; | ||
108 | unsigned long gp; | ||
109 | }; | ||
110 | |||
111 | /* Architecture specific copy of original instruction*/ | 106 | /* Architecture specific copy of original instruction*/ |
112 | struct arch_specific_insn { | 107 | struct arch_specific_insn { |
113 | /* copy of the instruction to be emulated */ | 108 | /* copy of the instruction to be emulated */ |
diff --git a/arch/ia64/include/asm/tlb.h b/arch/ia64/include/asm/tlb.h index 85d965cb19a..23cce999eb1 100644 --- a/arch/ia64/include/asm/tlb.h +++ b/arch/ia64/include/asm/tlb.h | |||
@@ -74,7 +74,7 @@ struct ia64_tr_entry { | |||
74 | extern int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size); | 74 | extern int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size); |
75 | extern void ia64_ptr_entry(u64 target_mask, int slot); | 75 | extern void ia64_ptr_entry(u64 target_mask, int slot); |
76 | 76 | ||
77 | extern struct ia64_tr_entry __per_cpu_idtrs[NR_CPUS][2][IA64_TR_ALLOC_MAX]; | 77 | extern struct ia64_tr_entry *ia64_idtrs[NR_CPUS]; |
78 | 78 | ||
79 | /* | 79 | /* |
80 | region register macros | 80 | region register macros |
diff --git a/arch/ia64/include/asm/topology.h b/arch/ia64/include/asm/topology.h index 3ddb4e709db..d323071d0f9 100644 --- a/arch/ia64/include/asm/topology.h +++ b/arch/ia64/include/asm/topology.h | |||
@@ -33,7 +33,9 @@ | |||
33 | /* | 33 | /* |
34 | * Returns a bitmask of CPUs on Node 'node'. | 34 | * Returns a bitmask of CPUs on Node 'node'. |
35 | */ | 35 | */ |
36 | #define cpumask_of_node(node) (&node_to_cpu_mask[node]) | 36 | #define cpumask_of_node(node) ((node) == -1 ? \ |
37 | cpu_all_mask : \ | ||
38 | &node_to_cpu_mask[node]) | ||
37 | 39 | ||
38 | /* | 40 | /* |
39 | * Returns the number of the node containing Node 'nid'. | 41 | * Returns the number of the node containing Node 'nid'. |
diff --git a/arch/ia64/include/asm/types.h b/arch/ia64/include/asm/types.h index bcd260e597d..93773fd37be 100644 --- a/arch/ia64/include/asm/types.h +++ b/arch/ia64/include/asm/types.h | |||
@@ -35,6 +35,11 @@ typedef unsigned int umode_t; | |||
35 | */ | 35 | */ |
36 | # ifdef __KERNEL__ | 36 | # ifdef __KERNEL__ |
37 | 37 | ||
38 | struct fnptr { | ||
39 | unsigned long ip; | ||
40 | unsigned long gp; | ||
41 | }; | ||
42 | |||
38 | /* DMA addresses are 64-bits wide, in general. */ | 43 | /* DMA addresses are 64-bits wide, in general. */ |
39 | typedef u64 dma_addr_t; | 44 | typedef u64 dma_addr_t; |
40 | 45 | ||
diff --git a/arch/ia64/kernel/Makefile b/arch/ia64/kernel/Makefile index 2a75e937ae8..e1236349c99 100644 --- a/arch/ia64/kernel/Makefile +++ b/arch/ia64/kernel/Makefile | |||
@@ -18,10 +18,6 @@ obj-$(CONFIG_IA64_GENERIC) += acpi-ext.o | |||
18 | obj-$(CONFIG_IA64_HP_ZX1) += acpi-ext.o | 18 | obj-$(CONFIG_IA64_HP_ZX1) += acpi-ext.o |
19 | obj-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += acpi-ext.o | 19 | obj-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += acpi-ext.o |
20 | 20 | ||
21 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | ||
22 | obj-y += acpi-processor.o | ||
23 | endif | ||
24 | |||
25 | obj-$(CONFIG_IA64_PALINFO) += palinfo.o | 21 | obj-$(CONFIG_IA64_PALINFO) += palinfo.o |
26 | obj-$(CONFIG_IOSAPIC) += iosapic.o | 22 | obj-$(CONFIG_IOSAPIC) += iosapic.o |
27 | obj-$(CONFIG_MODULES) += module.o | 23 | obj-$(CONFIG_MODULES) += module.o |
diff --git a/arch/ia64/kernel/acpi-processor.c b/arch/ia64/kernel/acpi-processor.c deleted file mode 100644 index dbda7bde611..00000000000 --- a/arch/ia64/kernel/acpi-processor.c +++ /dev/null | |||
@@ -1,85 +0,0 @@ | |||
1 | /* | ||
2 | * arch/ia64/kernel/acpi-processor.c | ||
3 | * | ||
4 | * Copyright (C) 2005 Intel Corporation | ||
5 | * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> | ||
6 | * - Added _PDC for platforms with Intel CPUs | ||
7 | */ | ||
8 | |||
9 | #include <linux/kernel.h> | ||
10 | #include <linux/module.h> | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/acpi.h> | ||
13 | |||
14 | #include <acpi/processor.h> | ||
15 | #include <asm/acpi.h> | ||
16 | |||
17 | static void init_intel_pdc(struct acpi_processor *pr) | ||
18 | { | ||
19 | struct acpi_object_list *obj_list; | ||
20 | union acpi_object *obj; | ||
21 | u32 *buf; | ||
22 | |||
23 | /* allocate and initialize pdc. It will be used later. */ | ||
24 | obj_list = kmalloc(sizeof(struct acpi_object_list), GFP_KERNEL); | ||
25 | if (!obj_list) { | ||
26 | printk(KERN_ERR "Memory allocation error\n"); | ||
27 | return; | ||
28 | } | ||
29 | |||
30 | obj = kmalloc(sizeof(union acpi_object), GFP_KERNEL); | ||
31 | if (!obj) { | ||
32 | printk(KERN_ERR "Memory allocation error\n"); | ||
33 | kfree(obj_list); | ||
34 | return; | ||
35 | } | ||
36 | |||
37 | buf = kmalloc(12, GFP_KERNEL); | ||
38 | if (!buf) { | ||
39 | printk(KERN_ERR "Memory allocation error\n"); | ||
40 | kfree(obj); | ||
41 | kfree(obj_list); | ||
42 | return; | ||
43 | } | ||
44 | |||
45 | buf[0] = ACPI_PDC_REVISION_ID; | ||
46 | buf[1] = 1; | ||
47 | buf[2] = ACPI_PDC_EST_CAPABILITY_SMP; | ||
48 | /* | ||
49 | * The default of PDC_SMP_T_SWCOORD bit is set for IA64 cpu so | ||
50 | * that OSPM is capable of native ACPI throttling software | ||
51 | * coordination using BIOS supplied _TSD info. | ||
52 | */ | ||
53 | buf[2] |= ACPI_PDC_SMP_T_SWCOORD; | ||
54 | |||
55 | obj->type = ACPI_TYPE_BUFFER; | ||
56 | obj->buffer.length = 12; | ||
57 | obj->buffer.pointer = (u8 *) buf; | ||
58 | obj_list->count = 1; | ||
59 | obj_list->pointer = obj; | ||
60 | pr->pdc = obj_list; | ||
61 | |||
62 | return; | ||
63 | } | ||
64 | |||
65 | /* Initialize _PDC data based on the CPU vendor */ | ||
66 | void arch_acpi_processor_init_pdc(struct acpi_processor *pr) | ||
67 | { | ||
68 | pr->pdc = NULL; | ||
69 | init_intel_pdc(pr); | ||
70 | return; | ||
71 | } | ||
72 | |||
73 | EXPORT_SYMBOL(arch_acpi_processor_init_pdc); | ||
74 | |||
75 | void arch_acpi_processor_cleanup_pdc(struct acpi_processor *pr) | ||
76 | { | ||
77 | if (pr->pdc) { | ||
78 | kfree(pr->pdc->pointer->buffer.pointer); | ||
79 | kfree(pr->pdc->pointer); | ||
80 | kfree(pr->pdc); | ||
81 | pr->pdc = NULL; | ||
82 | } | ||
83 | } | ||
84 | |||
85 | EXPORT_SYMBOL(arch_acpi_processor_cleanup_pdc); | ||
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c index 32f2639e9b0..378b4833024 100644 --- a/arch/ia64/kernel/mca.c +++ b/arch/ia64/kernel/mca.c | |||
@@ -1225,9 +1225,12 @@ static void mca_insert_tr(u64 iord) | |||
1225 | unsigned long psr; | 1225 | unsigned long psr; |
1226 | int cpu = smp_processor_id(); | 1226 | int cpu = smp_processor_id(); |
1227 | 1227 | ||
1228 | if (!ia64_idtrs[cpu]) | ||
1229 | return; | ||
1230 | |||
1228 | psr = ia64_clear_ic(); | 1231 | psr = ia64_clear_ic(); |
1229 | for (i = IA64_TR_ALLOC_BASE; i < IA64_TR_ALLOC_MAX; i++) { | 1232 | for (i = IA64_TR_ALLOC_BASE; i < IA64_TR_ALLOC_MAX; i++) { |
1230 | p = &__per_cpu_idtrs[cpu][iord-1][i]; | 1233 | p = ia64_idtrs[cpu] + (iord - 1) * IA64_TR_ALLOC_MAX; |
1231 | if (p->pte & 0x1) { | 1234 | if (p->pte & 0x1) { |
1232 | old_rr = ia64_get_rr(p->ifa); | 1235 | old_rr = ia64_get_rr(p->ifa); |
1233 | if (old_rr != p->rr) { | 1236 | if (old_rr != p->rr) { |
diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c index 5246285a95f..6bcbe215b9a 100644 --- a/arch/ia64/kernel/perfmon.c +++ b/arch/ia64/kernel/perfmon.c | |||
@@ -2293,7 +2293,7 @@ pfm_smpl_buffer_alloc(struct task_struct *task, struct file *filp, pfm_context_t | |||
2293 | * if ((mm->total_vm << PAGE_SHIFT) + len> task->rlim[RLIMIT_AS].rlim_cur) | 2293 | * if ((mm->total_vm << PAGE_SHIFT) + len> task->rlim[RLIMIT_AS].rlim_cur) |
2294 | * return -ENOMEM; | 2294 | * return -ENOMEM; |
2295 | */ | 2295 | */ |
2296 | if (size > task->signal->rlim[RLIMIT_MEMLOCK].rlim_cur) | 2296 | if (size > task_rlimit(task, RLIMIT_MEMLOCK)) |
2297 | return -ENOMEM; | 2297 | return -ENOMEM; |
2298 | 2298 | ||
2299 | /* | 2299 | /* |
diff --git a/arch/ia64/kvm/vcpu.h b/arch/ia64/kvm/vcpu.h index 360724d3ae6..988911b4cc7 100644 --- a/arch/ia64/kvm/vcpu.h +++ b/arch/ia64/kvm/vcpu.h | |||
@@ -388,6 +388,9 @@ static inline u64 __gpfn_is_io(u64 gpfn) | |||
388 | #define _vmm_raw_spin_lock(x) do {}while(0) | 388 | #define _vmm_raw_spin_lock(x) do {}while(0) |
389 | #define _vmm_raw_spin_unlock(x) do {}while(0) | 389 | #define _vmm_raw_spin_unlock(x) do {}while(0) |
390 | #else | 390 | #else |
391 | typedef struct { | ||
392 | volatile unsigned int lock; | ||
393 | } vmm_spinlock_t; | ||
391 | #define _vmm_raw_spin_lock(x) \ | 394 | #define _vmm_raw_spin_lock(x) \ |
392 | do { \ | 395 | do { \ |
393 | __u32 *ia64_spinlock_ptr = (__u32 *) (x); \ | 396 | __u32 *ia64_spinlock_ptr = (__u32 *) (x); \ |
@@ -405,12 +408,12 @@ static inline u64 __gpfn_is_io(u64 gpfn) | |||
405 | 408 | ||
406 | #define _vmm_raw_spin_unlock(x) \ | 409 | #define _vmm_raw_spin_unlock(x) \ |
407 | do { barrier(); \ | 410 | do { barrier(); \ |
408 | ((spinlock_t *)x)->raw_lock.lock = 0; } \ | 411 | ((vmm_spinlock_t *)x)->lock = 0; } \ |
409 | while (0) | 412 | while (0) |
410 | #endif | 413 | #endif |
411 | 414 | ||
412 | void vmm_spin_lock(spinlock_t *lock); | 415 | void vmm_spin_lock(vmm_spinlock_t *lock); |
413 | void vmm_spin_unlock(spinlock_t *lock); | 416 | void vmm_spin_unlock(vmm_spinlock_t *lock); |
414 | enum { | 417 | enum { |
415 | I_TLB = 1, | 418 | I_TLB = 1, |
416 | D_TLB = 2 | 419 | D_TLB = 2 |
diff --git a/arch/ia64/kvm/vmm.c b/arch/ia64/kvm/vmm.c index f4b4c899bb6..7a62f75778c 100644 --- a/arch/ia64/kvm/vmm.c +++ b/arch/ia64/kvm/vmm.c | |||
@@ -60,12 +60,12 @@ static void __exit kvm_vmm_exit(void) | |||
60 | return ; | 60 | return ; |
61 | } | 61 | } |
62 | 62 | ||
63 | void vmm_spin_lock(spinlock_t *lock) | 63 | void vmm_spin_lock(vmm_spinlock_t *lock) |
64 | { | 64 | { |
65 | _vmm_raw_spin_lock(lock); | 65 | _vmm_raw_spin_lock(lock); |
66 | } | 66 | } |
67 | 67 | ||
68 | void vmm_spin_unlock(spinlock_t *lock) | 68 | void vmm_spin_unlock(vmm_spinlock_t *lock) |
69 | { | 69 | { |
70 | _vmm_raw_spin_unlock(lock); | 70 | _vmm_raw_spin_unlock(lock); |
71 | } | 71 | } |
diff --git a/arch/ia64/kvm/vtlb.c b/arch/ia64/kvm/vtlb.c index 20b3852f7a6..4332f7ee520 100644 --- a/arch/ia64/kvm/vtlb.c +++ b/arch/ia64/kvm/vtlb.c | |||
@@ -182,7 +182,7 @@ void mark_pages_dirty(struct kvm_vcpu *v, u64 pte, u64 ps) | |||
182 | { | 182 | { |
183 | u64 i, dirty_pages = 1; | 183 | u64 i, dirty_pages = 1; |
184 | u64 base_gfn = (pte&_PAGE_PPN_MASK) >> PAGE_SHIFT; | 184 | u64 base_gfn = (pte&_PAGE_PPN_MASK) >> PAGE_SHIFT; |
185 | spinlock_t *lock = __kvm_va(v->arch.dirty_log_lock_pa); | 185 | vmm_spinlock_t *lock = __kvm_va(v->arch.dirty_log_lock_pa); |
186 | void *dirty_bitmap = (void *)KVM_MEM_DIRTY_LOG_BASE; | 186 | void *dirty_bitmap = (void *)KVM_MEM_DIRTY_LOG_BASE; |
187 | 187 | ||
188 | dirty_pages <<= ps <= PAGE_SHIFT ? 0 : ps - PAGE_SHIFT; | 188 | dirty_pages <<= ps <= PAGE_SHIFT ? 0 : ps - PAGE_SHIFT; |
diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c index b9609c69343..7c0d4814a68 100644 --- a/arch/ia64/mm/init.c +++ b/arch/ia64/mm/init.c | |||
@@ -91,7 +91,7 @@ dma_mark_clean(void *addr, size_t size) | |||
91 | inline void | 91 | inline void |
92 | ia64_set_rbs_bot (void) | 92 | ia64_set_rbs_bot (void) |
93 | { | 93 | { |
94 | unsigned long stack_size = current->signal->rlim[RLIMIT_STACK].rlim_max & -16; | 94 | unsigned long stack_size = rlimit_max(RLIMIT_STACK) & -16; |
95 | 95 | ||
96 | if (stack_size > MAX_USER_STACK_SIZE) | 96 | if (stack_size > MAX_USER_STACK_SIZE) |
97 | stack_size = MAX_USER_STACK_SIZE; | 97 | stack_size = MAX_USER_STACK_SIZE; |
diff --git a/arch/ia64/mm/tlb.c b/arch/ia64/mm/tlb.c index ee09d261f2e..f3de9d7a98b 100644 --- a/arch/ia64/mm/tlb.c +++ b/arch/ia64/mm/tlb.c | |||
@@ -48,7 +48,7 @@ DEFINE_PER_CPU(u8, ia64_need_tlb_flush); | |||
48 | DEFINE_PER_CPU(u8, ia64_tr_num); /*Number of TR slots in current processor*/ | 48 | DEFINE_PER_CPU(u8, ia64_tr_num); /*Number of TR slots in current processor*/ |
49 | DEFINE_PER_CPU(u8, ia64_tr_used); /*Max Slot number used by kernel*/ | 49 | DEFINE_PER_CPU(u8, ia64_tr_used); /*Max Slot number used by kernel*/ |
50 | 50 | ||
51 | struct ia64_tr_entry __per_cpu_idtrs[NR_CPUS][2][IA64_TR_ALLOC_MAX]; | 51 | struct ia64_tr_entry *ia64_idtrs[NR_CPUS]; |
52 | 52 | ||
53 | /* | 53 | /* |
54 | * Initializes the ia64_ctx.bitmap array based on max_ctx+1. | 54 | * Initializes the ia64_ctx.bitmap array based on max_ctx+1. |
@@ -429,10 +429,16 @@ int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size) | |||
429 | struct ia64_tr_entry *p; | 429 | struct ia64_tr_entry *p; |
430 | int cpu = smp_processor_id(); | 430 | int cpu = smp_processor_id(); |
431 | 431 | ||
432 | if (!ia64_idtrs[cpu]) { | ||
433 | ia64_idtrs[cpu] = kmalloc(2 * IA64_TR_ALLOC_MAX * | ||
434 | sizeof (struct ia64_tr_entry), GFP_KERNEL); | ||
435 | if (!ia64_idtrs[cpu]) | ||
436 | return -ENOMEM; | ||
437 | } | ||
432 | r = -EINVAL; | 438 | r = -EINVAL; |
433 | /*Check overlap with existing TR entries*/ | 439 | /*Check overlap with existing TR entries*/ |
434 | if (target_mask & 0x1) { | 440 | if (target_mask & 0x1) { |
435 | p = &__per_cpu_idtrs[cpu][0][0]; | 441 | p = ia64_idtrs[cpu]; |
436 | for (i = IA64_TR_ALLOC_BASE; i <= per_cpu(ia64_tr_used, cpu); | 442 | for (i = IA64_TR_ALLOC_BASE; i <= per_cpu(ia64_tr_used, cpu); |
437 | i++, p++) { | 443 | i++, p++) { |
438 | if (p->pte & 0x1) | 444 | if (p->pte & 0x1) |
@@ -444,7 +450,7 @@ int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size) | |||
444 | } | 450 | } |
445 | } | 451 | } |
446 | if (target_mask & 0x2) { | 452 | if (target_mask & 0x2) { |
447 | p = &__per_cpu_idtrs[cpu][1][0]; | 453 | p = ia64_idtrs[cpu] + IA64_TR_ALLOC_MAX; |
448 | for (i = IA64_TR_ALLOC_BASE; i <= per_cpu(ia64_tr_used, cpu); | 454 | for (i = IA64_TR_ALLOC_BASE; i <= per_cpu(ia64_tr_used, cpu); |
449 | i++, p++) { | 455 | i++, p++) { |
450 | if (p->pte & 0x1) | 456 | if (p->pte & 0x1) |
@@ -459,16 +465,16 @@ int ia64_itr_entry(u64 target_mask, u64 va, u64 pte, u64 log_size) | |||
459 | for (i = IA64_TR_ALLOC_BASE; i < per_cpu(ia64_tr_num, cpu); i++) { | 465 | for (i = IA64_TR_ALLOC_BASE; i < per_cpu(ia64_tr_num, cpu); i++) { |
460 | switch (target_mask & 0x3) { | 466 | switch (target_mask & 0x3) { |
461 | case 1: | 467 | case 1: |
462 | if (!(__per_cpu_idtrs[cpu][0][i].pte & 0x1)) | 468 | if (!((ia64_idtrs[cpu] + i)->pte & 0x1)) |
463 | goto found; | 469 | goto found; |
464 | continue; | 470 | continue; |
465 | case 2: | 471 | case 2: |
466 | if (!(__per_cpu_idtrs[cpu][1][i].pte & 0x1)) | 472 | if (!((ia64_idtrs[cpu] + IA64_TR_ALLOC_MAX + i)->pte & 0x1)) |
467 | goto found; | 473 | goto found; |
468 | continue; | 474 | continue; |
469 | case 3: | 475 | case 3: |
470 | if (!(__per_cpu_idtrs[cpu][0][i].pte & 0x1) && | 476 | if (!((ia64_idtrs[cpu] + i)->pte & 0x1) && |
471 | !(__per_cpu_idtrs[cpu][1][i].pte & 0x1)) | 477 | !((ia64_idtrs[cpu] + IA64_TR_ALLOC_MAX + i)->pte & 0x1)) |
472 | goto found; | 478 | goto found; |
473 | continue; | 479 | continue; |
474 | default: | 480 | default: |
@@ -488,7 +494,7 @@ found: | |||
488 | if (target_mask & 0x1) { | 494 | if (target_mask & 0x1) { |
489 | ia64_itr(0x1, i, va, pte, log_size); | 495 | ia64_itr(0x1, i, va, pte, log_size); |
490 | ia64_srlz_i(); | 496 | ia64_srlz_i(); |
491 | p = &__per_cpu_idtrs[cpu][0][i]; | 497 | p = ia64_idtrs[cpu] + i; |
492 | p->ifa = va; | 498 | p->ifa = va; |
493 | p->pte = pte; | 499 | p->pte = pte; |
494 | p->itir = log_size << 2; | 500 | p->itir = log_size << 2; |
@@ -497,7 +503,7 @@ found: | |||
497 | if (target_mask & 0x2) { | 503 | if (target_mask & 0x2) { |
498 | ia64_itr(0x2, i, va, pte, log_size); | 504 | ia64_itr(0x2, i, va, pte, log_size); |
499 | ia64_srlz_i(); | 505 | ia64_srlz_i(); |
500 | p = &__per_cpu_idtrs[cpu][1][i]; | 506 | p = ia64_idtrs[cpu] + IA64_TR_ALLOC_MAX + i; |
501 | p->ifa = va; | 507 | p->ifa = va; |
502 | p->pte = pte; | 508 | p->pte = pte; |
503 | p->itir = log_size << 2; | 509 | p->itir = log_size << 2; |
@@ -528,7 +534,7 @@ void ia64_ptr_entry(u64 target_mask, int slot) | |||
528 | return; | 534 | return; |
529 | 535 | ||
530 | if (target_mask & 0x1) { | 536 | if (target_mask & 0x1) { |
531 | p = &__per_cpu_idtrs[cpu][0][slot]; | 537 | p = ia64_idtrs[cpu] + slot; |
532 | if ((p->pte&0x1) && is_tr_overlap(p, p->ifa, p->itir>>2)) { | 538 | if ((p->pte&0x1) && is_tr_overlap(p, p->ifa, p->itir>>2)) { |
533 | p->pte = 0; | 539 | p->pte = 0; |
534 | ia64_ptr(0x1, p->ifa, p->itir>>2); | 540 | ia64_ptr(0x1, p->ifa, p->itir>>2); |
@@ -537,7 +543,7 @@ void ia64_ptr_entry(u64 target_mask, int slot) | |||
537 | } | 543 | } |
538 | 544 | ||
539 | if (target_mask & 0x2) { | 545 | if (target_mask & 0x2) { |
540 | p = &__per_cpu_idtrs[cpu][1][slot]; | 546 | p = ia64_idtrs[cpu] + IA64_TR_ALLOC_MAX + slot; |
541 | if ((p->pte & 0x1) && is_tr_overlap(p, p->ifa, p->itir>>2)) { | 547 | if ((p->pte & 0x1) && is_tr_overlap(p, p->ifa, p->itir>>2)) { |
542 | p->pte = 0; | 548 | p->pte = 0; |
543 | ia64_ptr(0x2, p->ifa, p->itir>>2); | 549 | ia64_ptr(0x2, p->ifa, p->itir>>2); |
@@ -546,8 +552,8 @@ void ia64_ptr_entry(u64 target_mask, int slot) | |||
546 | } | 552 | } |
547 | 553 | ||
548 | for (i = per_cpu(ia64_tr_used, cpu); i >= IA64_TR_ALLOC_BASE; i--) { | 554 | for (i = per_cpu(ia64_tr_used, cpu); i >= IA64_TR_ALLOC_BASE; i--) { |
549 | if ((__per_cpu_idtrs[cpu][0][i].pte & 0x1) || | 555 | if (((ia64_idtrs[cpu] + i)->pte & 0x1) || |
550 | (__per_cpu_idtrs[cpu][1][i].pte & 0x1)) | 556 | ((ia64_idtrs[cpu] + IA64_TR_ALLOC_MAX + i)->pte & 0x1)) |
551 | break; | 557 | break; |
552 | } | 558 | } |
553 | per_cpu(ia64_tr_used, cpu) = i; | 559 | per_cpu(ia64_tr_used, cpu) = i; |
diff --git a/arch/m68k/include/asm/io_no.h b/arch/m68k/include/asm/io_no.h index 7f57436ec18..359065d5a9f 100644 --- a/arch/m68k/include/asm/io_no.h +++ b/arch/m68k/include/asm/io_no.h | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | #ifdef __KERNEL__ | 4 | #ifdef __KERNEL__ |
5 | 5 | ||
6 | #include <asm/virtconvert.h> | ||
6 | 7 | ||
7 | /* | 8 | /* |
8 | * These are for ISA/PCI shared memory _only_ and should never be used | 9 | * These are for ISA/PCI shared memory _only_ and should never be used |
@@ -165,19 +166,6 @@ static inline void *ioremap_fullcache(unsigned long physaddr, unsigned long size | |||
165 | 166 | ||
166 | extern void iounmap(void *addr); | 167 | extern void iounmap(void *addr); |
167 | 168 | ||
168 | /* Pages to physical address... */ | ||
169 | #define page_to_phys(page) ((page - mem_map) << PAGE_SHIFT) | ||
170 | #define page_to_bus(page) ((page - mem_map) << PAGE_SHIFT) | ||
171 | |||
172 | /* | ||
173 | * Macros used for converting between virtual and physical mappings. | ||
174 | */ | ||
175 | #define phys_to_virt(vaddr) ((void *) (vaddr)) | ||
176 | #define virt_to_phys(vaddr) ((unsigned long) (vaddr)) | ||
177 | |||
178 | #define virt_to_bus virt_to_phys | ||
179 | #define bus_to_virt phys_to_virt | ||
180 | |||
181 | /* | 169 | /* |
182 | * Convert a physical pointer to a virtual kernel pointer for /dev/mem | 170 | * Convert a physical pointer to a virtual kernel pointer for /dev/mem |
183 | * access | 171 | * access |
diff --git a/arch/m68k/include/asm/page_no.h b/arch/m68k/include/asm/page_no.h index 1f31b060cc8..8029a33e03c 100644 --- a/arch/m68k/include/asm/page_no.h +++ b/arch/m68k/include/asm/page_no.h | |||
@@ -56,8 +56,8 @@ extern unsigned long memory_end; | |||
56 | 56 | ||
57 | #ifndef __ASSEMBLY__ | 57 | #ifndef __ASSEMBLY__ |
58 | 58 | ||
59 | #define __pa(vaddr) virt_to_phys((void *)(vaddr)) | 59 | #define __pa(vaddr) ((unsigned long)(vaddr)) |
60 | #define __va(paddr) phys_to_virt((unsigned long)(paddr)) | 60 | #define __va(paddr) ((void *)(paddr)) |
61 | 61 | ||
62 | #define virt_to_pfn(kaddr) (__pa(kaddr) >> PAGE_SHIFT) | 62 | #define virt_to_pfn(kaddr) (__pa(kaddr) >> PAGE_SHIFT) |
63 | #define pfn_to_virt(pfn) __va((pfn) << PAGE_SHIFT) | 63 | #define pfn_to_virt(pfn) __va((pfn) << PAGE_SHIFT) |
diff --git a/arch/m68k/include/asm/virtconvert.h b/arch/m68k/include/asm/virtconvert.h index 22ab05c9c52..3f834b3ab5b 100644 --- a/arch/m68k/include/asm/virtconvert.h +++ b/arch/m68k/include/asm/virtconvert.h | |||
@@ -26,6 +26,7 @@ static inline void *phys_to_virt(unsigned long address) | |||
26 | } | 26 | } |
27 | 27 | ||
28 | /* Permanent address of a page. */ | 28 | /* Permanent address of a page. */ |
29 | #ifdef CONFIG_MMU | ||
29 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK | 30 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK |
30 | #define page_to_phys(page) \ | 31 | #define page_to_phys(page) \ |
31 | __pa(PAGE_OFFSET + (((page) - pg_data_map[0].node_mem_map) << PAGE_SHIFT)) | 32 | __pa(PAGE_OFFSET + (((page) - pg_data_map[0].node_mem_map) << PAGE_SHIFT)) |
@@ -37,6 +38,9 @@ static inline void *phys_to_virt(unsigned long address) | |||
37 | page_to_pfn(__page) << PAGE_SHIFT; \ | 38 | page_to_pfn(__page) << PAGE_SHIFT; \ |
38 | }) | 39 | }) |
39 | #endif | 40 | #endif |
41 | #else | ||
42 | #define page_to_phys(page) (((page) - mem_map) << PAGE_SHIFT) | ||
43 | #endif | ||
40 | 44 | ||
41 | /* | 45 | /* |
42 | * IO bus memory addresses are 1:1 with the physical address, | 46 | * IO bus memory addresses are 1:1 with the physical address, |
diff --git a/arch/m68knommu/platform/coldfire/pit.c b/arch/m68knommu/platform/coldfire/pit.c index d8720ee3451..aebea19abd7 100644 --- a/arch/m68knommu/platform/coldfire/pit.c +++ b/arch/m68knommu/platform/coldfire/pit.c | |||
@@ -146,7 +146,6 @@ static struct clocksource pit_clk = { | |||
146 | .read = pit_read_clk, | 146 | .read = pit_read_clk, |
147 | .shift = 20, | 147 | .shift = 20, |
148 | .mask = CLOCKSOURCE_MASK(32), | 148 | .mask = CLOCKSOURCE_MASK(32), |
149 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | ||
150 | }; | 149 | }; |
151 | 150 | ||
152 | /***************************************************************************/ | 151 | /***************************************************************************/ |
diff --git a/arch/mips/alchemy/common/dbdma.c b/arch/mips/alchemy/common/dbdma.c index 19c1c82849f..5c68569344c 100644 --- a/arch/mips/alchemy/common/dbdma.c +++ b/arch/mips/alchemy/common/dbdma.c | |||
@@ -613,7 +613,7 @@ u32 _au1xxx_dbdma_put_source(u32 chanid, void *buf, int nbytes, u32 flags) | |||
613 | dma_cache_wback_inv((unsigned long)buf, nbytes); | 613 | dma_cache_wback_inv((unsigned long)buf, nbytes); |
614 | dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */ | 614 | dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */ |
615 | au_sync(); | 615 | au_sync(); |
616 | dma_cache_wback_inv((unsigned long)dp, sizeof(dp)); | 616 | dma_cache_wback_inv((unsigned long)dp, sizeof(*dp)); |
617 | ctp->chan_ptr->ddma_dbell = 0; | 617 | ctp->chan_ptr->ddma_dbell = 0; |
618 | 618 | ||
619 | /* Get next descriptor pointer. */ | 619 | /* Get next descriptor pointer. */ |
@@ -676,7 +676,7 @@ _au1xxx_dbdma_put_dest(u32 chanid, void *buf, int nbytes, u32 flags) | |||
676 | dma_cache_inv((unsigned long)buf, nbytes); | 676 | dma_cache_inv((unsigned long)buf, nbytes); |
677 | dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */ | 677 | dp->dscr_cmd0 |= DSCR_CMD0_V; /* Let it rip */ |
678 | au_sync(); | 678 | au_sync(); |
679 | dma_cache_wback_inv((unsigned long)dp, sizeof(dp)); | 679 | dma_cache_wback_inv((unsigned long)dp, sizeof(*dp)); |
680 | ctp->chan_ptr->ddma_dbell = 0; | 680 | ctp->chan_ptr->ddma_dbell = 0; |
681 | 681 | ||
682 | /* Get next descriptor pointer. */ | 682 | /* Get next descriptor pointer. */ |
diff --git a/arch/mips/ar7/prom.c b/arch/mips/ar7/prom.c index 5ad6f1db656..c1fdd368281 100644 --- a/arch/mips/ar7/prom.c +++ b/arch/mips/ar7/prom.c | |||
@@ -219,14 +219,6 @@ static void __init console_config(void) | |||
219 | if (strstr(prom_getcmdline(), "console=")) | 219 | if (strstr(prom_getcmdline(), "console=")) |
220 | return; | 220 | return; |
221 | 221 | ||
222 | #ifdef CONFIG_KGDB | ||
223 | if (!strstr(prom_getcmdline(), "nokgdb")) { | ||
224 | strcat(prom_getcmdline(), " console=kgdb"); | ||
225 | kgdb_enabled = 1; | ||
226 | return; | ||
227 | } | ||
228 | #endif | ||
229 | |||
230 | s = prom_getenv("modetty0"); | 222 | s = prom_getenv("modetty0"); |
231 | if (s) { | 223 | if (s) { |
232 | baud = simple_strtoul(s, &p, 10); | 224 | baud = simple_strtoul(s, &p, 10); |
@@ -280,13 +272,6 @@ static inline void serial_out(int offset, int value) | |||
280 | writel(value, (void *)PORT(offset)); | 272 | writel(value, (void *)PORT(offset)); |
281 | } | 273 | } |
282 | 274 | ||
283 | char prom_getchar(void) | ||
284 | { | ||
285 | while (!(serial_in(UART_LSR) & UART_LSR_DR)) | ||
286 | ; | ||
287 | return serial_in(UART_RX); | ||
288 | } | ||
289 | |||
290 | int prom_putchar(char c) | 275 | int prom_putchar(char c) |
291 | { | 276 | { |
292 | while ((serial_in(UART_LSR) & UART_LSR_TEMT) == 0) | 277 | while ((serial_in(UART_LSR) & UART_LSR_TEMT) == 0) |
diff --git a/arch/mips/bcm63xx/boards/board_bcm963xx.c b/arch/mips/bcm63xx/boards/board_bcm963xx.c index 05a35cf5963..1fe412c4317 100644 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c | |||
@@ -346,27 +346,26 @@ static struct board_info __initdata board_96348gw = { | |||
346 | }; | 346 | }; |
347 | 347 | ||
348 | static struct board_info __initdata board_FAST2404 = { | 348 | static struct board_info __initdata board_FAST2404 = { |
349 | .name = "F@ST2404", | 349 | .name = "F@ST2404", |
350 | .expected_cpu_id = 0x6348, | 350 | .expected_cpu_id = 0x6348, |
351 | |||
352 | .has_enet0 = 1, | ||
353 | .has_enet1 = 1, | ||
354 | .has_pci = 1, | ||
355 | 351 | ||
356 | .enet0 = { | 352 | .has_enet0 = 1, |
357 | .has_phy = 1, | 353 | .has_enet1 = 1, |
358 | .use_internal_phy = 1, | 354 | .has_pci = 1, |
359 | }, | ||
360 | 355 | ||
361 | .enet1 = { | 356 | .enet0 = { |
362 | .force_speed_100 = 1, | 357 | .has_phy = 1, |
363 | .force_duplex_full = 1, | 358 | .use_internal_phy = 1, |
364 | }, | 359 | }, |
365 | 360 | ||
361 | .enet1 = { | ||
362 | .force_speed_100 = 1, | ||
363 | .force_duplex_full = 1, | ||
364 | }, | ||
366 | 365 | ||
367 | .has_ohci0 = 1, | 366 | .has_ohci0 = 1, |
368 | .has_pccard = 1, | 367 | .has_pccard = 1, |
369 | .has_ehci0 = 1, | 368 | .has_ehci0 = 1, |
370 | }; | 369 | }; |
371 | 370 | ||
372 | static struct board_info __initdata board_DV201AMR = { | 371 | static struct board_info __initdata board_DV201AMR = { |
diff --git a/arch/mips/bcm63xx/prom.c b/arch/mips/bcm63xx/prom.c index fb284fbc585..be252efa075 100644 --- a/arch/mips/bcm63xx/prom.c +++ b/arch/mips/bcm63xx/prom.c | |||
@@ -40,9 +40,6 @@ void __init prom_init(void) | |||
40 | reg &= ~mask; | 40 | reg &= ~mask; |
41 | bcm_perf_writel(reg, PERF_CKCTL_REG); | 41 | bcm_perf_writel(reg, PERF_CKCTL_REG); |
42 | 42 | ||
43 | /* assign command line from kernel config */ | ||
44 | strcpy(arcs_cmdline, CONFIG_CMDLINE); | ||
45 | |||
46 | /* register gpiochip */ | 43 | /* register gpiochip */ |
47 | bcm63xx_gpio_init(); | 44 | bcm63xx_gpio_init(); |
48 | 45 | ||
diff --git a/arch/mips/boot/.gitignore b/arch/mips/boot/.gitignore index ba63401c6e1..4667a5f9280 100644 --- a/arch/mips/boot/.gitignore +++ b/arch/mips/boot/.gitignore | |||
@@ -1,4 +1,5 @@ | |||
1 | mkboot | 1 | mkboot |
2 | elf2ecoff | 2 | elf2ecoff |
3 | vmlinux.* | ||
3 | zImage | 4 | zImage |
4 | zImage.tmp | 5 | zImage.tmp |
diff --git a/arch/mips/boot/Makefile b/arch/mips/boot/Makefile index 094bc84765a..e39a08edcaa 100644 --- a/arch/mips/boot/Makefile +++ b/arch/mips/boot/Makefile | |||
@@ -28,7 +28,7 @@ VMLINUX = vmlinux | |||
28 | all: vmlinux.ecoff vmlinux.srec | 28 | all: vmlinux.ecoff vmlinux.srec |
29 | 29 | ||
30 | vmlinux.ecoff: $(obj)/elf2ecoff $(VMLINUX) | 30 | vmlinux.ecoff: $(obj)/elf2ecoff $(VMLINUX) |
31 | $(obj)/elf2ecoff $(VMLINUX) vmlinux.ecoff $(E2EFLAGS) | 31 | $(obj)/elf2ecoff $(VMLINUX) $(obj)/vmlinux.ecoff $(E2EFLAGS) |
32 | 32 | ||
33 | $(obj)/elf2ecoff: $(obj)/elf2ecoff.c | 33 | $(obj)/elf2ecoff: $(obj)/elf2ecoff.c |
34 | $(HOSTCC) -o $@ $^ | 34 | $(HOSTCC) -o $@ $^ |
diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile index e27f40bbd4e..671d3448fad 100644 --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile | |||
@@ -56,7 +56,7 @@ $(obj)/piggy.o: $(obj)/vmlinux.$(suffix_y) $(obj)/dummy.o | |||
56 | LDFLAGS_vmlinuz := $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T | 56 | LDFLAGS_vmlinuz := $(LDFLAGS) -Ttext $(VMLINUZ_LOAD_ADDRESS) -T |
57 | vmlinuz: $(src)/ld.script $(obj-y) $(obj)/piggy.o | 57 | vmlinuz: $(src)/ld.script $(obj-y) $(obj)/piggy.o |
58 | $(call if_changed,ld) | 58 | $(call if_changed,ld) |
59 | $(Q)$(OBJCOPY) $(OBJCOPYFLAGS) -R .comment -R .stab -R .stabstr -R .initrd -R .sysmap $@ | 59 | $(Q)$(OBJCOPY) $(OBJCOPYFLAGS) $@ |
60 | 60 | ||
61 | # | 61 | # |
62 | # Some DECstations need all possible sections of an ECOFF executable | 62 | # Some DECstations need all possible sections of an ECOFF executable |
@@ -84,14 +84,11 @@ vmlinuz.ecoff: $(obj)/../elf2ecoff $(VMLINUZ) | |||
84 | $(obj)/../elf2ecoff: $(src)/../elf2ecoff.c | 84 | $(obj)/../elf2ecoff: $(src)/../elf2ecoff.c |
85 | $(Q)$(HOSTCC) -o $@ $^ | 85 | $(Q)$(HOSTCC) -o $@ $^ |
86 | 86 | ||
87 | drop-sections = .reginfo .mdebug .comment .note .pdr .options .MIPS.options | 87 | OBJCOPYFLAGS_vmlinuz.bin := $(OBJCOPYFLAGS) -O binary |
88 | strip-flags = $(addprefix --remove-section=,$(drop-sections)) | ||
89 | |||
90 | OBJCOPYFLAGS_vmlinuz.bin := $(OBJCOPYFLAGS) -O binary $(strip-flags) | ||
91 | vmlinuz.bin: vmlinuz | 88 | vmlinuz.bin: vmlinuz |
92 | $(call if_changed,objcopy) | 89 | $(call if_changed,objcopy) |
93 | 90 | ||
94 | OBJCOPYFLAGS_vmlinuz.srec := $(OBJCOPYFLAGS) -S -O srec $(strip-flags) | 91 | OBJCOPYFLAGS_vmlinuz.srec := $(OBJCOPYFLAGS) -S -O srec |
95 | vmlinuz.srec: vmlinuz | 92 | vmlinuz.srec: vmlinuz |
96 | $(call if_changed,objcopy) | 93 | $(call if_changed,objcopy) |
97 | 94 | ||
diff --git a/arch/mips/boot/compressed/decompress.c b/arch/mips/boot/compressed/decompress.c index 67330c2f731..e48fd72898a 100644 --- a/arch/mips/boot/compressed/decompress.c +++ b/arch/mips/boot/compressed/decompress.c | |||
@@ -28,8 +28,6 @@ char *zimage_start; | |||
28 | 28 | ||
29 | /* The linker tells us where the image is. */ | 29 | /* The linker tells us where the image is. */ |
30 | extern unsigned char __image_begin, __image_end; | 30 | extern unsigned char __image_begin, __image_end; |
31 | extern unsigned char __ramdisk_begin, __ramdisk_end; | ||
32 | unsigned long initrd_size; | ||
33 | 31 | ||
34 | /* debug interfaces */ | 32 | /* debug interfaces */ |
35 | extern void puts(const char *s); | 33 | extern void puts(const char *s); |
@@ -102,14 +100,6 @@ void decompress_kernel(unsigned long boot_heap_start) | |||
102 | puthex((unsigned long)(zimage_size + zimage_start)); | 100 | puthex((unsigned long)(zimage_size + zimage_start)); |
103 | puts("\n"); | 101 | puts("\n"); |
104 | 102 | ||
105 | if (initrd_size) { | ||
106 | puts("initrd at: "); | ||
107 | puthex((unsigned long)(&__ramdisk_begin)); | ||
108 | puts(" "); | ||
109 | puthex((unsigned long)(&__ramdisk_end)); | ||
110 | puts("\n"); | ||
111 | } | ||
112 | |||
113 | /* this area are prepared for mallocing when decompressing */ | 103 | /* this area are prepared for mallocing when decompressing */ |
114 | free_mem_ptr = boot_heap_start; | 104 | free_mem_ptr = boot_heap_start; |
115 | free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE; | 105 | free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE; |
diff --git a/arch/mips/boot/compressed/ld.script b/arch/mips/boot/compressed/ld.script index 29e9f4c0d5d..613a35b02f5 100644 --- a/arch/mips/boot/compressed/ld.script +++ b/arch/mips/boot/compressed/ld.script | |||
@@ -1,150 +1,67 @@ | |||
1 | /* | ||
2 | * ld.script for compressed kernel support of MIPS | ||
3 | * | ||
4 | * Copyright (C) 2009 Lemote Inc. | ||
5 | * Author: Wu Zhangjin <wuzj@lemote.com> | ||
6 | */ | ||
7 | |||
1 | OUTPUT_ARCH(mips) | 8 | OUTPUT_ARCH(mips) |
2 | ENTRY(start) | 9 | ENTRY(start) |
3 | SECTIONS | 10 | SECTIONS |
4 | { | 11 | { |
5 | /* Read-only sections, merged into text segment: */ | 12 | /* . = VMLINUZ_LOAD_ADDRESS */ |
6 | .init : { *(.init) } =0 | 13 | /* read-only */ |
7 | .text : | 14 | _text = .; /* Text and read-only data */ |
8 | { | 15 | .text : { |
9 | _ftext = . ; | 16 | _ftext = . ; |
10 | *(.text) | 17 | *(.text) |
11 | *(.rodata) | 18 | *(.rodata) |
12 | *(.rodata1) | 19 | } = 0 |
13 | /* .gnu.warning sections are handled specially by elf32.em. */ | 20 | _etext = .; /* End of text section */ |
14 | *(.gnu.warning) | ||
15 | } =0 | ||
16 | .kstrtab : { *(.kstrtab) } | ||
17 | |||
18 | . = ALIGN(16); /* Exception table */ | ||
19 | __start___ex_table = .; | ||
20 | __ex_table : { *(__ex_table) } | ||
21 | __stop___ex_table = .; | ||
22 | |||
23 | __start___dbe_table = .; /* Exception table for data bus errors */ | ||
24 | __dbe_table : { *(__dbe_table) } | ||
25 | __stop___dbe_table = .; | ||
26 | |||
27 | __start___ksymtab = .; /* Kernel symbol table */ | ||
28 | __ksymtab : { *(__ksymtab) } | ||
29 | __stop___ksymtab = .; | ||
30 | |||
31 | _etext = .; | ||
32 | |||
33 | . = ALIGN(8192); | ||
34 | .data.init_task : { *(.data.init_task) } | ||
35 | |||
36 | /* Startup code */ | ||
37 | . = ALIGN(4096); | ||
38 | __init_begin = .; | ||
39 | .text.init : { *(.text.init) } | ||
40 | .data.init : { *(.data.init) } | ||
41 | . = ALIGN(16); | ||
42 | __setup_start = .; | ||
43 | .setup.init : { *(.setup.init) } | ||
44 | __setup_end = .; | ||
45 | __initcall_start = .; | ||
46 | .initcall.init : { *(.initcall.init) } | ||
47 | __initcall_end = .; | ||
48 | . = ALIGN(4096); /* Align double page for init_task_union */ | ||
49 | __init_end = .; | ||
50 | |||
51 | . = ALIGN(4096); | ||
52 | .data.page_aligned : { *(.data.idt) } | ||
53 | |||
54 | . = ALIGN(32); | ||
55 | .data.cacheline_aligned : { *(.data.cacheline_aligned) } | ||
56 | 21 | ||
57 | .fini : { *(.fini) } =0 | 22 | /* writable */ |
58 | .reginfo : { *(.reginfo) } | 23 | .data : { /* Data */ |
59 | /* Adjust the address for the data segment. We want to adjust up to | 24 | _fdata = . ; |
60 | the same address within the page on the next page up. It would | 25 | *(.data) |
61 | be more correct to do this: | 26 | /* Put the compressed image here, so bss is on the end. */ |
62 | . = .; | 27 | __image_begin = .; |
63 | The current expression does not correctly handle the case of a | 28 | *(.image) |
64 | text segment ending precisely at the end of a page; it causes the | 29 | __image_end = .; |
65 | data segment to skip a page. The above expression does not have | 30 | CONSTRUCTORS |
66 | this problem, but it will currently (2/95) cause BFD to allocate | 31 | } |
67 | a single segment, combining both text and data, for this case. | 32 | .sdata : { *(.sdata) } |
68 | This will prevent the text segment from being shared among | 33 | . = ALIGN(4); |
69 | multiple executions of the program; I think that is more | 34 | _edata = .; /* End of data section */ |
70 | important than losing a page of the virtual address space (note | ||
71 | that no actual memory is lost; the page which is skipped can not | ||
72 | be referenced). */ | ||
73 | . = .; | ||
74 | .data : | ||
75 | { | ||
76 | _fdata = . ; | ||
77 | *(.data) | ||
78 | 35 | ||
79 | /* Put the compressed image here, so bss is on the end. */ | 36 | /* BSS */ |
80 | __image_begin = .; | 37 | __bss_start = .; |
81 | *(.image) | 38 | _fbss = .; |
82 | __image_end = .; | 39 | .sbss : { *(.sbss) *(.scommon) } |
83 | /* Align the initial ramdisk image (INITRD) on page boundaries. */ | 40 | .bss : { |
84 | . = ALIGN(4096); | 41 | *(.dynbss) |
85 | __ramdisk_begin = .; | 42 | *(.bss) |
86 | *(.initrd) | 43 | *(COMMON) |
87 | __ramdisk_end = .; | 44 | } |
88 | . = ALIGN(4096); | 45 | . = ALIGN(4); |
46 | _end = . ; | ||
89 | 47 | ||
90 | CONSTRUCTORS | 48 | /* These are needed for ELF backends which have not yet been converted |
91 | } | 49 | * to the new style linker. */ |
92 | .data1 : { *(.data1) } | ||
93 | _gp = . + 0x8000; | ||
94 | .lit8 : { *(.lit8) } | ||
95 | .lit4 : { *(.lit4) } | ||
96 | .ctors : { *(.ctors) } | ||
97 | .dtors : { *(.dtors) } | ||
98 | .got : { *(.got.plt) *(.got) } | ||
99 | .dynamic : { *(.dynamic) } | ||
100 | /* We want the small data sections together, so single-instruction offsets | ||
101 | can access them all, and initialized data all before uninitialized, so | ||
102 | we can shorten the on-disk segment size. */ | ||
103 | .sdata : { *(.sdata) } | ||
104 | . = ALIGN(4); | ||
105 | _edata = .; | ||
106 | PROVIDE (edata = .); | ||
107 | 50 | ||
108 | __bss_start = .; | 51 | .stab 0 : { *(.stab) } |
109 | _fbss = .; | 52 | .stabstr 0 : { *(.stabstr) } |
110 | .sbss : { *(.sbss) *(.scommon) } | ||
111 | .bss : | ||
112 | { | ||
113 | *(.dynbss) | ||
114 | *(.bss) | ||
115 | *(COMMON) | ||
116 | . = ALIGN(4); | ||
117 | _end = . ; | ||
118 | PROVIDE (end = .); | ||
119 | } | ||
120 | 53 | ||
121 | /* Sections to be discarded */ | 54 | /* These must appear regardless of . */ |
122 | /DISCARD/ : | 55 | .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) } |
123 | { | 56 | .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) } |
124 | *(.text.exit) | ||
125 | *(.data.exit) | ||
126 | *(.exitcall.exit) | ||
127 | } | ||
128 | 57 | ||
129 | /* This is the MIPS specific mdebug section. */ | 58 | /* Sections to be discarded */ |
130 | .mdebug : { *(.mdebug) } | 59 | /DISCARD/ : { |
131 | /* These are needed for ELF backends which have not yet been | 60 | *(.MIPS.options) |
132 | converted to the new style linker. */ | 61 | *(.options) |
133 | .stab 0 : { *(.stab) } | 62 | *(.pdr) |
134 | .stabstr 0 : { *(.stabstr) } | 63 | *(.reginfo) |
135 | /* DWARF debug sections. | 64 | *(.comment) |
136 | Symbols in the .debug DWARF section are relative to the beginning of the | 65 | *(.note) |
137 | section so we begin .debug at 0. It's not clear yet what needs to happen | 66 | } |
138 | for the others. */ | ||
139 | .debug 0 : { *(.debug) } | ||
140 | .debug_srcinfo 0 : { *(.debug_srcinfo) } | ||
141 | .debug_aranges 0 : { *(.debug_aranges) } | ||
142 | .debug_pubnames 0 : { *(.debug_pubnames) } | ||
143 | .debug_sfnames 0 : { *(.debug_sfnames) } | ||
144 | .line 0 : { *(.line) } | ||
145 | /* These must appear regardless of . */ | ||
146 | .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) } | ||
147 | .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) } | ||
148 | .comment : { *(.comment) } | ||
149 | .note : { *(.note) } | ||
150 | } | 67 | } |
diff --git a/arch/mips/cavium-octeon/csrc-octeon.c b/arch/mips/cavium-octeon/csrc-octeon.c index 96110f217dc..0bf4bbe04ae 100644 --- a/arch/mips/cavium-octeon/csrc-octeon.c +++ b/arch/mips/cavium-octeon/csrc-octeon.c | |||
@@ -50,6 +50,38 @@ static struct clocksource clocksource_mips = { | |||
50 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 50 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
51 | }; | 51 | }; |
52 | 52 | ||
53 | unsigned long long notrace sched_clock(void) | ||
54 | { | ||
55 | /* 64-bit arithmatic can overflow, so use 128-bit. */ | ||
56 | #if (__GNUC__ < 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ <= 3)) | ||
57 | u64 t1, t2, t3; | ||
58 | unsigned long long rv; | ||
59 | u64 mult = clocksource_mips.mult; | ||
60 | u64 shift = clocksource_mips.shift; | ||
61 | u64 cnt = read_c0_cvmcount(); | ||
62 | |||
63 | asm ( | ||
64 | "dmultu\t%[cnt],%[mult]\n\t" | ||
65 | "nor\t%[t1],$0,%[shift]\n\t" | ||
66 | "mfhi\t%[t2]\n\t" | ||
67 | "mflo\t%[t3]\n\t" | ||
68 | "dsll\t%[t2],%[t2],1\n\t" | ||
69 | "dsrlv\t%[rv],%[t3],%[shift]\n\t" | ||
70 | "dsllv\t%[t1],%[t2],%[t1]\n\t" | ||
71 | "or\t%[rv],%[t1],%[rv]\n\t" | ||
72 | : [rv] "=&r" (rv), [t1] "=&r" (t1), [t2] "=&r" (t2), [t3] "=&r" (t3) | ||
73 | : [cnt] "r" (cnt), [mult] "r" (mult), [shift] "r" (shift) | ||
74 | : "hi", "lo"); | ||
75 | return rv; | ||
76 | #else | ||
77 | /* GCC > 4.3 do it the easy way. */ | ||
78 | unsigned int __attribute__((mode(TI))) t; | ||
79 | t = read_c0_cvmcount(); | ||
80 | t = t * clocksource_mips.mult; | ||
81 | return (unsigned long long)(t >> clocksource_mips.shift); | ||
82 | #endif | ||
83 | } | ||
84 | |||
53 | void __init plat_time_init(void) | 85 | void __init plat_time_init(void) |
54 | { | 86 | { |
55 | clocksource_mips.rating = 300; | 87 | clocksource_mips.rating = 300; |
diff --git a/arch/mips/cobalt/setup.c b/arch/mips/cobalt/setup.c index b5164422724..ec3b2c417f7 100644 --- a/arch/mips/cobalt/setup.c +++ b/arch/mips/cobalt/setup.c | |||
@@ -97,26 +97,18 @@ void __init plat_mem_setup(void) | |||
97 | 97 | ||
98 | void __init prom_init(void) | 98 | void __init prom_init(void) |
99 | { | 99 | { |
100 | int narg, indx, posn, nchr; | ||
101 | unsigned long memsz; | 100 | unsigned long memsz; |
101 | int argc, i; | ||
102 | char **argv; | 102 | char **argv; |
103 | 103 | ||
104 | memsz = fw_arg0 & 0x7fff0000; | 104 | memsz = fw_arg0 & 0x7fff0000; |
105 | narg = fw_arg0 & 0x0000ffff; | 105 | argc = fw_arg0 & 0x0000ffff; |
106 | 106 | argv = (char **)fw_arg1; | |
107 | if (narg) { | 107 | |
108 | arcs_cmdline[0] = '\0'; | 108 | for (i = 1; i < argc; i++) { |
109 | argv = (char **) fw_arg1; | 109 | strlcat(arcs_cmdline, argv[i], COMMAND_LINE_SIZE); |
110 | posn = 0; | 110 | if (i < (argc - 1)) |
111 | for (indx = 1; indx < narg; ++indx) { | 111 | strlcat(arcs_cmdline, " ", COMMAND_LINE_SIZE); |
112 | nchr = strlen(argv[indx]); | ||
113 | if (posn + 1 + nchr + 1 > sizeof(arcs_cmdline)) | ||
114 | break; | ||
115 | if (posn) | ||
116 | arcs_cmdline[posn++] = ' '; | ||
117 | strcpy(arcs_cmdline + posn, argv[indx]); | ||
118 | posn += nchr; | ||
119 | } | ||
120 | } | 112 | } |
121 | 113 | ||
122 | add_memory_region(0x0, memsz, BOOT_MEM_RAM); | 114 | add_memory_region(0x0, memsz, BOOT_MEM_RAM); |
diff --git a/arch/mips/include/asm/mach-ip27/topology.h b/arch/mips/include/asm/mach-ip27/topology.h index 09a59bcc1b0..1b1a7d1632b 100644 --- a/arch/mips/include/asm/mach-ip27/topology.h +++ b/arch/mips/include/asm/mach-ip27/topology.h | |||
@@ -24,7 +24,9 @@ extern struct cpuinfo_ip27 sn_cpu_info[NR_CPUS]; | |||
24 | 24 | ||
25 | #define cpu_to_node(cpu) (sn_cpu_info[(cpu)].p_nodeid) | 25 | #define cpu_to_node(cpu) (sn_cpu_info[(cpu)].p_nodeid) |
26 | #define parent_node(node) (node) | 26 | #define parent_node(node) (node) |
27 | #define cpumask_of_node(node) (&hub_data(node)->h_cpus) | 27 | #define cpumask_of_node(node) ((node) == -1 ? \ |
28 | cpu_all_mask : \ | ||
29 | &hub_data(node)->h_cpus) | ||
28 | struct pci_bus; | 30 | struct pci_bus; |
29 | extern int pcibus_to_node(struct pci_bus *); | 31 | extern int pcibus_to_node(struct pci_bus *); |
30 | 32 | ||
diff --git a/arch/mips/mipssim/sim_setup.c b/arch/mips/mipssim/sim_setup.c index 0824f6af477..55f22a3afe6 100644 --- a/arch/mips/mipssim/sim_setup.c +++ b/arch/mips/mipssim/sim_setup.c | |||
@@ -49,9 +49,6 @@ void __init plat_mem_setup(void) | |||
49 | set_io_port_base(0xbfd00000); | 49 | set_io_port_base(0xbfd00000); |
50 | 50 | ||
51 | serial_init(); | 51 | serial_init(); |
52 | |||
53 | pr_info("Linux started...\n"); | ||
54 | |||
55 | } | 52 | } |
56 | 53 | ||
57 | extern struct plat_smp_ops ssmtc_smp_ops; | 54 | extern struct plat_smp_ops ssmtc_smp_ops; |
@@ -60,7 +57,6 @@ void __init prom_init(void) | |||
60 | { | 57 | { |
61 | set_io_port_base(0xbfd00000); | 58 | set_io_port_base(0xbfd00000); |
62 | 59 | ||
63 | pr_info("\nLINUX started...\n"); | ||
64 | prom_meminit(); | 60 | prom_meminit(); |
65 | 61 | ||
66 | #ifdef CONFIG_MIPS_MT_SMP | 62 | #ifdef CONFIG_MIPS_MT_SMP |
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 9e8d00389ee..1651942f7fe 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c | |||
@@ -424,7 +424,7 @@ void __init mem_init(void) | |||
424 | reservedpages << (PAGE_SHIFT-10), | 424 | reservedpages << (PAGE_SHIFT-10), |
425 | datasize >> 10, | 425 | datasize >> 10, |
426 | initsize >> 10, | 426 | initsize >> 10, |
427 | (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))); | 427 | totalhigh_pages << (PAGE_SHIFT-10)); |
428 | } | 428 | } |
429 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ | 429 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ |
430 | 430 | ||
diff --git a/arch/mips/mm/tlbex.c b/arch/mips/mm/tlbex.c index 3d0baa4a842..badcf5e8d69 100644 --- a/arch/mips/mm/tlbex.c +++ b/arch/mips/mm/tlbex.c | |||
@@ -73,9 +73,6 @@ static int __cpuinit m4kc_tlbp_war(void) | |||
73 | enum label_id { | 73 | enum label_id { |
74 | label_second_part = 1, | 74 | label_second_part = 1, |
75 | label_leave, | 75 | label_leave, |
76 | #ifdef MODULE_START | ||
77 | label_module_alloc, | ||
78 | #endif | ||
79 | label_vmalloc, | 76 | label_vmalloc, |
80 | label_vmalloc_done, | 77 | label_vmalloc_done, |
81 | label_tlbw_hazard, | 78 | label_tlbw_hazard, |
@@ -92,9 +89,6 @@ enum label_id { | |||
92 | 89 | ||
93 | UASM_L_LA(_second_part) | 90 | UASM_L_LA(_second_part) |
94 | UASM_L_LA(_leave) | 91 | UASM_L_LA(_leave) |
95 | #ifdef MODULE_START | ||
96 | UASM_L_LA(_module_alloc) | ||
97 | #endif | ||
98 | UASM_L_LA(_vmalloc) | 92 | UASM_L_LA(_vmalloc) |
99 | UASM_L_LA(_vmalloc_done) | 93 | UASM_L_LA(_vmalloc_done) |
100 | UASM_L_LA(_tlbw_hazard) | 94 | UASM_L_LA(_tlbw_hazard) |
@@ -818,8 +812,6 @@ static void __cpuinit build_r4000_tlb_refill_handler(void) | |||
818 | } else { | 812 | } else { |
819 | #if defined(CONFIG_HUGETLB_PAGE) | 813 | #if defined(CONFIG_HUGETLB_PAGE) |
820 | const enum label_id ls = label_tlb_huge_update; | 814 | const enum label_id ls = label_tlb_huge_update; |
821 | #elif defined(MODULE_START) | ||
822 | const enum label_id ls = label_module_alloc; | ||
823 | #else | 815 | #else |
824 | const enum label_id ls = label_vmalloc; | 816 | const enum label_id ls = label_vmalloc; |
825 | #endif | 817 | #endif |
diff --git a/arch/mips/mti-malta/malta-init.c b/arch/mips/mti-malta/malta-init.c index f1b14c8a4a1..414f0c99b19 100644 --- a/arch/mips/mti-malta/malta-init.c +++ b/arch/mips/mti-malta/malta-init.c | |||
@@ -355,7 +355,6 @@ void __init prom_init(void) | |||
355 | board_nmi_handler_setup = mips_nmi_setup; | 355 | board_nmi_handler_setup = mips_nmi_setup; |
356 | board_ejtag_handler_setup = mips_ejtag_setup; | 356 | board_ejtag_handler_setup = mips_ejtag_setup; |
357 | 357 | ||
358 | pr_info("\nLINUX started...\n"); | ||
359 | prom_init_cmdline(); | 358 | prom_init_cmdline(); |
360 | prom_meminit(); | 359 | prom_meminit(); |
361 | #ifdef CONFIG_SERIAL_8250_CONSOLE | 360 | #ifdef CONFIG_SERIAL_8250_CONSOLE |
diff --git a/arch/mips/powertv/Makefile b/arch/mips/powertv/Makefile index 2c516718aff..0a0d73c0564 100644 --- a/arch/mips/powertv/Makefile +++ b/arch/mips/powertv/Makefile | |||
@@ -23,6 +23,6 @@ | |||
23 | # under Linux. | 23 | # under Linux. |
24 | # | 24 | # |
25 | 25 | ||
26 | obj-y += cmdline.o init.o memory.o reset.o time.o powertv_setup.o asic/ pci/ | 26 | obj-y += init.o memory.o reset.o time.o powertv_setup.o asic/ pci/ |
27 | 27 | ||
28 | EXTRA_CFLAGS += -Wall -Werror | 28 | EXTRA_CFLAGS += -Wall -Werror |
diff --git a/arch/mips/powertv/cmdline.c b/arch/mips/powertv/cmdline.c deleted file mode 100644 index 98d73cb0d45..00000000000 --- a/arch/mips/powertv/cmdline.c +++ /dev/null | |||
@@ -1,52 +0,0 @@ | |||
1 | /* | ||
2 | * Carsten Langgaard, carstenl@mips.com | ||
3 | * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved. | ||
4 | * Portions copyright (C) 2009 Cisco Systems, Inc. | ||
5 | * | ||
6 | * This program is free software; you can distribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License (Version 2) as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
13 | * for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License along | ||
16 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
17 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. | ||
18 | * | ||
19 | * Kernel command line creation using the prom monitor (YAMON) argc/argv. | ||
20 | */ | ||
21 | #include <linux/init.h> | ||
22 | #include <linux/string.h> | ||
23 | |||
24 | #include <asm/bootinfo.h> | ||
25 | |||
26 | #include "init.h" | ||
27 | |||
28 | /* | ||
29 | * YAMON (32-bit PROM) pass arguments and environment as 32-bit pointer. | ||
30 | * This macro take care of sign extension. | ||
31 | */ | ||
32 | #define prom_argv(index) ((char *)(long)_prom_argv[(index)]) | ||
33 | |||
34 | char * __init prom_getcmdline(void) | ||
35 | { | ||
36 | return &(arcs_cmdline[0]); | ||
37 | } | ||
38 | |||
39 | void __init prom_init_cmdline(void) | ||
40 | { | ||
41 | int len; | ||
42 | |||
43 | if (prom_argc != 1) | ||
44 | return; | ||
45 | |||
46 | len = strlen(arcs_cmdline); | ||
47 | |||
48 | arcs_cmdline[len] = ' '; | ||
49 | |||
50 | strlcpy(arcs_cmdline + len + 1, (char *)_prom_argv, | ||
51 | COMMAND_LINE_SIZE - len - 1); | ||
52 | } | ||
diff --git a/arch/mips/powertv/init.c b/arch/mips/powertv/init.c index 5f4e4c304e4..0afe227f1d0 100644 --- a/arch/mips/powertv/init.c +++ b/arch/mips/powertv/init.c | |||
@@ -34,10 +34,7 @@ | |||
34 | #include <asm/mips-boards/generic.h> | 34 | #include <asm/mips-boards/generic.h> |
35 | #include <asm/mach-powertv/asic.h> | 35 | #include <asm/mach-powertv/asic.h> |
36 | 36 | ||
37 | #include "init.h" | 37 | static int *_prom_envp; |
38 | |||
39 | int prom_argc; | ||
40 | int *_prom_argv, *_prom_envp; | ||
41 | unsigned long _prom_memsize; | 38 | unsigned long _prom_memsize; |
42 | 39 | ||
43 | /* | 40 | /* |
@@ -109,16 +106,20 @@ static void __init mips_ejtag_setup(void) | |||
109 | 106 | ||
110 | void __init prom_init(void) | 107 | void __init prom_init(void) |
111 | { | 108 | { |
109 | int prom_argc; | ||
110 | char *prom_argv; | ||
111 | |||
112 | prom_argc = fw_arg0; | 112 | prom_argc = fw_arg0; |
113 | _prom_argv = (int *) fw_arg1; | 113 | prom_argv = (char *) fw_arg1; |
114 | _prom_envp = (int *) fw_arg2; | 114 | _prom_envp = (int *) fw_arg2; |
115 | _prom_memsize = (unsigned long) fw_arg3; | 115 | _prom_memsize = (unsigned long) fw_arg3; |
116 | 116 | ||
117 | board_nmi_handler_setup = mips_nmi_setup; | 117 | board_nmi_handler_setup = mips_nmi_setup; |
118 | board_ejtag_handler_setup = mips_ejtag_setup; | 118 | board_ejtag_handler_setup = mips_ejtag_setup; |
119 | 119 | ||
120 | pr_info("\nLINUX started...\n"); | 120 | if (prom_argc == 1) |
121 | prom_init_cmdline(); | 121 | strlcat(arcs_cmdline, prom_argv, COMMAND_LINE_SIZE); |
122 | |||
122 | configure_platform(); | 123 | configure_platform(); |
123 | prom_meminit(); | 124 | prom_meminit(); |
124 | 125 | ||
diff --git a/arch/mips/powertv/init.h b/arch/mips/powertv/init.h index 7af6bf25008..b194c34ca96 100644 --- a/arch/mips/powertv/init.h +++ b/arch/mips/powertv/init.h | |||
@@ -22,7 +22,5 @@ | |||
22 | 22 | ||
23 | #ifndef _POWERTV_INIT_H | 23 | #ifndef _POWERTV_INIT_H |
24 | #define _POWERTV_INIT_H | 24 | #define _POWERTV_INIT_H |
25 | extern int prom_argc; | ||
26 | extern int *_prom_argv; | ||
27 | extern unsigned long _prom_memsize; | 25 | extern unsigned long _prom_memsize; |
28 | #endif | 26 | #endif |
diff --git a/arch/mips/powertv/memory.c b/arch/mips/powertv/memory.c index 28d06605fff..f49eb3d0358 100644 --- a/arch/mips/powertv/memory.c +++ b/arch/mips/powertv/memory.c | |||
@@ -42,8 +42,6 @@ | |||
42 | #define BOOT_MEM_SIZE KIBIBYTE(256) /* Memory reserved for bldr */ | 42 | #define BOOT_MEM_SIZE KIBIBYTE(256) /* Memory reserved for bldr */ |
43 | #define PHYS_MEM_START 0x10000000 /* Start of physical memory */ | 43 | #define PHYS_MEM_START 0x10000000 /* Start of physical memory */ |
44 | 44 | ||
45 | unsigned long ptv_memsize; | ||
46 | |||
47 | char __initdata cmdline[COMMAND_LINE_SIZE]; | 45 | char __initdata cmdline[COMMAND_LINE_SIZE]; |
48 | 46 | ||
49 | void __init prom_meminit(void) | 47 | void __init prom_meminit(void) |
@@ -87,9 +85,6 @@ void __init prom_meminit(void) | |||
87 | } | 85 | } |
88 | } | 86 | } |
89 | 87 | ||
90 | /* Store memsize for diagnostic purposes */ | ||
91 | ptv_memsize = memsize; | ||
92 | |||
93 | physend = PFN_ALIGN(&_end) - 0x80000000; | 88 | physend = PFN_ALIGN(&_end) - 0x80000000; |
94 | if (memsize > LOW_MEM_MAX) { | 89 | if (memsize > LOW_MEM_MAX) { |
95 | low_mem = LOW_MEM_MAX; | 90 | low_mem = LOW_MEM_MAX; |
diff --git a/arch/mips/powertv/powertv_setup.c b/arch/mips/powertv/powertv_setup.c index bd8ebf128f2..698b1eafbe9 100644 --- a/arch/mips/powertv/powertv_setup.c +++ b/arch/mips/powertv/powertv_setup.c | |||
@@ -64,9 +64,6 @@ | |||
64 | #define REG_SIZE "4" /* In bytes */ | 64 | #define REG_SIZE "4" /* In bytes */ |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | static struct pt_regs die_regs; | ||
68 | static bool have_die_regs; | ||
69 | |||
70 | static void register_panic_notifier(void); | 67 | static void register_panic_notifier(void); |
71 | static int panic_handler(struct notifier_block *notifier_block, | 68 | static int panic_handler(struct notifier_block *notifier_block, |
72 | unsigned long event, void *cause_string); | 69 | unsigned long event, void *cause_string); |
@@ -218,24 +215,6 @@ static int panic_handler(struct notifier_block *notifier_block, | |||
218 | return NOTIFY_DONE; | 215 | return NOTIFY_DONE; |
219 | } | 216 | } |
220 | 217 | ||
221 | /** | ||
222 | * Platform-specific handling of oops | ||
223 | * @str: Pointer to the oops string | ||
224 | * @regs: Pointer to the oops registers | ||
225 | * All we do here is to save the registers for subsequent printing through | ||
226 | * the panic notifier. | ||
227 | */ | ||
228 | void platform_die(const char *str, const struct pt_regs *regs) | ||
229 | { | ||
230 | /* If we already have saved registers, don't overwrite them as they | ||
231 | * they apply to the initial fault */ | ||
232 | |||
233 | if (!have_die_regs) { | ||
234 | have_die_regs = true; | ||
235 | die_regs = *regs; | ||
236 | } | ||
237 | } | ||
238 | |||
239 | /* Information about the RF MAC address, if one was supplied on the | 218 | /* Information about the RF MAC address, if one was supplied on the |
240 | * command line. */ | 219 | * command line. */ |
241 | static bool have_rfmac; | 220 | static bool have_rfmac; |
diff --git a/arch/mips/powertv/reset.c b/arch/mips/powertv/reset.c index 494c652c984..0007652cb77 100644 --- a/arch/mips/powertv/reset.c +++ b/arch/mips/powertv/reset.c | |||
@@ -28,9 +28,6 @@ | |||
28 | #include <asm/mach-powertv/asic_regs.h> | 28 | #include <asm/mach-powertv/asic_regs.h> |
29 | #include "reset.h" | 29 | #include "reset.h" |
30 | 30 | ||
31 | static void mips_machine_restart(char *command); | ||
32 | static void mips_machine_halt(void); | ||
33 | |||
34 | static void mips_machine_restart(char *command) | 31 | static void mips_machine_restart(char *command) |
35 | { | 32 | { |
36 | #ifdef CONFIG_BOOTLOADER_DRIVER | 33 | #ifdef CONFIG_BOOTLOADER_DRIVER |
@@ -44,22 +41,7 @@ static void mips_machine_restart(char *command) | |||
44 | #endif | 41 | #endif |
45 | } | 42 | } |
46 | 43 | ||
47 | static void mips_machine_halt(void) | ||
48 | { | ||
49 | #ifdef CONFIG_BOOTLOADER_DRIVER | ||
50 | /* | ||
51 | * Call the bootloader's reset function to ensure | ||
52 | * that persistent data is flushed before hard reset | ||
53 | */ | ||
54 | kbldr_SetCauseAndReset(); | ||
55 | #else | ||
56 | writel(0x1, asic_reg_addr(watchdog)); | ||
57 | #endif | ||
58 | } | ||
59 | |||
60 | void mips_reboot_setup(void) | 44 | void mips_reboot_setup(void) |
61 | { | 45 | { |
62 | _machine_restart = mips_machine_restart; | 46 | _machine_restart = mips_machine_restart; |
63 | _machine_halt = mips_machine_halt; | ||
64 | pm_power_off = mips_machine_halt; | ||
65 | } | 47 | } |
diff --git a/arch/mips/powertv/time.c b/arch/mips/powertv/time.c index 1e0a5ef4c8c..9fd7b67f2af 100644 --- a/arch/mips/powertv/time.c +++ b/arch/mips/powertv/time.c | |||
@@ -33,5 +33,4 @@ unsigned int __cpuinit get_c0_compare_int(void) | |||
33 | void __init plat_time_init(void) | 33 | void __init plat_time_init(void) |
34 | { | 34 | { |
35 | powertv_clocksource_init(); | 35 | powertv_clocksource_init(); |
36 | r4k_clockevent_init(); | ||
37 | } | 36 | } |
diff --git a/arch/mips/sgi-ip27/ip27-memory.c b/arch/mips/sgi-ip27/ip27-memory.c index f61c164d1e6..bc1297109cc 100644 --- a/arch/mips/sgi-ip27/ip27-memory.c +++ b/arch/mips/sgi-ip27/ip27-memory.c | |||
@@ -505,5 +505,5 @@ void __init mem_init(void) | |||
505 | (num_physpages - tmp) << (PAGE_SHIFT-10), | 505 | (num_physpages - tmp) << (PAGE_SHIFT-10), |
506 | datasize >> 10, | 506 | datasize >> 10, |
507 | initsize >> 10, | 507 | initsize >> 10, |
508 | (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))); | 508 | totalhigh_pages << (PAGE_SHIFT-10)); |
509 | } | 509 | } |
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c index 06e801c7e25..e27809b6d04 100644 --- a/arch/mips/txx9/generic/setup.c +++ b/arch/mips/txx9/generic/setup.c | |||
@@ -160,7 +160,6 @@ static void __init prom_init_cmdline(void) | |||
160 | int argc; | 160 | int argc; |
161 | int *argv32; | 161 | int *argv32; |
162 | int i; /* Always ignore the "-c" at argv[0] */ | 162 | int i; /* Always ignore the "-c" at argv[0] */ |
163 | static char builtin[COMMAND_LINE_SIZE] __initdata; | ||
164 | 163 | ||
165 | if (fw_arg0 >= CKSEG0 || fw_arg1 < CKSEG0) { | 164 | if (fw_arg0 >= CKSEG0 || fw_arg1 < CKSEG0) { |
166 | /* | 165 | /* |
@@ -174,20 +173,6 @@ static void __init prom_init_cmdline(void) | |||
174 | argv32 = (int *)fw_arg1; | 173 | argv32 = (int *)fw_arg1; |
175 | } | 174 | } |
176 | 175 | ||
177 | /* ignore all built-in args if any f/w args given */ | ||
178 | /* | ||
179 | * But if built-in strings was started with '+', append them | ||
180 | * to command line args. If built-in was started with '-', | ||
181 | * ignore all f/w args. | ||
182 | */ | ||
183 | builtin[0] = '\0'; | ||
184 | if (arcs_cmdline[0] == '+') | ||
185 | strcpy(builtin, arcs_cmdline + 1); | ||
186 | else if (arcs_cmdline[0] == '-') { | ||
187 | strcpy(builtin, arcs_cmdline + 1); | ||
188 | argc = 0; | ||
189 | } else if (argc <= 1) | ||
190 | strcpy(builtin, arcs_cmdline); | ||
191 | arcs_cmdline[0] = '\0'; | 176 | arcs_cmdline[0] = '\0'; |
192 | 177 | ||
193 | for (i = 1; i < argc; i++) { | 178 | for (i = 1; i < argc; i++) { |
@@ -201,12 +186,6 @@ static void __init prom_init_cmdline(void) | |||
201 | } else | 186 | } else |
202 | strcat(arcs_cmdline, str); | 187 | strcat(arcs_cmdline, str); |
203 | } | 188 | } |
204 | /* append saved builtin args */ | ||
205 | if (builtin[0]) { | ||
206 | if (arcs_cmdline[0]) | ||
207 | strcat(arcs_cmdline, " "); | ||
208 | strcat(arcs_cmdline, builtin); | ||
209 | } | ||
210 | } | 189 | } |
211 | 190 | ||
212 | static int txx9_ic_disable __initdata; | 191 | static int txx9_ic_disable __initdata; |
diff --git a/arch/mips/vr41xx/common/init.c b/arch/mips/vr41xx/common/init.c index 1386e6f081c..23916321cc1 100644 --- a/arch/mips/vr41xx/common/init.c +++ b/arch/mips/vr41xx/common/init.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * init.c, Common initialization routines for NEC VR4100 series. | 2 | * init.c, Common initialization routines for NEC VR4100 series. |
3 | * | 3 | * |
4 | * Copyright (C) 2003-2008 Yoichi Yuasa <yuasa@linux-mips.org> | 4 | * Copyright (C) 2003-2009 Yoichi Yuasa <yuasa@linux-mips.org> |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
@@ -66,9 +66,9 @@ void __init prom_init(void) | |||
66 | argv = (char **)fw_arg1; | 66 | argv = (char **)fw_arg1; |
67 | 67 | ||
68 | for (i = 1; i < argc; i++) { | 68 | for (i = 1; i < argc; i++) { |
69 | strcat(arcs_cmdline, argv[i]); | 69 | strlcat(arcs_cmdline, argv[i], COMMAND_LINE_SIZE); |
70 | if (i < (argc - 1)) | 70 | if (i < (argc - 1)) |
71 | strcat(arcs_cmdline, " "); | 71 | strlcat(arcs_cmdline, " ", COMMAND_LINE_SIZE); |
72 | } | 72 | } |
73 | } | 73 | } |
74 | 74 | ||
diff --git a/arch/mn10300/Makefile b/arch/mn10300/Makefile index dd0c8ff52a6..ac5c6bdb2f0 100644 --- a/arch/mn10300/Makefile +++ b/arch/mn10300/Makefile | |||
@@ -19,7 +19,7 @@ CCDIR := $(strip $(patsubst %/specs,%,$(CCSPECS))) | |||
19 | KBUILD_CPPFLAGS += -nostdinc -I$(CCDIR)/include | 19 | KBUILD_CPPFLAGS += -nostdinc -I$(CCDIR)/include |
20 | 20 | ||
21 | LDFLAGS := | 21 | LDFLAGS := |
22 | OBJCOPYFLAGS := -O binary -R .note -R .comment -S | 22 | OBJCOPYFLAGS := -O binary -R .note -R .comment -R .GCC-command-line -R .note.gnu.build-id -S |
23 | #LDFLAGS_vmlinux := -Map linkmap.txt | 23 | #LDFLAGS_vmlinux := -Map linkmap.txt |
24 | CHECKFLAGS += | 24 | CHECKFLAGS += |
25 | 25 | ||
diff --git a/arch/mn10300/configs/asb2303_defconfig b/arch/mn10300/configs/asb2303_defconfig index 3acce23708b..441920d8ff5 100644 --- a/arch/mn10300/configs/asb2303_defconfig +++ b/arch/mn10300/configs/asb2303_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.30-rc2 | 3 | # Linux kernel version: 2.6.33-rc1 |
4 | # Sat Apr 18 11:13:22 2009 | 4 | # Tue Dec 22 19:26:25 2009 |
5 | # | 5 | # |
6 | CONFIG_MN10300=y | 6 | CONFIG_MN10300=y |
7 | CONFIG_AM33=y | 7 | CONFIG_AM33=y |
@@ -22,6 +22,7 @@ CONFIG_GENERIC_HARDIRQS=y | |||
22 | # CONFIG_HOTPLUG_CPU is not set | 22 | # CONFIG_HOTPLUG_CPU is not set |
23 | CONFIG_HZ=1000 | 23 | CONFIG_HZ=1000 |
24 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 24 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
25 | CONFIG_CONSTRUCTORS=y | ||
25 | 26 | ||
26 | # | 27 | # |
27 | # General setup | 28 | # General setup |
@@ -43,11 +44,10 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
43 | # | 44 | # |
44 | # RCU Subsystem | 45 | # RCU Subsystem |
45 | # | 46 | # |
46 | CONFIG_CLASSIC_RCU=y | ||
47 | # CONFIG_TREE_RCU is not set | 47 | # CONFIG_TREE_RCU is not set |
48 | # CONFIG_PREEMPT_RCU is not set | 48 | # CONFIG_TREE_PREEMPT_RCU is not set |
49 | CONFIG_TINY_RCU=y | ||
49 | # CONFIG_TREE_RCU_TRACE is not set | 50 | # CONFIG_TREE_RCU_TRACE is not set |
50 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
51 | # CONFIG_IKCONFIG is not set | 51 | # CONFIG_IKCONFIG is not set |
52 | CONFIG_LOG_BUF_SHIFT=14 | 52 | CONFIG_LOG_BUF_SHIFT=14 |
53 | # CONFIG_GROUP_SCHED is not set | 53 | # CONFIG_GROUP_SCHED is not set |
@@ -62,7 +62,6 @@ CONFIG_ANON_INODES=y | |||
62 | CONFIG_EMBEDDED=y | 62 | CONFIG_EMBEDDED=y |
63 | CONFIG_SYSCTL_SYSCALL=y | 63 | CONFIG_SYSCTL_SYSCALL=y |
64 | # CONFIG_KALLSYMS is not set | 64 | # CONFIG_KALLSYMS is not set |
65 | CONFIG_STRIP_ASM_SYMS=y | ||
66 | # CONFIG_HOTPLUG is not set | 65 | # CONFIG_HOTPLUG is not set |
67 | CONFIG_PRINTK=y | 66 | CONFIG_PRINTK=y |
68 | CONFIG_BUG=y | 67 | CONFIG_BUG=y |
@@ -75,14 +74,22 @@ CONFIG_TIMERFD=y | |||
75 | CONFIG_EVENTFD=y | 74 | CONFIG_EVENTFD=y |
76 | CONFIG_SHMEM=y | 75 | CONFIG_SHMEM=y |
77 | CONFIG_AIO=y | 76 | CONFIG_AIO=y |
77 | |||
78 | # | ||
79 | # Kernel Performance Events And Counters | ||
80 | # | ||
78 | # CONFIG_VM_EVENT_COUNTERS is not set | 81 | # CONFIG_VM_EVENT_COUNTERS is not set |
79 | CONFIG_COMPAT_BRK=y | 82 | CONFIG_COMPAT_BRK=y |
80 | CONFIG_SLAB=y | 83 | CONFIG_SLAB=y |
81 | # CONFIG_SLUB is not set | 84 | # CONFIG_SLUB is not set |
82 | # CONFIG_SLOB is not set | 85 | # CONFIG_SLOB is not set |
83 | CONFIG_PROFILING=y | 86 | CONFIG_PROFILING=y |
84 | # CONFIG_MARKERS is not set | ||
85 | CONFIG_HAVE_OPROFILE=y | 87 | CONFIG_HAVE_OPROFILE=y |
88 | CONFIG_HAVE_ARCH_TRACEHOOK=y | ||
89 | |||
90 | # | ||
91 | # GCOV-based kernel profiling | ||
92 | # | ||
86 | # CONFIG_SLOW_WORK is not set | 93 | # CONFIG_SLOW_WORK is not set |
87 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 94 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
88 | CONFIG_SLABINFO=y | 95 | CONFIG_SLABINFO=y |
@@ -90,6 +97,35 @@ CONFIG_RT_MUTEXES=y | |||
90 | CONFIG_BASE_SMALL=0 | 97 | CONFIG_BASE_SMALL=0 |
91 | # CONFIG_MODULES is not set | 98 | # CONFIG_MODULES is not set |
92 | # CONFIG_BLOCK is not set | 99 | # CONFIG_BLOCK is not set |
100 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
101 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
102 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
103 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
104 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
105 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
106 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
107 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
108 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
109 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
110 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
111 | # CONFIG_INLINE_READ_LOCK is not set | ||
112 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
113 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
114 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
115 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
116 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
117 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
118 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
119 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
120 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
121 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
122 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
123 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
124 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
125 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
126 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
127 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
128 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
93 | # CONFIG_FREEZER is not set | 129 | # CONFIG_FREEZER is not set |
94 | 130 | ||
95 | # | 131 | # |
@@ -145,9 +181,8 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
145 | CONFIG_ZONE_DMA_FLAG=0 | 181 | CONFIG_ZONE_DMA_FLAG=0 |
146 | CONFIG_NR_QUICK=1 | 182 | CONFIG_NR_QUICK=1 |
147 | CONFIG_VIRT_TO_BUS=y | 183 | CONFIG_VIRT_TO_BUS=y |
148 | CONFIG_UNEVICTABLE_LRU=y | 184 | # CONFIG_KSM is not set |
149 | CONFIG_HAVE_MLOCK=y | 185 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
150 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
151 | 186 | ||
152 | # | 187 | # |
153 | # Power management options | 188 | # Power management options |
@@ -202,6 +237,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
202 | # CONFIG_NETFILTER is not set | 237 | # CONFIG_NETFILTER is not set |
203 | # CONFIG_IP_DCCP is not set | 238 | # CONFIG_IP_DCCP is not set |
204 | # CONFIG_IP_SCTP is not set | 239 | # CONFIG_IP_SCTP is not set |
240 | # CONFIG_RDS is not set | ||
205 | # CONFIG_TIPC is not set | 241 | # CONFIG_TIPC is not set |
206 | # CONFIG_ATM is not set | 242 | # CONFIG_ATM is not set |
207 | # CONFIG_BRIDGE is not set | 243 | # CONFIG_BRIDGE is not set |
@@ -216,6 +252,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
216 | # CONFIG_ECONET is not set | 252 | # CONFIG_ECONET is not set |
217 | # CONFIG_WAN_ROUTER is not set | 253 | # CONFIG_WAN_ROUTER is not set |
218 | # CONFIG_PHONET is not set | 254 | # CONFIG_PHONET is not set |
255 | # CONFIG_IEEE802154 is not set | ||
219 | # CONFIG_NET_SCHED is not set | 256 | # CONFIG_NET_SCHED is not set |
220 | # CONFIG_DCB is not set | 257 | # CONFIG_DCB is not set |
221 | 258 | ||
@@ -341,7 +378,6 @@ CONFIG_MISC_DEVICES=y | |||
341 | # CONFIG_SCSI_DMA is not set | 378 | # CONFIG_SCSI_DMA is not set |
342 | # CONFIG_SCSI_NETLINK is not set | 379 | # CONFIG_SCSI_NETLINK is not set |
343 | CONFIG_NETDEVICES=y | 380 | CONFIG_NETDEVICES=y |
344 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
345 | # CONFIG_DUMMY is not set | 381 | # CONFIG_DUMMY is not set |
346 | # CONFIG_BONDING is not set | 382 | # CONFIG_BONDING is not set |
347 | # CONFIG_MACVLAN is not set | 383 | # CONFIG_MACVLAN is not set |
@@ -362,14 +398,11 @@ CONFIG_SMC91X=y | |||
362 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set | 398 | # CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set |
363 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 399 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
364 | # CONFIG_B44 is not set | 400 | # CONFIG_B44 is not set |
401 | # CONFIG_KS8842 is not set | ||
402 | # CONFIG_KS8851_MLL is not set | ||
365 | # CONFIG_NETDEV_1000 is not set | 403 | # CONFIG_NETDEV_1000 is not set |
366 | # CONFIG_NETDEV_10000 is not set | 404 | # CONFIG_NETDEV_10000 is not set |
367 | 405 | # CONFIG_WLAN is not set | |
368 | # | ||
369 | # Wireless LAN | ||
370 | # | ||
371 | # CONFIG_WLAN_PRE80211 is not set | ||
372 | # CONFIG_WLAN_80211 is not set | ||
373 | 406 | ||
374 | # | 407 | # |
375 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 408 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -430,11 +463,15 @@ CONFIG_RTC=y | |||
430 | # CONFIG_TCG_TPM is not set | 463 | # CONFIG_TCG_TPM is not set |
431 | # CONFIG_I2C is not set | 464 | # CONFIG_I2C is not set |
432 | # CONFIG_SPI is not set | 465 | # CONFIG_SPI is not set |
466 | |||
467 | # | ||
468 | # PPS support | ||
469 | # | ||
470 | # CONFIG_PPS is not set | ||
433 | # CONFIG_W1 is not set | 471 | # CONFIG_W1 is not set |
434 | # CONFIG_POWER_SUPPLY is not set | 472 | # CONFIG_POWER_SUPPLY is not set |
435 | # CONFIG_HWMON is not set | 473 | # CONFIG_HWMON is not set |
436 | # CONFIG_THERMAL is not set | 474 | # CONFIG_THERMAL is not set |
437 | # CONFIG_THERMAL_HWMON is not set | ||
438 | # CONFIG_WATCHDOG is not set | 475 | # CONFIG_WATCHDOG is not set |
439 | CONFIG_SSB_POSSIBLE=y | 476 | CONFIG_SSB_POSSIBLE=y |
440 | 477 | ||
@@ -451,22 +488,7 @@ CONFIG_SSB_POSSIBLE=y | |||
451 | # CONFIG_HTC_PASIC3 is not set | 488 | # CONFIG_HTC_PASIC3 is not set |
452 | # CONFIG_MFD_TMIO is not set | 489 | # CONFIG_MFD_TMIO is not set |
453 | # CONFIG_REGULATOR is not set | 490 | # CONFIG_REGULATOR is not set |
454 | 491 | # CONFIG_MEDIA_SUPPORT is not set | |
455 | # | ||
456 | # Multimedia devices | ||
457 | # | ||
458 | |||
459 | # | ||
460 | # Multimedia core support | ||
461 | # | ||
462 | # CONFIG_VIDEO_DEV is not set | ||
463 | # CONFIG_DVB_CORE is not set | ||
464 | # CONFIG_VIDEO_MEDIA is not set | ||
465 | |||
466 | # | ||
467 | # Multimedia drivers | ||
468 | # | ||
469 | # CONFIG_DAB is not set | ||
470 | 492 | ||
471 | # | 493 | # |
472 | # Graphics support | 494 | # Graphics support |
@@ -490,11 +512,17 @@ CONFIG_SSB_POSSIBLE=y | |||
490 | # CONFIG_DMADEVICES is not set | 512 | # CONFIG_DMADEVICES is not set |
491 | # CONFIG_AUXDISPLAY is not set | 513 | # CONFIG_AUXDISPLAY is not set |
492 | # CONFIG_UIO is not set | 514 | # CONFIG_UIO is not set |
515 | |||
516 | # | ||
517 | # TI VLYNQ | ||
518 | # | ||
493 | # CONFIG_STAGING is not set | 519 | # CONFIG_STAGING is not set |
494 | 520 | ||
495 | # | 521 | # |
496 | # File systems | 522 | # File systems |
497 | # | 523 | # |
524 | CONFIG_FILE_LOCKING=y | ||
525 | CONFIG_FSNOTIFY=y | ||
498 | CONFIG_DNOTIFY=y | 526 | CONFIG_DNOTIFY=y |
499 | CONFIG_INOTIFY=y | 527 | CONFIG_INOTIFY=y |
500 | CONFIG_INOTIFY_USER=y | 528 | CONFIG_INOTIFY_USER=y |
@@ -539,6 +567,7 @@ CONFIG_NFS_V3=y | |||
539 | # CONFIG_NFS_V3_ACL is not set | 567 | # CONFIG_NFS_V3_ACL is not set |
540 | # CONFIG_NFS_V4 is not set | 568 | # CONFIG_NFS_V4 is not set |
541 | CONFIG_ROOT_NFS=y | 569 | CONFIG_ROOT_NFS=y |
570 | # CONFIG_NFSD is not set | ||
542 | CONFIG_LOCKD=y | 571 | CONFIG_LOCKD=y |
543 | CONFIG_LOCKD_V4=y | 572 | CONFIG_LOCKD_V4=y |
544 | CONFIG_NFS_COMMON=y | 573 | CONFIG_NFS_COMMON=y |
@@ -561,13 +590,13 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
561 | CONFIG_ENABLE_MUST_CHECK=y | 590 | CONFIG_ENABLE_MUST_CHECK=y |
562 | CONFIG_FRAME_WARN=1024 | 591 | CONFIG_FRAME_WARN=1024 |
563 | CONFIG_MAGIC_SYSRQ=y | 592 | CONFIG_MAGIC_SYSRQ=y |
593 | CONFIG_STRIP_ASM_SYMS=y | ||
564 | # CONFIG_UNUSED_SYMBOLS is not set | 594 | # CONFIG_UNUSED_SYMBOLS is not set |
565 | # CONFIG_DEBUG_FS is not set | 595 | # CONFIG_DEBUG_FS is not set |
566 | # CONFIG_HEADERS_CHECK is not set | 596 | # CONFIG_HEADERS_CHECK is not set |
567 | # CONFIG_DEBUG_KERNEL is not set | 597 | # CONFIG_DEBUG_KERNEL is not set |
568 | # CONFIG_DEBUG_BUGVERBOSE is not set | 598 | CONFIG_DEBUG_BUGVERBOSE=y |
569 | # CONFIG_DEBUG_MEMORY_INIT is not set | 599 | # CONFIG_DEBUG_MEMORY_INIT is not set |
570 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
571 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 600 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
572 | # CONFIG_SAMPLES is not set | 601 | # CONFIG_SAMPLES is not set |
573 | 602 | ||
@@ -577,7 +606,11 @@ CONFIG_MAGIC_SYSRQ=y | |||
577 | # CONFIG_KEYS is not set | 606 | # CONFIG_KEYS is not set |
578 | # CONFIG_SECURITY is not set | 607 | # CONFIG_SECURITY is not set |
579 | # CONFIG_SECURITYFS is not set | 608 | # CONFIG_SECURITYFS is not set |
580 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 609 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
610 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
611 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
612 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
613 | CONFIG_DEFAULT_SECURITY="" | ||
581 | # CONFIG_CRYPTO is not set | 614 | # CONFIG_CRYPTO is not set |
582 | # CONFIG_BINARY_PRINTF is not set | 615 | # CONFIG_BINARY_PRINTF is not set |
583 | 616 | ||
diff --git a/arch/mn10300/include/asm/bitops.h b/arch/mn10300/include/asm/bitops.h index 0b610f482ab..f49ac49e09a 100644 --- a/arch/mn10300/include/asm/bitops.h +++ b/arch/mn10300/include/asm/bitops.h | |||
@@ -165,7 +165,7 @@ static inline __attribute__((const)) | |||
165 | unsigned long __ffs(unsigned long x) | 165 | unsigned long __ffs(unsigned long x) |
166 | { | 166 | { |
167 | int bit; | 167 | int bit; |
168 | asm("bsch %2,%0" : "=r"(bit) : "0"(0), "r"(x & -x)); | 168 | asm("bsch %2,%0" : "=r"(bit) : "0"(0), "r"(x & -x) : "cc"); |
169 | return bit; | 169 | return bit; |
170 | } | 170 | } |
171 | 171 | ||
@@ -177,7 +177,7 @@ static inline __attribute__((const)) | |||
177 | int __ilog2_u32(u32 n) | 177 | int __ilog2_u32(u32 n) |
178 | { | 178 | { |
179 | int bit; | 179 | int bit; |
180 | asm("bsch %2,%0" : "=r"(bit) : "0"(0), "r"(n)); | 180 | asm("bsch %2,%0" : "=r"(bit) : "0"(0), "r"(n) : "cc"); |
181 | return bit; | 181 | return bit; |
182 | } | 182 | } |
183 | 183 | ||
diff --git a/arch/mn10300/include/asm/div64.h b/arch/mn10300/include/asm/div64.h index 3a8329b3e86..34dcb8e6830 100644 --- a/arch/mn10300/include/asm/div64.h +++ b/arch/mn10300/include/asm/div64.h | |||
@@ -72,6 +72,7 @@ unsigned __muldiv64u(unsigned val, unsigned mult, unsigned div) | |||
72 | * MDR = MDR:val%div */ | 72 | * MDR = MDR:val%div */ |
73 | : "=r"(result) | 73 | : "=r"(result) |
74 | : "0"(val), "ir"(mult), "r"(div) | 74 | : "0"(val), "ir"(mult), "r"(div) |
75 | : "cc" | ||
75 | ); | 76 | ); |
76 | 77 | ||
77 | return result; | 78 | return result; |
@@ -92,6 +93,7 @@ signed __muldiv64s(signed val, signed mult, signed div) | |||
92 | * MDR = MDR:val%div */ | 93 | * MDR = MDR:val%div */ |
93 | : "=r"(result) | 94 | : "=r"(result) |
94 | : "0"(val), "ir"(mult), "r"(div) | 95 | : "0"(val), "ir"(mult), "r"(div) |
96 | : "cc" | ||
95 | ); | 97 | ); |
96 | 98 | ||
97 | return result; | 99 | return result; |
diff --git a/arch/mn10300/include/asm/system.h b/arch/mn10300/include/asm/system.h index 8214fb7e7fe..3636c054dcd 100644 --- a/arch/mn10300/include/asm/system.h +++ b/arch/mn10300/include/asm/system.h | |||
@@ -143,6 +143,7 @@ do { \ | |||
143 | " mov %0,epsw \n" \ | 143 | " mov %0,epsw \n" \ |
144 | : "=&d"(tmp) \ | 144 | : "=&d"(tmp) \ |
145 | : "i"(~EPSW_IM), "r"(__mn10300_irq_enabled_epsw) \ | 145 | : "i"(~EPSW_IM), "r"(__mn10300_irq_enabled_epsw) \ |
146 | : "cc" \ | ||
146 | ); \ | 147 | ); \ |
147 | } while (0) | 148 | } while (0) |
148 | 149 | ||
diff --git a/arch/mn10300/include/asm/tlbflush.h b/arch/mn10300/include/asm/tlbflush.h index e0239865abc..1a7e29281c5 100644 --- a/arch/mn10300/include/asm/tlbflush.h +++ b/arch/mn10300/include/asm/tlbflush.h | |||
@@ -22,7 +22,7 @@ do { \ | |||
22 | " mov %0,%1 \n" \ | 22 | " mov %0,%1 \n" \ |
23 | : "=d"(w) \ | 23 | : "=d"(w) \ |
24 | : "m"(MMUCTR), "i"(MMUCTR_IIV|MMUCTR_DIV) \ | 24 | : "m"(MMUCTR), "i"(MMUCTR_IIV|MMUCTR_DIV) \ |
25 | : "memory" \ | 25 | : "cc", "memory" \ |
26 | ); \ | 26 | ); \ |
27 | } while (0) | 27 | } while (0) |
28 | 28 | ||
diff --git a/arch/mn10300/include/asm/uaccess.h b/arch/mn10300/include/asm/uaccess.h index 167e10ff06d..197a7af3dd8 100644 --- a/arch/mn10300/include/asm/uaccess.h +++ b/arch/mn10300/include/asm/uaccess.h | |||
@@ -316,7 +316,7 @@ do { \ | |||
316 | " .previous\n" \ | 316 | " .previous\n" \ |
317 | : "=a"(__from), "=a"(__to), "=r"(size), "=&r"(w)\ | 317 | : "=a"(__from), "=a"(__to), "=r"(size), "=&r"(w)\ |
318 | : "0"(__from), "1"(__to), "2"(size) \ | 318 | : "0"(__from), "1"(__to), "2"(size) \ |
319 | : "memory"); \ | 319 | : "cc", "memory"); \ |
320 | } \ | 320 | } \ |
321 | } while (0) | 321 | } while (0) |
322 | 322 | ||
@@ -352,7 +352,7 @@ do { \ | |||
352 | " .previous\n" \ | 352 | " .previous\n" \ |
353 | : "=a"(__from), "=a"(__to), "=r"(size), "=&r"(w)\ | 353 | : "=a"(__from), "=a"(__to), "=r"(size), "=&r"(w)\ |
354 | : "0"(__from), "1"(__to), "2"(size) \ | 354 | : "0"(__from), "1"(__to), "2"(size) \ |
355 | : "memory"); \ | 355 | : "cc", "memory"); \ |
356 | } \ | 356 | } \ |
357 | } while (0) | 357 | } while (0) |
358 | 358 | ||
diff --git a/arch/mn10300/include/asm/unistd.h b/arch/mn10300/include/asm/unistd.h index 2a983931c11..c05acb95c2a 100644 --- a/arch/mn10300/include/asm/unistd.h +++ b/arch/mn10300/include/asm/unistd.h | |||
@@ -348,10 +348,11 @@ | |||
348 | #define __NR_pwritev 335 | 348 | #define __NR_pwritev 335 |
349 | #define __NR_rt_tgsigqueueinfo 336 | 349 | #define __NR_rt_tgsigqueueinfo 336 |
350 | #define __NR_perf_event_open 337 | 350 | #define __NR_perf_event_open 337 |
351 | #define __NR_recvmmsg 338 | ||
351 | 352 | ||
352 | #ifdef __KERNEL__ | 353 | #ifdef __KERNEL__ |
353 | 354 | ||
354 | #define NR_syscalls 338 | 355 | #define NR_syscalls 339 |
355 | 356 | ||
356 | /* | 357 | /* |
357 | * specify the deprecated syscalls we want to support on this arch | 358 | * specify the deprecated syscalls we want to support on this arch |
diff --git a/arch/mn10300/kernel/entry.S b/arch/mn10300/kernel/entry.S index c9ee6c009d7..88e3e1c3cc2 100644 --- a/arch/mn10300/kernel/entry.S +++ b/arch/mn10300/kernel/entry.S | |||
@@ -724,6 +724,7 @@ ENTRY(sys_call_table) | |||
724 | .long sys_pwritev /* 335 */ | 724 | .long sys_pwritev /* 335 */ |
725 | .long sys_rt_tgsigqueueinfo | 725 | .long sys_rt_tgsigqueueinfo |
726 | .long sys_perf_event_open | 726 | .long sys_perf_event_open |
727 | .long sys_recvmmsg | ||
727 | 728 | ||
728 | 729 | ||
729 | nr_syscalls=(.-sys_call_table)/4 | 730 | nr_syscalls=(.-sys_call_table)/4 |
diff --git a/arch/mn10300/kernel/mn10300-serial.c b/arch/mn10300/kernel/mn10300-serial.c index 229b710fc5d..ef34d5a0f8b 100644 --- a/arch/mn10300/kernel/mn10300-serial.c +++ b/arch/mn10300/kernel/mn10300-serial.c | |||
@@ -380,7 +380,8 @@ static int mask_test_and_clear(volatile u8 *ptr, u8 mask) | |||
380 | u32 epsw; | 380 | u32 epsw; |
381 | asm volatile(" bclr %1,(%2) \n" | 381 | asm volatile(" bclr %1,(%2) \n" |
382 | " mov epsw,%0 \n" | 382 | " mov epsw,%0 \n" |
383 | : "=d"(epsw) : "d"(mask), "a"(ptr)); | 383 | : "=d"(epsw) : "d"(mask), "a"(ptr) |
384 | : "cc", "memory"); | ||
384 | return !(epsw & EPSW_FLAG_Z); | 385 | return !(epsw & EPSW_FLAG_Z); |
385 | } | 386 | } |
386 | 387 | ||
diff --git a/arch/mn10300/kernel/signal.c b/arch/mn10300/kernel/signal.c index a21f43bc68e..717db14c2cc 100644 --- a/arch/mn10300/kernel/signal.c +++ b/arch/mn10300/kernel/signal.c | |||
@@ -264,7 +264,7 @@ static inline void __user *get_sigframe(struct k_sigaction *ka, | |||
264 | 264 | ||
265 | /* this is the X/Open sanctioned signal stack switching. */ | 265 | /* this is the X/Open sanctioned signal stack switching. */ |
266 | if (ka->sa.sa_flags & SA_ONSTACK) { | 266 | if (ka->sa.sa_flags & SA_ONSTACK) { |
267 | if (!on_sig_stack(sp)) | 267 | if (sas_ss_flags(sp) == 0) |
268 | sp = current->sas_ss_sp + current->sas_ss_size; | 268 | sp = current->sas_ss_sp + current->sas_ss_size; |
269 | } | 269 | } |
270 | 270 | ||
diff --git a/arch/mn10300/lib/checksum.c b/arch/mn10300/lib/checksum.c index 274f29ec33c..b6580f5d89e 100644 --- a/arch/mn10300/lib/checksum.c +++ b/arch/mn10300/lib/checksum.c | |||
@@ -22,6 +22,7 @@ static inline unsigned short from32to16(__wsum sum) | |||
22 | " addc 0xffff,%0 \n" | 22 | " addc 0xffff,%0 \n" |
23 | : "=r" (sum) | 23 | : "=r" (sum) |
24 | : "r" (sum << 16), "0" (sum & 0xffff0000) | 24 | : "r" (sum << 16), "0" (sum & 0xffff0000) |
25 | : "cc" | ||
25 | ); | 26 | ); |
26 | return sum >> 16; | 27 | return sum >> 16; |
27 | } | 28 | } |
diff --git a/arch/mn10300/lib/delay.c b/arch/mn10300/lib/delay.c index cce66bc0822..fdf6f710f94 100644 --- a/arch/mn10300/lib/delay.c +++ b/arch/mn10300/lib/delay.c | |||
@@ -28,7 +28,8 @@ void __delay(unsigned long loops) | |||
28 | "2: add -1,%0 \n" | 28 | "2: add -1,%0 \n" |
29 | " bne 2b \n" | 29 | " bne 2b \n" |
30 | : "=&d" (d0) | 30 | : "=&d" (d0) |
31 | : "0" (loops)); | 31 | : "0" (loops) |
32 | : "cc"); | ||
32 | } | 33 | } |
33 | EXPORT_SYMBOL(__delay); | 34 | EXPORT_SYMBOL(__delay); |
34 | 35 | ||
diff --git a/arch/mn10300/lib/usercopy.c b/arch/mn10300/lib/usercopy.c index a75b203059c..7826e6c364e 100644 --- a/arch/mn10300/lib/usercopy.c +++ b/arch/mn10300/lib/usercopy.c | |||
@@ -62,7 +62,7 @@ do { \ | |||
62 | " .previous" \ | 62 | " .previous" \ |
63 | :"=&r"(res), "=r"(count), "=&r"(w) \ | 63 | :"=&r"(res), "=r"(count), "=&r"(w) \ |
64 | :"i"(-EFAULT), "1"(count), "a"(src), "a"(dst) \ | 64 | :"i"(-EFAULT), "1"(count), "a"(src), "a"(dst) \ |
65 | :"memory"); \ | 65 | : "memory", "cc"); \ |
66 | } while (0) | 66 | } while (0) |
67 | 67 | ||
68 | long | 68 | long |
@@ -109,7 +109,7 @@ do { \ | |||
109 | ".previous\n" \ | 109 | ".previous\n" \ |
110 | : "+r"(size), "=&r"(w) \ | 110 | : "+r"(size), "=&r"(w) \ |
111 | : "a"(addr), "d"(0) \ | 111 | : "a"(addr), "d"(0) \ |
112 | : "memory"); \ | 112 | : "memory", "cc"); \ |
113 | } while (0) | 113 | } while (0) |
114 | 114 | ||
115 | unsigned long | 115 | unsigned long |
@@ -161,6 +161,6 @@ long strnlen_user(const char *s, long n) | |||
161 | ".previous\n" | 161 | ".previous\n" |
162 | :"=d"(res), "=&r"(w) | 162 | :"=d"(res), "=&r"(w) |
163 | :"0"(0), "a"(s), "r"(n) | 163 | :"0"(0), "a"(s), "r"(n) |
164 | :"memory"); | 164 | : "memory", "cc"); |
165 | return res; | 165 | return res; |
166 | } | 166 | } |
diff --git a/arch/mn10300/mm/dma-alloc.c b/arch/mn10300/mm/dma-alloc.c index f3649d8f50e..ee82d624b3c 100644 --- a/arch/mn10300/mm/dma-alloc.c +++ b/arch/mn10300/mm/dma-alloc.c | |||
@@ -16,12 +16,24 @@ | |||
16 | #include <linux/pci.h> | 16 | #include <linux/pci.h> |
17 | #include <asm/io.h> | 17 | #include <asm/io.h> |
18 | 18 | ||
19 | static unsigned long pci_sram_allocated = 0xbc000000; | ||
20 | |||
19 | void *dma_alloc_coherent(struct device *dev, size_t size, | 21 | void *dma_alloc_coherent(struct device *dev, size_t size, |
20 | dma_addr_t *dma_handle, int gfp) | 22 | dma_addr_t *dma_handle, int gfp) |
21 | { | 23 | { |
22 | unsigned long addr; | 24 | unsigned long addr; |
23 | void *ret; | 25 | void *ret; |
24 | 26 | ||
27 | printk("dma_alloc_coherent(%s,%zu,,%x)\n", dev_name(dev), size, gfp); | ||
28 | |||
29 | if (0xbe000000 - pci_sram_allocated >= size) { | ||
30 | size = (size + 255) & ~255; | ||
31 | addr = pci_sram_allocated; | ||
32 | pci_sram_allocated += size; | ||
33 | ret = (void *) addr; | ||
34 | goto done; | ||
35 | } | ||
36 | |||
25 | /* ignore region specifiers */ | 37 | /* ignore region specifiers */ |
26 | gfp &= ~(__GFP_DMA | __GFP_HIGHMEM); | 38 | gfp &= ~(__GFP_DMA | __GFP_HIGHMEM); |
27 | 39 | ||
@@ -41,7 +53,9 @@ void *dma_alloc_coherent(struct device *dev, size_t size, | |||
41 | /* write back and evict all cache lines covering this region */ | 53 | /* write back and evict all cache lines covering this region */ |
42 | mn10300_dcache_flush_inv_range2(virt_to_phys((void *) addr), PAGE_SIZE); | 54 | mn10300_dcache_flush_inv_range2(virt_to_phys((void *) addr), PAGE_SIZE); |
43 | 55 | ||
56 | done: | ||
44 | *dma_handle = virt_to_bus((void *) addr); | 57 | *dma_handle = virt_to_bus((void *) addr); |
58 | printk("dma_alloc_coherent() = %p [%x]\n", ret, *dma_handle); | ||
45 | return ret; | 59 | return ret; |
46 | } | 60 | } |
47 | EXPORT_SYMBOL(dma_alloc_coherent); | 61 | EXPORT_SYMBOL(dma_alloc_coherent); |
@@ -51,6 +65,9 @@ void dma_free_coherent(struct device *dev, size_t size, void *vaddr, | |||
51 | { | 65 | { |
52 | unsigned long addr = (unsigned long) vaddr & ~0x20000000; | 66 | unsigned long addr = (unsigned long) vaddr & ~0x20000000; |
53 | 67 | ||
68 | if (addr >= 0x9c000000) | ||
69 | return; | ||
70 | |||
54 | free_pages(addr, get_order(size)); | 71 | free_pages(addr, get_order(size)); |
55 | } | 72 | } |
56 | EXPORT_SYMBOL(dma_free_coherent); | 73 | EXPORT_SYMBOL(dma_free_coherent); |
diff --git a/arch/mn10300/mm/init.c b/arch/mn10300/mm/init.c index ec1420562dc..dd27a9a3515 100644 --- a/arch/mn10300/mm/init.c +++ b/arch/mn10300/mm/init.c | |||
@@ -118,8 +118,7 @@ void __init mem_init(void) | |||
118 | reservedpages << (PAGE_SHIFT - 10), | 118 | reservedpages << (PAGE_SHIFT - 10), |
119 | datasize >> 10, | 119 | datasize >> 10, |
120 | initsize >> 10, | 120 | initsize >> 10, |
121 | (unsigned long) (totalhigh_pages << (PAGE_SHIFT - 10)) | 121 | totalhigh_pages << (PAGE_SHIFT - 10)); |
122 | ); | ||
123 | } | 122 | } |
124 | 123 | ||
125 | /* | 124 | /* |
diff --git a/arch/mn10300/mm/misalignment.c b/arch/mn10300/mm/misalignment.c index 30016251f65..6dffbf97ac2 100644 --- a/arch/mn10300/mm/misalignment.c +++ b/arch/mn10300/mm/misalignment.c | |||
@@ -633,13 +633,13 @@ static int misalignment_addr(unsigned long *registers, unsigned long sp, | |||
633 | goto displace_or_inc; | 633 | goto displace_or_inc; |
634 | case SD24: | 634 | case SD24: |
635 | tmp = disp << 8; | 635 | tmp = disp << 8; |
636 | asm("asr 8,%0" : "=r"(tmp) : "0"(tmp)); | 636 | asm("asr 8,%0" : "=r"(tmp) : "0"(tmp) : "cc"); |
637 | disp = (long) tmp; | 637 | disp = (long) tmp; |
638 | goto displace_or_inc; | 638 | goto displace_or_inc; |
639 | case SIMM4_2: | 639 | case SIMM4_2: |
640 | tmp = opcode >> 4 & 0x0f; | 640 | tmp = opcode >> 4 & 0x0f; |
641 | tmp <<= 28; | 641 | tmp <<= 28; |
642 | asm("asr 28,%0" : "=r"(tmp) : "0"(tmp)); | 642 | asm("asr 28,%0" : "=r"(tmp) : "0"(tmp) : "cc"); |
643 | disp = (long) tmp; | 643 | disp = (long) tmp; |
644 | goto displace_or_inc; | 644 | goto displace_or_inc; |
645 | case IMM8: | 645 | case IMM8: |
diff --git a/arch/mn10300/unit-asb2305/include/unit/serial.h b/arch/mn10300/unit-asb2305/include/unit/serial.h index 3bfc9093878..8086cc092ce 100644 --- a/arch/mn10300/unit-asb2305/include/unit/serial.h +++ b/arch/mn10300/unit-asb2305/include/unit/serial.h | |||
@@ -11,7 +11,7 @@ | |||
11 | #ifndef _ASM_UNIT_SERIAL_H | 11 | #ifndef _ASM_UNIT_SERIAL_H |
12 | #define _ASM_UNIT_SERIAL_H | 12 | #define _ASM_UNIT_SERIAL_H |
13 | 13 | ||
14 | #include <asm/cpu/cpu-regs.h> | 14 | #include <asm/cpu-regs.h> |
15 | #include <proc/irq.h> | 15 | #include <proc/irq.h> |
16 | #include <linux/serial_reg.h> | 16 | #include <linux/serial_reg.h> |
17 | 17 | ||
diff --git a/arch/mn10300/unit-asb2305/include/unit/timex.h b/arch/mn10300/unit-asb2305/include/unit/timex.h index a71c49aa85e..d1c72d59fa9 100644 --- a/arch/mn10300/unit-asb2305/include/unit/timex.h +++ b/arch/mn10300/unit-asb2305/include/unit/timex.h | |||
@@ -15,7 +15,7 @@ | |||
15 | #include <linux/irq.h> | 15 | #include <linux/irq.h> |
16 | #endif /* __ASSEMBLY__ */ | 16 | #endif /* __ASSEMBLY__ */ |
17 | 17 | ||
18 | #include <asm/cpu/timer-regs.h> | 18 | #include <asm/timer-regs.h> |
19 | #include <unit/clock.h> | 19 | #include <unit/clock.h> |
20 | 20 | ||
21 | /* | 21 | /* |
diff --git a/arch/mn10300/unit-asb2305/leds.c b/arch/mn10300/unit-asb2305/leds.c index d345ff9042d..6f8de995402 100644 --- a/arch/mn10300/unit-asb2305/leds.c +++ b/arch/mn10300/unit-asb2305/leds.c | |||
@@ -13,8 +13,8 @@ | |||
13 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <asm/io.h> | 14 | #include <asm/io.h> |
15 | #include <asm/processor.h> | 15 | #include <asm/processor.h> |
16 | #include <asm/cpu/intctl-regs.h> | 16 | #include <asm/intctl-regs.h> |
17 | #include <asm/cpu/rtc-regs.h> | 17 | #include <asm/rtc-regs.h> |
18 | #include <unit/leds.h> | 18 | #include <unit/leds.h> |
19 | 19 | ||
20 | static const u8 asb2305_led_hex_tbl[16] = { | 20 | static const u8 asb2305_led_hex_tbl[16] = { |
diff --git a/arch/mn10300/unit-asb2305/pci-asb2305.c b/arch/mn10300/unit-asb2305/pci-asb2305.c index d100ca78846..78cd134ddf7 100644 --- a/arch/mn10300/unit-asb2305/pci-asb2305.c +++ b/arch/mn10300/unit-asb2305/pci-asb2305.c | |||
@@ -218,45 +218,6 @@ void __init pcibios_resource_survey(void) | |||
218 | pcibios_allocate_resources(1); | 218 | pcibios_allocate_resources(1); |
219 | } | 219 | } |
220 | 220 | ||
221 | int pcibios_enable_resources(struct pci_dev *dev, int mask) | ||
222 | { | ||
223 | u16 cmd, old_cmd; | ||
224 | int idx; | ||
225 | struct resource *r; | ||
226 | |||
227 | pci_read_config_word(dev, PCI_COMMAND, &cmd); | ||
228 | old_cmd = cmd; | ||
229 | |||
230 | for (idx = 0; idx < 6; idx++) { | ||
231 | /* Only set up the requested stuff */ | ||
232 | if (!(mask & (1 << idx))) | ||
233 | continue; | ||
234 | |||
235 | r = &dev->resource[idx]; | ||
236 | |||
237 | if (!r->start && r->end) { | ||
238 | printk(KERN_ERR | ||
239 | "PCI: Device %s not available because of" | ||
240 | " resource collisions\n", | ||
241 | pci_name(dev)); | ||
242 | return -EINVAL; | ||
243 | } | ||
244 | |||
245 | if (r->flags & IORESOURCE_IO) | ||
246 | cmd |= PCI_COMMAND_IO; | ||
247 | if (r->flags & IORESOURCE_MEM) | ||
248 | cmd |= PCI_COMMAND_MEMORY; | ||
249 | } | ||
250 | |||
251 | if (dev->resource[PCI_ROM_RESOURCE].start) | ||
252 | cmd |= PCI_COMMAND_MEMORY; | ||
253 | |||
254 | if (cmd != old_cmd) | ||
255 | pci_write_config_word(dev, PCI_COMMAND, cmd); | ||
256 | |||
257 | return 0; | ||
258 | } | ||
259 | |||
260 | /* | 221 | /* |
261 | * If we set up a device for bus mastering, we need to check the latency | 222 | * If we set up a device for bus mastering, we need to check the latency |
262 | * timer as certain crappy BIOSes forget to set it properly. | 223 | * timer as certain crappy BIOSes forget to set it properly. |
diff --git a/arch/mn10300/unit-asb2305/pci-asb2305.h b/arch/mn10300/unit-asb2305/pci-asb2305.h index 9763d1ce343..c3fa294b6e2 100644 --- a/arch/mn10300/unit-asb2305/pci-asb2305.h +++ b/arch/mn10300/unit-asb2305/pci-asb2305.h | |||
@@ -34,7 +34,6 @@ extern unsigned int pci_probe; | |||
34 | extern unsigned int pcibios_max_latency; | 34 | extern unsigned int pcibios_max_latency; |
35 | 35 | ||
36 | extern void pcibios_resource_survey(void); | 36 | extern void pcibios_resource_survey(void); |
37 | extern int pcibios_enable_resources(struct pci_dev *dev, int mask); | ||
38 | 37 | ||
39 | /* pci.c */ | 38 | /* pci.c */ |
40 | 39 | ||
diff --git a/arch/mn10300/unit-asb2305/pci.c b/arch/mn10300/unit-asb2305/pci.c index 07dbbcda3b2..2cb7e75ba1c 100644 --- a/arch/mn10300/unit-asb2305/pci.c +++ b/arch/mn10300/unit-asb2305/pci.c | |||
@@ -27,6 +27,29 @@ struct pci_bus *pci_root_bus; | |||
27 | struct pci_ops *pci_root_ops; | 27 | struct pci_ops *pci_root_ops; |
28 | 28 | ||
29 | /* | 29 | /* |
30 | * The accessible PCI window does not cover the entire CPU address space, but | ||
31 | * there are devices we want to access outside of that window, so we need to | ||
32 | * insert specific PCI bus resources instead of using the platform-level bus | ||
33 | * resources directly for the PCI root bus. | ||
34 | * | ||
35 | * These are configured and inserted by pcibios_init() and are attached to the | ||
36 | * root bus by pcibios_fixup_bus(). | ||
37 | */ | ||
38 | static struct resource pci_ioport_resource = { | ||
39 | .name = "PCI IO", | ||
40 | .start = 0xbe000000, | ||
41 | .end = 0xbe03ffff, | ||
42 | .flags = IORESOURCE_IO, | ||
43 | }; | ||
44 | |||
45 | static struct resource pci_iomem_resource = { | ||
46 | .name = "PCI mem", | ||
47 | .start = 0xb8000000, | ||
48 | .end = 0xbbffffff, | ||
49 | .flags = IORESOURCE_MEM, | ||
50 | }; | ||
51 | |||
52 | /* | ||
30 | * Functions for accessing PCI configuration space | 53 | * Functions for accessing PCI configuration space |
31 | */ | 54 | */ |
32 | 55 | ||
@@ -279,7 +302,7 @@ static int __init pci_sanity_check(struct pci_ops *o) | |||
279 | (x == PCI_VENDOR_ID_INTEL || x == PCI_VENDOR_ID_COMPAQ))) | 302 | (x == PCI_VENDOR_ID_INTEL || x == PCI_VENDOR_ID_COMPAQ))) |
280 | return 1; | 303 | return 1; |
281 | 304 | ||
282 | printk(KERN_ERROR "PCI: Sanity check failed\n"); | 305 | printk(KERN_ERR "PCI: Sanity check failed\n"); |
283 | return 0; | 306 | return 0; |
284 | } | 307 | } |
285 | 308 | ||
@@ -297,6 +320,7 @@ static int __init pci_check_direct(void) | |||
297 | printk(KERN_INFO "PCI: Using configuration ampci\n"); | 320 | printk(KERN_INFO "PCI: Using configuration ampci\n"); |
298 | request_mem_region(0xBE040000, 256, "AMPCI bridge"); | 321 | request_mem_region(0xBE040000, 256, "AMPCI bridge"); |
299 | request_mem_region(0xBFFFFFF4, 12, "PCI ampci"); | 322 | request_mem_region(0xBFFFFFF4, 12, "PCI ampci"); |
323 | request_mem_region(0xBC000000, 32 * 1024 * 1024, "PCI SRAM"); | ||
300 | return 0; | 324 | return 0; |
301 | } | 325 | } |
302 | 326 | ||
@@ -358,6 +382,11 @@ void __devinit pcibios_fixup_bus(struct pci_bus *bus) | |||
358 | { | 382 | { |
359 | struct pci_dev *dev; | 383 | struct pci_dev *dev; |
360 | 384 | ||
385 | if (bus->number == 0) { | ||
386 | bus->resource[0] = &pci_ioport_resource; | ||
387 | bus->resource[1] = &pci_iomem_resource; | ||
388 | } | ||
389 | |||
361 | if (bus->self) { | 390 | if (bus->self) { |
362 | pci_read_bridge_bases(bus); | 391 | pci_read_bridge_bases(bus); |
363 | pcibios_fixup_device_resources(bus->self); | 392 | pcibios_fixup_device_resources(bus->self); |
@@ -380,6 +409,11 @@ static int __init pcibios_init(void) | |||
380 | iomem_resource.start = 0xA0000000; | 409 | iomem_resource.start = 0xA0000000; |
381 | iomem_resource.end = 0xDFFFFFFF; | 410 | iomem_resource.end = 0xDFFFFFFF; |
382 | 411 | ||
412 | if (insert_resource(&iomem_resource, &pci_iomem_resource) < 0) | ||
413 | panic("Unable to insert PCI IOMEM resource\n"); | ||
414 | if (insert_resource(&ioport_resource, &pci_ioport_resource) < 0) | ||
415 | panic("Unable to insert PCI IOPORT resource\n"); | ||
416 | |||
383 | if (!pci_probe) | 417 | if (!pci_probe) |
384 | return 0; | 418 | return 0; |
385 | 419 | ||
@@ -391,32 +425,11 @@ static int __init pcibios_init(void) | |||
391 | printk(KERN_INFO "PCI: Probing PCI hardware [mempage %08x]\n", | 425 | printk(KERN_INFO "PCI: Probing PCI hardware [mempage %08x]\n", |
392 | MEM_PAGING_REG); | 426 | MEM_PAGING_REG); |
393 | 427 | ||
394 | { | 428 | pci_root_bus = pci_scan_bus(0, &pci_direct_ampci, NULL); |
395 | #if 0 | ||
396 | static struct pci_bus am33_root_bus = { | ||
397 | .children = LIST_HEAD_INIT(am33_root_bus.children), | ||
398 | .devices = LIST_HEAD_INIT(am33_root_bus.devices), | ||
399 | .number = 0, | ||
400 | .secondary = 0, | ||
401 | .resource = { &ioport_resource, &iomem_resource }, | ||
402 | }; | ||
403 | |||
404 | am33_root_bus.ops = pci_root_ops; | ||
405 | list_add_tail(&am33_root_bus.node, &pci_root_buses); | ||
406 | |||
407 | am33_root_bus.subordinate = pci_do_scan_bus(0); | ||
408 | |||
409 | pci_root_bus = &am33_root_bus; | ||
410 | #else | ||
411 | pci_root_bus = pci_scan_bus(0, &pci_direct_ampci, NULL); | ||
412 | #endif | ||
413 | } | ||
414 | 429 | ||
415 | pcibios_irq_init(); | 430 | pcibios_irq_init(); |
416 | pcibios_fixup_irqs(); | 431 | pcibios_fixup_irqs(); |
417 | #if 0 | ||
418 | pcibios_resource_survey(); | 432 | pcibios_resource_survey(); |
419 | #endif | ||
420 | return 0; | 433 | return 0; |
421 | } | 434 | } |
422 | 435 | ||
@@ -440,7 +453,7 @@ int pcibios_enable_device(struct pci_dev *dev, int mask) | |||
440 | { | 453 | { |
441 | int err; | 454 | int err; |
442 | 455 | ||
443 | err = pcibios_enable_resources(dev, mask); | 456 | err = pci_enable_resources(dev, mask); |
444 | if (err == 0) | 457 | if (err == 0) |
445 | pcibios_enable_irq(dev); | 458 | pcibios_enable_irq(dev); |
446 | return err; | 459 | return err; |
@@ -455,6 +468,7 @@ static void __init unit_disable_pcnet(struct pci_bus *bus, struct pci_ops *o) | |||
455 | 468 | ||
456 | bus->number = 0; | 469 | bus->number = 0; |
457 | 470 | ||
471 | o->read (bus, PCI_DEVFN(2, 0), PCI_VENDOR_ID, 4, &x); | ||
458 | o->read (bus, PCI_DEVFN(2, 0), PCI_COMMAND, 2, &x); | 472 | o->read (bus, PCI_DEVFN(2, 0), PCI_COMMAND, 2, &x); |
459 | x |= PCI_COMMAND_MASTER | | 473 | x |= PCI_COMMAND_MASTER | |
460 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | | 474 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | |
diff --git a/arch/mn10300/unit-asb2305/unit-init.c b/arch/mn10300/unit-asb2305/unit-init.c index 1c452cc3f6e..a76c8e0ab90 100644 --- a/arch/mn10300/unit-asb2305/unit-init.c +++ b/arch/mn10300/unit-asb2305/unit-init.c | |||
@@ -15,9 +15,8 @@ | |||
15 | #include <asm/io.h> | 15 | #include <asm/io.h> |
16 | #include <asm/setup.h> | 16 | #include <asm/setup.h> |
17 | #include <asm/processor.h> | 17 | #include <asm/processor.h> |
18 | #include <asm/cpu/intctl-regs.h> | 18 | #include <asm/intctl-regs.h> |
19 | #include <asm/cpu/rtc-regs.h> | 19 | #include <asm/serial-regs.h> |
20 | #include <asm/cpu/serial-regs.h> | ||
21 | #include <unit/serial.h> | 20 | #include <unit/serial.h> |
22 | 21 | ||
23 | /* | 22 | /* |
diff --git a/arch/powerpc/boot/dts/katmai.dts b/arch/powerpc/boot/dts/katmai.dts index 51eb6ed5da2..8f345de960c 100644 --- a/arch/powerpc/boot/dts/katmai.dts +++ b/arch/powerpc/boot/dts/katmai.dts | |||
@@ -108,12 +108,19 @@ | |||
108 | dcr-reg = <0x00c 0x002>; | 108 | dcr-reg = <0x00c 0x002>; |
109 | }; | 109 | }; |
110 | 110 | ||
111 | MQ0: mq { | ||
112 | compatible = "ibm,mq-440spe"; | ||
113 | dcr-reg = <0x040 0x020>; | ||
114 | }; | ||
115 | |||
111 | plb { | 116 | plb { |
112 | compatible = "ibm,plb-440spe", "ibm,plb-440gp", "ibm,plb4"; | 117 | compatible = "ibm,plb-440spe", "ibm,plb-440gp", "ibm,plb4"; |
113 | #address-cells = <2>; | 118 | #address-cells = <2>; |
114 | #size-cells = <1>; | 119 | #size-cells = <1>; |
115 | /* addr-child addr-parent size */ | 120 | /* addr-child addr-parent size */ |
116 | ranges = <0x4 0xe0000000 0x4 0xe0000000 0x20000000 | 121 | ranges = <0x4 0x00100000 0x4 0x00100000 0x00001000 |
122 | 0x4 0x00200000 0x4 0x00200000 0x00000400 | ||
123 | 0x4 0xe0000000 0x4 0xe0000000 0x20000000 | ||
117 | 0xc 0x00000000 0xc 0x00000000 0x20000000 | 124 | 0xc 0x00000000 0xc 0x00000000 0x20000000 |
118 | 0xd 0x00000000 0xd 0x00000000 0x80000000 | 125 | 0xd 0x00000000 0xd 0x00000000 0x80000000 |
119 | 0xd 0x80000000 0xd 0x80000000 0x80000000 | 126 | 0xd 0x80000000 0xd 0x80000000 0x80000000 |
@@ -400,6 +407,49 @@ | |||
400 | 0x0 0x0 0x0 0x3 &UIC3 0xa 0x4 /* swizzled int C */ | 407 | 0x0 0x0 0x0 0x3 &UIC3 0xa 0x4 /* swizzled int C */ |
401 | 0x0 0x0 0x0 0x4 &UIC3 0xb 0x4 /* swizzled int D */>; | 408 | 0x0 0x0 0x0 0x4 &UIC3 0xb 0x4 /* swizzled int D */>; |
402 | }; | 409 | }; |
410 | |||
411 | I2O: i2o@400100000 { | ||
412 | compatible = "ibm,i2o-440spe"; | ||
413 | reg = <0x00000004 0x00100000 0x100>; | ||
414 | dcr-reg = <0x060 0x020>; | ||
415 | }; | ||
416 | |||
417 | DMA0: dma0@400100100 { | ||
418 | compatible = "ibm,dma-440spe"; | ||
419 | cell-index = <0>; | ||
420 | reg = <0x00000004 0x00100100 0x100>; | ||
421 | dcr-reg = <0x060 0x020>; | ||
422 | interrupt-parent = <&DMA0>; | ||
423 | interrupts = <0 1>; | ||
424 | #interrupt-cells = <1>; | ||
425 | #address-cells = <0>; | ||
426 | #size-cells = <0>; | ||
427 | interrupt-map = < | ||
428 | 0 &UIC0 0x14 4 | ||
429 | 1 &UIC1 0x16 4>; | ||
430 | }; | ||
431 | |||
432 | DMA1: dma1@400100200 { | ||
433 | compatible = "ibm,dma-440spe"; | ||
434 | cell-index = <1>; | ||
435 | reg = <0x00000004 0x00100200 0x100>; | ||
436 | dcr-reg = <0x060 0x020>; | ||
437 | interrupt-parent = <&DMA1>; | ||
438 | interrupts = <0 1>; | ||
439 | #interrupt-cells = <1>; | ||
440 | #address-cells = <0>; | ||
441 | #size-cells = <0>; | ||
442 | interrupt-map = < | ||
443 | 0 &UIC0 0x16 4 | ||
444 | 1 &UIC1 0x16 4>; | ||
445 | }; | ||
446 | |||
447 | xor-accel@400200000 { | ||
448 | compatible = "amcc,xor-accelerator"; | ||
449 | reg = <0x00000004 0x00200000 0x400>; | ||
450 | interrupt-parent = <&UIC1>; | ||
451 | interrupts = <0x1f 4>; | ||
452 | }; | ||
403 | }; | 453 | }; |
404 | 454 | ||
405 | chosen { | 455 | chosen { |
diff --git a/arch/powerpc/boot/dts/mpc8315erdb.dts b/arch/powerpc/boot/dts/mpc8315erdb.dts index 32e10f588c1..8a3a4f3ef83 100644 --- a/arch/powerpc/boot/dts/mpc8315erdb.dts +++ b/arch/powerpc/boot/dts/mpc8315erdb.dts | |||
@@ -204,6 +204,7 @@ | |||
204 | interrupt-parent = <&ipic>; | 204 | interrupt-parent = <&ipic>; |
205 | tbi-handle = <&tbi0>; | 205 | tbi-handle = <&tbi0>; |
206 | phy-handle = < &phy0 >; | 206 | phy-handle = < &phy0 >; |
207 | fsl,magic-packet; | ||
207 | 208 | ||
208 | mdio@520 { | 209 | mdio@520 { |
209 | #address-cells = <1>; | 210 | #address-cells = <1>; |
@@ -246,6 +247,7 @@ | |||
246 | interrupt-parent = <&ipic>; | 247 | interrupt-parent = <&ipic>; |
247 | tbi-handle = <&tbi1>; | 248 | tbi-handle = <&tbi1>; |
248 | phy-handle = < &phy1 >; | 249 | phy-handle = < &phy1 >; |
250 | fsl,magic-packet; | ||
249 | 251 | ||
250 | mdio@520 { | 252 | mdio@520 { |
251 | #address-cells = <1>; | 253 | #address-cells = <1>; |
@@ -309,6 +311,22 @@ | |||
309 | interrupt-parent = <&ipic>; | 311 | interrupt-parent = <&ipic>; |
310 | }; | 312 | }; |
311 | 313 | ||
314 | gtm1: timer@500 { | ||
315 | compatible = "fsl,mpc8315-gtm", "fsl,gtm"; | ||
316 | reg = <0x500 0x100>; | ||
317 | interrupts = <90 8 78 8 84 8 72 8>; | ||
318 | interrupt-parent = <&ipic>; | ||
319 | clock-frequency = <133333333>; | ||
320 | }; | ||
321 | |||
322 | timer@600 { | ||
323 | compatible = "fsl,mpc8315-gtm", "fsl,gtm"; | ||
324 | reg = <0x600 0x100>; | ||
325 | interrupts = <91 8 79 8 85 8 73 8>; | ||
326 | interrupt-parent = <&ipic>; | ||
327 | clock-frequency = <133333333>; | ||
328 | }; | ||
329 | |||
312 | /* IPIC | 330 | /* IPIC |
313 | * interrupts cell = <intr #, sense> | 331 | * interrupts cell = <intr #, sense> |
314 | * sense values match linux IORESOURCE_IRQ_* defines: | 332 | * sense values match linux IORESOURCE_IRQ_* defines: |
@@ -337,6 +355,15 @@ | |||
337 | 0x59 0x8>; | 355 | 0x59 0x8>; |
338 | interrupt-parent = < &ipic >; | 356 | interrupt-parent = < &ipic >; |
339 | }; | 357 | }; |
358 | |||
359 | pmc: power@b00 { | ||
360 | compatible = "fsl,mpc8315-pmc", "fsl,mpc8313-pmc", | ||
361 | "fsl,mpc8349-pmc"; | ||
362 | reg = <0xb00 0x100 0xa00 0x100>; | ||
363 | interrupts = <80 8>; | ||
364 | interrupt-parent = <&ipic>; | ||
365 | fsl,mpc8313-wakeup-timer = <>m1>; | ||
366 | }; | ||
340 | }; | 367 | }; |
341 | 368 | ||
342 | pci0: pci@e0008500 { | 369 | pci0: pci@e0008500 { |
diff --git a/arch/powerpc/boot/dts/mpc8349emitx.dts b/arch/powerpc/boot/dts/mpc8349emitx.dts index feeeb7f9d60..b53d1df11e2 100644 --- a/arch/powerpc/boot/dts/mpc8349emitx.dts +++ b/arch/powerpc/boot/dts/mpc8349emitx.dts | |||
@@ -63,6 +63,24 @@ | |||
63 | reg = <0x200 0x100>; | 63 | reg = <0x200 0x100>; |
64 | }; | 64 | }; |
65 | 65 | ||
66 | gpio1: gpio-controller@c00 { | ||
67 | #gpio-cells = <2>; | ||
68 | compatible = "fsl,mpc8349-gpio"; | ||
69 | reg = <0xc00 0x100>; | ||
70 | interrupts = <74 0x8>; | ||
71 | interrupt-parent = <&ipic>; | ||
72 | gpio-controller; | ||
73 | }; | ||
74 | |||
75 | gpio2: gpio-controller@d00 { | ||
76 | #gpio-cells = <2>; | ||
77 | compatible = "fsl,mpc8349-gpio"; | ||
78 | reg = <0xd00 0x100>; | ||
79 | interrupts = <75 0x8>; | ||
80 | interrupt-parent = <&ipic>; | ||
81 | gpio-controller; | ||
82 | }; | ||
83 | |||
66 | i2c@3000 { | 84 | i2c@3000 { |
67 | #address-cells = <1>; | 85 | #address-cells = <1>; |
68 | #size-cells = <0>; | 86 | #size-cells = <0>; |
@@ -72,6 +90,12 @@ | |||
72 | interrupts = <14 0x8>; | 90 | interrupts = <14 0x8>; |
73 | interrupt-parent = <&ipic>; | 91 | interrupt-parent = <&ipic>; |
74 | dfsrr; | 92 | dfsrr; |
93 | |||
94 | eeprom: at24@50 { | ||
95 | compatible = "st-micro,24c256"; | ||
96 | reg = <0x50>; | ||
97 | }; | ||
98 | |||
75 | }; | 99 | }; |
76 | 100 | ||
77 | i2c@3100 { | 101 | i2c@3100 { |
@@ -91,6 +115,25 @@ | |||
91 | interrupt-parent = <&ipic>; | 115 | interrupt-parent = <&ipic>; |
92 | }; | 116 | }; |
93 | 117 | ||
118 | pcf1: iexp@38 { | ||
119 | #gpio-cells = <2>; | ||
120 | compatible = "ti,pcf8574a"; | ||
121 | reg = <0x38>; | ||
122 | gpio-controller; | ||
123 | }; | ||
124 | |||
125 | pcf2: iexp@39 { | ||
126 | #gpio-cells = <2>; | ||
127 | compatible = "ti,pcf8574a"; | ||
128 | reg = <0x39>; | ||
129 | gpio-controller; | ||
130 | }; | ||
131 | |||
132 | spd: at24@51 { | ||
133 | compatible = "at24,spd"; | ||
134 | reg = <0x51>; | ||
135 | }; | ||
136 | |||
94 | mcu_pio: mcu@a { | 137 | mcu_pio: mcu@a { |
95 | #gpio-cells = <2>; | 138 | #gpio-cells = <2>; |
96 | compatible = "fsl,mc9s08qg8-mpc8349emitx", | 139 | compatible = "fsl,mc9s08qg8-mpc8349emitx", |
@@ -275,6 +318,24 @@ | |||
275 | reg = <0x700 0x100>; | 318 | reg = <0x700 0x100>; |
276 | device_type = "ipic"; | 319 | device_type = "ipic"; |
277 | }; | 320 | }; |
321 | |||
322 | gpio-leds { | ||
323 | compatible = "gpio-leds"; | ||
324 | |||
325 | green { | ||
326 | label = "Green"; | ||
327 | gpios = <&pcf1 0 1>; | ||
328 | linux,default-trigger = "heartbeat"; | ||
329 | }; | ||
330 | |||
331 | yellow { | ||
332 | label = "Yellow"; | ||
333 | gpios = <&pcf1 1 1>; | ||
334 | /* linux,default-trigger = "heartbeat"; */ | ||
335 | default-state = "on"; | ||
336 | }; | ||
337 | }; | ||
338 | |||
278 | }; | 339 | }; |
279 | 340 | ||
280 | pci0: pci@e0008500 { | 341 | pci0: pci@e0008500 { |
@@ -331,7 +392,26 @@ | |||
331 | compatible = "fsl,mpc8349e-localbus", | 392 | compatible = "fsl,mpc8349e-localbus", |
332 | "fsl,pq2pro-localbus"; | 393 | "fsl,pq2pro-localbus"; |
333 | reg = <0xe0005000 0xd8>; | 394 | reg = <0xe0005000 0xd8>; |
334 | ranges = <0x3 0x0 0xf0000000 0x210>; | 395 | ranges = <0x0 0x0 0xfe000000 0x1000000 /* flash */ |
396 | 0x1 0x0 0xf8000000 0x20000 /* VSC 7385 */ | ||
397 | 0x2 0x0 0xf9000000 0x200000 /* exp slot */ | ||
398 | 0x3 0x0 0xf0000000 0x210>; /* CF slot */ | ||
399 | |||
400 | flash@0,0 { | ||
401 | compatible = "cfi-flash"; | ||
402 | reg = <0x0 0x0 0x800000>; | ||
403 | bank-width = <2>; | ||
404 | device-width = <1>; | ||
405 | }; | ||
406 | |||
407 | flash@0,800000 { | ||
408 | #address-cells = <1>; | ||
409 | #size-cells = <1>; | ||
410 | compatible = "cfi-flash"; | ||
411 | reg = <0x0 0x800000 0x800000>; | ||
412 | bank-width = <2>; | ||
413 | device-width = <1>; | ||
414 | }; | ||
335 | 415 | ||
336 | pata@3,0 { | 416 | pata@3,0 { |
337 | compatible = "fsl,mpc8349emitx-pata", "ata-generic"; | 417 | compatible = "fsl,mpc8349emitx-pata", "ata-generic"; |
diff --git a/arch/powerpc/boot/dts/warp.dts b/arch/powerpc/boot/dts/warp.dts index 31605ee4afb..e576ee85c42 100644 --- a/arch/powerpc/boot/dts/warp.dts +++ b/arch/powerpc/boot/dts/warp.dts | |||
@@ -146,7 +146,7 @@ | |||
146 | 146 | ||
147 | fpga@2,4000 { | 147 | fpga@2,4000 { |
148 | compatible = "pika,fpga-sd"; | 148 | compatible = "pika,fpga-sd"; |
149 | reg = <0x00000002 0x00004000 0x00000A00>; | 149 | reg = <0x00000002 0x00004000 0x00004000>; |
150 | }; | 150 | }; |
151 | 151 | ||
152 | nor@0,0 { | 152 | nor@0,0 { |
diff --git a/arch/powerpc/boot/ugecon.c b/arch/powerpc/boot/ugecon.c index 50609ea6ddf..8f2a6b31153 100644 --- a/arch/powerpc/boot/ugecon.c +++ b/arch/powerpc/boot/ugecon.c | |||
@@ -86,7 +86,7 @@ static void ug_putc(char ch) | |||
86 | 86 | ||
87 | while (!ug_is_txfifo_ready() && count--) | 87 | while (!ug_is_txfifo_ready() && count--) |
88 | barrier(); | 88 | barrier(); |
89 | if (count) | 89 | if (count >= 0) |
90 | ug_raw_putc(ch); | 90 | ug_raw_putc(ch); |
91 | } | 91 | } |
92 | 92 | ||
diff --git a/arch/powerpc/configs/g5_defconfig b/arch/powerpc/configs/g5_defconfig index fc905924c02..826a65d3f00 100644 --- a/arch/powerpc/configs/g5_defconfig +++ b/arch/powerpc/configs/g5_defconfig | |||
@@ -757,7 +757,7 @@ CONFIG_SUNGEM=y | |||
757 | # CONFIG_B44 is not set | 757 | # CONFIG_B44 is not set |
758 | # CONFIG_ATL2 is not set | 758 | # CONFIG_ATL2 is not set |
759 | CONFIG_NETDEV_1000=y | 759 | CONFIG_NETDEV_1000=y |
760 | CONFIG_ACENIC=y | 760 | CONFIG_ACENIC=m |
761 | CONFIG_ACENIC_OMIT_TIGON_I=y | 761 | CONFIG_ACENIC_OMIT_TIGON_I=y |
762 | # CONFIG_DL2K is not set | 762 | # CONFIG_DL2K is not set |
763 | CONFIG_E1000=y | 763 | CONFIG_E1000=y |
@@ -794,8 +794,8 @@ CONFIG_NETDEV_10000=y | |||
794 | # CONFIG_BNX2X is not set | 794 | # CONFIG_BNX2X is not set |
795 | # CONFIG_QLGE is not set | 795 | # CONFIG_QLGE is not set |
796 | # CONFIG_SFC is not set | 796 | # CONFIG_SFC is not set |
797 | CONFIG_TR=y | 797 | # CONFIG_TR is not set |
798 | CONFIG_IBMOL=y | 798 | # CONFIG_IBMOL is not set |
799 | # CONFIG_3C359 is not set | 799 | # CONFIG_3C359 is not set |
800 | # CONFIG_TMS380TR is not set | 800 | # CONFIG_TMS380TR is not set |
801 | 801 | ||
diff --git a/arch/powerpc/configs/iseries_defconfig b/arch/powerpc/configs/iseries_defconfig index f925c555508..76982c51a4c 100644 --- a/arch/powerpc/configs/iseries_defconfig +++ b/arch/powerpc/configs/iseries_defconfig | |||
@@ -714,8 +714,8 @@ CONFIG_NETDEV_10000=y | |||
714 | # CONFIG_BNX2X is not set | 714 | # CONFIG_BNX2X is not set |
715 | # CONFIG_QLGE is not set | 715 | # CONFIG_QLGE is not set |
716 | # CONFIG_SFC is not set | 716 | # CONFIG_SFC is not set |
717 | CONFIG_TR=y | 717 | # CONFIG_TR is not set |
718 | CONFIG_IBMOL=y | 718 | # CONFIG_IBMOL is not set |
719 | # CONFIG_3C359 is not set | 719 | # CONFIG_3C359 is not set |
720 | # CONFIG_TMS380TR is not set | 720 | # CONFIG_TMS380TR is not set |
721 | 721 | ||
diff --git a/arch/powerpc/configs/ppc64_defconfig b/arch/powerpc/configs/ppc64_defconfig index 25240182457..7b3804a6e36 100644 --- a/arch/powerpc/configs/ppc64_defconfig +++ b/arch/powerpc/configs/ppc64_defconfig | |||
@@ -304,11 +304,11 @@ CONFIG_TICK_ONESHOT=y | |||
304 | CONFIG_NO_HZ=y | 304 | CONFIG_NO_HZ=y |
305 | CONFIG_HIGH_RES_TIMERS=y | 305 | CONFIG_HIGH_RES_TIMERS=y |
306 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | 306 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
307 | # CONFIG_HZ_100 is not set | 307 | CONFIG_HZ_100=y |
308 | CONFIG_HZ_250=y | 308 | # CONFIG_HZ_250 is not set |
309 | # CONFIG_HZ_300 is not set | 309 | # CONFIG_HZ_300 is not set |
310 | # CONFIG_HZ_1000 is not set | 310 | # CONFIG_HZ_1000 is not set |
311 | CONFIG_HZ=250 | 311 | CONFIG_HZ=100 |
312 | CONFIG_SCHED_HRTICK=y | 312 | CONFIG_SCHED_HRTICK=y |
313 | CONFIG_PREEMPT_NONE=y | 313 | CONFIG_PREEMPT_NONE=y |
314 | # CONFIG_PREEMPT_VOLUNTARY is not set | 314 | # CONFIG_PREEMPT_VOLUNTARY is not set |
@@ -980,7 +980,7 @@ CONFIG_E100=y | |||
980 | # CONFIG_SC92031 is not set | 980 | # CONFIG_SC92031 is not set |
981 | # CONFIG_ATL2 is not set | 981 | # CONFIG_ATL2 is not set |
982 | CONFIG_NETDEV_1000=y | 982 | CONFIG_NETDEV_1000=y |
983 | CONFIG_ACENIC=y | 983 | CONFIG_ACENIC=m |
984 | CONFIG_ACENIC_OMIT_TIGON_I=y | 984 | CONFIG_ACENIC_OMIT_TIGON_I=y |
985 | # CONFIG_DL2K is not set | 985 | # CONFIG_DL2K is not set |
986 | CONFIG_E1000=y | 986 | CONFIG_E1000=y |
@@ -1023,8 +1023,8 @@ CONFIG_PASEMI_MAC=y | |||
1023 | # CONFIG_BNX2X is not set | 1023 | # CONFIG_BNX2X is not set |
1024 | # CONFIG_QLGE is not set | 1024 | # CONFIG_QLGE is not set |
1025 | # CONFIG_SFC is not set | 1025 | # CONFIG_SFC is not set |
1026 | CONFIG_TR=y | 1026 | # CONFIG_TR is not set |
1027 | CONFIG_IBMOL=y | 1027 | # CONFIG_IBMOL is not set |
1028 | # CONFIG_3C359 is not set | 1028 | # CONFIG_3C359 is not set |
1029 | # CONFIG_TMS380TR is not set | 1029 | # CONFIG_TMS380TR is not set |
1030 | 1030 | ||
@@ -1863,7 +1863,7 @@ CONFIG_HFSPLUS_FS=m | |||
1863 | # CONFIG_BEFS_FS is not set | 1863 | # CONFIG_BEFS_FS is not set |
1864 | # CONFIG_BFS_FS is not set | 1864 | # CONFIG_BFS_FS is not set |
1865 | # CONFIG_EFS_FS is not set | 1865 | # CONFIG_EFS_FS is not set |
1866 | CONFIG_CRAMFS=y | 1866 | CONFIG_CRAMFS=m |
1867 | # CONFIG_VXFS_FS is not set | 1867 | # CONFIG_VXFS_FS is not set |
1868 | # CONFIG_MINIX_FS is not set | 1868 | # CONFIG_MINIX_FS is not set |
1869 | # CONFIG_OMFS_FS is not set | 1869 | # CONFIG_OMFS_FS is not set |
diff --git a/arch/powerpc/configs/ppc64e_defconfig b/arch/powerpc/configs/ppc64e_defconfig index 18af4603625..8195f1650cb 100644 --- a/arch/powerpc/configs/ppc64e_defconfig +++ b/arch/powerpc/configs/ppc64e_defconfig | |||
@@ -1008,8 +1008,8 @@ CONFIG_IXGB=m | |||
1008 | # CONFIG_QLGE is not set | 1008 | # CONFIG_QLGE is not set |
1009 | # CONFIG_SFC is not set | 1009 | # CONFIG_SFC is not set |
1010 | # CONFIG_BE2NET is not set | 1010 | # CONFIG_BE2NET is not set |
1011 | CONFIG_TR=y | 1011 | # CONFIG_TR is not set |
1012 | CONFIG_IBMOL=y | 1012 | # CONFIG_IBMOL is not set |
1013 | # CONFIG_3C359 is not set | 1013 | # CONFIG_3C359 is not set |
1014 | # CONFIG_TMS380TR is not set | 1014 | # CONFIG_TMS380TR is not set |
1015 | CONFIG_WLAN=y | 1015 | CONFIG_WLAN=y |
diff --git a/arch/powerpc/configs/pseries_defconfig b/arch/powerpc/configs/pseries_defconfig index c568329723b..ca9ff9aad74 100644 --- a/arch/powerpc/configs/pseries_defconfig +++ b/arch/powerpc/configs/pseries_defconfig | |||
@@ -230,11 +230,11 @@ CONFIG_TICK_ONESHOT=y | |||
230 | CONFIG_NO_HZ=y | 230 | CONFIG_NO_HZ=y |
231 | CONFIG_HIGH_RES_TIMERS=y | 231 | CONFIG_HIGH_RES_TIMERS=y |
232 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | 232 | CONFIG_GENERIC_CLOCKEVENTS_BUILD=y |
233 | # CONFIG_HZ_100 is not set | 233 | CONFIG_HZ_100=y |
234 | CONFIG_HZ_250=y | 234 | # CONFIG_HZ_250 is not set |
235 | # CONFIG_HZ_300 is not set | 235 | # CONFIG_HZ_300 is not set |
236 | # CONFIG_HZ_1000 is not set | 236 | # CONFIG_HZ_1000 is not set |
237 | CONFIG_HZ=250 | 237 | CONFIG_HZ=100 |
238 | CONFIG_SCHED_HRTICK=y | 238 | CONFIG_SCHED_HRTICK=y |
239 | CONFIG_PREEMPT_NONE=y | 239 | CONFIG_PREEMPT_NONE=y |
240 | # CONFIG_PREEMPT_VOLUNTARY is not set | 240 | # CONFIG_PREEMPT_VOLUNTARY is not set |
@@ -796,7 +796,7 @@ CONFIG_E100=y | |||
796 | # CONFIG_NET_POCKET is not set | 796 | # CONFIG_NET_POCKET is not set |
797 | # CONFIG_ATL2 is not set | 797 | # CONFIG_ATL2 is not set |
798 | CONFIG_NETDEV_1000=y | 798 | CONFIG_NETDEV_1000=y |
799 | CONFIG_ACENIC=y | 799 | CONFIG_ACENIC=m |
800 | CONFIG_ACENIC_OMIT_TIGON_I=y | 800 | CONFIG_ACENIC_OMIT_TIGON_I=y |
801 | # CONFIG_DL2K is not set | 801 | # CONFIG_DL2K is not set |
802 | CONFIG_E1000=y | 802 | CONFIG_E1000=y |
@@ -834,8 +834,8 @@ CONFIG_S2IO=m | |||
834 | # CONFIG_BNX2X is not set | 834 | # CONFIG_BNX2X is not set |
835 | # CONFIG_QLGE is not set | 835 | # CONFIG_QLGE is not set |
836 | # CONFIG_SFC is not set | 836 | # CONFIG_SFC is not set |
837 | CONFIG_TR=y | 837 | # CONFIG_TR is not set |
838 | CONFIG_IBMOL=y | 838 | # CONFIG_IBMOL is not set |
839 | # CONFIG_3C359 is not set | 839 | # CONFIG_3C359 is not set |
840 | # CONFIG_TMS380TR is not set | 840 | # CONFIG_TMS380TR is not set |
841 | 841 | ||
@@ -1494,7 +1494,7 @@ CONFIG_CONFIGFS_FS=m | |||
1494 | # CONFIG_BEFS_FS is not set | 1494 | # CONFIG_BEFS_FS is not set |
1495 | # CONFIG_BFS_FS is not set | 1495 | # CONFIG_BFS_FS is not set |
1496 | # CONFIG_EFS_FS is not set | 1496 | # CONFIG_EFS_FS is not set |
1497 | CONFIG_CRAMFS=y | 1497 | CONFIG_CRAMFS=m |
1498 | # CONFIG_VXFS_FS is not set | 1498 | # CONFIG_VXFS_FS is not set |
1499 | # CONFIG_MINIX_FS is not set | 1499 | # CONFIG_MINIX_FS is not set |
1500 | # CONFIG_OMFS_FS is not set | 1500 | # CONFIG_OMFS_FS is not set |
diff --git a/arch/powerpc/include/asm/bug.h b/arch/powerpc/include/asm/bug.h index 64e1fdca233..2c15212e170 100644 --- a/arch/powerpc/include/asm/bug.h +++ b/arch/powerpc/include/asm/bug.h | |||
@@ -68,7 +68,7 @@ | |||
68 | _EMIT_BUG_ENTRY \ | 68 | _EMIT_BUG_ENTRY \ |
69 | : : "i" (__FILE__), "i" (__LINE__), \ | 69 | : : "i" (__FILE__), "i" (__LINE__), \ |
70 | "i" (0), "i" (sizeof(struct bug_entry))); \ | 70 | "i" (0), "i" (sizeof(struct bug_entry))); \ |
71 | for(;;) ; \ | 71 | unreachable(); \ |
72 | } while (0) | 72 | } while (0) |
73 | 73 | ||
74 | #define BUG_ON(x) do { \ | 74 | #define BUG_ON(x) do { \ |
diff --git a/arch/powerpc/include/asm/gpio.h b/arch/powerpc/include/asm/gpio.h index ea04632399d..38762edb5e5 100644 --- a/arch/powerpc/include/asm/gpio.h +++ b/arch/powerpc/include/asm/gpio.h | |||
@@ -38,12 +38,9 @@ static inline int gpio_cansleep(unsigned int gpio) | |||
38 | return __gpio_cansleep(gpio); | 38 | return __gpio_cansleep(gpio); |
39 | } | 39 | } |
40 | 40 | ||
41 | /* | ||
42 | * Not implemented, yet. | ||
43 | */ | ||
44 | static inline int gpio_to_irq(unsigned int gpio) | 41 | static inline int gpio_to_irq(unsigned int gpio) |
45 | { | 42 | { |
46 | return -ENOSYS; | 43 | return __gpio_to_irq(gpio); |
47 | } | 44 | } |
48 | 45 | ||
49 | static inline int irq_to_gpio(unsigned int irq) | 46 | static inline int irq_to_gpio(unsigned int irq) |
diff --git a/arch/powerpc/kernel/align.c b/arch/powerpc/kernel/align.c index 3839839f83c..b876e989220 100644 --- a/arch/powerpc/kernel/align.c +++ b/arch/powerpc/kernel/align.c | |||
@@ -642,10 +642,14 @@ static int emulate_spe(struct pt_regs *regs, unsigned int reg, | |||
642 | */ | 642 | */ |
643 | static int emulate_vsx(unsigned char __user *addr, unsigned int reg, | 643 | static int emulate_vsx(unsigned char __user *addr, unsigned int reg, |
644 | unsigned int areg, struct pt_regs *regs, | 644 | unsigned int areg, struct pt_regs *regs, |
645 | unsigned int flags, unsigned int length) | 645 | unsigned int flags, unsigned int length, |
646 | unsigned int elsize) | ||
646 | { | 647 | { |
647 | char *ptr; | 648 | char *ptr; |
649 | unsigned long *lptr; | ||
648 | int ret = 0; | 650 | int ret = 0; |
651 | int sw = 0; | ||
652 | int i, j; | ||
649 | 653 | ||
650 | flush_vsx_to_thread(current); | 654 | flush_vsx_to_thread(current); |
651 | 655 | ||
@@ -654,19 +658,35 @@ static int emulate_vsx(unsigned char __user *addr, unsigned int reg, | |||
654 | else | 658 | else |
655 | ptr = (char *) ¤t->thread.vr[reg - 32]; | 659 | ptr = (char *) ¤t->thread.vr[reg - 32]; |
656 | 660 | ||
657 | if (flags & ST) | 661 | lptr = (unsigned long *) ptr; |
658 | ret = __copy_to_user(addr, ptr, length); | 662 | |
659 | else { | 663 | if (flags & SW) |
660 | if (flags & SPLT){ | 664 | sw = elsize-1; |
661 | ret = __copy_from_user(ptr, addr, length); | 665 | |
662 | ptr += length; | 666 | for (j = 0; j < length; j += elsize) { |
667 | for (i = 0; i < elsize; ++i) { | ||
668 | if (flags & ST) | ||
669 | ret |= __put_user(ptr[i^sw], addr + i); | ||
670 | else | ||
671 | ret |= __get_user(ptr[i^sw], addr + i); | ||
663 | } | 672 | } |
664 | ret |= __copy_from_user(ptr, addr, length); | 673 | ptr += elsize; |
674 | addr += elsize; | ||
665 | } | 675 | } |
666 | if (flags & U) | 676 | |
667 | regs->gpr[areg] = regs->dar; | 677 | if (!ret) { |
668 | if (ret) | 678 | if (flags & U) |
679 | regs->gpr[areg] = regs->dar; | ||
680 | |||
681 | /* Splat load copies the same data to top and bottom 8 bytes */ | ||
682 | if (flags & SPLT) | ||
683 | lptr[1] = lptr[0]; | ||
684 | /* For 8 byte loads, zero the top 8 bytes */ | ||
685 | else if (!(flags & ST) && (8 == length)) | ||
686 | lptr[1] = 0; | ||
687 | } else | ||
669 | return -EFAULT; | 688 | return -EFAULT; |
689 | |||
670 | return 1; | 690 | return 1; |
671 | } | 691 | } |
672 | #endif | 692 | #endif |
@@ -767,16 +787,25 @@ int fix_alignment(struct pt_regs *regs) | |||
767 | 787 | ||
768 | #ifdef CONFIG_VSX | 788 | #ifdef CONFIG_VSX |
769 | if ((instruction & 0xfc00003e) == 0x7c000018) { | 789 | if ((instruction & 0xfc00003e) == 0x7c000018) { |
770 | /* Additional register addressing bit (64 VSX vs 32 FPR/GPR */ | 790 | unsigned int elsize; |
791 | |||
792 | /* Additional register addressing bit (64 VSX vs 32 FPR/GPR) */ | ||
771 | reg |= (instruction & 0x1) << 5; | 793 | reg |= (instruction & 0x1) << 5; |
772 | /* Simple inline decoder instead of a table */ | 794 | /* Simple inline decoder instead of a table */ |
795 | /* VSX has only 8 and 16 byte memory accesses */ | ||
796 | nb = 8; | ||
773 | if (instruction & 0x200) | 797 | if (instruction & 0x200) |
774 | nb = 16; | 798 | nb = 16; |
775 | else if (instruction & 0x080) | 799 | |
776 | nb = 8; | 800 | /* Vector stores in little-endian mode swap individual |
777 | else | 801 | elements, so process them separately */ |
778 | nb = 4; | 802 | elsize = 4; |
803 | if (instruction & 0x80) | ||
804 | elsize = 8; | ||
805 | |||
779 | flags = 0; | 806 | flags = 0; |
807 | if (regs->msr & MSR_LE) | ||
808 | flags |= SW; | ||
780 | if (instruction & 0x100) | 809 | if (instruction & 0x100) |
781 | flags |= ST; | 810 | flags |= ST; |
782 | if (instruction & 0x040) | 811 | if (instruction & 0x040) |
@@ -787,7 +816,7 @@ int fix_alignment(struct pt_regs *regs) | |||
787 | nb = 8; | 816 | nb = 8; |
788 | } | 817 | } |
789 | PPC_WARN_ALIGNMENT(vsx, regs); | 818 | PPC_WARN_ALIGNMENT(vsx, regs); |
790 | return emulate_vsx(addr, reg, areg, regs, flags, nb); | 819 | return emulate_vsx(addr, reg, areg, regs, flags, nb, elsize); |
791 | } | 820 | } |
792 | #endif | 821 | #endif |
793 | /* A size of 0 indicates an instruction we don't support, with | 822 | /* A size of 0 indicates an instruction we don't support, with |
diff --git a/arch/powerpc/kernel/pci-common.c b/arch/powerpc/kernel/pci-common.c index e8dfdbd9327..cadbed679fb 100644 --- a/arch/powerpc/kernel/pci-common.c +++ b/arch/powerpc/kernel/pci-common.c | |||
@@ -1107,6 +1107,12 @@ void __devinit pcibios_setup_bus_devices(struct pci_bus *bus) | |||
1107 | list_for_each_entry(dev, &bus->devices, bus_list) { | 1107 | list_for_each_entry(dev, &bus->devices, bus_list) { |
1108 | struct dev_archdata *sd = &dev->dev.archdata; | 1108 | struct dev_archdata *sd = &dev->dev.archdata; |
1109 | 1109 | ||
1110 | /* Cardbus can call us to add new devices to a bus, so ignore | ||
1111 | * those who are already fully discovered | ||
1112 | */ | ||
1113 | if (dev->is_added) | ||
1114 | continue; | ||
1115 | |||
1110 | /* Setup OF node pointer in archdata */ | 1116 | /* Setup OF node pointer in archdata */ |
1111 | sd->of_node = pci_device_to_OF_node(dev); | 1117 | sd->of_node = pci_device_to_OF_node(dev); |
1112 | 1118 | ||
@@ -1147,6 +1153,13 @@ void __devinit pcibios_fixup_bus(struct pci_bus *bus) | |||
1147 | } | 1153 | } |
1148 | EXPORT_SYMBOL(pcibios_fixup_bus); | 1154 | EXPORT_SYMBOL(pcibios_fixup_bus); |
1149 | 1155 | ||
1156 | void __devinit pci_fixup_cardbus(struct pci_bus *bus) | ||
1157 | { | ||
1158 | /* Now fixup devices on that bus */ | ||
1159 | pcibios_setup_bus_devices(bus); | ||
1160 | } | ||
1161 | |||
1162 | |||
1150 | static int skip_isa_ioresource_align(struct pci_dev *dev) | 1163 | static int skip_isa_ioresource_align(struct pci_dev *dev) |
1151 | { | 1164 | { |
1152 | if ((ppc_pci_flags & PPC_PCI_CAN_SKIP_ISA_ALIGN) && | 1165 | if ((ppc_pci_flags & PPC_PCI_CAN_SKIP_ISA_ALIGN) && |
diff --git a/arch/powerpc/kvm/book3s_64_mmu.c b/arch/powerpc/kvm/book3s_64_mmu.c index 5598f88f142..e4beeb371a7 100644 --- a/arch/powerpc/kvm/book3s_64_mmu.c +++ b/arch/powerpc/kvm/book3s_64_mmu.c | |||
@@ -390,6 +390,26 @@ static void kvmppc_mmu_book3s_64_mtsrin(struct kvm_vcpu *vcpu, u32 srnum, | |||
390 | { | 390 | { |
391 | u64 rb = 0, rs = 0; | 391 | u64 rb = 0, rs = 0; |
392 | 392 | ||
393 | /* | ||
394 | * According to Book3 2.01 mtsrin is implemented as: | ||
395 | * | ||
396 | * The SLB entry specified by (RB)32:35 is loaded from register | ||
397 | * RS, as follows. | ||
398 | * | ||
399 | * SLBE Bit Source SLB Field | ||
400 | * | ||
401 | * 0:31 0x0000_0000 ESID-0:31 | ||
402 | * 32:35 (RB)32:35 ESID-32:35 | ||
403 | * 36 0b1 V | ||
404 | * 37:61 0x00_0000|| 0b0 VSID-0:24 | ||
405 | * 62:88 (RS)37:63 VSID-25:51 | ||
406 | * 89:91 (RS)33:35 Ks Kp N | ||
407 | * 92 (RS)36 L ((RS)36 must be 0b0) | ||
408 | * 93 0b0 C | ||
409 | */ | ||
410 | |||
411 | dprintk("KVM MMU: mtsrin(0x%x, 0x%lx)\n", srnum, value); | ||
412 | |||
393 | /* ESID = srnum */ | 413 | /* ESID = srnum */ |
394 | rb |= (srnum & 0xf) << 28; | 414 | rb |= (srnum & 0xf) << 28; |
395 | /* Set the valid bit */ | 415 | /* Set the valid bit */ |
@@ -400,7 +420,7 @@ static void kvmppc_mmu_book3s_64_mtsrin(struct kvm_vcpu *vcpu, u32 srnum, | |||
400 | /* VSID = VSID */ | 420 | /* VSID = VSID */ |
401 | rs |= (value & 0xfffffff) << 12; | 421 | rs |= (value & 0xfffffff) << 12; |
402 | /* flags = flags */ | 422 | /* flags = flags */ |
403 | rs |= ((value >> 27) & 0xf) << 9; | 423 | rs |= ((value >> 28) & 0x7) << 9; |
404 | 424 | ||
405 | kvmppc_mmu_book3s_64_slbmte(vcpu, rs, rb); | 425 | kvmppc_mmu_book3s_64_slbmte(vcpu, rs, rb); |
406 | } | 426 | } |
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 50f867d657d..3ecdcec0a39 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c | |||
@@ -340,7 +340,7 @@ static int __init htab_dt_scan_page_sizes(unsigned long node, | |||
340 | else | 340 | else |
341 | def->tlbiel = 0; | 341 | def->tlbiel = 0; |
342 | 342 | ||
343 | DBG(" %d: shift=%02x, sllp=%04x, avpnm=%08x, " | 343 | DBG(" %d: shift=%02x, sllp=%04lx, avpnm=%08lx, " |
344 | "tlbiel=%d, penc=%d\n", | 344 | "tlbiel=%d, penc=%d\n", |
345 | idx, shift, def->sllp, def->avpnm, def->tlbiel, | 345 | idx, shift, def->sllp, def->avpnm, def->tlbiel, |
346 | def->penc); | 346 | def->penc); |
@@ -663,7 +663,7 @@ static void __init htab_initialize(void) | |||
663 | base = (unsigned long)__va(lmb.memory.region[i].base); | 663 | base = (unsigned long)__va(lmb.memory.region[i].base); |
664 | size = lmb.memory.region[i].size; | 664 | size = lmb.memory.region[i].size; |
665 | 665 | ||
666 | DBG("creating mapping for region: %lx..%lx (prot: %x)\n", | 666 | DBG("creating mapping for region: %lx..%lx (prot: %lx)\n", |
667 | base, size, prot); | 667 | base, size, prot); |
668 | 668 | ||
669 | #ifdef CONFIG_U3_DART | 669 | #ifdef CONFIG_U3_DART |
@@ -879,7 +879,7 @@ static inline int subpage_protection(struct mm_struct *mm, unsigned long ea) | |||
879 | */ | 879 | */ |
880 | int hash_page(unsigned long ea, unsigned long access, unsigned long trap) | 880 | int hash_page(unsigned long ea, unsigned long access, unsigned long trap) |
881 | { | 881 | { |
882 | void *pgdir; | 882 | pgd_t *pgdir; |
883 | unsigned long vsid; | 883 | unsigned long vsid; |
884 | struct mm_struct *mm; | 884 | struct mm_struct *mm; |
885 | pte_t *ptep; | 885 | pte_t *ptep; |
@@ -1025,7 +1025,7 @@ int hash_page(unsigned long ea, unsigned long access, unsigned long trap) | |||
1025 | else | 1025 | else |
1026 | #endif /* CONFIG_PPC_HAS_HASH_64K */ | 1026 | #endif /* CONFIG_PPC_HAS_HASH_64K */ |
1027 | { | 1027 | { |
1028 | int spp = subpage_protection(pgdir, ea); | 1028 | int spp = subpage_protection(mm, ea); |
1029 | if (access & spp) | 1029 | if (access & spp) |
1030 | rc = -2; | 1030 | rc = -2; |
1031 | else | 1031 | else |
@@ -1115,7 +1115,7 @@ void flush_hash_page(unsigned long va, real_pte_t pte, int psize, int ssize, | |||
1115 | { | 1115 | { |
1116 | unsigned long hash, index, shift, hidx, slot; | 1116 | unsigned long hash, index, shift, hidx, slot; |
1117 | 1117 | ||
1118 | DBG_LOW("flush_hash_page(va=%016x)\n", va); | 1118 | DBG_LOW("flush_hash_page(va=%016lx)\n", va); |
1119 | pte_iterate_hashed_subpages(pte, psize, va, index, shift) { | 1119 | pte_iterate_hashed_subpages(pte, psize, va, index, shift) { |
1120 | hash = hpt_hash(va, shift, ssize); | 1120 | hash = hpt_hash(va, shift, ssize); |
1121 | hidx = __rpte_to_hidx(pte, index); | 1121 | hidx = __rpte_to_hidx(pte, index); |
@@ -1123,7 +1123,7 @@ void flush_hash_page(unsigned long va, real_pte_t pte, int psize, int ssize, | |||
1123 | hash = ~hash; | 1123 | hash = ~hash; |
1124 | slot = (hash & htab_hash_mask) * HPTES_PER_GROUP; | 1124 | slot = (hash & htab_hash_mask) * HPTES_PER_GROUP; |
1125 | slot += hidx & _PTEIDX_GROUP_IX; | 1125 | slot += hidx & _PTEIDX_GROUP_IX; |
1126 | DBG_LOW(" sub %d: hash=%x, hidx=%x\n", index, slot, hidx); | 1126 | DBG_LOW(" sub %ld: hash=%lx, hidx=%lx\n", index, slot, hidx); |
1127 | ppc_md.hpte_invalidate(slot, va, psize, ssize, local); | 1127 | ppc_md.hpte_invalidate(slot, va, psize, ssize, local); |
1128 | } pte_iterate_hashed_end(); | 1128 | } pte_iterate_hashed_end(); |
1129 | } | 1129 | } |
diff --git a/arch/powerpc/mm/mmu_context_nohash.c b/arch/powerpc/mm/mmu_context_nohash.c index be4f34c30a0..1044a634b6d 100644 --- a/arch/powerpc/mm/mmu_context_nohash.c +++ b/arch/powerpc/mm/mmu_context_nohash.c | |||
@@ -353,7 +353,7 @@ static int __cpuinit mmu_context_cpu_notify(struct notifier_block *self, | |||
353 | read_lock(&tasklist_lock); | 353 | read_lock(&tasklist_lock); |
354 | for_each_process(p) { | 354 | for_each_process(p) { |
355 | if (p->mm) | 355 | if (p->mm) |
356 | cpu_mask_clear_cpu(cpu, mm_cpumask(p->mm)); | 356 | cpumask_clear_cpu(cpu, mm_cpumask(p->mm)); |
357 | } | 357 | } |
358 | read_unlock(&tasklist_lock); | 358 | read_unlock(&tasklist_lock); |
359 | break; | 359 | break; |
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 177e4038b43..573b3bd1c45 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c | |||
@@ -382,7 +382,7 @@ static int __change_page_attr(struct page *page, pgprot_t prot) | |||
382 | return 0; | 382 | return 0; |
383 | if (!get_pteptr(&init_mm, address, &kpte, &kpmd)) | 383 | if (!get_pteptr(&init_mm, address, &kpte, &kpmd)) |
384 | return -EINVAL; | 384 | return -EINVAL; |
385 | set_pte_at(&init_mm, address, kpte, mk_pte(page, prot)); | 385 | __set_pte_at(&init_mm, address, kpte, mk_pte(page, prot), 0); |
386 | wmb(); | 386 | wmb(); |
387 | #ifdef CONFIG_PPC_STD_MMU | 387 | #ifdef CONFIG_PPC_STD_MMU |
388 | flush_hash_pages(0, address, pmd_val(*kpmd), 1); | 388 | flush_hash_pages(0, address, pmd_val(*kpmd), 1); |
diff --git a/arch/powerpc/platforms/83xx/suspend.c b/arch/powerpc/platforms/83xx/suspend.c index d306f07b9aa..43805348b81 100644 --- a/arch/powerpc/platforms/83xx/suspend.c +++ b/arch/powerpc/platforms/83xx/suspend.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #define PMCCR1_NEXT_STATE 0x0C /* Next state for power management */ | 32 | #define PMCCR1_NEXT_STATE 0x0C /* Next state for power management */ |
33 | #define PMCCR1_NEXT_STATE_SHIFT 2 | 33 | #define PMCCR1_NEXT_STATE_SHIFT 2 |
34 | #define PMCCR1_CURR_STATE 0x03 /* Current state for power management*/ | 34 | #define PMCCR1_CURR_STATE 0x03 /* Current state for power management*/ |
35 | #define IMMR_SYSCR_OFFSET 0x100 | ||
35 | #define IMMR_RCW_OFFSET 0x900 | 36 | #define IMMR_RCW_OFFSET 0x900 |
36 | #define RCW_PCI_HOST 0x80000000 | 37 | #define RCW_PCI_HOST 0x80000000 |
37 | 38 | ||
@@ -78,6 +79,22 @@ struct mpc83xx_clock { | |||
78 | u32 sccr; | 79 | u32 sccr; |
79 | }; | 80 | }; |
80 | 81 | ||
82 | struct mpc83xx_syscr { | ||
83 | __be32 sgprl; | ||
84 | __be32 sgprh; | ||
85 | __be32 spridr; | ||
86 | __be32 :32; | ||
87 | __be32 spcr; | ||
88 | __be32 sicrl; | ||
89 | __be32 sicrh; | ||
90 | }; | ||
91 | |||
92 | struct mpc83xx_saved { | ||
93 | u32 sicrl; | ||
94 | u32 sicrh; | ||
95 | u32 sccr; | ||
96 | }; | ||
97 | |||
81 | struct pmc_type { | 98 | struct pmc_type { |
82 | int has_deep_sleep; | 99 | int has_deep_sleep; |
83 | }; | 100 | }; |
@@ -87,6 +104,8 @@ static int has_deep_sleep, deep_sleeping; | |||
87 | static int pmc_irq; | 104 | static int pmc_irq; |
88 | static struct mpc83xx_pmc __iomem *pmc_regs; | 105 | static struct mpc83xx_pmc __iomem *pmc_regs; |
89 | static struct mpc83xx_clock __iomem *clock_regs; | 106 | static struct mpc83xx_clock __iomem *clock_regs; |
107 | static struct mpc83xx_syscr __iomem *syscr_regs; | ||
108 | static struct mpc83xx_saved saved_regs; | ||
90 | static int is_pci_agent, wake_from_pci; | 109 | static int is_pci_agent, wake_from_pci; |
91 | static phys_addr_t immrbase; | 110 | static phys_addr_t immrbase; |
92 | static int pci_pm_state; | 111 | static int pci_pm_state; |
@@ -137,6 +156,20 @@ static irqreturn_t pmc_irq_handler(int irq, void *dev_id) | |||
137 | return ret; | 156 | return ret; |
138 | } | 157 | } |
139 | 158 | ||
159 | static void mpc83xx_suspend_restore_regs(void) | ||
160 | { | ||
161 | out_be32(&syscr_regs->sicrl, saved_regs.sicrl); | ||
162 | out_be32(&syscr_regs->sicrh, saved_regs.sicrh); | ||
163 | out_be32(&clock_regs->sccr, saved_regs.sccr); | ||
164 | } | ||
165 | |||
166 | static void mpc83xx_suspend_save_regs(void) | ||
167 | { | ||
168 | saved_regs.sicrl = in_be32(&syscr_regs->sicrl); | ||
169 | saved_regs.sicrh = in_be32(&syscr_regs->sicrh); | ||
170 | saved_regs.sccr = in_be32(&clock_regs->sccr); | ||
171 | } | ||
172 | |||
140 | static int mpc83xx_suspend_enter(suspend_state_t state) | 173 | static int mpc83xx_suspend_enter(suspend_state_t state) |
141 | { | 174 | { |
142 | int ret = -EAGAIN; | 175 | int ret = -EAGAIN; |
@@ -166,6 +199,8 @@ static int mpc83xx_suspend_enter(suspend_state_t state) | |||
166 | */ | 199 | */ |
167 | 200 | ||
168 | if (deep_sleeping) { | 201 | if (deep_sleeping) { |
202 | mpc83xx_suspend_save_regs(); | ||
203 | |||
169 | out_be32(&pmc_regs->mask, PMCER_ALL); | 204 | out_be32(&pmc_regs->mask, PMCER_ALL); |
170 | 205 | ||
171 | out_be32(&pmc_regs->config1, | 206 | out_be32(&pmc_regs->config1, |
@@ -179,6 +214,8 @@ static int mpc83xx_suspend_enter(suspend_state_t state) | |||
179 | in_be32(&pmc_regs->config1) & ~PMCCR1_POWER_OFF); | 214 | in_be32(&pmc_regs->config1) & ~PMCCR1_POWER_OFF); |
180 | 215 | ||
181 | out_be32(&pmc_regs->mask, PMCER_PMCI); | 216 | out_be32(&pmc_regs->mask, PMCER_PMCI); |
217 | |||
218 | mpc83xx_suspend_restore_regs(); | ||
182 | } else { | 219 | } else { |
183 | out_be32(&pmc_regs->mask, PMCER_PMCI); | 220 | out_be32(&pmc_regs->mask, PMCER_PMCI); |
184 | 221 | ||
@@ -194,7 +231,7 @@ out: | |||
194 | return ret; | 231 | return ret; |
195 | } | 232 | } |
196 | 233 | ||
197 | static void mpc83xx_suspend_finish(void) | 234 | static void mpc83xx_suspend_end(void) |
198 | { | 235 | { |
199 | deep_sleeping = 0; | 236 | deep_sleeping = 0; |
200 | } | 237 | } |
@@ -278,7 +315,7 @@ static struct platform_suspend_ops mpc83xx_suspend_ops = { | |||
278 | .valid = mpc83xx_suspend_valid, | 315 | .valid = mpc83xx_suspend_valid, |
279 | .begin = mpc83xx_suspend_begin, | 316 | .begin = mpc83xx_suspend_begin, |
280 | .enter = mpc83xx_suspend_enter, | 317 | .enter = mpc83xx_suspend_enter, |
281 | .finish = mpc83xx_suspend_finish, | 318 | .end = mpc83xx_suspend_end, |
282 | }; | 319 | }; |
283 | 320 | ||
284 | static int pmc_probe(struct of_device *ofdev, | 321 | static int pmc_probe(struct of_device *ofdev, |
@@ -333,12 +370,23 @@ static int pmc_probe(struct of_device *ofdev, | |||
333 | goto out_pmc; | 370 | goto out_pmc; |
334 | } | 371 | } |
335 | 372 | ||
373 | if (has_deep_sleep) { | ||
374 | syscr_regs = ioremap(immrbase + IMMR_SYSCR_OFFSET, | ||
375 | sizeof(*syscr_regs)); | ||
376 | if (!syscr_regs) { | ||
377 | ret = -ENOMEM; | ||
378 | goto out_syscr; | ||
379 | } | ||
380 | } | ||
381 | |||
336 | if (is_pci_agent) | 382 | if (is_pci_agent) |
337 | mpc83xx_set_agent(); | 383 | mpc83xx_set_agent(); |
338 | 384 | ||
339 | suspend_set_ops(&mpc83xx_suspend_ops); | 385 | suspend_set_ops(&mpc83xx_suspend_ops); |
340 | return 0; | 386 | return 0; |
341 | 387 | ||
388 | out_syscr: | ||
389 | iounmap(clock_regs); | ||
342 | out_pmc: | 390 | out_pmc: |
343 | iounmap(pmc_regs); | 391 | iounmap(pmc_regs); |
344 | out: | 392 | out: |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index c5028a2e5a5..21f61b8c445 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c | |||
@@ -86,7 +86,7 @@ static int mpc8568_fixup_125_clock(struct phy_device *phydev) | |||
86 | scr = phy_read(phydev, MV88E1111_SCR); | 86 | scr = phy_read(phydev, MV88E1111_SCR); |
87 | 87 | ||
88 | if (scr < 0) | 88 | if (scr < 0) |
89 | return err; | 89 | return scr; |
90 | 90 | ||
91 | err = phy_write(phydev, MV88E1111_SCR, scr | 0x0008); | 91 | err = phy_write(phydev, MV88E1111_SCR, scr | 0x0008); |
92 | 92 | ||
diff --git a/arch/powerpc/platforms/embedded6xx/flipper-pic.c b/arch/powerpc/platforms/embedded6xx/flipper-pic.c index d5963285e3b..c278bd3a8fe 100644 --- a/arch/powerpc/platforms/embedded6xx/flipper-pic.c +++ b/arch/powerpc/platforms/embedded6xx/flipper-pic.c | |||
@@ -102,7 +102,7 @@ static int flipper_pic_map(struct irq_host *h, unsigned int virq, | |||
102 | irq_hw_number_t hwirq) | 102 | irq_hw_number_t hwirq) |
103 | { | 103 | { |
104 | set_irq_chip_data(virq, h->host_data); | 104 | set_irq_chip_data(virq, h->host_data); |
105 | get_irq_desc(virq)->status |= IRQ_LEVEL; | 105 | irq_to_desc(virq)->status |= IRQ_LEVEL; |
106 | set_irq_chip_and_handler(virq, &flipper_pic, handle_level_irq); | 106 | set_irq_chip_and_handler(virq, &flipper_pic, handle_level_irq); |
107 | return 0; | 107 | return 0; |
108 | } | 108 | } |
diff --git a/arch/powerpc/platforms/embedded6xx/hlwd-pic.c b/arch/powerpc/platforms/embedded6xx/hlwd-pic.c index dd20bff3320..a771f91e215 100644 --- a/arch/powerpc/platforms/embedded6xx/hlwd-pic.c +++ b/arch/powerpc/platforms/embedded6xx/hlwd-pic.c | |||
@@ -95,7 +95,7 @@ static int hlwd_pic_map(struct irq_host *h, unsigned int virq, | |||
95 | irq_hw_number_t hwirq) | 95 | irq_hw_number_t hwirq) |
96 | { | 96 | { |
97 | set_irq_chip_data(virq, h->host_data); | 97 | set_irq_chip_data(virq, h->host_data); |
98 | get_irq_desc(virq)->status |= IRQ_LEVEL; | 98 | irq_to_desc(virq)->status |= IRQ_LEVEL; |
99 | set_irq_chip_and_handler(virq, &hlwd_pic, handle_level_irq); | 99 | set_irq_chip_and_handler(virq, &hlwd_pic, handle_level_irq); |
100 | return 0; | 100 | return 0; |
101 | } | 101 | } |
@@ -132,9 +132,9 @@ static void hlwd_pic_irq_cascade(unsigned int cascade_virq, | |||
132 | struct irq_host *irq_host = get_irq_data(cascade_virq); | 132 | struct irq_host *irq_host = get_irq_data(cascade_virq); |
133 | unsigned int virq; | 133 | unsigned int virq; |
134 | 134 | ||
135 | spin_lock(&desc->lock); | 135 | raw_spin_lock(&desc->lock); |
136 | desc->chip->mask(cascade_virq); /* IRQ_LEVEL */ | 136 | desc->chip->mask(cascade_virq); /* IRQ_LEVEL */ |
137 | spin_unlock(&desc->lock); | 137 | raw_spin_unlock(&desc->lock); |
138 | 138 | ||
139 | virq = __hlwd_pic_get_irq(irq_host); | 139 | virq = __hlwd_pic_get_irq(irq_host); |
140 | if (virq != NO_IRQ) | 140 | if (virq != NO_IRQ) |
@@ -142,11 +142,11 @@ static void hlwd_pic_irq_cascade(unsigned int cascade_virq, | |||
142 | else | 142 | else |
143 | pr_err("spurious interrupt!\n"); | 143 | pr_err("spurious interrupt!\n"); |
144 | 144 | ||
145 | spin_lock(&desc->lock); | 145 | raw_spin_lock(&desc->lock); |
146 | desc->chip->ack(cascade_virq); /* IRQ_LEVEL */ | 146 | desc->chip->ack(cascade_virq); /* IRQ_LEVEL */ |
147 | if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask) | 147 | if (!(desc->status & IRQ_DISABLED) && desc->chip->unmask) |
148 | desc->chip->unmask(cascade_virq); | 148 | desc->chip->unmask(cascade_virq); |
149 | spin_unlock(&desc->lock); | 149 | raw_spin_unlock(&desc->lock); |
150 | } | 150 | } |
151 | 151 | ||
152 | /* | 152 | /* |
diff --git a/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c b/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c index edc956cc8b1..20a8ed91962 100644 --- a/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c +++ b/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c | |||
@@ -120,7 +120,7 @@ static void ug_putc(char ch) | |||
120 | 120 | ||
121 | while (!ug_is_txfifo_ready() && count--) | 121 | while (!ug_is_txfifo_ready() && count--) |
122 | barrier(); | 122 | barrier(); |
123 | if (count) | 123 | if (count >= 0) |
124 | ug_raw_putc(ch); | 124 | ug_raw_putc(ch); |
125 | } | 125 | } |
126 | 126 | ||
diff --git a/arch/powerpc/platforms/iseries/mf.c b/arch/powerpc/platforms/iseries/mf.c index 0d9343df35b..6617915bcb1 100644 --- a/arch/powerpc/platforms/iseries/mf.c +++ b/arch/powerpc/platforms/iseries/mf.c | |||
@@ -855,59 +855,58 @@ static int mf_get_boot_rtc(struct rtc_time *tm) | |||
855 | } | 855 | } |
856 | 856 | ||
857 | #ifdef CONFIG_PROC_FS | 857 | #ifdef CONFIG_PROC_FS |
858 | 858 | static int mf_cmdline_proc_show(struct seq_file *m, void *v) | |
859 | static int proc_mf_dump_cmdline(char *page, char **start, off_t off, | ||
860 | int count, int *eof, void *data) | ||
861 | { | 859 | { |
862 | int len; | 860 | char *page, *p; |
863 | char *p; | ||
864 | struct vsp_cmd_data vsp_cmd; | 861 | struct vsp_cmd_data vsp_cmd; |
865 | int rc; | 862 | int rc; |
866 | dma_addr_t dma_addr; | 863 | dma_addr_t dma_addr; |
867 | 864 | ||
868 | /* The HV appears to return no more than 256 bytes of command line */ | 865 | /* The HV appears to return no more than 256 bytes of command line */ |
869 | if (off >= 256) | 866 | page = kmalloc(256, GFP_KERNEL); |
870 | return 0; | 867 | if (!page) |
871 | if ((off + count) > 256) | 868 | return -ENOMEM; |
872 | count = 256 - off; | ||
873 | 869 | ||
874 | dma_addr = iseries_hv_map(page, off + count, DMA_FROM_DEVICE); | 870 | dma_addr = iseries_hv_map(page, 256, DMA_FROM_DEVICE); |
875 | if (dma_addr == DMA_ERROR_CODE) | 871 | if (dma_addr == DMA_ERROR_CODE) { |
872 | kfree(page); | ||
876 | return -ENOMEM; | 873 | return -ENOMEM; |
877 | memset(page, 0, off + count); | 874 | } |
875 | memset(page, 0, 256); | ||
878 | memset(&vsp_cmd, 0, sizeof(vsp_cmd)); | 876 | memset(&vsp_cmd, 0, sizeof(vsp_cmd)); |
879 | vsp_cmd.cmd = 33; | 877 | vsp_cmd.cmd = 33; |
880 | vsp_cmd.sub_data.kern.token = dma_addr; | 878 | vsp_cmd.sub_data.kern.token = dma_addr; |
881 | vsp_cmd.sub_data.kern.address_type = HvLpDma_AddressType_TceIndex; | 879 | vsp_cmd.sub_data.kern.address_type = HvLpDma_AddressType_TceIndex; |
882 | vsp_cmd.sub_data.kern.side = (u64)data; | 880 | vsp_cmd.sub_data.kern.side = (u64)m->private; |
883 | vsp_cmd.sub_data.kern.length = off + count; | 881 | vsp_cmd.sub_data.kern.length = 256; |
884 | mb(); | 882 | mb(); |
885 | rc = signal_vsp_instruction(&vsp_cmd); | 883 | rc = signal_vsp_instruction(&vsp_cmd); |
886 | iseries_hv_unmap(dma_addr, off + count, DMA_FROM_DEVICE); | 884 | iseries_hv_unmap(dma_addr, 256, DMA_FROM_DEVICE); |
887 | if (rc) | 885 | if (rc) { |
886 | kfree(page); | ||
888 | return rc; | 887 | return rc; |
889 | if (vsp_cmd.result_code != 0) | 888 | } |
889 | if (vsp_cmd.result_code != 0) { | ||
890 | kfree(page); | ||
890 | return -ENOMEM; | 891 | return -ENOMEM; |
892 | } | ||
891 | p = page; | 893 | p = page; |
892 | len = 0; | 894 | while (p - page < 256) { |
893 | while (len < (off + count)) { | 895 | if (*p == '\0' || *p == '\n') { |
894 | if ((*p == '\0') || (*p == '\n')) { | 896 | *p = '\n'; |
895 | if (*p == '\0') | ||
896 | *p = '\n'; | ||
897 | p++; | ||
898 | len++; | ||
899 | *eof = 1; | ||
900 | break; | 897 | break; |
901 | } | 898 | } |
902 | p++; | 899 | p++; |
903 | len++; | ||
904 | } | ||
905 | 900 | ||
906 | if (len < off) { | ||
907 | *eof = 1; | ||
908 | len = 0; | ||
909 | } | 901 | } |
910 | return len; | 902 | seq_write(m, page, p - page); |
903 | kfree(page); | ||
904 | return 0; | ||
905 | } | ||
906 | |||
907 | static int mf_cmdline_proc_open(struct inode *inode, struct file *file) | ||
908 | { | ||
909 | return single_open(file, mf_cmdline_proc_show, PDE(inode)->data); | ||
911 | } | 910 | } |
912 | 911 | ||
913 | #if 0 | 912 | #if 0 |
@@ -962,10 +961,8 @@ static int proc_mf_dump_vmlinux(char *page, char **start, off_t off, | |||
962 | } | 961 | } |
963 | #endif | 962 | #endif |
964 | 963 | ||
965 | static int proc_mf_dump_side(char *page, char **start, off_t off, | 964 | static int mf_side_proc_show(struct seq_file *m, void *v) |
966 | int count, int *eof, void *data) | ||
967 | { | 965 | { |
968 | int len; | ||
969 | char mf_current_side = ' '; | 966 | char mf_current_side = ' '; |
970 | struct vsp_cmd_data vsp_cmd; | 967 | struct vsp_cmd_data vsp_cmd; |
971 | 968 | ||
@@ -989,21 +986,17 @@ static int proc_mf_dump_side(char *page, char **start, off_t off, | |||
989 | } | 986 | } |
990 | } | 987 | } |
991 | 988 | ||
992 | len = sprintf(page, "%c\n", mf_current_side); | 989 | seq_printf(m, "%c\n", mf_current_side); |
990 | return 0; | ||
991 | } | ||
993 | 992 | ||
994 | if (len <= (off + count)) | 993 | static int mf_side_proc_open(struct inode *inode, struct file *file) |
995 | *eof = 1; | 994 | { |
996 | *start = page + off; | 995 | return single_open(file, mf_side_proc_show, NULL); |
997 | len -= off; | ||
998 | if (len > count) | ||
999 | len = count; | ||
1000 | if (len < 0) | ||
1001 | len = 0; | ||
1002 | return len; | ||
1003 | } | 996 | } |
1004 | 997 | ||
1005 | static int proc_mf_change_side(struct file *file, const char __user *buffer, | 998 | static ssize_t mf_side_proc_write(struct file *file, const char __user *buffer, |
1006 | unsigned long count, void *data) | 999 | size_t count, loff_t *pos) |
1007 | { | 1000 | { |
1008 | char side; | 1001 | char side; |
1009 | u64 newSide; | 1002 | u64 newSide; |
@@ -1041,6 +1034,15 @@ static int proc_mf_change_side(struct file *file, const char __user *buffer, | |||
1041 | return count; | 1034 | return count; |
1042 | } | 1035 | } |
1043 | 1036 | ||
1037 | static const struct file_operations mf_side_proc_fops = { | ||
1038 | .owner = THIS_MODULE, | ||
1039 | .open = mf_side_proc_open, | ||
1040 | .read = seq_read, | ||
1041 | .llseek = seq_lseek, | ||
1042 | .release = single_release, | ||
1043 | .write = mf_side_proc_write, | ||
1044 | }; | ||
1045 | |||
1044 | #if 0 | 1046 | #if 0 |
1045 | static void mf_getSrcHistory(char *buffer, int size) | 1047 | static void mf_getSrcHistory(char *buffer, int size) |
1046 | { | 1048 | { |
@@ -1087,8 +1089,7 @@ static void mf_getSrcHistory(char *buffer, int size) | |||
1087 | } | 1089 | } |
1088 | #endif | 1090 | #endif |
1089 | 1091 | ||
1090 | static int proc_mf_dump_src(char *page, char **start, off_t off, | 1092 | static int mf_src_proc_show(struct seq_file *m, void *v) |
1091 | int count, int *eof, void *data) | ||
1092 | { | 1093 | { |
1093 | #if 0 | 1094 | #if 0 |
1094 | int len; | 1095 | int len; |
@@ -1109,8 +1110,13 @@ static int proc_mf_dump_src(char *page, char **start, off_t off, | |||
1109 | #endif | 1110 | #endif |
1110 | } | 1111 | } |
1111 | 1112 | ||
1112 | static int proc_mf_change_src(struct file *file, const char __user *buffer, | 1113 | static int mf_src_proc_open(struct inode *inode, struct file *file) |
1113 | unsigned long count, void *data) | 1114 | { |
1115 | return single_open(file, mf_src_proc_show, NULL); | ||
1116 | } | ||
1117 | |||
1118 | static ssize_t mf_src_proc_write(struct file *file, const char __user *buffer, | ||
1119 | size_t count, loff_t *pos) | ||
1114 | { | 1120 | { |
1115 | char stkbuf[10]; | 1121 | char stkbuf[10]; |
1116 | 1122 | ||
@@ -1135,9 +1141,19 @@ static int proc_mf_change_src(struct file *file, const char __user *buffer, | |||
1135 | return count; | 1141 | return count; |
1136 | } | 1142 | } |
1137 | 1143 | ||
1138 | static int proc_mf_change_cmdline(struct file *file, const char __user *buffer, | 1144 | static const struct file_operations mf_src_proc_fops = { |
1139 | unsigned long count, void *data) | 1145 | .owner = THIS_MODULE, |
1146 | .open = mf_src_proc_open, | ||
1147 | .read = seq_read, | ||
1148 | .llseek = seq_lseek, | ||
1149 | .release = single_release, | ||
1150 | .write = mf_src_proc_write, | ||
1151 | }; | ||
1152 | |||
1153 | static ssize_t mf_cmdline_proc_write(struct file *file, const char __user *buffer, | ||
1154 | size_t count, loff_t *pos) | ||
1140 | { | 1155 | { |
1156 | void *data = PDE(file->f_path.dentry->d_inode)->data; | ||
1141 | struct vsp_cmd_data vsp_cmd; | 1157 | struct vsp_cmd_data vsp_cmd; |
1142 | dma_addr_t dma_addr; | 1158 | dma_addr_t dma_addr; |
1143 | char *page; | 1159 | char *page; |
@@ -1172,6 +1188,15 @@ out: | |||
1172 | return ret; | 1188 | return ret; |
1173 | } | 1189 | } |
1174 | 1190 | ||
1191 | static const struct file_operations mf_cmdline_proc_fops = { | ||
1192 | .owner = THIS_MODULE, | ||
1193 | .open = mf_cmdline_proc_open, | ||
1194 | .read = seq_read, | ||
1195 | .llseek = seq_lseek, | ||
1196 | .release = single_release, | ||
1197 | .write = mf_cmdline_proc_write, | ||
1198 | }; | ||
1199 | |||
1175 | static ssize_t proc_mf_change_vmlinux(struct file *file, | 1200 | static ssize_t proc_mf_change_vmlinux(struct file *file, |
1176 | const char __user *buf, | 1201 | const char __user *buf, |
1177 | size_t count, loff_t *ppos) | 1202 | size_t count, loff_t *ppos) |
@@ -1246,12 +1271,10 @@ static int __init mf_proc_init(void) | |||
1246 | if (!mf) | 1271 | if (!mf) |
1247 | return 1; | 1272 | return 1; |
1248 | 1273 | ||
1249 | ent = create_proc_entry("cmdline", S_IFREG|S_IRUSR|S_IWUSR, mf); | 1274 | ent = proc_create_data("cmdline", S_IRUSR|S_IWUSR, mf, |
1275 | &mf_cmdline_proc_fops, (void *)(long)i); | ||
1250 | if (!ent) | 1276 | if (!ent) |
1251 | return 1; | 1277 | return 1; |
1252 | ent->data = (void *)(long)i; | ||
1253 | ent->read_proc = proc_mf_dump_cmdline; | ||
1254 | ent->write_proc = proc_mf_change_cmdline; | ||
1255 | 1278 | ||
1256 | if (i == 3) /* no vmlinux entry for 'D' */ | 1279 | if (i == 3) /* no vmlinux entry for 'D' */ |
1257 | continue; | 1280 | continue; |
@@ -1263,19 +1286,15 @@ static int __init mf_proc_init(void) | |||
1263 | return 1; | 1286 | return 1; |
1264 | } | 1287 | } |
1265 | 1288 | ||
1266 | ent = create_proc_entry("side", S_IFREG|S_IRUSR|S_IWUSR, mf_proc_root); | 1289 | ent = proc_create("side", S_IFREG|S_IRUSR|S_IWUSR, mf_proc_root, |
1290 | &mf_side_proc_fops); | ||
1267 | if (!ent) | 1291 | if (!ent) |
1268 | return 1; | 1292 | return 1; |
1269 | ent->data = (void *)0; | ||
1270 | ent->read_proc = proc_mf_dump_side; | ||
1271 | ent->write_proc = proc_mf_change_side; | ||
1272 | 1293 | ||
1273 | ent = create_proc_entry("src", S_IFREG|S_IRUSR|S_IWUSR, mf_proc_root); | 1294 | ent = proc_create("src", S_IFREG|S_IRUSR|S_IWUSR, mf_proc_root, |
1295 | &mf_src_proc_fops); | ||
1274 | if (!ent) | 1296 | if (!ent) |
1275 | return 1; | 1297 | return 1; |
1276 | ent->data = (void *)0; | ||
1277 | ent->read_proc = proc_mf_dump_src; | ||
1278 | ent->write_proc = proc_mf_change_src; | ||
1279 | 1298 | ||
1280 | return 0; | 1299 | return 0; |
1281 | } | 1300 | } |
diff --git a/arch/powerpc/platforms/iseries/viopath.c b/arch/powerpc/platforms/iseries/viopath.c index 49ff4dc422b..5aea94f3083 100644 --- a/arch/powerpc/platforms/iseries/viopath.c +++ b/arch/powerpc/platforms/iseries/viopath.c | |||
@@ -116,7 +116,7 @@ static int proc_viopath_show(struct seq_file *m, void *v) | |||
116 | u16 vlanMap; | 116 | u16 vlanMap; |
117 | dma_addr_t handle; | 117 | dma_addr_t handle; |
118 | HvLpEvent_Rc hvrc; | 118 | HvLpEvent_Rc hvrc; |
119 | DECLARE_COMPLETION(done); | 119 | DECLARE_COMPLETION_ONSTACK(done); |
120 | struct device_node *node; | 120 | struct device_node *node; |
121 | const char *sysid; | 121 | const char *sysid; |
122 | 122 | ||
diff --git a/arch/powerpc/platforms/pseries/Kconfig b/arch/powerpc/platforms/pseries/Kconfig index 27554c807fd..c667f0f02c3 100644 --- a/arch/powerpc/platforms/pseries/Kconfig +++ b/arch/powerpc/platforms/pseries/Kconfig | |||
@@ -2,6 +2,8 @@ config PPC_PSERIES | |||
2 | depends on PPC64 && PPC_BOOK3S | 2 | depends on PPC64 && PPC_BOOK3S |
3 | bool "IBM pSeries & new (POWER5-based) iSeries" | 3 | bool "IBM pSeries & new (POWER5-based) iSeries" |
4 | select MPIC | 4 | select MPIC |
5 | select PCI_MSI | ||
6 | select XICS | ||
5 | select PPC_I8259 | 7 | select PPC_I8259 |
6 | select PPC_RTAS | 8 | select PPC_RTAS |
7 | select PPC_RTAS_DAEMON | 9 | select PPC_RTAS_DAEMON |
diff --git a/arch/powerpc/platforms/pseries/cmm.c b/arch/powerpc/platforms/pseries/cmm.c index bcdcf0ccc8d..a277f2e28db 100644 --- a/arch/powerpc/platforms/pseries/cmm.c +++ b/arch/powerpc/platforms/pseries/cmm.c | |||
@@ -38,19 +38,28 @@ | |||
38 | #include <asm/mmu.h> | 38 | #include <asm/mmu.h> |
39 | #include <asm/pgalloc.h> | 39 | #include <asm/pgalloc.h> |
40 | #include <asm/uaccess.h> | 40 | #include <asm/uaccess.h> |
41 | #include <linux/memory.h> | ||
41 | 42 | ||
42 | #include "plpar_wrappers.h" | 43 | #include "plpar_wrappers.h" |
43 | 44 | ||
44 | #define CMM_DRIVER_VERSION "1.0.0" | 45 | #define CMM_DRIVER_VERSION "1.0.0" |
45 | #define CMM_DEFAULT_DELAY 1 | 46 | #define CMM_DEFAULT_DELAY 1 |
47 | #define CMM_HOTPLUG_DELAY 5 | ||
46 | #define CMM_DEBUG 0 | 48 | #define CMM_DEBUG 0 |
47 | #define CMM_DISABLE 0 | 49 | #define CMM_DISABLE 0 |
48 | #define CMM_OOM_KB 1024 | 50 | #define CMM_OOM_KB 1024 |
49 | #define CMM_MIN_MEM_MB 256 | 51 | #define CMM_MIN_MEM_MB 256 |
50 | #define KB2PAGES(_p) ((_p)>>(PAGE_SHIFT-10)) | 52 | #define KB2PAGES(_p) ((_p)>>(PAGE_SHIFT-10)) |
51 | #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) | 53 | #define PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) |
54 | /* | ||
55 | * The priority level tries to ensure that this notifier is called as | ||
56 | * late as possible to reduce thrashing in the shared memory pool. | ||
57 | */ | ||
58 | #define CMM_MEM_HOTPLUG_PRI 1 | ||
59 | #define CMM_MEM_ISOLATE_PRI 15 | ||
52 | 60 | ||
53 | static unsigned int delay = CMM_DEFAULT_DELAY; | 61 | static unsigned int delay = CMM_DEFAULT_DELAY; |
62 | static unsigned int hotplug_delay = CMM_HOTPLUG_DELAY; | ||
54 | static unsigned int oom_kb = CMM_OOM_KB; | 63 | static unsigned int oom_kb = CMM_OOM_KB; |
55 | static unsigned int cmm_debug = CMM_DEBUG; | 64 | static unsigned int cmm_debug = CMM_DEBUG; |
56 | static unsigned int cmm_disabled = CMM_DISABLE; | 65 | static unsigned int cmm_disabled = CMM_DISABLE; |
@@ -65,6 +74,10 @@ MODULE_VERSION(CMM_DRIVER_VERSION); | |||
65 | module_param_named(delay, delay, uint, S_IRUGO | S_IWUSR); | 74 | module_param_named(delay, delay, uint, S_IRUGO | S_IWUSR); |
66 | MODULE_PARM_DESC(delay, "Delay (in seconds) between polls to query hypervisor paging requests. " | 75 | MODULE_PARM_DESC(delay, "Delay (in seconds) between polls to query hypervisor paging requests. " |
67 | "[Default=" __stringify(CMM_DEFAULT_DELAY) "]"); | 76 | "[Default=" __stringify(CMM_DEFAULT_DELAY) "]"); |
77 | module_param_named(hotplug_delay, hotplug_delay, uint, S_IRUGO | S_IWUSR); | ||
78 | MODULE_PARM_DESC(delay, "Delay (in seconds) after memory hotplug remove " | ||
79 | "before loaning resumes. " | ||
80 | "[Default=" __stringify(CMM_HOTPLUG_DELAY) "]"); | ||
68 | module_param_named(oom_kb, oom_kb, uint, S_IRUGO | S_IWUSR); | 81 | module_param_named(oom_kb, oom_kb, uint, S_IRUGO | S_IWUSR); |
69 | MODULE_PARM_DESC(oom_kb, "Amount of memory in kb to free on OOM. " | 82 | MODULE_PARM_DESC(oom_kb, "Amount of memory in kb to free on OOM. " |
70 | "[Default=" __stringify(CMM_OOM_KB) "]"); | 83 | "[Default=" __stringify(CMM_OOM_KB) "]"); |
@@ -92,6 +105,9 @@ static unsigned long oom_freed_pages; | |||
92 | static struct cmm_page_array *cmm_page_list; | 105 | static struct cmm_page_array *cmm_page_list; |
93 | static DEFINE_SPINLOCK(cmm_lock); | 106 | static DEFINE_SPINLOCK(cmm_lock); |
94 | 107 | ||
108 | static DEFINE_MUTEX(hotplug_mutex); | ||
109 | static int hotplug_occurred; /* protected by the hotplug mutex */ | ||
110 | |||
95 | static struct task_struct *cmm_thread_ptr; | 111 | static struct task_struct *cmm_thread_ptr; |
96 | 112 | ||
97 | /** | 113 | /** |
@@ -110,6 +126,17 @@ static long cmm_alloc_pages(long nr) | |||
110 | cmm_dbg("Begin request for %ld pages\n", nr); | 126 | cmm_dbg("Begin request for %ld pages\n", nr); |
111 | 127 | ||
112 | while (nr) { | 128 | while (nr) { |
129 | /* Exit if a hotplug operation is in progress or occurred */ | ||
130 | if (mutex_trylock(&hotplug_mutex)) { | ||
131 | if (hotplug_occurred) { | ||
132 | mutex_unlock(&hotplug_mutex); | ||
133 | break; | ||
134 | } | ||
135 | mutex_unlock(&hotplug_mutex); | ||
136 | } else { | ||
137 | break; | ||
138 | } | ||
139 | |||
113 | addr = __get_free_page(GFP_NOIO | __GFP_NOWARN | | 140 | addr = __get_free_page(GFP_NOIO | __GFP_NOWARN | |
114 | __GFP_NORETRY | __GFP_NOMEMALLOC); | 141 | __GFP_NORETRY | __GFP_NOMEMALLOC); |
115 | if (!addr) | 142 | if (!addr) |
@@ -119,8 +146,9 @@ static long cmm_alloc_pages(long nr) | |||
119 | if (!pa || pa->index >= CMM_NR_PAGES) { | 146 | if (!pa || pa->index >= CMM_NR_PAGES) { |
120 | /* Need a new page for the page list. */ | 147 | /* Need a new page for the page list. */ |
121 | spin_unlock(&cmm_lock); | 148 | spin_unlock(&cmm_lock); |
122 | npa = (struct cmm_page_array *)__get_free_page(GFP_NOIO | __GFP_NOWARN | | 149 | npa = (struct cmm_page_array *)__get_free_page( |
123 | __GFP_NORETRY | __GFP_NOMEMALLOC); | 150 | GFP_NOIO | __GFP_NOWARN | |
151 | __GFP_NORETRY | __GFP_NOMEMALLOC); | ||
124 | if (!npa) { | 152 | if (!npa) { |
125 | pr_info("%s: Can not allocate new page list\n", __func__); | 153 | pr_info("%s: Can not allocate new page list\n", __func__); |
126 | free_page(addr); | 154 | free_page(addr); |
@@ -282,9 +310,28 @@ static int cmm_thread(void *dummy) | |||
282 | while (1) { | 310 | while (1) { |
283 | timeleft = msleep_interruptible(delay * 1000); | 311 | timeleft = msleep_interruptible(delay * 1000); |
284 | 312 | ||
285 | if (kthread_should_stop() || timeleft) { | 313 | if (kthread_should_stop() || timeleft) |
286 | loaned_pages_target = loaned_pages; | ||
287 | break; | 314 | break; |
315 | |||
316 | if (mutex_trylock(&hotplug_mutex)) { | ||
317 | if (hotplug_occurred) { | ||
318 | hotplug_occurred = 0; | ||
319 | mutex_unlock(&hotplug_mutex); | ||
320 | cmm_dbg("Hotplug operation has occurred, " | ||
321 | "loaning activity suspended " | ||
322 | "for %d seconds.\n", | ||
323 | hotplug_delay); | ||
324 | timeleft = msleep_interruptible(hotplug_delay * | ||
325 | 1000); | ||
326 | if (kthread_should_stop() || timeleft) | ||
327 | break; | ||
328 | continue; | ||
329 | } | ||
330 | mutex_unlock(&hotplug_mutex); | ||
331 | } else { | ||
332 | cmm_dbg("Hotplug operation in progress, activity " | ||
333 | "suspended\n"); | ||
334 | continue; | ||
288 | } | 335 | } |
289 | 336 | ||
290 | cmm_get_mpp(); | 337 | cmm_get_mpp(); |
@@ -414,6 +461,193 @@ static struct notifier_block cmm_reboot_nb = { | |||
414 | }; | 461 | }; |
415 | 462 | ||
416 | /** | 463 | /** |
464 | * cmm_count_pages - Count the number of pages loaned in a particular range. | ||
465 | * | ||
466 | * @arg: memory_isolate_notify structure with address range and count | ||
467 | * | ||
468 | * Return value: | ||
469 | * 0 on success | ||
470 | **/ | ||
471 | static unsigned long cmm_count_pages(void *arg) | ||
472 | { | ||
473 | struct memory_isolate_notify *marg = arg; | ||
474 | struct cmm_page_array *pa; | ||
475 | unsigned long start = (unsigned long)pfn_to_kaddr(marg->start_pfn); | ||
476 | unsigned long end = start + (marg->nr_pages << PAGE_SHIFT); | ||
477 | unsigned long idx; | ||
478 | |||
479 | spin_lock(&cmm_lock); | ||
480 | pa = cmm_page_list; | ||
481 | while (pa) { | ||
482 | if ((unsigned long)pa >= start && (unsigned long)pa < end) | ||
483 | marg->pages_found++; | ||
484 | for (idx = 0; idx < pa->index; idx++) | ||
485 | if (pa->page[idx] >= start && pa->page[idx] < end) | ||
486 | marg->pages_found++; | ||
487 | pa = pa->next; | ||
488 | } | ||
489 | spin_unlock(&cmm_lock); | ||
490 | return 0; | ||
491 | } | ||
492 | |||
493 | /** | ||
494 | * cmm_memory_isolate_cb - Handle memory isolation notifier calls | ||
495 | * @self: notifier block struct | ||
496 | * @action: action to take | ||
497 | * @arg: struct memory_isolate_notify data for handler | ||
498 | * | ||
499 | * Return value: | ||
500 | * NOTIFY_OK or notifier error based on subfunction return value | ||
501 | **/ | ||
502 | static int cmm_memory_isolate_cb(struct notifier_block *self, | ||
503 | unsigned long action, void *arg) | ||
504 | { | ||
505 | int ret = 0; | ||
506 | |||
507 | if (action == MEM_ISOLATE_COUNT) | ||
508 | ret = cmm_count_pages(arg); | ||
509 | |||
510 | if (ret) | ||
511 | ret = notifier_from_errno(ret); | ||
512 | else | ||
513 | ret = NOTIFY_OK; | ||
514 | |||
515 | return ret; | ||
516 | } | ||
517 | |||
518 | static struct notifier_block cmm_mem_isolate_nb = { | ||
519 | .notifier_call = cmm_memory_isolate_cb, | ||
520 | .priority = CMM_MEM_ISOLATE_PRI | ||
521 | }; | ||
522 | |||
523 | /** | ||
524 | * cmm_mem_going_offline - Unloan pages where memory is to be removed | ||
525 | * @arg: memory_notify structure with page range to be offlined | ||
526 | * | ||
527 | * Return value: | ||
528 | * 0 on success | ||
529 | **/ | ||
530 | static int cmm_mem_going_offline(void *arg) | ||
531 | { | ||
532 | struct memory_notify *marg = arg; | ||
533 | unsigned long start_page = (unsigned long)pfn_to_kaddr(marg->start_pfn); | ||
534 | unsigned long end_page = start_page + (marg->nr_pages << PAGE_SHIFT); | ||
535 | struct cmm_page_array *pa_curr, *pa_last, *npa; | ||
536 | unsigned long idx; | ||
537 | unsigned long freed = 0; | ||
538 | |||
539 | cmm_dbg("Memory going offline, searching 0x%lx (%ld pages).\n", | ||
540 | start_page, marg->nr_pages); | ||
541 | spin_lock(&cmm_lock); | ||
542 | |||
543 | /* Search the page list for pages in the range to be offlined */ | ||
544 | pa_last = pa_curr = cmm_page_list; | ||
545 | while (pa_curr) { | ||
546 | for (idx = (pa_curr->index - 1); (idx + 1) > 0; idx--) { | ||
547 | if ((pa_curr->page[idx] < start_page) || | ||
548 | (pa_curr->page[idx] >= end_page)) | ||
549 | continue; | ||
550 | |||
551 | plpar_page_set_active(__pa(pa_curr->page[idx])); | ||
552 | free_page(pa_curr->page[idx]); | ||
553 | freed++; | ||
554 | loaned_pages--; | ||
555 | totalram_pages++; | ||
556 | pa_curr->page[idx] = pa_last->page[--pa_last->index]; | ||
557 | if (pa_last->index == 0) { | ||
558 | if (pa_curr == pa_last) | ||
559 | pa_curr = pa_last->next; | ||
560 | pa_last = pa_last->next; | ||
561 | free_page((unsigned long)cmm_page_list); | ||
562 | cmm_page_list = pa_last; | ||
563 | continue; | ||
564 | } | ||
565 | } | ||
566 | pa_curr = pa_curr->next; | ||
567 | } | ||
568 | |||
569 | /* Search for page list structures in the range to be offlined */ | ||
570 | pa_last = NULL; | ||
571 | pa_curr = cmm_page_list; | ||
572 | while (pa_curr) { | ||
573 | if (((unsigned long)pa_curr >= start_page) && | ||
574 | ((unsigned long)pa_curr < end_page)) { | ||
575 | npa = (struct cmm_page_array *)__get_free_page( | ||
576 | GFP_NOIO | __GFP_NOWARN | | ||
577 | __GFP_NORETRY | __GFP_NOMEMALLOC); | ||
578 | if (!npa) { | ||
579 | spin_unlock(&cmm_lock); | ||
580 | cmm_dbg("Failed to allocate memory for list " | ||
581 | "management. Memory hotplug " | ||
582 | "failed.\n"); | ||
583 | return ENOMEM; | ||
584 | } | ||
585 | memcpy(npa, pa_curr, PAGE_SIZE); | ||
586 | if (pa_curr == cmm_page_list) | ||
587 | cmm_page_list = npa; | ||
588 | if (pa_last) | ||
589 | pa_last->next = npa; | ||
590 | free_page((unsigned long) pa_curr); | ||
591 | freed++; | ||
592 | pa_curr = npa; | ||
593 | } | ||
594 | |||
595 | pa_last = pa_curr; | ||
596 | pa_curr = pa_curr->next; | ||
597 | } | ||
598 | |||
599 | spin_unlock(&cmm_lock); | ||
600 | cmm_dbg("Released %ld pages in the search range.\n", freed); | ||
601 | |||
602 | return 0; | ||
603 | } | ||
604 | |||
605 | /** | ||
606 | * cmm_memory_cb - Handle memory hotplug notifier calls | ||
607 | * @self: notifier block struct | ||
608 | * @action: action to take | ||
609 | * @arg: struct memory_notify data for handler | ||
610 | * | ||
611 | * Return value: | ||
612 | * NOTIFY_OK or notifier error based on subfunction return value | ||
613 | * | ||
614 | **/ | ||
615 | static int cmm_memory_cb(struct notifier_block *self, | ||
616 | unsigned long action, void *arg) | ||
617 | { | ||
618 | int ret = 0; | ||
619 | |||
620 | switch (action) { | ||
621 | case MEM_GOING_OFFLINE: | ||
622 | mutex_lock(&hotplug_mutex); | ||
623 | hotplug_occurred = 1; | ||
624 | ret = cmm_mem_going_offline(arg); | ||
625 | break; | ||
626 | case MEM_OFFLINE: | ||
627 | case MEM_CANCEL_OFFLINE: | ||
628 | mutex_unlock(&hotplug_mutex); | ||
629 | cmm_dbg("Memory offline operation complete.\n"); | ||
630 | break; | ||
631 | case MEM_GOING_ONLINE: | ||
632 | case MEM_ONLINE: | ||
633 | case MEM_CANCEL_ONLINE: | ||
634 | break; | ||
635 | } | ||
636 | |||
637 | if (ret) | ||
638 | ret = notifier_from_errno(ret); | ||
639 | else | ||
640 | ret = NOTIFY_OK; | ||
641 | |||
642 | return ret; | ||
643 | } | ||
644 | |||
645 | static struct notifier_block cmm_mem_nb = { | ||
646 | .notifier_call = cmm_memory_cb, | ||
647 | .priority = CMM_MEM_HOTPLUG_PRI | ||
648 | }; | ||
649 | |||
650 | /** | ||
417 | * cmm_init - Module initialization | 651 | * cmm_init - Module initialization |
418 | * | 652 | * |
419 | * Return value: | 653 | * Return value: |
@@ -435,18 +669,24 @@ static int cmm_init(void) | |||
435 | if ((rc = cmm_sysfs_register(&cmm_sysdev))) | 669 | if ((rc = cmm_sysfs_register(&cmm_sysdev))) |
436 | goto out_reboot_notifier; | 670 | goto out_reboot_notifier; |
437 | 671 | ||
672 | if (register_memory_notifier(&cmm_mem_nb) || | ||
673 | register_memory_isolate_notifier(&cmm_mem_isolate_nb)) | ||
674 | goto out_unregister_notifier; | ||
675 | |||
438 | if (cmm_disabled) | 676 | if (cmm_disabled) |
439 | return rc; | 677 | return rc; |
440 | 678 | ||
441 | cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread"); | 679 | cmm_thread_ptr = kthread_run(cmm_thread, NULL, "cmmthread"); |
442 | if (IS_ERR(cmm_thread_ptr)) { | 680 | if (IS_ERR(cmm_thread_ptr)) { |
443 | rc = PTR_ERR(cmm_thread_ptr); | 681 | rc = PTR_ERR(cmm_thread_ptr); |
444 | goto out_unregister_sysfs; | 682 | goto out_unregister_notifier; |
445 | } | 683 | } |
446 | 684 | ||
447 | return rc; | 685 | return rc; |
448 | 686 | ||
449 | out_unregister_sysfs: | 687 | out_unregister_notifier: |
688 | unregister_memory_notifier(&cmm_mem_nb); | ||
689 | unregister_memory_isolate_notifier(&cmm_mem_isolate_nb); | ||
450 | cmm_unregister_sysfs(&cmm_sysdev); | 690 | cmm_unregister_sysfs(&cmm_sysdev); |
451 | out_reboot_notifier: | 691 | out_reboot_notifier: |
452 | unregister_reboot_notifier(&cmm_reboot_nb); | 692 | unregister_reboot_notifier(&cmm_reboot_nb); |
@@ -467,6 +707,8 @@ static void cmm_exit(void) | |||
467 | kthread_stop(cmm_thread_ptr); | 707 | kthread_stop(cmm_thread_ptr); |
468 | unregister_oom_notifier(&cmm_oom_nb); | 708 | unregister_oom_notifier(&cmm_oom_nb); |
469 | unregister_reboot_notifier(&cmm_reboot_nb); | 709 | unregister_reboot_notifier(&cmm_reboot_nb); |
710 | unregister_memory_notifier(&cmm_mem_nb); | ||
711 | unregister_memory_isolate_notifier(&cmm_mem_isolate_nb); | ||
470 | cmm_free_pages(loaned_pages); | 712 | cmm_free_pages(loaned_pages); |
471 | cmm_unregister_sysfs(&cmm_sysdev); | 713 | cmm_unregister_sysfs(&cmm_sysdev); |
472 | } | 714 | } |
diff --git a/arch/powerpc/platforms/pseries/dlpar.c b/arch/powerpc/platforms/pseries/dlpar.c index 12df9e8812a..67b7a10f9fc 100644 --- a/arch/powerpc/platforms/pseries/dlpar.c +++ b/arch/powerpc/platforms/pseries/dlpar.c | |||
@@ -346,12 +346,14 @@ int dlpar_release_drc(u32 drc_index) | |||
346 | 346 | ||
347 | static DEFINE_MUTEX(pseries_cpu_hotplug_mutex); | 347 | static DEFINE_MUTEX(pseries_cpu_hotplug_mutex); |
348 | 348 | ||
349 | void cpu_hotplug_driver_lock() | 349 | void cpu_hotplug_driver_lock(void) |
350 | __acquires(pseries_cpu_hotplug_mutex) | ||
350 | { | 351 | { |
351 | mutex_lock(&pseries_cpu_hotplug_mutex); | 352 | mutex_lock(&pseries_cpu_hotplug_mutex); |
352 | } | 353 | } |
353 | 354 | ||
354 | void cpu_hotplug_driver_unlock() | 355 | void cpu_hotplug_driver_unlock(void) |
356 | __releases(pseries_cpu_hotplug_mutex) | ||
355 | { | 357 | { |
356 | mutex_unlock(&pseries_cpu_hotplug_mutex); | 358 | mutex_unlock(&pseries_cpu_hotplug_mutex); |
357 | } | 359 | } |
diff --git a/arch/powerpc/platforms/pseries/smp.c b/arch/powerpc/platforms/pseries/smp.c index 8868c012268..b4886635972 100644 --- a/arch/powerpc/platforms/pseries/smp.c +++ b/arch/powerpc/platforms/pseries/smp.c | |||
@@ -144,8 +144,8 @@ static void __devinit smp_pSeries_kick_cpu(int nr) | |||
144 | hcpuid = get_hard_smp_processor_id(nr); | 144 | hcpuid = get_hard_smp_processor_id(nr); |
145 | rc = plpar_hcall_norets(H_PROD, hcpuid); | 145 | rc = plpar_hcall_norets(H_PROD, hcpuid); |
146 | if (rc != H_SUCCESS) | 146 | if (rc != H_SUCCESS) |
147 | panic("Error: Prod to wake up processor %d Ret= %ld\n", | 147 | printk(KERN_ERR "Error: Prod to wake up processor %d\ |
148 | nr, rc); | 148 | Ret= %ld\n", nr, rc); |
149 | } | 149 | } |
150 | } | 150 | } |
151 | 151 | ||
diff --git a/arch/powerpc/sysdev/cpm2_pic.c b/arch/powerpc/sysdev/cpm2_pic.c index 971483f0dfa..1709ac5aac7 100644 --- a/arch/powerpc/sysdev/cpm2_pic.c +++ b/arch/powerpc/sysdev/cpm2_pic.c | |||
@@ -143,13 +143,23 @@ static int cpm2_set_irq_type(unsigned int virq, unsigned int flow_type) | |||
143 | struct irq_desc *desc = irq_to_desc(virq); | 143 | struct irq_desc *desc = irq_to_desc(virq); |
144 | unsigned int vold, vnew, edibit; | 144 | unsigned int vold, vnew, edibit; |
145 | 145 | ||
146 | if (flow_type == IRQ_TYPE_NONE) | 146 | /* Port C interrupts are either IRQ_TYPE_EDGE_FALLING or |
147 | flow_type = IRQ_TYPE_LEVEL_LOW; | 147 | * IRQ_TYPE_EDGE_BOTH (default). All others are IRQ_TYPE_EDGE_FALLING |
148 | 148 | * or IRQ_TYPE_LEVEL_LOW (default) | |
149 | if (flow_type & IRQ_TYPE_EDGE_RISING) { | 149 | */ |
150 | printk(KERN_ERR "CPM2 PIC: sense type 0x%x not supported\n", | 150 | if (src >= CPM2_IRQ_PORTC15 && src <= CPM2_IRQ_PORTC0) { |
151 | flow_type); | 151 | if (flow_type == IRQ_TYPE_NONE) |
152 | return -EINVAL; | 152 | flow_type = IRQ_TYPE_EDGE_BOTH; |
153 | |||
154 | if (flow_type != IRQ_TYPE_EDGE_BOTH && | ||
155 | flow_type != IRQ_TYPE_EDGE_FALLING) | ||
156 | goto err_sense; | ||
157 | } else { | ||
158 | if (flow_type == IRQ_TYPE_NONE) | ||
159 | flow_type = IRQ_TYPE_LEVEL_LOW; | ||
160 | |||
161 | if (flow_type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_LEVEL_HIGH)) | ||
162 | goto err_sense; | ||
153 | } | 163 | } |
154 | 164 | ||
155 | desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL); | 165 | desc->status &= ~(IRQ_TYPE_SENSE_MASK | IRQ_LEVEL); |
@@ -181,6 +191,10 @@ static int cpm2_set_irq_type(unsigned int virq, unsigned int flow_type) | |||
181 | if (vold != vnew) | 191 | if (vold != vnew) |
182 | out_be32(&cpm2_intctl->ic_siexr, vnew); | 192 | out_be32(&cpm2_intctl->ic_siexr, vnew); |
183 | return 0; | 193 | return 0; |
194 | |||
195 | err_sense: | ||
196 | pr_err("CPM2 PIC: sense type 0x%x not supported\n", flow_type); | ||
197 | return -EINVAL; | ||
184 | } | 198 | } |
185 | 199 | ||
186 | static struct irq_chip cpm2_pic = { | 200 | static struct irq_chip cpm2_pic = { |
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index 4e3a3e345ab..e1a028c1f18 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c | |||
@@ -464,8 +464,7 @@ static void __iomem *mpc83xx_pcie_remap_cfg(struct pci_bus *bus, | |||
464 | { | 464 | { |
465 | struct pci_controller *hose = pci_bus_to_host(bus); | 465 | struct pci_controller *hose = pci_bus_to_host(bus); |
466 | struct mpc83xx_pcie_priv *pcie = hose->dn->data; | 466 | struct mpc83xx_pcie_priv *pcie = hose->dn->data; |
467 | u8 bus_no = bus->number - hose->first_busno; | 467 | u32 dev_base = bus->number << 24 | devfn << 16; |
468 | u32 dev_base = bus_no << 24 | devfn << 16; | ||
469 | int ret; | 468 | int ret; |
470 | 469 | ||
471 | ret = mpc83xx_pcie_exclude_device(bus, devfn); | 470 | ret = mpc83xx_pcie_exclude_device(bus, devfn); |
@@ -515,12 +514,17 @@ static int mpc83xx_pcie_read_config(struct pci_bus *bus, unsigned int devfn, | |||
515 | static int mpc83xx_pcie_write_config(struct pci_bus *bus, unsigned int devfn, | 514 | static int mpc83xx_pcie_write_config(struct pci_bus *bus, unsigned int devfn, |
516 | int offset, int len, u32 val) | 515 | int offset, int len, u32 val) |
517 | { | 516 | { |
517 | struct pci_controller *hose = pci_bus_to_host(bus); | ||
518 | void __iomem *cfg_addr; | 518 | void __iomem *cfg_addr; |
519 | 519 | ||
520 | cfg_addr = mpc83xx_pcie_remap_cfg(bus, devfn, offset); | 520 | cfg_addr = mpc83xx_pcie_remap_cfg(bus, devfn, offset); |
521 | if (!cfg_addr) | 521 | if (!cfg_addr) |
522 | return PCIBIOS_DEVICE_NOT_FOUND; | 522 | return PCIBIOS_DEVICE_NOT_FOUND; |
523 | 523 | ||
524 | /* PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS */ | ||
525 | if (offset == PCI_PRIMARY_BUS && bus->number == hose->first_busno) | ||
526 | val &= 0xffffff00; | ||
527 | |||
524 | switch (len) { | 528 | switch (len) { |
525 | case 1: | 529 | case 1: |
526 | out_8(cfg_addr, val); | 530 | out_8(cfg_addr, val); |
diff --git a/arch/powerpc/sysdev/mpc8xxx_gpio.c b/arch/powerpc/sysdev/mpc8xxx_gpio.c index 103eace3619..ee1c0e1cf4a 100644 --- a/arch/powerpc/sysdev/mpc8xxx_gpio.c +++ b/arch/powerpc/sysdev/mpc8xxx_gpio.c | |||
@@ -54,6 +54,22 @@ static void mpc8xxx_gpio_save_regs(struct of_mm_gpio_chip *mm) | |||
54 | mpc8xxx_gc->data = in_be32(mm->regs + GPIO_DAT); | 54 | mpc8xxx_gc->data = in_be32(mm->regs + GPIO_DAT); |
55 | } | 55 | } |
56 | 56 | ||
57 | /* Workaround GPIO 1 errata on MPC8572/MPC8536. The status of GPIOs | ||
58 | * defined as output cannot be determined by reading GPDAT register, | ||
59 | * so we use shadow data register instead. The status of input pins | ||
60 | * is determined by reading GPDAT register. | ||
61 | */ | ||
62 | static int mpc8572_gpio_get(struct gpio_chip *gc, unsigned int gpio) | ||
63 | { | ||
64 | u32 val; | ||
65 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | ||
66 | struct mpc8xxx_gpio_chip *mpc8xxx_gc = to_mpc8xxx_gpio_chip(mm); | ||
67 | |||
68 | val = in_be32(mm->regs + GPIO_DAT) & ~in_be32(mm->regs + GPIO_DIR); | ||
69 | |||
70 | return (val | mpc8xxx_gc->data) & mpc8xxx_gpio2mask(gpio); | ||
71 | } | ||
72 | |||
57 | static int mpc8xxx_gpio_get(struct gpio_chip *gc, unsigned int gpio) | 73 | static int mpc8xxx_gpio_get(struct gpio_chip *gc, unsigned int gpio) |
58 | { | 74 | { |
59 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); | 75 | struct of_mm_gpio_chip *mm = to_of_mm_gpio_chip(gc); |
@@ -136,7 +152,10 @@ static void __init mpc8xxx_add_controller(struct device_node *np) | |||
136 | gc->ngpio = MPC8XXX_GPIO_PINS; | 152 | gc->ngpio = MPC8XXX_GPIO_PINS; |
137 | gc->direction_input = mpc8xxx_gpio_dir_in; | 153 | gc->direction_input = mpc8xxx_gpio_dir_in; |
138 | gc->direction_output = mpc8xxx_gpio_dir_out; | 154 | gc->direction_output = mpc8xxx_gpio_dir_out; |
139 | gc->get = mpc8xxx_gpio_get; | 155 | if (of_device_is_compatible(np, "fsl,mpc8572-gpio")) |
156 | gc->get = mpc8572_gpio_get; | ||
157 | else | ||
158 | gc->get = mpc8xxx_gpio_get; | ||
140 | gc->set = mpc8xxx_gpio_set; | 159 | gc->set = mpc8xxx_gpio_set; |
141 | 160 | ||
142 | ret = of_mm_gpiochip_add(np, mm_gc); | 161 | ret = of_mm_gpiochip_add(np, mm_gc); |
diff --git a/arch/powerpc/sysdev/mpic.c b/arch/powerpc/sysdev/mpic.c index aa9d06e5925..470dc6c11d5 100644 --- a/arch/powerpc/sysdev/mpic.c +++ b/arch/powerpc/sysdev/mpic.c | |||
@@ -567,13 +567,11 @@ static void __init mpic_scan_ht_pics(struct mpic *mpic) | |||
567 | #endif /* CONFIG_MPIC_U3_HT_IRQS */ | 567 | #endif /* CONFIG_MPIC_U3_HT_IRQS */ |
568 | 568 | ||
569 | #ifdef CONFIG_SMP | 569 | #ifdef CONFIG_SMP |
570 | static int irq_choose_cpu(unsigned int virt_irq) | 570 | static int irq_choose_cpu(const cpumask_t *mask) |
571 | { | 571 | { |
572 | cpumask_t mask; | ||
573 | int cpuid; | 572 | int cpuid; |
574 | 573 | ||
575 | cpumask_copy(&mask, irq_to_desc(virt_irq)->affinity); | 574 | if (cpumask_equal(mask, cpu_all_mask)) { |
576 | if (cpus_equal(mask, CPU_MASK_ALL)) { | ||
577 | static int irq_rover; | 575 | static int irq_rover; |
578 | static DEFINE_SPINLOCK(irq_rover_lock); | 576 | static DEFINE_SPINLOCK(irq_rover_lock); |
579 | unsigned long flags; | 577 | unsigned long flags; |
@@ -594,20 +592,15 @@ static int irq_choose_cpu(unsigned int virt_irq) | |||
594 | 592 | ||
595 | spin_unlock_irqrestore(&irq_rover_lock, flags); | 593 | spin_unlock_irqrestore(&irq_rover_lock, flags); |
596 | } else { | 594 | } else { |
597 | cpumask_t tmp; | 595 | cpuid = cpumask_first_and(mask, cpu_online_mask); |
598 | 596 | if (cpuid >= nr_cpu_ids) | |
599 | cpus_and(tmp, cpu_online_map, mask); | ||
600 | |||
601 | if (cpus_empty(tmp)) | ||
602 | goto do_round_robin; | 597 | goto do_round_robin; |
603 | |||
604 | cpuid = first_cpu(tmp); | ||
605 | } | 598 | } |
606 | 599 | ||
607 | return get_hard_smp_processor_id(cpuid); | 600 | return get_hard_smp_processor_id(cpuid); |
608 | } | 601 | } |
609 | #else | 602 | #else |
610 | static int irq_choose_cpu(unsigned int virt_irq) | 603 | static int irq_choose_cpu(const cpumask_t *mask) |
611 | { | 604 | { |
612 | return hard_smp_processor_id(); | 605 | return hard_smp_processor_id(); |
613 | } | 606 | } |
@@ -816,7 +809,7 @@ int mpic_set_affinity(unsigned int irq, const struct cpumask *cpumask) | |||
816 | unsigned int src = mpic_irq_to_hw(irq); | 809 | unsigned int src = mpic_irq_to_hw(irq); |
817 | 810 | ||
818 | if (mpic->flags & MPIC_SINGLE_DEST_CPU) { | 811 | if (mpic->flags & MPIC_SINGLE_DEST_CPU) { |
819 | int cpuid = irq_choose_cpu(irq); | 812 | int cpuid = irq_choose_cpu(cpumask); |
820 | 813 | ||
821 | mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid); | 814 | mpic_irq_write(src, MPIC_INFO(IRQ_DESTINATION), 1 << cpuid); |
822 | } else { | 815 | } else { |
diff --git a/arch/powerpc/sysdev/mpic_msi.c b/arch/powerpc/sysdev/mpic_msi.c index 1d44eee80fa..0f67cd79d48 100644 --- a/arch/powerpc/sysdev/mpic_msi.c +++ b/arch/powerpc/sysdev/mpic_msi.c | |||
@@ -39,7 +39,12 @@ static int mpic_msi_reserve_u3_hwirqs(struct mpic *mpic) | |||
39 | 39 | ||
40 | pr_debug("mpic: found U3, guessing msi allocator setup\n"); | 40 | pr_debug("mpic: found U3, guessing msi allocator setup\n"); |
41 | 41 | ||
42 | /* Reserve source numbers we know are reserved in the HW */ | 42 | /* Reserve source numbers we know are reserved in the HW. |
43 | * | ||
44 | * This is a bit of a mix of U3 and U4 reserves but that's going | ||
45 | * to work fine, we have plenty enugh numbers left so let's just | ||
46 | * mark anything we don't like reserved. | ||
47 | */ | ||
43 | for (i = 0; i < 8; i++) | 48 | for (i = 0; i < 8; i++) |
44 | msi_bitmap_reserve_hwirq(&mpic->msi_bitmap, i); | 49 | msi_bitmap_reserve_hwirq(&mpic->msi_bitmap, i); |
45 | 50 | ||
@@ -49,6 +54,10 @@ static int mpic_msi_reserve_u3_hwirqs(struct mpic *mpic) | |||
49 | for (i = 100; i < 105; i++) | 54 | for (i = 100; i < 105; i++) |
50 | msi_bitmap_reserve_hwirq(&mpic->msi_bitmap, i); | 55 | msi_bitmap_reserve_hwirq(&mpic->msi_bitmap, i); |
51 | 56 | ||
57 | for (i = 124; i < mpic->irq_count; i++) | ||
58 | msi_bitmap_reserve_hwirq(&mpic->msi_bitmap, i); | ||
59 | |||
60 | |||
52 | np = NULL; | 61 | np = NULL; |
53 | while ((np = of_find_all_nodes(np))) { | 62 | while ((np = of_find_all_nodes(np))) { |
54 | pr_debug("mpic: mapping hwirqs for %s\n", np->full_name); | 63 | pr_debug("mpic: mapping hwirqs for %s\n", np->full_name); |
diff --git a/arch/powerpc/sysdev/mpic_u3msi.c b/arch/powerpc/sysdev/mpic_u3msi.c index d3caf23e631..bcbfe79c704 100644 --- a/arch/powerpc/sysdev/mpic_u3msi.c +++ b/arch/powerpc/sysdev/mpic_u3msi.c | |||
@@ -64,12 +64,12 @@ static u64 read_ht_magic_addr(struct pci_dev *pdev, unsigned int pos) | |||
64 | return addr; | 64 | return addr; |
65 | } | 65 | } |
66 | 66 | ||
67 | static u64 find_ht_magic_addr(struct pci_dev *pdev) | 67 | static u64 find_ht_magic_addr(struct pci_dev *pdev, unsigned int hwirq) |
68 | { | 68 | { |
69 | struct pci_bus *bus; | 69 | struct pci_bus *bus; |
70 | unsigned int pos; | 70 | unsigned int pos; |
71 | 71 | ||
72 | for (bus = pdev->bus; bus; bus = bus->parent) { | 72 | for (bus = pdev->bus; bus && bus->self; bus = bus->parent) { |
73 | pos = pci_find_ht_capability(bus->self, HT_CAPTYPE_MSI_MAPPING); | 73 | pos = pci_find_ht_capability(bus->self, HT_CAPTYPE_MSI_MAPPING); |
74 | if (pos) | 74 | if (pos) |
75 | return read_ht_magic_addr(bus->self, pos); | 75 | return read_ht_magic_addr(bus->self, pos); |
@@ -78,13 +78,41 @@ static u64 find_ht_magic_addr(struct pci_dev *pdev) | |||
78 | return 0; | 78 | return 0; |
79 | } | 79 | } |
80 | 80 | ||
81 | static u64 find_u4_magic_addr(struct pci_dev *pdev, unsigned int hwirq) | ||
82 | { | ||
83 | struct pci_controller *hose = pci_bus_to_host(pdev->bus); | ||
84 | |||
85 | /* U4 PCIe MSIs need to write to the special register in | ||
86 | * the bridge that generates interrupts. There should be | ||
87 | * theorically a register at 0xf8005000 where you just write | ||
88 | * the MSI number and that triggers the right interrupt, but | ||
89 | * unfortunately, this is busted in HW, the bridge endian swaps | ||
90 | * the value and hits the wrong nibble in the register. | ||
91 | * | ||
92 | * So instead we use another register set which is used normally | ||
93 | * for converting HT interrupts to MPIC interrupts, which decodes | ||
94 | * the interrupt number as part of the low address bits | ||
95 | * | ||
96 | * This will not work if we ever use more than one legacy MSI in | ||
97 | * a block but we never do. For one MSI or multiple MSI-X where | ||
98 | * each interrupt address can be specified separately, it works | ||
99 | * just fine. | ||
100 | */ | ||
101 | if (of_device_is_compatible(hose->dn, "u4-pcie") || | ||
102 | of_device_is_compatible(hose->dn, "U4-pcie")) | ||
103 | return 0xf8004000 | (hwirq << 4); | ||
104 | |||
105 | return 0; | ||
106 | } | ||
107 | |||
81 | static int u3msi_msi_check_device(struct pci_dev *pdev, int nvec, int type) | 108 | static int u3msi_msi_check_device(struct pci_dev *pdev, int nvec, int type) |
82 | { | 109 | { |
83 | if (type == PCI_CAP_ID_MSIX) | 110 | if (type == PCI_CAP_ID_MSIX) |
84 | pr_debug("u3msi: MSI-X untested, trying anyway.\n"); | 111 | pr_debug("u3msi: MSI-X untested, trying anyway.\n"); |
85 | 112 | ||
86 | /* If we can't find a magic address then MSI ain't gonna work */ | 113 | /* If we can't find a magic address then MSI ain't gonna work */ |
87 | if (find_ht_magic_addr(pdev) == 0) { | 114 | if (find_ht_magic_addr(pdev, 0) == 0 && |
115 | find_u4_magic_addr(pdev, 0) == 0) { | ||
88 | pr_debug("u3msi: no magic address found for %s\n", | 116 | pr_debug("u3msi: no magic address found for %s\n", |
89 | pci_name(pdev)); | 117 | pci_name(pdev)); |
90 | return -ENXIO; | 118 | return -ENXIO; |
@@ -118,10 +146,6 @@ static int u3msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) | |||
118 | u64 addr; | 146 | u64 addr; |
119 | int hwirq; | 147 | int hwirq; |
120 | 148 | ||
121 | addr = find_ht_magic_addr(pdev); | ||
122 | msg.address_lo = addr & 0xFFFFFFFF; | ||
123 | msg.address_hi = addr >> 32; | ||
124 | |||
125 | list_for_each_entry(entry, &pdev->msi_list, list) { | 149 | list_for_each_entry(entry, &pdev->msi_list, list) { |
126 | hwirq = msi_bitmap_alloc_hwirqs(&msi_mpic->msi_bitmap, 1); | 150 | hwirq = msi_bitmap_alloc_hwirqs(&msi_mpic->msi_bitmap, 1); |
127 | if (hwirq < 0) { | 151 | if (hwirq < 0) { |
@@ -129,6 +153,12 @@ static int u3msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) | |||
129 | return hwirq; | 153 | return hwirq; |
130 | } | 154 | } |
131 | 155 | ||
156 | addr = find_ht_magic_addr(pdev, hwirq); | ||
157 | if (addr == 0) | ||
158 | addr = find_u4_magic_addr(pdev, hwirq); | ||
159 | msg.address_lo = addr & 0xFFFFFFFF; | ||
160 | msg.address_hi = addr >> 32; | ||
161 | |||
132 | virq = irq_create_mapping(msi_mpic->irqhost, hwirq); | 162 | virq = irq_create_mapping(msi_mpic->irqhost, hwirq); |
133 | if (virq == NO_IRQ) { | 163 | if (virq == NO_IRQ) { |
134 | pr_debug("u3msi: failed mapping hwirq 0x%x\n", hwirq); | 164 | pr_debug("u3msi: failed mapping hwirq 0x%x\n", hwirq); |
@@ -143,6 +173,8 @@ static int u3msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type) | |||
143 | pr_debug("u3msi: allocated virq 0x%x (hw 0x%x) addr 0x%lx\n", | 173 | pr_debug("u3msi: allocated virq 0x%x (hw 0x%x) addr 0x%lx\n", |
144 | virq, hwirq, (unsigned long)addr); | 174 | virq, hwirq, (unsigned long)addr); |
145 | 175 | ||
176 | printk("u3msi: allocated virq 0x%x (hw 0x%x) addr 0x%lx\n", | ||
177 | virq, hwirq, (unsigned long)addr); | ||
146 | msg.data = hwirq; | 178 | msg.data = hwirq; |
147 | write_msi_msg(virq, &msg); | 179 | write_msi_msg(virq, &msg); |
148 | 180 | ||
diff --git a/arch/s390/crypto/aes_s390.c b/arch/s390/crypto/aes_s390.c index 6118890c946..6be4503201a 100644 --- a/arch/s390/crypto/aes_s390.c +++ b/arch/s390/crypto/aes_s390.c | |||
@@ -174,7 +174,7 @@ static int fallback_init_cip(struct crypto_tfm *tfm) | |||
174 | if (IS_ERR(sctx->fallback.cip)) { | 174 | if (IS_ERR(sctx->fallback.cip)) { |
175 | pr_err("Allocating AES fallback algorithm %s failed\n", | 175 | pr_err("Allocating AES fallback algorithm %s failed\n", |
176 | name); | 176 | name); |
177 | return PTR_ERR(sctx->fallback.blk); | 177 | return PTR_ERR(sctx->fallback.cip); |
178 | } | 178 | } |
179 | 179 | ||
180 | return 0; | 180 | return 0; |
diff --git a/arch/s390/defconfig b/arch/s390/defconfig index f4e53c6708d..b416aa11b91 100644 --- a/arch/s390/defconfig +++ b/arch/s390/defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Tue Sep 22 17:43:13 2009 | 4 | # Mon Jan 4 09:03:07 2010 |
5 | # | 5 | # |
6 | CONFIG_SCHED_MC=y | 6 | CONFIG_SCHED_MC=y |
7 | CONFIG_MMU=y | 7 | CONFIG_MMU=y |
@@ -51,6 +51,7 @@ CONFIG_AUDIT=y | |||
51 | # | 51 | # |
52 | CONFIG_TREE_RCU=y | 52 | CONFIG_TREE_RCU=y |
53 | # CONFIG_TREE_PREEMPT_RCU is not set | 53 | # CONFIG_TREE_PREEMPT_RCU is not set |
54 | # CONFIG_TINY_RCU is not set | ||
54 | # CONFIG_RCU_TRACE is not set | 55 | # CONFIG_RCU_TRACE is not set |
55 | CONFIG_RCU_FANOUT=64 | 56 | CONFIG_RCU_FANOUT=64 |
56 | # CONFIG_RCU_FANOUT_EXACT is not set | 57 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -113,7 +114,6 @@ CONFIG_HAVE_PERF_EVENTS=y | |||
113 | # CONFIG_PERF_EVENTS is not set | 114 | # CONFIG_PERF_EVENTS is not set |
114 | # CONFIG_PERF_COUNTERS is not set | 115 | # CONFIG_PERF_COUNTERS is not set |
115 | CONFIG_VM_EVENT_COUNTERS=y | 116 | CONFIG_VM_EVENT_COUNTERS=y |
116 | # CONFIG_STRIP_ASM_SYMS is not set | ||
117 | # CONFIG_COMPAT_BRK is not set | 117 | # CONFIG_COMPAT_BRK is not set |
118 | CONFIG_SLAB=y | 118 | CONFIG_SLAB=y |
119 | # CONFIG_SLUB is not set | 119 | # CONFIG_SLUB is not set |
@@ -149,21 +149,78 @@ CONFIG_STOP_MACHINE=y | |||
149 | CONFIG_BLOCK=y | 149 | CONFIG_BLOCK=y |
150 | CONFIG_BLK_DEV_BSG=y | 150 | CONFIG_BLK_DEV_BSG=y |
151 | # CONFIG_BLK_DEV_INTEGRITY is not set | 151 | # CONFIG_BLK_DEV_INTEGRITY is not set |
152 | # CONFIG_BLK_CGROUP is not set | ||
152 | CONFIG_BLOCK_COMPAT=y | 153 | CONFIG_BLOCK_COMPAT=y |
153 | 154 | ||
154 | # | 155 | # |
155 | # IO Schedulers | 156 | # IO Schedulers |
156 | # | 157 | # |
157 | CONFIG_IOSCHED_NOOP=y | 158 | CONFIG_IOSCHED_NOOP=y |
158 | CONFIG_IOSCHED_AS=y | ||
159 | CONFIG_IOSCHED_DEADLINE=y | 159 | CONFIG_IOSCHED_DEADLINE=y |
160 | CONFIG_IOSCHED_CFQ=y | 160 | CONFIG_IOSCHED_CFQ=y |
161 | # CONFIG_DEFAULT_AS is not set | 161 | # CONFIG_CFQ_GROUP_IOSCHED is not set |
162 | CONFIG_DEFAULT_DEADLINE=y | 162 | CONFIG_DEFAULT_DEADLINE=y |
163 | # CONFIG_DEFAULT_CFQ is not set | 163 | # CONFIG_DEFAULT_CFQ is not set |
164 | # CONFIG_DEFAULT_NOOP is not set | 164 | # CONFIG_DEFAULT_NOOP is not set |
165 | CONFIG_DEFAULT_IOSCHED="deadline" | 165 | CONFIG_DEFAULT_IOSCHED="deadline" |
166 | CONFIG_PREEMPT_NOTIFIERS=y | 166 | CONFIG_PREEMPT_NOTIFIERS=y |
167 | CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y | ||
168 | CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y | ||
169 | CONFIG_ARCH_INLINE_SPIN_LOCK=y | ||
170 | CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y | ||
171 | CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y | ||
172 | CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y | ||
173 | CONFIG_ARCH_INLINE_SPIN_UNLOCK=y | ||
174 | CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y | ||
175 | CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y | ||
176 | CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y | ||
177 | CONFIG_ARCH_INLINE_READ_TRYLOCK=y | ||
178 | CONFIG_ARCH_INLINE_READ_LOCK=y | ||
179 | CONFIG_ARCH_INLINE_READ_LOCK_BH=y | ||
180 | CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y | ||
181 | CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y | ||
182 | CONFIG_ARCH_INLINE_READ_UNLOCK=y | ||
183 | CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y | ||
184 | CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y | ||
185 | CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y | ||
186 | CONFIG_ARCH_INLINE_WRITE_TRYLOCK=y | ||
187 | CONFIG_ARCH_INLINE_WRITE_LOCK=y | ||
188 | CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y | ||
189 | CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y | ||
190 | CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y | ||
191 | CONFIG_ARCH_INLINE_WRITE_UNLOCK=y | ||
192 | CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y | ||
193 | CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y | ||
194 | CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y | ||
195 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
196 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
197 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
198 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
199 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
200 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
201 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
202 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
203 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
204 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
205 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
206 | # CONFIG_INLINE_READ_LOCK is not set | ||
207 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
208 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
209 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
210 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
211 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
212 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
213 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
214 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
215 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
216 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
217 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
218 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
219 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
220 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
221 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
222 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
223 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
167 | CONFIG_FREEZER=y | 224 | CONFIG_FREEZER=y |
168 | 225 | ||
169 | # | 226 | # |
@@ -227,14 +284,13 @@ CONFIG_MEMORY_HOTPLUG=y | |||
227 | CONFIG_MEMORY_HOTPLUG_SPARSE=y | 284 | CONFIG_MEMORY_HOTPLUG_SPARSE=y |
228 | CONFIG_MEMORY_HOTREMOVE=y | 285 | CONFIG_MEMORY_HOTREMOVE=y |
229 | CONFIG_PAGEFLAGS_EXTENDED=y | 286 | CONFIG_PAGEFLAGS_EXTENDED=y |
230 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 287 | CONFIG_SPLIT_PTLOCK_CPUS=999999 |
231 | CONFIG_MIGRATION=y | 288 | CONFIG_MIGRATION=y |
232 | CONFIG_PHYS_ADDR_T_64BIT=y | 289 | CONFIG_PHYS_ADDR_T_64BIT=y |
233 | CONFIG_ZONE_DMA_FLAG=1 | 290 | CONFIG_ZONE_DMA_FLAG=1 |
234 | CONFIG_BOUNCE=y | 291 | CONFIG_BOUNCE=y |
235 | CONFIG_VIRT_TO_BUS=y | 292 | CONFIG_VIRT_TO_BUS=y |
236 | CONFIG_HAVE_MLOCK=y | 293 | # CONFIG_KSM is not set |
237 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
238 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 294 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
239 | 295 | ||
240 | # | 296 | # |
@@ -339,6 +395,7 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
339 | CONFIG_INET6_XFRM_MODE_BEET=y | 395 | CONFIG_INET6_XFRM_MODE_BEET=y |
340 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 396 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
341 | CONFIG_IPV6_SIT=y | 397 | CONFIG_IPV6_SIT=y |
398 | # CONFIG_IPV6_SIT_6RD is not set | ||
342 | CONFIG_IPV6_NDISC_NODETYPE=y | 399 | CONFIG_IPV6_NDISC_NODETYPE=y |
343 | # CONFIG_IPV6_TUNNEL is not set | 400 | # CONFIG_IPV6_TUNNEL is not set |
344 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 401 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
@@ -504,6 +561,10 @@ CONFIG_BLK_DEV=y | |||
504 | # CONFIG_BLK_DEV_COW_COMMON is not set | 561 | # CONFIG_BLK_DEV_COW_COMMON is not set |
505 | CONFIG_BLK_DEV_LOOP=m | 562 | CONFIG_BLK_DEV_LOOP=m |
506 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 563 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
564 | |||
565 | # | ||
566 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
567 | # | ||
507 | CONFIG_BLK_DEV_NBD=m | 568 | CONFIG_BLK_DEV_NBD=m |
508 | # CONFIG_BLK_DEV_OSD is not set | 569 | # CONFIG_BLK_DEV_OSD is not set |
509 | CONFIG_BLK_DEV_RAM=y | 570 | CONFIG_BLK_DEV_RAM=y |
@@ -710,7 +771,6 @@ CONFIG_S390_VMUR=m | |||
710 | # CONFIG_PPS is not set | 771 | # CONFIG_PPS is not set |
711 | # CONFIG_POWER_SUPPLY is not set | 772 | # CONFIG_POWER_SUPPLY is not set |
712 | # CONFIG_THERMAL is not set | 773 | # CONFIG_THERMAL is not set |
713 | # CONFIG_THERMAL_HWMON is not set | ||
714 | # CONFIG_WATCHDOG is not set | 774 | # CONFIG_WATCHDOG is not set |
715 | # CONFIG_REGULATOR is not set | 775 | # CONFIG_REGULATOR is not set |
716 | # CONFIG_MEMSTICK is not set | 776 | # CONFIG_MEMSTICK is not set |
@@ -864,6 +924,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
864 | CONFIG_ENABLE_MUST_CHECK=y | 924 | CONFIG_ENABLE_MUST_CHECK=y |
865 | CONFIG_FRAME_WARN=2048 | 925 | CONFIG_FRAME_WARN=2048 |
866 | CONFIG_MAGIC_SYSRQ=y | 926 | CONFIG_MAGIC_SYSRQ=y |
927 | # CONFIG_STRIP_ASM_SYMS is not set | ||
867 | # CONFIG_UNUSED_SYMBOLS is not set | 928 | # CONFIG_UNUSED_SYMBOLS is not set |
868 | CONFIG_DEBUG_FS=y | 929 | CONFIG_DEBUG_FS=y |
869 | # CONFIG_HEADERS_CHECK is not set | 930 | # CONFIG_HEADERS_CHECK is not set |
@@ -931,7 +992,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
931 | CONFIG_SAMPLES=y | 992 | CONFIG_SAMPLES=y |
932 | # CONFIG_SAMPLE_KOBJECT is not set | 993 | # CONFIG_SAMPLE_KOBJECT is not set |
933 | # CONFIG_SAMPLE_KPROBES is not set | 994 | # CONFIG_SAMPLE_KPROBES is not set |
934 | # CONFIG_KMEMCHECK is not set | ||
935 | 995 | ||
936 | # | 996 | # |
937 | # Security options | 997 | # Security options |
@@ -939,7 +999,11 @@ CONFIG_SAMPLES=y | |||
939 | # CONFIG_KEYS is not set | 999 | # CONFIG_KEYS is not set |
940 | # CONFIG_SECURITY is not set | 1000 | # CONFIG_SECURITY is not set |
941 | # CONFIG_SECURITYFS is not set | 1001 | # CONFIG_SECURITYFS is not set |
942 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1002 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1003 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1004 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1005 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1006 | CONFIG_DEFAULT_SECURITY="" | ||
943 | CONFIG_CRYPTO=y | 1007 | CONFIG_CRYPTO=y |
944 | 1008 | ||
945 | # | 1009 | # |
diff --git a/arch/s390/hypfs/hypfs_diag.c b/arch/s390/hypfs/hypfs_diag.c index 77df726180b..2b92d501425 100644 --- a/arch/s390/hypfs/hypfs_diag.c +++ b/arch/s390/hypfs/hypfs_diag.c | |||
@@ -164,7 +164,7 @@ static inline void part_hdr__part_name(enum diag204_format type, void *hdr, | |||
164 | LPAR_NAME_LEN); | 164 | LPAR_NAME_LEN); |
165 | EBCASC(name, LPAR_NAME_LEN); | 165 | EBCASC(name, LPAR_NAME_LEN); |
166 | name[LPAR_NAME_LEN] = 0; | 166 | name[LPAR_NAME_LEN] = 0; |
167 | strstrip(name); | 167 | strim(name); |
168 | } | 168 | } |
169 | 169 | ||
170 | struct cpu_info { | 170 | struct cpu_info { |
@@ -523,7 +523,7 @@ static int diag224_idx2name(int index, char *name) | |||
523 | memcpy(name, diag224_cpu_names + ((index + 1) * CPU_NAME_LEN), | 523 | memcpy(name, diag224_cpu_names + ((index + 1) * CPU_NAME_LEN), |
524 | CPU_NAME_LEN); | 524 | CPU_NAME_LEN); |
525 | name[CPU_NAME_LEN] = 0; | 525 | name[CPU_NAME_LEN] = 0; |
526 | strstrip(name); | 526 | strim(name); |
527 | return 0; | 527 | return 0; |
528 | } | 528 | } |
529 | 529 | ||
diff --git a/arch/s390/hypfs/hypfs_vm.c b/arch/s390/hypfs/hypfs_vm.c index d01fc8f799f..f0b0d31f0b4 100644 --- a/arch/s390/hypfs/hypfs_vm.c +++ b/arch/s390/hypfs/hypfs_vm.c | |||
@@ -124,7 +124,7 @@ static int hpyfs_vm_create_guest(struct super_block *sb, | |||
124 | /* guest dir */ | 124 | /* guest dir */ |
125 | memcpy(guest_name, data->guest_name, NAME_LEN); | 125 | memcpy(guest_name, data->guest_name, NAME_LEN); |
126 | EBCASC(guest_name, NAME_LEN); | 126 | EBCASC(guest_name, NAME_LEN); |
127 | strstrip(guest_name); | 127 | strim(guest_name); |
128 | guest_dir = hypfs_mkdir(sb, systems_dir, guest_name); | 128 | guest_dir = hypfs_mkdir(sb, systems_dir, guest_name); |
129 | if (IS_ERR(guest_dir)) | 129 | if (IS_ERR(guest_dir)) |
130 | return PTR_ERR(guest_dir); | 130 | return PTR_ERR(guest_dir); |
diff --git a/arch/s390/include/asm/bug.h b/arch/s390/include/asm/bug.h index efb74fd5156..b1066b9fb5f 100644 --- a/arch/s390/include/asm/bug.h +++ b/arch/s390/include/asm/bug.h | |||
@@ -52,6 +52,10 @@ | |||
52 | unreachable(); \ | 52 | unreachable(); \ |
53 | } while (0) | 53 | } while (0) |
54 | 54 | ||
55 | #define __WARN() do { \ | ||
56 | __EMIT_BUG(BUGFLAG_WARNING); \ | ||
57 | } while (0) | ||
58 | |||
55 | #define WARN_ON(x) ({ \ | 59 | #define WARN_ON(x) ({ \ |
56 | int __ret_warn_on = !!(x); \ | 60 | int __ret_warn_on = !!(x); \ |
57 | if (__builtin_constant_p(__ret_warn_on)) { \ | 61 | if (__builtin_constant_p(__ret_warn_on)) { \ |
diff --git a/arch/s390/include/asm/param.h b/arch/s390/include/asm/param.h index 34aaa460334..c616821bf2a 100644 --- a/arch/s390/include/asm/param.h +++ b/arch/s390/include/asm/param.h | |||
@@ -1,30 +1,6 @@ | |||
1 | /* | ||
2 | * include/asm-s390/param.h | ||
3 | * | ||
4 | * S390 version | ||
5 | * | ||
6 | * Derived from "include/asm-i386/param.h" | ||
7 | */ | ||
8 | |||
9 | #ifndef _ASMS390_PARAM_H | 1 | #ifndef _ASMS390_PARAM_H |
10 | #define _ASMS390_PARAM_H | 2 | #define _ASMS390_PARAM_H |
11 | 3 | ||
12 | #ifdef __KERNEL__ | 4 | #include <asm-generic/param.h> |
13 | # define HZ CONFIG_HZ /* Internal kernel timer frequency */ | ||
14 | # define USER_HZ 100 /* .. some user interfaces are in "ticks" */ | ||
15 | # define CLOCKS_PER_SEC (USER_HZ) /* like times() */ | ||
16 | #endif | ||
17 | |||
18 | #ifndef HZ | ||
19 | #define HZ 100 | ||
20 | #endif | ||
21 | |||
22 | #define EXEC_PAGESIZE 4096 | ||
23 | |||
24 | #ifndef NOGROUP | ||
25 | #define NOGROUP (-1) | ||
26 | #endif | ||
27 | |||
28 | #define MAXHOSTNAMELEN 64 /* max length of hostname */ | ||
29 | 5 | ||
30 | #endif | 6 | #endif /* _ASMS390_PARAM_H */ |
diff --git a/arch/s390/include/asm/sigp.h b/arch/s390/include/asm/sigp.h index ec403d4304f..f72d611f7e1 100644 --- a/arch/s390/include/asm/sigp.h +++ b/arch/s390/include/asm/sigp.h | |||
@@ -15,11 +15,19 @@ | |||
15 | #ifndef __SIGP__ | 15 | #ifndef __SIGP__ |
16 | #define __SIGP__ | 16 | #define __SIGP__ |
17 | 17 | ||
18 | #include <asm/ptrace.h> | 18 | #include <asm/system.h> |
19 | #include <asm/atomic.h> | ||
20 | 19 | ||
21 | /* get real cpu address from logical cpu number */ | 20 | /* get real cpu address from logical cpu number */ |
22 | extern volatile int __cpu_logical_map[]; | 21 | extern int __cpu_logical_map[]; |
22 | |||
23 | static inline int cpu_logical_map(int cpu) | ||
24 | { | ||
25 | #ifdef CONFIG_SMP | ||
26 | return __cpu_logical_map[cpu]; | ||
27 | #else | ||
28 | return stap(); | ||
29 | #endif | ||
30 | } | ||
23 | 31 | ||
24 | typedef enum | 32 | typedef enum |
25 | { | 33 | { |
@@ -79,7 +87,7 @@ signal_processor(__u16 cpu_addr, sigp_order_code order_code) | |||
79 | " ipm %0\n" | 87 | " ipm %0\n" |
80 | " srl %0,28\n" | 88 | " srl %0,28\n" |
81 | : "=d" (ccode) | 89 | : "=d" (ccode) |
82 | : "d" (reg1), "d" (__cpu_logical_map[cpu_addr]), | 90 | : "d" (reg1), "d" (cpu_logical_map(cpu_addr)), |
83 | "a" (order_code) : "cc" , "memory"); | 91 | "a" (order_code) : "cc" , "memory"); |
84 | return ccode; | 92 | return ccode; |
85 | } | 93 | } |
@@ -98,7 +106,7 @@ signal_processor_p(__u32 parameter, __u16 cpu_addr, sigp_order_code order_code) | |||
98 | " ipm %0\n" | 106 | " ipm %0\n" |
99 | " srl %0,28\n" | 107 | " srl %0,28\n" |
100 | : "=d" (ccode) | 108 | : "=d" (ccode) |
101 | : "d" (reg1), "d" (__cpu_logical_map[cpu_addr]), | 109 | : "d" (reg1), "d" (cpu_logical_map(cpu_addr)), |
102 | "a" (order_code) : "cc" , "memory"); | 110 | "a" (order_code) : "cc" , "memory"); |
103 | return ccode; | 111 | return ccode; |
104 | } | 112 | } |
@@ -118,7 +126,7 @@ signal_processor_ps(__u32 *statusptr, __u32 parameter, __u16 cpu_addr, | |||
118 | " ipm %0\n" | 126 | " ipm %0\n" |
119 | " srl %0,28\n" | 127 | " srl %0,28\n" |
120 | : "=d" (ccode), "+d" (reg1) | 128 | : "=d" (ccode), "+d" (reg1) |
121 | : "d" (__cpu_logical_map[cpu_addr]), "a" (order_code) | 129 | : "d" (cpu_logical_map(cpu_addr)), "a" (order_code) |
122 | : "cc" , "memory"); | 130 | : "cc" , "memory"); |
123 | *statusptr = reg1; | 131 | *statusptr = reg1; |
124 | return ccode; | 132 | return ccode; |
diff --git a/arch/s390/include/asm/thread_info.h b/arch/s390/include/asm/thread_info.h index 07eb61b2fb3..66069e73684 100644 --- a/arch/s390/include/asm/thread_info.h +++ b/arch/s390/include/asm/thread_info.h | |||
@@ -93,13 +93,12 @@ static inline struct thread_info *current_thread_info(void) | |||
93 | #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */ | 93 | #define TIF_SYSCALL_AUDIT 9 /* syscall auditing active */ |
94 | #define TIF_SECCOMP 10 /* secure computing */ | 94 | #define TIF_SECCOMP 10 /* secure computing */ |
95 | #define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */ | 95 | #define TIF_SYSCALL_TRACEPOINT 11 /* syscall tracepoint instrumentation */ |
96 | #define TIF_USEDFPU 16 /* FPU was used by this task this quantum (SMP) */ | 96 | #define TIF_POLLING_NRFLAG 16 /* true if poll_idle() is polling |
97 | #define TIF_POLLING_NRFLAG 17 /* true if poll_idle() is polling | ||
98 | TIF_NEED_RESCHED */ | 97 | TIF_NEED_RESCHED */ |
99 | #define TIF_31BIT 18 /* 32bit process */ | 98 | #define TIF_31BIT 17 /* 32bit process */ |
100 | #define TIF_MEMDIE 19 | 99 | #define TIF_MEMDIE 18 |
101 | #define TIF_RESTORE_SIGMASK 20 /* restore signal mask in do_signal() */ | 100 | #define TIF_RESTORE_SIGMASK 19 /* restore signal mask in do_signal() */ |
102 | #define TIF_FREEZE 21 /* thread is freezing for suspend */ | 101 | #define TIF_FREEZE 20 /* thread is freezing for suspend */ |
103 | 102 | ||
104 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | 103 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) |
105 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) | 104 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) |
@@ -112,7 +111,6 @@ static inline struct thread_info *current_thread_info(void) | |||
112 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) | 111 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) |
113 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | 112 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) |
114 | #define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT) | 113 | #define _TIF_SYSCALL_TRACEPOINT (1<<TIF_SYSCALL_TRACEPOINT) |
115 | #define _TIF_USEDFPU (1<<TIF_USEDFPU) | ||
116 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 114 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
117 | #define _TIF_31BIT (1<<TIF_31BIT) | 115 | #define _TIF_31BIT (1<<TIF_31BIT) |
118 | #define _TIF_FREEZE (1<<TIF_FREEZE) | 116 | #define _TIF_FREEZE (1<<TIF_FREEZE) |
diff --git a/arch/s390/include/asm/unistd.h b/arch/s390/include/asm/unistd.h index cb5232df151..6e9f049fa82 100644 --- a/arch/s390/include/asm/unistd.h +++ b/arch/s390/include/asm/unistd.h | |||
@@ -376,6 +376,9 @@ | |||
376 | #define __IGNORE_migrate_pages | 376 | #define __IGNORE_migrate_pages |
377 | #define __IGNORE_move_pages | 377 | #define __IGNORE_move_pages |
378 | 378 | ||
379 | /* Ignore system calls that are also reachable via sys_socket */ | ||
380 | #define __IGNORE_recvmmsg | ||
381 | |||
379 | #define __ARCH_WANT_IPC_PARSE_VERSION | 382 | #define __ARCH_WANT_IPC_PARSE_VERSION |
380 | #define __ARCH_WANT_OLD_READDIR | 383 | #define __ARCH_WANT_OLD_READDIR |
381 | #define __ARCH_WANT_SYS_ALARM | 384 | #define __ARCH_WANT_SYS_ALARM |
diff --git a/arch/s390/kernel/compat_linux.c b/arch/s390/kernel/compat_linux.c index 22c9e557bb2..11c3aba664e 100644 --- a/arch/s390/kernel/compat_linux.c +++ b/arch/s390/kernel/compat_linux.c | |||
@@ -616,44 +616,35 @@ asmlinkage long sys32_fstatat64(unsigned int dfd, char __user *filename, | |||
616 | */ | 616 | */ |
617 | 617 | ||
618 | struct mmap_arg_struct_emu31 { | 618 | struct mmap_arg_struct_emu31 { |
619 | u32 addr; | 619 | compat_ulong_t addr; |
620 | u32 len; | 620 | compat_ulong_t len; |
621 | u32 prot; | 621 | compat_ulong_t prot; |
622 | u32 flags; | 622 | compat_ulong_t flags; |
623 | u32 fd; | 623 | compat_ulong_t fd; |
624 | u32 offset; | 624 | compat_ulong_t offset; |
625 | }; | 625 | }; |
626 | 626 | ||
627 | asmlinkage unsigned long | 627 | asmlinkage unsigned long old32_mmap(struct mmap_arg_struct_emu31 __user *arg) |
628 | old32_mmap(struct mmap_arg_struct_emu31 __user *arg) | ||
629 | { | 628 | { |
630 | struct mmap_arg_struct_emu31 a; | 629 | struct mmap_arg_struct_emu31 a; |
631 | int error = -EFAULT; | ||
632 | 630 | ||
633 | if (copy_from_user(&a, arg, sizeof(a))) | 631 | if (copy_from_user(&a, arg, sizeof(a))) |
634 | goto out; | 632 | return -EFAULT; |
635 | |||
636 | error = -EINVAL; | ||
637 | if (a.offset & ~PAGE_MASK) | 633 | if (a.offset & ~PAGE_MASK) |
638 | goto out; | 634 | return -EINVAL; |
639 | 635 | a.addr = (unsigned long) compat_ptr(a.addr); | |
640 | error = sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, | 636 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, |
641 | a.offset >> PAGE_SHIFT); | 637 | a.offset >> PAGE_SHIFT); |
642 | out: | ||
643 | return error; | ||
644 | } | 638 | } |
645 | 639 | ||
646 | asmlinkage long | 640 | asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg) |
647 | sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg) | ||
648 | { | 641 | { |
649 | struct mmap_arg_struct_emu31 a; | 642 | struct mmap_arg_struct_emu31 a; |
650 | int error = -EFAULT; | ||
651 | 643 | ||
652 | if (copy_from_user(&a, arg, sizeof(a))) | 644 | if (copy_from_user(&a, arg, sizeof(a))) |
653 | goto out; | 645 | return -EFAULT; |
654 | error = sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset); | 646 | a.addr = (unsigned long) compat_ptr(a.addr); |
655 | out: | 647 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset); |
656 | return error; | ||
657 | } | 648 | } |
658 | 649 | ||
659 | asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count) | 650 | asmlinkage long sys32_read(unsigned int fd, char __user * buf, size_t count) |
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c index 4890ac6d7fa..4d73296fed7 100644 --- a/arch/s390/kernel/ipl.c +++ b/arch/s390/kernel/ipl.c | |||
@@ -221,7 +221,7 @@ static ssize_t sys_##_prefix##_##_name##_store(struct kobject *kobj, \ | |||
221 | const char *buf, size_t len) \ | 221 | const char *buf, size_t len) \ |
222 | { \ | 222 | { \ |
223 | strncpy(_value, buf, sizeof(_value) - 1); \ | 223 | strncpy(_value, buf, sizeof(_value) - 1); \ |
224 | strstrip(_value); \ | 224 | strim(_value); \ |
225 | return len; \ | 225 | return len; \ |
226 | } \ | 226 | } \ |
227 | static struct kobj_attribute sys_##_prefix##_##_name##_attr = \ | 227 | static struct kobj_attribute sys_##_prefix##_##_name##_attr = \ |
@@ -472,7 +472,7 @@ static ssize_t ipl_ccw_loadparm_show(struct kobject *kobj, | |||
472 | return sprintf(page, "#unknown#\n"); | 472 | return sprintf(page, "#unknown#\n"); |
473 | memcpy(loadparm, &sclp_ipl_info.loadparm, LOADPARM_LEN); | 473 | memcpy(loadparm, &sclp_ipl_info.loadparm, LOADPARM_LEN); |
474 | EBCASC(loadparm, LOADPARM_LEN); | 474 | EBCASC(loadparm, LOADPARM_LEN); |
475 | strstrip(loadparm); | 475 | strim(loadparm); |
476 | return sprintf(page, "%s\n", loadparm); | 476 | return sprintf(page, "%s\n", loadparm); |
477 | } | 477 | } |
478 | 478 | ||
@@ -776,7 +776,7 @@ static void reipl_get_ascii_loadparm(char *loadparm, | |||
776 | memcpy(loadparm, ibp->ipl_info.ccw.load_parm, LOADPARM_LEN); | 776 | memcpy(loadparm, ibp->ipl_info.ccw.load_parm, LOADPARM_LEN); |
777 | EBCASC(loadparm, LOADPARM_LEN); | 777 | EBCASC(loadparm, LOADPARM_LEN); |
778 | loadparm[LOADPARM_LEN] = 0; | 778 | loadparm[LOADPARM_LEN] = 0; |
779 | strstrip(loadparm); | 779 | strim(loadparm); |
780 | } | 780 | } |
781 | 781 | ||
782 | static ssize_t reipl_generic_loadparm_show(struct ipl_parameter_block *ipb, | 782 | static ssize_t reipl_generic_loadparm_show(struct ipl_parameter_block *ipb, |
diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c index 5417eb57271..00b6d1d292f 100644 --- a/arch/s390/kernel/process.c +++ b/arch/s390/kernel/process.c | |||
@@ -153,8 +153,6 @@ void exit_thread(void) | |||
153 | 153 | ||
154 | void flush_thread(void) | 154 | void flush_thread(void) |
155 | { | 155 | { |
156 | clear_used_math(); | ||
157 | clear_tsk_thread_flag(current, TIF_USEDFPU); | ||
158 | } | 156 | } |
159 | 157 | ||
160 | void release_thread(struct task_struct *dead_task) | 158 | void release_thread(struct task_struct *dead_task) |
@@ -217,6 +215,7 @@ int copy_thread(unsigned long clone_flags, unsigned long new_stackp, | |||
217 | p->thread.mm_segment = get_fs(); | 215 | p->thread.mm_segment = get_fs(); |
218 | /* Don't copy debug registers */ | 216 | /* Don't copy debug registers */ |
219 | memset(&p->thread.per_info, 0, sizeof(p->thread.per_info)); | 217 | memset(&p->thread.per_info, 0, sizeof(p->thread.per_info)); |
218 | clear_tsk_thread_flag(p, TIF_SINGLE_STEP); | ||
220 | /* Initialize per thread user and system timer values */ | 219 | /* Initialize per thread user and system timer values */ |
221 | ti = task_thread_info(p); | 220 | ti = task_thread_info(p); |
222 | ti->user_timer = 0; | 221 | ti->user_timer = 0; |
diff --git a/arch/s390/kernel/ptrace.c b/arch/s390/kernel/ptrace.c index 653c6a17874..7cf46423441 100644 --- a/arch/s390/kernel/ptrace.c +++ b/arch/s390/kernel/ptrace.c | |||
@@ -65,6 +65,7 @@ FixPerRegisters(struct task_struct *task) | |||
65 | { | 65 | { |
66 | struct pt_regs *regs; | 66 | struct pt_regs *regs; |
67 | per_struct *per_info; | 67 | per_struct *per_info; |
68 | per_cr_words cr_words; | ||
68 | 69 | ||
69 | regs = task_pt_regs(task); | 70 | regs = task_pt_regs(task); |
70 | per_info = (per_struct *) &task->thread.per_info; | 71 | per_info = (per_struct *) &task->thread.per_info; |
@@ -98,6 +99,13 @@ FixPerRegisters(struct task_struct *task) | |||
98 | per_info->control_regs.bits.storage_alt_space_ctl = 1; | 99 | per_info->control_regs.bits.storage_alt_space_ctl = 1; |
99 | else | 100 | else |
100 | per_info->control_regs.bits.storage_alt_space_ctl = 0; | 101 | per_info->control_regs.bits.storage_alt_space_ctl = 0; |
102 | |||
103 | if (task == current) { | ||
104 | __ctl_store(cr_words, 9, 11); | ||
105 | if (memcmp(&cr_words, &per_info->control_regs.words, | ||
106 | sizeof(cr_words)) != 0) | ||
107 | __ctl_load(per_info->control_regs.words, 9, 11); | ||
108 | } | ||
101 | } | 109 | } |
102 | 110 | ||
103 | void user_enable_single_step(struct task_struct *task) | 111 | void user_enable_single_step(struct task_struct *task) |
@@ -959,7 +967,7 @@ static const struct user_regset s390_compat_regsets[] = { | |||
959 | .set = s390_fpregs_set, | 967 | .set = s390_fpregs_set, |
960 | }, | 968 | }, |
961 | [REGSET_GENERAL_EXTENDED] = { | 969 | [REGSET_GENERAL_EXTENDED] = { |
962 | .core_note_type = NT_PRXSTATUS, | 970 | .core_note_type = NT_S390_HIGH_GPRS, |
963 | .n = sizeof(s390_compat_regs_high) / sizeof(compat_long_t), | 971 | .n = sizeof(s390_compat_regs_high) / sizeof(compat_long_t), |
964 | .size = sizeof(compat_long_t), | 972 | .size = sizeof(compat_long_t), |
965 | .align = sizeof(compat_long_t), | 973 | .align = sizeof(compat_long_t), |
diff --git a/arch/s390/kernel/setup.c b/arch/s390/kernel/setup.c index 0663287fa1b..8d8957b38ab 100644 --- a/arch/s390/kernel/setup.c +++ b/arch/s390/kernel/setup.c | |||
@@ -87,7 +87,6 @@ unsigned long elf_hwcap = 0; | |||
87 | char elf_platform[ELF_PLATFORM_SIZE]; | 87 | char elf_platform[ELF_PLATFORM_SIZE]; |
88 | 88 | ||
89 | struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS]; | 89 | struct mem_chunk __initdata memory_chunk[MEMORY_CHUNKS]; |
90 | volatile int __cpu_logical_map[NR_CPUS]; /* logical cpu to cpu address */ | ||
91 | 90 | ||
92 | int __initdata memory_end_set; | 91 | int __initdata memory_end_set; |
93 | unsigned long __initdata memory_end; | 92 | unsigned long __initdata memory_end; |
@@ -124,12 +123,6 @@ void __cpuinit cpu_init(void) | |||
124 | */ | 123 | */ |
125 | get_cpu_id(&S390_lowcore.cpu_id); | 124 | get_cpu_id(&S390_lowcore.cpu_id); |
126 | 125 | ||
127 | /* | ||
128 | * Force FPU initialization: | ||
129 | */ | ||
130 | clear_thread_flag(TIF_USEDFPU); | ||
131 | clear_used_math(); | ||
132 | |||
133 | atomic_inc(&init_mm.mm_count); | 126 | atomic_inc(&init_mm.mm_count); |
134 | current->active_mm = &init_mm; | 127 | current->active_mm = &init_mm; |
135 | BUG_ON(current->mm); | 128 | BUG_ON(current->mm); |
@@ -855,7 +848,6 @@ setup_arch(char **cmdline_p) | |||
855 | setup_lowcore(); | 848 | setup_lowcore(); |
856 | 849 | ||
857 | cpu_init(); | 850 | cpu_init(); |
858 | __cpu_logical_map[0] = stap(); | ||
859 | s390_init_cpu_topology(); | 851 | s390_init_cpu_topology(); |
860 | 852 | ||
861 | /* | 853 | /* |
diff --git a/arch/s390/kernel/signal.c b/arch/s390/kernel/signal.c index 6b4fef877f9..1675c48b914 100644 --- a/arch/s390/kernel/signal.c +++ b/arch/s390/kernel/signal.c | |||
@@ -500,18 +500,10 @@ void do_signal(struct pt_regs *regs) | |||
500 | clear_thread_flag(TIF_RESTORE_SIGMASK); | 500 | clear_thread_flag(TIF_RESTORE_SIGMASK); |
501 | 501 | ||
502 | /* | 502 | /* |
503 | * If we would have taken a single-step trap | ||
504 | * for a normal instruction, act like we took | ||
505 | * one for the handler setup. | ||
506 | */ | ||
507 | if (current->thread.per_info.single_step) | ||
508 | set_thread_flag(TIF_SINGLE_STEP); | ||
509 | |||
510 | /* | ||
511 | * Let tracing know that we've done the handler setup. | 503 | * Let tracing know that we've done the handler setup. |
512 | */ | 504 | */ |
513 | tracehook_signal_handler(signr, &info, &ka, regs, | 505 | tracehook_signal_handler(signr, &info, &ka, regs, |
514 | test_thread_flag(TIF_SINGLE_STEP)); | 506 | current->thread.per_info.single_step); |
515 | } | 507 | } |
516 | return; | 508 | return; |
517 | } | 509 | } |
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index 93e52039321..76a6fdd46c4 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
@@ -52,6 +52,9 @@ | |||
52 | #include <asm/cpu.h> | 52 | #include <asm/cpu.h> |
53 | #include "entry.h" | 53 | #include "entry.h" |
54 | 54 | ||
55 | /* logical cpu to cpu address */ | ||
56 | int __cpu_logical_map[NR_CPUS]; | ||
57 | |||
55 | static struct task_struct *current_set[NR_CPUS]; | 58 | static struct task_struct *current_set[NR_CPUS]; |
56 | 59 | ||
57 | static u8 smp_cpu_type; | 60 | static u8 smp_cpu_type; |
@@ -717,6 +720,12 @@ void __init smp_cpus_done(unsigned int max_cpus) | |||
717 | { | 720 | { |
718 | } | 721 | } |
719 | 722 | ||
723 | void __init smp_setup_processor_id(void) | ||
724 | { | ||
725 | S390_lowcore.cpu_nr = 0; | ||
726 | __cpu_logical_map[0] = stap(); | ||
727 | } | ||
728 | |||
720 | /* | 729 | /* |
721 | * the frequency of the profiling timer can be changed | 730 | * the frequency of the profiling timer can be changed |
722 | * by writing a multiplier value into /proc/profile. | 731 | * by writing a multiplier value into /proc/profile. |
diff --git a/arch/s390/kernel/topology.c b/arch/s390/kernel/topology.c index 3c72c9cf22b..14ef6f05e43 100644 --- a/arch/s390/kernel/topology.c +++ b/arch/s390/kernel/topology.c | |||
@@ -114,7 +114,7 @@ static void add_cpus_to_core(struct tl_cpu *tl_cpu, struct core_info *core) | |||
114 | 114 | ||
115 | rcpu = CPU_BITS - 1 - cpu + tl_cpu->origin; | 115 | rcpu = CPU_BITS - 1 - cpu + tl_cpu->origin; |
116 | for_each_present_cpu(lcpu) { | 116 | for_each_present_cpu(lcpu) { |
117 | if (__cpu_logical_map[lcpu] == rcpu) { | 117 | if (cpu_logical_map(lcpu) == rcpu) { |
118 | cpu_set(lcpu, core->mask); | 118 | cpu_set(lcpu, core->mask); |
119 | smp_cpu_polarization[lcpu] = tl_cpu->pp; | 119 | smp_cpu_polarization[lcpu] = tl_cpu->pp; |
120 | } | 120 | } |
diff --git a/arch/s390/kernel/traps.c b/arch/s390/kernel/traps.c index c2e42cc65ce..6e7ad63854c 100644 --- a/arch/s390/kernel/traps.c +++ b/arch/s390/kernel/traps.c | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
19 | #include <linux/string.h> | 19 | #include <linux/string.h> |
20 | #include <linux/errno.h> | 20 | #include <linux/errno.h> |
21 | #include <linux/ptrace.h> | 21 | #include <linux/tracehook.h> |
22 | #include <linux/timer.h> | 22 | #include <linux/timer.h> |
23 | #include <linux/mm.h> | 23 | #include <linux/mm.h> |
24 | #include <linux/smp.h> | 24 | #include <linux/smp.h> |
@@ -382,7 +382,7 @@ void __kprobes do_single_step(struct pt_regs *regs) | |||
382 | SIGTRAP) == NOTIFY_STOP){ | 382 | SIGTRAP) == NOTIFY_STOP){ |
383 | return; | 383 | return; |
384 | } | 384 | } |
385 | if ((current->ptrace & PT_PTRACED) != 0) | 385 | if (tracehook_consider_fatal_signal(current, SIGTRAP)) |
386 | force_sig(SIGTRAP, current); | 386 | force_sig(SIGTRAP, current); |
387 | } | 387 | } |
388 | 388 | ||
@@ -483,7 +483,7 @@ static void illegal_op(struct pt_regs * regs, long interruption_code) | |||
483 | if (get_user(*((__u16 *) opcode), (__u16 __user *) location)) | 483 | if (get_user(*((__u16 *) opcode), (__u16 __user *) location)) |
484 | return; | 484 | return; |
485 | if (*((__u16 *) opcode) == S390_BREAKPOINT_U16) { | 485 | if (*((__u16 *) opcode) == S390_BREAKPOINT_U16) { |
486 | if (current->ptrace & PT_PTRACED) | 486 | if (tracehook_consider_fatal_signal(current, SIGTRAP)) |
487 | force_sig(SIGTRAP, current); | 487 | force_sig(SIGTRAP, current); |
488 | else | 488 | else |
489 | signal = SIGILL; | 489 | signal = SIGILL; |
diff --git a/arch/s390/lib/spinlock.c b/arch/s390/lib/spinlock.c index 10754a37566..cff327f109a 100644 --- a/arch/s390/lib/spinlock.c +++ b/arch/s390/lib/spinlock.c | |||
@@ -34,7 +34,7 @@ static inline void _raw_yield_cpu(int cpu) | |||
34 | { | 34 | { |
35 | if (MACHINE_HAS_DIAG9C) | 35 | if (MACHINE_HAS_DIAG9C) |
36 | asm volatile("diag %0,0,0x9c" | 36 | asm volatile("diag %0,0,0x9c" |
37 | : : "d" (__cpu_logical_map[cpu])); | 37 | : : "d" (cpu_logical_map(cpu))); |
38 | else | 38 | else |
39 | _raw_yield(); | 39 | _raw_yield(); |
40 | } | 40 | } |
diff --git a/arch/s390/mm/mmap.c b/arch/s390/mm/mmap.c index f4558ccf02b..869efbaed3e 100644 --- a/arch/s390/mm/mmap.c +++ b/arch/s390/mm/mmap.c | |||
@@ -40,7 +40,7 @@ | |||
40 | 40 | ||
41 | static inline unsigned long mmap_base(void) | 41 | static inline unsigned long mmap_base(void) |
42 | { | 42 | { |
43 | unsigned long gap = current->signal->rlim[RLIMIT_STACK].rlim_cur; | 43 | unsigned long gap = rlimit(RLIMIT_STACK); |
44 | 44 | ||
45 | if (gap < MIN_GAP) | 45 | if (gap < MIN_GAP) |
46 | gap = MIN_GAP; | 46 | gap = MIN_GAP; |
@@ -61,7 +61,7 @@ static inline int mmap_is_legacy(void) | |||
61 | #endif | 61 | #endif |
62 | return sysctl_legacy_va_layout || | 62 | return sysctl_legacy_va_layout || |
63 | (current->personality & ADDR_COMPAT_LAYOUT) || | 63 | (current->personality & ADDR_COMPAT_LAYOUT) || |
64 | current->signal->rlim[RLIMIT_STACK].rlim_cur == RLIM_INFINITY; | 64 | rlimit(RLIMIT_STACK) == RLIM_INFINITY; |
65 | } | 65 | } |
66 | 66 | ||
67 | #ifndef CONFIG_64BIT | 67 | #ifndef CONFIG_64BIT |
diff --git a/arch/score/mm/init.c b/arch/score/mm/init.c index 8c15b2c85d5..dfaf458d670 100644 --- a/arch/score/mm/init.c +++ b/arch/score/mm/init.c | |||
@@ -106,7 +106,7 @@ void __init mem_init(void) | |||
106 | ram << (PAGE_SHIFT-10), codesize >> 10, | 106 | ram << (PAGE_SHIFT-10), codesize >> 10, |
107 | reservedpages << (PAGE_SHIFT-10), datasize >> 10, | 107 | reservedpages << (PAGE_SHIFT-10), datasize >> 10, |
108 | initsize >> 10, | 108 | initsize >> 10, |
109 | (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))); | 109 | totalhigh_pages << (PAGE_SHIFT-10)); |
110 | } | 110 | } |
111 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ | 111 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ |
112 | 112 | ||
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 0031a6979f3..2121fbb2ff4 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig | |||
@@ -540,14 +540,16 @@ config SH_TIMER_MTU2 | |||
540 | 540 | ||
541 | config SH_PCLK_FREQ | 541 | config SH_PCLK_FREQ |
542 | int "Peripheral clock frequency (in Hz)" | 542 | int "Peripheral clock frequency (in Hz)" |
543 | default "27000000" if CPU_SUBTYPE_SH7343 | 543 | depends on SH_CLK_CPG_LEGACY |
544 | default "31250000" if CPU_SUBTYPE_SH7619 | 544 | default "31250000" if CPU_SUBTYPE_SH7619 |
545 | default "32000000" if CPU_SUBTYPE_SH7722 | 545 | default "33333333" if CPU_SUBTYPE_SH7770 || \ |
546 | default "33333333" if CPU_SUBTYPE_SH7770 || CPU_SUBTYPE_SH7723 || \ | 546 | CPU_SUBTYPE_SH7760 || \ |
547 | CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7705 || \ | 547 | CPU_SUBTYPE_SH7705 || \ |
548 | CPU_SUBTYPE_SH7203 || CPU_SUBTYPE_SH7206 || \ | 548 | CPU_SUBTYPE_SH7203 || \ |
549 | CPU_SUBTYPE_SH7263 || CPU_SUBTYPE_MXG || \ | 549 | CPU_SUBTYPE_SH7206 || \ |
550 | CPU_SUBTYPE_SH7786 || CPU_SUBTYPE_SH7724 | 550 | CPU_SUBTYPE_SH7263 || \ |
551 | CPU_SUBTYPE_MXG || \ | ||
552 | CPU_SUBTYPE_SH7786 | ||
551 | default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R | 553 | default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R |
552 | default "66000000" if CPU_SUBTYPE_SH4_202 | 554 | default "66000000" if CPU_SUBTYPE_SH4_202 |
553 | default "50000000" | 555 | default "50000000" |
diff --git a/arch/sh/boards/mach-ecovec24/setup.c b/arch/sh/boards/mach-ecovec24/setup.c index 194aaca22d4..5c246289b4f 100644 --- a/arch/sh/boards/mach-ecovec24/setup.c +++ b/arch/sh/boards/mach-ecovec24/setup.c | |||
@@ -128,8 +128,6 @@ static struct platform_device nor_flash_device = { | |||
128 | 128 | ||
129 | /* SH Eth */ | 129 | /* SH Eth */ |
130 | #define SH_ETH_ADDR (0xA4600000) | 130 | #define SH_ETH_ADDR (0xA4600000) |
131 | #define SH_ETH_MAHR (SH_ETH_ADDR + 0x1C0) | ||
132 | #define SH_ETH_MALR (SH_ETH_ADDR + 0x1C8) | ||
133 | static struct resource sh_eth_resources[] = { | 131 | static struct resource sh_eth_resources[] = { |
134 | [0] = { | 132 | [0] = { |
135 | .start = SH_ETH_ADDR, | 133 | .start = SH_ETH_ADDR, |
@@ -355,6 +353,10 @@ static struct i2c_board_info i2c1_devices[] = { | |||
355 | { | 353 | { |
356 | I2C_BOARD_INFO("r2025sd", 0x32), | 354 | I2C_BOARD_INFO("r2025sd", 0x32), |
357 | }, | 355 | }, |
356 | { | ||
357 | I2C_BOARD_INFO("lis3lv02d", 0x1c), | ||
358 | .irq = 33, | ||
359 | } | ||
358 | }; | 360 | }; |
359 | 361 | ||
360 | /* KEYSC */ | 362 | /* KEYSC */ |
@@ -509,6 +511,7 @@ static struct platform_device sdhi1_device = { | |||
509 | 511 | ||
510 | #else | 512 | #else |
511 | 513 | ||
514 | /* MMC SPI */ | ||
512 | static int mmc_spi_get_ro(struct device *dev) | 515 | static int mmc_spi_get_ro(struct device *dev) |
513 | { | 516 | { |
514 | return gpio_get_value(GPIO_PTY6); | 517 | return gpio_get_value(GPIO_PTY6); |
@@ -542,6 +545,7 @@ static struct spi_board_info spi_bus[] = { | |||
542 | }, | 545 | }, |
543 | }; | 546 | }; |
544 | 547 | ||
548 | /* MSIOF0 */ | ||
545 | static struct sh_msiof_spi_info msiof0_data = { | 549 | static struct sh_msiof_spi_info msiof0_data = { |
546 | .num_chipselect = 1, | 550 | .num_chipselect = 1, |
547 | }; | 551 | }; |
@@ -1115,6 +1119,10 @@ static int __init arch_setup(void) | |||
1115 | gpio_direction_output(GPIO_PTU0, 0); | 1119 | gpio_direction_output(GPIO_PTU0, 0); |
1116 | mdelay(20); | 1120 | mdelay(20); |
1117 | 1121 | ||
1122 | /* enable motion sensor */ | ||
1123 | gpio_request(GPIO_FN_INTC_IRQ1, NULL); | ||
1124 | gpio_direction_input(GPIO_FN_INTC_IRQ1); | ||
1125 | |||
1118 | /* enable I2C device */ | 1126 | /* enable I2C device */ |
1119 | i2c_register_board_info(0, i2c0_devices, | 1127 | i2c_register_board_info(0, i2c0_devices, |
1120 | ARRAY_SIZE(i2c0_devices)); | 1128 | ARRAY_SIZE(i2c0_devices)); |
diff --git a/arch/sh/configs/ap325rxa_defconfig b/arch/sh/configs/ap325rxa_defconfig index 2f78d01cc6c..8931a60e37a 100644 --- a/arch/sh/configs/ap325rxa_defconfig +++ b/arch/sh/configs/ap325rxa_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Fri Sep 25 11:22:50 2009 | 4 | # Mon Jan 4 11:10:59 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -62,6 +64,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
62 | # | 64 | # |
63 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
64 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
65 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
66 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
67 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -99,6 +102,7 @@ CONFIG_EVENTFD=y | |||
99 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
100 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | 104 | CONFIG_HAVE_PERF_EVENTS=y |
105 | CONFIG_PERF_USE_VMALLOC=y | ||
102 | 106 | ||
103 | # | 107 | # |
104 | # Kernel Performance Events And Counters | 108 | # Kernel Performance Events And Counters |
@@ -116,6 +120,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
116 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
117 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
123 | CONFIG_HAVE_DMA_ATTRS=y | ||
119 | CONFIG_HAVE_CLK=y | 124 | CONFIG_HAVE_CLK=y |
120 | CONFIG_HAVE_DMA_API_DEBUG=y | 125 | CONFIG_HAVE_DMA_API_DEBUG=y |
121 | 126 | ||
@@ -142,14 +147,41 @@ CONFIG_LBDAF=y | |||
142 | # IO Schedulers | 147 | # IO Schedulers |
143 | # | 148 | # |
144 | CONFIG_IOSCHED_NOOP=y | 149 | CONFIG_IOSCHED_NOOP=y |
145 | CONFIG_IOSCHED_AS=y | ||
146 | CONFIG_IOSCHED_DEADLINE=y | 150 | CONFIG_IOSCHED_DEADLINE=y |
147 | CONFIG_IOSCHED_CFQ=y | 151 | CONFIG_IOSCHED_CFQ=y |
148 | # CONFIG_DEFAULT_AS is not set | ||
149 | # CONFIG_DEFAULT_DEADLINE is not set | 152 | # CONFIG_DEFAULT_DEADLINE is not set |
150 | CONFIG_DEFAULT_CFQ=y | 153 | CONFIG_DEFAULT_CFQ=y |
151 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="cfq" | 155 | CONFIG_DEFAULT_IOSCHED="cfq" |
156 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
166 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
171 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
172 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
173 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
175 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
184 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
153 | CONFIG_FREEZER=y | 185 | CONFIG_FREEZER=y |
154 | 186 | ||
155 | # | 187 | # |
@@ -205,6 +237,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
205 | CONFIG_MEMORY_START=0x08000000 | 237 | CONFIG_MEMORY_START=0x08000000 |
206 | CONFIG_MEMORY_SIZE=0x08000000 | 238 | CONFIG_MEMORY_SIZE=0x08000000 |
207 | CONFIG_29BIT=y | 239 | CONFIG_29BIT=y |
240 | # CONFIG_PMB_ENABLE is not set | ||
208 | # CONFIG_X2TLB is not set | 241 | # CONFIG_X2TLB is not set |
209 | CONFIG_VSYSCALL=y | 242 | CONFIG_VSYSCALL=y |
210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 243 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -229,8 +262,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 262 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=0 | 263 | CONFIG_ZONE_DMA_FLAG=0 |
231 | CONFIG_NR_QUICK=2 | 264 | CONFIG_NR_QUICK=2 |
232 | CONFIG_HAVE_MLOCK=y | ||
233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
234 | # CONFIG_KSM is not set | 265 | # CONFIG_KSM is not set |
235 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 266 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
236 | 267 | ||
@@ -262,7 +293,6 @@ CONFIG_SH_AP325RXA=y | |||
262 | # | 293 | # |
263 | CONFIG_SH_TIMER_TMU=y | 294 | CONFIG_SH_TIMER_TMU=y |
264 | # CONFIG_SH_TIMER_CMT is not set | 295 | # CONFIG_SH_TIMER_CMT is not set |
265 | CONFIG_SH_PCLK_FREQ=33333333 | ||
266 | CONFIG_SH_CLK_CPG=y | 296 | CONFIG_SH_CLK_CPG=y |
267 | CONFIG_TICK_ONESHOT=y | 297 | CONFIG_TICK_ONESHOT=y |
268 | # CONFIG_NO_HZ is not set | 298 | # CONFIG_NO_HZ is not set |
@@ -418,9 +448,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
418 | # CONFIG_AF_RXRPC is not set | 448 | # CONFIG_AF_RXRPC is not set |
419 | CONFIG_WIRELESS=y | 449 | CONFIG_WIRELESS=y |
420 | # CONFIG_CFG80211 is not set | 450 | # CONFIG_CFG80211 is not set |
421 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
422 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
423 | # CONFIG_WIRELESS_EXT is not set | ||
424 | # CONFIG_LIB80211 is not set | 451 | # CONFIG_LIB80211 is not set |
425 | 452 | ||
426 | # | 453 | # |
@@ -550,6 +577,10 @@ CONFIG_MTD_UBI_BEB_RESERVE=1 | |||
550 | CONFIG_BLK_DEV=y | 577 | CONFIG_BLK_DEV=y |
551 | # CONFIG_BLK_DEV_COW_COMMON is not set | 578 | # CONFIG_BLK_DEV_COW_COMMON is not set |
552 | # CONFIG_BLK_DEV_LOOP is not set | 579 | # CONFIG_BLK_DEV_LOOP is not set |
580 | |||
581 | # | ||
582 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
583 | # | ||
553 | # CONFIG_BLK_DEV_NBD is not set | 584 | # CONFIG_BLK_DEV_NBD is not set |
554 | CONFIG_BLK_DEV_RAM=y | 585 | CONFIG_BLK_DEV_RAM=y |
555 | CONFIG_BLK_DEV_RAM_COUNT=4 | 586 | CONFIG_BLK_DEV_RAM_COUNT=4 |
@@ -559,9 +590,12 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
559 | # CONFIG_ATA_OVER_ETH is not set | 590 | # CONFIG_ATA_OVER_ETH is not set |
560 | # CONFIG_BLK_DEV_HD is not set | 591 | # CONFIG_BLK_DEV_HD is not set |
561 | CONFIG_MISC_DEVICES=y | 592 | CONFIG_MISC_DEVICES=y |
593 | # CONFIG_AD525X_DPOT is not set | ||
562 | # CONFIG_ICS932S401 is not set | 594 | # CONFIG_ICS932S401 is not set |
563 | # CONFIG_ENCLOSURE_SERVICES is not set | 595 | # CONFIG_ENCLOSURE_SERVICES is not set |
564 | # CONFIG_ISL29003 is not set | 596 | # CONFIG_ISL29003 is not set |
597 | # CONFIG_DS1682 is not set | ||
598 | # CONFIG_TI_DAC7512 is not set | ||
565 | # CONFIG_C2PORT is not set | 599 | # CONFIG_C2PORT is not set |
566 | 600 | ||
567 | # | 601 | # |
@@ -572,6 +606,7 @@ CONFIG_MISC_DEVICES=y | |||
572 | # CONFIG_EEPROM_LEGACY is not set | 606 | # CONFIG_EEPROM_LEGACY is not set |
573 | # CONFIG_EEPROM_MAX6875 is not set | 607 | # CONFIG_EEPROM_MAX6875 is not set |
574 | # CONFIG_EEPROM_93CX6 is not set | 608 | # CONFIG_EEPROM_93CX6 is not set |
609 | # CONFIG_IWMC3200TOP is not set | ||
575 | CONFIG_HAVE_IDE=y | 610 | CONFIG_HAVE_IDE=y |
576 | # CONFIG_IDE is not set | 611 | # CONFIG_IDE is not set |
577 | 612 | ||
@@ -664,11 +699,11 @@ CONFIG_SMSC911X=y | |||
664 | # CONFIG_B44 is not set | 699 | # CONFIG_B44 is not set |
665 | # CONFIG_KS8842 is not set | 700 | # CONFIG_KS8842 is not set |
666 | # CONFIG_KS8851 is not set | 701 | # CONFIG_KS8851 is not set |
702 | # CONFIG_KS8851_MLL is not set | ||
667 | # CONFIG_NETDEV_1000 is not set | 703 | # CONFIG_NETDEV_1000 is not set |
668 | # CONFIG_NETDEV_10000 is not set | 704 | # CONFIG_NETDEV_10000 is not set |
669 | CONFIG_WLAN=y | 705 | CONFIG_WLAN=y |
670 | # CONFIG_WLAN_PRE80211 is not set | 706 | # CONFIG_HOSTAP is not set |
671 | # CONFIG_WLAN_80211 is not set | ||
672 | 707 | ||
673 | # | 708 | # |
674 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 709 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -688,6 +723,7 @@ CONFIG_WLAN=y | |||
688 | CONFIG_INPUT=y | 723 | CONFIG_INPUT=y |
689 | # CONFIG_INPUT_FF_MEMLESS is not set | 724 | # CONFIG_INPUT_FF_MEMLESS is not set |
690 | # CONFIG_INPUT_POLLDEV is not set | 725 | # CONFIG_INPUT_POLLDEV is not set |
726 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
691 | 727 | ||
692 | # | 728 | # |
693 | # Userland interfaces | 729 | # Userland interfaces |
@@ -782,7 +818,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
782 | # | 818 | # |
783 | # Miscellaneous I2C Chip support | 819 | # Miscellaneous I2C Chip support |
784 | # | 820 | # |
785 | # CONFIG_DS1682 is not set | ||
786 | # CONFIG_SENSORS_TSL2550 is not set | 821 | # CONFIG_SENSORS_TSL2550 is not set |
787 | # CONFIG_I2C_DEBUG_CORE is not set | 822 | # CONFIG_I2C_DEBUG_CORE is not set |
788 | # CONFIG_I2C_DEBUG_ALGO is not set | 823 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -796,7 +831,10 @@ CONFIG_SPI_MASTER=y | |||
796 | # | 831 | # |
797 | CONFIG_SPI_BITBANG=y | 832 | CONFIG_SPI_BITBANG=y |
798 | CONFIG_SPI_GPIO=y | 833 | CONFIG_SPI_GPIO=y |
834 | # CONFIG_SPI_SH_MSIOF is not set | ||
799 | # CONFIG_SPI_SH_SCI is not set | 835 | # CONFIG_SPI_SH_SCI is not set |
836 | # CONFIG_SPI_XILINX is not set | ||
837 | # CONFIG_SPI_DESIGNWARE is not set | ||
800 | 838 | ||
801 | # | 839 | # |
802 | # SPI Protocol Masters | 840 | # SPI Protocol Masters |
@@ -854,11 +892,13 @@ CONFIG_SSB_POSSIBLE=y | |||
854 | # | 892 | # |
855 | # CONFIG_MFD_CORE is not set | 893 | # CONFIG_MFD_CORE is not set |
856 | # CONFIG_MFD_SM501 is not set | 894 | # CONFIG_MFD_SM501 is not set |
895 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
857 | # CONFIG_HTC_PASIC3 is not set | 896 | # CONFIG_HTC_PASIC3 is not set |
858 | # CONFIG_TPS65010 is not set | 897 | # CONFIG_TPS65010 is not set |
859 | # CONFIG_TWL4030_CORE is not set | 898 | # CONFIG_TWL4030_CORE is not set |
860 | # CONFIG_MFD_TMIO is not set | 899 | # CONFIG_MFD_TMIO is not set |
861 | # CONFIG_PMIC_DA903X is not set | 900 | # CONFIG_PMIC_DA903X is not set |
901 | # CONFIG_PMIC_ADP5520 is not set | ||
862 | # CONFIG_MFD_WM8400 is not set | 902 | # CONFIG_MFD_WM8400 is not set |
863 | # CONFIG_MFD_WM831X is not set | 903 | # CONFIG_MFD_WM831X is not set |
864 | # CONFIG_MFD_WM8350_I2C is not set | 904 | # CONFIG_MFD_WM8350_I2C is not set |
@@ -866,6 +906,8 @@ CONFIG_SSB_POSSIBLE=y | |||
866 | # CONFIG_MFD_MC13783 is not set | 906 | # CONFIG_MFD_MC13783 is not set |
867 | # CONFIG_AB3100_CORE is not set | 907 | # CONFIG_AB3100_CORE is not set |
868 | # CONFIG_EZX_PCAP is not set | 908 | # CONFIG_EZX_PCAP is not set |
909 | # CONFIG_MFD_88PM8607 is not set | ||
910 | # CONFIG_AB4500_CORE is not set | ||
869 | # CONFIG_REGULATOR is not set | 911 | # CONFIG_REGULATOR is not set |
870 | CONFIG_MEDIA_SUPPORT=y | 912 | CONFIG_MEDIA_SUPPORT=y |
871 | 913 | ||
@@ -882,6 +924,8 @@ CONFIG_VIDEO_MEDIA=y | |||
882 | # | 924 | # |
883 | # Multimedia drivers | 925 | # Multimedia drivers |
884 | # | 926 | # |
927 | CONFIG_IR_CORE=y | ||
928 | CONFIG_VIDEO_IR=y | ||
885 | # CONFIG_MEDIA_ATTACH is not set | 929 | # CONFIG_MEDIA_ATTACH is not set |
886 | CONFIG_MEDIA_TUNER=y | 930 | CONFIG_MEDIA_TUNER=y |
887 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set | 931 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
@@ -901,6 +945,7 @@ CONFIG_VIDEO_CAPTURE_DRIVERS=y | |||
901 | # CONFIG_VIDEO_ADV_DEBUG is not set | 945 | # CONFIG_VIDEO_ADV_DEBUG is not set |
902 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set | 946 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set |
903 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | 947 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y |
948 | CONFIG_VIDEO_IR_I2C=y | ||
904 | # CONFIG_VIDEO_VIVI is not set | 949 | # CONFIG_VIDEO_VIVI is not set |
905 | # CONFIG_VIDEO_SAA5246A is not set | 950 | # CONFIG_VIDEO_SAA5246A is not set |
906 | # CONFIG_VIDEO_SAA5249 is not set | 951 | # CONFIG_VIDEO_SAA5249 is not set |
@@ -908,10 +953,13 @@ CONFIG_SOC_CAMERA=y | |||
908 | # CONFIG_SOC_CAMERA_MT9M001 is not set | 953 | # CONFIG_SOC_CAMERA_MT9M001 is not set |
909 | # CONFIG_SOC_CAMERA_MT9M111 is not set | 954 | # CONFIG_SOC_CAMERA_MT9M111 is not set |
910 | # CONFIG_SOC_CAMERA_MT9T031 is not set | 955 | # CONFIG_SOC_CAMERA_MT9T031 is not set |
956 | # CONFIG_SOC_CAMERA_MT9T112 is not set | ||
911 | # CONFIG_SOC_CAMERA_MT9V022 is not set | 957 | # CONFIG_SOC_CAMERA_MT9V022 is not set |
958 | # CONFIG_SOC_CAMERA_RJ54N1 is not set | ||
912 | # CONFIG_SOC_CAMERA_TW9910 is not set | 959 | # CONFIG_SOC_CAMERA_TW9910 is not set |
913 | CONFIG_SOC_CAMERA_PLATFORM=y | 960 | CONFIG_SOC_CAMERA_PLATFORM=y |
914 | CONFIG_SOC_CAMERA_OV772X=y | 961 | CONFIG_SOC_CAMERA_OV772X=y |
962 | # CONFIG_SOC_CAMERA_OV9640 is not set | ||
915 | CONFIG_VIDEO_SH_MOBILE_CEU=y | 963 | CONFIG_VIDEO_SH_MOBILE_CEU=y |
916 | # CONFIG_RADIO_ADAPTERS is not set | 964 | # CONFIG_RADIO_ADAPTERS is not set |
917 | # CONFIG_DAB is not set | 965 | # CONFIG_DAB is not set |
@@ -996,6 +1044,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
996 | # CONFIG_MMC_AT91 is not set | 1044 | # CONFIG_MMC_AT91 is not set |
997 | # CONFIG_MMC_ATMELMCI is not set | 1045 | # CONFIG_MMC_ATMELMCI is not set |
998 | CONFIG_MMC_SPI=y | 1046 | CONFIG_MMC_SPI=y |
1047 | # CONFIG_MMC_TMIO is not set | ||
999 | # CONFIG_MEMSTICK is not set | 1048 | # CONFIG_MEMSTICK is not set |
1000 | # CONFIG_NEW_LEDS is not set | 1049 | # CONFIG_NEW_LEDS is not set |
1001 | # CONFIG_ACCESSIBILITY is not set | 1050 | # CONFIG_ACCESSIBILITY is not set |
@@ -1027,6 +1076,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1027 | CONFIG_RTC_DRV_PCF8563=y | 1076 | CONFIG_RTC_DRV_PCF8563=y |
1028 | # CONFIG_RTC_DRV_PCF8583 is not set | 1077 | # CONFIG_RTC_DRV_PCF8583 is not set |
1029 | # CONFIG_RTC_DRV_M41T80 is not set | 1078 | # CONFIG_RTC_DRV_M41T80 is not set |
1079 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1030 | # CONFIG_RTC_DRV_S35390A is not set | 1080 | # CONFIG_RTC_DRV_S35390A is not set |
1031 | # CONFIG_RTC_DRV_FM3130 is not set | 1081 | # CONFIG_RTC_DRV_FM3130 is not set |
1032 | # CONFIG_RTC_DRV_RX8581 is not set | 1082 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1055,7 +1105,9 @@ CONFIG_RTC_DRV_PCF8563=y | |||
1055 | # CONFIG_RTC_DRV_M48T86 is not set | 1105 | # CONFIG_RTC_DRV_M48T86 is not set |
1056 | # CONFIG_RTC_DRV_M48T35 is not set | 1106 | # CONFIG_RTC_DRV_M48T35 is not set |
1057 | # CONFIG_RTC_DRV_M48T59 is not set | 1107 | # CONFIG_RTC_DRV_M48T59 is not set |
1108 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1058 | # CONFIG_RTC_DRV_BQ4802 is not set | 1109 | # CONFIG_RTC_DRV_BQ4802 is not set |
1110 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1059 | # CONFIG_RTC_DRV_V3020 is not set | 1111 | # CONFIG_RTC_DRV_V3020 is not set |
1060 | 1112 | ||
1061 | # | 1113 | # |
@@ -1248,7 +1300,7 @@ CONFIG_FRAME_WARN=1024 | |||
1248 | # CONFIG_DEBUG_FS is not set | 1300 | # CONFIG_DEBUG_FS is not set |
1249 | # CONFIG_HEADERS_CHECK is not set | 1301 | # CONFIG_HEADERS_CHECK is not set |
1250 | # CONFIG_DEBUG_KERNEL is not set | 1302 | # CONFIG_DEBUG_KERNEL is not set |
1251 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1303 | CONFIG_DEBUG_BUGVERBOSE=y |
1252 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1304 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1253 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1305 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1254 | # CONFIG_LATENCYTOP is not set | 1306 | # CONFIG_LATENCYTOP is not set |
@@ -1265,7 +1317,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1265 | # CONFIG_SAMPLES is not set | 1317 | # CONFIG_SAMPLES is not set |
1266 | CONFIG_HAVE_ARCH_KGDB=y | 1318 | CONFIG_HAVE_ARCH_KGDB=y |
1267 | # CONFIG_SH_STANDARD_BIOS is not set | 1319 | # CONFIG_SH_STANDARD_BIOS is not set |
1268 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1269 | # CONFIG_DWARF_UNWINDER is not set | 1320 | # CONFIG_DWARF_UNWINDER is not set |
1270 | 1321 | ||
1271 | # | 1322 | # |
@@ -1274,7 +1325,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1274 | # CONFIG_KEYS is not set | 1325 | # CONFIG_KEYS is not set |
1275 | # CONFIG_SECURITY is not set | 1326 | # CONFIG_SECURITY is not set |
1276 | # CONFIG_SECURITYFS is not set | 1327 | # CONFIG_SECURITYFS is not set |
1277 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1328 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1329 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1330 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1331 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1332 | CONFIG_DEFAULT_SECURITY="" | ||
1278 | CONFIG_CRYPTO=y | 1333 | CONFIG_CRYPTO=y |
1279 | 1334 | ||
1280 | # | 1335 | # |
diff --git a/arch/sh/configs/cayman_defconfig b/arch/sh/configs/cayman_defconfig index 6b863cb1e24..92589a950d0 100644 --- a/arch/sh/configs/cayman_defconfig +++ b/arch/sh/configs/cayman_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.30 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Jun 18 12:21:54 2009 | 4 | # Mon Jan 4 11:14:50 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | # CONFIG_SUPERH32 is not set | 7 | # CONFIG_SUPERH32 is not set |
@@ -14,11 +14,13 @@ CONFIG_GENERIC_HWEIGHT=y | |||
14 | CONFIG_GENERIC_HARDIRQS=y | 14 | CONFIG_GENERIC_HARDIRQS=y |
15 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y | 15 | CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y |
16 | CONFIG_GENERIC_IRQ_PROBE=y | 16 | CONFIG_GENERIC_IRQ_PROBE=y |
17 | CONFIG_IRQ_PER_CPU=y | ||
17 | # CONFIG_GENERIC_GPIO is not set | 18 | # CONFIG_GENERIC_GPIO is not set |
18 | CONFIG_GENERIC_TIME=y | 19 | CONFIG_GENERIC_TIME=y |
19 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
20 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
21 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set | 22 | # CONFIG_ARCH_HIBERNATION_POSSIBLE is not set |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
22 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
23 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -28,7 +30,10 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
28 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set | 30 | # CONFIG_ARCH_HAS_ILOG2_U64 is not set |
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | ||
34 | CONFIG_DMA_NONCOHERENT=y | ||
31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
36 | CONFIG_CONSTRUCTORS=y | ||
32 | 37 | ||
33 | # | 38 | # |
34 | # General setup | 39 | # General setup |
@@ -39,6 +44,12 @@ CONFIG_LOCK_KERNEL=y | |||
39 | CONFIG_INIT_ENV_ARG_LIMIT=32 | 44 | CONFIG_INIT_ENV_ARG_LIMIT=32 |
40 | CONFIG_LOCALVERSION="" | 45 | CONFIG_LOCALVERSION="" |
41 | CONFIG_LOCALVERSION_AUTO=y | 46 | CONFIG_LOCALVERSION_AUTO=y |
47 | CONFIG_HAVE_KERNEL_GZIP=y | ||
48 | CONFIG_HAVE_KERNEL_BZIP2=y | ||
49 | CONFIG_HAVE_KERNEL_LZMA=y | ||
50 | CONFIG_KERNEL_GZIP=y | ||
51 | # CONFIG_KERNEL_BZIP2 is not set | ||
52 | # CONFIG_KERNEL_LZMA is not set | ||
42 | CONFIG_SWAP=y | 53 | CONFIG_SWAP=y |
43 | # CONFIG_SYSVIPC is not set | 54 | # CONFIG_SYSVIPC is not set |
44 | CONFIG_POSIX_MQUEUE=y | 55 | CONFIG_POSIX_MQUEUE=y |
@@ -50,11 +61,13 @@ CONFIG_POSIX_MQUEUE_SYSCTL=y | |||
50 | # | 61 | # |
51 | # RCU Subsystem | 62 | # RCU Subsystem |
52 | # | 63 | # |
53 | CONFIG_CLASSIC_RCU=y | 64 | CONFIG_TREE_RCU=y |
54 | # CONFIG_TREE_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
55 | # CONFIG_PREEMPT_RCU is not set | 66 | # CONFIG_TINY_RCU is not set |
67 | # CONFIG_RCU_TRACE is not set | ||
68 | CONFIG_RCU_FANOUT=32 | ||
69 | # CONFIG_RCU_FANOUT_EXACT is not set | ||
56 | # CONFIG_TREE_RCU_TRACE is not set | 70 | # CONFIG_TREE_RCU_TRACE is not set |
57 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
58 | # CONFIG_IKCONFIG is not set | 71 | # CONFIG_IKCONFIG is not set |
59 | CONFIG_LOG_BUF_SHIFT=14 | 72 | CONFIG_LOG_BUF_SHIFT=14 |
60 | # CONFIG_GROUP_SCHED is not set | 73 | # CONFIG_GROUP_SCHED is not set |
@@ -85,24 +98,32 @@ CONFIG_TIMERFD=y | |||
85 | CONFIG_EVENTFD=y | 98 | CONFIG_EVENTFD=y |
86 | CONFIG_SHMEM=y | 99 | CONFIG_SHMEM=y |
87 | CONFIG_AIO=y | 100 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | ||
102 | CONFIG_PERF_USE_VMALLOC=y | ||
88 | 103 | ||
89 | # | 104 | # |
90 | # Performance Counters | 105 | # Kernel Performance Events And Counters |
91 | # | 106 | # |
107 | # CONFIG_PERF_EVENTS is not set | ||
108 | # CONFIG_PERF_COUNTERS is not set | ||
92 | CONFIG_VM_EVENT_COUNTERS=y | 109 | CONFIG_VM_EVENT_COUNTERS=y |
93 | CONFIG_PCI_QUIRKS=y | 110 | CONFIG_PCI_QUIRKS=y |
94 | # CONFIG_STRIP_ASM_SYMS is not set | ||
95 | CONFIG_COMPAT_BRK=y | 111 | CONFIG_COMPAT_BRK=y |
96 | CONFIG_SLAB=y | 112 | CONFIG_SLAB=y |
97 | # CONFIG_SLUB is not set | 113 | # CONFIG_SLUB is not set |
98 | # CONFIG_SLOB is not set | 114 | # CONFIG_SLOB is not set |
99 | # CONFIG_PROFILING is not set | 115 | # CONFIG_PROFILING is not set |
100 | # CONFIG_MARKERS is not set | ||
101 | CONFIG_HAVE_OPROFILE=y | 116 | CONFIG_HAVE_OPROFILE=y |
102 | CONFIG_HAVE_IOREMAP_PROT=y | 117 | CONFIG_HAVE_IOREMAP_PROT=y |
103 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 118 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
119 | CONFIG_HAVE_DMA_ATTRS=y | ||
104 | CONFIG_HAVE_CLK=y | 120 | CONFIG_HAVE_CLK=y |
105 | CONFIG_HAVE_DMA_API_DEBUG=y | 121 | CONFIG_HAVE_DMA_API_DEBUG=y |
122 | |||
123 | # | ||
124 | # GCOV-based kernel profiling | ||
125 | # | ||
126 | # CONFIG_GCOV_KERNEL is not set | ||
106 | # CONFIG_SLOW_WORK is not set | 127 | # CONFIG_SLOW_WORK is not set |
107 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | 128 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
108 | CONFIG_SLABINFO=y | 129 | CONFIG_SLABINFO=y |
@@ -115,7 +136,7 @@ CONFIG_MODULE_UNLOAD=y | |||
115 | # CONFIG_MODVERSIONS is not set | 136 | # CONFIG_MODVERSIONS is not set |
116 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 137 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
117 | CONFIG_BLOCK=y | 138 | CONFIG_BLOCK=y |
118 | # CONFIG_LBD is not set | 139 | CONFIG_LBDAF=y |
119 | # CONFIG_BLK_DEV_BSG is not set | 140 | # CONFIG_BLK_DEV_BSG is not set |
120 | # CONFIG_BLK_DEV_INTEGRITY is not set | 141 | # CONFIG_BLK_DEV_INTEGRITY is not set |
121 | 142 | ||
@@ -123,14 +144,41 @@ CONFIG_BLOCK=y | |||
123 | # IO Schedulers | 144 | # IO Schedulers |
124 | # | 145 | # |
125 | CONFIG_IOSCHED_NOOP=y | 146 | CONFIG_IOSCHED_NOOP=y |
126 | CONFIG_IOSCHED_AS=y | ||
127 | CONFIG_IOSCHED_DEADLINE=y | 147 | CONFIG_IOSCHED_DEADLINE=y |
128 | CONFIG_IOSCHED_CFQ=y | 148 | CONFIG_IOSCHED_CFQ=y |
129 | # CONFIG_DEFAULT_AS is not set | ||
130 | # CONFIG_DEFAULT_DEADLINE is not set | 149 | # CONFIG_DEFAULT_DEADLINE is not set |
131 | CONFIG_DEFAULT_CFQ=y | 150 | CONFIG_DEFAULT_CFQ=y |
132 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
133 | CONFIG_DEFAULT_IOSCHED="cfq" | 152 | CONFIG_DEFAULT_IOSCHED="cfq" |
153 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
154 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
163 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
164 | # CONFIG_INLINE_READ_LOCK is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
168 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
169 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
170 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
172 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
178 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
179 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
181 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
134 | # CONFIG_FREEZER is not set | 182 | # CONFIG_FREEZER is not set |
135 | 183 | ||
136 | # | 184 | # |
@@ -178,8 +226,7 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
178 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 226 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
179 | CONFIG_ZONE_DMA_FLAG=0 | 227 | CONFIG_ZONE_DMA_FLAG=0 |
180 | CONFIG_NR_QUICK=2 | 228 | CONFIG_NR_QUICK=2 |
181 | CONFIG_HAVE_MLOCK=y | 229 | # CONFIG_KSM is not set |
182 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
183 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 230 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
184 | 231 | ||
185 | # | 232 | # |
@@ -255,13 +302,13 @@ CONFIG_PREEMPT=y | |||
255 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 302 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
256 | CONFIG_BOOT_LINK_OFFSET=0x00400000 | 303 | CONFIG_BOOT_LINK_OFFSET=0x00400000 |
257 | CONFIG_ENTRY_OFFSET=0x00001000 | 304 | CONFIG_ENTRY_OFFSET=0x00001000 |
258 | # CONFIG_CMDLINE_BOOL is not set | 305 | # CONFIG_CMDLINE_OVERWRITE is not set |
306 | # CONFIG_CMDLINE_EXTEND is not set | ||
259 | 307 | ||
260 | # | 308 | # |
261 | # Bus options | 309 | # Bus options |
262 | # | 310 | # |
263 | CONFIG_PCI=y | 311 | CONFIG_PCI=y |
264 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
265 | # CONFIG_PCIEPORTBUS is not set | 312 | # CONFIG_PCIEPORTBUS is not set |
266 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 313 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
267 | CONFIG_PCI_LEGACY=y | 314 | CONFIG_PCI_LEGACY=y |
@@ -330,6 +377,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
330 | # CONFIG_NETFILTER is not set | 377 | # CONFIG_NETFILTER is not set |
331 | # CONFIG_IP_DCCP is not set | 378 | # CONFIG_IP_DCCP is not set |
332 | # CONFIG_IP_SCTP is not set | 379 | # CONFIG_IP_SCTP is not set |
380 | # CONFIG_RDS is not set | ||
333 | # CONFIG_TIPC is not set | 381 | # CONFIG_TIPC is not set |
334 | # CONFIG_ATM is not set | 382 | # CONFIG_ATM is not set |
335 | # CONFIG_BRIDGE is not set | 383 | # CONFIG_BRIDGE is not set |
@@ -359,14 +407,11 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
359 | # CONFIG_AF_RXRPC is not set | 407 | # CONFIG_AF_RXRPC is not set |
360 | CONFIG_WIRELESS=y | 408 | CONFIG_WIRELESS=y |
361 | # CONFIG_CFG80211 is not set | 409 | # CONFIG_CFG80211 is not set |
362 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
363 | # CONFIG_WIRELESS_EXT is not set | ||
364 | # CONFIG_LIB80211 is not set | 410 | # CONFIG_LIB80211 is not set |
365 | 411 | ||
366 | # | 412 | # |
367 | # CFG80211 needs to be enabled for MAC80211 | 413 | # CFG80211 needs to be enabled for MAC80211 |
368 | # | 414 | # |
369 | CONFIG_MAC80211_DEFAULT_PS_VALUE=0 | ||
370 | # CONFIG_WIMAX is not set | 415 | # CONFIG_WIMAX is not set |
371 | # CONFIG_RFKILL is not set | 416 | # CONFIG_RFKILL is not set |
372 | # CONFIG_NET_9P is not set | 417 | # CONFIG_NET_9P is not set |
@@ -379,6 +424,7 @@ CONFIG_MAC80211_DEFAULT_PS_VALUE=0 | |||
379 | # Generic Driver Options | 424 | # Generic Driver Options |
380 | # | 425 | # |
381 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 426 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
427 | # CONFIG_DEVTMPFS is not set | ||
382 | CONFIG_STANDALONE=y | 428 | CONFIG_STANDALONE=y |
383 | CONFIG_PREVENT_FIRMWARE_BUILD=y | 429 | CONFIG_PREVENT_FIRMWARE_BUILD=y |
384 | # CONFIG_FW_LOADER is not set | 430 | # CONFIG_FW_LOADER is not set |
@@ -395,6 +441,10 @@ CONFIG_BLK_DEV=y | |||
395 | # CONFIG_BLK_DEV_COW_COMMON is not set | 441 | # CONFIG_BLK_DEV_COW_COMMON is not set |
396 | CONFIG_BLK_DEV_LOOP=y | 442 | CONFIG_BLK_DEV_LOOP=y |
397 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 443 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
444 | |||
445 | # | ||
446 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
447 | # | ||
398 | # CONFIG_BLK_DEV_NBD is not set | 448 | # CONFIG_BLK_DEV_NBD is not set |
399 | # CONFIG_BLK_DEV_SX8 is not set | 449 | # CONFIG_BLK_DEV_SX8 is not set |
400 | CONFIG_BLK_DEV_RAM=y | 450 | CONFIG_BLK_DEV_RAM=y |
@@ -405,6 +455,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
405 | # CONFIG_ATA_OVER_ETH is not set | 455 | # CONFIG_ATA_OVER_ETH is not set |
406 | # CONFIG_BLK_DEV_HD is not set | 456 | # CONFIG_BLK_DEV_HD is not set |
407 | CONFIG_MISC_DEVICES=y | 457 | CONFIG_MISC_DEVICES=y |
458 | # CONFIG_AD525X_DPOT is not set | ||
408 | # CONFIG_PHANTOM is not set | 459 | # CONFIG_PHANTOM is not set |
409 | # CONFIG_SGI_IOC4 is not set | 460 | # CONFIG_SGI_IOC4 is not set |
410 | # CONFIG_TIFM_CORE is not set | 461 | # CONFIG_TIFM_CORE is not set |
@@ -412,6 +463,7 @@ CONFIG_MISC_DEVICES=y | |||
412 | # CONFIG_ENCLOSURE_SERVICES is not set | 463 | # CONFIG_ENCLOSURE_SERVICES is not set |
413 | # CONFIG_HP_ILO is not set | 464 | # CONFIG_HP_ILO is not set |
414 | # CONFIG_ISL29003 is not set | 465 | # CONFIG_ISL29003 is not set |
466 | # CONFIG_DS1682 is not set | ||
415 | # CONFIG_C2PORT is not set | 467 | # CONFIG_C2PORT is not set |
416 | 468 | ||
417 | # | 469 | # |
@@ -462,8 +514,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
462 | # CONFIG_ISCSI_TCP is not set | 514 | # CONFIG_ISCSI_TCP is not set |
463 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 515 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
464 | # CONFIG_SCSI_BNX2_ISCSI is not set | 516 | # CONFIG_SCSI_BNX2_ISCSI is not set |
517 | # CONFIG_BE2ISCSI is not set | ||
465 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 518 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
519 | # CONFIG_SCSI_HPSA is not set | ||
466 | # CONFIG_SCSI_3W_9XXX is not set | 520 | # CONFIG_SCSI_3W_9XXX is not set |
521 | # CONFIG_SCSI_3W_SAS is not set | ||
467 | # CONFIG_SCSI_ACARD is not set | 522 | # CONFIG_SCSI_ACARD is not set |
468 | # CONFIG_SCSI_AACRAID is not set | 523 | # CONFIG_SCSI_AACRAID is not set |
469 | # CONFIG_SCSI_AIC7XXX is not set | 524 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -495,7 +550,10 @@ CONFIG_SCSI_LOWLEVEL=y | |||
495 | # CONFIG_SCSI_DC390T is not set | 550 | # CONFIG_SCSI_DC390T is not set |
496 | # CONFIG_SCSI_NSP32 is not set | 551 | # CONFIG_SCSI_NSP32 is not set |
497 | # CONFIG_SCSI_DEBUG is not set | 552 | # CONFIG_SCSI_DEBUG is not set |
553 | # CONFIG_SCSI_PMCRAID is not set | ||
554 | # CONFIG_SCSI_PM8001 is not set | ||
498 | # CONFIG_SCSI_SRP is not set | 555 | # CONFIG_SCSI_SRP is not set |
556 | # CONFIG_SCSI_BFA_FC is not set | ||
499 | # CONFIG_SCSI_DH is not set | 557 | # CONFIG_SCSI_DH is not set |
500 | # CONFIG_SCSI_OSD_INITIATOR is not set | 558 | # CONFIG_SCSI_OSD_INITIATOR is not set |
501 | # CONFIG_ATA is not set | 559 | # CONFIG_ATA is not set |
@@ -507,7 +565,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
507 | # | 565 | # |
508 | 566 | ||
509 | # | 567 | # |
510 | # Enable only one of the two stacks, unless you know what you are doing | 568 | # You can enable one or both FireWire driver stacks. |
569 | # | ||
570 | |||
571 | # | ||
572 | # See the help texts for more information. | ||
511 | # | 573 | # |
512 | # CONFIG_FIREWIRE is not set | 574 | # CONFIG_FIREWIRE is not set |
513 | # CONFIG_IEEE1394 is not set | 575 | # CONFIG_IEEE1394 is not set |
@@ -546,6 +608,7 @@ CONFIG_NET_ETHERNET=y | |||
546 | # CONFIG_NET_PCI is not set | 608 | # CONFIG_NET_PCI is not set |
547 | # CONFIG_B44 is not set | 609 | # CONFIG_B44 is not set |
548 | # CONFIG_KS8842 is not set | 610 | # CONFIG_KS8842 is not set |
611 | # CONFIG_KS8851_MLL is not set | ||
549 | # CONFIG_ATL2 is not set | 612 | # CONFIG_ATL2 is not set |
550 | CONFIG_NETDEV_1000=y | 613 | CONFIG_NETDEV_1000=y |
551 | # CONFIG_ACENIC is not set | 614 | # CONFIG_ACENIC is not set |
@@ -565,6 +628,7 @@ CONFIG_NETDEV_1000=y | |||
565 | # CONFIG_VIA_VELOCITY is not set | 628 | # CONFIG_VIA_VELOCITY is not set |
566 | # CONFIG_TIGON3 is not set | 629 | # CONFIG_TIGON3 is not set |
567 | # CONFIG_BNX2 is not set | 630 | # CONFIG_BNX2 is not set |
631 | # CONFIG_CNIC is not set | ||
568 | # CONFIG_QLA3XXX is not set | 632 | # CONFIG_QLA3XXX is not set |
569 | # CONFIG_ATL1 is not set | 633 | # CONFIG_ATL1 is not set |
570 | # CONFIG_ATL1E is not set | 634 | # CONFIG_ATL1E is not set |
@@ -590,12 +654,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
590 | # CONFIG_SFC is not set | 654 | # CONFIG_SFC is not set |
591 | # CONFIG_BE2NET is not set | 655 | # CONFIG_BE2NET is not set |
592 | # CONFIG_TR is not set | 656 | # CONFIG_TR is not set |
593 | 657 | CONFIG_WLAN=y | |
594 | # | 658 | # CONFIG_ATMEL is not set |
595 | # Wireless LAN | 659 | # CONFIG_PRISM54 is not set |
596 | # | 660 | # CONFIG_HOSTAP is not set |
597 | # CONFIG_WLAN_PRE80211 is not set | ||
598 | # CONFIG_WLAN_80211 is not set | ||
599 | 661 | ||
600 | # | 662 | # |
601 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 663 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -609,6 +671,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
609 | # CONFIG_NETCONSOLE is not set | 671 | # CONFIG_NETCONSOLE is not set |
610 | # CONFIG_NETPOLL is not set | 672 | # CONFIG_NETPOLL is not set |
611 | # CONFIG_NET_POLL_CONTROLLER is not set | 673 | # CONFIG_NET_POLL_CONTROLLER is not set |
674 | # CONFIG_VMXNET3 is not set | ||
612 | # CONFIG_ISDN is not set | 675 | # CONFIG_ISDN is not set |
613 | # CONFIG_PHONE is not set | 676 | # CONFIG_PHONE is not set |
614 | 677 | ||
@@ -618,6 +681,7 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
618 | CONFIG_INPUT=y | 681 | CONFIG_INPUT=y |
619 | # CONFIG_INPUT_FF_MEMLESS is not set | 682 | # CONFIG_INPUT_FF_MEMLESS is not set |
620 | # CONFIG_INPUT_POLLDEV is not set | 683 | # CONFIG_INPUT_POLLDEV is not set |
684 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
621 | 685 | ||
622 | # | 686 | # |
623 | # Userland interfaces | 687 | # Userland interfaces |
@@ -682,6 +746,7 @@ CONFIG_HW_RANDOM=y | |||
682 | CONFIG_DEVPORT=y | 746 | CONFIG_DEVPORT=y |
683 | CONFIG_I2C=m | 747 | CONFIG_I2C=m |
684 | CONFIG_I2C_BOARDINFO=y | 748 | CONFIG_I2C_BOARDINFO=y |
749 | CONFIG_I2C_COMPAT=y | ||
685 | # CONFIG_I2C_CHARDEV is not set | 750 | # CONFIG_I2C_CHARDEV is not set |
686 | CONFIG_I2C_HELPER_AUTO=y | 751 | CONFIG_I2C_HELPER_AUTO=y |
687 | 752 | ||
@@ -710,6 +775,7 @@ CONFIG_I2C_HELPER_AUTO=y | |||
710 | # | 775 | # |
711 | # I2C system bus drivers (mostly embedded / system-on-chip) | 776 | # I2C system bus drivers (mostly embedded / system-on-chip) |
712 | # | 777 | # |
778 | # CONFIG_I2C_DESIGNWARE is not set | ||
713 | # CONFIG_I2C_OCORES is not set | 779 | # CONFIG_I2C_OCORES is not set |
714 | # CONFIG_I2C_SH_MOBILE is not set | 780 | # CONFIG_I2C_SH_MOBILE is not set |
715 | # CONFIG_I2C_SIMTEC is not set | 781 | # CONFIG_I2C_SIMTEC is not set |
@@ -721,11 +787,6 @@ CONFIG_I2C_HELPER_AUTO=y | |||
721 | # CONFIG_I2C_TAOS_EVM is not set | 787 | # CONFIG_I2C_TAOS_EVM is not set |
722 | 788 | ||
723 | # | 789 | # |
724 | # Graphics adapter I2C/DDC channel drivers | ||
725 | # | ||
726 | # CONFIG_I2C_VOODOO3 is not set | ||
727 | |||
728 | # | ||
729 | # Other I2C/SMBus bus drivers | 790 | # Other I2C/SMBus bus drivers |
730 | # | 791 | # |
731 | # CONFIG_I2C_PCA_PLATFORM is not set | 792 | # CONFIG_I2C_PCA_PLATFORM is not set |
@@ -734,20 +795,26 @@ CONFIG_I2C_HELPER_AUTO=y | |||
734 | # | 795 | # |
735 | # Miscellaneous I2C Chip support | 796 | # Miscellaneous I2C Chip support |
736 | # | 797 | # |
737 | # CONFIG_DS1682 is not set | ||
738 | # CONFIG_SENSORS_PCF8574 is not set | ||
739 | # CONFIG_PCF8575 is not set | ||
740 | # CONFIG_SENSORS_PCA9539 is not set | ||
741 | # CONFIG_SENSORS_TSL2550 is not set | 798 | # CONFIG_SENSORS_TSL2550 is not set |
742 | # CONFIG_I2C_DEBUG_CORE is not set | 799 | # CONFIG_I2C_DEBUG_CORE is not set |
743 | # CONFIG_I2C_DEBUG_ALGO is not set | 800 | # CONFIG_I2C_DEBUG_ALGO is not set |
744 | # CONFIG_I2C_DEBUG_BUS is not set | 801 | # CONFIG_I2C_DEBUG_BUS is not set |
745 | # CONFIG_I2C_DEBUG_CHIP is not set | 802 | # CONFIG_I2C_DEBUG_CHIP is not set |
746 | # CONFIG_SPI is not set | 803 | # CONFIG_SPI is not set |
804 | |||
805 | # | ||
806 | # PPS support | ||
807 | # | ||
808 | # CONFIG_PPS is not set | ||
747 | # CONFIG_W1 is not set | 809 | # CONFIG_W1 is not set |
748 | # CONFIG_POWER_SUPPLY is not set | 810 | # CONFIG_POWER_SUPPLY is not set |
749 | CONFIG_HWMON=y | 811 | CONFIG_HWMON=y |
750 | # CONFIG_HWMON_VID is not set | 812 | # CONFIG_HWMON_VID is not set |
813 | # CONFIG_HWMON_DEBUG_CHIP is not set | ||
814 | |||
815 | # | ||
816 | # Native drivers | ||
817 | # | ||
751 | # CONFIG_SENSORS_AD7414 is not set | 818 | # CONFIG_SENSORS_AD7414 is not set |
752 | # CONFIG_SENSORS_AD7418 is not set | 819 | # CONFIG_SENSORS_AD7418 is not set |
753 | # CONFIG_SENSORS_ADM1021 is not set | 820 | # CONFIG_SENSORS_ADM1021 is not set |
@@ -771,6 +838,7 @@ CONFIG_HWMON=y | |||
771 | # CONFIG_SENSORS_GL520SM is not set | 838 | # CONFIG_SENSORS_GL520SM is not set |
772 | # CONFIG_SENSORS_IT87 is not set | 839 | # CONFIG_SENSORS_IT87 is not set |
773 | # CONFIG_SENSORS_LM63 is not set | 840 | # CONFIG_SENSORS_LM63 is not set |
841 | # CONFIG_SENSORS_LM73 is not set | ||
774 | # CONFIG_SENSORS_LM75 is not set | 842 | # CONFIG_SENSORS_LM75 is not set |
775 | # CONFIG_SENSORS_LM77 is not set | 843 | # CONFIG_SENSORS_LM77 is not set |
776 | # CONFIG_SENSORS_LM78 is not set | 844 | # CONFIG_SENSORS_LM78 is not set |
@@ -797,6 +865,7 @@ CONFIG_HWMON=y | |||
797 | # CONFIG_SENSORS_ADS7828 is not set | 865 | # CONFIG_SENSORS_ADS7828 is not set |
798 | # CONFIG_SENSORS_THMC50 is not set | 866 | # CONFIG_SENSORS_THMC50 is not set |
799 | # CONFIG_SENSORS_TMP401 is not set | 867 | # CONFIG_SENSORS_TMP401 is not set |
868 | # CONFIG_SENSORS_TMP421 is not set | ||
800 | # CONFIG_SENSORS_VIA686A is not set | 869 | # CONFIG_SENSORS_VIA686A is not set |
801 | # CONFIG_SENSORS_VT1211 is not set | 870 | # CONFIG_SENSORS_VT1211 is not set |
802 | # CONFIG_SENSORS_VT8231 is not set | 871 | # CONFIG_SENSORS_VT8231 is not set |
@@ -808,9 +877,8 @@ CONFIG_HWMON=y | |||
808 | # CONFIG_SENSORS_W83L786NG is not set | 877 | # CONFIG_SENSORS_W83L786NG is not set |
809 | # CONFIG_SENSORS_W83627HF is not set | 878 | # CONFIG_SENSORS_W83627HF is not set |
810 | # CONFIG_SENSORS_W83627EHF is not set | 879 | # CONFIG_SENSORS_W83627EHF is not set |
811 | # CONFIG_HWMON_DEBUG_CHIP is not set | 880 | # CONFIG_SENSORS_LIS3_I2C is not set |
812 | # CONFIG_THERMAL is not set | 881 | # CONFIG_THERMAL is not set |
813 | # CONFIG_THERMAL_HWMON is not set | ||
814 | CONFIG_WATCHDOG=y | 882 | CONFIG_WATCHDOG=y |
815 | # CONFIG_WATCHDOG_NOWAYOUT is not set | 883 | # CONFIG_WATCHDOG_NOWAYOUT is not set |
816 | 884 | ||
@@ -837,17 +905,20 @@ CONFIG_SSB_POSSIBLE=y | |||
837 | # | 905 | # |
838 | # CONFIG_MFD_CORE is not set | 906 | # CONFIG_MFD_CORE is not set |
839 | # CONFIG_MFD_SM501 is not set | 907 | # CONFIG_MFD_SM501 is not set |
908 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
840 | # CONFIG_HTC_PASIC3 is not set | 909 | # CONFIG_HTC_PASIC3 is not set |
841 | # CONFIG_MFD_TMIO is not set | 910 | # CONFIG_MFD_TMIO is not set |
842 | # CONFIG_MFD_WM8400 is not set | 911 | # CONFIG_MFD_WM8400 is not set |
843 | # CONFIG_MFD_WM8350_I2C is not set | 912 | # CONFIG_MFD_WM8350_I2C is not set |
844 | # CONFIG_MFD_PCF50633 is not set | 913 | # CONFIG_MFD_PCF50633 is not set |
914 | # CONFIG_AB3100_CORE is not set | ||
845 | # CONFIG_REGULATOR is not set | 915 | # CONFIG_REGULATOR is not set |
846 | # CONFIG_MEDIA_SUPPORT is not set | 916 | # CONFIG_MEDIA_SUPPORT is not set |
847 | 917 | ||
848 | # | 918 | # |
849 | # Graphics support | 919 | # Graphics support |
850 | # | 920 | # |
921 | CONFIG_VGA_ARB=y | ||
851 | # CONFIG_DRM is not set | 922 | # CONFIG_DRM is not set |
852 | # CONFIG_VGASTATE is not set | 923 | # CONFIG_VGASTATE is not set |
853 | CONFIG_VIDEO_OUTPUT_CONTROL=y | 924 | CONFIG_VIDEO_OUTPUT_CONTROL=y |
@@ -939,7 +1010,6 @@ CONFIG_LOGO_SUPERH_CLUT224=y | |||
939 | # CONFIG_SOUND is not set | 1010 | # CONFIG_SOUND is not set |
940 | CONFIG_HID_SUPPORT=y | 1011 | CONFIG_HID_SUPPORT=y |
941 | CONFIG_HID=y | 1012 | CONFIG_HID=y |
942 | # CONFIG_HID_DEBUG is not set | ||
943 | # CONFIG_HIDRAW is not set | 1013 | # CONFIG_HIDRAW is not set |
944 | # CONFIG_HID_PID is not set | 1014 | # CONFIG_HID_PID is not set |
945 | 1015 | ||
@@ -1002,8 +1072,10 @@ CONFIG_FS_MBCACHE=y | |||
1002 | # CONFIG_JFS_FS is not set | 1072 | # CONFIG_JFS_FS is not set |
1003 | # CONFIG_FS_POSIX_ACL is not set | 1073 | # CONFIG_FS_POSIX_ACL is not set |
1004 | # CONFIG_XFS_FS is not set | 1074 | # CONFIG_XFS_FS is not set |
1075 | # CONFIG_GFS2_FS is not set | ||
1005 | # CONFIG_OCFS2_FS is not set | 1076 | # CONFIG_OCFS2_FS is not set |
1006 | # CONFIG_BTRFS_FS is not set | 1077 | # CONFIG_BTRFS_FS is not set |
1078 | # CONFIG_NILFS2_FS is not set | ||
1007 | CONFIG_FILE_LOCKING=y | 1079 | CONFIG_FILE_LOCKING=y |
1008 | CONFIG_FSNOTIFY=y | 1080 | CONFIG_FSNOTIFY=y |
1009 | CONFIG_DNOTIFY=y | 1081 | CONFIG_DNOTIFY=y |
@@ -1067,7 +1139,6 @@ CONFIG_ROMFS_BACKED_BY_BLOCK=y | |||
1067 | CONFIG_ROMFS_ON_BLOCK=y | 1139 | CONFIG_ROMFS_ON_BLOCK=y |
1068 | # CONFIG_SYSV_FS is not set | 1140 | # CONFIG_SYSV_FS is not set |
1069 | # CONFIG_UFS_FS is not set | 1141 | # CONFIG_UFS_FS is not set |
1070 | # CONFIG_NILFS2_FS is not set | ||
1071 | CONFIG_NETWORK_FILESYSTEMS=y | 1142 | CONFIG_NETWORK_FILESYSTEMS=y |
1072 | CONFIG_NFS_FS=y | 1143 | CONFIG_NFS_FS=y |
1073 | CONFIG_NFS_V3=y | 1144 | CONFIG_NFS_V3=y |
@@ -1120,6 +1191,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y | |||
1120 | CONFIG_ENABLE_MUST_CHECK=y | 1191 | CONFIG_ENABLE_MUST_CHECK=y |
1121 | CONFIG_FRAME_WARN=1024 | 1192 | CONFIG_FRAME_WARN=1024 |
1122 | CONFIG_MAGIC_SYSRQ=y | 1193 | CONFIG_MAGIC_SYSRQ=y |
1194 | # CONFIG_STRIP_ASM_SYMS is not set | ||
1123 | # CONFIG_UNUSED_SYMBOLS is not set | 1195 | # CONFIG_UNUSED_SYMBOLS is not set |
1124 | CONFIG_DEBUG_FS=y | 1196 | CONFIG_DEBUG_FS=y |
1125 | # CONFIG_HEADERS_CHECK is not set | 1197 | # CONFIG_HEADERS_CHECK is not set |
@@ -1155,21 +1227,25 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
1155 | # CONFIG_DEBUG_LIST is not set | 1227 | # CONFIG_DEBUG_LIST is not set |
1156 | # CONFIG_DEBUG_SG is not set | 1228 | # CONFIG_DEBUG_SG is not set |
1157 | # CONFIG_DEBUG_NOTIFIERS is not set | 1229 | # CONFIG_DEBUG_NOTIFIERS is not set |
1230 | # CONFIG_DEBUG_CREDENTIALS is not set | ||
1158 | CONFIG_FRAME_POINTER=y | 1231 | CONFIG_FRAME_POINTER=y |
1159 | # CONFIG_RCU_TORTURE_TEST is not set | 1232 | # CONFIG_RCU_TORTURE_TEST is not set |
1160 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1233 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1161 | # CONFIG_BACKTRACE_SELF_TEST is not set | 1234 | # CONFIG_BACKTRACE_SELF_TEST is not set |
1162 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set | 1235 | # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set |
1236 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set | ||
1163 | # CONFIG_FAULT_INJECTION is not set | 1237 | # CONFIG_FAULT_INJECTION is not set |
1164 | # CONFIG_LATENCYTOP is not set | 1238 | # CONFIG_LATENCYTOP is not set |
1165 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | 1239 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set |
1166 | # CONFIG_PAGE_POISONING is not set | 1240 | # CONFIG_PAGE_POISONING is not set |
1241 | CONFIG_HAVE_SYSCALL_TRACEPOINTS=y | ||
1167 | CONFIG_TRACING_SUPPORT=y | 1242 | CONFIG_TRACING_SUPPORT=y |
1168 | CONFIG_FTRACE=y | 1243 | CONFIG_FTRACE=y |
1169 | # CONFIG_IRQSOFF_TRACER is not set | 1244 | # CONFIG_IRQSOFF_TRACER is not set |
1170 | # CONFIG_PREEMPT_TRACER is not set | 1245 | # CONFIG_PREEMPT_TRACER is not set |
1171 | # CONFIG_SCHED_TRACER is not set | 1246 | # CONFIG_SCHED_TRACER is not set |
1172 | # CONFIG_ENABLE_DEFAULT_TRACERS is not set | 1247 | # CONFIG_ENABLE_DEFAULT_TRACERS is not set |
1248 | # CONFIG_FTRACE_SYSCALLS is not set | ||
1173 | # CONFIG_BOOT_TRACER is not set | 1249 | # CONFIG_BOOT_TRACER is not set |
1174 | CONFIG_BRANCH_PROFILE_NONE=y | 1250 | CONFIG_BRANCH_PROFILE_NONE=y |
1175 | # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set | 1251 | # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set |
@@ -1180,11 +1256,9 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1180 | # CONFIG_DYNAMIC_DEBUG is not set | 1256 | # CONFIG_DYNAMIC_DEBUG is not set |
1181 | # CONFIG_DMA_API_DEBUG is not set | 1257 | # CONFIG_DMA_API_DEBUG is not set |
1182 | # CONFIG_SAMPLES is not set | 1258 | # CONFIG_SAMPLES is not set |
1183 | # CONFIG_KMEMCHECK is not set | ||
1184 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1185 | # CONFIG_DEBUG_BOOTMEM is not set | ||
1186 | # CONFIG_DEBUG_STACK_USAGE is not set | 1259 | # CONFIG_DEBUG_STACK_USAGE is not set |
1187 | # CONFIG_4KSTACKS is not set | 1260 | # CONFIG_4KSTACKS is not set |
1261 | # CONFIG_DWARF_UNWINDER is not set | ||
1188 | # CONFIG_SH_NO_BSS_INIT is not set | 1262 | # CONFIG_SH_NO_BSS_INIT is not set |
1189 | CONFIG_SH64_SR_WATCH=y | 1263 | CONFIG_SH64_SR_WATCH=y |
1190 | 1264 | ||
@@ -1194,13 +1268,16 @@ CONFIG_SH64_SR_WATCH=y | |||
1194 | # CONFIG_KEYS is not set | 1268 | # CONFIG_KEYS is not set |
1195 | # CONFIG_SECURITY is not set | 1269 | # CONFIG_SECURITY is not set |
1196 | # CONFIG_SECURITYFS is not set | 1270 | # CONFIG_SECURITYFS is not set |
1197 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1271 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1272 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1273 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1274 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1275 | CONFIG_DEFAULT_SECURITY="" | ||
1198 | CONFIG_CRYPTO=y | 1276 | CONFIG_CRYPTO=y |
1199 | 1277 | ||
1200 | # | 1278 | # |
1201 | # Crypto core or helper | 1279 | # Crypto core or helper |
1202 | # | 1280 | # |
1203 | # CONFIG_CRYPTO_FIPS is not set | ||
1204 | # CONFIG_CRYPTO_MANAGER is not set | 1281 | # CONFIG_CRYPTO_MANAGER is not set |
1205 | # CONFIG_CRYPTO_MANAGER2 is not set | 1282 | # CONFIG_CRYPTO_MANAGER2 is not set |
1206 | # CONFIG_CRYPTO_GF128MUL is not set | 1283 | # CONFIG_CRYPTO_GF128MUL is not set |
@@ -1232,11 +1309,13 @@ CONFIG_CRYPTO=y | |||
1232 | # | 1309 | # |
1233 | # CONFIG_CRYPTO_HMAC is not set | 1310 | # CONFIG_CRYPTO_HMAC is not set |
1234 | # CONFIG_CRYPTO_XCBC is not set | 1311 | # CONFIG_CRYPTO_XCBC is not set |
1312 | # CONFIG_CRYPTO_VMAC is not set | ||
1235 | 1313 | ||
1236 | # | 1314 | # |
1237 | # Digest | 1315 | # Digest |
1238 | # | 1316 | # |
1239 | # CONFIG_CRYPTO_CRC32C is not set | 1317 | # CONFIG_CRYPTO_CRC32C is not set |
1318 | # CONFIG_CRYPTO_GHASH is not set | ||
1240 | # CONFIG_CRYPTO_MD4 is not set | 1319 | # CONFIG_CRYPTO_MD4 is not set |
1241 | # CONFIG_CRYPTO_MD5 is not set | 1320 | # CONFIG_CRYPTO_MD5 is not set |
1242 | # CONFIG_CRYPTO_MICHAEL_MIC is not set | 1321 | # CONFIG_CRYPTO_MICHAEL_MIC is not set |
@@ -1299,5 +1378,6 @@ CONFIG_CRC32=y | |||
1299 | CONFIG_HAS_IOMEM=y | 1378 | CONFIG_HAS_IOMEM=y |
1300 | CONFIG_HAS_IOPORT=y | 1379 | CONFIG_HAS_IOPORT=y |
1301 | CONFIG_HAS_DMA=y | 1380 | CONFIG_HAS_DMA=y |
1381 | CONFIG_HAVE_LMB=y | ||
1302 | CONFIG_NLATTR=y | 1382 | CONFIG_NLATTR=y |
1303 | CONFIG_GENERIC_ATOMIC64=y | 1383 | CONFIG_GENERIC_ATOMIC64=y |
diff --git a/arch/sh/configs/dreamcast_defconfig b/arch/sh/configs/dreamcast_defconfig index aedbd4f1304..55f652be954 100644 --- a/arch/sh/configs/dreamcast_defconfig +++ b/arch/sh/configs/dreamcast_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:56:07 2009 | 4 | # Mon Jan 4 11:17:35 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -21,6 +21,7 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
21 | CONFIG_GENERIC_CMOS_UPDATE=y | 21 | CONFIG_GENERIC_CMOS_UPDATE=y |
22 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 22 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
23 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 23 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
24 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
24 | CONFIG_SYS_SUPPORTS_PCI=y | 25 | CONFIG_SYS_SUPPORTS_PCI=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
26 | CONFIG_STACKTRACE_SUPPORT=y | 27 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -63,6 +65,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
63 | # | 65 | # |
64 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 69 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -97,6 +100,7 @@ CONFIG_EVENTFD=y | |||
97 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
98 | CONFIG_AIO=y | 101 | CONFIG_AIO=y |
99 | CONFIG_HAVE_PERF_EVENTS=y | 102 | CONFIG_HAVE_PERF_EVENTS=y |
103 | CONFIG_PERF_USE_VMALLOC=y | ||
100 | 104 | ||
101 | # | 105 | # |
102 | # Kernel Performance Events And Counters | 106 | # Kernel Performance Events And Counters |
@@ -117,6 +121,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
117 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
118 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
120 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
121 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
122 | 127 | ||
@@ -143,14 +148,41 @@ CONFIG_LBDAF=y | |||
143 | # IO Schedulers | 148 | # IO Schedulers |
144 | # | 149 | # |
145 | CONFIG_IOSCHED_NOOP=y | 150 | CONFIG_IOSCHED_NOOP=y |
146 | CONFIG_IOSCHED_AS=y | ||
147 | CONFIG_IOSCHED_DEADLINE=y | 151 | CONFIG_IOSCHED_DEADLINE=y |
148 | CONFIG_IOSCHED_CFQ=y | 152 | CONFIG_IOSCHED_CFQ=y |
149 | CONFIG_DEFAULT_AS=y | ||
150 | # CONFIG_DEFAULT_DEADLINE is not set | 153 | # CONFIG_DEFAULT_DEADLINE is not set |
151 | # CONFIG_DEFAULT_CFQ is not set | 154 | CONFIG_DEFAULT_CFQ=y |
152 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 156 | CONFIG_DEFAULT_IOSCHED="cfq" |
157 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
167 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
172 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
173 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
175 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
176 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
185 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
154 | # CONFIG_FREEZER is not set | 186 | # CONFIG_FREEZER is not set |
155 | 187 | ||
156 | # | 188 | # |
@@ -232,8 +264,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
232 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 264 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
233 | CONFIG_ZONE_DMA_FLAG=0 | 265 | CONFIG_ZONE_DMA_FLAG=0 |
234 | CONFIG_NR_QUICK=2 | 266 | CONFIG_NR_QUICK=2 |
235 | CONFIG_HAVE_MLOCK=y | ||
236 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
237 | # CONFIG_KSM is not set | 267 | # CONFIG_KSM is not set |
238 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 268 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
239 | 269 | ||
@@ -294,9 +324,9 @@ CONFIG_CPU_FREQ_GOV_USERSPACE=y | |||
294 | # | 324 | # |
295 | # DMA support | 325 | # DMA support |
296 | # | 326 | # |
297 | CONFIG_SH_DMA_API=y | ||
298 | CONFIG_SH_DMA=y | 327 | CONFIG_SH_DMA=y |
299 | CONFIG_SH_DMA_IRQ_MULTI=y | 328 | CONFIG_SH_DMA_IRQ_MULTI=y |
329 | CONFIG_SH_DMA_API=y | ||
300 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 | 330 | CONFIG_NR_ONCHIP_DMA_CHANNELS=4 |
301 | CONFIG_NR_DMA_CHANNELS_BOOL=y | 331 | CONFIG_NR_DMA_CHANNELS_BOOL=y |
302 | CONFIG_NR_DMA_CHANNELS=9 | 332 | CONFIG_NR_DMA_CHANNELS=9 |
@@ -338,7 +368,6 @@ CONFIG_GUSA=y | |||
338 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 368 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
339 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 369 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
340 | CONFIG_ENTRY_OFFSET=0x00001000 | 370 | CONFIG_ENTRY_OFFSET=0x00001000 |
341 | # CONFIG_UBC_WAKEUP is not set | ||
342 | CONFIG_CMDLINE_OVERWRITE=y | 371 | CONFIG_CMDLINE_OVERWRITE=y |
343 | # CONFIG_CMDLINE_EXTEND is not set | 372 | # CONFIG_CMDLINE_EXTEND is not set |
344 | CONFIG_CMDLINE="console=ttySC1,115200 panic=3" | 373 | CONFIG_CMDLINE="console=ttySC1,115200 panic=3" |
@@ -348,7 +377,6 @@ CONFIG_CMDLINE="console=ttySC1,115200 panic=3" | |||
348 | # | 377 | # |
349 | CONFIG_MAPLE=y | 378 | CONFIG_MAPLE=y |
350 | CONFIG_PCI=y | 379 | CONFIG_PCI=y |
351 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
352 | # CONFIG_PCIEPORTBUS is not set | 380 | # CONFIG_PCIEPORTBUS is not set |
353 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 381 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
354 | CONFIG_PCI_LEGACY=y | 382 | CONFIG_PCI_LEGACY=y |
@@ -443,9 +471,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
443 | # CONFIG_AF_RXRPC is not set | 471 | # CONFIG_AF_RXRPC is not set |
444 | CONFIG_WIRELESS=y | 472 | CONFIG_WIRELESS=y |
445 | # CONFIG_CFG80211 is not set | 473 | # CONFIG_CFG80211 is not set |
446 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
447 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
448 | # CONFIG_WIRELESS_EXT is not set | ||
449 | # CONFIG_LIB80211 is not set | 474 | # CONFIG_LIB80211 is not set |
450 | 475 | ||
451 | # | 476 | # |
@@ -478,6 +503,10 @@ CONFIG_GDROM=y | |||
478 | # CONFIG_BLK_DEV_UMEM is not set | 503 | # CONFIG_BLK_DEV_UMEM is not set |
479 | # CONFIG_BLK_DEV_COW_COMMON is not set | 504 | # CONFIG_BLK_DEV_COW_COMMON is not set |
480 | # CONFIG_BLK_DEV_LOOP is not set | 505 | # CONFIG_BLK_DEV_LOOP is not set |
506 | |||
507 | # | ||
508 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
509 | # | ||
481 | # CONFIG_BLK_DEV_NBD is not set | 510 | # CONFIG_BLK_DEV_NBD is not set |
482 | # CONFIG_BLK_DEV_SX8 is not set | 511 | # CONFIG_BLK_DEV_SX8 is not set |
483 | # CONFIG_BLK_DEV_RAM is not set | 512 | # CONFIG_BLK_DEV_RAM is not set |
@@ -579,6 +608,7 @@ CONFIG_8139TOO=y | |||
579 | # CONFIG_SUNDANCE is not set | 608 | # CONFIG_SUNDANCE is not set |
580 | # CONFIG_TLAN is not set | 609 | # CONFIG_TLAN is not set |
581 | # CONFIG_KS8842 is not set | 610 | # CONFIG_KS8842 is not set |
611 | # CONFIG_KS8851_MLL is not set | ||
582 | # CONFIG_VIA_RHINE is not set | 612 | # CONFIG_VIA_RHINE is not set |
583 | # CONFIG_SC92031 is not set | 613 | # CONFIG_SC92031 is not set |
584 | # CONFIG_ATL2 is not set | 614 | # CONFIG_ATL2 is not set |
@@ -586,8 +616,9 @@ CONFIG_8139TOO=y | |||
586 | # CONFIG_NETDEV_10000 is not set | 616 | # CONFIG_NETDEV_10000 is not set |
587 | # CONFIG_TR is not set | 617 | # CONFIG_TR is not set |
588 | CONFIG_WLAN=y | 618 | CONFIG_WLAN=y |
589 | # CONFIG_WLAN_PRE80211 is not set | 619 | # CONFIG_ATMEL is not set |
590 | # CONFIG_WLAN_80211 is not set | 620 | # CONFIG_PRISM54 is not set |
621 | # CONFIG_HOSTAP is not set | ||
591 | 622 | ||
592 | # | 623 | # |
593 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 624 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -600,6 +631,7 @@ CONFIG_WLAN=y | |||
600 | # CONFIG_NETCONSOLE is not set | 631 | # CONFIG_NETCONSOLE is not set |
601 | # CONFIG_NETPOLL is not set | 632 | # CONFIG_NETPOLL is not set |
602 | # CONFIG_NET_POLL_CONTROLLER is not set | 633 | # CONFIG_NET_POLL_CONTROLLER is not set |
634 | # CONFIG_VMXNET3 is not set | ||
603 | # CONFIG_ISDN is not set | 635 | # CONFIG_ISDN is not set |
604 | # CONFIG_PHONE is not set | 636 | # CONFIG_PHONE is not set |
605 | 637 | ||
@@ -609,6 +641,7 @@ CONFIG_WLAN=y | |||
609 | CONFIG_INPUT=y | 641 | CONFIG_INPUT=y |
610 | # CONFIG_INPUT_FF_MEMLESS is not set | 642 | # CONFIG_INPUT_FF_MEMLESS is not set |
611 | # CONFIG_INPUT_POLLDEV is not set | 643 | # CONFIG_INPUT_POLLDEV is not set |
644 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
612 | 645 | ||
613 | # | 646 | # |
614 | # Userland interfaces | 647 | # Userland interfaces |
@@ -655,6 +688,7 @@ CONFIG_SERIO=y | |||
655 | # CONFIG_SERIO_PCIPS2 is not set | 688 | # CONFIG_SERIO_PCIPS2 is not set |
656 | CONFIG_SERIO_LIBPS2=y | 689 | CONFIG_SERIO_LIBPS2=y |
657 | # CONFIG_SERIO_RAW is not set | 690 | # CONFIG_SERIO_RAW is not set |
691 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
658 | # CONFIG_GAMEPORT is not set | 692 | # CONFIG_GAMEPORT is not set |
659 | 693 | ||
660 | # | 694 | # |
@@ -734,6 +768,7 @@ CONFIG_SSB_POSSIBLE=y | |||
734 | # | 768 | # |
735 | # CONFIG_MFD_CORE is not set | 769 | # CONFIG_MFD_CORE is not set |
736 | # CONFIG_MFD_SM501 is not set | 770 | # CONFIG_MFD_SM501 is not set |
771 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
737 | # CONFIG_HTC_PASIC3 is not set | 772 | # CONFIG_HTC_PASIC3 is not set |
738 | # CONFIG_MFD_TMIO is not set | 773 | # CONFIG_MFD_TMIO is not set |
739 | # CONFIG_REGULATOR is not set | 774 | # CONFIG_REGULATOR is not set |
@@ -883,6 +918,7 @@ CONFIG_RTC_LIB=y | |||
883 | # CONFIG_EXT2_FS is not set | 918 | # CONFIG_EXT2_FS is not set |
884 | # CONFIG_EXT3_FS is not set | 919 | # CONFIG_EXT3_FS is not set |
885 | # CONFIG_EXT4_FS is not set | 920 | # CONFIG_EXT4_FS is not set |
921 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
886 | # CONFIG_REISERFS_FS is not set | 922 | # CONFIG_REISERFS_FS is not set |
887 | # CONFIG_JFS_FS is not set | 923 | # CONFIG_JFS_FS is not set |
888 | # CONFIG_FS_POSIX_ACL is not set | 924 | # CONFIG_FS_POSIX_ACL is not set |
@@ -981,10 +1017,11 @@ CONFIG_FRAME_WARN=1024 | |||
981 | # CONFIG_DEBUG_FS is not set | 1017 | # CONFIG_DEBUG_FS is not set |
982 | # CONFIG_HEADERS_CHECK is not set | 1018 | # CONFIG_HEADERS_CHECK is not set |
983 | # CONFIG_DEBUG_KERNEL is not set | 1019 | # CONFIG_DEBUG_KERNEL is not set |
984 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1020 | CONFIG_DEBUG_BUGVERBOSE=y |
985 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1021 | # CONFIG_DEBUG_MEMORY_INIT is not set |
986 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1022 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
987 | # CONFIG_LATENCYTOP is not set | 1023 | # CONFIG_LATENCYTOP is not set |
1024 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
988 | CONFIG_HAVE_FUNCTION_TRACER=y | 1025 | CONFIG_HAVE_FUNCTION_TRACER=y |
989 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1026 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
990 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 1027 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -997,7 +1034,6 @@ CONFIG_TRACING_SUPPORT=y | |||
997 | # CONFIG_SAMPLES is not set | 1034 | # CONFIG_SAMPLES is not set |
998 | CONFIG_HAVE_ARCH_KGDB=y | 1035 | CONFIG_HAVE_ARCH_KGDB=y |
999 | # CONFIG_SH_STANDARD_BIOS is not set | 1036 | # CONFIG_SH_STANDARD_BIOS is not set |
1000 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1001 | # CONFIG_DWARF_UNWINDER is not set | 1037 | # CONFIG_DWARF_UNWINDER is not set |
1002 | 1038 | ||
1003 | # | 1039 | # |
@@ -1006,7 +1042,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1006 | # CONFIG_KEYS is not set | 1042 | # CONFIG_KEYS is not set |
1007 | # CONFIG_SECURITY is not set | 1043 | # CONFIG_SECURITY is not set |
1008 | # CONFIG_SECURITYFS is not set | 1044 | # CONFIG_SECURITYFS is not set |
1009 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1045 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1046 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1047 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1048 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1049 | CONFIG_DEFAULT_SECURITY="" | ||
1010 | CONFIG_CRYPTO=y | 1050 | CONFIG_CRYPTO=y |
1011 | 1051 | ||
1012 | # | 1052 | # |
diff --git a/arch/sh/configs/ecovec24-romimage_defconfig b/arch/sh/configs/ecovec24-romimage_defconfig index 46874704e4e..662c1ad2049 100644 --- a/arch/sh/configs/ecovec24-romimage_defconfig +++ b/arch/sh/configs/ecovec24-romimage_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:56:41 2009 | 4 | # Mon Jan 4 11:18:17 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -61,6 +63,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
61 | # | 63 | # |
62 | CONFIG_TREE_RCU=y | 64 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
66 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 67 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 68 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 69 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,6 +106,7 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -120,6 +124,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
120 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
121 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
127 | CONFIG_HAVE_DMA_ATTRS=y | ||
123 | CONFIG_HAVE_CLK=y | 128 | CONFIG_HAVE_CLK=y |
124 | CONFIG_HAVE_DMA_API_DEBUG=y | 129 | CONFIG_HAVE_DMA_API_DEBUG=y |
125 | 130 | ||
@@ -142,14 +147,41 @@ CONFIG_BLOCK=y | |||
142 | # IO Schedulers | 147 | # IO Schedulers |
143 | # | 148 | # |
144 | CONFIG_IOSCHED_NOOP=y | 149 | CONFIG_IOSCHED_NOOP=y |
145 | CONFIG_IOSCHED_AS=y | ||
146 | CONFIG_IOSCHED_DEADLINE=y | 150 | CONFIG_IOSCHED_DEADLINE=y |
147 | CONFIG_IOSCHED_CFQ=y | 151 | CONFIG_IOSCHED_CFQ=y |
148 | # CONFIG_DEFAULT_AS is not set | ||
149 | # CONFIG_DEFAULT_DEADLINE is not set | 152 | # CONFIG_DEFAULT_DEADLINE is not set |
150 | CONFIG_DEFAULT_CFQ=y | 153 | CONFIG_DEFAULT_CFQ=y |
151 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="cfq" | 155 | CONFIG_DEFAULT_IOSCHED="cfq" |
156 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
162 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
164 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
166 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
171 | CONFIG_INLINE_READ_UNLOCK=y | ||
172 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
173 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
175 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
180 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
182 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
184 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
153 | # CONFIG_FREEZER is not set | 185 | # CONFIG_FREEZER is not set |
154 | 186 | ||
155 | # | 187 | # |
@@ -205,6 +237,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
205 | CONFIG_MEMORY_START=0x08000000 | 237 | CONFIG_MEMORY_START=0x08000000 |
206 | CONFIG_MEMORY_SIZE=0x10000000 | 238 | CONFIG_MEMORY_SIZE=0x10000000 |
207 | CONFIG_29BIT=y | 239 | CONFIG_29BIT=y |
240 | # CONFIG_PMB_ENABLE is not set | ||
208 | # CONFIG_X2TLB is not set | 241 | # CONFIG_X2TLB is not set |
209 | CONFIG_VSYSCALL=y | 242 | CONFIG_VSYSCALL=y |
210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 243 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -229,8 +262,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 262 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=0 | 263 | CONFIG_ZONE_DMA_FLAG=0 |
231 | CONFIG_NR_QUICK=2 | 264 | CONFIG_NR_QUICK=2 |
232 | CONFIG_HAVE_MLOCK=y | ||
233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
234 | # CONFIG_KSM is not set | 265 | # CONFIG_KSM is not set |
235 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 266 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
236 | 267 | ||
@@ -264,7 +295,6 @@ CONFIG_SH_ECOVEC=y | |||
264 | # | 295 | # |
265 | # CONFIG_SH_TIMER_TMU is not set | 296 | # CONFIG_SH_TIMER_TMU is not set |
266 | CONFIG_SH_TIMER_CMT=y | 297 | CONFIG_SH_TIMER_CMT=y |
267 | CONFIG_SH_PCLK_FREQ=33333333 | ||
268 | CONFIG_SH_CLK_CPG=y | 298 | CONFIG_SH_CLK_CPG=y |
269 | # CONFIG_NO_HZ is not set | 299 | # CONFIG_NO_HZ is not set |
270 | # CONFIG_HIGH_RES_TIMERS is not set | 300 | # CONFIG_HIGH_RES_TIMERS is not set |
@@ -406,7 +436,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
406 | # CONFIG_IRDA is not set | 436 | # CONFIG_IRDA is not set |
407 | # CONFIG_BT is not set | 437 | # CONFIG_BT is not set |
408 | # CONFIG_AF_RXRPC is not set | 438 | # CONFIG_AF_RXRPC is not set |
409 | # CONFIG_WIRELESS is not set | 439 | CONFIG_WIRELESS=y |
440 | # CONFIG_CFG80211 is not set | ||
441 | # CONFIG_LIB80211 is not set | ||
442 | |||
443 | # | ||
444 | # CFG80211 needs to be enabled for MAC80211 | ||
445 | # | ||
410 | # CONFIG_WIMAX is not set | 446 | # CONFIG_WIMAX is not set |
411 | # CONFIG_RFKILL is not set | 447 | # CONFIG_RFKILL is not set |
412 | # CONFIG_NET_9P is not set | 448 | # CONFIG_NET_9P is not set |
@@ -432,6 +468,10 @@ CONFIG_EXTRA_FIRMWARE="" | |||
432 | CONFIG_BLK_DEV=y | 468 | CONFIG_BLK_DEV=y |
433 | # CONFIG_BLK_DEV_COW_COMMON is not set | 469 | # CONFIG_BLK_DEV_COW_COMMON is not set |
434 | # CONFIG_BLK_DEV_LOOP is not set | 470 | # CONFIG_BLK_DEV_LOOP is not set |
471 | |||
472 | # | ||
473 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
474 | # | ||
435 | # CONFIG_BLK_DEV_NBD is not set | 475 | # CONFIG_BLK_DEV_NBD is not set |
436 | # CONFIG_BLK_DEV_UB is not set | 476 | # CONFIG_BLK_DEV_UB is not set |
437 | # CONFIG_BLK_DEV_RAM is not set | 477 | # CONFIG_BLK_DEV_RAM is not set |
@@ -526,11 +566,12 @@ CONFIG_SH_ETH=y | |||
526 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 566 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
527 | # CONFIG_B44 is not set | 567 | # CONFIG_B44 is not set |
528 | # CONFIG_KS8842 is not set | 568 | # CONFIG_KS8842 is not set |
569 | # CONFIG_KS8851_MLL is not set | ||
529 | # CONFIG_NETDEV_1000 is not set | 570 | # CONFIG_NETDEV_1000 is not set |
530 | # CONFIG_NETDEV_10000 is not set | 571 | # CONFIG_NETDEV_10000 is not set |
531 | CONFIG_WLAN=y | 572 | CONFIG_WLAN=y |
532 | # CONFIG_WLAN_PRE80211 is not set | 573 | # CONFIG_USB_ZD1201 is not set |
533 | # CONFIG_WLAN_80211 is not set | 574 | # CONFIG_HOSTAP is not set |
534 | 575 | ||
535 | # | 576 | # |
536 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 577 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -559,6 +600,7 @@ CONFIG_WLAN=y | |||
559 | CONFIG_INPUT=y | 600 | CONFIG_INPUT=y |
560 | # CONFIG_INPUT_FF_MEMLESS is not set | 601 | # CONFIG_INPUT_FF_MEMLESS is not set |
561 | # CONFIG_INPUT_POLLDEV is not set | 602 | # CONFIG_INPUT_POLLDEV is not set |
603 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
562 | 604 | ||
563 | # | 605 | # |
564 | # Userland interfaces | 606 | # Userland interfaces |
@@ -652,7 +694,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
652 | # | 694 | # |
653 | # Miscellaneous I2C Chip support | 695 | # Miscellaneous I2C Chip support |
654 | # | 696 | # |
655 | # CONFIG_DS1682 is not set | ||
656 | # CONFIG_SENSORS_TSL2550 is not set | 697 | # CONFIG_SENSORS_TSL2550 is not set |
657 | # CONFIG_I2C_DEBUG_CORE is not set | 698 | # CONFIG_I2C_DEBUG_CORE is not set |
658 | # CONFIG_I2C_DEBUG_ALGO is not set | 699 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -707,16 +748,19 @@ CONFIG_SSB_POSSIBLE=y | |||
707 | # | 748 | # |
708 | # CONFIG_MFD_CORE is not set | 749 | # CONFIG_MFD_CORE is not set |
709 | # CONFIG_MFD_SM501 is not set | 750 | # CONFIG_MFD_SM501 is not set |
751 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
710 | # CONFIG_HTC_PASIC3 is not set | 752 | # CONFIG_HTC_PASIC3 is not set |
711 | # CONFIG_TPS65010 is not set | 753 | # CONFIG_TPS65010 is not set |
712 | # CONFIG_TWL4030_CORE is not set | 754 | # CONFIG_TWL4030_CORE is not set |
713 | # CONFIG_MFD_TMIO is not set | 755 | # CONFIG_MFD_TMIO is not set |
714 | # CONFIG_PMIC_DA903X is not set | 756 | # CONFIG_PMIC_DA903X is not set |
757 | # CONFIG_PMIC_ADP5520 is not set | ||
715 | # CONFIG_MFD_WM8400 is not set | 758 | # CONFIG_MFD_WM8400 is not set |
716 | # CONFIG_MFD_WM831X is not set | 759 | # CONFIG_MFD_WM831X is not set |
717 | # CONFIG_MFD_WM8350_I2C is not set | 760 | # CONFIG_MFD_WM8350_I2C is not set |
718 | # CONFIG_MFD_PCF50633 is not set | 761 | # CONFIG_MFD_PCF50633 is not set |
719 | # CONFIG_AB3100_CORE is not set | 762 | # CONFIG_AB3100_CORE is not set |
763 | # CONFIG_MFD_88PM8607 is not set | ||
720 | # CONFIG_REGULATOR is not set | 764 | # CONFIG_REGULATOR is not set |
721 | # CONFIG_MEDIA_SUPPORT is not set | 765 | # CONFIG_MEDIA_SUPPORT is not set |
722 | 766 | ||
@@ -867,6 +911,7 @@ CONFIG_EXT2_FS=y | |||
867 | # CONFIG_EXT2_FS_XIP is not set | 911 | # CONFIG_EXT2_FS_XIP is not set |
868 | # CONFIG_EXT3_FS is not set | 912 | # CONFIG_EXT3_FS is not set |
869 | # CONFIG_EXT4_FS is not set | 913 | # CONFIG_EXT4_FS is not set |
914 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
870 | # CONFIG_REISERFS_FS is not set | 915 | # CONFIG_REISERFS_FS is not set |
871 | # CONFIG_JFS_FS is not set | 916 | # CONFIG_JFS_FS is not set |
872 | # CONFIG_FS_POSIX_ACL is not set | 917 | # CONFIG_FS_POSIX_ACL is not set |
@@ -979,7 +1024,7 @@ CONFIG_FRAME_WARN=1024 | |||
979 | CONFIG_DEBUG_FS=y | 1024 | CONFIG_DEBUG_FS=y |
980 | # CONFIG_HEADERS_CHECK is not set | 1025 | # CONFIG_HEADERS_CHECK is not set |
981 | # CONFIG_DEBUG_KERNEL is not set | 1026 | # CONFIG_DEBUG_KERNEL is not set |
982 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1027 | CONFIG_DEBUG_BUGVERBOSE=y |
983 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1028 | # CONFIG_DEBUG_MEMORY_INIT is not set |
984 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1029 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
985 | # CONFIG_LATENCYTOP is not set | 1030 | # CONFIG_LATENCYTOP is not set |
@@ -997,7 +1042,6 @@ CONFIG_TRACING_SUPPORT=y | |||
997 | # CONFIG_SAMPLES is not set | 1042 | # CONFIG_SAMPLES is not set |
998 | CONFIG_HAVE_ARCH_KGDB=y | 1043 | CONFIG_HAVE_ARCH_KGDB=y |
999 | # CONFIG_SH_STANDARD_BIOS is not set | 1044 | # CONFIG_SH_STANDARD_BIOS is not set |
1000 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1001 | # CONFIG_DWARF_UNWINDER is not set | 1045 | # CONFIG_DWARF_UNWINDER is not set |
1002 | 1046 | ||
1003 | # | 1047 | # |
@@ -1006,7 +1050,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1006 | # CONFIG_KEYS is not set | 1050 | # CONFIG_KEYS is not set |
1007 | # CONFIG_SECURITY is not set | 1051 | # CONFIG_SECURITY is not set |
1008 | # CONFIG_SECURITYFS is not set | 1052 | # CONFIG_SECURITYFS is not set |
1009 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1053 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1054 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1055 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1056 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1057 | CONFIG_DEFAULT_SECURITY="" | ||
1010 | # CONFIG_CRYPTO is not set | 1058 | # CONFIG_CRYPTO is not set |
1011 | # CONFIG_BINARY_PRINTF is not set | 1059 | # CONFIG_BINARY_PRINTF is not set |
1012 | 1060 | ||
diff --git a/arch/sh/configs/ecovec24_defconfig b/arch/sh/configs/ecovec24_defconfig index cad918437ca..18e3356406f 100644 --- a/arch/sh/configs/ecovec24_defconfig +++ b/arch/sh/configs/ecovec24_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:45:39 2009 | 4 | # Mon Jan 4 11:20:36 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -62,6 +64,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
62 | # | 64 | # |
63 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
64 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
65 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
66 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
67 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -99,6 +102,7 @@ CONFIG_EVENTFD=y | |||
99 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
100 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | 104 | CONFIG_HAVE_PERF_EVENTS=y |
105 | CONFIG_PERF_USE_VMALLOC=y | ||
102 | 106 | ||
103 | # | 107 | # |
104 | # Kernel Performance Events And Counters | 108 | # Kernel Performance Events And Counters |
@@ -116,6 +120,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
116 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
117 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
123 | CONFIG_HAVE_DMA_ATTRS=y | ||
119 | CONFIG_HAVE_CLK=y | 124 | CONFIG_HAVE_CLK=y |
120 | CONFIG_HAVE_DMA_API_DEBUG=y | 125 | CONFIG_HAVE_DMA_API_DEBUG=y |
121 | 126 | ||
@@ -143,14 +148,41 @@ CONFIG_LBDAF=y | |||
143 | # IO Schedulers | 148 | # IO Schedulers |
144 | # | 149 | # |
145 | CONFIG_IOSCHED_NOOP=y | 150 | CONFIG_IOSCHED_NOOP=y |
146 | CONFIG_IOSCHED_AS=y | ||
147 | CONFIG_IOSCHED_DEADLINE=y | 151 | CONFIG_IOSCHED_DEADLINE=y |
148 | CONFIG_IOSCHED_CFQ=y | 152 | CONFIG_IOSCHED_CFQ=y |
149 | # CONFIG_DEFAULT_AS is not set | ||
150 | # CONFIG_DEFAULT_DEADLINE is not set | 153 | # CONFIG_DEFAULT_DEADLINE is not set |
151 | CONFIG_DEFAULT_CFQ=y | 154 | CONFIG_DEFAULT_CFQ=y |
152 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="cfq" | 156 | CONFIG_DEFAULT_IOSCHED="cfq" |
157 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
167 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
172 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
173 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
175 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
176 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
185 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
154 | CONFIG_FREEZER=y | 186 | CONFIG_FREEZER=y |
155 | 187 | ||
156 | # | 188 | # |
@@ -206,6 +238,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
206 | CONFIG_MEMORY_START=0x08000000 | 238 | CONFIG_MEMORY_START=0x08000000 |
207 | CONFIG_MEMORY_SIZE=0x10000000 | 239 | CONFIG_MEMORY_SIZE=0x10000000 |
208 | CONFIG_29BIT=y | 240 | CONFIG_29BIT=y |
241 | # CONFIG_PMB_ENABLE is not set | ||
209 | # CONFIG_X2TLB is not set | 242 | # CONFIG_X2TLB is not set |
210 | CONFIG_VSYSCALL=y | 243 | CONFIG_VSYSCALL=y |
211 | CONFIG_ARCH_FLATMEM_ENABLE=y | 244 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -230,8 +263,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 263 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=0 | 264 | CONFIG_ZONE_DMA_FLAG=0 |
232 | CONFIG_NR_QUICK=2 | 265 | CONFIG_NR_QUICK=2 |
233 | CONFIG_HAVE_MLOCK=y | ||
234 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
235 | # CONFIG_KSM is not set | 266 | # CONFIG_KSM is not set |
236 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 267 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
237 | 268 | ||
@@ -265,7 +296,6 @@ CONFIG_SH_ECOVEC=y | |||
265 | # | 296 | # |
266 | CONFIG_SH_TIMER_TMU=y | 297 | CONFIG_SH_TIMER_TMU=y |
267 | # CONFIG_SH_TIMER_CMT is not set | 298 | # CONFIG_SH_TIMER_CMT is not set |
268 | CONFIG_SH_PCLK_FREQ=33333333 | ||
269 | CONFIG_SH_CLK_CPG=y | 299 | CONFIG_SH_CLK_CPG=y |
270 | # CONFIG_NO_HZ is not set | 300 | # CONFIG_NO_HZ is not set |
271 | # CONFIG_HIGH_RES_TIMERS is not set | 301 | # CONFIG_HIGH_RES_TIMERS is not set |
@@ -420,9 +450,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
420 | # CONFIG_AF_RXRPC is not set | 450 | # CONFIG_AF_RXRPC is not set |
421 | CONFIG_WIRELESS=y | 451 | CONFIG_WIRELESS=y |
422 | # CONFIG_CFG80211 is not set | 452 | # CONFIG_CFG80211 is not set |
423 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
424 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
425 | # CONFIG_WIRELESS_EXT is not set | ||
426 | # CONFIG_LIB80211 is not set | 453 | # CONFIG_LIB80211 is not set |
427 | 454 | ||
428 | # | 455 | # |
@@ -552,6 +579,10 @@ CONFIG_MTD_UBI_BEB_RESERVE=1 | |||
552 | CONFIG_BLK_DEV=y | 579 | CONFIG_BLK_DEV=y |
553 | # CONFIG_BLK_DEV_COW_COMMON is not set | 580 | # CONFIG_BLK_DEV_COW_COMMON is not set |
554 | # CONFIG_BLK_DEV_LOOP is not set | 581 | # CONFIG_BLK_DEV_LOOP is not set |
582 | |||
583 | # | ||
584 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
585 | # | ||
555 | # CONFIG_BLK_DEV_NBD is not set | 586 | # CONFIG_BLK_DEV_NBD is not set |
556 | # CONFIG_BLK_DEV_UB is not set | 587 | # CONFIG_BLK_DEV_UB is not set |
557 | CONFIG_BLK_DEV_RAM=y | 588 | CONFIG_BLK_DEV_RAM=y |
@@ -562,9 +593,12 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
562 | # CONFIG_ATA_OVER_ETH is not set | 593 | # CONFIG_ATA_OVER_ETH is not set |
563 | # CONFIG_BLK_DEV_HD is not set | 594 | # CONFIG_BLK_DEV_HD is not set |
564 | CONFIG_MISC_DEVICES=y | 595 | CONFIG_MISC_DEVICES=y |
596 | # CONFIG_AD525X_DPOT is not set | ||
565 | # CONFIG_ICS932S401 is not set | 597 | # CONFIG_ICS932S401 is not set |
566 | # CONFIG_ENCLOSURE_SERVICES is not set | 598 | # CONFIG_ENCLOSURE_SERVICES is not set |
567 | # CONFIG_ISL29003 is not set | 599 | # CONFIG_ISL29003 is not set |
600 | # CONFIG_DS1682 is not set | ||
601 | # CONFIG_TI_DAC7512 is not set | ||
568 | # CONFIG_C2PORT is not set | 602 | # CONFIG_C2PORT is not set |
569 | 603 | ||
570 | # | 604 | # |
@@ -575,6 +609,7 @@ CONFIG_MISC_DEVICES=y | |||
575 | # CONFIG_EEPROM_LEGACY is not set | 609 | # CONFIG_EEPROM_LEGACY is not set |
576 | # CONFIG_EEPROM_MAX6875 is not set | 610 | # CONFIG_EEPROM_MAX6875 is not set |
577 | # CONFIG_EEPROM_93CX6 is not set | 611 | # CONFIG_EEPROM_93CX6 is not set |
612 | # CONFIG_IWMC3200TOP is not set | ||
578 | CONFIG_HAVE_IDE=y | 613 | CONFIG_HAVE_IDE=y |
579 | # CONFIG_IDE is not set | 614 | # CONFIG_IDE is not set |
580 | 615 | ||
@@ -669,11 +704,12 @@ CONFIG_SH_ETH=y | |||
669 | # CONFIG_B44 is not set | 704 | # CONFIG_B44 is not set |
670 | # CONFIG_KS8842 is not set | 705 | # CONFIG_KS8842 is not set |
671 | # CONFIG_KS8851 is not set | 706 | # CONFIG_KS8851 is not set |
707 | # CONFIG_KS8851_MLL is not set | ||
672 | # CONFIG_NETDEV_1000 is not set | 708 | # CONFIG_NETDEV_1000 is not set |
673 | # CONFIG_NETDEV_10000 is not set | 709 | # CONFIG_NETDEV_10000 is not set |
674 | CONFIG_WLAN=y | 710 | CONFIG_WLAN=y |
675 | # CONFIG_WLAN_PRE80211 is not set | 711 | # CONFIG_USB_ZD1201 is not set |
676 | # CONFIG_WLAN_80211 is not set | 712 | # CONFIG_HOSTAP is not set |
677 | 713 | ||
678 | # | 714 | # |
679 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 715 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -702,6 +738,7 @@ CONFIG_WLAN=y | |||
702 | CONFIG_INPUT=y | 738 | CONFIG_INPUT=y |
703 | # CONFIG_INPUT_FF_MEMLESS is not set | 739 | # CONFIG_INPUT_FF_MEMLESS is not set |
704 | # CONFIG_INPUT_POLLDEV is not set | 740 | # CONFIG_INPUT_POLLDEV is not set |
741 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
705 | 742 | ||
706 | # | 743 | # |
707 | # Userland interfaces | 744 | # Userland interfaces |
@@ -810,7 +847,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
810 | # | 847 | # |
811 | # Miscellaneous I2C Chip support | 848 | # Miscellaneous I2C Chip support |
812 | # | 849 | # |
813 | # CONFIG_DS1682 is not set | ||
814 | # CONFIG_SENSORS_TSL2550 is not set | 850 | # CONFIG_SENSORS_TSL2550 is not set |
815 | # CONFIG_I2C_DEBUG_CORE is not set | 851 | # CONFIG_I2C_DEBUG_CORE is not set |
816 | # CONFIG_I2C_DEBUG_ALGO is not set | 852 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -824,7 +860,10 @@ CONFIG_SPI_MASTER=y | |||
824 | # | 860 | # |
825 | CONFIG_SPI_BITBANG=y | 861 | CONFIG_SPI_BITBANG=y |
826 | # CONFIG_SPI_GPIO is not set | 862 | # CONFIG_SPI_GPIO is not set |
863 | # CONFIG_SPI_SH_MSIOF is not set | ||
827 | # CONFIG_SPI_SH_SCI is not set | 864 | # CONFIG_SPI_SH_SCI is not set |
865 | # CONFIG_SPI_XILINX is not set | ||
866 | # CONFIG_SPI_DESIGNWARE is not set | ||
828 | 867 | ||
829 | # | 868 | # |
830 | # SPI Protocol Masters | 869 | # SPI Protocol Masters |
@@ -882,11 +921,13 @@ CONFIG_SSB_POSSIBLE=y | |||
882 | # | 921 | # |
883 | # CONFIG_MFD_CORE is not set | 922 | # CONFIG_MFD_CORE is not set |
884 | # CONFIG_MFD_SM501 is not set | 923 | # CONFIG_MFD_SM501 is not set |
924 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
885 | # CONFIG_HTC_PASIC3 is not set | 925 | # CONFIG_HTC_PASIC3 is not set |
886 | # CONFIG_TPS65010 is not set | 926 | # CONFIG_TPS65010 is not set |
887 | # CONFIG_TWL4030_CORE is not set | 927 | # CONFIG_TWL4030_CORE is not set |
888 | # CONFIG_MFD_TMIO is not set | 928 | # CONFIG_MFD_TMIO is not set |
889 | # CONFIG_PMIC_DA903X is not set | 929 | # CONFIG_PMIC_DA903X is not set |
930 | # CONFIG_PMIC_ADP5520 is not set | ||
890 | # CONFIG_MFD_WM8400 is not set | 931 | # CONFIG_MFD_WM8400 is not set |
891 | # CONFIG_MFD_WM831X is not set | 932 | # CONFIG_MFD_WM831X is not set |
892 | # CONFIG_MFD_WM8350_I2C is not set | 933 | # CONFIG_MFD_WM8350_I2C is not set |
@@ -894,6 +935,8 @@ CONFIG_SSB_POSSIBLE=y | |||
894 | # CONFIG_MFD_MC13783 is not set | 935 | # CONFIG_MFD_MC13783 is not set |
895 | # CONFIG_AB3100_CORE is not set | 936 | # CONFIG_AB3100_CORE is not set |
896 | # CONFIG_EZX_PCAP is not set | 937 | # CONFIG_EZX_PCAP is not set |
938 | # CONFIG_MFD_88PM8607 is not set | ||
939 | # CONFIG_AB4500_CORE is not set | ||
897 | # CONFIG_REGULATOR is not set | 940 | # CONFIG_REGULATOR is not set |
898 | CONFIG_MEDIA_SUPPORT=y | 941 | CONFIG_MEDIA_SUPPORT=y |
899 | 942 | ||
@@ -910,6 +953,8 @@ CONFIG_VIDEO_MEDIA=y | |||
910 | # | 953 | # |
911 | # Multimedia drivers | 954 | # Multimedia drivers |
912 | # | 955 | # |
956 | CONFIG_IR_CORE=y | ||
957 | CONFIG_VIDEO_IR=y | ||
913 | # CONFIG_MEDIA_ATTACH is not set | 958 | # CONFIG_MEDIA_ATTACH is not set |
914 | CONFIG_MEDIA_TUNER=y | 959 | CONFIG_MEDIA_TUNER=y |
915 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set | 960 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
@@ -930,6 +975,7 @@ CONFIG_VIDEO_CAPTURE_DRIVERS=y | |||
930 | # CONFIG_VIDEO_ADV_DEBUG is not set | 975 | # CONFIG_VIDEO_ADV_DEBUG is not set |
931 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set | 976 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set |
932 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | 977 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y |
978 | CONFIG_VIDEO_IR_I2C=y | ||
933 | # CONFIG_VIDEO_VIVI is not set | 979 | # CONFIG_VIDEO_VIVI is not set |
934 | # CONFIG_VIDEO_CPIA is not set | 980 | # CONFIG_VIDEO_CPIA is not set |
935 | # CONFIG_VIDEO_CPIA2 is not set | 981 | # CONFIG_VIDEO_CPIA2 is not set |
@@ -939,10 +985,13 @@ CONFIG_SOC_CAMERA=y | |||
939 | # CONFIG_SOC_CAMERA_MT9M001 is not set | 985 | # CONFIG_SOC_CAMERA_MT9M001 is not set |
940 | # CONFIG_SOC_CAMERA_MT9M111 is not set | 986 | # CONFIG_SOC_CAMERA_MT9M111 is not set |
941 | # CONFIG_SOC_CAMERA_MT9T031 is not set | 987 | # CONFIG_SOC_CAMERA_MT9T031 is not set |
988 | # CONFIG_SOC_CAMERA_MT9T112 is not set | ||
942 | # CONFIG_SOC_CAMERA_MT9V022 is not set | 989 | # CONFIG_SOC_CAMERA_MT9V022 is not set |
990 | # CONFIG_SOC_CAMERA_RJ54N1 is not set | ||
943 | # CONFIG_SOC_CAMERA_TW9910 is not set | 991 | # CONFIG_SOC_CAMERA_TW9910 is not set |
944 | # CONFIG_SOC_CAMERA_PLATFORM is not set | 992 | # CONFIG_SOC_CAMERA_PLATFORM is not set |
945 | # CONFIG_SOC_CAMERA_OV772X is not set | 993 | # CONFIG_SOC_CAMERA_OV772X is not set |
994 | # CONFIG_SOC_CAMERA_OV9640 is not set | ||
946 | CONFIG_VIDEO_SH_MOBILE_CEU=y | 995 | CONFIG_VIDEO_SH_MOBILE_CEU=y |
947 | # CONFIG_V4L_USB_DRIVERS is not set | 996 | # CONFIG_V4L_USB_DRIVERS is not set |
948 | CONFIG_RADIO_ADAPTERS=y | 997 | CONFIG_RADIO_ADAPTERS=y |
@@ -952,6 +1001,7 @@ CONFIG_RADIO_ADAPTERS=y | |||
952 | # CONFIG_RADIO_SI470X is not set | 1001 | # CONFIG_RADIO_SI470X is not set |
953 | # CONFIG_USB_MR800 is not set | 1002 | # CONFIG_USB_MR800 is not set |
954 | # CONFIG_RADIO_TEA5764 is not set | 1003 | # CONFIG_RADIO_TEA5764 is not set |
1004 | # CONFIG_RADIO_TEF6862 is not set | ||
955 | # CONFIG_DAB is not set | 1005 | # CONFIG_DAB is not set |
956 | 1006 | ||
957 | # | 1007 | # |
@@ -1177,6 +1227,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
1177 | # CONFIG_MMC_AT91 is not set | 1227 | # CONFIG_MMC_AT91 is not set |
1178 | # CONFIG_MMC_ATMELMCI is not set | 1228 | # CONFIG_MMC_ATMELMCI is not set |
1179 | CONFIG_MMC_SPI=y | 1229 | CONFIG_MMC_SPI=y |
1230 | # CONFIG_MMC_TMIO is not set | ||
1180 | # CONFIG_MEMSTICK is not set | 1231 | # CONFIG_MEMSTICK is not set |
1181 | # CONFIG_NEW_LEDS is not set | 1232 | # CONFIG_NEW_LEDS is not set |
1182 | # CONFIG_ACCESSIBILITY is not set | 1233 | # CONFIG_ACCESSIBILITY is not set |
@@ -1208,6 +1259,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1208 | CONFIG_RTC_DRV_PCF8563=y | 1259 | CONFIG_RTC_DRV_PCF8563=y |
1209 | # CONFIG_RTC_DRV_PCF8583 is not set | 1260 | # CONFIG_RTC_DRV_PCF8583 is not set |
1210 | # CONFIG_RTC_DRV_M41T80 is not set | 1261 | # CONFIG_RTC_DRV_M41T80 is not set |
1262 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1211 | # CONFIG_RTC_DRV_S35390A is not set | 1263 | # CONFIG_RTC_DRV_S35390A is not set |
1212 | # CONFIG_RTC_DRV_FM3130 is not set | 1264 | # CONFIG_RTC_DRV_FM3130 is not set |
1213 | # CONFIG_RTC_DRV_RX8581 is not set | 1265 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1236,7 +1288,9 @@ CONFIG_RTC_DRV_PCF8563=y | |||
1236 | # CONFIG_RTC_DRV_M48T86 is not set | 1288 | # CONFIG_RTC_DRV_M48T86 is not set |
1237 | # CONFIG_RTC_DRV_M48T35 is not set | 1289 | # CONFIG_RTC_DRV_M48T35 is not set |
1238 | # CONFIG_RTC_DRV_M48T59 is not set | 1290 | # CONFIG_RTC_DRV_M48T59 is not set |
1291 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1239 | # CONFIG_RTC_DRV_BQ4802 is not set | 1292 | # CONFIG_RTC_DRV_BQ4802 is not set |
1293 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1240 | # CONFIG_RTC_DRV_V3020 is not set | 1294 | # CONFIG_RTC_DRV_V3020 is not set |
1241 | 1295 | ||
1242 | # | 1296 | # |
@@ -1430,7 +1484,7 @@ CONFIG_FRAME_WARN=1024 | |||
1430 | CONFIG_DEBUG_FS=y | 1484 | CONFIG_DEBUG_FS=y |
1431 | # CONFIG_HEADERS_CHECK is not set | 1485 | # CONFIG_HEADERS_CHECK is not set |
1432 | # CONFIG_DEBUG_KERNEL is not set | 1486 | # CONFIG_DEBUG_KERNEL is not set |
1433 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1487 | CONFIG_DEBUG_BUGVERBOSE=y |
1434 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1488 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1435 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1489 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1436 | # CONFIG_LATENCYTOP is not set | 1490 | # CONFIG_LATENCYTOP is not set |
@@ -1448,7 +1502,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1448 | # CONFIG_SAMPLES is not set | 1502 | # CONFIG_SAMPLES is not set |
1449 | CONFIG_HAVE_ARCH_KGDB=y | 1503 | CONFIG_HAVE_ARCH_KGDB=y |
1450 | # CONFIG_SH_STANDARD_BIOS is not set | 1504 | # CONFIG_SH_STANDARD_BIOS is not set |
1451 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1452 | # CONFIG_DWARF_UNWINDER is not set | 1505 | # CONFIG_DWARF_UNWINDER is not set |
1453 | 1506 | ||
1454 | # | 1507 | # |
@@ -1457,7 +1510,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1457 | # CONFIG_KEYS is not set | 1510 | # CONFIG_KEYS is not set |
1458 | # CONFIG_SECURITY is not set | 1511 | # CONFIG_SECURITY is not set |
1459 | # CONFIG_SECURITYFS is not set | 1512 | # CONFIG_SECURITYFS is not set |
1460 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1513 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1514 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1515 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1516 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1517 | CONFIG_DEFAULT_SECURITY="" | ||
1461 | CONFIG_CRYPTO=y | 1518 | CONFIG_CRYPTO=y |
1462 | 1519 | ||
1463 | # | 1520 | # |
diff --git a/arch/sh/configs/edosk7705_defconfig b/arch/sh/configs/edosk7705_defconfig index 86c9bc05062..72f8718dd73 100644 --- a/arch/sh/configs/edosk7705_defconfig +++ b/arch/sh/configs/edosk7705_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:57:13 2009 | 4 | # Mon Jan 4 11:24:26 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -28,6 +28,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
30 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 30 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
31 | CONFIG_DMA_NONCOHERENT=y | ||
31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
32 | CONFIG_CONSTRUCTORS=y | 33 | CONFIG_CONSTRUCTORS=y |
33 | 34 | ||
@@ -53,6 +54,7 @@ CONFIG_KERNEL_GZIP=y | |||
53 | # | 54 | # |
54 | CONFIG_TREE_RCU=y | 55 | CONFIG_TREE_RCU=y |
55 | # CONFIG_TREE_PREEMPT_RCU is not set | 56 | # CONFIG_TREE_PREEMPT_RCU is not set |
57 | # CONFIG_TINY_RCU is not set | ||
56 | # CONFIG_RCU_TRACE is not set | 58 | # CONFIG_RCU_TRACE is not set |
57 | CONFIG_RCU_FANOUT=32 | 59 | CONFIG_RCU_FANOUT=32 |
58 | # CONFIG_RCU_FANOUT_EXACT is not set | 60 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -66,7 +68,6 @@ CONFIG_LOG_BUF_SHIFT=17 | |||
66 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 68 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
67 | CONFIG_EMBEDDED=y | 69 | CONFIG_EMBEDDED=y |
68 | # CONFIG_UID16 is not set | 70 | # CONFIG_UID16 is not set |
69 | # CONFIG_SYSCTL_SYSCALL is not set | ||
70 | # CONFIG_KALLSYMS is not set | 71 | # CONFIG_KALLSYMS is not set |
71 | # CONFIG_HOTPLUG is not set | 72 | # CONFIG_HOTPLUG is not set |
72 | # CONFIG_PRINTK is not set | 73 | # CONFIG_PRINTK is not set |
@@ -81,6 +82,7 @@ CONFIG_EMBEDDED=y | |||
81 | CONFIG_SHMEM=y | 82 | CONFIG_SHMEM=y |
82 | # CONFIG_AIO is not set | 83 | # CONFIG_AIO is not set |
83 | CONFIG_HAVE_PERF_EVENTS=y | 84 | CONFIG_HAVE_PERF_EVENTS=y |
85 | CONFIG_PERF_USE_VMALLOC=y | ||
84 | 86 | ||
85 | # | 87 | # |
86 | # Kernel Performance Events And Counters | 88 | # Kernel Performance Events And Counters |
@@ -98,6 +100,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
98 | CONFIG_HAVE_KPROBES=y | 100 | CONFIG_HAVE_KPROBES=y |
99 | CONFIG_HAVE_KRETPROBES=y | 101 | CONFIG_HAVE_KRETPROBES=y |
100 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 102 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
103 | CONFIG_HAVE_DMA_ATTRS=y | ||
101 | CONFIG_HAVE_CLK=y | 104 | CONFIG_HAVE_CLK=y |
102 | CONFIG_HAVE_DMA_API_DEBUG=y | 105 | CONFIG_HAVE_DMA_API_DEBUG=y |
103 | 106 | ||
@@ -109,6 +112,35 @@ CONFIG_HAVE_GENERIC_DMA_COHERENT=y | |||
109 | CONFIG_BASE_SMALL=1 | 112 | CONFIG_BASE_SMALL=1 |
110 | # CONFIG_MODULES is not set | 113 | # CONFIG_MODULES is not set |
111 | # CONFIG_BLOCK is not set | 114 | # CONFIG_BLOCK is not set |
115 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
116 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
117 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
118 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
119 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
120 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
121 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
122 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
123 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
124 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
125 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
126 | # CONFIG_INLINE_READ_LOCK is not set | ||
127 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
128 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
129 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
130 | CONFIG_INLINE_READ_UNLOCK=y | ||
131 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
132 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
133 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
134 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
135 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
136 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
137 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
138 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
139 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
140 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
141 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
142 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
143 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
112 | # CONFIG_FREEZER is not set | 144 | # CONFIG_FREEZER is not set |
113 | 145 | ||
114 | # | 146 | # |
@@ -186,8 +218,6 @@ CONFIG_MIGRATION=y | |||
186 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 218 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
187 | CONFIG_ZONE_DMA_FLAG=0 | 219 | CONFIG_ZONE_DMA_FLAG=0 |
188 | CONFIG_NR_QUICK=2 | 220 | CONFIG_NR_QUICK=2 |
189 | CONFIG_HAVE_MLOCK=y | ||
190 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
191 | # CONFIG_KSM is not set | 221 | # CONFIG_KSM is not set |
192 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 222 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
193 | 223 | ||
@@ -359,6 +389,7 @@ CONFIG_SSB_POSSIBLE=y | |||
359 | # | 389 | # |
360 | # CONFIG_MFD_CORE is not set | 390 | # CONFIG_MFD_CORE is not set |
361 | # CONFIG_MFD_SM501 is not set | 391 | # CONFIG_MFD_SM501 is not set |
392 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
362 | # CONFIG_HTC_PASIC3 is not set | 393 | # CONFIG_HTC_PASIC3 is not set |
363 | # CONFIG_MFD_TMIO is not set | 394 | # CONFIG_MFD_TMIO is not set |
364 | # CONFIG_REGULATOR is not set | 395 | # CONFIG_REGULATOR is not set |
@@ -416,7 +447,6 @@ CONFIG_INOTIFY_USER=y | |||
416 | # CONFIG_PROC_FS is not set | 447 | # CONFIG_PROC_FS is not set |
417 | # CONFIG_SYSFS is not set | 448 | # CONFIG_SYSFS is not set |
418 | # CONFIG_TMPFS is not set | 449 | # CONFIG_TMPFS is not set |
419 | # CONFIG_HUGETLBFS is not set | ||
420 | # CONFIG_HUGETLB_PAGE is not set | 450 | # CONFIG_HUGETLB_PAGE is not set |
421 | CONFIG_MISC_FILESYSTEMS=y | 451 | CONFIG_MISC_FILESYSTEMS=y |
422 | # CONFIG_NLS is not set | 452 | # CONFIG_NLS is not set |
@@ -448,7 +478,6 @@ CONFIG_TRACING_SUPPORT=y | |||
448 | # CONFIG_SAMPLES is not set | 478 | # CONFIG_SAMPLES is not set |
449 | CONFIG_HAVE_ARCH_KGDB=y | 479 | CONFIG_HAVE_ARCH_KGDB=y |
450 | # CONFIG_SH_STANDARD_BIOS is not set | 480 | # CONFIG_SH_STANDARD_BIOS is not set |
451 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
452 | # CONFIG_DWARF_UNWINDER is not set | 481 | # CONFIG_DWARF_UNWINDER is not set |
453 | 482 | ||
454 | # | 483 | # |
@@ -456,7 +485,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
456 | # | 485 | # |
457 | # CONFIG_KEYS is not set | 486 | # CONFIG_KEYS is not set |
458 | # CONFIG_SECURITYFS is not set | 487 | # CONFIG_SECURITYFS is not set |
459 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 488 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
489 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
490 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
491 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
492 | CONFIG_DEFAULT_SECURITY="" | ||
460 | # CONFIG_CRYPTO is not set | 493 | # CONFIG_CRYPTO is not set |
461 | # CONFIG_BINARY_PRINTF is not set | 494 | # CONFIG_BINARY_PRINTF is not set |
462 | 495 | ||
diff --git a/arch/sh/configs/edosk7760_defconfig b/arch/sh/configs/edosk7760_defconfig index 4c0f82b7def..0932e6d656e 100644 --- a/arch/sh/configs/edosk7760_defconfig +++ b/arch/sh/configs/edosk7760_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:57:30 2009 | 4 | # Mon Jan 4 11:24:44 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -62,6 +64,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
62 | # | 64 | # |
63 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
64 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
65 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
66 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
67 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +105,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 106 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 107 | CONFIG_HAVE_PERF_EVENTS=y |
108 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 109 | ||
106 | # | 110 | # |
107 | # Kernel Performance Events And Counters | 111 | # Kernel Performance Events And Counters |
@@ -121,6 +125,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
121 | CONFIG_HAVE_KPROBES=y | 125 | CONFIG_HAVE_KPROBES=y |
122 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
128 | CONFIG_HAVE_DMA_ATTRS=y | ||
124 | CONFIG_HAVE_CLK=y | 129 | CONFIG_HAVE_CLK=y |
125 | CONFIG_HAVE_DMA_API_DEBUG=y | 130 | CONFIG_HAVE_DMA_API_DEBUG=y |
126 | 131 | ||
@@ -147,14 +152,41 @@ CONFIG_LBDAF=y | |||
147 | # IO Schedulers | 152 | # IO Schedulers |
148 | # | 153 | # |
149 | CONFIG_IOSCHED_NOOP=y | 154 | CONFIG_IOSCHED_NOOP=y |
150 | CONFIG_IOSCHED_AS=y | ||
151 | CONFIG_IOSCHED_DEADLINE=y | 155 | CONFIG_IOSCHED_DEADLINE=y |
152 | CONFIG_IOSCHED_CFQ=y | 156 | CONFIG_IOSCHED_CFQ=y |
153 | # CONFIG_DEFAULT_AS is not set | ||
154 | # CONFIG_DEFAULT_DEADLINE is not set | 157 | # CONFIG_DEFAULT_DEADLINE is not set |
155 | CONFIG_DEFAULT_CFQ=y | 158 | CONFIG_DEFAULT_CFQ=y |
156 | # CONFIG_DEFAULT_NOOP is not set | 159 | # CONFIG_DEFAULT_NOOP is not set |
157 | CONFIG_DEFAULT_IOSCHED="cfq" | 160 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
162 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
163 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
165 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
167 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
169 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
171 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
172 | # CONFIG_INLINE_READ_LOCK is not set | ||
173 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
174 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
175 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
176 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
177 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
178 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
180 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
181 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
183 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
185 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
187 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
188 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
189 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
158 | # CONFIG_FREEZER is not set | 190 | # CONFIG_FREEZER is not set |
159 | 191 | ||
160 | # | 192 | # |
@@ -230,8 +262,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 262 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=0 | 263 | CONFIG_ZONE_DMA_FLAG=0 |
232 | CONFIG_NR_QUICK=2 | 264 | CONFIG_NR_QUICK=2 |
233 | CONFIG_HAVE_MLOCK=y | ||
234 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
235 | # CONFIG_KSM is not set | 265 | # CONFIG_KSM is not set |
236 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 266 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
237 | 267 | ||
@@ -278,9 +308,9 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
278 | # | 308 | # |
279 | # DMA support | 309 | # DMA support |
280 | # | 310 | # |
281 | CONFIG_SH_DMA_API=y | ||
282 | CONFIG_SH_DMA=y | 311 | CONFIG_SH_DMA=y |
283 | CONFIG_SH_DMA_IRQ_MULTI=y | 312 | CONFIG_SH_DMA_IRQ_MULTI=y |
313 | CONFIG_SH_DMA_API=y | ||
284 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 | 314 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 |
285 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 315 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
286 | # CONFIG_SH_DMABRG is not set | 316 | # CONFIG_SH_DMABRG is not set |
@@ -320,7 +350,6 @@ CONFIG_GUSA=y | |||
320 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 350 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
321 | CONFIG_BOOT_LINK_OFFSET=0x02000000 | 351 | CONFIG_BOOT_LINK_OFFSET=0x02000000 |
322 | CONFIG_ENTRY_OFFSET=0x00001000 | 352 | CONFIG_ENTRY_OFFSET=0x00001000 |
323 | # CONFIG_UBC_WAKEUP is not set | ||
324 | CONFIG_CMDLINE_OVERWRITE=y | 353 | CONFIG_CMDLINE_OVERWRITE=y |
325 | # CONFIG_CMDLINE_EXTEND is not set | 354 | # CONFIG_CMDLINE_EXTEND is not set |
326 | CONFIG_CMDLINE="mem=64M console=ttySC2,115200 root=/dev/nfs rw nfsroot=192.168.0.3:/scripts/filesys ip=192.168.0.4" | 355 | CONFIG_CMDLINE="mem=64M console=ttySC2,115200 root=/dev/nfs rw nfsroot=192.168.0.3:/scripts/filesys ip=192.168.0.4" |
@@ -415,9 +444,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
415 | # CONFIG_AF_RXRPC is not set | 444 | # CONFIG_AF_RXRPC is not set |
416 | CONFIG_WIRELESS=y | 445 | CONFIG_WIRELESS=y |
417 | # CONFIG_CFG80211 is not set | 446 | # CONFIG_CFG80211 is not set |
418 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
419 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
420 | # CONFIG_WIRELESS_EXT is not set | ||
421 | # CONFIG_LIB80211 is not set | 447 | # CONFIG_LIB80211 is not set |
422 | 448 | ||
423 | # | 449 | # |
@@ -534,6 +560,10 @@ CONFIG_MTD_PHYSMAP=y | |||
534 | CONFIG_BLK_DEV=y | 560 | CONFIG_BLK_DEV=y |
535 | # CONFIG_BLK_DEV_COW_COMMON is not set | 561 | # CONFIG_BLK_DEV_COW_COMMON is not set |
536 | # CONFIG_BLK_DEV_LOOP is not set | 562 | # CONFIG_BLK_DEV_LOOP is not set |
563 | |||
564 | # | ||
565 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
566 | # | ||
537 | # CONFIG_BLK_DEV_NBD is not set | 567 | # CONFIG_BLK_DEV_NBD is not set |
538 | CONFIG_BLK_DEV_RAM=y | 568 | CONFIG_BLK_DEV_RAM=y |
539 | CONFIG_BLK_DEV_RAM_COUNT=16 | 569 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -581,11 +611,11 @@ CONFIG_SMC91X=y | |||
581 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 611 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
582 | # CONFIG_B44 is not set | 612 | # CONFIG_B44 is not set |
583 | # CONFIG_KS8842 is not set | 613 | # CONFIG_KS8842 is not set |
614 | # CONFIG_KS8851_MLL is not set | ||
584 | # CONFIG_NETDEV_1000 is not set | 615 | # CONFIG_NETDEV_1000 is not set |
585 | # CONFIG_NETDEV_10000 is not set | 616 | # CONFIG_NETDEV_10000 is not set |
586 | CONFIG_WLAN=y | 617 | CONFIG_WLAN=y |
587 | # CONFIG_WLAN_PRE80211 is not set | 618 | # CONFIG_HOSTAP is not set |
588 | # CONFIG_WLAN_80211 is not set | ||
589 | 619 | ||
590 | # | 620 | # |
591 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 621 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -605,6 +635,7 @@ CONFIG_WLAN=y | |||
605 | CONFIG_INPUT=y | 635 | CONFIG_INPUT=y |
606 | # CONFIG_INPUT_FF_MEMLESS is not set | 636 | # CONFIG_INPUT_FF_MEMLESS is not set |
607 | # CONFIG_INPUT_POLLDEV is not set | 637 | # CONFIG_INPUT_POLLDEV is not set |
638 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
608 | 639 | ||
609 | # | 640 | # |
610 | # Userland interfaces | 641 | # Userland interfaces |
@@ -698,7 +729,6 @@ CONFIG_I2C_SH7760=y | |||
698 | # | 729 | # |
699 | # Miscellaneous I2C Chip support | 730 | # Miscellaneous I2C Chip support |
700 | # | 731 | # |
701 | # CONFIG_DS1682 is not set | ||
702 | # CONFIG_SENSORS_TSL2550 is not set | 732 | # CONFIG_SENSORS_TSL2550 is not set |
703 | CONFIG_I2C_DEBUG_CORE=y | 733 | CONFIG_I2C_DEBUG_CORE=y |
704 | CONFIG_I2C_DEBUG_ALGO=y | 734 | CONFIG_I2C_DEBUG_ALGO=y |
@@ -727,15 +757,18 @@ CONFIG_SSB_POSSIBLE=y | |||
727 | # | 757 | # |
728 | # CONFIG_MFD_CORE is not set | 758 | # CONFIG_MFD_CORE is not set |
729 | # CONFIG_MFD_SM501 is not set | 759 | # CONFIG_MFD_SM501 is not set |
760 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
730 | # CONFIG_HTC_PASIC3 is not set | 761 | # CONFIG_HTC_PASIC3 is not set |
731 | # CONFIG_TWL4030_CORE is not set | 762 | # CONFIG_TWL4030_CORE is not set |
732 | # CONFIG_MFD_TMIO is not set | 763 | # CONFIG_MFD_TMIO is not set |
733 | # CONFIG_PMIC_DA903X is not set | 764 | # CONFIG_PMIC_DA903X is not set |
765 | # CONFIG_PMIC_ADP5520 is not set | ||
734 | # CONFIG_MFD_WM8400 is not set | 766 | # CONFIG_MFD_WM8400 is not set |
735 | # CONFIG_MFD_WM831X is not set | 767 | # CONFIG_MFD_WM831X is not set |
736 | # CONFIG_MFD_WM8350_I2C is not set | 768 | # CONFIG_MFD_WM8350_I2C is not set |
737 | # CONFIG_MFD_PCF50633 is not set | 769 | # CONFIG_MFD_PCF50633 is not set |
738 | # CONFIG_AB3100_CORE is not set | 770 | # CONFIG_AB3100_CORE is not set |
771 | # CONFIG_MFD_88PM8607 is not set | ||
739 | # CONFIG_REGULATOR is not set | 772 | # CONFIG_REGULATOR is not set |
740 | # CONFIG_MEDIA_SUPPORT is not set | 773 | # CONFIG_MEDIA_SUPPORT is not set |
741 | 774 | ||
@@ -1072,9 +1105,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1072 | CONFIG_HAVE_ARCH_KGDB=y | 1105 | CONFIG_HAVE_ARCH_KGDB=y |
1073 | # CONFIG_KGDB is not set | 1106 | # CONFIG_KGDB is not set |
1074 | # CONFIG_SH_STANDARD_BIOS is not set | 1107 | # CONFIG_SH_STANDARD_BIOS is not set |
1075 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1076 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 | ||
1077 | CONFIG_EARLY_PRINTK=y | ||
1078 | # CONFIG_STACK_DEBUG is not set | 1108 | # CONFIG_STACK_DEBUG is not set |
1079 | # CONFIG_DEBUG_STACK_USAGE is not set | 1109 | # CONFIG_DEBUG_STACK_USAGE is not set |
1080 | # CONFIG_4KSTACKS is not set | 1110 | # CONFIG_4KSTACKS is not set |
@@ -1088,7 +1118,11 @@ CONFIG_DUMP_CODE=y | |||
1088 | # CONFIG_KEYS is not set | 1118 | # CONFIG_KEYS is not set |
1089 | # CONFIG_SECURITY is not set | 1119 | # CONFIG_SECURITY is not set |
1090 | # CONFIG_SECURITYFS is not set | 1120 | # CONFIG_SECURITYFS is not set |
1091 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1121 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1122 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1123 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1124 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1125 | CONFIG_DEFAULT_SECURITY="" | ||
1092 | CONFIG_CRYPTO=y | 1126 | CONFIG_CRYPTO=y |
1093 | 1127 | ||
1094 | # | 1128 | # |
diff --git a/arch/sh/configs/espt_defconfig b/arch/sh/configs/espt_defconfig index 9b785517abc..f899e5613f8 100644 --- a/arch/sh/configs/espt_defconfig +++ b/arch/sh/configs/espt_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:58:18 2009 | 4 | # Mon Jan 4 11:26:55 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -59,6 +61,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
59 | # | 61 | # |
60 | CONFIG_TREE_RCU=y | 62 | CONFIG_TREE_RCU=y |
61 | # CONFIG_TREE_PREEMPT_RCU is not set | 63 | # CONFIG_TREE_PREEMPT_RCU is not set |
64 | # CONFIG_TINY_RCU is not set | ||
62 | # CONFIG_RCU_TRACE is not set | 65 | # CONFIG_RCU_TRACE is not set |
63 | CONFIG_RCU_FANOUT=32 | 66 | CONFIG_RCU_FANOUT=32 |
64 | # CONFIG_RCU_FANOUT_EXACT is not set | 67 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,6 +106,7 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -124,6 +128,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
124 | CONFIG_HAVE_KPROBES=y | 128 | CONFIG_HAVE_KPROBES=y |
125 | CONFIG_HAVE_KRETPROBES=y | 129 | CONFIG_HAVE_KRETPROBES=y |
126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 130 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
131 | CONFIG_HAVE_DMA_ATTRS=y | ||
127 | CONFIG_HAVE_CLK=y | 132 | CONFIG_HAVE_CLK=y |
128 | CONFIG_HAVE_DMA_API_DEBUG=y | 133 | CONFIG_HAVE_DMA_API_DEBUG=y |
129 | 134 | ||
@@ -150,14 +155,41 @@ CONFIG_LBDAF=y | |||
150 | # IO Schedulers | 155 | # IO Schedulers |
151 | # | 156 | # |
152 | CONFIG_IOSCHED_NOOP=y | 157 | CONFIG_IOSCHED_NOOP=y |
153 | CONFIG_IOSCHED_AS=y | ||
154 | CONFIG_IOSCHED_DEADLINE=y | 158 | CONFIG_IOSCHED_DEADLINE=y |
155 | CONFIG_IOSCHED_CFQ=y | 159 | CONFIG_IOSCHED_CFQ=y |
156 | CONFIG_DEFAULT_AS=y | ||
157 | # CONFIG_DEFAULT_DEADLINE is not set | 160 | # CONFIG_DEFAULT_DEADLINE is not set |
158 | # CONFIG_DEFAULT_CFQ is not set | 161 | CONFIG_DEFAULT_CFQ=y |
159 | # CONFIG_DEFAULT_NOOP is not set | 162 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 163 | CONFIG_DEFAULT_IOSCHED="cfq" |
164 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
165 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
168 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
170 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
172 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
174 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
175 | # CONFIG_INLINE_READ_LOCK is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
177 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
178 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
179 | CONFIG_INLINE_READ_UNLOCK=y | ||
180 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
181 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
182 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
183 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
186 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
188 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
190 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
192 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
161 | # CONFIG_FREEZER is not set | 193 | # CONFIG_FREEZER is not set |
162 | 194 | ||
163 | # | 195 | # |
@@ -211,6 +243,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
211 | CONFIG_MEMORY_START=0x0c000000 | 243 | CONFIG_MEMORY_START=0x0c000000 |
212 | CONFIG_MEMORY_SIZE=0x04000000 | 244 | CONFIG_MEMORY_SIZE=0x04000000 |
213 | CONFIG_29BIT=y | 245 | CONFIG_29BIT=y |
246 | # CONFIG_PMB_ENABLE is not set | ||
214 | CONFIG_VSYSCALL=y | 247 | CONFIG_VSYSCALL=y |
215 | CONFIG_ARCH_FLATMEM_ENABLE=y | 248 | CONFIG_ARCH_FLATMEM_ENABLE=y |
216 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 249 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
@@ -237,8 +270,6 @@ CONFIG_MIGRATION=y | |||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 270 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=0 | 271 | CONFIG_ZONE_DMA_FLAG=0 |
239 | CONFIG_NR_QUICK=2 | 272 | CONFIG_NR_QUICK=2 |
240 | CONFIG_HAVE_MLOCK=y | ||
241 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
242 | # CONFIG_KSM is not set | 273 | # CONFIG_KSM is not set |
243 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 274 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
244 | 275 | ||
@@ -419,7 +450,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
419 | # CONFIG_IRDA is not set | 450 | # CONFIG_IRDA is not set |
420 | # CONFIG_BT is not set | 451 | # CONFIG_BT is not set |
421 | # CONFIG_AF_RXRPC is not set | 452 | # CONFIG_AF_RXRPC is not set |
422 | # CONFIG_WIRELESS is not set | 453 | CONFIG_WIRELESS=y |
454 | # CONFIG_CFG80211 is not set | ||
455 | # CONFIG_LIB80211 is not set | ||
456 | |||
457 | # | ||
458 | # CFG80211 needs to be enabled for MAC80211 | ||
459 | # | ||
423 | # CONFIG_WIMAX is not set | 460 | # CONFIG_WIMAX is not set |
424 | # CONFIG_RFKILL is not set | 461 | # CONFIG_RFKILL is not set |
425 | # CONFIG_NET_9P is not set | 462 | # CONFIG_NET_9P is not set |
@@ -498,7 +535,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
498 | CONFIG_MTD_COMPLEX_MAPPINGS=y | 535 | CONFIG_MTD_COMPLEX_MAPPINGS=y |
499 | CONFIG_MTD_PHYSMAP=y | 536 | CONFIG_MTD_PHYSMAP=y |
500 | # CONFIG_MTD_PHYSMAP_COMPAT is not set | 537 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
501 | # CONFIG_MTD_GPIO_ADDR is not set | ||
502 | # CONFIG_MTD_PLATRAM is not set | 538 | # CONFIG_MTD_PLATRAM is not set |
503 | 539 | ||
504 | # | 540 | # |
@@ -531,6 +567,10 @@ CONFIG_MTD_PHYSMAP=y | |||
531 | CONFIG_BLK_DEV=y | 567 | CONFIG_BLK_DEV=y |
532 | # CONFIG_BLK_DEV_COW_COMMON is not set | 568 | # CONFIG_BLK_DEV_COW_COMMON is not set |
533 | # CONFIG_BLK_DEV_LOOP is not set | 569 | # CONFIG_BLK_DEV_LOOP is not set |
570 | |||
571 | # | ||
572 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
573 | # | ||
534 | # CONFIG_BLK_DEV_NBD is not set | 574 | # CONFIG_BLK_DEV_NBD is not set |
535 | # CONFIG_BLK_DEV_UB is not set | 575 | # CONFIG_BLK_DEV_UB is not set |
536 | # CONFIG_BLK_DEV_RAM is not set | 576 | # CONFIG_BLK_DEV_RAM is not set |
@@ -629,11 +669,12 @@ CONFIG_SH_ETH=y | |||
629 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 669 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
630 | # CONFIG_B44 is not set | 670 | # CONFIG_B44 is not set |
631 | # CONFIG_KS8842 is not set | 671 | # CONFIG_KS8842 is not set |
672 | # CONFIG_KS8851_MLL is not set | ||
632 | # CONFIG_NETDEV_1000 is not set | 673 | # CONFIG_NETDEV_1000 is not set |
633 | # CONFIG_NETDEV_10000 is not set | 674 | # CONFIG_NETDEV_10000 is not set |
634 | CONFIG_WLAN=y | 675 | CONFIG_WLAN=y |
635 | # CONFIG_WLAN_PRE80211 is not set | 676 | # CONFIG_USB_ZD1201 is not set |
636 | # CONFIG_WLAN_80211 is not set | 677 | # CONFIG_HOSTAP is not set |
637 | 678 | ||
638 | # | 679 | # |
639 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 680 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -662,6 +703,7 @@ CONFIG_WLAN=y | |||
662 | CONFIG_INPUT=y | 703 | CONFIG_INPUT=y |
663 | # CONFIG_INPUT_FF_MEMLESS is not set | 704 | # CONFIG_INPUT_FF_MEMLESS is not set |
664 | # CONFIG_INPUT_POLLDEV is not set | 705 | # CONFIG_INPUT_POLLDEV is not set |
706 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
665 | 707 | ||
666 | # | 708 | # |
667 | # Userland interfaces | 709 | # Userland interfaces |
@@ -745,6 +787,7 @@ CONFIG_SSB_POSSIBLE=y | |||
745 | # | 787 | # |
746 | # CONFIG_MFD_CORE is not set | 788 | # CONFIG_MFD_CORE is not set |
747 | # CONFIG_MFD_SM501 is not set | 789 | # CONFIG_MFD_SM501 is not set |
790 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
748 | # CONFIG_HTC_PASIC3 is not set | 791 | # CONFIG_HTC_PASIC3 is not set |
749 | # CONFIG_MFD_TMIO is not set | 792 | # CONFIG_MFD_TMIO is not set |
750 | # CONFIG_REGULATOR is not set | 793 | # CONFIG_REGULATOR is not set |
@@ -1102,10 +1145,11 @@ CONFIG_DEBUG_FS=y | |||
1102 | # CONFIG_HEADERS_CHECK is not set | 1145 | # CONFIG_HEADERS_CHECK is not set |
1103 | # CONFIG_DEBUG_KERNEL is not set | 1146 | # CONFIG_DEBUG_KERNEL is not set |
1104 | CONFIG_STACKTRACE=y | 1147 | CONFIG_STACKTRACE=y |
1105 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1148 | CONFIG_DEBUG_BUGVERBOSE=y |
1106 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1149 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1107 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1150 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1108 | # CONFIG_LATENCYTOP is not set | 1151 | # CONFIG_LATENCYTOP is not set |
1152 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1109 | CONFIG_NOP_TRACER=y | 1153 | CONFIG_NOP_TRACER=y |
1110 | CONFIG_HAVE_FUNCTION_TRACER=y | 1154 | CONFIG_HAVE_FUNCTION_TRACER=y |
1111 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1155 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1125,7 +1169,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1125 | # CONFIG_SAMPLES is not set | 1169 | # CONFIG_SAMPLES is not set |
1126 | CONFIG_HAVE_ARCH_KGDB=y | 1170 | CONFIG_HAVE_ARCH_KGDB=y |
1127 | # CONFIG_SH_STANDARD_BIOS is not set | 1171 | # CONFIG_SH_STANDARD_BIOS is not set |
1128 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1129 | # CONFIG_DWARF_UNWINDER is not set | 1172 | # CONFIG_DWARF_UNWINDER is not set |
1130 | 1173 | ||
1131 | # | 1174 | # |
@@ -1134,7 +1177,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1134 | # CONFIG_KEYS is not set | 1177 | # CONFIG_KEYS is not set |
1135 | # CONFIG_SECURITY is not set | 1178 | # CONFIG_SECURITY is not set |
1136 | # CONFIG_SECURITYFS is not set | 1179 | # CONFIG_SECURITYFS is not set |
1137 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1180 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1181 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1182 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1183 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1184 | CONFIG_DEFAULT_SECURITY="" | ||
1138 | CONFIG_CRYPTO=y | 1185 | CONFIG_CRYPTO=y |
1139 | 1186 | ||
1140 | # | 1187 | # |
diff --git a/arch/sh/configs/hp6xx_defconfig b/arch/sh/configs/hp6xx_defconfig index f59be446f82..06644908631 100644 --- a/arch/sh/configs/hp6xx_defconfig +++ b/arch/sh/configs/hp6xx_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 17:59:45 2009 | 4 | # Mon Jan 4 11:30:31 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -30,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
35 | 36 | ||
@@ -57,6 +58,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
57 | # | 58 | # |
58 | CONFIG_TREE_RCU=y | 59 | CONFIG_TREE_RCU=y |
59 | # CONFIG_TREE_PREEMPT_RCU is not set | 60 | # CONFIG_TREE_PREEMPT_RCU is not set |
61 | # CONFIG_TINY_RCU is not set | ||
60 | # CONFIG_RCU_TRACE is not set | 62 | # CONFIG_RCU_TRACE is not set |
61 | CONFIG_RCU_FANOUT=32 | 63 | CONFIG_RCU_FANOUT=32 |
62 | # CONFIG_RCU_FANOUT_EXACT is not set | 64 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -92,6 +94,7 @@ CONFIG_EVENTFD=y | |||
92 | CONFIG_SHMEM=y | 94 | CONFIG_SHMEM=y |
93 | CONFIG_AIO=y | 95 | CONFIG_AIO=y |
94 | CONFIG_HAVE_PERF_EVENTS=y | 96 | CONFIG_HAVE_PERF_EVENTS=y |
97 | CONFIG_PERF_USE_VMALLOC=y | ||
95 | 98 | ||
96 | # | 99 | # |
97 | # Kernel Performance Events And Counters | 100 | # Kernel Performance Events And Counters |
@@ -109,6 +112,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
109 | CONFIG_HAVE_KPROBES=y | 112 | CONFIG_HAVE_KPROBES=y |
110 | CONFIG_HAVE_KRETPROBES=y | 113 | CONFIG_HAVE_KRETPROBES=y |
111 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 114 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
115 | CONFIG_HAVE_DMA_ATTRS=y | ||
112 | CONFIG_HAVE_CLK=y | 116 | CONFIG_HAVE_CLK=y |
113 | CONFIG_HAVE_DMA_API_DEBUG=y | 117 | CONFIG_HAVE_DMA_API_DEBUG=y |
114 | 118 | ||
@@ -130,14 +134,41 @@ CONFIG_LBDAF=y | |||
130 | # IO Schedulers | 134 | # IO Schedulers |
131 | # | 135 | # |
132 | CONFIG_IOSCHED_NOOP=y | 136 | CONFIG_IOSCHED_NOOP=y |
133 | CONFIG_IOSCHED_AS=y | ||
134 | CONFIG_IOSCHED_DEADLINE=y | 137 | CONFIG_IOSCHED_DEADLINE=y |
135 | CONFIG_IOSCHED_CFQ=y | 138 | CONFIG_IOSCHED_CFQ=y |
136 | CONFIG_DEFAULT_AS=y | ||
137 | # CONFIG_DEFAULT_DEADLINE is not set | 139 | # CONFIG_DEFAULT_DEADLINE is not set |
138 | # CONFIG_DEFAULT_CFQ is not set | 140 | CONFIG_DEFAULT_CFQ=y |
139 | # CONFIG_DEFAULT_NOOP is not set | 141 | # CONFIG_DEFAULT_NOOP is not set |
140 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 142 | CONFIG_DEFAULT_IOSCHED="cfq" |
143 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
144 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
145 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
146 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
147 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
148 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
149 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
150 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
151 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
152 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
153 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
154 | # CONFIG_INLINE_READ_LOCK is not set | ||
155 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
156 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
157 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
158 | CONFIG_INLINE_READ_UNLOCK=y | ||
159 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
160 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
161 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
162 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
163 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
164 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
165 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
167 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
168 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
169 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
170 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
171 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
141 | CONFIG_FREEZER=y | 172 | CONFIG_FREEZER=y |
142 | 173 | ||
143 | # | 174 | # |
@@ -213,8 +244,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
213 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 244 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
214 | CONFIG_ZONE_DMA_FLAG=0 | 245 | CONFIG_ZONE_DMA_FLAG=0 |
215 | CONFIG_NR_QUICK=2 | 246 | CONFIG_NR_QUICK=2 |
216 | CONFIG_HAVE_MLOCK=y | ||
217 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
218 | # CONFIG_KSM is not set | 247 | # CONFIG_KSM is not set |
219 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 248 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
220 | 249 | ||
@@ -261,8 +290,8 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
261 | # | 290 | # |
262 | # DMA support | 291 | # DMA support |
263 | # | 292 | # |
264 | CONFIG_SH_DMA_API=y | ||
265 | CONFIG_SH_DMA=y | 293 | CONFIG_SH_DMA=y |
294 | CONFIG_SH_DMA_API=y | ||
266 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 | 295 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
267 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 296 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
268 | 297 | ||
@@ -313,7 +342,6 @@ CONFIG_ENTRY_OFFSET=0x00001000 | |||
313 | # | 342 | # |
314 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 343 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
315 | CONFIG_PCCARD=y | 344 | CONFIG_PCCARD=y |
316 | # CONFIG_PCMCIA_DEBUG is not set | ||
317 | CONFIG_PCMCIA=y | 345 | CONFIG_PCMCIA=y |
318 | CONFIG_PCMCIA_LOAD_CIS=y | 346 | CONFIG_PCMCIA_LOAD_CIS=y |
319 | CONFIG_PCMCIA_IOCTL=y | 347 | CONFIG_PCMCIA_IOCTL=y |
@@ -363,6 +391,10 @@ CONFIG_EXTRA_FIRMWARE="" | |||
363 | CONFIG_BLK_DEV=y | 391 | CONFIG_BLK_DEV=y |
364 | # CONFIG_BLK_DEV_COW_COMMON is not set | 392 | # CONFIG_BLK_DEV_COW_COMMON is not set |
365 | # CONFIG_BLK_DEV_LOOP is not set | 393 | # CONFIG_BLK_DEV_LOOP is not set |
394 | |||
395 | # | ||
396 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
397 | # | ||
366 | # CONFIG_BLK_DEV_RAM is not set | 398 | # CONFIG_BLK_DEV_RAM is not set |
367 | # CONFIG_CDROM_PKTCDVD is not set | 399 | # CONFIG_CDROM_PKTCDVD is not set |
368 | # CONFIG_BLK_DEV_HD is not set | 400 | # CONFIG_BLK_DEV_HD is not set |
@@ -432,6 +464,7 @@ CONFIG_PATA_PLATFORM=y | |||
432 | CONFIG_INPUT=y | 464 | CONFIG_INPUT=y |
433 | # CONFIG_INPUT_FF_MEMLESS is not set | 465 | # CONFIG_INPUT_FF_MEMLESS is not set |
434 | CONFIG_INPUT_POLLDEV=y | 466 | CONFIG_INPUT_POLLDEV=y |
467 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
435 | 468 | ||
436 | # | 469 | # |
437 | # Userland interfaces | 470 | # Userland interfaces |
@@ -460,6 +493,7 @@ CONFIG_KEYBOARD_HP6XX=y | |||
460 | # CONFIG_INPUT_TABLET is not set | 493 | # CONFIG_INPUT_TABLET is not set |
461 | CONFIG_INPUT_TOUCHSCREEN=y | 494 | CONFIG_INPUT_TOUCHSCREEN=y |
462 | # CONFIG_TOUCHSCREEN_AD7879 is not set | 495 | # CONFIG_TOUCHSCREEN_AD7879 is not set |
496 | # CONFIG_TOUCHSCREEN_DYNAPRO is not set | ||
463 | # CONFIG_TOUCHSCREEN_FUJITSU is not set | 497 | # CONFIG_TOUCHSCREEN_FUJITSU is not set |
464 | # CONFIG_TOUCHSCREEN_GUNZE is not set | 498 | # CONFIG_TOUCHSCREEN_GUNZE is not set |
465 | # CONFIG_TOUCHSCREEN_ELO is not set | 499 | # CONFIG_TOUCHSCREEN_ELO is not set |
@@ -483,6 +517,7 @@ CONFIG_SERIO=y | |||
483 | # CONFIG_SERIO_SERPORT is not set | 517 | # CONFIG_SERIO_SERPORT is not set |
484 | # CONFIG_SERIO_LIBPS2 is not set | 518 | # CONFIG_SERIO_LIBPS2 is not set |
485 | # CONFIG_SERIO_RAW is not set | 519 | # CONFIG_SERIO_RAW is not set |
520 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
486 | # CONFIG_GAMEPORT is not set | 521 | # CONFIG_GAMEPORT is not set |
487 | 522 | ||
488 | # | 523 | # |
@@ -550,6 +585,7 @@ CONFIG_SSB_POSSIBLE=y | |||
550 | # | 585 | # |
551 | # CONFIG_MFD_CORE is not set | 586 | # CONFIG_MFD_CORE is not set |
552 | # CONFIG_MFD_SM501 is not set | 587 | # CONFIG_MFD_SM501 is not set |
588 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
553 | # CONFIG_HTC_PASIC3 is not set | 589 | # CONFIG_HTC_PASIC3 is not set |
554 | # CONFIG_MFD_TMIO is not set | 590 | # CONFIG_MFD_TMIO is not set |
555 | # CONFIG_REGULATOR is not set | 591 | # CONFIG_REGULATOR is not set |
@@ -659,7 +695,9 @@ CONFIG_RTC_INTF_DEV=y | |||
659 | # CONFIG_RTC_DRV_M48T86 is not set | 695 | # CONFIG_RTC_DRV_M48T86 is not set |
660 | # CONFIG_RTC_DRV_M48T35 is not set | 696 | # CONFIG_RTC_DRV_M48T35 is not set |
661 | # CONFIG_RTC_DRV_M48T59 is not set | 697 | # CONFIG_RTC_DRV_M48T59 is not set |
698 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
662 | # CONFIG_RTC_DRV_BQ4802 is not set | 699 | # CONFIG_RTC_DRV_BQ4802 is not set |
700 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
663 | # CONFIG_RTC_DRV_V3020 is not set | 701 | # CONFIG_RTC_DRV_V3020 is not set |
664 | 702 | ||
665 | # | 703 | # |
@@ -684,6 +722,7 @@ CONFIG_EXT2_FS=y | |||
684 | # CONFIG_EXT2_FS_XIP is not set | 722 | # CONFIG_EXT2_FS_XIP is not set |
685 | # CONFIG_EXT3_FS is not set | 723 | # CONFIG_EXT3_FS is not set |
686 | # CONFIG_EXT4_FS is not set | 724 | # CONFIG_EXT4_FS is not set |
725 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
687 | # CONFIG_REISERFS_FS is not set | 726 | # CONFIG_REISERFS_FS is not set |
688 | # CONFIG_JFS_FS is not set | 727 | # CONFIG_JFS_FS is not set |
689 | # CONFIG_FS_POSIX_ACL is not set | 728 | # CONFIG_FS_POSIX_ACL is not set |
@@ -731,7 +770,6 @@ CONFIG_PROC_SYSCTL=y | |||
731 | CONFIG_PROC_PAGE_MONITOR=y | 770 | CONFIG_PROC_PAGE_MONITOR=y |
732 | CONFIG_SYSFS=y | 771 | CONFIG_SYSFS=y |
733 | # CONFIG_TMPFS is not set | 772 | # CONFIG_TMPFS is not set |
734 | # CONFIG_HUGETLBFS is not set | ||
735 | # CONFIG_HUGETLB_PAGE is not set | 773 | # CONFIG_HUGETLB_PAGE is not set |
736 | # CONFIG_CONFIGFS_FS is not set | 774 | # CONFIG_CONFIGFS_FS is not set |
737 | CONFIG_MISC_FILESYSTEMS=y | 775 | CONFIG_MISC_FILESYSTEMS=y |
@@ -813,10 +851,11 @@ CONFIG_FRAME_WARN=1024 | |||
813 | # CONFIG_DEBUG_FS is not set | 851 | # CONFIG_DEBUG_FS is not set |
814 | # CONFIG_HEADERS_CHECK is not set | 852 | # CONFIG_HEADERS_CHECK is not set |
815 | # CONFIG_DEBUG_KERNEL is not set | 853 | # CONFIG_DEBUG_KERNEL is not set |
816 | # CONFIG_DEBUG_BUGVERBOSE is not set | 854 | CONFIG_DEBUG_BUGVERBOSE=y |
817 | # CONFIG_DEBUG_MEMORY_INIT is not set | 855 | # CONFIG_DEBUG_MEMORY_INIT is not set |
818 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 856 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
819 | # CONFIG_LATENCYTOP is not set | 857 | # CONFIG_LATENCYTOP is not set |
858 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
820 | CONFIG_HAVE_FUNCTION_TRACER=y | 859 | CONFIG_HAVE_FUNCTION_TRACER=y |
821 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 860 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
822 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 861 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -829,7 +868,6 @@ CONFIG_TRACING_SUPPORT=y | |||
829 | # CONFIG_SAMPLES is not set | 868 | # CONFIG_SAMPLES is not set |
830 | CONFIG_HAVE_ARCH_KGDB=y | 869 | CONFIG_HAVE_ARCH_KGDB=y |
831 | # CONFIG_SH_STANDARD_BIOS is not set | 870 | # CONFIG_SH_STANDARD_BIOS is not set |
832 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
833 | # CONFIG_DWARF_UNWINDER is not set | 871 | # CONFIG_DWARF_UNWINDER is not set |
834 | 872 | ||
835 | # | 873 | # |
@@ -838,7 +876,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
838 | # CONFIG_KEYS is not set | 876 | # CONFIG_KEYS is not set |
839 | # CONFIG_SECURITY is not set | 877 | # CONFIG_SECURITY is not set |
840 | # CONFIG_SECURITYFS is not set | 878 | # CONFIG_SECURITYFS is not set |
841 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 879 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
880 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
881 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
882 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
883 | CONFIG_DEFAULT_SECURITY="" | ||
842 | CONFIG_CRYPTO=y | 884 | CONFIG_CRYPTO=y |
843 | 885 | ||
844 | # | 886 | # |
diff --git a/arch/sh/configs/kfr2r09-romimage_defconfig b/arch/sh/configs/kfr2r09-romimage_defconfig index 02590e127f7..3d834e59e8f 100644 --- a/arch/sh/configs/kfr2r09-romimage_defconfig +++ b/arch/sh/configs/kfr2r09-romimage_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:01:48 2009 | 4 | # Mon Jan 4 11:31:09 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -60,6 +62,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
60 | # | 62 | # |
61 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +105,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 106 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 107 | CONFIG_HAVE_PERF_EVENTS=y |
108 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 109 | ||
106 | # | 110 | # |
107 | # Kernel Performance Events And Counters | 111 | # Kernel Performance Events And Counters |
@@ -119,6 +123,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
119 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
120 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
126 | CONFIG_HAVE_DMA_ATTRS=y | ||
122 | CONFIG_HAVE_CLK=y | 127 | CONFIG_HAVE_CLK=y |
123 | CONFIG_HAVE_DMA_API_DEBUG=y | 128 | CONFIG_HAVE_DMA_API_DEBUG=y |
124 | 129 | ||
@@ -133,6 +138,35 @@ CONFIG_RT_MUTEXES=y | |||
133 | CONFIG_BASE_SMALL=0 | 138 | CONFIG_BASE_SMALL=0 |
134 | # CONFIG_MODULES is not set | 139 | # CONFIG_MODULES is not set |
135 | # CONFIG_BLOCK is not set | 140 | # CONFIG_BLOCK is not set |
141 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
142 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
143 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
144 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
145 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
146 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
147 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
148 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
149 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
150 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
151 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
152 | # CONFIG_INLINE_READ_LOCK is not set | ||
153 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
154 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
155 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
156 | CONFIG_INLINE_READ_UNLOCK=y | ||
157 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
158 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
159 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
160 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
161 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
162 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
165 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
166 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
167 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
168 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
136 | # CONFIG_FREEZER is not set | 170 | # CONFIG_FREEZER is not set |
137 | 171 | ||
138 | # | 172 | # |
@@ -188,6 +222,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
188 | CONFIG_MEMORY_START=0x08000000 | 222 | CONFIG_MEMORY_START=0x08000000 |
189 | CONFIG_MEMORY_SIZE=0x08000000 | 223 | CONFIG_MEMORY_SIZE=0x08000000 |
190 | CONFIG_29BIT=y | 224 | CONFIG_29BIT=y |
225 | # CONFIG_PMB_ENABLE is not set | ||
191 | # CONFIG_X2TLB is not set | 226 | # CONFIG_X2TLB is not set |
192 | CONFIG_VSYSCALL=y | 227 | CONFIG_VSYSCALL=y |
193 | CONFIG_ARCH_FLATMEM_ENABLE=y | 228 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -212,8 +247,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
212 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 247 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
213 | CONFIG_ZONE_DMA_FLAG=0 | 248 | CONFIG_ZONE_DMA_FLAG=0 |
214 | CONFIG_NR_QUICK=2 | 249 | CONFIG_NR_QUICK=2 |
215 | CONFIG_HAVE_MLOCK=y | ||
216 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
217 | # CONFIG_KSM is not set | 250 | # CONFIG_KSM is not set |
218 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 251 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
219 | 252 | ||
@@ -247,7 +280,6 @@ CONFIG_SH_KFR2R09=y | |||
247 | # | 280 | # |
248 | # CONFIG_SH_TIMER_TMU is not set | 281 | # CONFIG_SH_TIMER_TMU is not set |
249 | CONFIG_SH_TIMER_CMT=y | 282 | CONFIG_SH_TIMER_CMT=y |
250 | CONFIG_SH_PCLK_FREQ=33333333 | ||
251 | CONFIG_SH_CLK_CPG=y | 283 | CONFIG_SH_CLK_CPG=y |
252 | # CONFIG_NO_HZ is not set | 284 | # CONFIG_NO_HZ is not set |
253 | # CONFIG_HIGH_RES_TIMERS is not set | 285 | # CONFIG_HIGH_RES_TIMERS is not set |
@@ -429,6 +461,7 @@ CONFIG_HAVE_IDE=y | |||
429 | CONFIG_INPUT=y | 461 | CONFIG_INPUT=y |
430 | # CONFIG_INPUT_FF_MEMLESS is not set | 462 | # CONFIG_INPUT_FF_MEMLESS is not set |
431 | # CONFIG_INPUT_POLLDEV is not set | 463 | # CONFIG_INPUT_POLLDEV is not set |
464 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
432 | 465 | ||
433 | # | 466 | # |
434 | # Userland interfaces | 467 | # Userland interfaces |
@@ -520,7 +553,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
520 | # | 553 | # |
521 | # Miscellaneous I2C Chip support | 554 | # Miscellaneous I2C Chip support |
522 | # | 555 | # |
523 | # CONFIG_DS1682 is not set | ||
524 | # CONFIG_SENSORS_TSL2550 is not set | 556 | # CONFIG_SENSORS_TSL2550 is not set |
525 | # CONFIG_I2C_DEBUG_CORE is not set | 557 | # CONFIG_I2C_DEBUG_CORE is not set |
526 | # CONFIG_I2C_DEBUG_ALGO is not set | 558 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -575,16 +607,19 @@ CONFIG_SSB_POSSIBLE=y | |||
575 | # | 607 | # |
576 | # CONFIG_MFD_CORE is not set | 608 | # CONFIG_MFD_CORE is not set |
577 | # CONFIG_MFD_SM501 is not set | 609 | # CONFIG_MFD_SM501 is not set |
610 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
578 | # CONFIG_HTC_PASIC3 is not set | 611 | # CONFIG_HTC_PASIC3 is not set |
579 | # CONFIG_TPS65010 is not set | 612 | # CONFIG_TPS65010 is not set |
580 | # CONFIG_TWL4030_CORE is not set | 613 | # CONFIG_TWL4030_CORE is not set |
581 | # CONFIG_MFD_TMIO is not set | 614 | # CONFIG_MFD_TMIO is not set |
582 | # CONFIG_PMIC_DA903X is not set | 615 | # CONFIG_PMIC_DA903X is not set |
616 | # CONFIG_PMIC_ADP5520 is not set | ||
583 | # CONFIG_MFD_WM8400 is not set | 617 | # CONFIG_MFD_WM8400 is not set |
584 | # CONFIG_MFD_WM831X is not set | 618 | # CONFIG_MFD_WM831X is not set |
585 | # CONFIG_MFD_WM8350_I2C is not set | 619 | # CONFIG_MFD_WM8350_I2C is not set |
586 | # CONFIG_MFD_PCF50633 is not set | 620 | # CONFIG_MFD_PCF50633 is not set |
587 | # CONFIG_AB3100_CORE is not set | 621 | # CONFIG_AB3100_CORE is not set |
622 | # CONFIG_MFD_88PM8607 is not set | ||
588 | # CONFIG_REGULATOR is not set | 623 | # CONFIG_REGULATOR is not set |
589 | # CONFIG_MEDIA_SUPPORT is not set | 624 | # CONFIG_MEDIA_SUPPORT is not set |
590 | 625 | ||
@@ -650,10 +685,12 @@ CONFIG_USB_GADGET_DUALSPEED=y | |||
650 | # CONFIG_USB_ETH is not set | 685 | # CONFIG_USB_ETH is not set |
651 | # CONFIG_USB_GADGETFS is not set | 686 | # CONFIG_USB_GADGETFS is not set |
652 | # CONFIG_USB_FILE_STORAGE is not set | 687 | # CONFIG_USB_FILE_STORAGE is not set |
688 | # CONFIG_USB_MASS_STORAGE is not set | ||
653 | # CONFIG_USB_G_SERIAL is not set | 689 | # CONFIG_USB_G_SERIAL is not set |
654 | # CONFIG_USB_MIDI_GADGET is not set | 690 | # CONFIG_USB_MIDI_GADGET is not set |
655 | # CONFIG_USB_G_PRINTER is not set | 691 | # CONFIG_USB_G_PRINTER is not set |
656 | CONFIG_USB_CDC_COMPOSITE=y | 692 | CONFIG_USB_CDC_COMPOSITE=y |
693 | # CONFIG_USB_G_MULTI is not set | ||
657 | 694 | ||
658 | # | 695 | # |
659 | # OTG and related infrastructure | 696 | # OTG and related infrastructure |
@@ -725,7 +762,7 @@ CONFIG_FRAME_WARN=1024 | |||
725 | CONFIG_DEBUG_FS=y | 762 | CONFIG_DEBUG_FS=y |
726 | # CONFIG_HEADERS_CHECK is not set | 763 | # CONFIG_HEADERS_CHECK is not set |
727 | # CONFIG_DEBUG_KERNEL is not set | 764 | # CONFIG_DEBUG_KERNEL is not set |
728 | # CONFIG_DEBUG_BUGVERBOSE is not set | 765 | CONFIG_DEBUG_BUGVERBOSE=y |
729 | # CONFIG_DEBUG_MEMORY_INIT is not set | 766 | # CONFIG_DEBUG_MEMORY_INIT is not set |
730 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 767 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
731 | # CONFIG_LATENCYTOP is not set | 768 | # CONFIG_LATENCYTOP is not set |
@@ -743,7 +780,6 @@ CONFIG_TRACING_SUPPORT=y | |||
743 | # CONFIG_SAMPLES is not set | 780 | # CONFIG_SAMPLES is not set |
744 | CONFIG_HAVE_ARCH_KGDB=y | 781 | CONFIG_HAVE_ARCH_KGDB=y |
745 | # CONFIG_SH_STANDARD_BIOS is not set | 782 | # CONFIG_SH_STANDARD_BIOS is not set |
746 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
747 | # CONFIG_DWARF_UNWINDER is not set | 783 | # CONFIG_DWARF_UNWINDER is not set |
748 | 784 | ||
749 | # | 785 | # |
@@ -752,7 +788,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
752 | # CONFIG_KEYS is not set | 788 | # CONFIG_KEYS is not set |
753 | # CONFIG_SECURITY is not set | 789 | # CONFIG_SECURITY is not set |
754 | # CONFIG_SECURITYFS is not set | 790 | # CONFIG_SECURITYFS is not set |
755 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 791 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
792 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
793 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
794 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
795 | CONFIG_DEFAULT_SECURITY="" | ||
756 | # CONFIG_CRYPTO is not set | 796 | # CONFIG_CRYPTO is not set |
757 | # CONFIG_BINARY_PRINTF is not set | 797 | # CONFIG_BINARY_PRINTF is not set |
758 | 798 | ||
diff --git a/arch/sh/configs/kfr2r09_defconfig b/arch/sh/configs/kfr2r09_defconfig index 8ae65d294b1..f22be494ed9 100644 --- a/arch/sh/configs/kfr2r09_defconfig +++ b/arch/sh/configs/kfr2r09_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Fri Sep 25 11:54:22 2009 | 4 | # Mon Jan 4 11:32:55 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -62,6 +64,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
62 | # | 64 | # |
63 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
64 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
65 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
66 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
67 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -104,6 +107,7 @@ CONFIG_EVENTFD=y | |||
104 | CONFIG_SHMEM=y | 107 | CONFIG_SHMEM=y |
105 | CONFIG_AIO=y | 108 | CONFIG_AIO=y |
106 | CONFIG_HAVE_PERF_EVENTS=y | 109 | CONFIG_HAVE_PERF_EVENTS=y |
110 | CONFIG_PERF_USE_VMALLOC=y | ||
107 | 111 | ||
108 | # | 112 | # |
109 | # Kernel Performance Events And Counters | 113 | # Kernel Performance Events And Counters |
@@ -121,6 +125,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
121 | CONFIG_HAVE_KPROBES=y | 125 | CONFIG_HAVE_KPROBES=y |
122 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
128 | CONFIG_HAVE_DMA_ATTRS=y | ||
124 | CONFIG_HAVE_CLK=y | 129 | CONFIG_HAVE_CLK=y |
125 | CONFIG_HAVE_DMA_API_DEBUG=y | 130 | CONFIG_HAVE_DMA_API_DEBUG=y |
126 | 131 | ||
@@ -148,14 +153,41 @@ CONFIG_LBDAF=y | |||
148 | # IO Schedulers | 153 | # IO Schedulers |
149 | # | 154 | # |
150 | CONFIG_IOSCHED_NOOP=y | 155 | CONFIG_IOSCHED_NOOP=y |
151 | # CONFIG_IOSCHED_AS is not set | ||
152 | # CONFIG_IOSCHED_DEADLINE is not set | 156 | # CONFIG_IOSCHED_DEADLINE is not set |
153 | # CONFIG_IOSCHED_CFQ is not set | 157 | # CONFIG_IOSCHED_CFQ is not set |
154 | # CONFIG_DEFAULT_AS is not set | ||
155 | # CONFIG_DEFAULT_DEADLINE is not set | 158 | # CONFIG_DEFAULT_DEADLINE is not set |
156 | # CONFIG_DEFAULT_CFQ is not set | 159 | # CONFIG_DEFAULT_CFQ is not set |
157 | CONFIG_DEFAULT_NOOP=y | 160 | CONFIG_DEFAULT_NOOP=y |
158 | CONFIG_DEFAULT_IOSCHED="noop" | 161 | CONFIG_DEFAULT_IOSCHED="noop" |
162 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
163 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
165 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
169 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
170 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
172 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
173 | # CONFIG_INLINE_READ_LOCK is not set | ||
174 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
175 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
177 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
178 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
179 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
181 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
183 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
187 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
188 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
190 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
159 | # CONFIG_FREEZER is not set | 191 | # CONFIG_FREEZER is not set |
160 | 192 | ||
161 | # | 193 | # |
@@ -211,6 +243,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
211 | CONFIG_MEMORY_START=0x08000000 | 243 | CONFIG_MEMORY_START=0x08000000 |
212 | CONFIG_MEMORY_SIZE=0x08000000 | 244 | CONFIG_MEMORY_SIZE=0x08000000 |
213 | CONFIG_29BIT=y | 245 | CONFIG_29BIT=y |
246 | # CONFIG_PMB_ENABLE is not set | ||
214 | # CONFIG_X2TLB is not set | 247 | # CONFIG_X2TLB is not set |
215 | CONFIG_VSYSCALL=y | 248 | CONFIG_VSYSCALL=y |
216 | CONFIG_ARCH_FLATMEM_ENABLE=y | 249 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -235,8 +268,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
235 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 268 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
236 | CONFIG_ZONE_DMA_FLAG=0 | 269 | CONFIG_ZONE_DMA_FLAG=0 |
237 | CONFIG_NR_QUICK=2 | 270 | CONFIG_NR_QUICK=2 |
238 | CONFIG_HAVE_MLOCK=y | ||
239 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
240 | # CONFIG_KSM is not set | 271 | # CONFIG_KSM is not set |
241 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 272 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
242 | 273 | ||
@@ -270,7 +301,6 @@ CONFIG_SH_KFR2R09=y | |||
270 | # | 301 | # |
271 | # CONFIG_SH_TIMER_TMU is not set | 302 | # CONFIG_SH_TIMER_TMU is not set |
272 | CONFIG_SH_TIMER_CMT=y | 303 | CONFIG_SH_TIMER_CMT=y |
273 | CONFIG_SH_PCLK_FREQ=33333333 | ||
274 | CONFIG_SH_CLK_CPG=y | 304 | CONFIG_SH_CLK_CPG=y |
275 | CONFIG_TICK_ONESHOT=y | 305 | CONFIG_TICK_ONESHOT=y |
276 | CONFIG_NO_HZ=y | 306 | CONFIG_NO_HZ=y |
@@ -534,6 +564,10 @@ CONFIG_MTD_UBI_BEB_RESERVE=1 | |||
534 | CONFIG_BLK_DEV=y | 564 | CONFIG_BLK_DEV=y |
535 | # CONFIG_BLK_DEV_COW_COMMON is not set | 565 | # CONFIG_BLK_DEV_COW_COMMON is not set |
536 | # CONFIG_BLK_DEV_LOOP is not set | 566 | # CONFIG_BLK_DEV_LOOP is not set |
567 | |||
568 | # | ||
569 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
570 | # | ||
537 | # CONFIG_BLK_DEV_NBD is not set | 571 | # CONFIG_BLK_DEV_NBD is not set |
538 | # CONFIG_BLK_DEV_RAM is not set | 572 | # CONFIG_BLK_DEV_RAM is not set |
539 | # CONFIG_CDROM_PKTCDVD is not set | 573 | # CONFIG_CDROM_PKTCDVD is not set |
@@ -562,6 +596,7 @@ CONFIG_HAVE_IDE=y | |||
562 | CONFIG_INPUT=y | 596 | CONFIG_INPUT=y |
563 | # CONFIG_INPUT_FF_MEMLESS is not set | 597 | # CONFIG_INPUT_FF_MEMLESS is not set |
564 | # CONFIG_INPUT_POLLDEV is not set | 598 | # CONFIG_INPUT_POLLDEV is not set |
599 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
565 | 600 | ||
566 | # | 601 | # |
567 | # Userland interfaces | 602 | # Userland interfaces |
@@ -668,7 +703,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
668 | # | 703 | # |
669 | # Miscellaneous I2C Chip support | 704 | # Miscellaneous I2C Chip support |
670 | # | 705 | # |
671 | # CONFIG_DS1682 is not set | ||
672 | # CONFIG_SENSORS_TSL2550 is not set | 706 | # CONFIG_SENSORS_TSL2550 is not set |
673 | # CONFIG_I2C_DEBUG_CORE is not set | 707 | # CONFIG_I2C_DEBUG_CORE is not set |
674 | # CONFIG_I2C_DEBUG_ALGO is not set | 708 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -723,16 +757,19 @@ CONFIG_SSB_POSSIBLE=y | |||
723 | # | 757 | # |
724 | # CONFIG_MFD_CORE is not set | 758 | # CONFIG_MFD_CORE is not set |
725 | # CONFIG_MFD_SM501 is not set | 759 | # CONFIG_MFD_SM501 is not set |
760 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
726 | # CONFIG_HTC_PASIC3 is not set | 761 | # CONFIG_HTC_PASIC3 is not set |
727 | # CONFIG_TPS65010 is not set | 762 | # CONFIG_TPS65010 is not set |
728 | # CONFIG_TWL4030_CORE is not set | 763 | # CONFIG_TWL4030_CORE is not set |
729 | # CONFIG_MFD_TMIO is not set | 764 | # CONFIG_MFD_TMIO is not set |
730 | # CONFIG_PMIC_DA903X is not set | 765 | # CONFIG_PMIC_DA903X is not set |
766 | # CONFIG_PMIC_ADP5520 is not set | ||
731 | # CONFIG_MFD_WM8400 is not set | 767 | # CONFIG_MFD_WM8400 is not set |
732 | # CONFIG_MFD_WM831X is not set | 768 | # CONFIG_MFD_WM831X is not set |
733 | # CONFIG_MFD_WM8350_I2C is not set | 769 | # CONFIG_MFD_WM8350_I2C is not set |
734 | # CONFIG_MFD_PCF50633 is not set | 770 | # CONFIG_MFD_PCF50633 is not set |
735 | # CONFIG_AB3100_CORE is not set | 771 | # CONFIG_AB3100_CORE is not set |
772 | # CONFIG_MFD_88PM8607 is not set | ||
736 | # CONFIG_REGULATOR is not set | 773 | # CONFIG_REGULATOR is not set |
737 | # CONFIG_MEDIA_SUPPORT is not set | 774 | # CONFIG_MEDIA_SUPPORT is not set |
738 | 775 | ||
@@ -847,10 +884,12 @@ CONFIG_USB_GADGET_DUALSPEED=y | |||
847 | # CONFIG_USB_ETH is not set | 884 | # CONFIG_USB_ETH is not set |
848 | # CONFIG_USB_GADGETFS is not set | 885 | # CONFIG_USB_GADGETFS is not set |
849 | # CONFIG_USB_FILE_STORAGE is not set | 886 | # CONFIG_USB_FILE_STORAGE is not set |
887 | # CONFIG_USB_MASS_STORAGE is not set | ||
850 | # CONFIG_USB_G_SERIAL is not set | 888 | # CONFIG_USB_G_SERIAL is not set |
851 | # CONFIG_USB_MIDI_GADGET is not set | 889 | # CONFIG_USB_MIDI_GADGET is not set |
852 | # CONFIG_USB_G_PRINTER is not set | 890 | # CONFIG_USB_G_PRINTER is not set |
853 | CONFIG_USB_CDC_COMPOSITE=y | 891 | CONFIG_USB_CDC_COMPOSITE=m |
892 | # CONFIG_USB_G_MULTI is not set | ||
854 | 893 | ||
855 | # | 894 | # |
856 | # OTG and related infrastructure | 895 | # OTG and related infrastructure |
@@ -875,6 +914,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
875 | # CONFIG_MMC_SDHCI is not set | 914 | # CONFIG_MMC_SDHCI is not set |
876 | # CONFIG_MMC_AT91 is not set | 915 | # CONFIG_MMC_AT91 is not set |
877 | # CONFIG_MMC_ATMELMCI is not set | 916 | # CONFIG_MMC_ATMELMCI is not set |
917 | # CONFIG_MMC_TMIO is not set | ||
878 | # CONFIG_MEMSTICK is not set | 918 | # CONFIG_MEMSTICK is not set |
879 | # CONFIG_NEW_LEDS is not set | 919 | # CONFIG_NEW_LEDS is not set |
880 | # CONFIG_ACCESSIBILITY is not set | 920 | # CONFIG_ACCESSIBILITY is not set |
@@ -906,6 +946,7 @@ CONFIG_RTC_INTF_DEV=y | |||
906 | # CONFIG_RTC_DRV_PCF8563 is not set | 946 | # CONFIG_RTC_DRV_PCF8563 is not set |
907 | # CONFIG_RTC_DRV_PCF8583 is not set | 947 | # CONFIG_RTC_DRV_PCF8583 is not set |
908 | # CONFIG_RTC_DRV_M41T80 is not set | 948 | # CONFIG_RTC_DRV_M41T80 is not set |
949 | # CONFIG_RTC_DRV_BQ32K is not set | ||
909 | # CONFIG_RTC_DRV_S35390A is not set | 950 | # CONFIG_RTC_DRV_S35390A is not set |
910 | # CONFIG_RTC_DRV_FM3130 is not set | 951 | # CONFIG_RTC_DRV_FM3130 is not set |
911 | # CONFIG_RTC_DRV_RX8581 is not set | 952 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -926,7 +967,9 @@ CONFIG_RTC_INTF_DEV=y | |||
926 | # CONFIG_RTC_DRV_M48T86 is not set | 967 | # CONFIG_RTC_DRV_M48T86 is not set |
927 | # CONFIG_RTC_DRV_M48T35 is not set | 968 | # CONFIG_RTC_DRV_M48T35 is not set |
928 | # CONFIG_RTC_DRV_M48T59 is not set | 969 | # CONFIG_RTC_DRV_M48T59 is not set |
970 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
929 | # CONFIG_RTC_DRV_BQ4802 is not set | 971 | # CONFIG_RTC_DRV_BQ4802 is not set |
972 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
930 | # CONFIG_RTC_DRV_V3020 is not set | 973 | # CONFIG_RTC_DRV_V3020 is not set |
931 | 974 | ||
932 | # | 975 | # |
@@ -953,6 +996,7 @@ CONFIG_UIO_PDRV_GENIRQ=y | |||
953 | # CONFIG_EXT2_FS is not set | 996 | # CONFIG_EXT2_FS is not set |
954 | # CONFIG_EXT3_FS is not set | 997 | # CONFIG_EXT3_FS is not set |
955 | # CONFIG_EXT4_FS is not set | 998 | # CONFIG_EXT4_FS is not set |
999 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
956 | # CONFIG_REISERFS_FS is not set | 1000 | # CONFIG_REISERFS_FS is not set |
957 | # CONFIG_JFS_FS is not set | 1001 | # CONFIG_JFS_FS is not set |
958 | # CONFIG_FS_POSIX_ACL is not set | 1002 | # CONFIG_FS_POSIX_ACL is not set |
@@ -1027,7 +1071,7 @@ CONFIG_FRAME_WARN=1024 | |||
1027 | CONFIG_DEBUG_FS=y | 1071 | CONFIG_DEBUG_FS=y |
1028 | # CONFIG_HEADERS_CHECK is not set | 1072 | # CONFIG_HEADERS_CHECK is not set |
1029 | # CONFIG_DEBUG_KERNEL is not set | 1073 | # CONFIG_DEBUG_KERNEL is not set |
1030 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1074 | CONFIG_DEBUG_BUGVERBOSE=y |
1031 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1075 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1032 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1076 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1033 | # CONFIG_LATENCYTOP is not set | 1077 | # CONFIG_LATENCYTOP is not set |
@@ -1045,7 +1089,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1045 | # CONFIG_SAMPLES is not set | 1089 | # CONFIG_SAMPLES is not set |
1046 | CONFIG_HAVE_ARCH_KGDB=y | 1090 | CONFIG_HAVE_ARCH_KGDB=y |
1047 | # CONFIG_SH_STANDARD_BIOS is not set | 1091 | # CONFIG_SH_STANDARD_BIOS is not set |
1048 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1049 | # CONFIG_DWARF_UNWINDER is not set | 1092 | # CONFIG_DWARF_UNWINDER is not set |
1050 | 1093 | ||
1051 | # | 1094 | # |
@@ -1054,7 +1097,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1054 | # CONFIG_KEYS is not set | 1097 | # CONFIG_KEYS is not set |
1055 | # CONFIG_SECURITY is not set | 1098 | # CONFIG_SECURITY is not set |
1056 | # CONFIG_SECURITYFS is not set | 1099 | # CONFIG_SECURITYFS is not set |
1057 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1100 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1101 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1102 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1103 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1104 | CONFIG_DEFAULT_SECURITY="" | ||
1058 | # CONFIG_CRYPTO is not set | 1105 | # CONFIG_CRYPTO is not set |
1059 | # CONFIG_BINARY_PRINTF is not set | 1106 | # CONFIG_BINARY_PRINTF is not set |
1060 | 1107 | ||
diff --git a/arch/sh/configs/landisk_defconfig b/arch/sh/configs/landisk_defconfig index c2a9a399638..2a42d4977fe 100644 --- a/arch/sh/configs/landisk_defconfig +++ b/arch/sh/configs/landisk_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:05:49 2009 | 4 | # Mon Jan 4 11:35:31 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -60,6 +62,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
60 | # | 62 | # |
61 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -94,6 +97,7 @@ CONFIG_EVENTFD=y | |||
94 | CONFIG_SHMEM=y | 97 | CONFIG_SHMEM=y |
95 | CONFIG_AIO=y | 98 | CONFIG_AIO=y |
96 | CONFIG_HAVE_PERF_EVENTS=y | 99 | CONFIG_HAVE_PERF_EVENTS=y |
100 | CONFIG_PERF_USE_VMALLOC=y | ||
97 | 101 | ||
98 | # | 102 | # |
99 | # Kernel Performance Events And Counters | 103 | # Kernel Performance Events And Counters |
@@ -113,6 +117,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
113 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
114 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
115 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
120 | CONFIG_HAVE_DMA_ATTRS=y | ||
116 | CONFIG_HAVE_CLK=y | 121 | CONFIG_HAVE_CLK=y |
117 | CONFIG_HAVE_DMA_API_DEBUG=y | 122 | CONFIG_HAVE_DMA_API_DEBUG=y |
118 | 123 | ||
@@ -139,14 +144,41 @@ CONFIG_LBDAF=y | |||
139 | # IO Schedulers | 144 | # IO Schedulers |
140 | # | 145 | # |
141 | CONFIG_IOSCHED_NOOP=y | 146 | CONFIG_IOSCHED_NOOP=y |
142 | CONFIG_IOSCHED_AS=y | ||
143 | CONFIG_IOSCHED_DEADLINE=y | 147 | CONFIG_IOSCHED_DEADLINE=y |
144 | CONFIG_IOSCHED_CFQ=y | 148 | CONFIG_IOSCHED_CFQ=y |
145 | CONFIG_DEFAULT_AS=y | ||
146 | # CONFIG_DEFAULT_DEADLINE is not set | 149 | # CONFIG_DEFAULT_DEADLINE is not set |
147 | # CONFIG_DEFAULT_CFQ is not set | 150 | CONFIG_DEFAULT_CFQ=y |
148 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="cfq" |
153 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
154 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
159 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
160 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
161 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
163 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
164 | # CONFIG_INLINE_READ_LOCK is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
168 | CONFIG_INLINE_READ_UNLOCK=y | ||
169 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
170 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
171 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
172 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
177 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
178 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
179 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
181 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
150 | # CONFIG_FREEZER is not set | 182 | # CONFIG_FREEZER is not set |
151 | 183 | ||
152 | # | 184 | # |
@@ -222,8 +254,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
222 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 254 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
223 | CONFIG_ZONE_DMA_FLAG=0 | 255 | CONFIG_ZONE_DMA_FLAG=0 |
224 | CONFIG_NR_QUICK=2 | 256 | CONFIG_NR_QUICK=2 |
225 | CONFIG_HAVE_MLOCK=y | ||
226 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
227 | # CONFIG_KSM is not set | 257 | # CONFIG_KSM is not set |
228 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 258 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
229 | 259 | ||
@@ -311,7 +341,6 @@ CONFIG_GUSA=y | |||
311 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 341 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
312 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 342 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
313 | CONFIG_ENTRY_OFFSET=0x00001000 | 343 | CONFIG_ENTRY_OFFSET=0x00001000 |
314 | # CONFIG_UBC_WAKEUP is not set | ||
315 | # CONFIG_CMDLINE_OVERWRITE is not set | 344 | # CONFIG_CMDLINE_OVERWRITE is not set |
316 | # CONFIG_CMDLINE_EXTEND is not set | 345 | # CONFIG_CMDLINE_EXTEND is not set |
317 | 346 | ||
@@ -319,14 +348,12 @@ CONFIG_ENTRY_OFFSET=0x00001000 | |||
319 | # Bus options | 348 | # Bus options |
320 | # | 349 | # |
321 | CONFIG_PCI=y | 350 | CONFIG_PCI=y |
322 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
323 | # CONFIG_PCIEPORTBUS is not set | 351 | # CONFIG_PCIEPORTBUS is not set |
324 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 352 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
325 | CONFIG_PCI_LEGACY=y | 353 | CONFIG_PCI_LEGACY=y |
326 | # CONFIG_PCI_STUB is not set | 354 | # CONFIG_PCI_STUB is not set |
327 | # CONFIG_PCI_IOV is not set | 355 | # CONFIG_PCI_IOV is not set |
328 | CONFIG_PCCARD=y | 356 | CONFIG_PCCARD=y |
329 | # CONFIG_PCMCIA_DEBUG is not set | ||
330 | CONFIG_PCMCIA=y | 357 | CONFIG_PCMCIA=y |
331 | CONFIG_PCMCIA_LOAD_CIS=y | 358 | CONFIG_PCMCIA_LOAD_CIS=y |
332 | CONFIG_PCMCIA_IOCTL=y | 359 | CONFIG_PCMCIA_IOCTL=y |
@@ -461,9 +488,6 @@ CONFIG_ATALK=m | |||
461 | # CONFIG_AF_RXRPC is not set | 488 | # CONFIG_AF_RXRPC is not set |
462 | CONFIG_WIRELESS=y | 489 | CONFIG_WIRELESS=y |
463 | # CONFIG_CFG80211 is not set | 490 | # CONFIG_CFG80211 is not set |
464 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
465 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
466 | # CONFIG_WIRELESS_EXT is not set | ||
467 | # CONFIG_LIB80211 is not set | 491 | # CONFIG_LIB80211 is not set |
468 | 492 | ||
469 | # | 493 | # |
@@ -498,6 +522,10 @@ CONFIG_BLK_DEV=y | |||
498 | # CONFIG_BLK_DEV_COW_COMMON is not set | 522 | # CONFIG_BLK_DEV_COW_COMMON is not set |
499 | CONFIG_BLK_DEV_LOOP=y | 523 | CONFIG_BLK_DEV_LOOP=y |
500 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 524 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
525 | |||
526 | # | ||
527 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
528 | # | ||
501 | # CONFIG_BLK_DEV_NBD is not set | 529 | # CONFIG_BLK_DEV_NBD is not set |
502 | # CONFIG_BLK_DEV_SX8 is not set | 530 | # CONFIG_BLK_DEV_SX8 is not set |
503 | # CONFIG_BLK_DEV_UB is not set | 531 | # CONFIG_BLK_DEV_UB is not set |
@@ -618,8 +646,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
618 | # CONFIG_ISCSI_TCP is not set | 646 | # CONFIG_ISCSI_TCP is not set |
619 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 647 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
620 | # CONFIG_SCSI_BNX2_ISCSI is not set | 648 | # CONFIG_SCSI_BNX2_ISCSI is not set |
649 | # CONFIG_BE2ISCSI is not set | ||
621 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 650 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
651 | # CONFIG_SCSI_HPSA is not set | ||
622 | # CONFIG_SCSI_3W_9XXX is not set | 652 | # CONFIG_SCSI_3W_9XXX is not set |
653 | # CONFIG_SCSI_3W_SAS is not set | ||
623 | # CONFIG_SCSI_ACARD is not set | 654 | # CONFIG_SCSI_ACARD is not set |
624 | # CONFIG_SCSI_AACRAID is not set | 655 | # CONFIG_SCSI_AACRAID is not set |
625 | # CONFIG_SCSI_AIC7XXX is not set | 656 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -652,7 +683,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
652 | # CONFIG_SCSI_NSP32 is not set | 683 | # CONFIG_SCSI_NSP32 is not set |
653 | # CONFIG_SCSI_DEBUG is not set | 684 | # CONFIG_SCSI_DEBUG is not set |
654 | # CONFIG_SCSI_PMCRAID is not set | 685 | # CONFIG_SCSI_PMCRAID is not set |
686 | # CONFIG_SCSI_PM8001 is not set | ||
655 | # CONFIG_SCSI_SRP is not set | 687 | # CONFIG_SCSI_SRP is not set |
688 | # CONFIG_SCSI_BFA_FC is not set | ||
656 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 689 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
657 | # CONFIG_SCSI_DH is not set | 690 | # CONFIG_SCSI_DH is not set |
658 | # CONFIG_SCSI_OSD_INITIATOR is not set | 691 | # CONFIG_SCSI_OSD_INITIATOR is not set |
@@ -733,6 +766,7 @@ CONFIG_8139CP=y | |||
733 | # CONFIG_SUNDANCE is not set | 766 | # CONFIG_SUNDANCE is not set |
734 | # CONFIG_TLAN is not set | 767 | # CONFIG_TLAN is not set |
735 | # CONFIG_KS8842 is not set | 768 | # CONFIG_KS8842 is not set |
769 | # CONFIG_KS8851_MLL is not set | ||
736 | # CONFIG_VIA_RHINE is not set | 770 | # CONFIG_VIA_RHINE is not set |
737 | # CONFIG_SC92031 is not set | 771 | # CONFIG_SC92031 is not set |
738 | # CONFIG_ATL2 is not set | 772 | # CONFIG_ATL2 is not set |
@@ -781,8 +815,13 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
781 | # CONFIG_BE2NET is not set | 815 | # CONFIG_BE2NET is not set |
782 | # CONFIG_TR is not set | 816 | # CONFIG_TR is not set |
783 | CONFIG_WLAN=y | 817 | CONFIG_WLAN=y |
784 | # CONFIG_WLAN_PRE80211 is not set | 818 | # CONFIG_PCMCIA_RAYCS is not set |
785 | # CONFIG_WLAN_80211 is not set | 819 | # CONFIG_ATMEL is not set |
820 | # CONFIG_AIRO_CS is not set | ||
821 | # CONFIG_PCMCIA_WL3501 is not set | ||
822 | # CONFIG_PRISM54 is not set | ||
823 | # CONFIG_USB_ZD1201 is not set | ||
824 | # CONFIG_HOSTAP is not set | ||
786 | 825 | ||
787 | # | 826 | # |
788 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 827 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -806,6 +845,7 @@ CONFIG_USB_RTL8150=m | |||
806 | # CONFIG_NETCONSOLE is not set | 845 | # CONFIG_NETCONSOLE is not set |
807 | # CONFIG_NETPOLL is not set | 846 | # CONFIG_NETPOLL is not set |
808 | # CONFIG_NET_POLL_CONTROLLER is not set | 847 | # CONFIG_NET_POLL_CONTROLLER is not set |
848 | # CONFIG_VMXNET3 is not set | ||
809 | # CONFIG_ISDN is not set | 849 | # CONFIG_ISDN is not set |
810 | # CONFIG_PHONE is not set | 850 | # CONFIG_PHONE is not set |
811 | 851 | ||
@@ -815,6 +855,7 @@ CONFIG_USB_RTL8150=m | |||
815 | CONFIG_INPUT=y | 855 | CONFIG_INPUT=y |
816 | CONFIG_INPUT_FF_MEMLESS=m | 856 | CONFIG_INPUT_FF_MEMLESS=m |
817 | # CONFIG_INPUT_POLLDEV is not set | 857 | # CONFIG_INPUT_POLLDEV is not set |
858 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
818 | 859 | ||
819 | # | 860 | # |
820 | # Userland interfaces | 861 | # Userland interfaces |
@@ -933,6 +974,7 @@ CONFIG_SSB_POSSIBLE=y | |||
933 | # | 974 | # |
934 | # CONFIG_MFD_CORE is not set | 975 | # CONFIG_MFD_CORE is not set |
935 | # CONFIG_MFD_SM501 is not set | 976 | # CONFIG_MFD_SM501 is not set |
977 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
936 | # CONFIG_HTC_PASIC3 is not set | 978 | # CONFIG_HTC_PASIC3 is not set |
937 | # CONFIG_MFD_TMIO is not set | 979 | # CONFIG_MFD_TMIO is not set |
938 | # CONFIG_REGULATOR is not set | 980 | # CONFIG_REGULATOR is not set |
@@ -1371,10 +1413,11 @@ CONFIG_FRAME_WARN=1024 | |||
1371 | # CONFIG_DEBUG_FS is not set | 1413 | # CONFIG_DEBUG_FS is not set |
1372 | # CONFIG_HEADERS_CHECK is not set | 1414 | # CONFIG_HEADERS_CHECK is not set |
1373 | # CONFIG_DEBUG_KERNEL is not set | 1415 | # CONFIG_DEBUG_KERNEL is not set |
1374 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1416 | CONFIG_DEBUG_BUGVERBOSE=y |
1375 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1417 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1376 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1418 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1377 | # CONFIG_LATENCYTOP is not set | 1419 | # CONFIG_LATENCYTOP is not set |
1420 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1378 | CONFIG_HAVE_FUNCTION_TRACER=y | 1421 | CONFIG_HAVE_FUNCTION_TRACER=y |
1379 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1422 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
1380 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 1423 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -1387,8 +1430,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1387 | # CONFIG_SAMPLES is not set | 1430 | # CONFIG_SAMPLES is not set |
1388 | CONFIG_HAVE_ARCH_KGDB=y | 1431 | CONFIG_HAVE_ARCH_KGDB=y |
1389 | CONFIG_SH_STANDARD_BIOS=y | 1432 | CONFIG_SH_STANDARD_BIOS=y |
1390 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1391 | # CONFIG_EARLY_PRINTK is not set | ||
1392 | # CONFIG_DWARF_UNWINDER is not set | 1433 | # CONFIG_DWARF_UNWINDER is not set |
1393 | 1434 | ||
1394 | # | 1435 | # |
@@ -1397,7 +1438,11 @@ CONFIG_SH_STANDARD_BIOS=y | |||
1397 | # CONFIG_KEYS is not set | 1438 | # CONFIG_KEYS is not set |
1398 | # CONFIG_SECURITY is not set | 1439 | # CONFIG_SECURITY is not set |
1399 | # CONFIG_SECURITYFS is not set | 1440 | # CONFIG_SECURITYFS is not set |
1400 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1441 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1442 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1443 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1444 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1445 | CONFIG_DEFAULT_SECURITY="" | ||
1401 | CONFIG_CRYPTO=y | 1446 | CONFIG_CRYPTO=y |
1402 | 1447 | ||
1403 | # | 1448 | # |
diff --git a/arch/sh/configs/lboxre2_defconfig b/arch/sh/configs/lboxre2_defconfig index ec0c0b432c7..f2f1f8c73b2 100644 --- a/arch/sh/configs/lboxre2_defconfig +++ b/arch/sh/configs/lboxre2_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:09:59 2009 | 4 | # Mon Jan 4 11:37:01 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -60,6 +62,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
60 | # | 62 | # |
61 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -94,6 +97,7 @@ CONFIG_EVENTFD=y | |||
94 | CONFIG_SHMEM=y | 97 | CONFIG_SHMEM=y |
95 | CONFIG_AIO=y | 98 | CONFIG_AIO=y |
96 | CONFIG_HAVE_PERF_EVENTS=y | 99 | CONFIG_HAVE_PERF_EVENTS=y |
100 | CONFIG_PERF_USE_VMALLOC=y | ||
97 | 101 | ||
98 | # | 102 | # |
99 | # Kernel Performance Events And Counters | 103 | # Kernel Performance Events And Counters |
@@ -113,6 +117,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
113 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
114 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
115 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
120 | CONFIG_HAVE_DMA_ATTRS=y | ||
116 | CONFIG_HAVE_CLK=y | 121 | CONFIG_HAVE_CLK=y |
117 | CONFIG_HAVE_DMA_API_DEBUG=y | 122 | CONFIG_HAVE_DMA_API_DEBUG=y |
118 | 123 | ||
@@ -139,14 +144,41 @@ CONFIG_LBDAF=y | |||
139 | # IO Schedulers | 144 | # IO Schedulers |
140 | # | 145 | # |
141 | CONFIG_IOSCHED_NOOP=y | 146 | CONFIG_IOSCHED_NOOP=y |
142 | CONFIG_IOSCHED_AS=y | ||
143 | CONFIG_IOSCHED_DEADLINE=y | 147 | CONFIG_IOSCHED_DEADLINE=y |
144 | CONFIG_IOSCHED_CFQ=y | 148 | CONFIG_IOSCHED_CFQ=y |
145 | CONFIG_DEFAULT_AS=y | ||
146 | # CONFIG_DEFAULT_DEADLINE is not set | 149 | # CONFIG_DEFAULT_DEADLINE is not set |
147 | # CONFIG_DEFAULT_CFQ is not set | 150 | CONFIG_DEFAULT_CFQ=y |
148 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
149 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="cfq" |
153 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
154 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
159 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
160 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
161 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
163 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
164 | # CONFIG_INLINE_READ_LOCK is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
168 | CONFIG_INLINE_READ_UNLOCK=y | ||
169 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
170 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
171 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
172 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
177 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
178 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
179 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
181 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
150 | # CONFIG_FREEZER is not set | 182 | # CONFIG_FREEZER is not set |
151 | 183 | ||
152 | # | 184 | # |
@@ -222,8 +254,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
222 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 254 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
223 | CONFIG_ZONE_DMA_FLAG=0 | 255 | CONFIG_ZONE_DMA_FLAG=0 |
224 | CONFIG_NR_QUICK=2 | 256 | CONFIG_NR_QUICK=2 |
225 | CONFIG_HAVE_MLOCK=y | ||
226 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
227 | # CONFIG_KSM is not set | 257 | # CONFIG_KSM is not set |
228 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 258 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
229 | 259 | ||
@@ -311,7 +341,6 @@ CONFIG_GUSA=y | |||
311 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 341 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
312 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 342 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
313 | CONFIG_ENTRY_OFFSET=0x00001000 | 343 | CONFIG_ENTRY_OFFSET=0x00001000 |
314 | # CONFIG_UBC_WAKEUP is not set | ||
315 | CONFIG_CMDLINE_OVERWRITE=y | 344 | CONFIG_CMDLINE_OVERWRITE=y |
316 | # CONFIG_CMDLINE_EXTEND is not set | 345 | # CONFIG_CMDLINE_EXTEND is not set |
317 | CONFIG_CMDLINE="console=ttySC1,115200 root=/dev/sda1" | 346 | CONFIG_CMDLINE="console=ttySC1,115200 root=/dev/sda1" |
@@ -320,14 +349,12 @@ CONFIG_CMDLINE="console=ttySC1,115200 root=/dev/sda1" | |||
320 | # Bus options | 349 | # Bus options |
321 | # | 350 | # |
322 | CONFIG_PCI=y | 351 | CONFIG_PCI=y |
323 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
324 | # CONFIG_PCIEPORTBUS is not set | 352 | # CONFIG_PCIEPORTBUS is not set |
325 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 353 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
326 | CONFIG_PCI_LEGACY=y | 354 | CONFIG_PCI_LEGACY=y |
327 | # CONFIG_PCI_STUB is not set | 355 | # CONFIG_PCI_STUB is not set |
328 | # CONFIG_PCI_IOV is not set | 356 | # CONFIG_PCI_IOV is not set |
329 | CONFIG_PCCARD=y | 357 | CONFIG_PCCARD=y |
330 | CONFIG_PCMCIA_DEBUG=y | ||
331 | CONFIG_PCMCIA=y | 358 | CONFIG_PCMCIA=y |
332 | CONFIG_PCMCIA_LOAD_CIS=y | 359 | CONFIG_PCMCIA_LOAD_CIS=y |
333 | CONFIG_PCMCIA_IOCTL=y | 360 | CONFIG_PCMCIA_IOCTL=y |
@@ -459,9 +486,6 @@ CONFIG_NETFILTER_ADVANCED=y | |||
459 | # CONFIG_AF_RXRPC is not set | 486 | # CONFIG_AF_RXRPC is not set |
460 | CONFIG_WIRELESS=y | 487 | CONFIG_WIRELESS=y |
461 | # CONFIG_CFG80211 is not set | 488 | # CONFIG_CFG80211 is not set |
462 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
463 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
464 | # CONFIG_WIRELESS_EXT is not set | ||
465 | # CONFIG_LIB80211 is not set | 489 | # CONFIG_LIB80211 is not set |
466 | 490 | ||
467 | # | 491 | # |
@@ -496,6 +520,10 @@ CONFIG_BLK_DEV=y | |||
496 | # CONFIG_BLK_DEV_COW_COMMON is not set | 520 | # CONFIG_BLK_DEV_COW_COMMON is not set |
497 | CONFIG_BLK_DEV_LOOP=y | 521 | CONFIG_BLK_DEV_LOOP=y |
498 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 522 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
523 | |||
524 | # | ||
525 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
526 | # | ||
499 | # CONFIG_BLK_DEV_NBD is not set | 527 | # CONFIG_BLK_DEV_NBD is not set |
500 | # CONFIG_BLK_DEV_SX8 is not set | 528 | # CONFIG_BLK_DEV_SX8 is not set |
501 | CONFIG_BLK_DEV_RAM=y | 529 | CONFIG_BLK_DEV_RAM=y |
@@ -558,8 +586,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
558 | # CONFIG_ISCSI_TCP is not set | 586 | # CONFIG_ISCSI_TCP is not set |
559 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 587 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
560 | # CONFIG_SCSI_BNX2_ISCSI is not set | 588 | # CONFIG_SCSI_BNX2_ISCSI is not set |
589 | # CONFIG_BE2ISCSI is not set | ||
561 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 590 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
591 | # CONFIG_SCSI_HPSA is not set | ||
562 | # CONFIG_SCSI_3W_9XXX is not set | 592 | # CONFIG_SCSI_3W_9XXX is not set |
593 | # CONFIG_SCSI_3W_SAS is not set | ||
563 | # CONFIG_SCSI_ACARD is not set | 594 | # CONFIG_SCSI_ACARD is not set |
564 | # CONFIG_SCSI_AACRAID is not set | 595 | # CONFIG_SCSI_AACRAID is not set |
565 | # CONFIG_SCSI_AIC7XXX is not set | 596 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -593,7 +624,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
593 | # CONFIG_SCSI_NSP32 is not set | 624 | # CONFIG_SCSI_NSP32 is not set |
594 | # CONFIG_SCSI_DEBUG is not set | 625 | # CONFIG_SCSI_DEBUG is not set |
595 | # CONFIG_SCSI_PMCRAID is not set | 626 | # CONFIG_SCSI_PMCRAID is not set |
627 | # CONFIG_SCSI_PM8001 is not set | ||
596 | # CONFIG_SCSI_SRP is not set | 628 | # CONFIG_SCSI_SRP is not set |
629 | # CONFIG_SCSI_BFA_FC is not set | ||
597 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 630 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
598 | # CONFIG_SCSI_DH is not set | 631 | # CONFIG_SCSI_DH is not set |
599 | # CONFIG_SCSI_OSD_INITIATOR is not set | 632 | # CONFIG_SCSI_OSD_INITIATOR is not set |
@@ -648,15 +681,16 @@ CONFIG_ATA_SFF=y | |||
648 | # CONFIG_PATA_OPTI is not set | 681 | # CONFIG_PATA_OPTI is not set |
649 | # CONFIG_PATA_OPTIDMA is not set | 682 | # CONFIG_PATA_OPTIDMA is not set |
650 | # CONFIG_PATA_PCMCIA is not set | 683 | # CONFIG_PATA_PCMCIA is not set |
684 | # CONFIG_PATA_PDC2027X is not set | ||
651 | # CONFIG_PATA_PDC_OLD is not set | 685 | # CONFIG_PATA_PDC_OLD is not set |
652 | # CONFIG_PATA_RADISYS is not set | 686 | # CONFIG_PATA_RADISYS is not set |
653 | # CONFIG_PATA_RDC is not set | 687 | # CONFIG_PATA_RDC is not set |
654 | # CONFIG_PATA_RZ1000 is not set | 688 | # CONFIG_PATA_RZ1000 is not set |
655 | # CONFIG_PATA_SC1200 is not set | 689 | # CONFIG_PATA_SC1200 is not set |
656 | # CONFIG_PATA_SERVERWORKS is not set | 690 | # CONFIG_PATA_SERVERWORKS is not set |
657 | # CONFIG_PATA_PDC2027X is not set | ||
658 | # CONFIG_PATA_SIL680 is not set | 691 | # CONFIG_PATA_SIL680 is not set |
659 | # CONFIG_PATA_SIS is not set | 692 | # CONFIG_PATA_SIS is not set |
693 | # CONFIG_PATA_TOSHIBA is not set | ||
660 | # CONFIG_PATA_VIA is not set | 694 | # CONFIG_PATA_VIA is not set |
661 | # CONFIG_PATA_WINBOND is not set | 695 | # CONFIG_PATA_WINBOND is not set |
662 | CONFIG_PATA_PLATFORM=y | 696 | CONFIG_PATA_PLATFORM=y |
@@ -732,6 +766,7 @@ CONFIG_8139TOO_TUNE_TWISTER=y | |||
732 | # CONFIG_SUNDANCE is not set | 766 | # CONFIG_SUNDANCE is not set |
733 | # CONFIG_TLAN is not set | 767 | # CONFIG_TLAN is not set |
734 | # CONFIG_KS8842 is not set | 768 | # CONFIG_KS8842 is not set |
769 | # CONFIG_KS8851_MLL is not set | ||
735 | # CONFIG_VIA_RHINE is not set | 770 | # CONFIG_VIA_RHINE is not set |
736 | # CONFIG_SC92031 is not set | 771 | # CONFIG_SC92031 is not set |
737 | # CONFIG_ATL2 is not set | 772 | # CONFIG_ATL2 is not set |
@@ -780,8 +815,12 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
780 | # CONFIG_BE2NET is not set | 815 | # CONFIG_BE2NET is not set |
781 | # CONFIG_TR is not set | 816 | # CONFIG_TR is not set |
782 | CONFIG_WLAN=y | 817 | CONFIG_WLAN=y |
783 | # CONFIG_WLAN_PRE80211 is not set | 818 | # CONFIG_PCMCIA_RAYCS is not set |
784 | # CONFIG_WLAN_80211 is not set | 819 | # CONFIG_ATMEL is not set |
820 | # CONFIG_AIRO_CS is not set | ||
821 | # CONFIG_PCMCIA_WL3501 is not set | ||
822 | # CONFIG_PRISM54 is not set | ||
823 | # CONFIG_HOSTAP is not set | ||
785 | 824 | ||
786 | # | 825 | # |
787 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 826 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -804,6 +843,7 @@ CONFIG_PCMCIA_PCNET=y | |||
804 | # CONFIG_NETCONSOLE is not set | 843 | # CONFIG_NETCONSOLE is not set |
805 | # CONFIG_NETPOLL is not set | 844 | # CONFIG_NETPOLL is not set |
806 | # CONFIG_NET_POLL_CONTROLLER is not set | 845 | # CONFIG_NET_POLL_CONTROLLER is not set |
846 | # CONFIG_VMXNET3 is not set | ||
807 | # CONFIG_ISDN is not set | 847 | # CONFIG_ISDN is not set |
808 | # CONFIG_PHONE is not set | 848 | # CONFIG_PHONE is not set |
809 | 849 | ||
@@ -813,6 +853,7 @@ CONFIG_PCMCIA_PCNET=y | |||
813 | CONFIG_INPUT=y | 853 | CONFIG_INPUT=y |
814 | # CONFIG_INPUT_FF_MEMLESS is not set | 854 | # CONFIG_INPUT_FF_MEMLESS is not set |
815 | # CONFIG_INPUT_POLLDEV is not set | 855 | # CONFIG_INPUT_POLLDEV is not set |
856 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
816 | 857 | ||
817 | # | 858 | # |
818 | # Userland interfaces | 859 | # Userland interfaces |
@@ -931,6 +972,7 @@ CONFIG_SSB_POSSIBLE=y | |||
931 | # | 972 | # |
932 | # CONFIG_MFD_CORE is not set | 973 | # CONFIG_MFD_CORE is not set |
933 | # CONFIG_MFD_SM501 is not set | 974 | # CONFIG_MFD_SM501 is not set |
975 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
934 | # CONFIG_HTC_PASIC3 is not set | 976 | # CONFIG_HTC_PASIC3 is not set |
935 | # CONFIG_MFD_TMIO is not set | 977 | # CONFIG_MFD_TMIO is not set |
936 | # CONFIG_REGULATOR is not set | 978 | # CONFIG_REGULATOR is not set |
@@ -1020,7 +1062,9 @@ CONFIG_RTC_INTF_DEV=y | |||
1020 | # CONFIG_RTC_DRV_M48T86 is not set | 1062 | # CONFIG_RTC_DRV_M48T86 is not set |
1021 | # CONFIG_RTC_DRV_M48T35 is not set | 1063 | # CONFIG_RTC_DRV_M48T35 is not set |
1022 | # CONFIG_RTC_DRV_M48T59 is not set | 1064 | # CONFIG_RTC_DRV_M48T59 is not set |
1065 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1023 | # CONFIG_RTC_DRV_BQ4802 is not set | 1066 | # CONFIG_RTC_DRV_BQ4802 is not set |
1067 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1024 | # CONFIG_RTC_DRV_V3020 is not set | 1068 | # CONFIG_RTC_DRV_V3020 is not set |
1025 | 1069 | ||
1026 | # | 1070 | # |
@@ -1195,10 +1239,11 @@ CONFIG_FRAME_WARN=1024 | |||
1195 | # CONFIG_DEBUG_FS is not set | 1239 | # CONFIG_DEBUG_FS is not set |
1196 | # CONFIG_HEADERS_CHECK is not set | 1240 | # CONFIG_HEADERS_CHECK is not set |
1197 | # CONFIG_DEBUG_KERNEL is not set | 1241 | # CONFIG_DEBUG_KERNEL is not set |
1198 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1242 | CONFIG_DEBUG_BUGVERBOSE=y |
1199 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1243 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1200 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1244 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1201 | # CONFIG_LATENCYTOP is not set | 1245 | # CONFIG_LATENCYTOP is not set |
1246 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1202 | CONFIG_HAVE_FUNCTION_TRACER=y | 1247 | CONFIG_HAVE_FUNCTION_TRACER=y |
1203 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1248 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
1204 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 1249 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -1211,8 +1256,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1211 | # CONFIG_SAMPLES is not set | 1256 | # CONFIG_SAMPLES is not set |
1212 | CONFIG_HAVE_ARCH_KGDB=y | 1257 | CONFIG_HAVE_ARCH_KGDB=y |
1213 | CONFIG_SH_STANDARD_BIOS=y | 1258 | CONFIG_SH_STANDARD_BIOS=y |
1214 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1215 | # CONFIG_EARLY_PRINTK is not set | ||
1216 | # CONFIG_DWARF_UNWINDER is not set | 1259 | # CONFIG_DWARF_UNWINDER is not set |
1217 | 1260 | ||
1218 | # | 1261 | # |
@@ -1221,7 +1264,11 @@ CONFIG_SH_STANDARD_BIOS=y | |||
1221 | # CONFIG_KEYS is not set | 1264 | # CONFIG_KEYS is not set |
1222 | # CONFIG_SECURITY is not set | 1265 | # CONFIG_SECURITY is not set |
1223 | # CONFIG_SECURITYFS is not set | 1266 | # CONFIG_SECURITYFS is not set |
1224 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1267 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1268 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1269 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1270 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1271 | CONFIG_DEFAULT_SECURITY="" | ||
1225 | CONFIG_CRYPTO=y | 1272 | CONFIG_CRYPTO=y |
1226 | 1273 | ||
1227 | # | 1274 | # |
diff --git a/arch/sh/configs/magicpanelr2_defconfig b/arch/sh/configs/magicpanelr2_defconfig index 79091e3e32c..a7a16ce357a 100644 --- a/arch/sh/configs/magicpanelr2_defconfig +++ b/arch/sh/configs/magicpanelr2_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:10:49 2009 | 4 | # Mon Jan 4 11:37:42 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -30,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
35 | 36 | ||
@@ -63,6 +64,7 @@ CONFIG_AUDIT=y | |||
63 | # | 64 | # |
64 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +104,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 105 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 106 | CONFIG_HAVE_PERF_EVENTS=y |
107 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 108 | ||
106 | # | 109 | # |
107 | # Kernel Performance Events And Counters | 110 | # Kernel Performance Events And Counters |
@@ -120,6 +123,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
120 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
121 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
126 | CONFIG_HAVE_DMA_ATTRS=y | ||
123 | CONFIG_HAVE_CLK=y | 127 | CONFIG_HAVE_CLK=y |
124 | CONFIG_HAVE_DMA_API_DEBUG=y | 128 | CONFIG_HAVE_DMA_API_DEBUG=y |
125 | 129 | ||
@@ -146,14 +150,41 @@ CONFIG_LBDAF=y | |||
146 | # IO Schedulers | 150 | # IO Schedulers |
147 | # | 151 | # |
148 | CONFIG_IOSCHED_NOOP=y | 152 | CONFIG_IOSCHED_NOOP=y |
149 | # CONFIG_IOSCHED_AS is not set | ||
150 | # CONFIG_IOSCHED_DEADLINE is not set | 153 | # CONFIG_IOSCHED_DEADLINE is not set |
151 | # CONFIG_IOSCHED_CFQ is not set | 154 | # CONFIG_IOSCHED_CFQ is not set |
152 | # CONFIG_DEFAULT_AS is not set | ||
153 | # CONFIG_DEFAULT_DEADLINE is not set | 155 | # CONFIG_DEFAULT_DEADLINE is not set |
154 | # CONFIG_DEFAULT_CFQ is not set | 156 | # CONFIG_DEFAULT_CFQ is not set |
155 | CONFIG_DEFAULT_NOOP=y | 157 | CONFIG_DEFAULT_NOOP=y |
156 | CONFIG_DEFAULT_IOSCHED="noop" | 158 | CONFIG_DEFAULT_IOSCHED="noop" |
159 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
165 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
167 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_READ_LOCK is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
174 | CONFIG_INLINE_READ_UNLOCK=y | ||
175 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
176 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
177 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
181 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
183 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
185 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
187 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
157 | # CONFIG_FREEZER is not set | 188 | # CONFIG_FREEZER is not set |
158 | 189 | ||
159 | # | 190 | # |
@@ -229,8 +260,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 260 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=0 | 261 | CONFIG_ZONE_DMA_FLAG=0 |
231 | CONFIG_NR_QUICK=2 | 262 | CONFIG_NR_QUICK=2 |
232 | CONFIG_HAVE_MLOCK=y | ||
233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
234 | # CONFIG_KSM is not set | 263 | # CONFIG_KSM is not set |
235 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 264 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
236 | 265 | ||
@@ -283,8 +312,8 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
283 | # | 312 | # |
284 | # DMA support | 313 | # DMA support |
285 | # | 314 | # |
286 | CONFIG_SH_DMA_API=y | ||
287 | CONFIG_SH_DMA=y | 315 | CONFIG_SH_DMA=y |
316 | CONFIG_SH_DMA_API=y | ||
288 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 | 317 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
289 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 318 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
290 | 319 | ||
@@ -416,9 +445,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
416 | # CONFIG_AF_RXRPC is not set | 445 | # CONFIG_AF_RXRPC is not set |
417 | CONFIG_WIRELESS=y | 446 | CONFIG_WIRELESS=y |
418 | # CONFIG_CFG80211 is not set | 447 | # CONFIG_CFG80211 is not set |
419 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
420 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
421 | # CONFIG_WIRELESS_EXT is not set | ||
422 | # CONFIG_LIB80211 is not set | 448 | # CONFIG_LIB80211 is not set |
423 | 449 | ||
424 | # | 450 | # |
@@ -534,6 +560,10 @@ CONFIG_MTD_PHYSMAP=y | |||
534 | CONFIG_BLK_DEV=y | 560 | CONFIG_BLK_DEV=y |
535 | # CONFIG_BLK_DEV_COW_COMMON is not set | 561 | # CONFIG_BLK_DEV_COW_COMMON is not set |
536 | # CONFIG_BLK_DEV_LOOP is not set | 562 | # CONFIG_BLK_DEV_LOOP is not set |
563 | |||
564 | # | ||
565 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
566 | # | ||
537 | # CONFIG_BLK_DEV_NBD is not set | 567 | # CONFIG_BLK_DEV_NBD is not set |
538 | CONFIG_BLK_DEV_RAM=y | 568 | CONFIG_BLK_DEV_RAM=y |
539 | CONFIG_BLK_DEV_RAM_COUNT=16 | 569 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -607,11 +637,11 @@ CONFIG_SMSC911X=y | |||
607 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 637 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
608 | # CONFIG_B44 is not set | 638 | # CONFIG_B44 is not set |
609 | # CONFIG_KS8842 is not set | 639 | # CONFIG_KS8842 is not set |
640 | # CONFIG_KS8851_MLL is not set | ||
610 | # CONFIG_NETDEV_1000 is not set | 641 | # CONFIG_NETDEV_1000 is not set |
611 | # CONFIG_NETDEV_10000 is not set | 642 | # CONFIG_NETDEV_10000 is not set |
612 | CONFIG_WLAN=y | 643 | CONFIG_WLAN=y |
613 | # CONFIG_WLAN_PRE80211 is not set | 644 | # CONFIG_HOSTAP is not set |
614 | # CONFIG_WLAN_80211 is not set | ||
615 | 645 | ||
616 | # | 646 | # |
617 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 647 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -631,6 +661,7 @@ CONFIG_WLAN=y | |||
631 | CONFIG_INPUT=y | 661 | CONFIG_INPUT=y |
632 | # CONFIG_INPUT_FF_MEMLESS is not set | 662 | # CONFIG_INPUT_FF_MEMLESS is not set |
633 | # CONFIG_INPUT_POLLDEV is not set | 663 | # CONFIG_INPUT_POLLDEV is not set |
664 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
634 | 665 | ||
635 | # | 666 | # |
636 | # Userland interfaces | 667 | # Userland interfaces |
@@ -675,6 +706,7 @@ CONFIG_SERIO=y | |||
675 | CONFIG_SERIO_SERPORT=y | 706 | CONFIG_SERIO_SERPORT=y |
676 | CONFIG_SERIO_LIBPS2=y | 707 | CONFIG_SERIO_LIBPS2=y |
677 | # CONFIG_SERIO_RAW is not set | 708 | # CONFIG_SERIO_RAW is not set |
709 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
678 | # CONFIG_GAMEPORT is not set | 710 | # CONFIG_GAMEPORT is not set |
679 | 711 | ||
680 | # | 712 | # |
@@ -766,6 +798,7 @@ CONFIG_SSB_POSSIBLE=y | |||
766 | # | 798 | # |
767 | # CONFIG_MFD_CORE is not set | 799 | # CONFIG_MFD_CORE is not set |
768 | # CONFIG_MFD_SM501 is not set | 800 | # CONFIG_MFD_SM501 is not set |
801 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
769 | # CONFIG_HTC_PASIC3 is not set | 802 | # CONFIG_HTC_PASIC3 is not set |
770 | # CONFIG_MFD_TMIO is not set | 803 | # CONFIG_MFD_TMIO is not set |
771 | # CONFIG_REGULATOR is not set | 804 | # CONFIG_REGULATOR is not set |
@@ -824,7 +857,9 @@ CONFIG_RTC_INTF_DEV=y | |||
824 | # CONFIG_RTC_DRV_M48T86 is not set | 857 | # CONFIG_RTC_DRV_M48T86 is not set |
825 | # CONFIG_RTC_DRV_M48T35 is not set | 858 | # CONFIG_RTC_DRV_M48T35 is not set |
826 | # CONFIG_RTC_DRV_M48T59 is not set | 859 | # CONFIG_RTC_DRV_M48T59 is not set |
860 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
827 | # CONFIG_RTC_DRV_BQ4802 is not set | 861 | # CONFIG_RTC_DRV_BQ4802 is not set |
862 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
828 | # CONFIG_RTC_DRV_V3020 is not set | 863 | # CONFIG_RTC_DRV_V3020 is not set |
829 | 864 | ||
830 | # | 865 | # |
@@ -898,7 +933,6 @@ CONFIG_PROC_PAGE_MONITOR=y | |||
898 | CONFIG_SYSFS=y | 933 | CONFIG_SYSFS=y |
899 | CONFIG_TMPFS=y | 934 | CONFIG_TMPFS=y |
900 | # CONFIG_TMPFS_POSIX_ACL is not set | 935 | # CONFIG_TMPFS_POSIX_ACL is not set |
901 | # CONFIG_HUGETLBFS is not set | ||
902 | # CONFIG_HUGETLB_PAGE is not set | 936 | # CONFIG_HUGETLB_PAGE is not set |
903 | # CONFIG_CONFIGFS_FS is not set | 937 | # CONFIG_CONFIGFS_FS is not set |
904 | CONFIG_MISC_FILESYSTEMS=y | 938 | CONFIG_MISC_FILESYSTEMS=y |
@@ -1072,9 +1106,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1072 | CONFIG_HAVE_ARCH_KGDB=y | 1106 | CONFIG_HAVE_ARCH_KGDB=y |
1073 | # CONFIG_KGDB is not set | 1107 | # CONFIG_KGDB is not set |
1074 | # CONFIG_SH_STANDARD_BIOS is not set | 1108 | # CONFIG_SH_STANDARD_BIOS is not set |
1075 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1076 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xa4430000 | ||
1077 | CONFIG_EARLY_PRINTK=y | ||
1078 | # CONFIG_STACK_DEBUG is not set | 1109 | # CONFIG_STACK_DEBUG is not set |
1079 | # CONFIG_DEBUG_STACK_USAGE is not set | 1110 | # CONFIG_DEBUG_STACK_USAGE is not set |
1080 | # CONFIG_4KSTACKS is not set | 1111 | # CONFIG_4KSTACKS is not set |
@@ -1088,7 +1119,11 @@ CONFIG_DUMP_CODE=y | |||
1088 | # CONFIG_KEYS is not set | 1119 | # CONFIG_KEYS is not set |
1089 | # CONFIG_SECURITY is not set | 1120 | # CONFIG_SECURITY is not set |
1090 | # CONFIG_SECURITYFS is not set | 1121 | # CONFIG_SECURITYFS is not set |
1091 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1122 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1123 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1124 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1125 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1126 | CONFIG_DEFAULT_SECURITY="" | ||
1092 | # CONFIG_CRYPTO is not set | 1127 | # CONFIG_CRYPTO is not set |
1093 | # CONFIG_BINARY_PRINTF is not set | 1128 | # CONFIG_BINARY_PRINTF is not set |
1094 | 1129 | ||
diff --git a/arch/sh/configs/microdev_defconfig b/arch/sh/configs/microdev_defconfig index 6bb5976aff2..7d43fabdc07 100644 --- a/arch/sh/configs/microdev_defconfig +++ b/arch/sh/configs/microdev_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:14:35 2009 | 4 | # Mon Jan 4 11:40:41 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -60,6 +62,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
60 | # | 62 | # |
61 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -98,6 +101,7 @@ CONFIG_EVENTFD=y | |||
98 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
99 | CONFIG_AIO=y | 102 | CONFIG_AIO=y |
100 | CONFIG_HAVE_PERF_EVENTS=y | 103 | CONFIG_HAVE_PERF_EVENTS=y |
104 | CONFIG_PERF_USE_VMALLOC=y | ||
101 | 105 | ||
102 | # | 106 | # |
103 | # Kernel Performance Events And Counters | 107 | # Kernel Performance Events And Counters |
@@ -115,6 +119,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
115 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
116 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
122 | CONFIG_HAVE_DMA_ATTRS=y | ||
118 | CONFIG_HAVE_CLK=y | 123 | CONFIG_HAVE_CLK=y |
119 | CONFIG_HAVE_DMA_API_DEBUG=y | 124 | CONFIG_HAVE_DMA_API_DEBUG=y |
120 | 125 | ||
@@ -136,14 +141,41 @@ CONFIG_LBDAF=y | |||
136 | # IO Schedulers | 141 | # IO Schedulers |
137 | # | 142 | # |
138 | CONFIG_IOSCHED_NOOP=y | 143 | CONFIG_IOSCHED_NOOP=y |
139 | CONFIG_IOSCHED_AS=y | ||
140 | CONFIG_IOSCHED_DEADLINE=y | 144 | CONFIG_IOSCHED_DEADLINE=y |
141 | CONFIG_IOSCHED_CFQ=y | 145 | CONFIG_IOSCHED_CFQ=y |
142 | CONFIG_DEFAULT_AS=y | ||
143 | # CONFIG_DEFAULT_DEADLINE is not set | 146 | # CONFIG_DEFAULT_DEADLINE is not set |
144 | # CONFIG_DEFAULT_CFQ is not set | 147 | CONFIG_DEFAULT_CFQ=y |
145 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="cfq" |
150 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
151 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
152 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
153 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
156 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
160 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
161 | # CONFIG_INLINE_READ_LOCK is not set | ||
162 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
165 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
166 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
167 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
168 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
171 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
174 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
175 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
176 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
147 | # CONFIG_FREEZER is not set | 179 | # CONFIG_FREEZER is not set |
148 | 180 | ||
149 | # | 181 | # |
@@ -225,8 +257,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
225 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 257 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
226 | CONFIG_ZONE_DMA_FLAG=0 | 258 | CONFIG_ZONE_DMA_FLAG=0 |
227 | CONFIG_NR_QUICK=2 | 259 | CONFIG_NR_QUICK=2 |
228 | CONFIG_HAVE_MLOCK=y | ||
229 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
230 | # CONFIG_KSM is not set | 260 | # CONFIG_KSM is not set |
231 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 261 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
232 | 262 | ||
@@ -272,8 +302,8 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
272 | # | 302 | # |
273 | # DMA support | 303 | # DMA support |
274 | # | 304 | # |
275 | CONFIG_SH_DMA_API=y | ||
276 | CONFIG_SH_DMA=y | 305 | CONFIG_SH_DMA=y |
306 | CONFIG_SH_DMA_API=y | ||
277 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 | 307 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
278 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 308 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
279 | 309 | ||
@@ -312,7 +342,6 @@ CONFIG_GUSA=y | |||
312 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 342 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
313 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 343 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
314 | CONFIG_ENTRY_OFFSET=0x00001000 | 344 | CONFIG_ENTRY_OFFSET=0x00001000 |
315 | # CONFIG_UBC_WAKEUP is not set | ||
316 | CONFIG_CMDLINE_OVERWRITE=y | 345 | CONFIG_CMDLINE_OVERWRITE=y |
317 | # CONFIG_CMDLINE_EXTEND is not set | 346 | # CONFIG_CMDLINE_EXTEND is not set |
318 | CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/hda1" | 347 | CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/hda1" |
@@ -412,9 +441,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
412 | # CONFIG_AF_RXRPC is not set | 441 | # CONFIG_AF_RXRPC is not set |
413 | CONFIG_WIRELESS=y | 442 | CONFIG_WIRELESS=y |
414 | # CONFIG_CFG80211 is not set | 443 | # CONFIG_CFG80211 is not set |
415 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
416 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
417 | # CONFIG_WIRELESS_EXT is not set | ||
418 | # CONFIG_LIB80211 is not set | 444 | # CONFIG_LIB80211 is not set |
419 | 445 | ||
420 | # | 446 | # |
@@ -443,6 +469,10 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
443 | CONFIG_BLK_DEV=y | 469 | CONFIG_BLK_DEV=y |
444 | # CONFIG_BLK_DEV_COW_COMMON is not set | 470 | # CONFIG_BLK_DEV_COW_COMMON is not set |
445 | # CONFIG_BLK_DEV_LOOP is not set | 471 | # CONFIG_BLK_DEV_LOOP is not set |
472 | |||
473 | # | ||
474 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
475 | # | ||
446 | # CONFIG_BLK_DEV_NBD is not set | 476 | # CONFIG_BLK_DEV_NBD is not set |
447 | CONFIG_BLK_DEV_RAM=y | 477 | CONFIG_BLK_DEV_RAM=y |
448 | CONFIG_BLK_DEV_RAM_COUNT=16 | 478 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -517,11 +547,11 @@ CONFIG_SMC91X=y | |||
517 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 547 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
518 | # CONFIG_B44 is not set | 548 | # CONFIG_B44 is not set |
519 | # CONFIG_KS8842 is not set | 549 | # CONFIG_KS8842 is not set |
550 | # CONFIG_KS8851_MLL is not set | ||
520 | CONFIG_NETDEV_1000=y | 551 | CONFIG_NETDEV_1000=y |
521 | CONFIG_NETDEV_10000=y | 552 | CONFIG_NETDEV_10000=y |
522 | CONFIG_WLAN=y | 553 | CONFIG_WLAN=y |
523 | # CONFIG_WLAN_PRE80211 is not set | 554 | # CONFIG_HOSTAP is not set |
524 | # CONFIG_WLAN_80211 is not set | ||
525 | 555 | ||
526 | # | 556 | # |
527 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 557 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -616,6 +646,7 @@ CONFIG_SSB_POSSIBLE=y | |||
616 | # | 646 | # |
617 | # CONFIG_MFD_CORE is not set | 647 | # CONFIG_MFD_CORE is not set |
618 | # CONFIG_MFD_SM501 is not set | 648 | # CONFIG_MFD_SM501 is not set |
649 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
619 | # CONFIG_HTC_PASIC3 is not set | 650 | # CONFIG_HTC_PASIC3 is not set |
620 | # CONFIG_MFD_TMIO is not set | 651 | # CONFIG_MFD_TMIO is not set |
621 | # CONFIG_REGULATOR is not set | 652 | # CONFIG_REGULATOR is not set |
@@ -835,10 +866,11 @@ CONFIG_FRAME_WARN=1024 | |||
835 | # CONFIG_DEBUG_FS is not set | 866 | # CONFIG_DEBUG_FS is not set |
836 | # CONFIG_HEADERS_CHECK is not set | 867 | # CONFIG_HEADERS_CHECK is not set |
837 | # CONFIG_DEBUG_KERNEL is not set | 868 | # CONFIG_DEBUG_KERNEL is not set |
838 | # CONFIG_DEBUG_BUGVERBOSE is not set | 869 | CONFIG_DEBUG_BUGVERBOSE=y |
839 | # CONFIG_DEBUG_MEMORY_INIT is not set | 870 | # CONFIG_DEBUG_MEMORY_INIT is not set |
840 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 871 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
841 | # CONFIG_LATENCYTOP is not set | 872 | # CONFIG_LATENCYTOP is not set |
873 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
842 | CONFIG_HAVE_FUNCTION_TRACER=y | 874 | CONFIG_HAVE_FUNCTION_TRACER=y |
843 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 875 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
844 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 876 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -851,7 +883,6 @@ CONFIG_TRACING_SUPPORT=y | |||
851 | # CONFIG_SAMPLES is not set | 883 | # CONFIG_SAMPLES is not set |
852 | CONFIG_HAVE_ARCH_KGDB=y | 884 | CONFIG_HAVE_ARCH_KGDB=y |
853 | # CONFIG_SH_STANDARD_BIOS is not set | 885 | # CONFIG_SH_STANDARD_BIOS is not set |
854 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
855 | # CONFIG_DWARF_UNWINDER is not set | 886 | # CONFIG_DWARF_UNWINDER is not set |
856 | 887 | ||
857 | # | 888 | # |
@@ -860,7 +891,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
860 | # CONFIG_KEYS is not set | 891 | # CONFIG_KEYS is not set |
861 | # CONFIG_SECURITY is not set | 892 | # CONFIG_SECURITY is not set |
862 | # CONFIG_SECURITYFS is not set | 893 | # CONFIG_SECURITYFS is not set |
863 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 894 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
895 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
896 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
897 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
898 | CONFIG_DEFAULT_SECURITY="" | ||
864 | CONFIG_CRYPTO=y | 899 | CONFIG_CRYPTO=y |
865 | 900 | ||
866 | # | 901 | # |
diff --git a/arch/sh/configs/migor_defconfig b/arch/sh/configs/migor_defconfig index 65018283c3a..d2b18311777 100644 --- a/arch/sh/configs/migor_defconfig +++ b/arch/sh/configs/migor_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:17:41 2009 | 4 | # Mon Jan 4 11:41:41 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
24 | CONFIG_SYS_SUPPORTS_CMT=y | 25 | CONFIG_SYS_SUPPORTS_CMT=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -61,6 +63,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
61 | # | 63 | # |
62 | CONFIG_TREE_RCU=y | 64 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
66 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 67 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 68 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 69 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -100,6 +103,7 @@ CONFIG_EVENTFD=y | |||
100 | CONFIG_SHMEM=y | 103 | CONFIG_SHMEM=y |
101 | CONFIG_AIO=y | 104 | CONFIG_AIO=y |
102 | CONFIG_HAVE_PERF_EVENTS=y | 105 | CONFIG_HAVE_PERF_EVENTS=y |
106 | CONFIG_PERF_USE_VMALLOC=y | ||
103 | 107 | ||
104 | # | 108 | # |
105 | # Kernel Performance Events And Counters | 109 | # Kernel Performance Events And Counters |
@@ -121,6 +125,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
121 | CONFIG_HAVE_KPROBES=y | 125 | CONFIG_HAVE_KPROBES=y |
122 | CONFIG_HAVE_KRETPROBES=y | 126 | CONFIG_HAVE_KRETPROBES=y |
123 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 127 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
128 | CONFIG_HAVE_DMA_ATTRS=y | ||
124 | CONFIG_HAVE_CLK=y | 129 | CONFIG_HAVE_CLK=y |
125 | CONFIG_HAVE_DMA_API_DEBUG=y | 130 | CONFIG_HAVE_DMA_API_DEBUG=y |
126 | 131 | ||
@@ -147,14 +152,41 @@ CONFIG_LBDAF=y | |||
147 | # IO Schedulers | 152 | # IO Schedulers |
148 | # | 153 | # |
149 | CONFIG_IOSCHED_NOOP=y | 154 | CONFIG_IOSCHED_NOOP=y |
150 | CONFIG_IOSCHED_AS=y | ||
151 | CONFIG_IOSCHED_DEADLINE=y | 155 | CONFIG_IOSCHED_DEADLINE=y |
152 | CONFIG_IOSCHED_CFQ=y | 156 | CONFIG_IOSCHED_CFQ=y |
153 | CONFIG_DEFAULT_AS=y | ||
154 | # CONFIG_DEFAULT_DEADLINE is not set | 157 | # CONFIG_DEFAULT_DEADLINE is not set |
155 | # CONFIG_DEFAULT_CFQ is not set | 158 | CONFIG_DEFAULT_CFQ=y |
156 | # CONFIG_DEFAULT_NOOP is not set | 159 | # CONFIG_DEFAULT_NOOP is not set |
157 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 160 | CONFIG_DEFAULT_IOSCHED="cfq" |
161 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
162 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
163 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
165 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
167 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
169 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
170 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
171 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
172 | # CONFIG_INLINE_READ_LOCK is not set | ||
173 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
174 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
175 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
176 | CONFIG_INLINE_READ_UNLOCK=y | ||
177 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
178 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
179 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
180 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
181 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
183 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
185 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
187 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
188 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
189 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
158 | CONFIG_FREEZER=y | 190 | CONFIG_FREEZER=y |
159 | 191 | ||
160 | # | 192 | # |
@@ -240,8 +272,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
240 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 272 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
241 | CONFIG_ZONE_DMA_FLAG=0 | 273 | CONFIG_ZONE_DMA_FLAG=0 |
242 | CONFIG_NR_QUICK=2 | 274 | CONFIG_NR_QUICK=2 |
243 | CONFIG_HAVE_MLOCK=y | ||
244 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
245 | # CONFIG_KSM is not set | 275 | # CONFIG_KSM is not set |
246 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 276 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
247 | 277 | ||
@@ -277,7 +307,6 @@ CONFIG_SH_MIGOR_QVGA=y | |||
277 | # | 307 | # |
278 | CONFIG_SH_TIMER_TMU=y | 308 | CONFIG_SH_TIMER_TMU=y |
279 | # CONFIG_SH_TIMER_CMT is not set | 309 | # CONFIG_SH_TIMER_CMT is not set |
280 | CONFIG_SH_PCLK_FREQ=33333333 | ||
281 | CONFIG_SH_CLK_CPG=y | 310 | CONFIG_SH_CLK_CPG=y |
282 | # CONFIG_NO_HZ is not set | 311 | # CONFIG_NO_HZ is not set |
283 | # CONFIG_HIGH_RES_TIMERS is not set | 312 | # CONFIG_HIGH_RES_TIMERS is not set |
@@ -433,10 +462,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
433 | # CONFIG_AF_RXRPC is not set | 462 | # CONFIG_AF_RXRPC is not set |
434 | CONFIG_WIRELESS=y | 463 | CONFIG_WIRELESS=y |
435 | # CONFIG_CFG80211 is not set | 464 | # CONFIG_CFG80211 is not set |
436 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
437 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
438 | CONFIG_WIRELESS_EXT=y | ||
439 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
440 | # CONFIG_LIB80211 is not set | 465 | # CONFIG_LIB80211 is not set |
441 | 466 | ||
442 | # | 467 | # |
@@ -554,6 +579,10 @@ CONFIG_MTD_NAND_PLATFORM=y | |||
554 | CONFIG_BLK_DEV=y | 579 | CONFIG_BLK_DEV=y |
555 | # CONFIG_BLK_DEV_COW_COMMON is not set | 580 | # CONFIG_BLK_DEV_COW_COMMON is not set |
556 | # CONFIG_BLK_DEV_LOOP is not set | 581 | # CONFIG_BLK_DEV_LOOP is not set |
582 | |||
583 | # | ||
584 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
585 | # | ||
557 | # CONFIG_BLK_DEV_NBD is not set | 586 | # CONFIG_BLK_DEV_NBD is not set |
558 | CONFIG_BLK_DEV_RAM=y | 587 | CONFIG_BLK_DEV_RAM=y |
559 | CONFIG_BLK_DEV_RAM_COUNT=16 | 588 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -563,9 +592,11 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
563 | # CONFIG_ATA_OVER_ETH is not set | 592 | # CONFIG_ATA_OVER_ETH is not set |
564 | # CONFIG_BLK_DEV_HD is not set | 593 | # CONFIG_BLK_DEV_HD is not set |
565 | CONFIG_MISC_DEVICES=y | 594 | CONFIG_MISC_DEVICES=y |
595 | # CONFIG_AD525X_DPOT is not set | ||
566 | # CONFIG_ICS932S401 is not set | 596 | # CONFIG_ICS932S401 is not set |
567 | # CONFIG_ENCLOSURE_SERVICES is not set | 597 | # CONFIG_ENCLOSURE_SERVICES is not set |
568 | # CONFIG_ISL29003 is not set | 598 | # CONFIG_ISL29003 is not set |
599 | # CONFIG_DS1682 is not set | ||
569 | # CONFIG_C2PORT is not set | 600 | # CONFIG_C2PORT is not set |
570 | 601 | ||
571 | # | 602 | # |
@@ -646,11 +677,11 @@ CONFIG_SMC91X=y | |||
646 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 677 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
647 | # CONFIG_B44 is not set | 678 | # CONFIG_B44 is not set |
648 | # CONFIG_KS8842 is not set | 679 | # CONFIG_KS8842 is not set |
680 | # CONFIG_KS8851_MLL is not set | ||
649 | # CONFIG_NETDEV_1000 is not set | 681 | # CONFIG_NETDEV_1000 is not set |
650 | # CONFIG_NETDEV_10000 is not set | 682 | # CONFIG_NETDEV_10000 is not set |
651 | CONFIG_WLAN=y | 683 | CONFIG_WLAN=y |
652 | # CONFIG_WLAN_PRE80211 is not set | 684 | # CONFIG_HOSTAP is not set |
653 | # CONFIG_WLAN_80211 is not set | ||
654 | 685 | ||
655 | # | 686 | # |
656 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 687 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -670,6 +701,7 @@ CONFIG_WLAN=y | |||
670 | CONFIG_INPUT=y | 701 | CONFIG_INPUT=y |
671 | # CONFIG_INPUT_FF_MEMLESS is not set | 702 | # CONFIG_INPUT_FF_MEMLESS is not set |
672 | # CONFIG_INPUT_POLLDEV is not set | 703 | # CONFIG_INPUT_POLLDEV is not set |
704 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
673 | 705 | ||
674 | # | 706 | # |
675 | # Userland interfaces | 707 | # Userland interfaces |
@@ -776,7 +808,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
776 | # | 808 | # |
777 | # Miscellaneous I2C Chip support | 809 | # Miscellaneous I2C Chip support |
778 | # | 810 | # |
779 | # CONFIG_DS1682 is not set | ||
780 | # CONFIG_SENSORS_TSL2550 is not set | 811 | # CONFIG_SENSORS_TSL2550 is not set |
781 | # CONFIG_I2C_DEBUG_CORE is not set | 812 | # CONFIG_I2C_DEBUG_CORE is not set |
782 | # CONFIG_I2C_DEBUG_ALGO is not set | 813 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -831,16 +862,19 @@ CONFIG_SSB_POSSIBLE=y | |||
831 | # | 862 | # |
832 | # CONFIG_MFD_CORE is not set | 863 | # CONFIG_MFD_CORE is not set |
833 | # CONFIG_MFD_SM501 is not set | 864 | # CONFIG_MFD_SM501 is not set |
865 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
834 | # CONFIG_HTC_PASIC3 is not set | 866 | # CONFIG_HTC_PASIC3 is not set |
835 | # CONFIG_TPS65010 is not set | 867 | # CONFIG_TPS65010 is not set |
836 | # CONFIG_TWL4030_CORE is not set | 868 | # CONFIG_TWL4030_CORE is not set |
837 | # CONFIG_MFD_TMIO is not set | 869 | # CONFIG_MFD_TMIO is not set |
838 | # CONFIG_PMIC_DA903X is not set | 870 | # CONFIG_PMIC_DA903X is not set |
871 | # CONFIG_PMIC_ADP5520 is not set | ||
839 | # CONFIG_MFD_WM8400 is not set | 872 | # CONFIG_MFD_WM8400 is not set |
840 | # CONFIG_MFD_WM831X is not set | 873 | # CONFIG_MFD_WM831X is not set |
841 | # CONFIG_MFD_WM8350_I2C is not set | 874 | # CONFIG_MFD_WM8350_I2C is not set |
842 | # CONFIG_MFD_PCF50633 is not set | 875 | # CONFIG_MFD_PCF50633 is not set |
843 | # CONFIG_AB3100_CORE is not set | 876 | # CONFIG_AB3100_CORE is not set |
877 | # CONFIG_MFD_88PM8607 is not set | ||
844 | # CONFIG_REGULATOR is not set | 878 | # CONFIG_REGULATOR is not set |
845 | CONFIG_MEDIA_SUPPORT=y | 879 | CONFIG_MEDIA_SUPPORT=y |
846 | 880 | ||
@@ -857,6 +891,8 @@ CONFIG_VIDEO_MEDIA=y | |||
857 | # | 891 | # |
858 | # Multimedia drivers | 892 | # Multimedia drivers |
859 | # | 893 | # |
894 | CONFIG_IR_CORE=y | ||
895 | CONFIG_VIDEO_IR=y | ||
860 | # CONFIG_MEDIA_ATTACH is not set | 896 | # CONFIG_MEDIA_ATTACH is not set |
861 | CONFIG_MEDIA_TUNER=y | 897 | CONFIG_MEDIA_TUNER=y |
862 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set | 898 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
@@ -876,6 +912,7 @@ CONFIG_VIDEO_CAPTURE_DRIVERS=y | |||
876 | # CONFIG_VIDEO_ADV_DEBUG is not set | 912 | # CONFIG_VIDEO_ADV_DEBUG is not set |
877 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set | 913 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set |
878 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | 914 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y |
915 | CONFIG_VIDEO_IR_I2C=y | ||
879 | # CONFIG_VIDEO_VIVI is not set | 916 | # CONFIG_VIDEO_VIVI is not set |
880 | # CONFIG_VIDEO_SAA5246A is not set | 917 | # CONFIG_VIDEO_SAA5246A is not set |
881 | # CONFIG_VIDEO_SAA5249 is not set | 918 | # CONFIG_VIDEO_SAA5249 is not set |
@@ -883,10 +920,13 @@ CONFIG_SOC_CAMERA=y | |||
883 | # CONFIG_SOC_CAMERA_MT9M001 is not set | 920 | # CONFIG_SOC_CAMERA_MT9M001 is not set |
884 | # CONFIG_SOC_CAMERA_MT9M111 is not set | 921 | # CONFIG_SOC_CAMERA_MT9M111 is not set |
885 | # CONFIG_SOC_CAMERA_MT9T031 is not set | 922 | # CONFIG_SOC_CAMERA_MT9T031 is not set |
923 | # CONFIG_SOC_CAMERA_MT9T112 is not set | ||
886 | # CONFIG_SOC_CAMERA_MT9V022 is not set | 924 | # CONFIG_SOC_CAMERA_MT9V022 is not set |
925 | # CONFIG_SOC_CAMERA_RJ54N1 is not set | ||
887 | CONFIG_SOC_CAMERA_TW9910=y | 926 | CONFIG_SOC_CAMERA_TW9910=y |
888 | # CONFIG_SOC_CAMERA_PLATFORM is not set | 927 | # CONFIG_SOC_CAMERA_PLATFORM is not set |
889 | CONFIG_SOC_CAMERA_OV772X=y | 928 | CONFIG_SOC_CAMERA_OV772X=y |
929 | # CONFIG_SOC_CAMERA_OV9640 is not set | ||
890 | CONFIG_VIDEO_SH_MOBILE_CEU=y | 930 | CONFIG_VIDEO_SH_MOBILE_CEU=y |
891 | # CONFIG_RADIO_ADAPTERS is not set | 931 | # CONFIG_RADIO_ADAPTERS is not set |
892 | # CONFIG_DAB is not set | 932 | # CONFIG_DAB is not set |
@@ -1009,10 +1049,12 @@ CONFIG_USB_GADGET_DUALSPEED=y | |||
1009 | # CONFIG_USB_ETH is not set | 1049 | # CONFIG_USB_ETH is not set |
1010 | # CONFIG_USB_GADGETFS is not set | 1050 | # CONFIG_USB_GADGETFS is not set |
1011 | # CONFIG_USB_FILE_STORAGE is not set | 1051 | # CONFIG_USB_FILE_STORAGE is not set |
1012 | CONFIG_USB_G_SERIAL=y | 1052 | # CONFIG_USB_MASS_STORAGE is not set |
1053 | CONFIG_USB_G_SERIAL=m | ||
1013 | # CONFIG_USB_MIDI_GADGET is not set | 1054 | # CONFIG_USB_MIDI_GADGET is not set |
1014 | # CONFIG_USB_G_PRINTER is not set | 1055 | # CONFIG_USB_G_PRINTER is not set |
1015 | # CONFIG_USB_CDC_COMPOSITE is not set | 1056 | # CONFIG_USB_CDC_COMPOSITE is not set |
1057 | # CONFIG_USB_G_MULTI is not set | ||
1016 | 1058 | ||
1017 | # | 1059 | # |
1018 | # OTG and related infrastructure | 1060 | # OTG and related infrastructure |
@@ -1051,6 +1093,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1051 | # CONFIG_RTC_DRV_PCF8563 is not set | 1093 | # CONFIG_RTC_DRV_PCF8563 is not set |
1052 | # CONFIG_RTC_DRV_PCF8583 is not set | 1094 | # CONFIG_RTC_DRV_PCF8583 is not set |
1053 | # CONFIG_RTC_DRV_M41T80 is not set | 1095 | # CONFIG_RTC_DRV_M41T80 is not set |
1096 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1054 | # CONFIG_RTC_DRV_S35390A is not set | 1097 | # CONFIG_RTC_DRV_S35390A is not set |
1055 | # CONFIG_RTC_DRV_FM3130 is not set | 1098 | # CONFIG_RTC_DRV_FM3130 is not set |
1056 | # CONFIG_RTC_DRV_RX8581 is not set | 1099 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1071,7 +1114,9 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1071 | # CONFIG_RTC_DRV_M48T86 is not set | 1114 | # CONFIG_RTC_DRV_M48T86 is not set |
1072 | # CONFIG_RTC_DRV_M48T35 is not set | 1115 | # CONFIG_RTC_DRV_M48T35 is not set |
1073 | # CONFIG_RTC_DRV_M48T59 is not set | 1116 | # CONFIG_RTC_DRV_M48T59 is not set |
1117 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1074 | # CONFIG_RTC_DRV_BQ4802 is not set | 1118 | # CONFIG_RTC_DRV_BQ4802 is not set |
1119 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1075 | # CONFIG_RTC_DRV_V3020 is not set | 1120 | # CONFIG_RTC_DRV_V3020 is not set |
1076 | 1121 | ||
1077 | # | 1122 | # |
@@ -1098,6 +1143,7 @@ CONFIG_UIO_PDRV_GENIRQ=y | |||
1098 | # CONFIG_EXT2_FS is not set | 1143 | # CONFIG_EXT2_FS is not set |
1099 | # CONFIG_EXT3_FS is not set | 1144 | # CONFIG_EXT3_FS is not set |
1100 | # CONFIG_EXT4_FS is not set | 1145 | # CONFIG_EXT4_FS is not set |
1146 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
1101 | # CONFIG_REISERFS_FS is not set | 1147 | # CONFIG_REISERFS_FS is not set |
1102 | # CONFIG_JFS_FS is not set | 1148 | # CONFIG_JFS_FS is not set |
1103 | # CONFIG_FS_POSIX_ACL is not set | 1149 | # CONFIG_FS_POSIX_ACL is not set |
@@ -1206,10 +1252,11 @@ CONFIG_DEBUG_FS=y | |||
1206 | # CONFIG_HEADERS_CHECK is not set | 1252 | # CONFIG_HEADERS_CHECK is not set |
1207 | # CONFIG_DEBUG_KERNEL is not set | 1253 | # CONFIG_DEBUG_KERNEL is not set |
1208 | CONFIG_STACKTRACE=y | 1254 | CONFIG_STACKTRACE=y |
1209 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1255 | CONFIG_DEBUG_BUGVERBOSE=y |
1210 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1256 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1211 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1257 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1212 | # CONFIG_LATENCYTOP is not set | 1258 | # CONFIG_LATENCYTOP is not set |
1259 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1213 | CONFIG_NOP_TRACER=y | 1260 | CONFIG_NOP_TRACER=y |
1214 | CONFIG_HAVE_FUNCTION_TRACER=y | 1261 | CONFIG_HAVE_FUNCTION_TRACER=y |
1215 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1262 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1229,9 +1276,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1229 | # CONFIG_SAMPLES is not set | 1276 | # CONFIG_SAMPLES is not set |
1230 | CONFIG_HAVE_ARCH_KGDB=y | 1277 | CONFIG_HAVE_ARCH_KGDB=y |
1231 | # CONFIG_SH_STANDARD_BIOS is not set | 1278 | # CONFIG_SH_STANDARD_BIOS is not set |
1232 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1233 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 | ||
1234 | CONFIG_EARLY_PRINTK=y | ||
1235 | # CONFIG_DWARF_UNWINDER is not set | 1279 | # CONFIG_DWARF_UNWINDER is not set |
1236 | 1280 | ||
1237 | # | 1281 | # |
@@ -1240,7 +1284,11 @@ CONFIG_EARLY_PRINTK=y | |||
1240 | # CONFIG_KEYS is not set | 1284 | # CONFIG_KEYS is not set |
1241 | # CONFIG_SECURITY is not set | 1285 | # CONFIG_SECURITY is not set |
1242 | # CONFIG_SECURITYFS is not set | 1286 | # CONFIG_SECURITYFS is not set |
1243 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1287 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1288 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1289 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1290 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1291 | CONFIG_DEFAULT_SECURITY="" | ||
1244 | CONFIG_CRYPTO=y | 1292 | CONFIG_CRYPTO=y |
1245 | 1293 | ||
1246 | # | 1294 | # |
diff --git a/arch/sh/configs/polaris_defconfig b/arch/sh/configs/polaris_defconfig index 7fc1952419a..d50c0314281 100644 --- a/arch/sh/configs/polaris_defconfig +++ b/arch/sh/configs/polaris_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:20:53 2009 | 4 | # Mon Jan 4 11:45:25 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -29,6 +29,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
32 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 34 | CONFIG_CONSTRUCTORS=y |
34 | 35 | ||
@@ -63,6 +64,7 @@ CONFIG_AUDIT=y | |||
63 | # | 64 | # |
64 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +104,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 105 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 106 | CONFIG_HAVE_PERF_EVENTS=y |
107 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 108 | ||
106 | # | 109 | # |
107 | # Kernel Performance Events And Counters | 110 | # Kernel Performance Events And Counters |
@@ -120,6 +123,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
120 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
121 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
126 | CONFIG_HAVE_DMA_ATTRS=y | ||
123 | CONFIG_HAVE_CLK=y | 127 | CONFIG_HAVE_CLK=y |
124 | CONFIG_HAVE_DMA_API_DEBUG=y | 128 | CONFIG_HAVE_DMA_API_DEBUG=y |
125 | 129 | ||
@@ -146,14 +150,41 @@ CONFIG_LBDAF=y | |||
146 | # IO Schedulers | 150 | # IO Schedulers |
147 | # | 151 | # |
148 | CONFIG_IOSCHED_NOOP=y | 152 | CONFIG_IOSCHED_NOOP=y |
149 | # CONFIG_IOSCHED_AS is not set | ||
150 | # CONFIG_IOSCHED_DEADLINE is not set | 153 | # CONFIG_IOSCHED_DEADLINE is not set |
151 | CONFIG_IOSCHED_CFQ=y | 154 | CONFIG_IOSCHED_CFQ=y |
152 | # CONFIG_DEFAULT_AS is not set | ||
153 | # CONFIG_DEFAULT_DEADLINE is not set | 155 | # CONFIG_DEFAULT_DEADLINE is not set |
154 | CONFIG_DEFAULT_CFQ=y | 156 | CONFIG_DEFAULT_CFQ=y |
155 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="cfq" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
159 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
167 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_READ_LOCK is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
174 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
175 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
176 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
177 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
181 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
185 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
187 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
157 | # CONFIG_FREEZER is not set | 188 | # CONFIG_FREEZER is not set |
158 | 189 | ||
159 | # | 190 | # |
@@ -225,12 +256,10 @@ CONFIG_FLATMEM=y | |||
225 | CONFIG_FLAT_NODE_MEM_MAP=y | 256 | CONFIG_FLAT_NODE_MEM_MAP=y |
226 | CONFIG_SPARSEMEM_STATIC=y | 257 | CONFIG_SPARSEMEM_STATIC=y |
227 | CONFIG_PAGEFLAGS_EXTENDED=y | 258 | CONFIG_PAGEFLAGS_EXTENDED=y |
228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 259 | CONFIG_SPLIT_PTLOCK_CPUS=999999 |
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 260 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=0 | 261 | CONFIG_ZONE_DMA_FLAG=0 |
231 | CONFIG_NR_QUICK=2 | 262 | CONFIG_NR_QUICK=2 |
232 | CONFIG_HAVE_MLOCK=y | ||
233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
234 | # CONFIG_KSM is not set | 263 | # CONFIG_KSM is not set |
235 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 264 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
236 | 265 | ||
@@ -279,8 +308,8 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
279 | # | 308 | # |
280 | # DMA support | 309 | # DMA support |
281 | # | 310 | # |
282 | CONFIG_SH_DMA_API=y | ||
283 | CONFIG_SH_DMA=y | 311 | CONFIG_SH_DMA=y |
312 | CONFIG_SH_DMA_API=y | ||
284 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 | 313 | CONFIG_NR_ONCHIP_DMA_CHANNELS=6 |
285 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 314 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
286 | 315 | ||
@@ -409,7 +438,13 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
409 | # CONFIG_IRDA is not set | 438 | # CONFIG_IRDA is not set |
410 | # CONFIG_BT is not set | 439 | # CONFIG_BT is not set |
411 | # CONFIG_AF_RXRPC is not set | 440 | # CONFIG_AF_RXRPC is not set |
412 | # CONFIG_WIRELESS is not set | 441 | CONFIG_WIRELESS=y |
442 | # CONFIG_CFG80211 is not set | ||
443 | # CONFIG_LIB80211 is not set | ||
444 | |||
445 | # | ||
446 | # CFG80211 needs to be enabled for MAC80211 | ||
447 | # | ||
413 | # CONFIG_WIMAX is not set | 448 | # CONFIG_WIMAX is not set |
414 | # CONFIG_RFKILL is not set | 449 | # CONFIG_RFKILL is not set |
415 | # CONFIG_NET_9P is not set | 450 | # CONFIG_NET_9P is not set |
@@ -525,6 +560,10 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2 | |||
525 | CONFIG_BLK_DEV=y | 560 | CONFIG_BLK_DEV=y |
526 | # CONFIG_BLK_DEV_COW_COMMON is not set | 561 | # CONFIG_BLK_DEV_COW_COMMON is not set |
527 | # CONFIG_BLK_DEV_LOOP is not set | 562 | # CONFIG_BLK_DEV_LOOP is not set |
563 | |||
564 | # | ||
565 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
566 | # | ||
528 | # CONFIG_BLK_DEV_NBD is not set | 567 | # CONFIG_BLK_DEV_NBD is not set |
529 | # CONFIG_BLK_DEV_RAM is not set | 568 | # CONFIG_BLK_DEV_RAM is not set |
530 | # CONFIG_CDROM_PKTCDVD is not set | 569 | # CONFIG_CDROM_PKTCDVD is not set |
@@ -595,11 +634,11 @@ CONFIG_SMSC911X=y | |||
595 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 634 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
596 | # CONFIG_B44 is not set | 635 | # CONFIG_B44 is not set |
597 | # CONFIG_KS8842 is not set | 636 | # CONFIG_KS8842 is not set |
637 | # CONFIG_KS8851_MLL is not set | ||
598 | # CONFIG_NETDEV_1000 is not set | 638 | # CONFIG_NETDEV_1000 is not set |
599 | # CONFIG_NETDEV_10000 is not set | 639 | # CONFIG_NETDEV_10000 is not set |
600 | CONFIG_WLAN=y | 640 | CONFIG_WLAN=y |
601 | # CONFIG_WLAN_PRE80211 is not set | 641 | # CONFIG_HOSTAP is not set |
602 | # CONFIG_WLAN_80211 is not set | ||
603 | 642 | ||
604 | # | 643 | # |
605 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 644 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -619,6 +658,7 @@ CONFIG_WLAN=y | |||
619 | CONFIG_INPUT=y | 658 | CONFIG_INPUT=y |
620 | # CONFIG_INPUT_FF_MEMLESS is not set | 659 | # CONFIG_INPUT_FF_MEMLESS is not set |
621 | # CONFIG_INPUT_POLLDEV is not set | 660 | # CONFIG_INPUT_POLLDEV is not set |
661 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
622 | 662 | ||
623 | # | 663 | # |
624 | # Userland interfaces | 664 | # Userland interfaces |
@@ -657,7 +697,6 @@ CONFIG_SERIAL_NONSTANDARD=y | |||
657 | # CONFIG_N_HDLC is not set | 697 | # CONFIG_N_HDLC is not set |
658 | # CONFIG_RISCOM8 is not set | 698 | # CONFIG_RISCOM8 is not set |
659 | # CONFIG_SPECIALIX is not set | 699 | # CONFIG_SPECIALIX is not set |
660 | # CONFIG_RIO is not set | ||
661 | # CONFIG_STALDRV is not set | 700 | # CONFIG_STALDRV is not set |
662 | 701 | ||
663 | # | 702 | # |
@@ -705,6 +744,7 @@ CONFIG_SSB_POSSIBLE=y | |||
705 | # | 744 | # |
706 | # CONFIG_MFD_CORE is not set | 745 | # CONFIG_MFD_CORE is not set |
707 | # CONFIG_MFD_SM501 is not set | 746 | # CONFIG_MFD_SM501 is not set |
747 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
708 | # CONFIG_HTC_PASIC3 is not set | 748 | # CONFIG_HTC_PASIC3 is not set |
709 | # CONFIG_MFD_TMIO is not set | 749 | # CONFIG_MFD_TMIO is not set |
710 | # CONFIG_REGULATOR is not set | 750 | # CONFIG_REGULATOR is not set |
@@ -764,7 +804,9 @@ CONFIG_RTC_INTF_DEV=y | |||
764 | # CONFIG_RTC_DRV_M48T86 is not set | 804 | # CONFIG_RTC_DRV_M48T86 is not set |
765 | # CONFIG_RTC_DRV_M48T35 is not set | 805 | # CONFIG_RTC_DRV_M48T35 is not set |
766 | # CONFIG_RTC_DRV_M48T59 is not set | 806 | # CONFIG_RTC_DRV_M48T59 is not set |
807 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
767 | # CONFIG_RTC_DRV_BQ4802 is not set | 808 | # CONFIG_RTC_DRV_BQ4802 is not set |
809 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
768 | # CONFIG_RTC_DRV_V3020 is not set | 810 | # CONFIG_RTC_DRV_V3020 is not set |
769 | 811 | ||
770 | # | 812 | # |
@@ -787,6 +829,7 @@ CONFIG_RTC_DRV_SH=y | |||
787 | # CONFIG_EXT2_FS is not set | 829 | # CONFIG_EXT2_FS is not set |
788 | # CONFIG_EXT3_FS is not set | 830 | # CONFIG_EXT3_FS is not set |
789 | # CONFIG_EXT4_FS is not set | 831 | # CONFIG_EXT4_FS is not set |
832 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
790 | # CONFIG_REISERFS_FS is not set | 833 | # CONFIG_REISERFS_FS is not set |
791 | # CONFIG_JFS_FS is not set | 834 | # CONFIG_JFS_FS is not set |
792 | # CONFIG_FS_POSIX_ACL is not set | 835 | # CONFIG_FS_POSIX_ACL is not set |
@@ -833,7 +876,6 @@ CONFIG_PROC_PAGE_MONITOR=y | |||
833 | CONFIG_SYSFS=y | 876 | CONFIG_SYSFS=y |
834 | CONFIG_TMPFS=y | 877 | CONFIG_TMPFS=y |
835 | # CONFIG_TMPFS_POSIX_ACL is not set | 878 | # CONFIG_TMPFS_POSIX_ACL is not set |
836 | # CONFIG_HUGETLBFS is not set | ||
837 | # CONFIG_HUGETLB_PAGE is not set | 879 | # CONFIG_HUGETLB_PAGE is not set |
838 | # CONFIG_CONFIGFS_FS is not set | 880 | # CONFIG_CONFIGFS_FS is not set |
839 | CONFIG_MISC_FILESYSTEMS=y | 881 | CONFIG_MISC_FILESYSTEMS=y |
@@ -977,9 +1019,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
977 | CONFIG_HAVE_ARCH_KGDB=y | 1019 | CONFIG_HAVE_ARCH_KGDB=y |
978 | # CONFIG_KGDB is not set | 1020 | # CONFIG_KGDB is not set |
979 | # CONFIG_SH_STANDARD_BIOS is not set | 1021 | # CONFIG_SH_STANDARD_BIOS is not set |
980 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
981 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xa4000150 | ||
982 | CONFIG_EARLY_PRINTK=y | ||
983 | # CONFIG_STACK_DEBUG is not set | 1022 | # CONFIG_STACK_DEBUG is not set |
984 | # CONFIG_DEBUG_STACK_USAGE is not set | 1023 | # CONFIG_DEBUG_STACK_USAGE is not set |
985 | # CONFIG_4KSTACKS is not set | 1024 | # CONFIG_4KSTACKS is not set |
@@ -993,7 +1032,11 @@ CONFIG_DUMP_CODE=y | |||
993 | # CONFIG_KEYS is not set | 1032 | # CONFIG_KEYS is not set |
994 | # CONFIG_SECURITY is not set | 1033 | # CONFIG_SECURITY is not set |
995 | # CONFIG_SECURITYFS is not set | 1034 | # CONFIG_SECURITYFS is not set |
996 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1035 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1036 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1037 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1038 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1039 | CONFIG_DEFAULT_SECURITY="" | ||
997 | # CONFIG_CRYPTO is not set | 1040 | # CONFIG_CRYPTO is not set |
998 | # CONFIG_BINARY_PRINTF is not set | 1041 | # CONFIG_BINARY_PRINTF is not set |
999 | 1042 | ||
diff --git a/arch/sh/configs/r7780mp_defconfig b/arch/sh/configs/r7780mp_defconfig index 903b021e8d9..efda63d4070 100644 --- a/arch/sh/configs/r7780mp_defconfig +++ b/arch/sh/configs/r7780mp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:24:31 2009 | 4 | # Mon Jan 4 13:16:13 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -31,6 +32,7 @@ CONFIG_ARCH_NO_VIRT_TO_BUS=y | |||
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_IO_TRAPPED=y | 34 | CONFIG_IO_TRAPPED=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -63,6 +65,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
63 | # | 65 | # |
64 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 69 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,6 +106,7 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -110,6 +114,7 @@ CONFIG_HAVE_PERF_EVENTS=y | |||
110 | CONFIG_PERF_EVENTS=y | 114 | CONFIG_PERF_EVENTS=y |
111 | CONFIG_EVENT_PROFILE=y | 115 | CONFIG_EVENT_PROFILE=y |
112 | # CONFIG_PERF_COUNTERS is not set | 116 | # CONFIG_PERF_COUNTERS is not set |
117 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
113 | CONFIG_VM_EVENT_COUNTERS=y | 118 | CONFIG_VM_EVENT_COUNTERS=y |
114 | CONFIG_PCI_QUIRKS=y | 119 | CONFIG_PCI_QUIRKS=y |
115 | CONFIG_COMPAT_BRK=y | 120 | CONFIG_COMPAT_BRK=y |
@@ -125,6 +130,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
125 | CONFIG_HAVE_KPROBES=y | 130 | CONFIG_HAVE_KPROBES=y |
126 | CONFIG_HAVE_KRETPROBES=y | 131 | CONFIG_HAVE_KRETPROBES=y |
127 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 132 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
133 | CONFIG_HAVE_DMA_ATTRS=y | ||
128 | CONFIG_HAVE_CLK=y | 134 | CONFIG_HAVE_CLK=y |
129 | CONFIG_HAVE_DMA_API_DEBUG=y | 135 | CONFIG_HAVE_DMA_API_DEBUG=y |
130 | 136 | ||
@@ -135,6 +141,7 @@ CONFIG_HAVE_DMA_API_DEBUG=y | |||
135 | # CONFIG_SLOW_WORK is not set | 141 | # CONFIG_SLOW_WORK is not set |
136 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | 142 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
137 | CONFIG_SLABINFO=y | 143 | CONFIG_SLABINFO=y |
144 | CONFIG_RT_MUTEXES=y | ||
138 | CONFIG_BASE_SMALL=0 | 145 | CONFIG_BASE_SMALL=0 |
139 | CONFIG_MODULES=y | 146 | CONFIG_MODULES=y |
140 | # CONFIG_MODULE_FORCE_LOAD is not set | 147 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -151,14 +158,41 @@ CONFIG_LBDAF=y | |||
151 | # IO Schedulers | 158 | # IO Schedulers |
152 | # | 159 | # |
153 | CONFIG_IOSCHED_NOOP=y | 160 | CONFIG_IOSCHED_NOOP=y |
154 | # CONFIG_IOSCHED_AS is not set | ||
155 | # CONFIG_IOSCHED_DEADLINE is not set | 161 | # CONFIG_IOSCHED_DEADLINE is not set |
156 | # CONFIG_IOSCHED_CFQ is not set | 162 | # CONFIG_IOSCHED_CFQ is not set |
157 | # CONFIG_DEFAULT_AS is not set | ||
158 | # CONFIG_DEFAULT_DEADLINE is not set | 163 | # CONFIG_DEFAULT_DEADLINE is not set |
159 | # CONFIG_DEFAULT_CFQ is not set | 164 | # CONFIG_DEFAULT_CFQ is not set |
160 | CONFIG_DEFAULT_NOOP=y | 165 | CONFIG_DEFAULT_NOOP=y |
161 | CONFIG_DEFAULT_IOSCHED="noop" | 166 | CONFIG_DEFAULT_IOSCHED="noop" |
167 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
170 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
171 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
172 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
174 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
175 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
177 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
178 | # CONFIG_INLINE_READ_LOCK is not set | ||
179 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
180 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
181 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
182 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
183 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
184 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
185 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
186 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
188 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
189 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
190 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
192 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
193 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
194 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
195 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
162 | # CONFIG_FREEZER is not set | 196 | # CONFIG_FREEZER is not set |
163 | 197 | ||
164 | # | 198 | # |
@@ -245,8 +279,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
245 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 279 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
246 | CONFIG_ZONE_DMA_FLAG=0 | 280 | CONFIG_ZONE_DMA_FLAG=0 |
247 | CONFIG_NR_QUICK=2 | 281 | CONFIG_NR_QUICK=2 |
248 | CONFIG_HAVE_MLOCK=y | ||
249 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
250 | # CONFIG_KSM is not set | 282 | # CONFIG_KSM is not set |
251 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 283 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
252 | 284 | ||
@@ -342,7 +374,6 @@ CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/sda1" | |||
342 | # Bus options | 374 | # Bus options |
343 | # | 375 | # |
344 | CONFIG_PCI=y | 376 | CONFIG_PCI=y |
345 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
346 | # CONFIG_PCIEPORTBUS is not set | 377 | # CONFIG_PCIEPORTBUS is not set |
347 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 378 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
348 | CONFIG_PCI_LEGACY=y | 379 | CONFIG_PCI_LEGACY=y |
@@ -449,10 +480,6 @@ CONFIG_LLC=m | |||
449 | # CONFIG_AF_RXRPC is not set | 480 | # CONFIG_AF_RXRPC is not set |
450 | CONFIG_WIRELESS=y | 481 | CONFIG_WIRELESS=y |
451 | # CONFIG_CFG80211 is not set | 482 | # CONFIG_CFG80211 is not set |
452 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
453 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
454 | CONFIG_WIRELESS_EXT=y | ||
455 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
456 | # CONFIG_LIB80211 is not set | 483 | # CONFIG_LIB80211 is not set |
457 | 484 | ||
458 | # | 485 | # |
@@ -535,7 +562,6 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y | |||
535 | CONFIG_MTD_PHYSMAP=y | 562 | CONFIG_MTD_PHYSMAP=y |
536 | # CONFIG_MTD_PHYSMAP_COMPAT is not set | 563 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
537 | # CONFIG_MTD_PCI is not set | 564 | # CONFIG_MTD_PCI is not set |
538 | # CONFIG_MTD_GPIO_ADDR is not set | ||
539 | # CONFIG_MTD_INTEL_VR_NOR is not set | 565 | # CONFIG_MTD_INTEL_VR_NOR is not set |
540 | # CONFIG_MTD_PLATRAM is not set | 566 | # CONFIG_MTD_PLATRAM is not set |
541 | 567 | ||
@@ -573,6 +599,10 @@ CONFIG_BLK_DEV=y | |||
573 | # CONFIG_BLK_DEV_UMEM is not set | 599 | # CONFIG_BLK_DEV_UMEM is not set |
574 | # CONFIG_BLK_DEV_COW_COMMON is not set | 600 | # CONFIG_BLK_DEV_COW_COMMON is not set |
575 | # CONFIG_BLK_DEV_LOOP is not set | 601 | # CONFIG_BLK_DEV_LOOP is not set |
602 | |||
603 | # | ||
604 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
605 | # | ||
576 | # CONFIG_BLK_DEV_NBD is not set | 606 | # CONFIG_BLK_DEV_NBD is not set |
577 | # CONFIG_BLK_DEV_SX8 is not set | 607 | # CONFIG_BLK_DEV_SX8 is not set |
578 | CONFIG_BLK_DEV_RAM=y | 608 | CONFIG_BLK_DEV_RAM=y |
@@ -583,6 +613,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
583 | # CONFIG_ATA_OVER_ETH is not set | 613 | # CONFIG_ATA_OVER_ETH is not set |
584 | # CONFIG_BLK_DEV_HD is not set | 614 | # CONFIG_BLK_DEV_HD is not set |
585 | CONFIG_MISC_DEVICES=y | 615 | CONFIG_MISC_DEVICES=y |
616 | # CONFIG_AD525X_DPOT is not set | ||
586 | # CONFIG_PHANTOM is not set | 617 | # CONFIG_PHANTOM is not set |
587 | # CONFIG_SGI_IOC4 is not set | 618 | # CONFIG_SGI_IOC4 is not set |
588 | # CONFIG_TIFM_CORE is not set | 619 | # CONFIG_TIFM_CORE is not set |
@@ -590,6 +621,7 @@ CONFIG_MISC_DEVICES=y | |||
590 | # CONFIG_ENCLOSURE_SERVICES is not set | 621 | # CONFIG_ENCLOSURE_SERVICES is not set |
591 | # CONFIG_HP_ILO is not set | 622 | # CONFIG_HP_ILO is not set |
592 | # CONFIG_ISL29003 is not set | 623 | # CONFIG_ISL29003 is not set |
624 | # CONFIG_DS1682 is not set | ||
593 | # CONFIG_C2PORT is not set | 625 | # CONFIG_C2PORT is not set |
594 | 626 | ||
595 | # | 627 | # |
@@ -640,8 +672,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
640 | # CONFIG_ISCSI_TCP is not set | 672 | # CONFIG_ISCSI_TCP is not set |
641 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 673 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
642 | # CONFIG_SCSI_BNX2_ISCSI is not set | 674 | # CONFIG_SCSI_BNX2_ISCSI is not set |
675 | # CONFIG_BE2ISCSI is not set | ||
643 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 676 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
677 | # CONFIG_SCSI_HPSA is not set | ||
644 | # CONFIG_SCSI_3W_9XXX is not set | 678 | # CONFIG_SCSI_3W_9XXX is not set |
679 | # CONFIG_SCSI_3W_SAS is not set | ||
645 | # CONFIG_SCSI_ACARD is not set | 680 | # CONFIG_SCSI_ACARD is not set |
646 | # CONFIG_SCSI_AACRAID is not set | 681 | # CONFIG_SCSI_AACRAID is not set |
647 | # CONFIG_SCSI_AIC7XXX is not set | 682 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -675,7 +710,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
675 | # CONFIG_SCSI_NSP32 is not set | 710 | # CONFIG_SCSI_NSP32 is not set |
676 | # CONFIG_SCSI_DEBUG is not set | 711 | # CONFIG_SCSI_DEBUG is not set |
677 | # CONFIG_SCSI_PMCRAID is not set | 712 | # CONFIG_SCSI_PMCRAID is not set |
713 | # CONFIG_SCSI_PM8001 is not set | ||
678 | # CONFIG_SCSI_SRP is not set | 714 | # CONFIG_SCSI_SRP is not set |
715 | # CONFIG_SCSI_BFA_FC is not set | ||
679 | # CONFIG_SCSI_DH is not set | 716 | # CONFIG_SCSI_DH is not set |
680 | # CONFIG_SCSI_OSD_INITIATOR is not set | 717 | # CONFIG_SCSI_OSD_INITIATOR is not set |
681 | CONFIG_ATA=y | 718 | CONFIG_ATA=y |
@@ -728,15 +765,16 @@ CONFIG_SATA_SIL=y | |||
728 | # CONFIG_PATA_NS87415 is not set | 765 | # CONFIG_PATA_NS87415 is not set |
729 | # CONFIG_PATA_OPTI is not set | 766 | # CONFIG_PATA_OPTI is not set |
730 | # CONFIG_PATA_OPTIDMA is not set | 767 | # CONFIG_PATA_OPTIDMA is not set |
768 | # CONFIG_PATA_PDC2027X is not set | ||
731 | # CONFIG_PATA_PDC_OLD is not set | 769 | # CONFIG_PATA_PDC_OLD is not set |
732 | # CONFIG_PATA_RADISYS is not set | 770 | # CONFIG_PATA_RADISYS is not set |
733 | # CONFIG_PATA_RDC is not set | 771 | # CONFIG_PATA_RDC is not set |
734 | # CONFIG_PATA_RZ1000 is not set | 772 | # CONFIG_PATA_RZ1000 is not set |
735 | # CONFIG_PATA_SC1200 is not set | 773 | # CONFIG_PATA_SC1200 is not set |
736 | # CONFIG_PATA_SERVERWORKS is not set | 774 | # CONFIG_PATA_SERVERWORKS is not set |
737 | # CONFIG_PATA_PDC2027X is not set | ||
738 | # CONFIG_PATA_SIL680 is not set | 775 | # CONFIG_PATA_SIL680 is not set |
739 | # CONFIG_PATA_SIS is not set | 776 | # CONFIG_PATA_SIS is not set |
777 | # CONFIG_PATA_TOSHIBA is not set | ||
740 | # CONFIG_PATA_VIA is not set | 778 | # CONFIG_PATA_VIA is not set |
741 | # CONFIG_PATA_WINBOND is not set | 779 | # CONFIG_PATA_WINBOND is not set |
742 | CONFIG_PATA_PLATFORM=y | 780 | CONFIG_PATA_PLATFORM=y |
@@ -813,6 +851,7 @@ CONFIG_8139TOO_8129=y | |||
813 | # CONFIG_SUNDANCE is not set | 851 | # CONFIG_SUNDANCE is not set |
814 | # CONFIG_TLAN is not set | 852 | # CONFIG_TLAN is not set |
815 | # CONFIG_KS8842 is not set | 853 | # CONFIG_KS8842 is not set |
854 | # CONFIG_KS8851_MLL is not set | ||
816 | CONFIG_VIA_RHINE=m | 855 | CONFIG_VIA_RHINE=m |
817 | CONFIG_VIA_RHINE_MMIO=y | 856 | CONFIG_VIA_RHINE_MMIO=y |
818 | # CONFIG_SC92031 is not set | 857 | # CONFIG_SC92031 is not set |
@@ -862,8 +901,9 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
862 | # CONFIG_BE2NET is not set | 901 | # CONFIG_BE2NET is not set |
863 | # CONFIG_TR is not set | 902 | # CONFIG_TR is not set |
864 | CONFIG_WLAN=y | 903 | CONFIG_WLAN=y |
865 | # CONFIG_WLAN_PRE80211 is not set | 904 | # CONFIG_ATMEL is not set |
866 | # CONFIG_WLAN_80211 is not set | 905 | # CONFIG_PRISM54 is not set |
906 | # CONFIG_HOSTAP is not set | ||
867 | 907 | ||
868 | # | 908 | # |
869 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 909 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -877,6 +917,7 @@ CONFIG_WLAN=y | |||
877 | # CONFIG_NETCONSOLE is not set | 917 | # CONFIG_NETCONSOLE is not set |
878 | # CONFIG_NETPOLL is not set | 918 | # CONFIG_NETPOLL is not set |
879 | # CONFIG_NET_POLL_CONTROLLER is not set | 919 | # CONFIG_NET_POLL_CONTROLLER is not set |
920 | # CONFIG_VMXNET3 is not set | ||
880 | # CONFIG_ISDN is not set | 921 | # CONFIG_ISDN is not set |
881 | # CONFIG_PHONE is not set | 922 | # CONFIG_PHONE is not set |
882 | 923 | ||
@@ -886,6 +927,7 @@ CONFIG_WLAN=y | |||
886 | CONFIG_INPUT=y | 927 | CONFIG_INPUT=y |
887 | # CONFIG_INPUT_FF_MEMLESS is not set | 928 | # CONFIG_INPUT_FF_MEMLESS is not set |
888 | # CONFIG_INPUT_POLLDEV is not set | 929 | # CONFIG_INPUT_POLLDEV is not set |
930 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
889 | 931 | ||
890 | # | 932 | # |
891 | # Userland interfaces | 933 | # Userland interfaces |
@@ -928,6 +970,7 @@ CONFIG_SERIO=y | |||
928 | # CONFIG_SERIO_PCIPS2 is not set | 970 | # CONFIG_SERIO_PCIPS2 is not set |
929 | CONFIG_SERIO_LIBPS2=y | 971 | CONFIG_SERIO_LIBPS2=y |
930 | # CONFIG_SERIO_RAW is not set | 972 | # CONFIG_SERIO_RAW is not set |
973 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
931 | # CONFIG_GAMEPORT is not set | 974 | # CONFIG_GAMEPORT is not set |
932 | 975 | ||
933 | # | 976 | # |
@@ -1008,11 +1051,6 @@ CONFIG_I2C_HIGHLANDER=y | |||
1008 | # CONFIG_I2C_TAOS_EVM is not set | 1051 | # CONFIG_I2C_TAOS_EVM is not set |
1009 | 1052 | ||
1010 | # | 1053 | # |
1011 | # Graphics adapter I2C/DDC channel drivers | ||
1012 | # | ||
1013 | # CONFIG_I2C_VOODOO3 is not set | ||
1014 | |||
1015 | # | ||
1016 | # Other I2C/SMBus bus drivers | 1054 | # Other I2C/SMBus bus drivers |
1017 | # | 1055 | # |
1018 | # CONFIG_I2C_PCA_PLATFORM is not set | 1056 | # CONFIG_I2C_PCA_PLATFORM is not set |
@@ -1021,7 +1059,6 @@ CONFIG_I2C_HIGHLANDER=y | |||
1021 | # | 1059 | # |
1022 | # Miscellaneous I2C Chip support | 1060 | # Miscellaneous I2C Chip support |
1023 | # | 1061 | # |
1024 | # CONFIG_DS1682 is not set | ||
1025 | # CONFIG_SENSORS_TSL2550 is not set | 1062 | # CONFIG_SENSORS_TSL2550 is not set |
1026 | # CONFIG_I2C_DEBUG_CORE is not set | 1063 | # CONFIG_I2C_DEBUG_CORE is not set |
1027 | # CONFIG_I2C_DEBUG_ALGO is not set | 1064 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -1065,6 +1102,7 @@ CONFIG_HWMON=y | |||
1065 | # CONFIG_SENSORS_GL520SM is not set | 1102 | # CONFIG_SENSORS_GL520SM is not set |
1066 | # CONFIG_SENSORS_IT87 is not set | 1103 | # CONFIG_SENSORS_IT87 is not set |
1067 | # CONFIG_SENSORS_LM63 is not set | 1104 | # CONFIG_SENSORS_LM63 is not set |
1105 | # CONFIG_SENSORS_LM73 is not set | ||
1068 | # CONFIG_SENSORS_LM75 is not set | 1106 | # CONFIG_SENSORS_LM75 is not set |
1069 | # CONFIG_SENSORS_LM77 is not set | 1107 | # CONFIG_SENSORS_LM77 is not set |
1070 | # CONFIG_SENSORS_LM78 is not set | 1108 | # CONFIG_SENSORS_LM78 is not set |
@@ -1103,6 +1141,7 @@ CONFIG_HWMON=y | |||
1103 | # CONFIG_SENSORS_W83L786NG is not set | 1141 | # CONFIG_SENSORS_W83L786NG is not set |
1104 | # CONFIG_SENSORS_W83627HF is not set | 1142 | # CONFIG_SENSORS_W83627HF is not set |
1105 | # CONFIG_SENSORS_W83627EHF is not set | 1143 | # CONFIG_SENSORS_W83627EHF is not set |
1144 | # CONFIG_SENSORS_LIS3_I2C is not set | ||
1106 | CONFIG_THERMAL=y | 1145 | CONFIG_THERMAL=y |
1107 | # CONFIG_THERMAL_HWMON is not set | 1146 | # CONFIG_THERMAL_HWMON is not set |
1108 | # CONFIG_WATCHDOG is not set | 1147 | # CONFIG_WATCHDOG is not set |
@@ -1118,15 +1157,18 @@ CONFIG_SSB_POSSIBLE=y | |||
1118 | # | 1157 | # |
1119 | # CONFIG_MFD_CORE is not set | 1158 | # CONFIG_MFD_CORE is not set |
1120 | # CONFIG_MFD_SM501 is not set | 1159 | # CONFIG_MFD_SM501 is not set |
1160 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
1121 | # CONFIG_HTC_PASIC3 is not set | 1161 | # CONFIG_HTC_PASIC3 is not set |
1122 | # CONFIG_TWL4030_CORE is not set | 1162 | # CONFIG_TWL4030_CORE is not set |
1123 | # CONFIG_MFD_TMIO is not set | 1163 | # CONFIG_MFD_TMIO is not set |
1124 | # CONFIG_PMIC_DA903X is not set | 1164 | # CONFIG_PMIC_DA903X is not set |
1165 | # CONFIG_PMIC_ADP5520 is not set | ||
1125 | # CONFIG_MFD_WM8400 is not set | 1166 | # CONFIG_MFD_WM8400 is not set |
1126 | # CONFIG_MFD_WM831X is not set | 1167 | # CONFIG_MFD_WM831X is not set |
1127 | # CONFIG_MFD_WM8350_I2C is not set | 1168 | # CONFIG_MFD_WM8350_I2C is not set |
1128 | # CONFIG_MFD_PCF50633 is not set | 1169 | # CONFIG_MFD_PCF50633 is not set |
1129 | # CONFIG_AB3100_CORE is not set | 1170 | # CONFIG_AB3100_CORE is not set |
1171 | # CONFIG_MFD_88PM8607 is not set | ||
1130 | # CONFIG_REGULATOR is not set | 1172 | # CONFIG_REGULATOR is not set |
1131 | # CONFIG_MEDIA_SUPPORT is not set | 1173 | # CONFIG_MEDIA_SUPPORT is not set |
1132 | 1174 | ||
@@ -1211,6 +1253,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1211 | # CONFIG_RTC_DRV_PCF8563 is not set | 1253 | # CONFIG_RTC_DRV_PCF8563 is not set |
1212 | # CONFIG_RTC_DRV_PCF8583 is not set | 1254 | # CONFIG_RTC_DRV_PCF8583 is not set |
1213 | # CONFIG_RTC_DRV_M41T80 is not set | 1255 | # CONFIG_RTC_DRV_M41T80 is not set |
1256 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1214 | # CONFIG_RTC_DRV_S35390A is not set | 1257 | # CONFIG_RTC_DRV_S35390A is not set |
1215 | # CONFIG_RTC_DRV_FM3130 is not set | 1258 | # CONFIG_RTC_DRV_FM3130 is not set |
1216 | # CONFIG_RTC_DRV_RX8581 is not set | 1259 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1231,7 +1274,9 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1231 | # CONFIG_RTC_DRV_M48T86 is not set | 1274 | # CONFIG_RTC_DRV_M48T86 is not set |
1232 | # CONFIG_RTC_DRV_M48T35 is not set | 1275 | # CONFIG_RTC_DRV_M48T35 is not set |
1233 | # CONFIG_RTC_DRV_M48T59 is not set | 1276 | # CONFIG_RTC_DRV_M48T59 is not set |
1277 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1234 | # CONFIG_RTC_DRV_BQ4802 is not set | 1278 | # CONFIG_RTC_DRV_BQ4802 is not set |
1279 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1235 | # CONFIG_RTC_DRV_V3020 is not set | 1280 | # CONFIG_RTC_DRV_V3020 is not set |
1236 | 1281 | ||
1237 | # | 1282 | # |
@@ -1436,6 +1481,8 @@ CONFIG_SCHED_DEBUG=y | |||
1436 | # CONFIG_DEBUG_OBJECTS is not set | 1481 | # CONFIG_DEBUG_OBJECTS is not set |
1437 | # CONFIG_DEBUG_SLAB is not set | 1482 | # CONFIG_DEBUG_SLAB is not set |
1438 | # CONFIG_DEBUG_PREEMPT is not set | 1483 | # CONFIG_DEBUG_PREEMPT is not set |
1484 | # CONFIG_DEBUG_RT_MUTEXES is not set | ||
1485 | # CONFIG_RT_MUTEX_TESTER is not set | ||
1439 | # CONFIG_DEBUG_SPINLOCK is not set | 1486 | # CONFIG_DEBUG_SPINLOCK is not set |
1440 | # CONFIG_DEBUG_MUTEXES is not set | 1487 | # CONFIG_DEBUG_MUTEXES is not set |
1441 | # CONFIG_DEBUG_LOCK_ALLOC is not set | 1488 | # CONFIG_DEBUG_LOCK_ALLOC is not set |
@@ -1462,6 +1509,7 @@ CONFIG_DEBUG_INFO=y | |||
1462 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set | 1509 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set |
1463 | # CONFIG_FAULT_INJECTION is not set | 1510 | # CONFIG_FAULT_INJECTION is not set |
1464 | # CONFIG_LATENCYTOP is not set | 1511 | # CONFIG_LATENCYTOP is not set |
1512 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1465 | # CONFIG_PAGE_POISONING is not set | 1513 | # CONFIG_PAGE_POISONING is not set |
1466 | CONFIG_NOP_TRACER=y | 1514 | CONFIG_NOP_TRACER=y |
1467 | CONFIG_HAVE_FUNCTION_TRACER=y | 1515 | CONFIG_HAVE_FUNCTION_TRACER=y |
@@ -1498,9 +1546,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1498 | CONFIG_HAVE_ARCH_KGDB=y | 1546 | CONFIG_HAVE_ARCH_KGDB=y |
1499 | # CONFIG_KGDB is not set | 1547 | # CONFIG_KGDB is not set |
1500 | # CONFIG_SH_STANDARD_BIOS is not set | 1548 | # CONFIG_SH_STANDARD_BIOS is not set |
1501 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1502 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 | ||
1503 | # CONFIG_EARLY_PRINTK is not set | ||
1504 | # CONFIG_STACK_DEBUG is not set | 1549 | # CONFIG_STACK_DEBUG is not set |
1505 | # CONFIG_DEBUG_STACK_USAGE is not set | 1550 | # CONFIG_DEBUG_STACK_USAGE is not set |
1506 | # CONFIG_4KSTACKS is not set | 1551 | # CONFIG_4KSTACKS is not set |
@@ -1514,7 +1559,11 @@ CONFIG_DUMP_CODE=y | |||
1514 | # CONFIG_KEYS is not set | 1559 | # CONFIG_KEYS is not set |
1515 | # CONFIG_SECURITY is not set | 1560 | # CONFIG_SECURITY is not set |
1516 | # CONFIG_SECURITYFS is not set | 1561 | # CONFIG_SECURITYFS is not set |
1517 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1562 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1563 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1564 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1565 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1566 | CONFIG_DEFAULT_SECURITY="" | ||
1518 | CONFIG_CRYPTO=y | 1567 | CONFIG_CRYPTO=y |
1519 | 1568 | ||
1520 | # | 1569 | # |
diff --git a/arch/sh/configs/r7785rp_defconfig b/arch/sh/configs/r7785rp_defconfig index 27ff46c13a8..f4b00451dce 100644 --- a/arch/sh/configs/r7785rp_defconfig +++ b/arch/sh/configs/r7785rp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:29:23 2009 | 4 | # Mon Jan 4 13:19:35 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
24 | CONFIG_SYS_SUPPORTS_PCI=y | 25 | CONFIG_SYS_SUPPORTS_PCI=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -32,6 +33,7 @@ CONFIG_ARCH_NO_VIRT_TO_BUS=y | |||
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_IO_TRAPPED=y | 35 | CONFIG_IO_TRAPPED=y |
36 | CONFIG_DMA_NONCOHERENT=y | ||
35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 37 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
36 | CONFIG_CONSTRUCTORS=y | 38 | CONFIG_CONSTRUCTORS=y |
37 | 39 | ||
@@ -67,6 +69,7 @@ CONFIG_AUDIT_TREE=y | |||
67 | # | 69 | # |
68 | CONFIG_TREE_RCU=y | 70 | CONFIG_TREE_RCU=y |
69 | # CONFIG_TREE_PREEMPT_RCU is not set | 71 | # CONFIG_TREE_PREEMPT_RCU is not set |
72 | # CONFIG_TINY_RCU is not set | ||
70 | CONFIG_RCU_TRACE=y | 73 | CONFIG_RCU_TRACE=y |
71 | CONFIG_RCU_FANOUT=32 | 74 | CONFIG_RCU_FANOUT=32 |
72 | # CONFIG_RCU_FANOUT_EXACT is not set | 75 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,6 +106,7 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -110,6 +114,7 @@ CONFIG_HAVE_PERF_EVENTS=y | |||
110 | CONFIG_PERF_EVENTS=y | 114 | CONFIG_PERF_EVENTS=y |
111 | CONFIG_EVENT_PROFILE=y | 115 | CONFIG_EVENT_PROFILE=y |
112 | # CONFIG_PERF_COUNTERS is not set | 116 | # CONFIG_PERF_COUNTERS is not set |
117 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
113 | CONFIG_VM_EVENT_COUNTERS=y | 118 | CONFIG_VM_EVENT_COUNTERS=y |
114 | CONFIG_PCI_QUIRKS=y | 119 | CONFIG_PCI_QUIRKS=y |
115 | CONFIG_COMPAT_BRK=y | 120 | CONFIG_COMPAT_BRK=y |
@@ -126,6 +131,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
126 | CONFIG_HAVE_KPROBES=y | 131 | CONFIG_HAVE_KPROBES=y |
127 | CONFIG_HAVE_KRETPROBES=y | 132 | CONFIG_HAVE_KRETPROBES=y |
128 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 133 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
134 | CONFIG_HAVE_DMA_ATTRS=y | ||
129 | CONFIG_HAVE_CLK=y | 135 | CONFIG_HAVE_CLK=y |
130 | CONFIG_HAVE_DMA_API_DEBUG=y | 136 | CONFIG_HAVE_DMA_API_DEBUG=y |
131 | 137 | ||
@@ -153,14 +159,41 @@ CONFIG_LBDAF=y | |||
153 | # IO Schedulers | 159 | # IO Schedulers |
154 | # | 160 | # |
155 | CONFIG_IOSCHED_NOOP=y | 161 | CONFIG_IOSCHED_NOOP=y |
156 | # CONFIG_IOSCHED_AS is not set | ||
157 | # CONFIG_IOSCHED_DEADLINE is not set | 162 | # CONFIG_IOSCHED_DEADLINE is not set |
158 | # CONFIG_IOSCHED_CFQ is not set | 163 | # CONFIG_IOSCHED_CFQ is not set |
159 | # CONFIG_DEFAULT_AS is not set | ||
160 | # CONFIG_DEFAULT_DEADLINE is not set | 164 | # CONFIG_DEFAULT_DEADLINE is not set |
161 | # CONFIG_DEFAULT_CFQ is not set | 165 | # CONFIG_DEFAULT_CFQ is not set |
162 | CONFIG_DEFAULT_NOOP=y | 166 | CONFIG_DEFAULT_NOOP=y |
163 | CONFIG_DEFAULT_IOSCHED="noop" | 167 | CONFIG_DEFAULT_IOSCHED="noop" |
168 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
169 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
170 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
171 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
174 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
175 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
176 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
177 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
179 | # CONFIG_INLINE_READ_LOCK is not set | ||
180 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
181 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
182 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
183 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
184 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
185 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
186 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
187 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
188 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
189 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
190 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
191 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
192 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
193 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
194 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
195 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
196 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
164 | # CONFIG_FREEZER is not set | 197 | # CONFIG_FREEZER is not set |
165 | 198 | ||
166 | # | 199 | # |
@@ -248,13 +281,11 @@ CONFIG_SPARSEMEM=y | |||
248 | CONFIG_HAVE_MEMORY_PRESENT=y | 281 | CONFIG_HAVE_MEMORY_PRESENT=y |
249 | CONFIG_SPARSEMEM_STATIC=y | 282 | CONFIG_SPARSEMEM_STATIC=y |
250 | # CONFIG_MEMORY_HOTPLUG is not set | 283 | # CONFIG_MEMORY_HOTPLUG is not set |
251 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 284 | CONFIG_SPLIT_PTLOCK_CPUS=999999 |
252 | CONFIG_MIGRATION=y | 285 | CONFIG_MIGRATION=y |
253 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 286 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
254 | CONFIG_ZONE_DMA_FLAG=0 | 287 | CONFIG_ZONE_DMA_FLAG=0 |
255 | CONFIG_NR_QUICK=2 | 288 | CONFIG_NR_QUICK=2 |
256 | CONFIG_HAVE_MLOCK=y | ||
257 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
258 | # CONFIG_KSM is not set | 289 | # CONFIG_KSM is not set |
259 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 290 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
260 | 291 | ||
@@ -289,7 +320,6 @@ CONFIG_SH_R7785RP=y | |||
289 | # Timer and clock configuration | 320 | # Timer and clock configuration |
290 | # | 321 | # |
291 | CONFIG_SH_TIMER_TMU=y | 322 | CONFIG_SH_TIMER_TMU=y |
292 | CONFIG_SH_PCLK_FREQ=33333333 | ||
293 | CONFIG_SH_CLK_CPG=y | 323 | CONFIG_SH_CLK_CPG=y |
294 | CONFIG_TICK_ONESHOT=y | 324 | CONFIG_TICK_ONESHOT=y |
295 | CONFIG_NO_HZ=y | 325 | CONFIG_NO_HZ=y |
@@ -363,7 +393,6 @@ CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/sda1" | |||
363 | # Bus options | 393 | # Bus options |
364 | # | 394 | # |
365 | CONFIG_PCI=y | 395 | CONFIG_PCI=y |
366 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
367 | # CONFIG_PCIEPORTBUS is not set | 396 | # CONFIG_PCIEPORTBUS is not set |
368 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 397 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
369 | # CONFIG_PCI_LEGACY is not set | 398 | # CONFIG_PCI_LEGACY is not set |
@@ -471,10 +500,6 @@ CONFIG_LLC=m | |||
471 | # CONFIG_AF_RXRPC is not set | 500 | # CONFIG_AF_RXRPC is not set |
472 | CONFIG_WIRELESS=y | 501 | CONFIG_WIRELESS=y |
473 | # CONFIG_CFG80211 is not set | 502 | # CONFIG_CFG80211 is not set |
474 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
475 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
476 | CONFIG_WIRELESS_EXT=y | ||
477 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
478 | # CONFIG_LIB80211 is not set | 503 | # CONFIG_LIB80211 is not set |
479 | 504 | ||
480 | # | 505 | # |
@@ -510,6 +535,10 @@ CONFIG_BLK_DEV=y | |||
510 | # CONFIG_BLK_DEV_UMEM is not set | 535 | # CONFIG_BLK_DEV_UMEM is not set |
511 | # CONFIG_BLK_DEV_COW_COMMON is not set | 536 | # CONFIG_BLK_DEV_COW_COMMON is not set |
512 | # CONFIG_BLK_DEV_LOOP is not set | 537 | # CONFIG_BLK_DEV_LOOP is not set |
538 | |||
539 | # | ||
540 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
541 | # | ||
513 | # CONFIG_BLK_DEV_NBD is not set | 542 | # CONFIG_BLK_DEV_NBD is not set |
514 | # CONFIG_BLK_DEV_SX8 is not set | 543 | # CONFIG_BLK_DEV_SX8 is not set |
515 | CONFIG_BLK_DEV_RAM=y | 544 | CONFIG_BLK_DEV_RAM=y |
@@ -520,6 +549,7 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
520 | # CONFIG_ATA_OVER_ETH is not set | 549 | # CONFIG_ATA_OVER_ETH is not set |
521 | # CONFIG_BLK_DEV_HD is not set | 550 | # CONFIG_BLK_DEV_HD is not set |
522 | CONFIG_MISC_DEVICES=y | 551 | CONFIG_MISC_DEVICES=y |
552 | # CONFIG_AD525X_DPOT is not set | ||
523 | # CONFIG_PHANTOM is not set | 553 | # CONFIG_PHANTOM is not set |
524 | # CONFIG_SGI_IOC4 is not set | 554 | # CONFIG_SGI_IOC4 is not set |
525 | # CONFIG_TIFM_CORE is not set | 555 | # CONFIG_TIFM_CORE is not set |
@@ -527,6 +557,7 @@ CONFIG_MISC_DEVICES=y | |||
527 | # CONFIG_ENCLOSURE_SERVICES is not set | 557 | # CONFIG_ENCLOSURE_SERVICES is not set |
528 | # CONFIG_HP_ILO is not set | 558 | # CONFIG_HP_ILO is not set |
529 | # CONFIG_ISL29003 is not set | 559 | # CONFIG_ISL29003 is not set |
560 | # CONFIG_DS1682 is not set | ||
530 | # CONFIG_C2PORT is not set | 561 | # CONFIG_C2PORT is not set |
531 | 562 | ||
532 | # | 563 | # |
@@ -577,8 +608,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
577 | # CONFIG_ISCSI_TCP is not set | 608 | # CONFIG_ISCSI_TCP is not set |
578 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 609 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
579 | # CONFIG_SCSI_BNX2_ISCSI is not set | 610 | # CONFIG_SCSI_BNX2_ISCSI is not set |
611 | # CONFIG_BE2ISCSI is not set | ||
580 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 612 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
613 | # CONFIG_SCSI_HPSA is not set | ||
581 | # CONFIG_SCSI_3W_9XXX is not set | 614 | # CONFIG_SCSI_3W_9XXX is not set |
615 | # CONFIG_SCSI_3W_SAS is not set | ||
582 | # CONFIG_SCSI_ACARD is not set | 616 | # CONFIG_SCSI_ACARD is not set |
583 | # CONFIG_SCSI_AACRAID is not set | 617 | # CONFIG_SCSI_AACRAID is not set |
584 | # CONFIG_SCSI_AIC7XXX is not set | 618 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -612,7 +646,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
612 | # CONFIG_SCSI_NSP32 is not set | 646 | # CONFIG_SCSI_NSP32 is not set |
613 | # CONFIG_SCSI_DEBUG is not set | 647 | # CONFIG_SCSI_DEBUG is not set |
614 | # CONFIG_SCSI_PMCRAID is not set | 648 | # CONFIG_SCSI_PMCRAID is not set |
649 | # CONFIG_SCSI_PM8001 is not set | ||
615 | # CONFIG_SCSI_SRP is not set | 650 | # CONFIG_SCSI_SRP is not set |
651 | # CONFIG_SCSI_BFA_FC is not set | ||
616 | # CONFIG_SCSI_DH is not set | 652 | # CONFIG_SCSI_DH is not set |
617 | # CONFIG_SCSI_OSD_INITIATOR is not set | 653 | # CONFIG_SCSI_OSD_INITIATOR is not set |
618 | CONFIG_ATA=y | 654 | CONFIG_ATA=y |
@@ -665,15 +701,16 @@ CONFIG_SATA_SIL=y | |||
665 | # CONFIG_PATA_NS87415 is not set | 701 | # CONFIG_PATA_NS87415 is not set |
666 | # CONFIG_PATA_OPTI is not set | 702 | # CONFIG_PATA_OPTI is not set |
667 | # CONFIG_PATA_OPTIDMA is not set | 703 | # CONFIG_PATA_OPTIDMA is not set |
704 | # CONFIG_PATA_PDC2027X is not set | ||
668 | # CONFIG_PATA_PDC_OLD is not set | 705 | # CONFIG_PATA_PDC_OLD is not set |
669 | # CONFIG_PATA_RADISYS is not set | 706 | # CONFIG_PATA_RADISYS is not set |
670 | # CONFIG_PATA_RDC is not set | 707 | # CONFIG_PATA_RDC is not set |
671 | # CONFIG_PATA_RZ1000 is not set | 708 | # CONFIG_PATA_RZ1000 is not set |
672 | # CONFIG_PATA_SC1200 is not set | 709 | # CONFIG_PATA_SC1200 is not set |
673 | # CONFIG_PATA_SERVERWORKS is not set | 710 | # CONFIG_PATA_SERVERWORKS is not set |
674 | # CONFIG_PATA_PDC2027X is not set | ||
675 | # CONFIG_PATA_SIL680 is not set | 711 | # CONFIG_PATA_SIL680 is not set |
676 | # CONFIG_PATA_SIS is not set | 712 | # CONFIG_PATA_SIS is not set |
713 | # CONFIG_PATA_TOSHIBA is not set | ||
677 | # CONFIG_PATA_VIA is not set | 714 | # CONFIG_PATA_VIA is not set |
678 | # CONFIG_PATA_WINBOND is not set | 715 | # CONFIG_PATA_WINBOND is not set |
679 | CONFIG_PATA_PLATFORM=y | 716 | CONFIG_PATA_PLATFORM=y |
@@ -730,6 +767,7 @@ CONFIG_AX88796_93CX6=y | |||
730 | # CONFIG_NET_PCI is not set | 767 | # CONFIG_NET_PCI is not set |
731 | # CONFIG_B44 is not set | 768 | # CONFIG_B44 is not set |
732 | # CONFIG_KS8842 is not set | 769 | # CONFIG_KS8842 is not set |
770 | # CONFIG_KS8851_MLL is not set | ||
733 | # CONFIG_ATL2 is not set | 771 | # CONFIG_ATL2 is not set |
734 | CONFIG_NETDEV_1000=y | 772 | CONFIG_NETDEV_1000=y |
735 | # CONFIG_ACENIC is not set | 773 | # CONFIG_ACENIC is not set |
@@ -776,8 +814,9 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
776 | # CONFIG_BE2NET is not set | 814 | # CONFIG_BE2NET is not set |
777 | # CONFIG_TR is not set | 815 | # CONFIG_TR is not set |
778 | CONFIG_WLAN=y | 816 | CONFIG_WLAN=y |
779 | # CONFIG_WLAN_PRE80211 is not set | 817 | # CONFIG_ATMEL is not set |
780 | # CONFIG_WLAN_80211 is not set | 818 | # CONFIG_PRISM54 is not set |
819 | # CONFIG_HOSTAP is not set | ||
781 | 820 | ||
782 | # | 821 | # |
783 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 822 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -791,6 +830,7 @@ CONFIG_WLAN=y | |||
791 | # CONFIG_NETCONSOLE is not set | 830 | # CONFIG_NETCONSOLE is not set |
792 | # CONFIG_NETPOLL is not set | 831 | # CONFIG_NETPOLL is not set |
793 | # CONFIG_NET_POLL_CONTROLLER is not set | 832 | # CONFIG_NET_POLL_CONTROLLER is not set |
833 | # CONFIG_VMXNET3 is not set | ||
794 | # CONFIG_ISDN is not set | 834 | # CONFIG_ISDN is not set |
795 | # CONFIG_PHONE is not set | 835 | # CONFIG_PHONE is not set |
796 | 836 | ||
@@ -800,6 +840,7 @@ CONFIG_WLAN=y | |||
800 | CONFIG_INPUT=y | 840 | CONFIG_INPUT=y |
801 | # CONFIG_INPUT_FF_MEMLESS is not set | 841 | # CONFIG_INPUT_FF_MEMLESS is not set |
802 | # CONFIG_INPUT_POLLDEV is not set | 842 | # CONFIG_INPUT_POLLDEV is not set |
843 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
803 | 844 | ||
804 | # | 845 | # |
805 | # Userland interfaces | 846 | # Userland interfaces |
@@ -844,6 +885,7 @@ CONFIG_SERIO=y | |||
844 | # CONFIG_SERIO_PCIPS2 is not set | 885 | # CONFIG_SERIO_PCIPS2 is not set |
845 | CONFIG_SERIO_LIBPS2=y | 886 | CONFIG_SERIO_LIBPS2=y |
846 | # CONFIG_SERIO_RAW is not set | 887 | # CONFIG_SERIO_RAW is not set |
888 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
847 | # CONFIG_GAMEPORT is not set | 889 | # CONFIG_GAMEPORT is not set |
848 | 890 | ||
849 | # | 891 | # |
@@ -925,11 +967,6 @@ CONFIG_I2C_HIGHLANDER=y | |||
925 | # CONFIG_I2C_TAOS_EVM is not set | 967 | # CONFIG_I2C_TAOS_EVM is not set |
926 | 968 | ||
927 | # | 969 | # |
928 | # Graphics adapter I2C/DDC channel drivers | ||
929 | # | ||
930 | # CONFIG_I2C_VOODOO3 is not set | ||
931 | |||
932 | # | ||
933 | # Other I2C/SMBus bus drivers | 970 | # Other I2C/SMBus bus drivers |
934 | # | 971 | # |
935 | # CONFIG_I2C_PCA_PLATFORM is not set | 972 | # CONFIG_I2C_PCA_PLATFORM is not set |
@@ -938,7 +975,6 @@ CONFIG_I2C_HIGHLANDER=y | |||
938 | # | 975 | # |
939 | # Miscellaneous I2C Chip support | 976 | # Miscellaneous I2C Chip support |
940 | # | 977 | # |
941 | # CONFIG_DS1682 is not set | ||
942 | # CONFIG_SENSORS_TSL2550 is not set | 978 | # CONFIG_SENSORS_TSL2550 is not set |
943 | # CONFIG_I2C_DEBUG_CORE is not set | 979 | # CONFIG_I2C_DEBUG_CORE is not set |
944 | # CONFIG_I2C_DEBUG_ALGO is not set | 980 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -969,6 +1005,7 @@ CONFIG_GPIOLIB=y | |||
969 | # | 1005 | # |
970 | # PCI GPIO expanders: | 1006 | # PCI GPIO expanders: |
971 | # | 1007 | # |
1008 | # CONFIG_GPIO_CS5535 is not set | ||
972 | # CONFIG_GPIO_BT8XX is not set | 1009 | # CONFIG_GPIO_BT8XX is not set |
973 | # CONFIG_GPIO_LANGWELL is not set | 1010 | # CONFIG_GPIO_LANGWELL is not set |
974 | 1011 | ||
@@ -1011,6 +1048,7 @@ CONFIG_HWMON=y | |||
1011 | # CONFIG_SENSORS_GL520SM is not set | 1048 | # CONFIG_SENSORS_GL520SM is not set |
1012 | # CONFIG_SENSORS_IT87 is not set | 1049 | # CONFIG_SENSORS_IT87 is not set |
1013 | # CONFIG_SENSORS_LM63 is not set | 1050 | # CONFIG_SENSORS_LM63 is not set |
1051 | # CONFIG_SENSORS_LM73 is not set | ||
1014 | # CONFIG_SENSORS_LM75 is not set | 1052 | # CONFIG_SENSORS_LM75 is not set |
1015 | # CONFIG_SENSORS_LM77 is not set | 1053 | # CONFIG_SENSORS_LM77 is not set |
1016 | # CONFIG_SENSORS_LM78 is not set | 1054 | # CONFIG_SENSORS_LM78 is not set |
@@ -1050,6 +1088,7 @@ CONFIG_HWMON=y | |||
1050 | # CONFIG_SENSORS_W83L786NG is not set | 1088 | # CONFIG_SENSORS_W83L786NG is not set |
1051 | # CONFIG_SENSORS_W83627HF is not set | 1089 | # CONFIG_SENSORS_W83627HF is not set |
1052 | # CONFIG_SENSORS_W83627EHF is not set | 1090 | # CONFIG_SENSORS_W83627EHF is not set |
1091 | # CONFIG_SENSORS_LIS3_I2C is not set | ||
1053 | # CONFIG_THERMAL is not set | 1092 | # CONFIG_THERMAL is not set |
1054 | # CONFIG_WATCHDOG is not set | 1093 | # CONFIG_WATCHDOG is not set |
1055 | CONFIG_SSB_POSSIBLE=y | 1094 | CONFIG_SSB_POSSIBLE=y |
@@ -1064,16 +1103,19 @@ CONFIG_SSB_POSSIBLE=y | |||
1064 | # | 1103 | # |
1065 | # CONFIG_MFD_CORE is not set | 1104 | # CONFIG_MFD_CORE is not set |
1066 | # CONFIG_MFD_SM501 is not set | 1105 | # CONFIG_MFD_SM501 is not set |
1106 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
1067 | # CONFIG_HTC_PASIC3 is not set | 1107 | # CONFIG_HTC_PASIC3 is not set |
1068 | # CONFIG_TPS65010 is not set | 1108 | # CONFIG_TPS65010 is not set |
1069 | # CONFIG_TWL4030_CORE is not set | 1109 | # CONFIG_TWL4030_CORE is not set |
1070 | # CONFIG_MFD_TMIO is not set | 1110 | # CONFIG_MFD_TMIO is not set |
1071 | # CONFIG_PMIC_DA903X is not set | 1111 | # CONFIG_PMIC_DA903X is not set |
1112 | # CONFIG_PMIC_ADP5520 is not set | ||
1072 | # CONFIG_MFD_WM8400 is not set | 1113 | # CONFIG_MFD_WM8400 is not set |
1073 | # CONFIG_MFD_WM831X is not set | 1114 | # CONFIG_MFD_WM831X is not set |
1074 | # CONFIG_MFD_WM8350_I2C is not set | 1115 | # CONFIG_MFD_WM8350_I2C is not set |
1075 | # CONFIG_MFD_PCF50633 is not set | 1116 | # CONFIG_MFD_PCF50633 is not set |
1076 | # CONFIG_AB3100_CORE is not set | 1117 | # CONFIG_AB3100_CORE is not set |
1118 | # CONFIG_MFD_88PM8607 is not set | ||
1077 | # CONFIG_REGULATOR is not set | 1119 | # CONFIG_REGULATOR is not set |
1078 | # CONFIG_MEDIA_SUPPORT is not set | 1120 | # CONFIG_MEDIA_SUPPORT is not set |
1079 | 1121 | ||
@@ -1211,6 +1253,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1211 | # CONFIG_RTC_DRV_PCF8563 is not set | 1253 | # CONFIG_RTC_DRV_PCF8563 is not set |
1212 | # CONFIG_RTC_DRV_PCF8583 is not set | 1254 | # CONFIG_RTC_DRV_PCF8583 is not set |
1213 | # CONFIG_RTC_DRV_M41T80 is not set | 1255 | # CONFIG_RTC_DRV_M41T80 is not set |
1256 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1214 | # CONFIG_RTC_DRV_S35390A is not set | 1257 | # CONFIG_RTC_DRV_S35390A is not set |
1215 | # CONFIG_RTC_DRV_FM3130 is not set | 1258 | # CONFIG_RTC_DRV_FM3130 is not set |
1216 | # CONFIG_RTC_DRV_RX8581 is not set | 1259 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1231,7 +1274,9 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1231 | # CONFIG_RTC_DRV_M48T86 is not set | 1274 | # CONFIG_RTC_DRV_M48T86 is not set |
1232 | # CONFIG_RTC_DRV_M48T35 is not set | 1275 | # CONFIG_RTC_DRV_M48T35 is not set |
1233 | # CONFIG_RTC_DRV_M48T59 is not set | 1276 | # CONFIG_RTC_DRV_M48T59 is not set |
1277 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1234 | # CONFIG_RTC_DRV_BQ4802 is not set | 1278 | # CONFIG_RTC_DRV_BQ4802 is not set |
1279 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1235 | # CONFIG_RTC_DRV_V3020 is not set | 1280 | # CONFIG_RTC_DRV_V3020 is not set |
1236 | 1281 | ||
1237 | # | 1282 | # |
@@ -1463,6 +1508,7 @@ CONFIG_FRAME_POINTER=y | |||
1463 | # CONFIG_LKDTM is not set | 1508 | # CONFIG_LKDTM is not set |
1464 | # CONFIG_FAULT_INJECTION is not set | 1509 | # CONFIG_FAULT_INJECTION is not set |
1465 | # CONFIG_LATENCYTOP is not set | 1510 | # CONFIG_LATENCYTOP is not set |
1511 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1466 | # CONFIG_PAGE_POISONING is not set | 1512 | # CONFIG_PAGE_POISONING is not set |
1467 | CONFIG_NOP_TRACER=y | 1513 | CONFIG_NOP_TRACER=y |
1468 | CONFIG_HAVE_FUNCTION_TRACER=y | 1514 | CONFIG_HAVE_FUNCTION_TRACER=y |
@@ -1499,8 +1545,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1499 | CONFIG_HAVE_ARCH_KGDB=y | 1545 | CONFIG_HAVE_ARCH_KGDB=y |
1500 | # CONFIG_KGDB is not set | 1546 | # CONFIG_KGDB is not set |
1501 | CONFIG_SH_STANDARD_BIOS=y | 1547 | CONFIG_SH_STANDARD_BIOS=y |
1502 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1503 | CONFIG_EARLY_PRINTK=y | ||
1504 | # CONFIG_STACK_DEBUG is not set | 1548 | # CONFIG_STACK_DEBUG is not set |
1505 | CONFIG_DEBUG_STACK_USAGE=y | 1549 | CONFIG_DEBUG_STACK_USAGE=y |
1506 | CONFIG_4KSTACKS=y | 1550 | CONFIG_4KSTACKS=y |
@@ -1514,7 +1558,11 @@ CONFIG_DUMP_CODE=y | |||
1514 | # CONFIG_KEYS is not set | 1558 | # CONFIG_KEYS is not set |
1515 | # CONFIG_SECURITY is not set | 1559 | # CONFIG_SECURITY is not set |
1516 | # CONFIG_SECURITYFS is not set | 1560 | # CONFIG_SECURITYFS is not set |
1517 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1561 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1562 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1563 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1564 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1565 | CONFIG_DEFAULT_SECURITY="" | ||
1518 | CONFIG_CRYPTO=y | 1566 | CONFIG_CRYPTO=y |
1519 | 1567 | ||
1520 | # | 1568 | # |
diff --git a/arch/sh/configs/rsk7201_defconfig b/arch/sh/configs/rsk7201_defconfig index c40db12e9ad..2fc635a5a8c 100644 --- a/arch/sh/configs/rsk7201_defconfig +++ b/arch/sh/configs/rsk7201_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:34:29 2009 | 4 | # Mon Jan 4 13:23:12 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -29,6 +29,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
32 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 34 | CONFIG_CONSTRUCTORS=y |
34 | 35 | ||
@@ -56,6 +57,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
56 | # | 57 | # |
57 | CONFIG_TREE_RCU=y | 58 | CONFIG_TREE_RCU=y |
58 | # CONFIG_TREE_PREEMPT_RCU is not set | 59 | # CONFIG_TREE_PREEMPT_RCU is not set |
60 | # CONFIG_TINY_RCU is not set | ||
59 | # CONFIG_RCU_TRACE is not set | 61 | # CONFIG_RCU_TRACE is not set |
60 | CONFIG_RCU_FANOUT=32 | 62 | CONFIG_RCU_FANOUT=32 |
61 | # CONFIG_RCU_FANOUT_EXACT is not set | 63 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -97,6 +99,7 @@ CONFIG_TIMERFD=y | |||
97 | CONFIG_EVENTFD=y | 99 | CONFIG_EVENTFD=y |
98 | # CONFIG_AIO is not set | 100 | # CONFIG_AIO is not set |
99 | CONFIG_HAVE_PERF_EVENTS=y | 101 | CONFIG_HAVE_PERF_EVENTS=y |
102 | CONFIG_PERF_USE_VMALLOC=y | ||
100 | 103 | ||
101 | # | 104 | # |
102 | # Kernel Performance Events And Counters | 105 | # Kernel Performance Events And Counters |
@@ -109,6 +112,7 @@ CONFIG_COMPAT_BRK=y | |||
109 | # CONFIG_SLAB is not set | 112 | # CONFIG_SLAB is not set |
110 | # CONFIG_SLUB is not set | 113 | # CONFIG_SLUB is not set |
111 | CONFIG_SLOB=y | 114 | CONFIG_SLOB=y |
115 | # CONFIG_MMAP_ALLOW_UNINITIALIZED is not set | ||
112 | CONFIG_PROFILING=y | 116 | CONFIG_PROFILING=y |
113 | CONFIG_TRACEPOINTS=y | 117 | CONFIG_TRACEPOINTS=y |
114 | CONFIG_OPROFILE=y | 118 | CONFIG_OPROFILE=y |
@@ -117,6 +121,7 @@ CONFIG_HAVE_OPROFILE=y | |||
117 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
118 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
120 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
121 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
122 | 127 | ||
@@ -142,14 +147,41 @@ CONFIG_LBDAF=y | |||
142 | # IO Schedulers | 147 | # IO Schedulers |
143 | # | 148 | # |
144 | CONFIG_IOSCHED_NOOP=y | 149 | CONFIG_IOSCHED_NOOP=y |
145 | # CONFIG_IOSCHED_AS is not set | ||
146 | # CONFIG_IOSCHED_DEADLINE is not set | 150 | # CONFIG_IOSCHED_DEADLINE is not set |
147 | # CONFIG_IOSCHED_CFQ is not set | 151 | # CONFIG_IOSCHED_CFQ is not set |
148 | # CONFIG_DEFAULT_AS is not set | ||
149 | # CONFIG_DEFAULT_DEADLINE is not set | 152 | # CONFIG_DEFAULT_DEADLINE is not set |
150 | # CONFIG_DEFAULT_CFQ is not set | 153 | # CONFIG_DEFAULT_CFQ is not set |
151 | CONFIG_DEFAULT_NOOP=y | 154 | CONFIG_DEFAULT_NOOP=y |
152 | CONFIG_DEFAULT_IOSCHED="noop" | 155 | CONFIG_DEFAULT_IOSCHED="noop" |
156 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
162 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
164 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
166 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
171 | CONFIG_INLINE_READ_UNLOCK=y | ||
172 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
173 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
175 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
180 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
182 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
184 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
153 | # CONFIG_FREEZER is not set | 185 | # CONFIG_FREEZER is not set |
154 | 186 | ||
155 | # | 187 | # |
@@ -224,7 +256,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
224 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 256 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
225 | CONFIG_ZONE_DMA_FLAG=0 | 257 | CONFIG_ZONE_DMA_FLAG=0 |
226 | CONFIG_NR_QUICK=2 | 258 | CONFIG_NR_QUICK=2 |
227 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
228 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 | 259 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 |
229 | 260 | ||
230 | # | 261 | # |
@@ -433,6 +464,10 @@ CONFIG_MTD_PHYSMAP=y | |||
433 | CONFIG_BLK_DEV=y | 464 | CONFIG_BLK_DEV=y |
434 | # CONFIG_BLK_DEV_COW_COMMON is not set | 465 | # CONFIG_BLK_DEV_COW_COMMON is not set |
435 | # CONFIG_BLK_DEV_LOOP is not set | 466 | # CONFIG_BLK_DEV_LOOP is not set |
467 | |||
468 | # | ||
469 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
470 | # | ||
436 | # CONFIG_BLK_DEV_RAM is not set | 471 | # CONFIG_BLK_DEV_RAM is not set |
437 | # CONFIG_CDROM_PKTCDVD is not set | 472 | # CONFIG_CDROM_PKTCDVD is not set |
438 | # CONFIG_BLK_DEV_HD is not set | 473 | # CONFIG_BLK_DEV_HD is not set |
@@ -464,6 +499,7 @@ CONFIG_HAVE_IDE=y | |||
464 | CONFIG_INPUT=y | 499 | CONFIG_INPUT=y |
465 | # CONFIG_INPUT_FF_MEMLESS is not set | 500 | # CONFIG_INPUT_FF_MEMLESS is not set |
466 | # CONFIG_INPUT_POLLDEV is not set | 501 | # CONFIG_INPUT_POLLDEV is not set |
502 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
467 | 503 | ||
468 | # | 504 | # |
469 | # Userland interfaces | 505 | # Userland interfaces |
@@ -540,6 +576,7 @@ CONFIG_SSB_POSSIBLE=y | |||
540 | # | 576 | # |
541 | # CONFIG_MFD_CORE is not set | 577 | # CONFIG_MFD_CORE is not set |
542 | # CONFIG_MFD_SM501 is not set | 578 | # CONFIG_MFD_SM501 is not set |
579 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
543 | # CONFIG_HTC_PASIC3 is not set | 580 | # CONFIG_HTC_PASIC3 is not set |
544 | # CONFIG_MFD_TMIO is not set | 581 | # CONFIG_MFD_TMIO is not set |
545 | # CONFIG_REGULATOR is not set | 582 | # CONFIG_REGULATOR is not set |
@@ -594,7 +631,9 @@ CONFIG_RTC_INTF_DEV=y | |||
594 | # CONFIG_RTC_DRV_M48T86 is not set | 631 | # CONFIG_RTC_DRV_M48T86 is not set |
595 | # CONFIG_RTC_DRV_M48T35 is not set | 632 | # CONFIG_RTC_DRV_M48T35 is not set |
596 | # CONFIG_RTC_DRV_M48T59 is not set | 633 | # CONFIG_RTC_DRV_M48T59 is not set |
634 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
597 | # CONFIG_RTC_DRV_BQ4802 is not set | 635 | # CONFIG_RTC_DRV_BQ4802 is not set |
636 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
598 | # CONFIG_RTC_DRV_V3020 is not set | 637 | # CONFIG_RTC_DRV_V3020 is not set |
599 | 638 | ||
600 | # | 639 | # |
@@ -618,6 +657,7 @@ CONFIG_EXT2_FS=y | |||
618 | # CONFIG_EXT2_FS_XATTR is not set | 657 | # CONFIG_EXT2_FS_XATTR is not set |
619 | # CONFIG_EXT3_FS is not set | 658 | # CONFIG_EXT3_FS is not set |
620 | # CONFIG_EXT4_FS is not set | 659 | # CONFIG_EXT4_FS is not set |
660 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
621 | # CONFIG_REISERFS_FS is not set | 661 | # CONFIG_REISERFS_FS is not set |
622 | # CONFIG_JFS_FS is not set | 662 | # CONFIG_JFS_FS is not set |
623 | # CONFIG_FS_POSIX_ACL is not set | 663 | # CONFIG_FS_POSIX_ACL is not set |
@@ -717,7 +757,7 @@ CONFIG_DEBUG_FS=y | |||
717 | # CONFIG_HEADERS_CHECK is not set | 757 | # CONFIG_HEADERS_CHECK is not set |
718 | # CONFIG_DEBUG_KERNEL is not set | 758 | # CONFIG_DEBUG_KERNEL is not set |
719 | CONFIG_STACKTRACE=y | 759 | CONFIG_STACKTRACE=y |
720 | # CONFIG_DEBUG_BUGVERBOSE is not set | 760 | CONFIG_DEBUG_BUGVERBOSE=y |
721 | # CONFIG_DEBUG_MEMORY_INIT is not set | 761 | # CONFIG_DEBUG_MEMORY_INIT is not set |
722 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 762 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
723 | # CONFIG_LATENCYTOP is not set | 763 | # CONFIG_LATENCYTOP is not set |
@@ -741,7 +781,6 @@ CONFIG_TRACING_SUPPORT=y | |||
741 | # CONFIG_SAMPLES is not set | 781 | # CONFIG_SAMPLES is not set |
742 | CONFIG_HAVE_ARCH_KGDB=y | 782 | CONFIG_HAVE_ARCH_KGDB=y |
743 | # CONFIG_SH_STANDARD_BIOS is not set | 783 | # CONFIG_SH_STANDARD_BIOS is not set |
744 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
745 | # CONFIG_DWARF_UNWINDER is not set | 784 | # CONFIG_DWARF_UNWINDER is not set |
746 | 785 | ||
747 | # | 786 | # |
@@ -750,7 +789,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
750 | # CONFIG_KEYS is not set | 789 | # CONFIG_KEYS is not set |
751 | # CONFIG_SECURITY is not set | 790 | # CONFIG_SECURITY is not set |
752 | # CONFIG_SECURITYFS is not set | 791 | # CONFIG_SECURITYFS is not set |
753 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 792 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
793 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
794 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
795 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
796 | CONFIG_DEFAULT_SECURITY="" | ||
754 | # CONFIG_CRYPTO is not set | 797 | # CONFIG_CRYPTO is not set |
755 | CONFIG_BINARY_PRINTF=y | 798 | CONFIG_BINARY_PRINTF=y |
756 | 799 | ||
diff --git a/arch/sh/configs/rsk7203_defconfig b/arch/sh/configs/rsk7203_defconfig index 5cabdb3a84f..0169e60e094 100644 --- a/arch/sh/configs/rsk7203_defconfig +++ b/arch/sh/configs/rsk7203_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:35:04 2009 | 4 | # Mon Jan 4 13:23:54 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -30,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
35 | 36 | ||
@@ -61,6 +62,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
61 | # | 62 | # |
62 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -104,6 +106,7 @@ CONFIG_TIMERFD=y | |||
104 | CONFIG_EVENTFD=y | 106 | CONFIG_EVENTFD=y |
105 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
106 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
107 | 110 | ||
108 | # | 111 | # |
109 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -111,11 +114,13 @@ CONFIG_HAVE_PERF_EVENTS=y | |||
111 | CONFIG_PERF_EVENTS=y | 114 | CONFIG_PERF_EVENTS=y |
112 | CONFIG_EVENT_PROFILE=y | 115 | CONFIG_EVENT_PROFILE=y |
113 | # CONFIG_PERF_COUNTERS is not set | 116 | # CONFIG_PERF_COUNTERS is not set |
117 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
114 | CONFIG_VM_EVENT_COUNTERS=y | 118 | CONFIG_VM_EVENT_COUNTERS=y |
115 | CONFIG_COMPAT_BRK=y | 119 | CONFIG_COMPAT_BRK=y |
116 | # CONFIG_SLAB is not set | 120 | # CONFIG_SLAB is not set |
117 | # CONFIG_SLUB is not set | 121 | # CONFIG_SLUB is not set |
118 | CONFIG_SLOB=y | 122 | CONFIG_SLOB=y |
123 | # CONFIG_MMAP_ALLOW_UNINITIALIZED is not set | ||
119 | CONFIG_PROFILING=y | 124 | CONFIG_PROFILING=y |
120 | CONFIG_TRACEPOINTS=y | 125 | CONFIG_TRACEPOINTS=y |
121 | CONFIG_OPROFILE=y | 126 | CONFIG_OPROFILE=y |
@@ -124,6 +129,7 @@ CONFIG_HAVE_OPROFILE=y | |||
124 | CONFIG_HAVE_KPROBES=y | 129 | CONFIG_HAVE_KPROBES=y |
125 | CONFIG_HAVE_KRETPROBES=y | 130 | CONFIG_HAVE_KRETPROBES=y |
126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 131 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
132 | CONFIG_HAVE_DMA_ATTRS=y | ||
127 | CONFIG_HAVE_CLK=y | 133 | CONFIG_HAVE_CLK=y |
128 | CONFIG_HAVE_DMA_API_DEBUG=y | 134 | CONFIG_HAVE_DMA_API_DEBUG=y |
129 | 135 | ||
@@ -149,14 +155,41 @@ CONFIG_LBDAF=y | |||
149 | # IO Schedulers | 155 | # IO Schedulers |
150 | # | 156 | # |
151 | CONFIG_IOSCHED_NOOP=y | 157 | CONFIG_IOSCHED_NOOP=y |
152 | # CONFIG_IOSCHED_AS is not set | ||
153 | # CONFIG_IOSCHED_DEADLINE is not set | 158 | # CONFIG_IOSCHED_DEADLINE is not set |
154 | # CONFIG_IOSCHED_CFQ is not set | 159 | # CONFIG_IOSCHED_CFQ is not set |
155 | # CONFIG_DEFAULT_AS is not set | ||
156 | # CONFIG_DEFAULT_DEADLINE is not set | 160 | # CONFIG_DEFAULT_DEADLINE is not set |
157 | # CONFIG_DEFAULT_CFQ is not set | 161 | # CONFIG_DEFAULT_CFQ is not set |
158 | CONFIG_DEFAULT_NOOP=y | 162 | CONFIG_DEFAULT_NOOP=y |
159 | CONFIG_DEFAULT_IOSCHED="noop" | 163 | CONFIG_DEFAULT_IOSCHED="noop" |
164 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
165 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
168 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
170 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
172 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
174 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
175 | # CONFIG_INLINE_READ_LOCK is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
177 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
178 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
179 | CONFIG_INLINE_READ_UNLOCK=y | ||
180 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
181 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
182 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
183 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
186 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
188 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
190 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
192 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
160 | # CONFIG_FREEZER is not set | 193 | # CONFIG_FREEZER is not set |
161 | 194 | ||
162 | # | 195 | # |
@@ -231,7 +264,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
231 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 264 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
232 | CONFIG_ZONE_DMA_FLAG=0 | 265 | CONFIG_ZONE_DMA_FLAG=0 |
233 | CONFIG_NR_QUICK=2 | 266 | CONFIG_NR_QUICK=2 |
234 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
235 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 | 267 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 |
236 | 268 | ||
237 | # | 269 | # |
@@ -424,9 +456,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
424 | # CONFIG_AF_RXRPC is not set | 456 | # CONFIG_AF_RXRPC is not set |
425 | CONFIG_WIRELESS=y | 457 | CONFIG_WIRELESS=y |
426 | # CONFIG_CFG80211 is not set | 458 | # CONFIG_CFG80211 is not set |
427 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
428 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
429 | # CONFIG_WIRELESS_EXT is not set | ||
430 | # CONFIG_LIB80211 is not set | 459 | # CONFIG_LIB80211 is not set |
431 | 460 | ||
432 | # | 461 | # |
@@ -539,6 +568,10 @@ CONFIG_MTD_PHYSMAP=y | |||
539 | CONFIG_BLK_DEV=y | 568 | CONFIG_BLK_DEV=y |
540 | # CONFIG_BLK_DEV_COW_COMMON is not set | 569 | # CONFIG_BLK_DEV_COW_COMMON is not set |
541 | # CONFIG_BLK_DEV_LOOP is not set | 570 | # CONFIG_BLK_DEV_LOOP is not set |
571 | |||
572 | # | ||
573 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
574 | # | ||
542 | # CONFIG_BLK_DEV_NBD is not set | 575 | # CONFIG_BLK_DEV_NBD is not set |
543 | # CONFIG_BLK_DEV_UB is not set | 576 | # CONFIG_BLK_DEV_UB is not set |
544 | # CONFIG_BLK_DEV_RAM is not set | 577 | # CONFIG_BLK_DEV_RAM is not set |
@@ -610,11 +643,12 @@ CONFIG_SMSC911X=y | |||
610 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 643 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
611 | # CONFIG_B44 is not set | 644 | # CONFIG_B44 is not set |
612 | # CONFIG_KS8842 is not set | 645 | # CONFIG_KS8842 is not set |
646 | # CONFIG_KS8851_MLL is not set | ||
613 | # CONFIG_NETDEV_1000 is not set | 647 | # CONFIG_NETDEV_1000 is not set |
614 | # CONFIG_NETDEV_10000 is not set | 648 | # CONFIG_NETDEV_10000 is not set |
615 | CONFIG_WLAN=y | 649 | CONFIG_WLAN=y |
616 | # CONFIG_WLAN_PRE80211 is not set | 650 | # CONFIG_USB_ZD1201 is not set |
617 | # CONFIG_WLAN_80211 is not set | 651 | # CONFIG_HOSTAP is not set |
618 | 652 | ||
619 | # | 653 | # |
620 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 654 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -643,6 +677,7 @@ CONFIG_WLAN=y | |||
643 | CONFIG_INPUT=y | 677 | CONFIG_INPUT=y |
644 | CONFIG_INPUT_FF_MEMLESS=m | 678 | CONFIG_INPUT_FF_MEMLESS=m |
645 | # CONFIG_INPUT_POLLDEV is not set | 679 | # CONFIG_INPUT_POLLDEV is not set |
680 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
646 | 681 | ||
647 | # | 682 | # |
648 | # Userland interfaces | 683 | # Userland interfaces |
@@ -743,6 +778,7 @@ CONFIG_SSB_POSSIBLE=y | |||
743 | # | 778 | # |
744 | # CONFIG_MFD_CORE is not set | 779 | # CONFIG_MFD_CORE is not set |
745 | # CONFIG_MFD_SM501 is not set | 780 | # CONFIG_MFD_SM501 is not set |
781 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
746 | # CONFIG_HTC_PASIC3 is not set | 782 | # CONFIG_HTC_PASIC3 is not set |
747 | # CONFIG_MFD_TMIO is not set | 783 | # CONFIG_MFD_TMIO is not set |
748 | CONFIG_REGULATOR=y | 784 | CONFIG_REGULATOR=y |
@@ -910,6 +946,8 @@ CONFIG_LEDS_CLASS=y | |||
910 | # | 946 | # |
911 | CONFIG_LEDS_GPIO=y | 947 | CONFIG_LEDS_GPIO=y |
912 | CONFIG_LEDS_GPIO_PLATFORM=y | 948 | CONFIG_LEDS_GPIO_PLATFORM=y |
949 | # CONFIG_LEDS_REGULATOR is not set | ||
950 | # CONFIG_LEDS_LT3593 is not set | ||
913 | 951 | ||
914 | # | 952 | # |
915 | # LED Triggers | 953 | # LED Triggers |
@@ -955,7 +993,9 @@ CONFIG_RTC_INTF_DEV=y | |||
955 | # CONFIG_RTC_DRV_M48T86 is not set | 993 | # CONFIG_RTC_DRV_M48T86 is not set |
956 | # CONFIG_RTC_DRV_M48T35 is not set | 994 | # CONFIG_RTC_DRV_M48T35 is not set |
957 | # CONFIG_RTC_DRV_M48T59 is not set | 995 | # CONFIG_RTC_DRV_M48T59 is not set |
996 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
958 | # CONFIG_RTC_DRV_BQ4802 is not set | 997 | # CONFIG_RTC_DRV_BQ4802 is not set |
998 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
959 | # CONFIG_RTC_DRV_V3020 is not set | 999 | # CONFIG_RTC_DRV_V3020 is not set |
960 | 1000 | ||
961 | # | 1001 | # |
@@ -978,6 +1018,7 @@ CONFIG_RTC_DRV_SH=y | |||
978 | # CONFIG_EXT2_FS is not set | 1018 | # CONFIG_EXT2_FS is not set |
979 | # CONFIG_EXT3_FS is not set | 1019 | # CONFIG_EXT3_FS is not set |
980 | # CONFIG_EXT4_FS is not set | 1020 | # CONFIG_EXT4_FS is not set |
1021 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
981 | # CONFIG_REISERFS_FS is not set | 1022 | # CONFIG_REISERFS_FS is not set |
982 | # CONFIG_JFS_FS is not set | 1023 | # CONFIG_JFS_FS is not set |
983 | # CONFIG_FS_POSIX_ACL is not set | 1024 | # CONFIG_FS_POSIX_ACL is not set |
@@ -1137,6 +1178,7 @@ CONFIG_DEBUG_OBJECTS=y | |||
1137 | # CONFIG_DEBUG_OBJECTS_SELFTEST is not set | 1178 | # CONFIG_DEBUG_OBJECTS_SELFTEST is not set |
1138 | # CONFIG_DEBUG_OBJECTS_FREE is not set | 1179 | # CONFIG_DEBUG_OBJECTS_FREE is not set |
1139 | # CONFIG_DEBUG_OBJECTS_TIMERS is not set | 1180 | # CONFIG_DEBUG_OBJECTS_TIMERS is not set |
1181 | # CONFIG_DEBUG_OBJECTS_WORK is not set | ||
1140 | CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 | 1182 | CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1 |
1141 | # CONFIG_DEBUG_RT_MUTEXES is not set | 1183 | # CONFIG_DEBUG_RT_MUTEXES is not set |
1142 | # CONFIG_RT_MUTEX_TESTER is not set | 1184 | # CONFIG_RT_MUTEX_TESTER is not set |
@@ -1203,9 +1245,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1203 | CONFIG_HAVE_ARCH_KGDB=y | 1245 | CONFIG_HAVE_ARCH_KGDB=y |
1204 | # CONFIG_KGDB is not set | 1246 | # CONFIG_KGDB is not set |
1205 | # CONFIG_SH_STANDARD_BIOS is not set | 1247 | # CONFIG_SH_STANDARD_BIOS is not set |
1206 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1207 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xfffe8000 | ||
1208 | CONFIG_EARLY_PRINTK=y | ||
1209 | # CONFIG_STACK_DEBUG is not set | 1248 | # CONFIG_STACK_DEBUG is not set |
1210 | CONFIG_DEBUG_STACK_USAGE=y | 1249 | CONFIG_DEBUG_STACK_USAGE=y |
1211 | CONFIG_DUMP_CODE=y | 1250 | CONFIG_DUMP_CODE=y |
@@ -1218,7 +1257,11 @@ CONFIG_DUMP_CODE=y | |||
1218 | # CONFIG_KEYS is not set | 1257 | # CONFIG_KEYS is not set |
1219 | # CONFIG_SECURITY is not set | 1258 | # CONFIG_SECURITY is not set |
1220 | # CONFIG_SECURITYFS is not set | 1259 | # CONFIG_SECURITYFS is not set |
1221 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1260 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1261 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1262 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1263 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1264 | CONFIG_DEFAULT_SECURITY="" | ||
1222 | # CONFIG_CRYPTO is not set | 1265 | # CONFIG_CRYPTO is not set |
1223 | CONFIG_BINARY_PRINTF=y | 1266 | CONFIG_BINARY_PRINTF=y |
1224 | 1267 | ||
diff --git a/arch/sh/configs/rts7751r2d1_defconfig b/arch/sh/configs/rts7751r2d1_defconfig index 6f1126b3e48..fba1f62d56e 100644 --- a/arch/sh/configs/rts7751r2d1_defconfig +++ b/arch/sh/configs/rts7751r2d1_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:36:25 2009 | 4 | # Mon Jan 4 13:25:36 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -31,6 +32,7 @@ CONFIG_ARCH_NO_VIRT_TO_BUS=y | |||
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_IO_TRAPPED=y | 34 | CONFIG_IO_TRAPPED=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -61,6 +63,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
61 | # | 63 | # |
62 | CONFIG_TREE_RCU=y | 64 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
66 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 67 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 68 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 69 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -95,6 +98,7 @@ CONFIG_EVENTFD=y | |||
95 | CONFIG_SHMEM=y | 98 | CONFIG_SHMEM=y |
96 | CONFIG_AIO=y | 99 | CONFIG_AIO=y |
97 | CONFIG_HAVE_PERF_EVENTS=y | 100 | CONFIG_HAVE_PERF_EVENTS=y |
101 | CONFIG_PERF_USE_VMALLOC=y | ||
98 | 102 | ||
99 | # | 103 | # |
100 | # Kernel Performance Events And Counters | 104 | # Kernel Performance Events And Counters |
@@ -117,6 +121,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
117 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
118 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
120 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
121 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
122 | 127 | ||
@@ -143,14 +148,41 @@ CONFIG_LBDAF=y | |||
143 | # IO Schedulers | 148 | # IO Schedulers |
144 | # | 149 | # |
145 | CONFIG_IOSCHED_NOOP=y | 150 | CONFIG_IOSCHED_NOOP=y |
146 | CONFIG_IOSCHED_AS=y | ||
147 | CONFIG_IOSCHED_DEADLINE=y | 151 | CONFIG_IOSCHED_DEADLINE=y |
148 | CONFIG_IOSCHED_CFQ=y | 152 | CONFIG_IOSCHED_CFQ=y |
149 | CONFIG_DEFAULT_AS=y | ||
150 | # CONFIG_DEFAULT_DEADLINE is not set | 153 | # CONFIG_DEFAULT_DEADLINE is not set |
151 | # CONFIG_DEFAULT_CFQ is not set | 154 | CONFIG_DEFAULT_CFQ=y |
152 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 156 | CONFIG_DEFAULT_IOSCHED="cfq" |
157 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
163 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
165 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
167 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
172 | CONFIG_INLINE_READ_UNLOCK=y | ||
173 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
174 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
175 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
176 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
181 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
183 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
185 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
154 | # CONFIG_FREEZER is not set | 186 | # CONFIG_FREEZER is not set |
155 | 187 | ||
156 | # | 188 | # |
@@ -226,8 +258,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 258 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=0 | 259 | CONFIG_ZONE_DMA_FLAG=0 |
228 | CONFIG_NR_QUICK=2 | 260 | CONFIG_NR_QUICK=2 |
229 | CONFIG_HAVE_MLOCK=y | ||
230 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
231 | # CONFIG_KSM is not set | 261 | # CONFIG_KSM is not set |
232 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 262 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
233 | 263 | ||
@@ -321,7 +351,6 @@ CONFIG_GUSA=y | |||
321 | CONFIG_ZERO_PAGE_OFFSET=0x00010000 | 351 | CONFIG_ZERO_PAGE_OFFSET=0x00010000 |
322 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 352 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
323 | CONFIG_ENTRY_OFFSET=0x00001000 | 353 | CONFIG_ENTRY_OFFSET=0x00001000 |
324 | # CONFIG_UBC_WAKEUP is not set | ||
325 | CONFIG_CMDLINE_OVERWRITE=y | 354 | CONFIG_CMDLINE_OVERWRITE=y |
326 | # CONFIG_CMDLINE_EXTEND is not set | 355 | # CONFIG_CMDLINE_EXTEND is not set |
327 | CONFIG_CMDLINE="console=tty0 console=ttySC1,115200 root=/dev/sda1" | 356 | CONFIG_CMDLINE="console=tty0 console=ttySC1,115200 root=/dev/sda1" |
@@ -330,7 +359,6 @@ CONFIG_CMDLINE="console=tty0 console=ttySC1,115200 root=/dev/sda1" | |||
330 | # Bus options | 359 | # Bus options |
331 | # | 360 | # |
332 | CONFIG_PCI=y | 361 | CONFIG_PCI=y |
333 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
334 | # CONFIG_PCIEPORTBUS is not set | 362 | # CONFIG_PCIEPORTBUS is not set |
335 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 363 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
336 | CONFIG_PCI_LEGACY=y | 364 | CONFIG_PCI_LEGACY=y |
@@ -429,10 +457,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
429 | # CONFIG_AF_RXRPC is not set | 457 | # CONFIG_AF_RXRPC is not set |
430 | CONFIG_WIRELESS=y | 458 | CONFIG_WIRELESS=y |
431 | # CONFIG_CFG80211 is not set | 459 | # CONFIG_CFG80211 is not set |
432 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
433 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
434 | CONFIG_WIRELESS_EXT=y | ||
435 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
436 | # CONFIG_LIB80211 is not set | 460 | # CONFIG_LIB80211 is not set |
437 | 461 | ||
438 | # | 462 | # |
@@ -466,6 +490,10 @@ CONFIG_BLK_DEV=y | |||
466 | # CONFIG_BLK_DEV_UMEM is not set | 490 | # CONFIG_BLK_DEV_UMEM is not set |
467 | # CONFIG_BLK_DEV_COW_COMMON is not set | 491 | # CONFIG_BLK_DEV_COW_COMMON is not set |
468 | # CONFIG_BLK_DEV_LOOP is not set | 492 | # CONFIG_BLK_DEV_LOOP is not set |
493 | |||
494 | # | ||
495 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
496 | # | ||
469 | # CONFIG_BLK_DEV_NBD is not set | 497 | # CONFIG_BLK_DEV_NBD is not set |
470 | # CONFIG_BLK_DEV_SX8 is not set | 498 | # CONFIG_BLK_DEV_SX8 is not set |
471 | # CONFIG_BLK_DEV_UB is not set | 499 | # CONFIG_BLK_DEV_UB is not set |
@@ -482,6 +510,7 @@ CONFIG_MISC_DEVICES=y | |||
482 | # CONFIG_TIFM_CORE is not set | 510 | # CONFIG_TIFM_CORE is not set |
483 | # CONFIG_ENCLOSURE_SERVICES is not set | 511 | # CONFIG_ENCLOSURE_SERVICES is not set |
484 | # CONFIG_HP_ILO is not set | 512 | # CONFIG_HP_ILO is not set |
513 | # CONFIG_TI_DAC7512 is not set | ||
485 | # CONFIG_C2PORT is not set | 514 | # CONFIG_C2PORT is not set |
486 | 515 | ||
487 | # | 516 | # |
@@ -530,8 +559,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
530 | # CONFIG_ISCSI_TCP is not set | 559 | # CONFIG_ISCSI_TCP is not set |
531 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 560 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
532 | # CONFIG_SCSI_BNX2_ISCSI is not set | 561 | # CONFIG_SCSI_BNX2_ISCSI is not set |
562 | # CONFIG_BE2ISCSI is not set | ||
533 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 563 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
564 | # CONFIG_SCSI_HPSA is not set | ||
534 | # CONFIG_SCSI_3W_9XXX is not set | 565 | # CONFIG_SCSI_3W_9XXX is not set |
566 | # CONFIG_SCSI_3W_SAS is not set | ||
535 | # CONFIG_SCSI_ACARD is not set | 567 | # CONFIG_SCSI_ACARD is not set |
536 | # CONFIG_SCSI_AACRAID is not set | 568 | # CONFIG_SCSI_AACRAID is not set |
537 | # CONFIG_SCSI_AIC7XXX is not set | 569 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -565,7 +597,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
565 | # CONFIG_SCSI_NSP32 is not set | 597 | # CONFIG_SCSI_NSP32 is not set |
566 | # CONFIG_SCSI_DEBUG is not set | 598 | # CONFIG_SCSI_DEBUG is not set |
567 | # CONFIG_SCSI_PMCRAID is not set | 599 | # CONFIG_SCSI_PMCRAID is not set |
600 | # CONFIG_SCSI_PM8001 is not set | ||
568 | # CONFIG_SCSI_SRP is not set | 601 | # CONFIG_SCSI_SRP is not set |
602 | # CONFIG_SCSI_BFA_FC is not set | ||
569 | # CONFIG_SCSI_DH is not set | 603 | # CONFIG_SCSI_DH is not set |
570 | # CONFIG_SCSI_OSD_INITIATOR is not set | 604 | # CONFIG_SCSI_OSD_INITIATOR is not set |
571 | CONFIG_ATA=y | 605 | CONFIG_ATA=y |
@@ -618,15 +652,16 @@ CONFIG_ATA_SFF=y | |||
618 | # CONFIG_PATA_NS87415 is not set | 652 | # CONFIG_PATA_NS87415 is not set |
619 | # CONFIG_PATA_OPTI is not set | 653 | # CONFIG_PATA_OPTI is not set |
620 | # CONFIG_PATA_OPTIDMA is not set | 654 | # CONFIG_PATA_OPTIDMA is not set |
655 | # CONFIG_PATA_PDC2027X is not set | ||
621 | # CONFIG_PATA_PDC_OLD is not set | 656 | # CONFIG_PATA_PDC_OLD is not set |
622 | # CONFIG_PATA_RADISYS is not set | 657 | # CONFIG_PATA_RADISYS is not set |
623 | # CONFIG_PATA_RDC is not set | 658 | # CONFIG_PATA_RDC is not set |
624 | # CONFIG_PATA_RZ1000 is not set | 659 | # CONFIG_PATA_RZ1000 is not set |
625 | # CONFIG_PATA_SC1200 is not set | 660 | # CONFIG_PATA_SC1200 is not set |
626 | # CONFIG_PATA_SERVERWORKS is not set | 661 | # CONFIG_PATA_SERVERWORKS is not set |
627 | # CONFIG_PATA_PDC2027X is not set | ||
628 | # CONFIG_PATA_SIL680 is not set | 662 | # CONFIG_PATA_SIL680 is not set |
629 | # CONFIG_PATA_SIS is not set | 663 | # CONFIG_PATA_SIS is not set |
664 | # CONFIG_PATA_TOSHIBA is not set | ||
630 | # CONFIG_PATA_VIA is not set | 665 | # CONFIG_PATA_VIA is not set |
631 | # CONFIG_PATA_WINBOND is not set | 666 | # CONFIG_PATA_WINBOND is not set |
632 | CONFIG_PATA_PLATFORM=y | 667 | CONFIG_PATA_PLATFORM=y |
@@ -704,6 +739,7 @@ CONFIG_8139TOO=y | |||
704 | # CONFIG_TLAN is not set | 739 | # CONFIG_TLAN is not set |
705 | # CONFIG_KS8842 is not set | 740 | # CONFIG_KS8842 is not set |
706 | # CONFIG_KS8851 is not set | 741 | # CONFIG_KS8851 is not set |
742 | # CONFIG_KS8851_MLL is not set | ||
707 | # CONFIG_VIA_RHINE is not set | 743 | # CONFIG_VIA_RHINE is not set |
708 | # CONFIG_SC92031 is not set | 744 | # CONFIG_SC92031 is not set |
709 | # CONFIG_ATL2 is not set | 745 | # CONFIG_ATL2 is not set |
@@ -752,8 +788,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
752 | # CONFIG_BE2NET is not set | 788 | # CONFIG_BE2NET is not set |
753 | # CONFIG_TR is not set | 789 | # CONFIG_TR is not set |
754 | CONFIG_WLAN=y | 790 | CONFIG_WLAN=y |
755 | # CONFIG_WLAN_PRE80211 is not set | 791 | # CONFIG_ATMEL is not set |
756 | # CONFIG_WLAN_80211 is not set | 792 | # CONFIG_PRISM54 is not set |
793 | # CONFIG_USB_ZD1201 is not set | ||
794 | # CONFIG_HOSTAP is not set | ||
757 | 795 | ||
758 | # | 796 | # |
759 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 797 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -776,6 +814,7 @@ CONFIG_WLAN=y | |||
776 | # CONFIG_NETCONSOLE is not set | 814 | # CONFIG_NETCONSOLE is not set |
777 | # CONFIG_NETPOLL is not set | 815 | # CONFIG_NETPOLL is not set |
778 | # CONFIG_NET_POLL_CONTROLLER is not set | 816 | # CONFIG_NET_POLL_CONTROLLER is not set |
817 | # CONFIG_VMXNET3 is not set | ||
779 | # CONFIG_ISDN is not set | 818 | # CONFIG_ISDN is not set |
780 | # CONFIG_PHONE is not set | 819 | # CONFIG_PHONE is not set |
781 | 820 | ||
@@ -785,6 +824,7 @@ CONFIG_WLAN=y | |||
785 | CONFIG_INPUT=y | 824 | CONFIG_INPUT=y |
786 | CONFIG_INPUT_FF_MEMLESS=m | 825 | CONFIG_INPUT_FF_MEMLESS=m |
787 | # CONFIG_INPUT_POLLDEV is not set | 826 | # CONFIG_INPUT_POLLDEV is not set |
827 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
788 | 828 | ||
789 | # | 829 | # |
790 | # Userland interfaces | 830 | # Userland interfaces |
@@ -862,7 +902,10 @@ CONFIG_SPI_MASTER=y | |||
862 | # SPI Master Controller Drivers | 902 | # SPI Master Controller Drivers |
863 | # | 903 | # |
864 | CONFIG_SPI_BITBANG=y | 904 | CONFIG_SPI_BITBANG=y |
905 | # CONFIG_SPI_SH_MSIOF is not set | ||
865 | CONFIG_SPI_SH_SCI=y | 906 | CONFIG_SPI_SH_SCI=y |
907 | # CONFIG_SPI_XILINX is not set | ||
908 | # CONFIG_SPI_DESIGNWARE is not set | ||
866 | 909 | ||
867 | # | 910 | # |
868 | # SPI Protocol Masters | 911 | # SPI Protocol Masters |
@@ -915,10 +958,12 @@ CONFIG_SSB_POSSIBLE=y | |||
915 | # | 958 | # |
916 | # CONFIG_MFD_CORE is not set | 959 | # CONFIG_MFD_CORE is not set |
917 | CONFIG_MFD_SM501=y | 960 | CONFIG_MFD_SM501=y |
961 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
918 | # CONFIG_HTC_PASIC3 is not set | 962 | # CONFIG_HTC_PASIC3 is not set |
919 | # CONFIG_MFD_TMIO is not set | 963 | # CONFIG_MFD_TMIO is not set |
920 | # CONFIG_MFD_MC13783 is not set | 964 | # CONFIG_MFD_MC13783 is not set |
921 | # CONFIG_EZX_PCAP is not set | 965 | # CONFIG_EZX_PCAP is not set |
966 | # CONFIG_AB4500_CORE is not set | ||
922 | # CONFIG_REGULATOR is not set | 967 | # CONFIG_REGULATOR is not set |
923 | # CONFIG_MEDIA_SUPPORT is not set | 968 | # CONFIG_MEDIA_SUPPORT is not set |
924 | 969 | ||
@@ -1055,6 +1100,7 @@ CONFIG_SND_PCI=y | |||
1055 | # CONFIG_SND_OXYGEN is not set | 1100 | # CONFIG_SND_OXYGEN is not set |
1056 | # CONFIG_SND_CS4281 is not set | 1101 | # CONFIG_SND_CS4281 is not set |
1057 | # CONFIG_SND_CS46XX is not set | 1102 | # CONFIG_SND_CS46XX is not set |
1103 | # CONFIG_SND_CS5535AUDIO is not set | ||
1058 | # CONFIG_SND_CTXFI is not set | 1104 | # CONFIG_SND_CTXFI is not set |
1059 | # CONFIG_SND_DARLA20 is not set | 1105 | # CONFIG_SND_DARLA20 is not set |
1060 | # CONFIG_SND_GINA20 is not set | 1106 | # CONFIG_SND_GINA20 is not set |
@@ -1308,7 +1354,9 @@ CONFIG_RTC_DRV_R9701=y | |||
1308 | # CONFIG_RTC_DRV_M48T86 is not set | 1354 | # CONFIG_RTC_DRV_M48T86 is not set |
1309 | # CONFIG_RTC_DRV_M48T35 is not set | 1355 | # CONFIG_RTC_DRV_M48T35 is not set |
1310 | # CONFIG_RTC_DRV_M48T59 is not set | 1356 | # CONFIG_RTC_DRV_M48T59 is not set |
1357 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1311 | # CONFIG_RTC_DRV_BQ4802 is not set | 1358 | # CONFIG_RTC_DRV_BQ4802 is not set |
1359 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1312 | # CONFIG_RTC_DRV_V3020 is not set | 1360 | # CONFIG_RTC_DRV_V3020 is not set |
1313 | 1361 | ||
1314 | # | 1362 | # |
@@ -1333,6 +1381,7 @@ CONFIG_EXT2_FS=y | |||
1333 | # CONFIG_EXT2_FS_XIP is not set | 1381 | # CONFIG_EXT2_FS_XIP is not set |
1334 | # CONFIG_EXT3_FS is not set | 1382 | # CONFIG_EXT3_FS is not set |
1335 | # CONFIG_EXT4_FS is not set | 1383 | # CONFIG_EXT4_FS is not set |
1384 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
1336 | # CONFIG_REISERFS_FS is not set | 1385 | # CONFIG_REISERFS_FS is not set |
1337 | # CONFIG_JFS_FS is not set | 1386 | # CONFIG_JFS_FS is not set |
1338 | # CONFIG_FS_POSIX_ACL is not set | 1387 | # CONFIG_FS_POSIX_ACL is not set |
@@ -1474,10 +1523,11 @@ CONFIG_DEBUG_FS=y | |||
1474 | # CONFIG_HEADERS_CHECK is not set | 1523 | # CONFIG_HEADERS_CHECK is not set |
1475 | # CONFIG_DEBUG_KERNEL is not set | 1524 | # CONFIG_DEBUG_KERNEL is not set |
1476 | CONFIG_STACKTRACE=y | 1525 | CONFIG_STACKTRACE=y |
1477 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1526 | CONFIG_DEBUG_BUGVERBOSE=y |
1478 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1527 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1479 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1528 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1480 | # CONFIG_LATENCYTOP is not set | 1529 | # CONFIG_LATENCYTOP is not set |
1530 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1481 | CONFIG_NOP_TRACER=y | 1531 | CONFIG_NOP_TRACER=y |
1482 | CONFIG_HAVE_FUNCTION_TRACER=y | 1532 | CONFIG_HAVE_FUNCTION_TRACER=y |
1483 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1533 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1497,9 +1547,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1497 | # CONFIG_SAMPLES is not set | 1547 | # CONFIG_SAMPLES is not set |
1498 | CONFIG_HAVE_ARCH_KGDB=y | 1548 | CONFIG_HAVE_ARCH_KGDB=y |
1499 | # CONFIG_SH_STANDARD_BIOS is not set | 1549 | # CONFIG_SH_STANDARD_BIOS is not set |
1500 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1501 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 | ||
1502 | CONFIG_EARLY_PRINTK=y | ||
1503 | # CONFIG_DWARF_UNWINDER is not set | 1550 | # CONFIG_DWARF_UNWINDER is not set |
1504 | 1551 | ||
1505 | # | 1552 | # |
@@ -1508,7 +1555,11 @@ CONFIG_EARLY_PRINTK=y | |||
1508 | # CONFIG_KEYS is not set | 1555 | # CONFIG_KEYS is not set |
1509 | # CONFIG_SECURITY is not set | 1556 | # CONFIG_SECURITY is not set |
1510 | # CONFIG_SECURITYFS is not set | 1557 | # CONFIG_SECURITYFS is not set |
1511 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1558 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1559 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1560 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1561 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1562 | CONFIG_DEFAULT_SECURITY="" | ||
1512 | CONFIG_CRYPTO=y | 1563 | CONFIG_CRYPTO=y |
1513 | 1564 | ||
1514 | # | 1565 | # |
diff --git a/arch/sh/configs/rts7751r2dplus_defconfig b/arch/sh/configs/rts7751r2dplus_defconfig index 9215bbb13d6..a8d538f06e6 100644 --- a/arch/sh/configs/rts7751r2dplus_defconfig +++ b/arch/sh/configs/rts7751r2dplus_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:39:48 2009 | 4 | # Mon Jan 4 13:26:39 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -31,6 +32,7 @@ CONFIG_ARCH_NO_VIRT_TO_BUS=y | |||
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_IO_TRAPPED=y | 34 | CONFIG_IO_TRAPPED=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -61,6 +63,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
61 | # | 63 | # |
62 | CONFIG_TREE_RCU=y | 64 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
66 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 67 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 68 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 69 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -95,6 +98,7 @@ CONFIG_EVENTFD=y | |||
95 | CONFIG_SHMEM=y | 98 | CONFIG_SHMEM=y |
96 | CONFIG_AIO=y | 99 | CONFIG_AIO=y |
97 | CONFIG_HAVE_PERF_EVENTS=y | 100 | CONFIG_HAVE_PERF_EVENTS=y |
101 | CONFIG_PERF_USE_VMALLOC=y | ||
98 | 102 | ||
99 | # | 103 | # |
100 | # Kernel Performance Events And Counters | 104 | # Kernel Performance Events And Counters |
@@ -117,6 +121,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
117 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
118 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
120 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
121 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
122 | 127 | ||
@@ -143,14 +148,41 @@ CONFIG_LBDAF=y | |||
143 | # IO Schedulers | 148 | # IO Schedulers |
144 | # | 149 | # |
145 | CONFIG_IOSCHED_NOOP=y | 150 | CONFIG_IOSCHED_NOOP=y |
146 | CONFIG_IOSCHED_AS=y | ||
147 | CONFIG_IOSCHED_DEADLINE=y | 151 | CONFIG_IOSCHED_DEADLINE=y |
148 | CONFIG_IOSCHED_CFQ=y | 152 | CONFIG_IOSCHED_CFQ=y |
149 | CONFIG_DEFAULT_AS=y | ||
150 | # CONFIG_DEFAULT_DEADLINE is not set | 153 | # CONFIG_DEFAULT_DEADLINE is not set |
151 | # CONFIG_DEFAULT_CFQ is not set | 154 | CONFIG_DEFAULT_CFQ=y |
152 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
153 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 156 | CONFIG_DEFAULT_IOSCHED="cfq" |
157 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
163 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
165 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
167 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
172 | CONFIG_INLINE_READ_UNLOCK=y | ||
173 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
174 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
175 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
176 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
181 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
183 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
185 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
154 | # CONFIG_FREEZER is not set | 186 | # CONFIG_FREEZER is not set |
155 | 187 | ||
156 | # | 188 | # |
@@ -226,8 +258,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 258 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=0 | 259 | CONFIG_ZONE_DMA_FLAG=0 |
228 | CONFIG_NR_QUICK=2 | 260 | CONFIG_NR_QUICK=2 |
229 | CONFIG_HAVE_MLOCK=y | ||
230 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
231 | # CONFIG_KSM is not set | 261 | # CONFIG_KSM is not set |
232 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 262 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
233 | 263 | ||
@@ -321,7 +351,6 @@ CONFIG_GUSA=y | |||
321 | CONFIG_ZERO_PAGE_OFFSET=0x00010000 | 351 | CONFIG_ZERO_PAGE_OFFSET=0x00010000 |
322 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 352 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
323 | CONFIG_ENTRY_OFFSET=0x00001000 | 353 | CONFIG_ENTRY_OFFSET=0x00001000 |
324 | # CONFIG_UBC_WAKEUP is not set | ||
325 | CONFIG_CMDLINE_OVERWRITE=y | 354 | CONFIG_CMDLINE_OVERWRITE=y |
326 | # CONFIG_CMDLINE_EXTEND is not set | 355 | # CONFIG_CMDLINE_EXTEND is not set |
327 | CONFIG_CMDLINE="console=tty0 console=ttySC1,115200 root=/dev/sda1" | 356 | CONFIG_CMDLINE="console=tty0 console=ttySC1,115200 root=/dev/sda1" |
@@ -330,7 +359,6 @@ CONFIG_CMDLINE="console=tty0 console=ttySC1,115200 root=/dev/sda1" | |||
330 | # Bus options | 359 | # Bus options |
331 | # | 360 | # |
332 | CONFIG_PCI=y | 361 | CONFIG_PCI=y |
333 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
334 | # CONFIG_PCIEPORTBUS is not set | 362 | # CONFIG_PCIEPORTBUS is not set |
335 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 363 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
336 | CONFIG_PCI_LEGACY=y | 364 | CONFIG_PCI_LEGACY=y |
@@ -429,10 +457,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
429 | # CONFIG_AF_RXRPC is not set | 457 | # CONFIG_AF_RXRPC is not set |
430 | CONFIG_WIRELESS=y | 458 | CONFIG_WIRELESS=y |
431 | # CONFIG_CFG80211 is not set | 459 | # CONFIG_CFG80211 is not set |
432 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
433 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
434 | CONFIG_WIRELESS_EXT=y | ||
435 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
436 | # CONFIG_LIB80211 is not set | 460 | # CONFIG_LIB80211 is not set |
437 | 461 | ||
438 | # | 462 | # |
@@ -552,6 +576,10 @@ CONFIG_BLK_DEV=y | |||
552 | # CONFIG_BLK_DEV_UMEM is not set | 576 | # CONFIG_BLK_DEV_UMEM is not set |
553 | # CONFIG_BLK_DEV_COW_COMMON is not set | 577 | # CONFIG_BLK_DEV_COW_COMMON is not set |
554 | # CONFIG_BLK_DEV_LOOP is not set | 578 | # CONFIG_BLK_DEV_LOOP is not set |
579 | |||
580 | # | ||
581 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
582 | # | ||
555 | # CONFIG_BLK_DEV_NBD is not set | 583 | # CONFIG_BLK_DEV_NBD is not set |
556 | # CONFIG_BLK_DEV_SX8 is not set | 584 | # CONFIG_BLK_DEV_SX8 is not set |
557 | # CONFIG_BLK_DEV_UB is not set | 585 | # CONFIG_BLK_DEV_UB is not set |
@@ -568,6 +596,7 @@ CONFIG_MISC_DEVICES=y | |||
568 | # CONFIG_TIFM_CORE is not set | 596 | # CONFIG_TIFM_CORE is not set |
569 | # CONFIG_ENCLOSURE_SERVICES is not set | 597 | # CONFIG_ENCLOSURE_SERVICES is not set |
570 | # CONFIG_HP_ILO is not set | 598 | # CONFIG_HP_ILO is not set |
599 | # CONFIG_TI_DAC7512 is not set | ||
571 | # CONFIG_C2PORT is not set | 600 | # CONFIG_C2PORT is not set |
572 | 601 | ||
573 | # | 602 | # |
@@ -616,8 +645,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
616 | # CONFIG_ISCSI_TCP is not set | 645 | # CONFIG_ISCSI_TCP is not set |
617 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 646 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
618 | # CONFIG_SCSI_BNX2_ISCSI is not set | 647 | # CONFIG_SCSI_BNX2_ISCSI is not set |
648 | # CONFIG_BE2ISCSI is not set | ||
619 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 649 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
650 | # CONFIG_SCSI_HPSA is not set | ||
620 | # CONFIG_SCSI_3W_9XXX is not set | 651 | # CONFIG_SCSI_3W_9XXX is not set |
652 | # CONFIG_SCSI_3W_SAS is not set | ||
621 | # CONFIG_SCSI_ACARD is not set | 653 | # CONFIG_SCSI_ACARD is not set |
622 | # CONFIG_SCSI_AACRAID is not set | 654 | # CONFIG_SCSI_AACRAID is not set |
623 | # CONFIG_SCSI_AIC7XXX is not set | 655 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -651,7 +683,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
651 | # CONFIG_SCSI_NSP32 is not set | 683 | # CONFIG_SCSI_NSP32 is not set |
652 | # CONFIG_SCSI_DEBUG is not set | 684 | # CONFIG_SCSI_DEBUG is not set |
653 | # CONFIG_SCSI_PMCRAID is not set | 685 | # CONFIG_SCSI_PMCRAID is not set |
686 | # CONFIG_SCSI_PM8001 is not set | ||
654 | # CONFIG_SCSI_SRP is not set | 687 | # CONFIG_SCSI_SRP is not set |
688 | # CONFIG_SCSI_BFA_FC is not set | ||
655 | # CONFIG_SCSI_DH is not set | 689 | # CONFIG_SCSI_DH is not set |
656 | # CONFIG_SCSI_OSD_INITIATOR is not set | 690 | # CONFIG_SCSI_OSD_INITIATOR is not set |
657 | CONFIG_ATA=y | 691 | CONFIG_ATA=y |
@@ -704,15 +738,16 @@ CONFIG_ATA_SFF=y | |||
704 | # CONFIG_PATA_NS87415 is not set | 738 | # CONFIG_PATA_NS87415 is not set |
705 | # CONFIG_PATA_OPTI is not set | 739 | # CONFIG_PATA_OPTI is not set |
706 | # CONFIG_PATA_OPTIDMA is not set | 740 | # CONFIG_PATA_OPTIDMA is not set |
741 | # CONFIG_PATA_PDC2027X is not set | ||
707 | # CONFIG_PATA_PDC_OLD is not set | 742 | # CONFIG_PATA_PDC_OLD is not set |
708 | # CONFIG_PATA_RADISYS is not set | 743 | # CONFIG_PATA_RADISYS is not set |
709 | # CONFIG_PATA_RDC is not set | 744 | # CONFIG_PATA_RDC is not set |
710 | # CONFIG_PATA_RZ1000 is not set | 745 | # CONFIG_PATA_RZ1000 is not set |
711 | # CONFIG_PATA_SC1200 is not set | 746 | # CONFIG_PATA_SC1200 is not set |
712 | # CONFIG_PATA_SERVERWORKS is not set | 747 | # CONFIG_PATA_SERVERWORKS is not set |
713 | # CONFIG_PATA_PDC2027X is not set | ||
714 | # CONFIG_PATA_SIL680 is not set | 748 | # CONFIG_PATA_SIL680 is not set |
715 | # CONFIG_PATA_SIS is not set | 749 | # CONFIG_PATA_SIS is not set |
750 | # CONFIG_PATA_TOSHIBA is not set | ||
716 | # CONFIG_PATA_VIA is not set | 751 | # CONFIG_PATA_VIA is not set |
717 | # CONFIG_PATA_WINBOND is not set | 752 | # CONFIG_PATA_WINBOND is not set |
718 | CONFIG_PATA_PLATFORM=y | 753 | CONFIG_PATA_PLATFORM=y |
@@ -790,6 +825,7 @@ CONFIG_8139TOO=y | |||
790 | # CONFIG_TLAN is not set | 825 | # CONFIG_TLAN is not set |
791 | # CONFIG_KS8842 is not set | 826 | # CONFIG_KS8842 is not set |
792 | # CONFIG_KS8851 is not set | 827 | # CONFIG_KS8851 is not set |
828 | # CONFIG_KS8851_MLL is not set | ||
793 | # CONFIG_VIA_RHINE is not set | 829 | # CONFIG_VIA_RHINE is not set |
794 | # CONFIG_SC92031 is not set | 830 | # CONFIG_SC92031 is not set |
795 | # CONFIG_ATL2 is not set | 831 | # CONFIG_ATL2 is not set |
@@ -838,8 +874,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
838 | # CONFIG_BE2NET is not set | 874 | # CONFIG_BE2NET is not set |
839 | # CONFIG_TR is not set | 875 | # CONFIG_TR is not set |
840 | CONFIG_WLAN=y | 876 | CONFIG_WLAN=y |
841 | # CONFIG_WLAN_PRE80211 is not set | 877 | # CONFIG_ATMEL is not set |
842 | # CONFIG_WLAN_80211 is not set | 878 | # CONFIG_PRISM54 is not set |
879 | # CONFIG_USB_ZD1201 is not set | ||
880 | # CONFIG_HOSTAP is not set | ||
843 | 881 | ||
844 | # | 882 | # |
845 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 883 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -862,6 +900,7 @@ CONFIG_WLAN=y | |||
862 | # CONFIG_NETCONSOLE is not set | 900 | # CONFIG_NETCONSOLE is not set |
863 | # CONFIG_NETPOLL is not set | 901 | # CONFIG_NETPOLL is not set |
864 | # CONFIG_NET_POLL_CONTROLLER is not set | 902 | # CONFIG_NET_POLL_CONTROLLER is not set |
903 | # CONFIG_VMXNET3 is not set | ||
865 | # CONFIG_ISDN is not set | 904 | # CONFIG_ISDN is not set |
866 | # CONFIG_PHONE is not set | 905 | # CONFIG_PHONE is not set |
867 | 906 | ||
@@ -871,6 +910,7 @@ CONFIG_WLAN=y | |||
871 | CONFIG_INPUT=y | 910 | CONFIG_INPUT=y |
872 | CONFIG_INPUT_FF_MEMLESS=m | 911 | CONFIG_INPUT_FF_MEMLESS=m |
873 | # CONFIG_INPUT_POLLDEV is not set | 912 | # CONFIG_INPUT_POLLDEV is not set |
913 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
874 | 914 | ||
875 | # | 915 | # |
876 | # Userland interfaces | 916 | # Userland interfaces |
@@ -948,7 +988,10 @@ CONFIG_SPI_MASTER=y | |||
948 | # SPI Master Controller Drivers | 988 | # SPI Master Controller Drivers |
949 | # | 989 | # |
950 | CONFIG_SPI_BITBANG=y | 990 | CONFIG_SPI_BITBANG=y |
991 | # CONFIG_SPI_SH_MSIOF is not set | ||
951 | CONFIG_SPI_SH_SCI=y | 992 | CONFIG_SPI_SH_SCI=y |
993 | # CONFIG_SPI_XILINX is not set | ||
994 | # CONFIG_SPI_DESIGNWARE is not set | ||
952 | 995 | ||
953 | # | 996 | # |
954 | # SPI Protocol Masters | 997 | # SPI Protocol Masters |
@@ -1001,10 +1044,12 @@ CONFIG_SSB_POSSIBLE=y | |||
1001 | # | 1044 | # |
1002 | # CONFIG_MFD_CORE is not set | 1045 | # CONFIG_MFD_CORE is not set |
1003 | CONFIG_MFD_SM501=y | 1046 | CONFIG_MFD_SM501=y |
1047 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
1004 | # CONFIG_HTC_PASIC3 is not set | 1048 | # CONFIG_HTC_PASIC3 is not set |
1005 | # CONFIG_MFD_TMIO is not set | 1049 | # CONFIG_MFD_TMIO is not set |
1006 | # CONFIG_MFD_MC13783 is not set | 1050 | # CONFIG_MFD_MC13783 is not set |
1007 | # CONFIG_EZX_PCAP is not set | 1051 | # CONFIG_EZX_PCAP is not set |
1052 | # CONFIG_AB4500_CORE is not set | ||
1008 | # CONFIG_REGULATOR is not set | 1053 | # CONFIG_REGULATOR is not set |
1009 | # CONFIG_MEDIA_SUPPORT is not set | 1054 | # CONFIG_MEDIA_SUPPORT is not set |
1010 | 1055 | ||
@@ -1141,6 +1186,7 @@ CONFIG_SND_PCI=y | |||
1141 | # CONFIG_SND_OXYGEN is not set | 1186 | # CONFIG_SND_OXYGEN is not set |
1142 | # CONFIG_SND_CS4281 is not set | 1187 | # CONFIG_SND_CS4281 is not set |
1143 | # CONFIG_SND_CS46XX is not set | 1188 | # CONFIG_SND_CS46XX is not set |
1189 | # CONFIG_SND_CS5535AUDIO is not set | ||
1144 | # CONFIG_SND_CTXFI is not set | 1190 | # CONFIG_SND_CTXFI is not set |
1145 | # CONFIG_SND_DARLA20 is not set | 1191 | # CONFIG_SND_DARLA20 is not set |
1146 | # CONFIG_SND_GINA20 is not set | 1192 | # CONFIG_SND_GINA20 is not set |
@@ -1394,7 +1440,9 @@ CONFIG_RTC_DRV_R9701=y | |||
1394 | # CONFIG_RTC_DRV_M48T86 is not set | 1440 | # CONFIG_RTC_DRV_M48T86 is not set |
1395 | # CONFIG_RTC_DRV_M48T35 is not set | 1441 | # CONFIG_RTC_DRV_M48T35 is not set |
1396 | # CONFIG_RTC_DRV_M48T59 is not set | 1442 | # CONFIG_RTC_DRV_M48T59 is not set |
1443 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1397 | # CONFIG_RTC_DRV_BQ4802 is not set | 1444 | # CONFIG_RTC_DRV_BQ4802 is not set |
1445 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1398 | # CONFIG_RTC_DRV_V3020 is not set | 1446 | # CONFIG_RTC_DRV_V3020 is not set |
1399 | 1447 | ||
1400 | # | 1448 | # |
@@ -1419,6 +1467,7 @@ CONFIG_EXT2_FS=y | |||
1419 | # CONFIG_EXT2_FS_XIP is not set | 1467 | # CONFIG_EXT2_FS_XIP is not set |
1420 | # CONFIG_EXT3_FS is not set | 1468 | # CONFIG_EXT3_FS is not set |
1421 | # CONFIG_EXT4_FS is not set | 1469 | # CONFIG_EXT4_FS is not set |
1470 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
1422 | # CONFIG_REISERFS_FS is not set | 1471 | # CONFIG_REISERFS_FS is not set |
1423 | # CONFIG_JFS_FS is not set | 1472 | # CONFIG_JFS_FS is not set |
1424 | # CONFIG_FS_POSIX_ACL is not set | 1473 | # CONFIG_FS_POSIX_ACL is not set |
@@ -1561,10 +1610,11 @@ CONFIG_DEBUG_FS=y | |||
1561 | # CONFIG_HEADERS_CHECK is not set | 1610 | # CONFIG_HEADERS_CHECK is not set |
1562 | # CONFIG_DEBUG_KERNEL is not set | 1611 | # CONFIG_DEBUG_KERNEL is not set |
1563 | CONFIG_STACKTRACE=y | 1612 | CONFIG_STACKTRACE=y |
1564 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1613 | CONFIG_DEBUG_BUGVERBOSE=y |
1565 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1614 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1566 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1615 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1567 | # CONFIG_LATENCYTOP is not set | 1616 | # CONFIG_LATENCYTOP is not set |
1617 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1568 | CONFIG_NOP_TRACER=y | 1618 | CONFIG_NOP_TRACER=y |
1569 | CONFIG_HAVE_FUNCTION_TRACER=y | 1619 | CONFIG_HAVE_FUNCTION_TRACER=y |
1570 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1620 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1584,9 +1634,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1584 | # CONFIG_SAMPLES is not set | 1634 | # CONFIG_SAMPLES is not set |
1585 | CONFIG_HAVE_ARCH_KGDB=y | 1635 | CONFIG_HAVE_ARCH_KGDB=y |
1586 | # CONFIG_SH_STANDARD_BIOS is not set | 1636 | # CONFIG_SH_STANDARD_BIOS is not set |
1587 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1588 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe80000 | ||
1589 | CONFIG_EARLY_PRINTK=y | ||
1590 | # CONFIG_DWARF_UNWINDER is not set | 1637 | # CONFIG_DWARF_UNWINDER is not set |
1591 | 1638 | ||
1592 | # | 1639 | # |
@@ -1595,7 +1642,11 @@ CONFIG_EARLY_PRINTK=y | |||
1595 | # CONFIG_KEYS is not set | 1642 | # CONFIG_KEYS is not set |
1596 | # CONFIG_SECURITY is not set | 1643 | # CONFIG_SECURITY is not set |
1597 | # CONFIG_SECURITYFS is not set | 1644 | # CONFIG_SECURITYFS is not set |
1598 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1645 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1646 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1647 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1648 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1649 | CONFIG_DEFAULT_SECURITY="" | ||
1599 | CONFIG_CRYPTO=y | 1650 | CONFIG_CRYPTO=y |
1600 | 1651 | ||
1601 | # | 1652 | # |
diff --git a/arch/sh/configs/sdk7780_defconfig b/arch/sh/configs/sdk7780_defconfig index 055536b5c5c..1859ba09994 100644 --- a/arch/sh/configs/sdk7780_defconfig +++ b/arch/sh/configs/sdk7780_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:40:25 2009 | 4 | # Mon Jan 4 13:27:20 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -63,6 +65,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
63 | # | 65 | # |
64 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 69 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -99,6 +102,7 @@ CONFIG_EVENTFD=y | |||
99 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
100 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | 104 | CONFIG_HAVE_PERF_EVENTS=y |
105 | CONFIG_PERF_USE_VMALLOC=y | ||
102 | 106 | ||
103 | # | 107 | # |
104 | # Kernel Performance Events And Counters | 108 | # Kernel Performance Events And Counters |
@@ -119,6 +123,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
119 | CONFIG_HAVE_KPROBES=y | 123 | CONFIG_HAVE_KPROBES=y |
120 | CONFIG_HAVE_KRETPROBES=y | 124 | CONFIG_HAVE_KRETPROBES=y |
121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 125 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
126 | CONFIG_HAVE_DMA_ATTRS=y | ||
122 | CONFIG_HAVE_CLK=y | 127 | CONFIG_HAVE_CLK=y |
123 | CONFIG_HAVE_DMA_API_DEBUG=y | 128 | CONFIG_HAVE_DMA_API_DEBUG=y |
124 | 129 | ||
@@ -145,14 +150,41 @@ CONFIG_LBDAF=y | |||
145 | # IO Schedulers | 150 | # IO Schedulers |
146 | # | 151 | # |
147 | CONFIG_IOSCHED_NOOP=y | 152 | CONFIG_IOSCHED_NOOP=y |
148 | CONFIG_IOSCHED_AS=y | ||
149 | CONFIG_IOSCHED_DEADLINE=y | 153 | CONFIG_IOSCHED_DEADLINE=y |
150 | CONFIG_IOSCHED_CFQ=y | 154 | CONFIG_IOSCHED_CFQ=y |
151 | CONFIG_DEFAULT_AS=y | ||
152 | # CONFIG_DEFAULT_DEADLINE is not set | 155 | # CONFIG_DEFAULT_DEADLINE is not set |
153 | # CONFIG_DEFAULT_CFQ is not set | 156 | CONFIG_DEFAULT_CFQ=y |
154 | # CONFIG_DEFAULT_NOOP is not set | 157 | # CONFIG_DEFAULT_NOOP is not set |
155 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 158 | CONFIG_DEFAULT_IOSCHED="cfq" |
159 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
167 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_READ_LOCK is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
174 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
175 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
176 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
177 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
181 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
185 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
187 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
156 | # CONFIG_FREEZER is not set | 188 | # CONFIG_FREEZER is not set |
157 | 189 | ||
158 | # | 190 | # |
@@ -239,8 +271,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
239 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 271 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
240 | CONFIG_ZONE_DMA_FLAG=0 | 272 | CONFIG_ZONE_DMA_FLAG=0 |
241 | CONFIG_NR_QUICK=2 | 273 | CONFIG_NR_QUICK=2 |
242 | CONFIG_HAVE_MLOCK=y | ||
243 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
244 | # CONFIG_KSM is not set | 274 | # CONFIG_KSM is not set |
245 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 275 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
246 | 276 | ||
@@ -291,9 +321,9 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
291 | # | 321 | # |
292 | # DMA support | 322 | # DMA support |
293 | # | 323 | # |
294 | CONFIG_SH_DMA_API=y | ||
295 | CONFIG_SH_DMA=y | 324 | CONFIG_SH_DMA=y |
296 | CONFIG_SH_DMA_IRQ_MULTI=y | 325 | CONFIG_SH_DMA_IRQ_MULTI=y |
326 | CONFIG_SH_DMA_API=y | ||
297 | CONFIG_NR_ONCHIP_DMA_CHANNELS=12 | 327 | CONFIG_NR_ONCHIP_DMA_CHANNELS=12 |
298 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 328 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
299 | 329 | ||
@@ -339,7 +369,6 @@ CONFIG_CMDLINE="mem=128M console=tty0 console=ttySC0,115200 ip=bootp root=/dev/n | |||
339 | # Bus options | 369 | # Bus options |
340 | # | 370 | # |
341 | CONFIG_PCI=y | 371 | CONFIG_PCI=y |
342 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
343 | # CONFIG_PCIEPORTBUS is not set | 372 | # CONFIG_PCIEPORTBUS is not set |
344 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 373 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
345 | # CONFIG_PCI_LEGACY is not set | 374 | # CONFIG_PCI_LEGACY is not set |
@@ -347,7 +376,6 @@ CONFIG_PCI_DEBUG=y | |||
347 | # CONFIG_PCI_STUB is not set | 376 | # CONFIG_PCI_STUB is not set |
348 | # CONFIG_PCI_IOV is not set | 377 | # CONFIG_PCI_IOV is not set |
349 | CONFIG_PCCARD=y | 378 | CONFIG_PCCARD=y |
350 | # CONFIG_PCMCIA_DEBUG is not set | ||
351 | CONFIG_PCMCIA=y | 379 | CONFIG_PCMCIA=y |
352 | CONFIG_PCMCIA_LOAD_CIS=y | 380 | CONFIG_PCMCIA_LOAD_CIS=y |
353 | CONFIG_PCMCIA_IOCTL=y | 381 | CONFIG_PCMCIA_IOCTL=y |
@@ -445,6 +473,7 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
445 | # CONFIG_INET6_XFRM_MODE_BEET is not set | 473 | # CONFIG_INET6_XFRM_MODE_BEET is not set |
446 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 474 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
447 | CONFIG_IPV6_SIT=y | 475 | CONFIG_IPV6_SIT=y |
476 | # CONFIG_IPV6_SIT_6RD is not set | ||
448 | CONFIG_IPV6_NDISC_NODETYPE=y | 477 | CONFIG_IPV6_NDISC_NODETYPE=y |
449 | # CONFIG_IPV6_TUNNEL is not set | 478 | # CONFIG_IPV6_TUNNEL is not set |
450 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 479 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
@@ -515,9 +544,6 @@ CONFIG_NET_SCH_FIFO=y | |||
515 | # CONFIG_AF_RXRPC is not set | 544 | # CONFIG_AF_RXRPC is not set |
516 | CONFIG_WIRELESS=y | 545 | CONFIG_WIRELESS=y |
517 | # CONFIG_CFG80211 is not set | 546 | # CONFIG_CFG80211 is not set |
518 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
519 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
520 | # CONFIG_WIRELESS_EXT is not set | ||
521 | # CONFIG_LIB80211 is not set | 547 | # CONFIG_LIB80211 is not set |
522 | 548 | ||
523 | # | 549 | # |
@@ -558,6 +584,10 @@ CONFIG_BLK_DEV=y | |||
558 | # CONFIG_BLK_DEV_COW_COMMON is not set | 584 | # CONFIG_BLK_DEV_COW_COMMON is not set |
559 | CONFIG_BLK_DEV_LOOP=y | 585 | CONFIG_BLK_DEV_LOOP=y |
560 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 586 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
587 | |||
588 | # | ||
589 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
590 | # | ||
561 | # CONFIG_BLK_DEV_NBD is not set | 591 | # CONFIG_BLK_DEV_NBD is not set |
562 | # CONFIG_BLK_DEV_SX8 is not set | 592 | # CONFIG_BLK_DEV_SX8 is not set |
563 | # CONFIG_BLK_DEV_UB is not set | 593 | # CONFIG_BLK_DEV_UB is not set |
@@ -663,8 +693,11 @@ CONFIG_SCSI_FC_ATTRS=y | |||
663 | CONFIG_SCSI_LOWLEVEL=y | 693 | CONFIG_SCSI_LOWLEVEL=y |
664 | # CONFIG_ISCSI_TCP is not set | 694 | # CONFIG_ISCSI_TCP is not set |
665 | # CONFIG_SCSI_BNX2_ISCSI is not set | 695 | # CONFIG_SCSI_BNX2_ISCSI is not set |
696 | # CONFIG_BE2ISCSI is not set | ||
666 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 697 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
698 | # CONFIG_SCSI_HPSA is not set | ||
667 | # CONFIG_SCSI_3W_9XXX is not set | 699 | # CONFIG_SCSI_3W_9XXX is not set |
700 | # CONFIG_SCSI_3W_SAS is not set | ||
668 | # CONFIG_SCSI_ACARD is not set | 701 | # CONFIG_SCSI_ACARD is not set |
669 | # CONFIG_SCSI_AACRAID is not set | 702 | # CONFIG_SCSI_AACRAID is not set |
670 | # CONFIG_SCSI_AIC7XXX is not set | 703 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -698,7 +731,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
698 | # CONFIG_SCSI_NSP32 is not set | 731 | # CONFIG_SCSI_NSP32 is not set |
699 | # CONFIG_SCSI_DEBUG is not set | 732 | # CONFIG_SCSI_DEBUG is not set |
700 | # CONFIG_SCSI_PMCRAID is not set | 733 | # CONFIG_SCSI_PMCRAID is not set |
734 | # CONFIG_SCSI_PM8001 is not set | ||
701 | # CONFIG_SCSI_SRP is not set | 735 | # CONFIG_SCSI_SRP is not set |
736 | # CONFIG_SCSI_BFA_FC is not set | ||
702 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 737 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
703 | # CONFIG_SCSI_DH is not set | 738 | # CONFIG_SCSI_DH is not set |
704 | # CONFIG_SCSI_OSD_INITIATOR is not set | 739 | # CONFIG_SCSI_OSD_INITIATOR is not set |
@@ -753,15 +788,16 @@ CONFIG_ATA_SFF=y | |||
753 | # CONFIG_PATA_OPTI is not set | 788 | # CONFIG_PATA_OPTI is not set |
754 | # CONFIG_PATA_OPTIDMA is not set | 789 | # CONFIG_PATA_OPTIDMA is not set |
755 | # CONFIG_PATA_PCMCIA is not set | 790 | # CONFIG_PATA_PCMCIA is not set |
791 | # CONFIG_PATA_PDC2027X is not set | ||
756 | # CONFIG_PATA_PDC_OLD is not set | 792 | # CONFIG_PATA_PDC_OLD is not set |
757 | # CONFIG_PATA_RADISYS is not set | 793 | # CONFIG_PATA_RADISYS is not set |
758 | # CONFIG_PATA_RDC is not set | 794 | # CONFIG_PATA_RDC is not set |
759 | # CONFIG_PATA_RZ1000 is not set | 795 | # CONFIG_PATA_RZ1000 is not set |
760 | # CONFIG_PATA_SC1200 is not set | 796 | # CONFIG_PATA_SC1200 is not set |
761 | # CONFIG_PATA_SERVERWORKS is not set | 797 | # CONFIG_PATA_SERVERWORKS is not set |
762 | # CONFIG_PATA_PDC2027X is not set | ||
763 | # CONFIG_PATA_SIL680 is not set | 798 | # CONFIG_PATA_SIL680 is not set |
764 | # CONFIG_PATA_SIS is not set | 799 | # CONFIG_PATA_SIS is not set |
800 | # CONFIG_PATA_TOSHIBA is not set | ||
765 | # CONFIG_PATA_VIA is not set | 801 | # CONFIG_PATA_VIA is not set |
766 | # CONFIG_PATA_WINBOND is not set | 802 | # CONFIG_PATA_WINBOND is not set |
767 | # CONFIG_PATA_PLATFORM is not set | 803 | # CONFIG_PATA_PLATFORM is not set |
@@ -827,14 +863,20 @@ CONFIG_SMC91X=y | |||
827 | # CONFIG_NET_PCI is not set | 863 | # CONFIG_NET_PCI is not set |
828 | # CONFIG_B44 is not set | 864 | # CONFIG_B44 is not set |
829 | # CONFIG_KS8842 is not set | 865 | # CONFIG_KS8842 is not set |
866 | # CONFIG_KS8851_MLL is not set | ||
830 | # CONFIG_NET_POCKET is not set | 867 | # CONFIG_NET_POCKET is not set |
831 | # CONFIG_ATL2 is not set | 868 | # CONFIG_ATL2 is not set |
832 | # CONFIG_NETDEV_1000 is not set | 869 | # CONFIG_NETDEV_1000 is not set |
833 | # CONFIG_NETDEV_10000 is not set | 870 | # CONFIG_NETDEV_10000 is not set |
834 | # CONFIG_TR is not set | 871 | # CONFIG_TR is not set |
835 | CONFIG_WLAN=y | 872 | CONFIG_WLAN=y |
836 | # CONFIG_WLAN_PRE80211 is not set | 873 | # CONFIG_PCMCIA_RAYCS is not set |
837 | # CONFIG_WLAN_80211 is not set | 874 | # CONFIG_ATMEL is not set |
875 | # CONFIG_AIRO_CS is not set | ||
876 | # CONFIG_PCMCIA_WL3501 is not set | ||
877 | # CONFIG_PRISM54 is not set | ||
878 | # CONFIG_USB_ZD1201 is not set | ||
879 | # CONFIG_HOSTAP is not set | ||
838 | 880 | ||
839 | # | 881 | # |
840 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 882 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -861,6 +903,7 @@ CONFIG_NETCONSOLE=y | |||
861 | CONFIG_NETPOLL=y | 903 | CONFIG_NETPOLL=y |
862 | # CONFIG_NETPOLL_TRAP is not set | 904 | # CONFIG_NETPOLL_TRAP is not set |
863 | CONFIG_NET_POLL_CONTROLLER=y | 905 | CONFIG_NET_POLL_CONTROLLER=y |
906 | # CONFIG_VMXNET3 is not set | ||
864 | # CONFIG_ISDN is not set | 907 | # CONFIG_ISDN is not set |
865 | # CONFIG_PHONE is not set | 908 | # CONFIG_PHONE is not set |
866 | 909 | ||
@@ -870,6 +913,7 @@ CONFIG_NET_POLL_CONTROLLER=y | |||
870 | CONFIG_INPUT=y | 913 | CONFIG_INPUT=y |
871 | CONFIG_INPUT_FF_MEMLESS=m | 914 | CONFIG_INPUT_FF_MEMLESS=m |
872 | # CONFIG_INPUT_POLLDEV is not set | 915 | # CONFIG_INPUT_POLLDEV is not set |
916 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
873 | 917 | ||
874 | # | 918 | # |
875 | # Userland interfaces | 919 | # Userland interfaces |
@@ -922,6 +966,7 @@ CONFIG_SERIO=y | |||
922 | # CONFIG_SERIO_PCIPS2 is not set | 966 | # CONFIG_SERIO_PCIPS2 is not set |
923 | CONFIG_SERIO_LIBPS2=y | 967 | CONFIG_SERIO_LIBPS2=y |
924 | # CONFIG_SERIO_RAW is not set | 968 | # CONFIG_SERIO_RAW is not set |
969 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
925 | # CONFIG_GAMEPORT is not set | 970 | # CONFIG_GAMEPORT is not set |
926 | 971 | ||
927 | # | 972 | # |
@@ -1009,6 +1054,7 @@ CONFIG_SSB_DRIVER_PCICORE=y | |||
1009 | # | 1054 | # |
1010 | # CONFIG_MFD_CORE is not set | 1055 | # CONFIG_MFD_CORE is not set |
1011 | # CONFIG_MFD_SM501 is not set | 1056 | # CONFIG_MFD_SM501 is not set |
1057 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
1012 | # CONFIG_HTC_PASIC3 is not set | 1058 | # CONFIG_HTC_PASIC3 is not set |
1013 | # CONFIG_MFD_TMIO is not set | 1059 | # CONFIG_MFD_TMIO is not set |
1014 | # CONFIG_REGULATOR is not set | 1060 | # CONFIG_REGULATOR is not set |
@@ -1534,8 +1580,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1534 | CONFIG_HAVE_ARCH_KGDB=y | 1580 | CONFIG_HAVE_ARCH_KGDB=y |
1535 | # CONFIG_KGDB is not set | 1581 | # CONFIG_KGDB is not set |
1536 | CONFIG_SH_STANDARD_BIOS=y | 1582 | CONFIG_SH_STANDARD_BIOS=y |
1537 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1538 | # CONFIG_EARLY_PRINTK is not set | ||
1539 | # CONFIG_STACK_DEBUG is not set | 1583 | # CONFIG_STACK_DEBUG is not set |
1540 | # CONFIG_DEBUG_STACK_USAGE is not set | 1584 | # CONFIG_DEBUG_STACK_USAGE is not set |
1541 | # CONFIG_4KSTACKS is not set | 1585 | # CONFIG_4KSTACKS is not set |
@@ -1549,7 +1593,11 @@ CONFIG_DUMP_CODE=y | |||
1549 | # CONFIG_KEYS is not set | 1593 | # CONFIG_KEYS is not set |
1550 | # CONFIG_SECURITY is not set | 1594 | # CONFIG_SECURITY is not set |
1551 | # CONFIG_SECURITYFS is not set | 1595 | # CONFIG_SECURITYFS is not set |
1552 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1596 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1597 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1598 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1599 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1600 | CONFIG_DEFAULT_SECURITY="" | ||
1553 | CONFIG_CRYPTO=y | 1601 | CONFIG_CRYPTO=y |
1554 | 1602 | ||
1555 | # | 1603 | # |
diff --git a/arch/sh/configs/se7206_defconfig b/arch/sh/configs/se7206_defconfig index 1cd1777aa43..43e6780a89d 100644 --- a/arch/sh/configs/se7206_defconfig +++ b/arch/sh/configs/se7206_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:45:28 2009 | 4 | # Mon Jan 4 13:30:00 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -30,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
35 | 36 | ||
@@ -64,6 +65,7 @@ CONFIG_AUDIT_TREE=y | |||
64 | # | 65 | # |
65 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
66 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
67 | CONFIG_RCU_TRACE=y | 69 | CONFIG_RCU_TRACE=y |
68 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
69 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -115,6 +117,7 @@ CONFIG_TIMERFD=y | |||
115 | CONFIG_EVENTFD=y | 117 | CONFIG_EVENTFD=y |
116 | CONFIG_AIO=y | 118 | CONFIG_AIO=y |
117 | CONFIG_HAVE_PERF_EVENTS=y | 119 | CONFIG_HAVE_PERF_EVENTS=y |
120 | CONFIG_PERF_USE_VMALLOC=y | ||
118 | 121 | ||
119 | # | 122 | # |
120 | # Kernel Performance Events And Counters | 123 | # Kernel Performance Events And Counters |
@@ -122,11 +125,13 @@ CONFIG_HAVE_PERF_EVENTS=y | |||
122 | CONFIG_PERF_EVENTS=y | 125 | CONFIG_PERF_EVENTS=y |
123 | CONFIG_EVENT_PROFILE=y | 126 | CONFIG_EVENT_PROFILE=y |
124 | # CONFIG_PERF_COUNTERS is not set | 127 | # CONFIG_PERF_COUNTERS is not set |
128 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
125 | CONFIG_VM_EVENT_COUNTERS=y | 129 | CONFIG_VM_EVENT_COUNTERS=y |
126 | # CONFIG_COMPAT_BRK is not set | 130 | # CONFIG_COMPAT_BRK is not set |
127 | # CONFIG_SLAB is not set | 131 | # CONFIG_SLAB is not set |
128 | # CONFIG_SLUB is not set | 132 | # CONFIG_SLUB is not set |
129 | CONFIG_SLOB=y | 133 | CONFIG_SLOB=y |
134 | # CONFIG_MMAP_ALLOW_UNINITIALIZED is not set | ||
130 | CONFIG_PROFILING=y | 135 | CONFIG_PROFILING=y |
131 | CONFIG_TRACEPOINTS=y | 136 | CONFIG_TRACEPOINTS=y |
132 | CONFIG_OPROFILE=y | 137 | CONFIG_OPROFILE=y |
@@ -135,6 +140,7 @@ CONFIG_HAVE_OPROFILE=y | |||
135 | CONFIG_HAVE_KPROBES=y | 140 | CONFIG_HAVE_KPROBES=y |
136 | CONFIG_HAVE_KRETPROBES=y | 141 | CONFIG_HAVE_KRETPROBES=y |
137 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 142 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
143 | CONFIG_HAVE_DMA_ATTRS=y | ||
138 | CONFIG_HAVE_CLK=y | 144 | CONFIG_HAVE_CLK=y |
139 | CONFIG_HAVE_DMA_API_DEBUG=y | 145 | CONFIG_HAVE_DMA_API_DEBUG=y |
140 | 146 | ||
@@ -156,19 +162,47 @@ CONFIG_BLOCK=y | |||
156 | CONFIG_LBDAF=y | 162 | CONFIG_LBDAF=y |
157 | # CONFIG_BLK_DEV_BSG is not set | 163 | # CONFIG_BLK_DEV_BSG is not set |
158 | # CONFIG_BLK_DEV_INTEGRITY is not set | 164 | # CONFIG_BLK_DEV_INTEGRITY is not set |
165 | # CONFIG_BLK_CGROUP is not set | ||
159 | 166 | ||
160 | # | 167 | # |
161 | # IO Schedulers | 168 | # IO Schedulers |
162 | # | 169 | # |
163 | CONFIG_IOSCHED_NOOP=y | 170 | CONFIG_IOSCHED_NOOP=y |
164 | # CONFIG_IOSCHED_AS is not set | ||
165 | # CONFIG_IOSCHED_DEADLINE is not set | 171 | # CONFIG_IOSCHED_DEADLINE is not set |
166 | # CONFIG_IOSCHED_CFQ is not set | 172 | # CONFIG_IOSCHED_CFQ is not set |
167 | # CONFIG_DEFAULT_AS is not set | ||
168 | # CONFIG_DEFAULT_DEADLINE is not set | 173 | # CONFIG_DEFAULT_DEADLINE is not set |
169 | # CONFIG_DEFAULT_CFQ is not set | 174 | # CONFIG_DEFAULT_CFQ is not set |
170 | CONFIG_DEFAULT_NOOP=y | 175 | CONFIG_DEFAULT_NOOP=y |
171 | CONFIG_DEFAULT_IOSCHED="noop" | 176 | CONFIG_DEFAULT_IOSCHED="noop" |
177 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
178 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
179 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
180 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
181 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
182 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
183 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
184 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
185 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
186 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
187 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
188 | # CONFIG_INLINE_READ_LOCK is not set | ||
189 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
190 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
191 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
192 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
193 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
194 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
195 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
196 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
197 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
198 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
199 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
200 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
201 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
202 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
203 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
204 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
205 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
172 | # CONFIG_FREEZER is not set | 206 | # CONFIG_FREEZER is not set |
173 | 207 | ||
174 | # | 208 | # |
@@ -243,7 +277,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
243 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 277 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
244 | CONFIG_ZONE_DMA_FLAG=0 | 278 | CONFIG_ZONE_DMA_FLAG=0 |
245 | CONFIG_NR_QUICK=2 | 279 | CONFIG_NR_QUICK=2 |
246 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
247 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 | 280 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 |
248 | 281 | ||
249 | # | 282 | # |
@@ -438,9 +471,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
438 | # CONFIG_AF_RXRPC is not set | 471 | # CONFIG_AF_RXRPC is not set |
439 | CONFIG_WIRELESS=y | 472 | CONFIG_WIRELESS=y |
440 | # CONFIG_CFG80211 is not set | 473 | # CONFIG_CFG80211 is not set |
441 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
442 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
443 | # CONFIG_WIRELESS_EXT is not set | ||
444 | # CONFIG_LIB80211 is not set | 474 | # CONFIG_LIB80211 is not set |
445 | 475 | ||
446 | # | 476 | # |
@@ -551,6 +581,10 @@ CONFIG_BLK_DEV=y | |||
551 | # CONFIG_BLK_DEV_COW_COMMON is not set | 581 | # CONFIG_BLK_DEV_COW_COMMON is not set |
552 | CONFIG_BLK_DEV_LOOP=y | 582 | CONFIG_BLK_DEV_LOOP=y |
553 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 583 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
584 | |||
585 | # | ||
586 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
587 | # | ||
554 | # CONFIG_BLK_DEV_NBD is not set | 588 | # CONFIG_BLK_DEV_NBD is not set |
555 | CONFIG_BLK_DEV_RAM=y | 589 | CONFIG_BLK_DEV_RAM=y |
556 | CONFIG_BLK_DEV_RAM_COUNT=16 | 590 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -605,11 +639,11 @@ CONFIG_SMC91X=y | |||
605 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 639 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
606 | # CONFIG_B44 is not set | 640 | # CONFIG_B44 is not set |
607 | # CONFIG_KS8842 is not set | 641 | # CONFIG_KS8842 is not set |
642 | # CONFIG_KS8851_MLL is not set | ||
608 | # CONFIG_NETDEV_1000 is not set | 643 | # CONFIG_NETDEV_1000 is not set |
609 | # CONFIG_NETDEV_10000 is not set | 644 | # CONFIG_NETDEV_10000 is not set |
610 | CONFIG_WLAN=y | 645 | CONFIG_WLAN=y |
611 | # CONFIG_WLAN_PRE80211 is not set | 646 | # CONFIG_HOSTAP is not set |
612 | # CONFIG_WLAN_80211 is not set | ||
613 | 647 | ||
614 | # | 648 | # |
615 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 649 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -685,6 +719,7 @@ CONFIG_SSB_POSSIBLE=y | |||
685 | # | 719 | # |
686 | # CONFIG_MFD_CORE is not set | 720 | # CONFIG_MFD_CORE is not set |
687 | # CONFIG_MFD_SM501 is not set | 721 | # CONFIG_MFD_SM501 is not set |
722 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
688 | # CONFIG_HTC_PASIC3 is not set | 723 | # CONFIG_HTC_PASIC3 is not set |
689 | # CONFIG_MFD_TMIO is not set | 724 | # CONFIG_MFD_TMIO is not set |
690 | # CONFIG_REGULATOR is not set | 725 | # CONFIG_REGULATOR is not set |
@@ -738,7 +773,9 @@ CONFIG_RTC_INTF_DEV=y | |||
738 | # CONFIG_RTC_DRV_M48T86 is not set | 773 | # CONFIG_RTC_DRV_M48T86 is not set |
739 | # CONFIG_RTC_DRV_M48T35 is not set | 774 | # CONFIG_RTC_DRV_M48T35 is not set |
740 | # CONFIG_RTC_DRV_M48T59 is not set | 775 | # CONFIG_RTC_DRV_M48T59 is not set |
776 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
741 | # CONFIG_RTC_DRV_BQ4802 is not set | 777 | # CONFIG_RTC_DRV_BQ4802 is not set |
778 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
742 | # CONFIG_RTC_DRV_V3020 is not set | 779 | # CONFIG_RTC_DRV_V3020 is not set |
743 | 780 | ||
744 | # | 781 | # |
@@ -762,6 +799,7 @@ CONFIG_EXT2_FS=y | |||
762 | # CONFIG_EXT2_FS_XATTR is not set | 799 | # CONFIG_EXT2_FS_XATTR is not set |
763 | # CONFIG_EXT3_FS is not set | 800 | # CONFIG_EXT3_FS is not set |
764 | # CONFIG_EXT4_FS is not set | 801 | # CONFIG_EXT4_FS is not set |
802 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
765 | # CONFIG_REISERFS_FS is not set | 803 | # CONFIG_REISERFS_FS is not set |
766 | # CONFIG_JFS_FS is not set | 804 | # CONFIG_JFS_FS is not set |
767 | # CONFIG_FS_POSIX_ACL is not set | 805 | # CONFIG_FS_POSIX_ACL is not set |
@@ -911,6 +949,7 @@ CONFIG_FRAME_POINTER=y | |||
911 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set | 949 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set |
912 | # CONFIG_FAULT_INJECTION is not set | 950 | # CONFIG_FAULT_INJECTION is not set |
913 | # CONFIG_LATENCYTOP is not set | 951 | # CONFIG_LATENCYTOP is not set |
952 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
914 | # CONFIG_PAGE_POISONING is not set | 953 | # CONFIG_PAGE_POISONING is not set |
915 | CONFIG_NOP_TRACER=y | 954 | CONFIG_NOP_TRACER=y |
916 | CONFIG_HAVE_FUNCTION_TRACER=y | 955 | CONFIG_HAVE_FUNCTION_TRACER=y |
@@ -947,7 +986,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
947 | CONFIG_HAVE_ARCH_KGDB=y | 986 | CONFIG_HAVE_ARCH_KGDB=y |
948 | # CONFIG_KGDB is not set | 987 | # CONFIG_KGDB is not set |
949 | # CONFIG_SH_STANDARD_BIOS is not set | 988 | # CONFIG_SH_STANDARD_BIOS is not set |
950 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
951 | # CONFIG_STACK_DEBUG is not set | 989 | # CONFIG_STACK_DEBUG is not set |
952 | CONFIG_DEBUG_STACK_USAGE=y | 990 | CONFIG_DEBUG_STACK_USAGE=y |
953 | CONFIG_DUMP_CODE=y | 991 | CONFIG_DUMP_CODE=y |
@@ -960,7 +998,11 @@ CONFIG_DUMP_CODE=y | |||
960 | # CONFIG_KEYS is not set | 998 | # CONFIG_KEYS is not set |
961 | # CONFIG_SECURITY is not set | 999 | # CONFIG_SECURITY is not set |
962 | # CONFIG_SECURITYFS is not set | 1000 | # CONFIG_SECURITYFS is not set |
963 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1001 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1002 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1003 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1004 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1005 | CONFIG_DEFAULT_SECURITY="" | ||
964 | CONFIG_CRYPTO=y | 1006 | CONFIG_CRYPTO=y |
965 | 1007 | ||
966 | # | 1008 | # |
diff --git a/arch/sh/configs/se7343_defconfig b/arch/sh/configs/se7343_defconfig index 5531444b808..ec494e32fa2 100644 --- a/arch/sh/configs/se7343_defconfig +++ b/arch/sh/configs/se7343_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:46:55 2009 | 4 | # Mon Jan 4 13:30:41 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -61,6 +63,7 @@ CONFIG_POSIX_MQUEUE_SYSCTL=y | |||
61 | # | 63 | # |
62 | CONFIG_TREE_RCU=y | 64 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
66 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 67 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 68 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 69 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -99,6 +102,7 @@ CONFIG_EVENTFD=y | |||
99 | # CONFIG_SHMEM is not set | 102 | # CONFIG_SHMEM is not set |
100 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | 104 | CONFIG_HAVE_PERF_EVENTS=y |
105 | CONFIG_PERF_USE_VMALLOC=y | ||
102 | 106 | ||
103 | # | 107 | # |
104 | # Kernel Performance Events And Counters | 108 | # Kernel Performance Events And Counters |
@@ -117,6 +121,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
117 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
118 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
119 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
120 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
121 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
122 | 127 | ||
@@ -126,6 +131,7 @@ CONFIG_HAVE_DMA_API_DEBUG=y | |||
126 | # CONFIG_SLOW_WORK is not set | 131 | # CONFIG_SLOW_WORK is not set |
127 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | 132 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
128 | CONFIG_SLABINFO=y | 133 | CONFIG_SLABINFO=y |
134 | CONFIG_RT_MUTEXES=y | ||
129 | CONFIG_BASE_SMALL=0 | 135 | CONFIG_BASE_SMALL=0 |
130 | CONFIG_MODULES=y | 136 | CONFIG_MODULES=y |
131 | # CONFIG_MODULE_FORCE_LOAD is not set | 137 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -142,14 +148,41 @@ CONFIG_LBDAF=y | |||
142 | # IO Schedulers | 148 | # IO Schedulers |
143 | # | 149 | # |
144 | CONFIG_IOSCHED_NOOP=y | 150 | CONFIG_IOSCHED_NOOP=y |
145 | # CONFIG_IOSCHED_AS is not set | ||
146 | CONFIG_IOSCHED_DEADLINE=y | 151 | CONFIG_IOSCHED_DEADLINE=y |
147 | # CONFIG_IOSCHED_CFQ is not set | 152 | # CONFIG_IOSCHED_CFQ is not set |
148 | # CONFIG_DEFAULT_AS is not set | ||
149 | CONFIG_DEFAULT_DEADLINE=y | 153 | CONFIG_DEFAULT_DEADLINE=y |
150 | # CONFIG_DEFAULT_CFQ is not set | 154 | # CONFIG_DEFAULT_CFQ is not set |
151 | # CONFIG_DEFAULT_NOOP is not set | 155 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="deadline" | 156 | CONFIG_DEFAULT_IOSCHED="deadline" |
157 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
163 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
165 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
166 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
167 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
172 | CONFIG_INLINE_READ_UNLOCK=y | ||
173 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
174 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
175 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
176 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
181 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
183 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
184 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
185 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
153 | CONFIG_FREEZER=y | 186 | CONFIG_FREEZER=y |
154 | 187 | ||
155 | # | 188 | # |
@@ -228,8 +261,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
228 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 261 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
229 | CONFIG_ZONE_DMA_FLAG=0 | 262 | CONFIG_ZONE_DMA_FLAG=0 |
230 | CONFIG_NR_QUICK=2 | 263 | CONFIG_NR_QUICK=2 |
231 | CONFIG_HAVE_MLOCK=y | ||
232 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
233 | # CONFIG_KSM is not set | 264 | # CONFIG_KSM is not set |
234 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 265 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
235 | 266 | ||
@@ -263,7 +294,6 @@ CONFIG_SH_7343_SOLUTION_ENGINE=y | |||
263 | # | 294 | # |
264 | CONFIG_SH_TIMER_TMU=y | 295 | CONFIG_SH_TIMER_TMU=y |
265 | # CONFIG_SH_TIMER_CMT is not set | 296 | # CONFIG_SH_TIMER_CMT is not set |
266 | CONFIG_SH_PCLK_FREQ=33333333 | ||
267 | CONFIG_SH_CLK_CPG=y | 297 | CONFIG_SH_CLK_CPG=y |
268 | # CONFIG_NO_HZ is not set | 298 | # CONFIG_NO_HZ is not set |
269 | # CONFIG_HIGH_RES_TIMERS is not set | 299 | # CONFIG_HIGH_RES_TIMERS is not set |
@@ -413,9 +443,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
413 | # CONFIG_AF_RXRPC is not set | 443 | # CONFIG_AF_RXRPC is not set |
414 | CONFIG_WIRELESS=y | 444 | CONFIG_WIRELESS=y |
415 | # CONFIG_CFG80211 is not set | 445 | # CONFIG_CFG80211 is not set |
416 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
417 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
418 | # CONFIG_WIRELESS_EXT is not set | ||
419 | # CONFIG_LIB80211 is not set | 446 | # CONFIG_LIB80211 is not set |
420 | 447 | ||
421 | # | 448 | # |
@@ -525,6 +552,10 @@ CONFIG_MTD_PHYSMAP=y | |||
525 | CONFIG_BLK_DEV=y | 552 | CONFIG_BLK_DEV=y |
526 | # CONFIG_BLK_DEV_COW_COMMON is not set | 553 | # CONFIG_BLK_DEV_COW_COMMON is not set |
527 | # CONFIG_BLK_DEV_LOOP is not set | 554 | # CONFIG_BLK_DEV_LOOP is not set |
555 | |||
556 | # | ||
557 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
558 | # | ||
528 | # CONFIG_BLK_DEV_NBD is not set | 559 | # CONFIG_BLK_DEV_NBD is not set |
529 | # CONFIG_BLK_DEV_UB is not set | 560 | # CONFIG_BLK_DEV_UB is not set |
530 | # CONFIG_BLK_DEV_RAM is not set | 561 | # CONFIG_BLK_DEV_RAM is not set |
@@ -585,8 +616,8 @@ CONFIG_MII=y | |||
585 | # CONFIG_NETDEV_1000 is not set | 616 | # CONFIG_NETDEV_1000 is not set |
586 | # CONFIG_NETDEV_10000 is not set | 617 | # CONFIG_NETDEV_10000 is not set |
587 | CONFIG_WLAN=y | 618 | CONFIG_WLAN=y |
588 | # CONFIG_WLAN_PRE80211 is not set | 619 | # CONFIG_USB_ZD1201 is not set |
589 | # CONFIG_WLAN_80211 is not set | 620 | # CONFIG_HOSTAP is not set |
590 | 621 | ||
591 | # | 622 | # |
592 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 623 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -628,6 +659,7 @@ CONFIG_USB_NET_DM9601=y | |||
628 | CONFIG_INPUT=y | 659 | CONFIG_INPUT=y |
629 | # CONFIG_INPUT_FF_MEMLESS is not set | 660 | # CONFIG_INPUT_FF_MEMLESS is not set |
630 | # CONFIG_INPUT_POLLDEV is not set | 661 | # CONFIG_INPUT_POLLDEV is not set |
662 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
631 | 663 | ||
632 | # | 664 | # |
633 | # Userland interfaces | 665 | # Userland interfaces |
@@ -724,7 +756,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
724 | # | 756 | # |
725 | # Miscellaneous I2C Chip support | 757 | # Miscellaneous I2C Chip support |
726 | # | 758 | # |
727 | # CONFIG_DS1682 is not set | ||
728 | # CONFIG_SENSORS_TSL2550 is not set | 759 | # CONFIG_SENSORS_TSL2550 is not set |
729 | # CONFIG_I2C_DEBUG_CORE is not set | 760 | # CONFIG_I2C_DEBUG_CORE is not set |
730 | # CONFIG_I2C_DEBUG_ALGO is not set | 761 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -753,15 +784,18 @@ CONFIG_SSB_POSSIBLE=y | |||
753 | # | 784 | # |
754 | # CONFIG_MFD_CORE is not set | 785 | # CONFIG_MFD_CORE is not set |
755 | # CONFIG_MFD_SM501 is not set | 786 | # CONFIG_MFD_SM501 is not set |
787 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
756 | # CONFIG_HTC_PASIC3 is not set | 788 | # CONFIG_HTC_PASIC3 is not set |
757 | # CONFIG_TWL4030_CORE is not set | 789 | # CONFIG_TWL4030_CORE is not set |
758 | # CONFIG_MFD_TMIO is not set | 790 | # CONFIG_MFD_TMIO is not set |
759 | # CONFIG_PMIC_DA903X is not set | 791 | # CONFIG_PMIC_DA903X is not set |
792 | # CONFIG_PMIC_ADP5520 is not set | ||
760 | # CONFIG_MFD_WM8400 is not set | 793 | # CONFIG_MFD_WM8400 is not set |
761 | # CONFIG_MFD_WM831X is not set | 794 | # CONFIG_MFD_WM831X is not set |
762 | # CONFIG_MFD_WM8350_I2C is not set | 795 | # CONFIG_MFD_WM8350_I2C is not set |
763 | # CONFIG_MFD_PCF50633 is not set | 796 | # CONFIG_MFD_PCF50633 is not set |
764 | # CONFIG_AB3100_CORE is not set | 797 | # CONFIG_AB3100_CORE is not set |
798 | # CONFIG_MFD_88PM8607 is not set | ||
765 | # CONFIG_REGULATOR is not set | 799 | # CONFIG_REGULATOR is not set |
766 | # CONFIG_MEDIA_SUPPORT is not set | 800 | # CONFIG_MEDIA_SUPPORT is not set |
767 | 801 | ||
@@ -1173,10 +1207,11 @@ CONFIG_FRAME_WARN=1024 | |||
1173 | # CONFIG_DEBUG_FS is not set | 1207 | # CONFIG_DEBUG_FS is not set |
1174 | # CONFIG_HEADERS_CHECK is not set | 1208 | # CONFIG_HEADERS_CHECK is not set |
1175 | # CONFIG_DEBUG_KERNEL is not set | 1209 | # CONFIG_DEBUG_KERNEL is not set |
1176 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1210 | CONFIG_DEBUG_BUGVERBOSE=y |
1177 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1211 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1178 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1212 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1179 | # CONFIG_LATENCYTOP is not set | 1213 | # CONFIG_LATENCYTOP is not set |
1214 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1180 | CONFIG_HAVE_FUNCTION_TRACER=y | 1215 | CONFIG_HAVE_FUNCTION_TRACER=y |
1181 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1216 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
1182 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 1217 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -1189,9 +1224,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1189 | # CONFIG_SAMPLES is not set | 1224 | # CONFIG_SAMPLES is not set |
1190 | CONFIG_HAVE_ARCH_KGDB=y | 1225 | CONFIG_HAVE_ARCH_KGDB=y |
1191 | # CONFIG_SH_STANDARD_BIOS is not set | 1226 | # CONFIG_SH_STANDARD_BIOS is not set |
1192 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1193 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffe00000 | ||
1194 | CONFIG_EARLY_PRINTK=y | ||
1195 | # CONFIG_DWARF_UNWINDER is not set | 1227 | # CONFIG_DWARF_UNWINDER is not set |
1196 | 1228 | ||
1197 | # | 1229 | # |
@@ -1200,7 +1232,11 @@ CONFIG_EARLY_PRINTK=y | |||
1200 | # CONFIG_KEYS is not set | 1232 | # CONFIG_KEYS is not set |
1201 | # CONFIG_SECURITY is not set | 1233 | # CONFIG_SECURITY is not set |
1202 | # CONFIG_SECURITYFS is not set | 1234 | # CONFIG_SECURITYFS is not set |
1203 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1235 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1236 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1237 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1238 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1239 | CONFIG_DEFAULT_SECURITY="" | ||
1204 | CONFIG_CRYPTO=y | 1240 | CONFIG_CRYPTO=y |
1205 | 1241 | ||
1206 | # | 1242 | # |
diff --git a/arch/sh/configs/se7619_defconfig b/arch/sh/configs/se7619_defconfig index 6921b199b1d..ee87e2b2168 100644 --- a/arch/sh/configs/se7619_defconfig +++ b/arch/sh/configs/se7619_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:50:05 2009 | 4 | # Mon Jan 4 13:34:15 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -29,6 +29,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
32 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 34 | CONFIG_CONSTRUCTORS=y |
34 | 35 | ||
@@ -54,6 +55,7 @@ CONFIG_KERNEL_GZIP=y | |||
54 | # | 55 | # |
55 | CONFIG_TREE_RCU=y | 56 | CONFIG_TREE_RCU=y |
56 | # CONFIG_TREE_PREEMPT_RCU is not set | 57 | # CONFIG_TREE_PREEMPT_RCU is not set |
58 | # CONFIG_TINY_RCU is not set | ||
57 | # CONFIG_RCU_TRACE is not set | 59 | # CONFIG_RCU_TRACE is not set |
58 | CONFIG_RCU_FANOUT=32 | 60 | CONFIG_RCU_FANOUT=32 |
59 | # CONFIG_RCU_FANOUT_EXACT is not set | 61 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -84,6 +86,7 @@ CONFIG_TIMERFD=y | |||
84 | CONFIG_EVENTFD=y | 86 | CONFIG_EVENTFD=y |
85 | CONFIG_AIO=y | 87 | CONFIG_AIO=y |
86 | CONFIG_HAVE_PERF_EVENTS=y | 88 | CONFIG_HAVE_PERF_EVENTS=y |
89 | CONFIG_PERF_USE_VMALLOC=y | ||
87 | 90 | ||
88 | # | 91 | # |
89 | # Kernel Performance Events And Counters | 92 | # Kernel Performance Events And Counters |
@@ -95,11 +98,13 @@ CONFIG_COMPAT_BRK=y | |||
95 | CONFIG_SLAB=y | 98 | CONFIG_SLAB=y |
96 | # CONFIG_SLUB is not set | 99 | # CONFIG_SLUB is not set |
97 | # CONFIG_SLOB is not set | 100 | # CONFIG_SLOB is not set |
101 | # CONFIG_MMAP_ALLOW_UNINITIALIZED is not set | ||
98 | # CONFIG_PROFILING is not set | 102 | # CONFIG_PROFILING is not set |
99 | CONFIG_HAVE_OPROFILE=y | 103 | CONFIG_HAVE_OPROFILE=y |
100 | CONFIG_HAVE_KPROBES=y | 104 | CONFIG_HAVE_KPROBES=y |
101 | CONFIG_HAVE_KRETPROBES=y | 105 | CONFIG_HAVE_KRETPROBES=y |
102 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 106 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
107 | CONFIG_HAVE_DMA_ATTRS=y | ||
103 | CONFIG_HAVE_CLK=y | 108 | CONFIG_HAVE_CLK=y |
104 | CONFIG_HAVE_DMA_API_DEBUG=y | 109 | CONFIG_HAVE_DMA_API_DEBUG=y |
105 | 110 | ||
@@ -120,14 +125,41 @@ CONFIG_LBDAF=y | |||
120 | # IO Schedulers | 125 | # IO Schedulers |
121 | # | 126 | # |
122 | CONFIG_IOSCHED_NOOP=y | 127 | CONFIG_IOSCHED_NOOP=y |
123 | # CONFIG_IOSCHED_AS is not set | ||
124 | # CONFIG_IOSCHED_DEADLINE is not set | 128 | # CONFIG_IOSCHED_DEADLINE is not set |
125 | # CONFIG_IOSCHED_CFQ is not set | 129 | # CONFIG_IOSCHED_CFQ is not set |
126 | # CONFIG_DEFAULT_AS is not set | ||
127 | # CONFIG_DEFAULT_DEADLINE is not set | 130 | # CONFIG_DEFAULT_DEADLINE is not set |
128 | # CONFIG_DEFAULT_CFQ is not set | 131 | # CONFIG_DEFAULT_CFQ is not set |
129 | CONFIG_DEFAULT_NOOP=y | 132 | CONFIG_DEFAULT_NOOP=y |
130 | CONFIG_DEFAULT_IOSCHED="noop" | 133 | CONFIG_DEFAULT_IOSCHED="noop" |
134 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
135 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
136 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
137 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
138 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
139 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
140 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
141 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
142 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
143 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
144 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
145 | # CONFIG_INLINE_READ_LOCK is not set | ||
146 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
147 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
148 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
149 | CONFIG_INLINE_READ_UNLOCK=y | ||
150 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
151 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
152 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
153 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
154 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
155 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
156 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
157 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
158 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
159 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
160 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
161 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
162 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
131 | # CONFIG_FREEZER is not set | 163 | # CONFIG_FREEZER is not set |
132 | 164 | ||
133 | # | 165 | # |
@@ -201,7 +233,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
201 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 233 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
202 | CONFIG_ZONE_DMA_FLAG=0 | 234 | CONFIG_ZONE_DMA_FLAG=0 |
203 | CONFIG_NR_QUICK=2 | 235 | CONFIG_NR_QUICK=2 |
204 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | ||
205 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 | 236 | CONFIG_NOMMU_INITIAL_TRIM_EXCESS=1 |
206 | 237 | ||
207 | # | 238 | # |
@@ -401,6 +432,10 @@ CONFIG_MTD_PHYSMAP=y | |||
401 | CONFIG_BLK_DEV=y | 432 | CONFIG_BLK_DEV=y |
402 | # CONFIG_BLK_DEV_COW_COMMON is not set | 433 | # CONFIG_BLK_DEV_COW_COMMON is not set |
403 | # CONFIG_BLK_DEV_LOOP is not set | 434 | # CONFIG_BLK_DEV_LOOP is not set |
435 | |||
436 | # | ||
437 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
438 | # | ||
404 | # CONFIG_BLK_DEV_RAM is not set | 439 | # CONFIG_BLK_DEV_RAM is not set |
405 | # CONFIG_CDROM_PKTCDVD is not set | 440 | # CONFIG_CDROM_PKTCDVD is not set |
406 | # CONFIG_BLK_DEV_HD is not set | 441 | # CONFIG_BLK_DEV_HD is not set |
@@ -432,6 +467,7 @@ CONFIG_HAVE_IDE=y | |||
432 | CONFIG_INPUT=y | 467 | CONFIG_INPUT=y |
433 | # CONFIG_INPUT_FF_MEMLESS is not set | 468 | # CONFIG_INPUT_FF_MEMLESS is not set |
434 | # CONFIG_INPUT_POLLDEV is not set | 469 | # CONFIG_INPUT_POLLDEV is not set |
470 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
435 | 471 | ||
436 | # | 472 | # |
437 | # Userland interfaces | 473 | # Userland interfaces |
@@ -508,6 +544,7 @@ CONFIG_SSB_POSSIBLE=y | |||
508 | # | 544 | # |
509 | # CONFIG_MFD_CORE is not set | 545 | # CONFIG_MFD_CORE is not set |
510 | # CONFIG_MFD_SM501 is not set | 546 | # CONFIG_MFD_SM501 is not set |
547 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
511 | # CONFIG_HTC_PASIC3 is not set | 548 | # CONFIG_HTC_PASIC3 is not set |
512 | # CONFIG_MFD_TMIO is not set | 549 | # CONFIG_MFD_TMIO is not set |
513 | # CONFIG_REGULATOR is not set | 550 | # CONFIG_REGULATOR is not set |
@@ -575,6 +612,7 @@ CONFIG_RTC_LIB=y | |||
575 | # CONFIG_EXT2_FS is not set | 612 | # CONFIG_EXT2_FS is not set |
576 | # CONFIG_EXT3_FS is not set | 613 | # CONFIG_EXT3_FS is not set |
577 | # CONFIG_EXT4_FS is not set | 614 | # CONFIG_EXT4_FS is not set |
615 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
578 | # CONFIG_REISERFS_FS is not set | 616 | # CONFIG_REISERFS_FS is not set |
579 | # CONFIG_JFS_FS is not set | 617 | # CONFIG_JFS_FS is not set |
580 | # CONFIG_FS_POSIX_ACL is not set | 618 | # CONFIG_FS_POSIX_ACL is not set |
@@ -661,10 +699,11 @@ CONFIG_FRAME_WARN=1024 | |||
661 | # CONFIG_UNUSED_SYMBOLS is not set | 699 | # CONFIG_UNUSED_SYMBOLS is not set |
662 | # CONFIG_HEADERS_CHECK is not set | 700 | # CONFIG_HEADERS_CHECK is not set |
663 | # CONFIG_DEBUG_KERNEL is not set | 701 | # CONFIG_DEBUG_KERNEL is not set |
664 | # CONFIG_DEBUG_BUGVERBOSE is not set | 702 | CONFIG_DEBUG_BUGVERBOSE=y |
665 | # CONFIG_DEBUG_MEMORY_INIT is not set | 703 | # CONFIG_DEBUG_MEMORY_INIT is not set |
666 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 704 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
667 | # CONFIG_LATENCYTOP is not set | 705 | # CONFIG_LATENCYTOP is not set |
706 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
668 | CONFIG_HAVE_FUNCTION_TRACER=y | 707 | CONFIG_HAVE_FUNCTION_TRACER=y |
669 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 708 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
670 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 709 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -677,7 +716,6 @@ CONFIG_TRACING_SUPPORT=y | |||
677 | # CONFIG_SAMPLES is not set | 716 | # CONFIG_SAMPLES is not set |
678 | CONFIG_HAVE_ARCH_KGDB=y | 717 | CONFIG_HAVE_ARCH_KGDB=y |
679 | # CONFIG_SH_STANDARD_BIOS is not set | 718 | # CONFIG_SH_STANDARD_BIOS is not set |
680 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
681 | # CONFIG_DWARF_UNWINDER is not set | 719 | # CONFIG_DWARF_UNWINDER is not set |
682 | 720 | ||
683 | # | 721 | # |
@@ -685,7 +723,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
685 | # | 723 | # |
686 | # CONFIG_KEYS is not set | 724 | # CONFIG_KEYS is not set |
687 | # CONFIG_SECURITYFS is not set | 725 | # CONFIG_SECURITYFS is not set |
688 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 726 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
727 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
728 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
729 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
730 | CONFIG_DEFAULT_SECURITY="" | ||
689 | # CONFIG_CRYPTO is not set | 731 | # CONFIG_CRYPTO is not set |
690 | # CONFIG_BINARY_PRINTF is not set | 732 | # CONFIG_BINARY_PRINTF is not set |
691 | 733 | ||
diff --git a/arch/sh/configs/se7705_defconfig b/arch/sh/configs/se7705_defconfig index 3abb06879f0..03f4219f208 100644 --- a/arch/sh/configs/se7705_defconfig +++ b/arch/sh/configs/se7705_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:50:52 2009 | 4 | # Mon Jan 4 13:34:37 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -29,6 +29,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
32 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 34 | CONFIG_CONSTRUCTORS=y |
34 | 35 | ||
@@ -59,6 +60,7 @@ CONFIG_KERNEL_GZIP=y | |||
59 | # | 60 | # |
60 | CONFIG_TREE_RCU=y | 61 | CONFIG_TREE_RCU=y |
61 | # CONFIG_TREE_PREEMPT_RCU is not set | 62 | # CONFIG_TREE_PREEMPT_RCU is not set |
63 | # CONFIG_TINY_RCU is not set | ||
62 | # CONFIG_RCU_TRACE is not set | 64 | # CONFIG_RCU_TRACE is not set |
63 | CONFIG_RCU_FANOUT=32 | 65 | CONFIG_RCU_FANOUT=32 |
64 | # CONFIG_RCU_FANOUT_EXACT is not set | 66 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -94,6 +96,7 @@ CONFIG_EVENTFD=y | |||
94 | CONFIG_SHMEM=y | 96 | CONFIG_SHMEM=y |
95 | CONFIG_AIO=y | 97 | CONFIG_AIO=y |
96 | CONFIG_HAVE_PERF_EVENTS=y | 98 | CONFIG_HAVE_PERF_EVENTS=y |
99 | CONFIG_PERF_USE_VMALLOC=y | ||
97 | 100 | ||
98 | # | 101 | # |
99 | # Kernel Performance Events And Counters | 102 | # Kernel Performance Events And Counters |
@@ -111,6 +114,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
111 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
112 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
113 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 116 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
117 | CONFIG_HAVE_DMA_ATTRS=y | ||
114 | CONFIG_HAVE_CLK=y | 118 | CONFIG_HAVE_CLK=y |
115 | CONFIG_HAVE_DMA_API_DEBUG=y | 119 | CONFIG_HAVE_DMA_API_DEBUG=y |
116 | 120 | ||
@@ -136,14 +140,41 @@ CONFIG_LBDAF=y | |||
136 | # IO Schedulers | 140 | # IO Schedulers |
137 | # | 141 | # |
138 | CONFIG_IOSCHED_NOOP=y | 142 | CONFIG_IOSCHED_NOOP=y |
139 | CONFIG_IOSCHED_AS=y | ||
140 | # CONFIG_IOSCHED_DEADLINE is not set | 143 | # CONFIG_IOSCHED_DEADLINE is not set |
141 | # CONFIG_IOSCHED_CFQ is not set | 144 | # CONFIG_IOSCHED_CFQ is not set |
142 | CONFIG_DEFAULT_AS=y | ||
143 | # CONFIG_DEFAULT_DEADLINE is not set | 145 | # CONFIG_DEFAULT_DEADLINE is not set |
144 | # CONFIG_DEFAULT_CFQ is not set | 146 | # CONFIG_DEFAULT_CFQ is not set |
145 | # CONFIG_DEFAULT_NOOP is not set | 147 | CONFIG_DEFAULT_NOOP=y |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 148 | CONFIG_DEFAULT_IOSCHED="noop" |
149 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
150 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
151 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
152 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
153 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
155 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
158 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
159 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
160 | # CONFIG_INLINE_READ_LOCK is not set | ||
161 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
162 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
163 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
164 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
165 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
166 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
168 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
169 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
170 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
171 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
173 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
174 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
175 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
177 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
147 | # CONFIG_FREEZER is not set | 178 | # CONFIG_FREEZER is not set |
148 | 179 | ||
149 | # | 180 | # |
@@ -219,8 +250,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
219 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 250 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
220 | CONFIG_ZONE_DMA_FLAG=0 | 251 | CONFIG_ZONE_DMA_FLAG=0 |
221 | CONFIG_NR_QUICK=2 | 252 | CONFIG_NR_QUICK=2 |
222 | CONFIG_HAVE_MLOCK=y | ||
223 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
224 | # CONFIG_KSM is not set | 253 | # CONFIG_KSM is not set |
225 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 254 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
226 | 255 | ||
@@ -403,9 +432,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
403 | # CONFIG_AF_RXRPC is not set | 432 | # CONFIG_AF_RXRPC is not set |
404 | CONFIG_WIRELESS=y | 433 | CONFIG_WIRELESS=y |
405 | # CONFIG_CFG80211 is not set | 434 | # CONFIG_CFG80211 is not set |
406 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
407 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
408 | # CONFIG_WIRELESS_EXT is not set | ||
409 | # CONFIG_LIB80211 is not set | 435 | # CONFIG_LIB80211 is not set |
410 | 436 | ||
411 | # | 437 | # |
@@ -510,6 +536,10 @@ CONFIG_MTD_CFI_UTIL=y | |||
510 | CONFIG_BLK_DEV=y | 536 | CONFIG_BLK_DEV=y |
511 | # CONFIG_BLK_DEV_COW_COMMON is not set | 537 | # CONFIG_BLK_DEV_COW_COMMON is not set |
512 | # CONFIG_BLK_DEV_LOOP is not set | 538 | # CONFIG_BLK_DEV_LOOP is not set |
539 | |||
540 | # | ||
541 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
542 | # | ||
513 | # CONFIG_BLK_DEV_NBD is not set | 543 | # CONFIG_BLK_DEV_NBD is not set |
514 | CONFIG_BLK_DEV_RAM=y | 544 | CONFIG_BLK_DEV_RAM=y |
515 | CONFIG_BLK_DEV_RAM_COUNT=16 | 545 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -564,11 +594,11 @@ CONFIG_STNIC=y | |||
564 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 594 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
565 | # CONFIG_B44 is not set | 595 | # CONFIG_B44 is not set |
566 | # CONFIG_KS8842 is not set | 596 | # CONFIG_KS8842 is not set |
597 | # CONFIG_KS8851_MLL is not set | ||
567 | CONFIG_NETDEV_1000=y | 598 | CONFIG_NETDEV_1000=y |
568 | CONFIG_NETDEV_10000=y | 599 | CONFIG_NETDEV_10000=y |
569 | CONFIG_WLAN=y | 600 | CONFIG_WLAN=y |
570 | # CONFIG_WLAN_PRE80211 is not set | 601 | # CONFIG_HOSTAP is not set |
571 | # CONFIG_WLAN_80211 is not set | ||
572 | 602 | ||
573 | # | 603 | # |
574 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 604 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -598,6 +628,7 @@ CONFIG_SLHC=y | |||
598 | CONFIG_INPUT=y | 628 | CONFIG_INPUT=y |
599 | # CONFIG_INPUT_FF_MEMLESS is not set | 629 | # CONFIG_INPUT_FF_MEMLESS is not set |
600 | # CONFIG_INPUT_POLLDEV is not set | 630 | # CONFIG_INPUT_POLLDEV is not set |
631 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
601 | 632 | ||
602 | # | 633 | # |
603 | # Userland interfaces | 634 | # Userland interfaces |
@@ -625,6 +656,7 @@ CONFIG_SERIO=y | |||
625 | # CONFIG_SERIO_SERPORT is not set | 656 | # CONFIG_SERIO_SERPORT is not set |
626 | # CONFIG_SERIO_LIBPS2 is not set | 657 | # CONFIG_SERIO_LIBPS2 is not set |
627 | # CONFIG_SERIO_RAW is not set | 658 | # CONFIG_SERIO_RAW is not set |
659 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
628 | # CONFIG_GAMEPORT is not set | 660 | # CONFIG_GAMEPORT is not set |
629 | 661 | ||
630 | # | 662 | # |
@@ -696,6 +728,7 @@ CONFIG_SSB_POSSIBLE=y | |||
696 | # | 728 | # |
697 | # CONFIG_MFD_CORE is not set | 729 | # CONFIG_MFD_CORE is not set |
698 | # CONFIG_MFD_SM501 is not set | 730 | # CONFIG_MFD_SM501 is not set |
731 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
699 | # CONFIG_HTC_PASIC3 is not set | 732 | # CONFIG_HTC_PASIC3 is not set |
700 | # CONFIG_MFD_TMIO is not set | 733 | # CONFIG_MFD_TMIO is not set |
701 | # CONFIG_REGULATOR is not set | 734 | # CONFIG_REGULATOR is not set |
@@ -765,6 +798,7 @@ CONFIG_EXT2_FS=y | |||
765 | # CONFIG_EXT2_FS_XIP is not set | 798 | # CONFIG_EXT2_FS_XIP is not set |
766 | # CONFIG_EXT3_FS is not set | 799 | # CONFIG_EXT3_FS is not set |
767 | # CONFIG_EXT4_FS is not set | 800 | # CONFIG_EXT4_FS is not set |
801 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
768 | # CONFIG_REISERFS_FS is not set | 802 | # CONFIG_REISERFS_FS is not set |
769 | # CONFIG_JFS_FS is not set | 803 | # CONFIG_JFS_FS is not set |
770 | # CONFIG_FS_POSIX_ACL is not set | 804 | # CONFIG_FS_POSIX_ACL is not set |
@@ -809,7 +843,6 @@ CONFIG_PROC_SYSCTL=y | |||
809 | CONFIG_PROC_PAGE_MONITOR=y | 843 | CONFIG_PROC_PAGE_MONITOR=y |
810 | # CONFIG_SYSFS is not set | 844 | # CONFIG_SYSFS is not set |
811 | # CONFIG_TMPFS is not set | 845 | # CONFIG_TMPFS is not set |
812 | # CONFIG_HUGETLBFS is not set | ||
813 | # CONFIG_HUGETLB_PAGE is not set | 846 | # CONFIG_HUGETLB_PAGE is not set |
814 | CONFIG_MISC_FILESYSTEMS=y | 847 | CONFIG_MISC_FILESYSTEMS=y |
815 | # CONFIG_ADFS_FS is not set | 848 | # CONFIG_ADFS_FS is not set |
@@ -877,10 +910,11 @@ CONFIG_FRAME_WARN=1024 | |||
877 | # CONFIG_UNUSED_SYMBOLS is not set | 910 | # CONFIG_UNUSED_SYMBOLS is not set |
878 | # CONFIG_HEADERS_CHECK is not set | 911 | # CONFIG_HEADERS_CHECK is not set |
879 | # CONFIG_DEBUG_KERNEL is not set | 912 | # CONFIG_DEBUG_KERNEL is not set |
880 | # CONFIG_DEBUG_BUGVERBOSE is not set | 913 | CONFIG_DEBUG_BUGVERBOSE=y |
881 | # CONFIG_DEBUG_MEMORY_INIT is not set | 914 | # CONFIG_DEBUG_MEMORY_INIT is not set |
882 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 915 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
883 | # CONFIG_LATENCYTOP is not set | 916 | # CONFIG_LATENCYTOP is not set |
917 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
884 | CONFIG_HAVE_FUNCTION_TRACER=y | 918 | CONFIG_HAVE_FUNCTION_TRACER=y |
885 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 919 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
886 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 920 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -893,7 +927,6 @@ CONFIG_TRACING_SUPPORT=y | |||
893 | # CONFIG_SAMPLES is not set | 927 | # CONFIG_SAMPLES is not set |
894 | CONFIG_HAVE_ARCH_KGDB=y | 928 | CONFIG_HAVE_ARCH_KGDB=y |
895 | # CONFIG_SH_STANDARD_BIOS is not set | 929 | # CONFIG_SH_STANDARD_BIOS is not set |
896 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
897 | # CONFIG_DWARF_UNWINDER is not set | 930 | # CONFIG_DWARF_UNWINDER is not set |
898 | 931 | ||
899 | # | 932 | # |
@@ -901,7 +934,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
901 | # | 934 | # |
902 | # CONFIG_KEYS is not set | 935 | # CONFIG_KEYS is not set |
903 | # CONFIG_SECURITYFS is not set | 936 | # CONFIG_SECURITYFS is not set |
904 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 937 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
938 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
939 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
940 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
941 | CONFIG_DEFAULT_SECURITY="" | ||
905 | CONFIG_CRYPTO=y | 942 | CONFIG_CRYPTO=y |
906 | 943 | ||
907 | # | 944 | # |
diff --git a/arch/sh/configs/se7712_defconfig b/arch/sh/configs/se7712_defconfig index 1a43cfecb39..cfa58199a36 100644 --- a/arch/sh/configs/se7712_defconfig +++ b/arch/sh/configs/se7712_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:53:32 2009 | 4 | # Mon Jan 4 13:44:56 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -28,6 +28,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
30 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 30 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
31 | CONFIG_DMA_NONCOHERENT=y | ||
31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
32 | CONFIG_CONSTRUCTORS=y | 33 | CONFIG_CONSTRUCTORS=y |
33 | 34 | ||
@@ -60,6 +61,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
60 | # | 61 | # |
61 | CONFIG_TREE_RCU=y | 62 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 63 | # CONFIG_TREE_PREEMPT_RCU is not set |
64 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 65 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 66 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 67 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -95,6 +97,7 @@ CONFIG_EVENTFD=y | |||
95 | # CONFIG_SHMEM is not set | 97 | # CONFIG_SHMEM is not set |
96 | CONFIG_AIO=y | 98 | CONFIG_AIO=y |
97 | CONFIG_HAVE_PERF_EVENTS=y | 99 | CONFIG_HAVE_PERF_EVENTS=y |
100 | CONFIG_PERF_USE_VMALLOC=y | ||
98 | 101 | ||
99 | # | 102 | # |
100 | # Kernel Performance Events And Counters | 103 | # Kernel Performance Events And Counters |
@@ -113,6 +116,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
113 | CONFIG_HAVE_KPROBES=y | 116 | CONFIG_HAVE_KPROBES=y |
114 | CONFIG_HAVE_KRETPROBES=y | 117 | CONFIG_HAVE_KRETPROBES=y |
115 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 118 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
119 | CONFIG_HAVE_DMA_ATTRS=y | ||
116 | CONFIG_HAVE_CLK=y | 120 | CONFIG_HAVE_CLK=y |
117 | CONFIG_HAVE_DMA_API_DEBUG=y | 121 | CONFIG_HAVE_DMA_API_DEBUG=y |
118 | 122 | ||
@@ -138,14 +142,41 @@ CONFIG_LBDAF=y | |||
138 | # IO Schedulers | 142 | # IO Schedulers |
139 | # | 143 | # |
140 | CONFIG_IOSCHED_NOOP=y | 144 | CONFIG_IOSCHED_NOOP=y |
141 | # CONFIG_IOSCHED_AS is not set | ||
142 | # CONFIG_IOSCHED_DEADLINE is not set | 145 | # CONFIG_IOSCHED_DEADLINE is not set |
143 | # CONFIG_IOSCHED_CFQ is not set | 146 | # CONFIG_IOSCHED_CFQ is not set |
144 | # CONFIG_DEFAULT_AS is not set | ||
145 | # CONFIG_DEFAULT_DEADLINE is not set | 147 | # CONFIG_DEFAULT_DEADLINE is not set |
146 | # CONFIG_DEFAULT_CFQ is not set | 148 | # CONFIG_DEFAULT_CFQ is not set |
147 | CONFIG_DEFAULT_NOOP=y | 149 | CONFIG_DEFAULT_NOOP=y |
148 | CONFIG_DEFAULT_IOSCHED="noop" | 150 | CONFIG_DEFAULT_IOSCHED="noop" |
151 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
152 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
153 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
157 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
158 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
159 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
160 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
161 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
162 | # CONFIG_INLINE_READ_LOCK is not set | ||
163 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
166 | CONFIG_INLINE_READ_UNLOCK=y | ||
167 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
168 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
169 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
170 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
171 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
175 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
176 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
177 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
178 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
179 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
149 | # CONFIG_FREEZER is not set | 180 | # CONFIG_FREEZER is not set |
150 | 181 | ||
151 | # | 182 | # |
@@ -221,8 +252,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
221 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 252 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
222 | CONFIG_ZONE_DMA_FLAG=0 | 253 | CONFIG_ZONE_DMA_FLAG=0 |
223 | CONFIG_NR_QUICK=2 | 254 | CONFIG_NR_QUICK=2 |
224 | CONFIG_HAVE_MLOCK=y | ||
225 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
226 | # CONFIG_KSM is not set | 255 | # CONFIG_KSM is not set |
227 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 256 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
228 | 257 | ||
@@ -452,9 +481,6 @@ CONFIG_NET_SCH_FIFO=y | |||
452 | CONFIG_FIB_RULES=y | 481 | CONFIG_FIB_RULES=y |
453 | CONFIG_WIRELESS=y | 482 | CONFIG_WIRELESS=y |
454 | # CONFIG_CFG80211 is not set | 483 | # CONFIG_CFG80211 is not set |
455 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
456 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
457 | # CONFIG_WIRELESS_EXT is not set | ||
458 | # CONFIG_LIB80211 is not set | 484 | # CONFIG_LIB80211 is not set |
459 | 485 | ||
460 | # | 486 | # |
@@ -565,6 +591,10 @@ CONFIG_MTD_CFI_UTIL=y | |||
565 | CONFIG_BLK_DEV=y | 591 | CONFIG_BLK_DEV=y |
566 | # CONFIG_BLK_DEV_COW_COMMON is not set | 592 | # CONFIG_BLK_DEV_COW_COMMON is not set |
567 | # CONFIG_BLK_DEV_LOOP is not set | 593 | # CONFIG_BLK_DEV_LOOP is not set |
594 | |||
595 | # | ||
596 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
597 | # | ||
568 | # CONFIG_BLK_DEV_NBD is not set | 598 | # CONFIG_BLK_DEV_NBD is not set |
569 | # CONFIG_BLK_DEV_RAM is not set | 599 | # CONFIG_BLK_DEV_RAM is not set |
570 | # CONFIG_CDROM_PKTCDVD is not set | 600 | # CONFIG_CDROM_PKTCDVD is not set |
@@ -675,11 +705,11 @@ CONFIG_SH_ETH=y | |||
675 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 705 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
676 | # CONFIG_B44 is not set | 706 | # CONFIG_B44 is not set |
677 | # CONFIG_KS8842 is not set | 707 | # CONFIG_KS8842 is not set |
708 | # CONFIG_KS8851_MLL is not set | ||
678 | CONFIG_NETDEV_1000=y | 709 | CONFIG_NETDEV_1000=y |
679 | CONFIG_NETDEV_10000=y | 710 | CONFIG_NETDEV_10000=y |
680 | CONFIG_WLAN=y | 711 | CONFIG_WLAN=y |
681 | # CONFIG_WLAN_PRE80211 is not set | 712 | # CONFIG_HOSTAP is not set |
682 | # CONFIG_WLAN_80211 is not set | ||
683 | 713 | ||
684 | # | 714 | # |
685 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 715 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -757,6 +787,7 @@ CONFIG_SSB_POSSIBLE=y | |||
757 | # | 787 | # |
758 | # CONFIG_MFD_CORE is not set | 788 | # CONFIG_MFD_CORE is not set |
759 | # CONFIG_MFD_SM501 is not set | 789 | # CONFIG_MFD_SM501 is not set |
790 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
760 | # CONFIG_HTC_PASIC3 is not set | 791 | # CONFIG_HTC_PASIC3 is not set |
761 | # CONFIG_MFD_TMIO is not set | 792 | # CONFIG_MFD_TMIO is not set |
762 | # CONFIG_REGULATOR is not set | 793 | # CONFIG_REGULATOR is not set |
@@ -888,7 +919,6 @@ CONFIG_PROC_FS=y | |||
888 | CONFIG_PROC_SYSCTL=y | 919 | CONFIG_PROC_SYSCTL=y |
889 | CONFIG_PROC_PAGE_MONITOR=y | 920 | CONFIG_PROC_PAGE_MONITOR=y |
890 | CONFIG_SYSFS=y | 921 | CONFIG_SYSFS=y |
891 | # CONFIG_HUGETLBFS is not set | ||
892 | # CONFIG_HUGETLB_PAGE is not set | 922 | # CONFIG_HUGETLB_PAGE is not set |
893 | # CONFIG_CONFIGFS_FS is not set | 923 | # CONFIG_CONFIGFS_FS is not set |
894 | CONFIG_MISC_FILESYSTEMS=y | 924 | CONFIG_MISC_FILESYSTEMS=y |
@@ -1021,7 +1051,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1021 | CONFIG_HAVE_ARCH_KGDB=y | 1051 | CONFIG_HAVE_ARCH_KGDB=y |
1022 | # CONFIG_KGDB is not set | 1052 | # CONFIG_KGDB is not set |
1023 | # CONFIG_SH_STANDARD_BIOS is not set | 1053 | # CONFIG_SH_STANDARD_BIOS is not set |
1024 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1025 | # CONFIG_STACK_DEBUG is not set | 1054 | # CONFIG_STACK_DEBUG is not set |
1026 | # CONFIG_DEBUG_STACK_USAGE is not set | 1055 | # CONFIG_DEBUG_STACK_USAGE is not set |
1027 | # CONFIG_4KSTACKS is not set | 1056 | # CONFIG_4KSTACKS is not set |
@@ -1035,7 +1064,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1035 | # CONFIG_KEYS is not set | 1064 | # CONFIG_KEYS is not set |
1036 | # CONFIG_SECURITY is not set | 1065 | # CONFIG_SECURITY is not set |
1037 | # CONFIG_SECURITYFS is not set | 1066 | # CONFIG_SECURITYFS is not set |
1038 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1067 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1068 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1069 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1070 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1071 | CONFIG_DEFAULT_SECURITY="" | ||
1039 | CONFIG_CRYPTO=y | 1072 | CONFIG_CRYPTO=y |
1040 | 1073 | ||
1041 | # | 1074 | # |
diff --git a/arch/sh/configs/se7721_defconfig b/arch/sh/configs/se7721_defconfig index b8a3c8c4bac..201283c829a 100644 --- a/arch/sh/configs/se7721_defconfig +++ b/arch/sh/configs/se7721_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:57:11 2009 | 4 | # Mon Jan 4 13:46:58 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -29,6 +29,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
32 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 34 | CONFIG_CONSTRUCTORS=y |
34 | 35 | ||
@@ -61,6 +62,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
61 | # | 62 | # |
62 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -100,6 +102,7 @@ CONFIG_EVENTFD=y | |||
100 | # CONFIG_SHMEM is not set | 102 | # CONFIG_SHMEM is not set |
101 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
102 | CONFIG_HAVE_PERF_EVENTS=y | 104 | CONFIG_HAVE_PERF_EVENTS=y |
105 | CONFIG_PERF_USE_VMALLOC=y | ||
103 | 106 | ||
104 | # | 107 | # |
105 | # Kernel Performance Events And Counters | 108 | # Kernel Performance Events And Counters |
@@ -118,6 +121,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
118 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
119 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
120 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
121 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
122 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
123 | 127 | ||
@@ -143,14 +147,41 @@ CONFIG_LBDAF=y | |||
143 | # IO Schedulers | 147 | # IO Schedulers |
144 | # | 148 | # |
145 | CONFIG_IOSCHED_NOOP=y | 149 | CONFIG_IOSCHED_NOOP=y |
146 | # CONFIG_IOSCHED_AS is not set | ||
147 | # CONFIG_IOSCHED_DEADLINE is not set | 150 | # CONFIG_IOSCHED_DEADLINE is not set |
148 | # CONFIG_IOSCHED_CFQ is not set | 151 | # CONFIG_IOSCHED_CFQ is not set |
149 | # CONFIG_DEFAULT_AS is not set | ||
150 | # CONFIG_DEFAULT_DEADLINE is not set | 152 | # CONFIG_DEFAULT_DEADLINE is not set |
151 | # CONFIG_DEFAULT_CFQ is not set | 153 | # CONFIG_DEFAULT_CFQ is not set |
152 | CONFIG_DEFAULT_NOOP=y | 154 | CONFIG_DEFAULT_NOOP=y |
153 | CONFIG_DEFAULT_IOSCHED="noop" | 155 | CONFIG_DEFAULT_IOSCHED="noop" |
156 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
162 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
164 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
166 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
171 | CONFIG_INLINE_READ_UNLOCK=y | ||
172 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
173 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
175 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
180 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
182 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
184 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
154 | # CONFIG_FREEZER is not set | 185 | # CONFIG_FREEZER is not set |
155 | 186 | ||
156 | # | 187 | # |
@@ -226,8 +257,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
226 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 257 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
227 | CONFIG_ZONE_DMA_FLAG=0 | 258 | CONFIG_ZONE_DMA_FLAG=0 |
228 | CONFIG_NR_QUICK=2 | 259 | CONFIG_NR_QUICK=2 |
229 | CONFIG_HAVE_MLOCK=y | ||
230 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
231 | # CONFIG_KSM is not set | 260 | # CONFIG_KSM is not set |
232 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 261 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
233 | 262 | ||
@@ -457,9 +486,6 @@ CONFIG_NET_SCH_FIFO=y | |||
457 | CONFIG_FIB_RULES=y | 486 | CONFIG_FIB_RULES=y |
458 | CONFIG_WIRELESS=y | 487 | CONFIG_WIRELESS=y |
459 | # CONFIG_CFG80211 is not set | 488 | # CONFIG_CFG80211 is not set |
460 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
461 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
462 | # CONFIG_WIRELESS_EXT is not set | ||
463 | # CONFIG_LIB80211 is not set | 489 | # CONFIG_LIB80211 is not set |
464 | 490 | ||
465 | # | 491 | # |
@@ -570,6 +596,10 @@ CONFIG_MTD_CFI_UTIL=y | |||
570 | CONFIG_BLK_DEV=y | 596 | CONFIG_BLK_DEV=y |
571 | # CONFIG_BLK_DEV_COW_COMMON is not set | 597 | # CONFIG_BLK_DEV_COW_COMMON is not set |
572 | # CONFIG_BLK_DEV_LOOP is not set | 598 | # CONFIG_BLK_DEV_LOOP is not set |
599 | |||
600 | # | ||
601 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
602 | # | ||
573 | # CONFIG_BLK_DEV_NBD is not set | 603 | # CONFIG_BLK_DEV_NBD is not set |
574 | # CONFIG_BLK_DEV_UB is not set | 604 | # CONFIG_BLK_DEV_UB is not set |
575 | # CONFIG_BLK_DEV_RAM is not set | 605 | # CONFIG_BLK_DEV_RAM is not set |
@@ -642,8 +672,8 @@ CONFIG_NETDEVICES=y | |||
642 | CONFIG_NETDEV_1000=y | 672 | CONFIG_NETDEV_1000=y |
643 | CONFIG_NETDEV_10000=y | 673 | CONFIG_NETDEV_10000=y |
644 | CONFIG_WLAN=y | 674 | CONFIG_WLAN=y |
645 | # CONFIG_WLAN_PRE80211 is not set | 675 | # CONFIG_USB_ZD1201 is not set |
646 | # CONFIG_WLAN_80211 is not set | 676 | # CONFIG_HOSTAP is not set |
647 | 677 | ||
648 | # | 678 | # |
649 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 679 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -672,6 +702,7 @@ CONFIG_WLAN=y | |||
672 | CONFIG_INPUT=y | 702 | CONFIG_INPUT=y |
673 | CONFIG_INPUT_FF_MEMLESS=m | 703 | CONFIG_INPUT_FF_MEMLESS=m |
674 | # CONFIG_INPUT_POLLDEV is not set | 704 | # CONFIG_INPUT_POLLDEV is not set |
705 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
675 | 706 | ||
676 | # | 707 | # |
677 | # Userland interfaces | 708 | # Userland interfaces |
@@ -765,6 +796,7 @@ CONFIG_SSB_POSSIBLE=y | |||
765 | # | 796 | # |
766 | # CONFIG_MFD_CORE is not set | 797 | # CONFIG_MFD_CORE is not set |
767 | # CONFIG_MFD_SM501 is not set | 798 | # CONFIG_MFD_SM501 is not set |
799 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
768 | # CONFIG_HTC_PASIC3 is not set | 800 | # CONFIG_HTC_PASIC3 is not set |
769 | # CONFIG_MFD_TMIO is not set | 801 | # CONFIG_MFD_TMIO is not set |
770 | # CONFIG_REGULATOR is not set | 802 | # CONFIG_REGULATOR is not set |
@@ -1029,7 +1061,6 @@ CONFIG_PROC_FS=y | |||
1029 | CONFIG_PROC_SYSCTL=y | 1061 | CONFIG_PROC_SYSCTL=y |
1030 | CONFIG_PROC_PAGE_MONITOR=y | 1062 | CONFIG_PROC_PAGE_MONITOR=y |
1031 | CONFIG_SYSFS=y | 1063 | CONFIG_SYSFS=y |
1032 | # CONFIG_HUGETLBFS is not set | ||
1033 | # CONFIG_HUGETLB_PAGE is not set | 1064 | # CONFIG_HUGETLB_PAGE is not set |
1034 | # CONFIG_CONFIGFS_FS is not set | 1065 | # CONFIG_CONFIGFS_FS is not set |
1035 | CONFIG_MISC_FILESYSTEMS=y | 1066 | CONFIG_MISC_FILESYSTEMS=y |
@@ -1186,7 +1217,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1186 | CONFIG_HAVE_ARCH_KGDB=y | 1217 | CONFIG_HAVE_ARCH_KGDB=y |
1187 | # CONFIG_KGDB is not set | 1218 | # CONFIG_KGDB is not set |
1188 | # CONFIG_SH_STANDARD_BIOS is not set | 1219 | # CONFIG_SH_STANDARD_BIOS is not set |
1189 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1190 | # CONFIG_STACK_DEBUG is not set | 1220 | # CONFIG_STACK_DEBUG is not set |
1191 | # CONFIG_DEBUG_STACK_USAGE is not set | 1221 | # CONFIG_DEBUG_STACK_USAGE is not set |
1192 | # CONFIG_4KSTACKS is not set | 1222 | # CONFIG_4KSTACKS is not set |
@@ -1200,7 +1230,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1200 | # CONFIG_KEYS is not set | 1230 | # CONFIG_KEYS is not set |
1201 | # CONFIG_SECURITY is not set | 1231 | # CONFIG_SECURITY is not set |
1202 | # CONFIG_SECURITYFS is not set | 1232 | # CONFIG_SECURITYFS is not set |
1203 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1233 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1234 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1235 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1236 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1237 | CONFIG_DEFAULT_SECURITY="" | ||
1204 | CONFIG_CRYPTO=y | 1238 | CONFIG_CRYPTO=y |
1205 | 1239 | ||
1206 | # | 1240 | # |
diff --git a/arch/sh/configs/se7722_defconfig b/arch/sh/configs/se7722_defconfig index d709b7f35ac..4a4efd261d0 100644 --- a/arch/sh/configs/se7722_defconfig +++ b/arch/sh/configs/se7722_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:57:41 2009 | 4 | # Mon Jan 4 13:49:15 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
24 | CONFIG_SYS_SUPPORTS_CMT=y | 25 | CONFIG_SYS_SUPPORTS_CMT=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -63,6 +65,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
63 | # | 65 | # |
64 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 69 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +105,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 106 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 107 | CONFIG_HAVE_PERF_EVENTS=y |
108 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 109 | ||
106 | # | 110 | # |
107 | # Kernel Performance Events And Counters | 111 | # Kernel Performance Events And Counters |
@@ -122,6 +126,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
122 | CONFIG_HAVE_KPROBES=y | 126 | CONFIG_HAVE_KPROBES=y |
123 | CONFIG_HAVE_KRETPROBES=y | 127 | CONFIG_HAVE_KRETPROBES=y |
124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 128 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
129 | CONFIG_HAVE_DMA_ATTRS=y | ||
125 | CONFIG_HAVE_CLK=y | 130 | CONFIG_HAVE_CLK=y |
126 | CONFIG_HAVE_DMA_API_DEBUG=y | 131 | CONFIG_HAVE_DMA_API_DEBUG=y |
127 | 132 | ||
@@ -149,14 +154,41 @@ CONFIG_LBDAF=y | |||
149 | # IO Schedulers | 154 | # IO Schedulers |
150 | # | 155 | # |
151 | CONFIG_IOSCHED_NOOP=y | 156 | CONFIG_IOSCHED_NOOP=y |
152 | # CONFIG_IOSCHED_AS is not set | ||
153 | # CONFIG_IOSCHED_DEADLINE is not set | 157 | # CONFIG_IOSCHED_DEADLINE is not set |
154 | # CONFIG_IOSCHED_CFQ is not set | 158 | # CONFIG_IOSCHED_CFQ is not set |
155 | # CONFIG_DEFAULT_AS is not set | ||
156 | # CONFIG_DEFAULT_DEADLINE is not set | 159 | # CONFIG_DEFAULT_DEADLINE is not set |
157 | # CONFIG_DEFAULT_CFQ is not set | 160 | # CONFIG_DEFAULT_CFQ is not set |
158 | CONFIG_DEFAULT_NOOP=y | 161 | CONFIG_DEFAULT_NOOP=y |
159 | CONFIG_DEFAULT_IOSCHED="noop" | 162 | CONFIG_DEFAULT_IOSCHED="noop" |
163 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
164 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
165 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
168 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
169 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
170 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
172 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
173 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
174 | # CONFIG_INLINE_READ_LOCK is not set | ||
175 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
177 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
178 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
179 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
180 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
181 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
182 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
183 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
186 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
187 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
188 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
190 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
191 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
160 | CONFIG_FREEZER=y | 192 | CONFIG_FREEZER=y |
161 | 193 | ||
162 | # | 194 | # |
@@ -248,8 +280,6 @@ CONFIG_MIGRATION=y | |||
248 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 280 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
249 | CONFIG_ZONE_DMA_FLAG=0 | 281 | CONFIG_ZONE_DMA_FLAG=0 |
250 | CONFIG_NR_QUICK=2 | 282 | CONFIG_NR_QUICK=2 |
251 | CONFIG_HAVE_MLOCK=y | ||
252 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
253 | # CONFIG_KSM is not set | 283 | # CONFIG_KSM is not set |
254 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 284 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
255 | 285 | ||
@@ -284,7 +314,6 @@ CONFIG_SH_7722_SOLUTION_ENGINE=y | |||
284 | # | 314 | # |
285 | CONFIG_SH_TIMER_TMU=y | 315 | CONFIG_SH_TIMER_TMU=y |
286 | # CONFIG_SH_TIMER_CMT is not set | 316 | # CONFIG_SH_TIMER_CMT is not set |
287 | CONFIG_SH_PCLK_FREQ=33333333 | ||
288 | CONFIG_SH_CLK_CPG=y | 317 | CONFIG_SH_CLK_CPG=y |
289 | CONFIG_TICK_ONESHOT=y | 318 | CONFIG_TICK_ONESHOT=y |
290 | CONFIG_NO_HZ=y | 319 | CONFIG_NO_HZ=y |
@@ -436,9 +465,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
436 | # CONFIG_AF_RXRPC is not set | 465 | # CONFIG_AF_RXRPC is not set |
437 | CONFIG_WIRELESS=y | 466 | CONFIG_WIRELESS=y |
438 | # CONFIG_CFG80211 is not set | 467 | # CONFIG_CFG80211 is not set |
439 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
440 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
441 | # CONFIG_WIRELESS_EXT is not set | ||
442 | # CONFIG_LIB80211 is not set | 468 | # CONFIG_LIB80211 is not set |
443 | 469 | ||
444 | # | 470 | # |
@@ -467,6 +493,10 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
467 | CONFIG_BLK_DEV=y | 493 | CONFIG_BLK_DEV=y |
468 | # CONFIG_BLK_DEV_COW_COMMON is not set | 494 | # CONFIG_BLK_DEV_COW_COMMON is not set |
469 | # CONFIG_BLK_DEV_LOOP is not set | 495 | # CONFIG_BLK_DEV_LOOP is not set |
496 | |||
497 | # | ||
498 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
499 | # | ||
470 | # CONFIG_BLK_DEV_NBD is not set | 500 | # CONFIG_BLK_DEV_NBD is not set |
471 | CONFIG_BLK_DEV_RAM=y | 501 | CONFIG_BLK_DEV_RAM=y |
472 | CONFIG_BLK_DEV_RAM_COUNT=16 | 502 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -560,11 +590,11 @@ CONFIG_SMC91X=y | |||
560 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 590 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
561 | # CONFIG_B44 is not set | 591 | # CONFIG_B44 is not set |
562 | # CONFIG_KS8842 is not set | 592 | # CONFIG_KS8842 is not set |
593 | # CONFIG_KS8851_MLL is not set | ||
563 | CONFIG_NETDEV_1000=y | 594 | CONFIG_NETDEV_1000=y |
564 | CONFIG_NETDEV_10000=y | 595 | CONFIG_NETDEV_10000=y |
565 | CONFIG_WLAN=y | 596 | CONFIG_WLAN=y |
566 | # CONFIG_WLAN_PRE80211 is not set | 597 | # CONFIG_HOSTAP is not set |
567 | # CONFIG_WLAN_80211 is not set | ||
568 | 598 | ||
569 | # | 599 | # |
570 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 600 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -584,6 +614,7 @@ CONFIG_WLAN=y | |||
584 | CONFIG_INPUT=y | 614 | CONFIG_INPUT=y |
585 | # CONFIG_INPUT_FF_MEMLESS is not set | 615 | # CONFIG_INPUT_FF_MEMLESS is not set |
586 | # CONFIG_INPUT_POLLDEV is not set | 616 | # CONFIG_INPUT_POLLDEV is not set |
617 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
587 | 618 | ||
588 | # | 619 | # |
589 | # Userland interfaces | 620 | # Userland interfaces |
@@ -622,6 +653,7 @@ CONFIG_SERIO=y | |||
622 | # CONFIG_SERIO_SERPORT is not set | 653 | # CONFIG_SERIO_SERPORT is not set |
623 | CONFIG_SERIO_LIBPS2=y | 654 | CONFIG_SERIO_LIBPS2=y |
624 | # CONFIG_SERIO_RAW is not set | 655 | # CONFIG_SERIO_RAW is not set |
656 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
625 | # CONFIG_GAMEPORT is not set | 657 | # CONFIG_GAMEPORT is not set |
626 | 658 | ||
627 | # | 659 | # |
@@ -694,6 +726,7 @@ CONFIG_SSB_POSSIBLE=y | |||
694 | # | 726 | # |
695 | # CONFIG_MFD_CORE is not set | 727 | # CONFIG_MFD_CORE is not set |
696 | # CONFIG_MFD_SM501 is not set | 728 | # CONFIG_MFD_SM501 is not set |
729 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
697 | # CONFIG_HTC_PASIC3 is not set | 730 | # CONFIG_HTC_PASIC3 is not set |
698 | # CONFIG_MFD_TMIO is not set | 731 | # CONFIG_MFD_TMIO is not set |
699 | # CONFIG_REGULATOR is not set | 732 | # CONFIG_REGULATOR is not set |
@@ -774,7 +807,9 @@ CONFIG_RTC_INTF_DEV=y | |||
774 | # CONFIG_RTC_DRV_M48T86 is not set | 807 | # CONFIG_RTC_DRV_M48T86 is not set |
775 | # CONFIG_RTC_DRV_M48T35 is not set | 808 | # CONFIG_RTC_DRV_M48T35 is not set |
776 | # CONFIG_RTC_DRV_M48T59 is not set | 809 | # CONFIG_RTC_DRV_M48T59 is not set |
810 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
777 | # CONFIG_RTC_DRV_BQ4802 is not set | 811 | # CONFIG_RTC_DRV_BQ4802 is not set |
812 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
778 | # CONFIG_RTC_DRV_V3020 is not set | 813 | # CONFIG_RTC_DRV_V3020 is not set |
779 | 814 | ||
780 | # | 815 | # |
@@ -906,7 +941,7 @@ CONFIG_DEBUG_FS=y | |||
906 | # CONFIG_DEBUG_KERNEL is not set | 941 | # CONFIG_DEBUG_KERNEL is not set |
907 | # CONFIG_SLUB_DEBUG_ON is not set | 942 | # CONFIG_SLUB_DEBUG_ON is not set |
908 | # CONFIG_SLUB_STATS is not set | 943 | # CONFIG_SLUB_STATS is not set |
909 | # CONFIG_DEBUG_BUGVERBOSE is not set | 944 | CONFIG_DEBUG_BUGVERBOSE=y |
910 | # CONFIG_DEBUG_MEMORY_INIT is not set | 945 | # CONFIG_DEBUG_MEMORY_INIT is not set |
911 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 946 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
912 | # CONFIG_LATENCYTOP is not set | 947 | # CONFIG_LATENCYTOP is not set |
@@ -924,8 +959,6 @@ CONFIG_TRACING_SUPPORT=y | |||
924 | # CONFIG_SAMPLES is not set | 959 | # CONFIG_SAMPLES is not set |
925 | CONFIG_HAVE_ARCH_KGDB=y | 960 | CONFIG_HAVE_ARCH_KGDB=y |
926 | CONFIG_SH_STANDARD_BIOS=y | 961 | CONFIG_SH_STANDARD_BIOS=y |
927 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
928 | # CONFIG_EARLY_PRINTK is not set | ||
929 | # CONFIG_DWARF_UNWINDER is not set | 962 | # CONFIG_DWARF_UNWINDER is not set |
930 | 963 | ||
931 | # | 964 | # |
@@ -934,7 +967,11 @@ CONFIG_SH_STANDARD_BIOS=y | |||
934 | # CONFIG_KEYS is not set | 967 | # CONFIG_KEYS is not set |
935 | # CONFIG_SECURITY is not set | 968 | # CONFIG_SECURITY is not set |
936 | # CONFIG_SECURITYFS is not set | 969 | # CONFIG_SECURITYFS is not set |
937 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 970 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
971 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
972 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
973 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
974 | CONFIG_DEFAULT_SECURITY="" | ||
938 | CONFIG_CRYPTO=y | 975 | CONFIG_CRYPTO=y |
939 | 976 | ||
940 | # | 977 | # |
diff --git a/arch/sh/configs/se7724_defconfig b/arch/sh/configs/se7724_defconfig index 56b0b9ff9e0..ab371afe359 100644 --- a/arch/sh/configs/se7724_defconfig +++ b/arch/sh/configs/se7724_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Fri Sep 25 11:50:59 2009 | 4 | # Mon Jan 4 14:36:56 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -62,6 +64,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
62 | # | 64 | # |
63 | CONFIG_TREE_RCU=y | 65 | CONFIG_TREE_RCU=y |
64 | # CONFIG_TREE_PREEMPT_RCU is not set | 66 | # CONFIG_TREE_PREEMPT_RCU is not set |
67 | # CONFIG_TINY_RCU is not set | ||
65 | # CONFIG_RCU_TRACE is not set | 68 | # CONFIG_RCU_TRACE is not set |
66 | CONFIG_RCU_FANOUT=32 | 69 | CONFIG_RCU_FANOUT=32 |
67 | # CONFIG_RCU_FANOUT_EXACT is not set | 70 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -99,6 +102,7 @@ CONFIG_EVENTFD=y | |||
99 | CONFIG_SHMEM=y | 102 | CONFIG_SHMEM=y |
100 | CONFIG_AIO=y | 103 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | 104 | CONFIG_HAVE_PERF_EVENTS=y |
105 | CONFIG_PERF_USE_VMALLOC=y | ||
102 | 106 | ||
103 | # | 107 | # |
104 | # Kernel Performance Events And Counters | 108 | # Kernel Performance Events And Counters |
@@ -116,6 +120,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
116 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
117 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
123 | CONFIG_HAVE_DMA_ATTRS=y | ||
119 | CONFIG_HAVE_CLK=y | 124 | CONFIG_HAVE_CLK=y |
120 | CONFIG_HAVE_DMA_API_DEBUG=y | 125 | CONFIG_HAVE_DMA_API_DEBUG=y |
121 | 126 | ||
@@ -142,14 +147,41 @@ CONFIG_LBDAF=y | |||
142 | # IO Schedulers | 147 | # IO Schedulers |
143 | # | 148 | # |
144 | CONFIG_IOSCHED_NOOP=y | 149 | CONFIG_IOSCHED_NOOP=y |
145 | CONFIG_IOSCHED_AS=y | ||
146 | CONFIG_IOSCHED_DEADLINE=y | 150 | CONFIG_IOSCHED_DEADLINE=y |
147 | CONFIG_IOSCHED_CFQ=y | 151 | CONFIG_IOSCHED_CFQ=y |
148 | # CONFIG_DEFAULT_AS is not set | ||
149 | # CONFIG_DEFAULT_DEADLINE is not set | 152 | # CONFIG_DEFAULT_DEADLINE is not set |
150 | CONFIG_DEFAULT_CFQ=y | 153 | CONFIG_DEFAULT_CFQ=y |
151 | # CONFIG_DEFAULT_NOOP is not set | 154 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="cfq" | 155 | CONFIG_DEFAULT_IOSCHED="cfq" |
156 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
161 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
165 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
166 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
171 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
172 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
173 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
174 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
175 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
183 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
184 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
153 | CONFIG_FREEZER=y | 185 | CONFIG_FREEZER=y |
154 | 186 | ||
155 | # | 187 | # |
@@ -205,6 +237,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
205 | CONFIG_MEMORY_START=0x08000000 | 237 | CONFIG_MEMORY_START=0x08000000 |
206 | CONFIG_MEMORY_SIZE=0x08000000 | 238 | CONFIG_MEMORY_SIZE=0x08000000 |
207 | CONFIG_29BIT=y | 239 | CONFIG_29BIT=y |
240 | # CONFIG_PMB_ENABLE is not set | ||
208 | # CONFIG_X2TLB is not set | 241 | # CONFIG_X2TLB is not set |
209 | CONFIG_VSYSCALL=y | 242 | CONFIG_VSYSCALL=y |
210 | CONFIG_ARCH_FLATMEM_ENABLE=y | 243 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -229,8 +262,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 262 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=0 | 263 | CONFIG_ZONE_DMA_FLAG=0 |
231 | CONFIG_NR_QUICK=2 | 264 | CONFIG_NR_QUICK=2 |
232 | CONFIG_HAVE_MLOCK=y | ||
233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
234 | # CONFIG_KSM is not set | 265 | # CONFIG_KSM is not set |
235 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 266 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
236 | 267 | ||
@@ -265,7 +296,6 @@ CONFIG_SH_7724_SOLUTION_ENGINE=y | |||
265 | # | 296 | # |
266 | CONFIG_SH_TIMER_TMU=y | 297 | CONFIG_SH_TIMER_TMU=y |
267 | # CONFIG_SH_TIMER_CMT is not set | 298 | # CONFIG_SH_TIMER_CMT is not set |
268 | CONFIG_SH_PCLK_FREQ=33333333 | ||
269 | CONFIG_SH_CLK_CPG=y | 299 | CONFIG_SH_CLK_CPG=y |
270 | # CONFIG_NO_HZ is not set | 300 | # CONFIG_NO_HZ is not set |
271 | # CONFIG_HIGH_RES_TIMERS is not set | 301 | # CONFIG_HIGH_RES_TIMERS is not set |
@@ -279,8 +309,8 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
279 | # | 309 | # |
280 | # DMA support | 310 | # DMA support |
281 | # | 311 | # |
282 | CONFIG_SH_DMA_API=y | ||
283 | CONFIG_SH_DMA=y | 312 | CONFIG_SH_DMA=y |
313 | CONFIG_SH_DMA_API=y | ||
284 | CONFIG_NR_ONCHIP_DMA_CHANNELS=12 | 314 | CONFIG_NR_ONCHIP_DMA_CHANNELS=12 |
285 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 315 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
286 | 316 | ||
@@ -423,9 +453,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
423 | # CONFIG_AF_RXRPC is not set | 453 | # CONFIG_AF_RXRPC is not set |
424 | CONFIG_WIRELESS=y | 454 | CONFIG_WIRELESS=y |
425 | # CONFIG_CFG80211 is not set | 455 | # CONFIG_CFG80211 is not set |
426 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
427 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
428 | # CONFIG_WIRELESS_EXT is not set | ||
429 | # CONFIG_LIB80211 is not set | 456 | # CONFIG_LIB80211 is not set |
430 | 457 | ||
431 | # | 458 | # |
@@ -555,6 +582,10 @@ CONFIG_MTD_UBI_BEB_RESERVE=1 | |||
555 | CONFIG_BLK_DEV=y | 582 | CONFIG_BLK_DEV=y |
556 | # CONFIG_BLK_DEV_COW_COMMON is not set | 583 | # CONFIG_BLK_DEV_COW_COMMON is not set |
557 | # CONFIG_BLK_DEV_LOOP is not set | 584 | # CONFIG_BLK_DEV_LOOP is not set |
585 | |||
586 | # | ||
587 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
588 | # | ||
558 | # CONFIG_BLK_DEV_NBD is not set | 589 | # CONFIG_BLK_DEV_NBD is not set |
559 | # CONFIG_BLK_DEV_UB is not set | 590 | # CONFIG_BLK_DEV_UB is not set |
560 | CONFIG_BLK_DEV_RAM=y | 591 | CONFIG_BLK_DEV_RAM=y |
@@ -565,9 +596,12 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
565 | # CONFIG_ATA_OVER_ETH is not set | 596 | # CONFIG_ATA_OVER_ETH is not set |
566 | # CONFIG_BLK_DEV_HD is not set | 597 | # CONFIG_BLK_DEV_HD is not set |
567 | CONFIG_MISC_DEVICES=y | 598 | CONFIG_MISC_DEVICES=y |
599 | # CONFIG_AD525X_DPOT is not set | ||
568 | # CONFIG_ICS932S401 is not set | 600 | # CONFIG_ICS932S401 is not set |
569 | # CONFIG_ENCLOSURE_SERVICES is not set | 601 | # CONFIG_ENCLOSURE_SERVICES is not set |
570 | # CONFIG_ISL29003 is not set | 602 | # CONFIG_ISL29003 is not set |
603 | # CONFIG_DS1682 is not set | ||
604 | # CONFIG_TI_DAC7512 is not set | ||
571 | # CONFIG_C2PORT is not set | 605 | # CONFIG_C2PORT is not set |
572 | 606 | ||
573 | # | 607 | # |
@@ -578,6 +612,7 @@ CONFIG_MISC_DEVICES=y | |||
578 | # CONFIG_EEPROM_LEGACY is not set | 612 | # CONFIG_EEPROM_LEGACY is not set |
579 | # CONFIG_EEPROM_MAX6875 is not set | 613 | # CONFIG_EEPROM_MAX6875 is not set |
580 | # CONFIG_EEPROM_93CX6 is not set | 614 | # CONFIG_EEPROM_93CX6 is not set |
615 | # CONFIG_IWMC3200TOP is not set | ||
581 | CONFIG_HAVE_IDE=y | 616 | CONFIG_HAVE_IDE=y |
582 | # CONFIG_IDE is not set | 617 | # CONFIG_IDE is not set |
583 | 618 | ||
@@ -672,11 +707,12 @@ CONFIG_SMC91X=y | |||
672 | # CONFIG_B44 is not set | 707 | # CONFIG_B44 is not set |
673 | # CONFIG_KS8842 is not set | 708 | # CONFIG_KS8842 is not set |
674 | # CONFIG_KS8851 is not set | 709 | # CONFIG_KS8851 is not set |
710 | # CONFIG_KS8851_MLL is not set | ||
675 | # CONFIG_NETDEV_1000 is not set | 711 | # CONFIG_NETDEV_1000 is not set |
676 | # CONFIG_NETDEV_10000 is not set | 712 | # CONFIG_NETDEV_10000 is not set |
677 | CONFIG_WLAN=y | 713 | CONFIG_WLAN=y |
678 | # CONFIG_WLAN_PRE80211 is not set | 714 | # CONFIG_USB_ZD1201 is not set |
679 | # CONFIG_WLAN_80211 is not set | 715 | # CONFIG_HOSTAP is not set |
680 | 716 | ||
681 | # | 717 | # |
682 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 718 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -705,6 +741,7 @@ CONFIG_WLAN=y | |||
705 | CONFIG_INPUT=y | 741 | CONFIG_INPUT=y |
706 | # CONFIG_INPUT_FF_MEMLESS is not set | 742 | # CONFIG_INPUT_FF_MEMLESS is not set |
707 | # CONFIG_INPUT_POLLDEV is not set | 743 | # CONFIG_INPUT_POLLDEV is not set |
744 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
708 | 745 | ||
709 | # | 746 | # |
710 | # Userland interfaces | 747 | # Userland interfaces |
@@ -813,7 +850,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
813 | # | 850 | # |
814 | # Miscellaneous I2C Chip support | 851 | # Miscellaneous I2C Chip support |
815 | # | 852 | # |
816 | # CONFIG_DS1682 is not set | ||
817 | # CONFIG_SENSORS_TSL2550 is not set | 853 | # CONFIG_SENSORS_TSL2550 is not set |
818 | # CONFIG_I2C_DEBUG_CORE is not set | 854 | # CONFIG_I2C_DEBUG_CORE is not set |
819 | # CONFIG_I2C_DEBUG_ALGO is not set | 855 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -827,7 +863,10 @@ CONFIG_SPI_MASTER=y | |||
827 | # | 863 | # |
828 | CONFIG_SPI_BITBANG=y | 864 | CONFIG_SPI_BITBANG=y |
829 | # CONFIG_SPI_GPIO is not set | 865 | # CONFIG_SPI_GPIO is not set |
866 | # CONFIG_SPI_SH_MSIOF is not set | ||
830 | # CONFIG_SPI_SH_SCI is not set | 867 | # CONFIG_SPI_SH_SCI is not set |
868 | # CONFIG_SPI_XILINX is not set | ||
869 | # CONFIG_SPI_DESIGNWARE is not set | ||
831 | 870 | ||
832 | # | 871 | # |
833 | # SPI Protocol Masters | 872 | # SPI Protocol Masters |
@@ -885,11 +924,13 @@ CONFIG_SSB_POSSIBLE=y | |||
885 | # | 924 | # |
886 | # CONFIG_MFD_CORE is not set | 925 | # CONFIG_MFD_CORE is not set |
887 | # CONFIG_MFD_SM501 is not set | 926 | # CONFIG_MFD_SM501 is not set |
927 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
888 | # CONFIG_HTC_PASIC3 is not set | 928 | # CONFIG_HTC_PASIC3 is not set |
889 | # CONFIG_TPS65010 is not set | 929 | # CONFIG_TPS65010 is not set |
890 | # CONFIG_TWL4030_CORE is not set | 930 | # CONFIG_TWL4030_CORE is not set |
891 | # CONFIG_MFD_TMIO is not set | 931 | # CONFIG_MFD_TMIO is not set |
892 | # CONFIG_PMIC_DA903X is not set | 932 | # CONFIG_PMIC_DA903X is not set |
933 | # CONFIG_PMIC_ADP5520 is not set | ||
893 | # CONFIG_MFD_WM8400 is not set | 934 | # CONFIG_MFD_WM8400 is not set |
894 | # CONFIG_MFD_WM831X is not set | 935 | # CONFIG_MFD_WM831X is not set |
895 | # CONFIG_MFD_WM8350_I2C is not set | 936 | # CONFIG_MFD_WM8350_I2C is not set |
@@ -897,6 +938,8 @@ CONFIG_SSB_POSSIBLE=y | |||
897 | # CONFIG_MFD_MC13783 is not set | 938 | # CONFIG_MFD_MC13783 is not set |
898 | # CONFIG_AB3100_CORE is not set | 939 | # CONFIG_AB3100_CORE is not set |
899 | # CONFIG_EZX_PCAP is not set | 940 | # CONFIG_EZX_PCAP is not set |
941 | # CONFIG_MFD_88PM8607 is not set | ||
942 | # CONFIG_AB4500_CORE is not set | ||
900 | # CONFIG_REGULATOR is not set | 943 | # CONFIG_REGULATOR is not set |
901 | CONFIG_MEDIA_SUPPORT=y | 944 | CONFIG_MEDIA_SUPPORT=y |
902 | 945 | ||
@@ -913,6 +956,8 @@ CONFIG_VIDEO_MEDIA=m | |||
913 | # | 956 | # |
914 | # Multimedia drivers | 957 | # Multimedia drivers |
915 | # | 958 | # |
959 | CONFIG_IR_CORE=y | ||
960 | CONFIG_VIDEO_IR=y | ||
916 | # CONFIG_MEDIA_ATTACH is not set | 961 | # CONFIG_MEDIA_ATTACH is not set |
917 | CONFIG_MEDIA_TUNER=m | 962 | CONFIG_MEDIA_TUNER=m |
918 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set | 963 | # CONFIG_MEDIA_TUNER_CUSTOMISE is not set |
@@ -932,6 +977,7 @@ CONFIG_VIDEO_CAPTURE_DRIVERS=y | |||
932 | # CONFIG_VIDEO_ADV_DEBUG is not set | 977 | # CONFIG_VIDEO_ADV_DEBUG is not set |
933 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set | 978 | # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set |
934 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y | 979 | CONFIG_VIDEO_HELPER_CHIPS_AUTO=y |
980 | CONFIG_VIDEO_IR_I2C=y | ||
935 | # CONFIG_VIDEO_VIVI is not set | 981 | # CONFIG_VIDEO_VIVI is not set |
936 | # CONFIG_VIDEO_SAA5246A is not set | 982 | # CONFIG_VIDEO_SAA5246A is not set |
937 | # CONFIG_VIDEO_SAA5249 is not set | 983 | # CONFIG_VIDEO_SAA5249 is not set |
@@ -940,10 +986,13 @@ CONFIG_SOC_CAMERA=y | |||
940 | # CONFIG_SOC_CAMERA_MT9M001 is not set | 986 | # CONFIG_SOC_CAMERA_MT9M001 is not set |
941 | # CONFIG_SOC_CAMERA_MT9M111 is not set | 987 | # CONFIG_SOC_CAMERA_MT9M111 is not set |
942 | # CONFIG_SOC_CAMERA_MT9T031 is not set | 988 | # CONFIG_SOC_CAMERA_MT9T031 is not set |
989 | # CONFIG_SOC_CAMERA_MT9T112 is not set | ||
943 | # CONFIG_SOC_CAMERA_MT9V022 is not set | 990 | # CONFIG_SOC_CAMERA_MT9V022 is not set |
991 | # CONFIG_SOC_CAMERA_RJ54N1 is not set | ||
944 | # CONFIG_SOC_CAMERA_TW9910 is not set | 992 | # CONFIG_SOC_CAMERA_TW9910 is not set |
945 | # CONFIG_SOC_CAMERA_PLATFORM is not set | 993 | # CONFIG_SOC_CAMERA_PLATFORM is not set |
946 | CONFIG_SOC_CAMERA_OV772X=y | 994 | CONFIG_SOC_CAMERA_OV772X=y |
995 | # CONFIG_SOC_CAMERA_OV9640 is not set | ||
947 | CONFIG_VIDEO_SH_MOBILE_CEU=y | 996 | CONFIG_VIDEO_SH_MOBILE_CEU=y |
948 | CONFIG_V4L_USB_DRIVERS=y | 997 | CONFIG_V4L_USB_DRIVERS=y |
949 | # CONFIG_USB_VIDEO_CLASS is not set | 998 | # CONFIG_USB_VIDEO_CLASS is not set |
@@ -961,6 +1010,7 @@ CONFIG_USB_GSPCA=m | |||
961 | # CONFIG_USB_GSPCA_OV519 is not set | 1010 | # CONFIG_USB_GSPCA_OV519 is not set |
962 | # CONFIG_USB_GSPCA_OV534 is not set | 1011 | # CONFIG_USB_GSPCA_OV534 is not set |
963 | # CONFIG_USB_GSPCA_PAC207 is not set | 1012 | # CONFIG_USB_GSPCA_PAC207 is not set |
1013 | # CONFIG_USB_GSPCA_PAC7302 is not set | ||
964 | # CONFIG_USB_GSPCA_PAC7311 is not set | 1014 | # CONFIG_USB_GSPCA_PAC7311 is not set |
965 | # CONFIG_USB_GSPCA_SN9C20X is not set | 1015 | # CONFIG_USB_GSPCA_SN9C20X is not set |
966 | # CONFIG_USB_GSPCA_SONIXB is not set | 1016 | # CONFIG_USB_GSPCA_SONIXB is not set |
@@ -974,6 +1024,7 @@ CONFIG_USB_GSPCA=m | |||
974 | # CONFIG_USB_GSPCA_SQ905 is not set | 1024 | # CONFIG_USB_GSPCA_SQ905 is not set |
975 | # CONFIG_USB_GSPCA_SQ905C is not set | 1025 | # CONFIG_USB_GSPCA_SQ905C is not set |
976 | # CONFIG_USB_GSPCA_STK014 is not set | 1026 | # CONFIG_USB_GSPCA_STK014 is not set |
1027 | # CONFIG_USB_GSPCA_STV0680 is not set | ||
977 | # CONFIG_USB_GSPCA_SUNPLUS is not set | 1028 | # CONFIG_USB_GSPCA_SUNPLUS is not set |
978 | # CONFIG_USB_GSPCA_T613 is not set | 1029 | # CONFIG_USB_GSPCA_T613 is not set |
979 | # CONFIG_USB_GSPCA_TV8532 is not set | 1030 | # CONFIG_USB_GSPCA_TV8532 is not set |
@@ -1110,9 +1161,11 @@ CONFIG_SND_SOC_WM_HUBS=m | |||
1110 | CONFIG_SND_SOC_AD1836=m | 1161 | CONFIG_SND_SOC_AD1836=m |
1111 | CONFIG_SND_SOC_AD1938=m | 1162 | CONFIG_SND_SOC_AD1938=m |
1112 | CONFIG_SND_SOC_AD73311=m | 1163 | CONFIG_SND_SOC_AD73311=m |
1164 | CONFIG_SND_SOC_ADS117X=m | ||
1113 | CONFIG_SND_SOC_AK4104=m | 1165 | CONFIG_SND_SOC_AK4104=m |
1114 | CONFIG_SND_SOC_AK4535=m | 1166 | CONFIG_SND_SOC_AK4535=m |
1115 | CONFIG_SND_SOC_AK4642=m | 1167 | CONFIG_SND_SOC_AK4642=m |
1168 | CONFIG_SND_SOC_AK4671=m | ||
1116 | CONFIG_SND_SOC_CS4270=m | 1169 | CONFIG_SND_SOC_CS4270=m |
1117 | CONFIG_SND_SOC_L3=m | 1170 | CONFIG_SND_SOC_L3=m |
1118 | CONFIG_SND_SOC_PCM3008=m | 1171 | CONFIG_SND_SOC_PCM3008=m |
@@ -1121,11 +1174,14 @@ CONFIG_SND_SOC_SSM2602=m | |||
1121 | CONFIG_SND_SOC_TLV320AIC23=m | 1174 | CONFIG_SND_SOC_TLV320AIC23=m |
1122 | CONFIG_SND_SOC_TLV320AIC26=m | 1175 | CONFIG_SND_SOC_TLV320AIC26=m |
1123 | CONFIG_SND_SOC_TLV320AIC3X=m | 1176 | CONFIG_SND_SOC_TLV320AIC3X=m |
1177 | CONFIG_SND_SOC_TLV320DAC33=m | ||
1124 | CONFIG_SND_SOC_UDA134X=m | 1178 | CONFIG_SND_SOC_UDA134X=m |
1125 | CONFIG_SND_SOC_UDA1380=m | 1179 | CONFIG_SND_SOC_UDA1380=m |
1126 | CONFIG_SND_SOC_WM8510=m | 1180 | CONFIG_SND_SOC_WM8510=m |
1127 | CONFIG_SND_SOC_WM8523=m | 1181 | CONFIG_SND_SOC_WM8523=m |
1128 | CONFIG_SND_SOC_WM8580=m | 1182 | CONFIG_SND_SOC_WM8580=m |
1183 | CONFIG_SND_SOC_WM8711=m | ||
1184 | CONFIG_SND_SOC_WM8727=m | ||
1129 | CONFIG_SND_SOC_WM8728=m | 1185 | CONFIG_SND_SOC_WM8728=m |
1130 | CONFIG_SND_SOC_WM8731=m | 1186 | CONFIG_SND_SOC_WM8731=m |
1131 | CONFIG_SND_SOC_WM8750=m | 1187 | CONFIG_SND_SOC_WM8750=m |
@@ -1143,6 +1199,7 @@ CONFIG_SND_SOC_WM8990=m | |||
1143 | CONFIG_SND_SOC_WM8993=m | 1199 | CONFIG_SND_SOC_WM8993=m |
1144 | CONFIG_SND_SOC_WM9081=m | 1200 | CONFIG_SND_SOC_WM9081=m |
1145 | CONFIG_SND_SOC_MAX9877=m | 1201 | CONFIG_SND_SOC_MAX9877=m |
1202 | CONFIG_SND_SOC_TPA6130A2=m | ||
1146 | # CONFIG_SOUND_PRIME is not set | 1203 | # CONFIG_SOUND_PRIME is not set |
1147 | CONFIG_HID_SUPPORT=y | 1204 | CONFIG_HID_SUPPORT=y |
1148 | CONFIG_HID=y | 1205 | CONFIG_HID=y |
@@ -1316,10 +1373,12 @@ CONFIG_USB_ETH_RNDIS=y | |||
1316 | CONFIG_USB_GADGETFS=m | 1373 | CONFIG_USB_GADGETFS=m |
1317 | CONFIG_USB_FILE_STORAGE=m | 1374 | CONFIG_USB_FILE_STORAGE=m |
1318 | # CONFIG_USB_FILE_STORAGE_TEST is not set | 1375 | # CONFIG_USB_FILE_STORAGE_TEST is not set |
1376 | # CONFIG_USB_MASS_STORAGE is not set | ||
1319 | CONFIG_USB_G_SERIAL=m | 1377 | CONFIG_USB_G_SERIAL=m |
1320 | # CONFIG_USB_MIDI_GADGET is not set | 1378 | # CONFIG_USB_MIDI_GADGET is not set |
1321 | # CONFIG_USB_G_PRINTER is not set | 1379 | # CONFIG_USB_G_PRINTER is not set |
1322 | # CONFIG_USB_CDC_COMPOSITE is not set | 1380 | # CONFIG_USB_CDC_COMPOSITE is not set |
1381 | # CONFIG_USB_G_MULTI is not set | ||
1323 | 1382 | ||
1324 | # | 1383 | # |
1325 | # OTG and related infrastructure | 1384 | # OTG and related infrastructure |
@@ -1345,6 +1404,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
1345 | # CONFIG_MMC_AT91 is not set | 1404 | # CONFIG_MMC_AT91 is not set |
1346 | # CONFIG_MMC_ATMELMCI is not set | 1405 | # CONFIG_MMC_ATMELMCI is not set |
1347 | CONFIG_MMC_SPI=y | 1406 | CONFIG_MMC_SPI=y |
1407 | # CONFIG_MMC_TMIO is not set | ||
1348 | # CONFIG_MEMSTICK is not set | 1408 | # CONFIG_MEMSTICK is not set |
1349 | # CONFIG_NEW_LEDS is not set | 1409 | # CONFIG_NEW_LEDS is not set |
1350 | # CONFIG_ACCESSIBILITY is not set | 1410 | # CONFIG_ACCESSIBILITY is not set |
@@ -1376,6 +1436,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1376 | CONFIG_RTC_DRV_PCF8563=y | 1436 | CONFIG_RTC_DRV_PCF8563=y |
1377 | # CONFIG_RTC_DRV_PCF8583 is not set | 1437 | # CONFIG_RTC_DRV_PCF8583 is not set |
1378 | # CONFIG_RTC_DRV_M41T80 is not set | 1438 | # CONFIG_RTC_DRV_M41T80 is not set |
1439 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1379 | # CONFIG_RTC_DRV_S35390A is not set | 1440 | # CONFIG_RTC_DRV_S35390A is not set |
1380 | # CONFIG_RTC_DRV_FM3130 is not set | 1441 | # CONFIG_RTC_DRV_FM3130 is not set |
1381 | # CONFIG_RTC_DRV_RX8581 is not set | 1442 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1404,7 +1465,9 @@ CONFIG_RTC_DRV_PCF8563=y | |||
1404 | # CONFIG_RTC_DRV_M48T86 is not set | 1465 | # CONFIG_RTC_DRV_M48T86 is not set |
1405 | # CONFIG_RTC_DRV_M48T35 is not set | 1466 | # CONFIG_RTC_DRV_M48T35 is not set |
1406 | # CONFIG_RTC_DRV_M48T59 is not set | 1467 | # CONFIG_RTC_DRV_M48T59 is not set |
1468 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1407 | # CONFIG_RTC_DRV_BQ4802 is not set | 1469 | # CONFIG_RTC_DRV_BQ4802 is not set |
1470 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1408 | # CONFIG_RTC_DRV_V3020 is not set | 1471 | # CONFIG_RTC_DRV_V3020 is not set |
1409 | 1472 | ||
1410 | # | 1473 | # |
@@ -1597,7 +1660,7 @@ CONFIG_FRAME_WARN=1024 | |||
1597 | # CONFIG_DEBUG_FS is not set | 1660 | # CONFIG_DEBUG_FS is not set |
1598 | # CONFIG_HEADERS_CHECK is not set | 1661 | # CONFIG_HEADERS_CHECK is not set |
1599 | # CONFIG_DEBUG_KERNEL is not set | 1662 | # CONFIG_DEBUG_KERNEL is not set |
1600 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1663 | CONFIG_DEBUG_BUGVERBOSE=y |
1601 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1664 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1602 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1665 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1603 | # CONFIG_LATENCYTOP is not set | 1666 | # CONFIG_LATENCYTOP is not set |
@@ -1614,7 +1677,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1614 | # CONFIG_SAMPLES is not set | 1677 | # CONFIG_SAMPLES is not set |
1615 | CONFIG_HAVE_ARCH_KGDB=y | 1678 | CONFIG_HAVE_ARCH_KGDB=y |
1616 | # CONFIG_SH_STANDARD_BIOS is not set | 1679 | # CONFIG_SH_STANDARD_BIOS is not set |
1617 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1618 | # CONFIG_DWARF_UNWINDER is not set | 1680 | # CONFIG_DWARF_UNWINDER is not set |
1619 | 1681 | ||
1620 | # | 1682 | # |
@@ -1623,7 +1685,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1623 | # CONFIG_KEYS is not set | 1685 | # CONFIG_KEYS is not set |
1624 | # CONFIG_SECURITY is not set | 1686 | # CONFIG_SECURITY is not set |
1625 | # CONFIG_SECURITYFS is not set | 1687 | # CONFIG_SECURITYFS is not set |
1626 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1688 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1689 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1690 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1691 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1692 | CONFIG_DEFAULT_SECURITY="" | ||
1627 | CONFIG_CRYPTO=y | 1693 | CONFIG_CRYPTO=y |
1628 | 1694 | ||
1629 | # | 1695 | # |
diff --git a/arch/sh/configs/se7750_defconfig b/arch/sh/configs/se7750_defconfig index 7bc926c17b7..b15a44e2ec4 100644 --- a/arch/sh/configs/se7750_defconfig +++ b/arch/sh/configs/se7750_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 18:58:58 2009 | 4 | # Mon Jan 4 14:39:10 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -60,6 +62,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
60 | # | 62 | # |
61 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -95,6 +98,7 @@ CONFIG_EVENTFD=y | |||
95 | CONFIG_SHMEM=y | 98 | CONFIG_SHMEM=y |
96 | CONFIG_AIO=y | 99 | CONFIG_AIO=y |
97 | CONFIG_HAVE_PERF_EVENTS=y | 100 | CONFIG_HAVE_PERF_EVENTS=y |
101 | CONFIG_PERF_USE_VMALLOC=y | ||
98 | 102 | ||
99 | # | 103 | # |
100 | # Kernel Performance Events And Counters | 104 | # Kernel Performance Events And Counters |
@@ -113,6 +117,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
113 | CONFIG_HAVE_KPROBES=y | 117 | CONFIG_HAVE_KPROBES=y |
114 | CONFIG_HAVE_KRETPROBES=y | 118 | CONFIG_HAVE_KRETPROBES=y |
115 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 119 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
120 | CONFIG_HAVE_DMA_ATTRS=y | ||
116 | CONFIG_HAVE_CLK=y | 121 | CONFIG_HAVE_CLK=y |
117 | CONFIG_HAVE_DMA_API_DEBUG=y | 122 | CONFIG_HAVE_DMA_API_DEBUG=y |
118 | 123 | ||
@@ -138,14 +143,41 @@ CONFIG_LBDAF=y | |||
138 | # IO Schedulers | 143 | # IO Schedulers |
139 | # | 144 | # |
140 | CONFIG_IOSCHED_NOOP=y | 145 | CONFIG_IOSCHED_NOOP=y |
141 | CONFIG_IOSCHED_AS=y | ||
142 | CONFIG_IOSCHED_DEADLINE=y | 146 | CONFIG_IOSCHED_DEADLINE=y |
143 | CONFIG_IOSCHED_CFQ=y | 147 | CONFIG_IOSCHED_CFQ=y |
144 | CONFIG_DEFAULT_AS=y | ||
145 | # CONFIG_DEFAULT_DEADLINE is not set | 148 | # CONFIG_DEFAULT_DEADLINE is not set |
146 | # CONFIG_DEFAULT_CFQ is not set | 149 | CONFIG_DEFAULT_CFQ=y |
147 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="cfq" |
152 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
153 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
158 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
160 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
161 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
162 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
163 | # CONFIG_INLINE_READ_LOCK is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
167 | CONFIG_INLINE_READ_UNLOCK=y | ||
168 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
169 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
170 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
171 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
176 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
178 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
179 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
180 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
149 | # CONFIG_FREEZER is not set | 181 | # CONFIG_FREEZER is not set |
150 | 182 | ||
151 | # | 183 | # |
@@ -221,8 +253,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
221 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 253 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
222 | CONFIG_ZONE_DMA_FLAG=0 | 254 | CONFIG_ZONE_DMA_FLAG=0 |
223 | CONFIG_NR_QUICK=2 | 255 | CONFIG_NR_QUICK=2 |
224 | CONFIG_HAVE_MLOCK=y | ||
225 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
226 | # CONFIG_KSM is not set | 256 | # CONFIG_KSM is not set |
227 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 257 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
228 | 258 | ||
@@ -307,7 +337,6 @@ CONFIG_GUSA=y | |||
307 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 337 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
308 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 338 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
309 | CONFIG_ENTRY_OFFSET=0x00001000 | 339 | CONFIG_ENTRY_OFFSET=0x00001000 |
310 | # CONFIG_UBC_WAKEUP is not set | ||
311 | # CONFIG_CMDLINE_OVERWRITE is not set | 340 | # CONFIG_CMDLINE_OVERWRITE is not set |
312 | # CONFIG_CMDLINE_EXTEND is not set | 341 | # CONFIG_CMDLINE_EXTEND is not set |
313 | 342 | ||
@@ -406,9 +435,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
406 | # CONFIG_AF_RXRPC is not set | 435 | # CONFIG_AF_RXRPC is not set |
407 | CONFIG_WIRELESS=y | 436 | CONFIG_WIRELESS=y |
408 | # CONFIG_CFG80211 is not set | 437 | # CONFIG_CFG80211 is not set |
409 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
410 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
411 | # CONFIG_WIRELESS_EXT is not set | ||
412 | # CONFIG_LIB80211 is not set | 438 | # CONFIG_LIB80211 is not set |
413 | 439 | ||
414 | # | 440 | # |
@@ -513,6 +539,10 @@ CONFIG_MTD_ROM=y | |||
513 | CONFIG_BLK_DEV=y | 539 | CONFIG_BLK_DEV=y |
514 | # CONFIG_BLK_DEV_COW_COMMON is not set | 540 | # CONFIG_BLK_DEV_COW_COMMON is not set |
515 | # CONFIG_BLK_DEV_LOOP is not set | 541 | # CONFIG_BLK_DEV_LOOP is not set |
542 | |||
543 | # | ||
544 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
545 | # | ||
516 | # CONFIG_BLK_DEV_NBD is not set | 546 | # CONFIG_BLK_DEV_NBD is not set |
517 | # CONFIG_BLK_DEV_RAM is not set | 547 | # CONFIG_BLK_DEV_RAM is not set |
518 | # CONFIG_CDROM_PKTCDVD is not set | 548 | # CONFIG_CDROM_PKTCDVD is not set |
@@ -615,11 +645,11 @@ CONFIG_STNIC=y | |||
615 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 645 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
616 | # CONFIG_B44 is not set | 646 | # CONFIG_B44 is not set |
617 | # CONFIG_KS8842 is not set | 647 | # CONFIG_KS8842 is not set |
648 | # CONFIG_KS8851_MLL is not set | ||
618 | CONFIG_NETDEV_1000=y | 649 | CONFIG_NETDEV_1000=y |
619 | CONFIG_NETDEV_10000=y | 650 | CONFIG_NETDEV_10000=y |
620 | CONFIG_WLAN=y | 651 | CONFIG_WLAN=y |
621 | # CONFIG_WLAN_PRE80211 is not set | 652 | # CONFIG_HOSTAP is not set |
622 | # CONFIG_WLAN_80211 is not set | ||
623 | 653 | ||
624 | # | 654 | # |
625 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 655 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -726,6 +756,7 @@ CONFIG_SSB_POSSIBLE=y | |||
726 | # | 756 | # |
727 | # CONFIG_MFD_CORE is not set | 757 | # CONFIG_MFD_CORE is not set |
728 | # CONFIG_MFD_SM501 is not set | 758 | # CONFIG_MFD_SM501 is not set |
759 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
729 | # CONFIG_HTC_PASIC3 is not set | 760 | # CONFIG_HTC_PASIC3 is not set |
730 | # CONFIG_MFD_TMIO is not set | 761 | # CONFIG_MFD_TMIO is not set |
731 | # CONFIG_REGULATOR is not set | 762 | # CONFIG_REGULATOR is not set |
@@ -785,6 +816,7 @@ CONFIG_RTC_LIB=y | |||
785 | # CONFIG_EXT2_FS is not set | 816 | # CONFIG_EXT2_FS is not set |
786 | # CONFIG_EXT3_FS is not set | 817 | # CONFIG_EXT3_FS is not set |
787 | # CONFIG_EXT4_FS is not set | 818 | # CONFIG_EXT4_FS is not set |
819 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
788 | # CONFIG_REISERFS_FS is not set | 820 | # CONFIG_REISERFS_FS is not set |
789 | # CONFIG_JFS_FS is not set | 821 | # CONFIG_JFS_FS is not set |
790 | # CONFIG_FS_POSIX_ACL is not set | 822 | # CONFIG_FS_POSIX_ACL is not set |
@@ -914,10 +946,11 @@ CONFIG_FRAME_WARN=1024 | |||
914 | # CONFIG_DEBUG_FS is not set | 946 | # CONFIG_DEBUG_FS is not set |
915 | # CONFIG_HEADERS_CHECK is not set | 947 | # CONFIG_HEADERS_CHECK is not set |
916 | # CONFIG_DEBUG_KERNEL is not set | 948 | # CONFIG_DEBUG_KERNEL is not set |
917 | # CONFIG_DEBUG_BUGVERBOSE is not set | 949 | CONFIG_DEBUG_BUGVERBOSE=y |
918 | # CONFIG_DEBUG_MEMORY_INIT is not set | 950 | # CONFIG_DEBUG_MEMORY_INIT is not set |
919 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 951 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
920 | # CONFIG_LATENCYTOP is not set | 952 | # CONFIG_LATENCYTOP is not set |
953 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
921 | CONFIG_HAVE_FUNCTION_TRACER=y | 954 | CONFIG_HAVE_FUNCTION_TRACER=y |
922 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 955 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
923 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 956 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -930,7 +963,6 @@ CONFIG_TRACING_SUPPORT=y | |||
930 | # CONFIG_SAMPLES is not set | 963 | # CONFIG_SAMPLES is not set |
931 | CONFIG_HAVE_ARCH_KGDB=y | 964 | CONFIG_HAVE_ARCH_KGDB=y |
932 | # CONFIG_SH_STANDARD_BIOS is not set | 965 | # CONFIG_SH_STANDARD_BIOS is not set |
933 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
934 | # CONFIG_DWARF_UNWINDER is not set | 966 | # CONFIG_DWARF_UNWINDER is not set |
935 | 967 | ||
936 | # | 968 | # |
@@ -939,7 +971,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
939 | # CONFIG_KEYS is not set | 971 | # CONFIG_KEYS is not set |
940 | # CONFIG_SECURITY is not set | 972 | # CONFIG_SECURITY is not set |
941 | # CONFIG_SECURITYFS is not set | 973 | # CONFIG_SECURITYFS is not set |
942 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 974 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
975 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
976 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
977 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
978 | CONFIG_DEFAULT_SECURITY="" | ||
943 | CONFIG_CRYPTO=y | 979 | CONFIG_CRYPTO=y |
944 | 980 | ||
945 | # | 981 | # |
diff --git a/arch/sh/configs/se7751_defconfig b/arch/sh/configs/se7751_defconfig index c20ae5e35c8..d1effdeaa41 100644 --- a/arch/sh/configs/se7751_defconfig +++ b/arch/sh/configs/se7751_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:01:41 2009 | 4 | # Mon Jan 4 14:39:56 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -60,6 +62,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
60 | # | 62 | # |
61 | CONFIG_TREE_RCU=y | 63 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 64 | # CONFIG_TREE_PREEMPT_RCU is not set |
65 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 66 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 67 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 68 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -98,6 +101,7 @@ CONFIG_EVENTFD=y | |||
98 | CONFIG_SHMEM=y | 101 | CONFIG_SHMEM=y |
99 | CONFIG_AIO=y | 102 | CONFIG_AIO=y |
100 | CONFIG_HAVE_PERF_EVENTS=y | 103 | CONFIG_HAVE_PERF_EVENTS=y |
104 | CONFIG_PERF_USE_VMALLOC=y | ||
101 | 105 | ||
102 | # | 106 | # |
103 | # Kernel Performance Events And Counters | 107 | # Kernel Performance Events And Counters |
@@ -116,6 +120,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
116 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
117 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
123 | CONFIG_HAVE_DMA_ATTRS=y | ||
119 | CONFIG_HAVE_CLK=y | 124 | CONFIG_HAVE_CLK=y |
120 | CONFIG_HAVE_DMA_API_DEBUG=y | 125 | CONFIG_HAVE_DMA_API_DEBUG=y |
121 | 126 | ||
@@ -141,14 +146,41 @@ CONFIG_LBDAF=y | |||
141 | # IO Schedulers | 146 | # IO Schedulers |
142 | # | 147 | # |
143 | CONFIG_IOSCHED_NOOP=y | 148 | CONFIG_IOSCHED_NOOP=y |
144 | CONFIG_IOSCHED_AS=y | ||
145 | CONFIG_IOSCHED_DEADLINE=y | 149 | CONFIG_IOSCHED_DEADLINE=y |
146 | CONFIG_IOSCHED_CFQ=y | 150 | CONFIG_IOSCHED_CFQ=y |
147 | CONFIG_DEFAULT_AS=y | ||
148 | # CONFIG_DEFAULT_DEADLINE is not set | 151 | # CONFIG_DEFAULT_DEADLINE is not set |
149 | # CONFIG_DEFAULT_CFQ is not set | 152 | CONFIG_DEFAULT_CFQ=y |
150 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 154 | CONFIG_DEFAULT_IOSCHED="cfq" |
155 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
161 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
163 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
165 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
166 | # CONFIG_INLINE_READ_LOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
170 | CONFIG_INLINE_READ_UNLOCK=y | ||
171 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
172 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
173 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
174 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
179 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
181 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
183 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
152 | # CONFIG_FREEZER is not set | 184 | # CONFIG_FREEZER is not set |
153 | 185 | ||
154 | # | 186 | # |
@@ -224,8 +256,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
224 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 256 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
225 | CONFIG_ZONE_DMA_FLAG=0 | 257 | CONFIG_ZONE_DMA_FLAG=0 |
226 | CONFIG_NR_QUICK=2 | 258 | CONFIG_NR_QUICK=2 |
227 | CONFIG_HAVE_MLOCK=y | ||
228 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
229 | # CONFIG_KSM is not set | 259 | # CONFIG_KSM is not set |
230 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 260 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
231 | 261 | ||
@@ -311,7 +341,6 @@ CONFIG_GUSA=y | |||
311 | CONFIG_ZERO_PAGE_OFFSET=0x00010000 | 341 | CONFIG_ZERO_PAGE_OFFSET=0x00010000 |
312 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 342 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
313 | CONFIG_ENTRY_OFFSET=0x00001000 | 343 | CONFIG_ENTRY_OFFSET=0x00001000 |
314 | # CONFIG_UBC_WAKEUP is not set | ||
315 | CONFIG_CMDLINE_OVERWRITE=y | 344 | CONFIG_CMDLINE_OVERWRITE=y |
316 | # CONFIG_CMDLINE_EXTEND is not set | 345 | # CONFIG_CMDLINE_EXTEND is not set |
317 | CONFIG_CMDLINE="console=ttySC1,38400" | 346 | CONFIG_CMDLINE="console=ttySC1,38400" |
@@ -430,9 +459,6 @@ CONFIG_IP_NF_QUEUE=y | |||
430 | # CONFIG_AF_RXRPC is not set | 459 | # CONFIG_AF_RXRPC is not set |
431 | CONFIG_WIRELESS=y | 460 | CONFIG_WIRELESS=y |
432 | # CONFIG_CFG80211 is not set | 461 | # CONFIG_CFG80211 is not set |
433 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
434 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
435 | # CONFIG_WIRELESS_EXT is not set | ||
436 | # CONFIG_LIB80211 is not set | 462 | # CONFIG_LIB80211 is not set |
437 | 463 | ||
438 | # | 464 | # |
@@ -537,6 +563,10 @@ CONFIG_MTD_RAM=y | |||
537 | CONFIG_BLK_DEV=y | 563 | CONFIG_BLK_DEV=y |
538 | # CONFIG_BLK_DEV_COW_COMMON is not set | 564 | # CONFIG_BLK_DEV_COW_COMMON is not set |
539 | # CONFIG_BLK_DEV_LOOP is not set | 565 | # CONFIG_BLK_DEV_LOOP is not set |
566 | |||
567 | # | ||
568 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
569 | # | ||
540 | # CONFIG_BLK_DEV_NBD is not set | 570 | # CONFIG_BLK_DEV_NBD is not set |
541 | CONFIG_BLK_DEV_RAM=y | 571 | CONFIG_BLK_DEV_RAM=y |
542 | CONFIG_BLK_DEV_RAM_COUNT=16 | 572 | CONFIG_BLK_DEV_RAM_COUNT=16 |
@@ -591,11 +621,11 @@ CONFIG_MII=y | |||
591 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 621 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
592 | # CONFIG_B44 is not set | 622 | # CONFIG_B44 is not set |
593 | # CONFIG_KS8842 is not set | 623 | # CONFIG_KS8842 is not set |
624 | # CONFIG_KS8851_MLL is not set | ||
594 | CONFIG_NETDEV_1000=y | 625 | CONFIG_NETDEV_1000=y |
595 | CONFIG_NETDEV_10000=y | 626 | CONFIG_NETDEV_10000=y |
596 | CONFIG_WLAN=y | 627 | CONFIG_WLAN=y |
597 | # CONFIG_WLAN_PRE80211 is not set | 628 | # CONFIG_HOSTAP is not set |
598 | # CONFIG_WLAN_80211 is not set | ||
599 | 629 | ||
600 | # | 630 | # |
601 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 631 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -693,6 +723,7 @@ CONFIG_SSB_POSSIBLE=y | |||
693 | # | 723 | # |
694 | # CONFIG_MFD_CORE is not set | 724 | # CONFIG_MFD_CORE is not set |
695 | # CONFIG_MFD_SM501 is not set | 725 | # CONFIG_MFD_SM501 is not set |
726 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
696 | # CONFIG_HTC_PASIC3 is not set | 727 | # CONFIG_HTC_PASIC3 is not set |
697 | # CONFIG_MFD_TMIO is not set | 728 | # CONFIG_MFD_TMIO is not set |
698 | # CONFIG_REGULATOR is not set | 729 | # CONFIG_REGULATOR is not set |
@@ -754,6 +785,7 @@ CONFIG_EXT2_FS=y | |||
754 | # CONFIG_EXT2_FS_XIP is not set | 785 | # CONFIG_EXT2_FS_XIP is not set |
755 | # CONFIG_EXT3_FS is not set | 786 | # CONFIG_EXT3_FS is not set |
756 | # CONFIG_EXT4_FS is not set | 787 | # CONFIG_EXT4_FS is not set |
788 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
757 | # CONFIG_REISERFS_FS is not set | 789 | # CONFIG_REISERFS_FS is not set |
758 | # CONFIG_JFS_FS is not set | 790 | # CONFIG_JFS_FS is not set |
759 | # CONFIG_FS_POSIX_ACL is not set | 791 | # CONFIG_FS_POSIX_ACL is not set |
@@ -863,10 +895,11 @@ CONFIG_FRAME_WARN=1024 | |||
863 | # CONFIG_DEBUG_FS is not set | 895 | # CONFIG_DEBUG_FS is not set |
864 | # CONFIG_HEADERS_CHECK is not set | 896 | # CONFIG_HEADERS_CHECK is not set |
865 | # CONFIG_DEBUG_KERNEL is not set | 897 | # CONFIG_DEBUG_KERNEL is not set |
866 | # CONFIG_DEBUG_BUGVERBOSE is not set | 898 | CONFIG_DEBUG_BUGVERBOSE=y |
867 | # CONFIG_DEBUG_MEMORY_INIT is not set | 899 | # CONFIG_DEBUG_MEMORY_INIT is not set |
868 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 900 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
869 | # CONFIG_LATENCYTOP is not set | 901 | # CONFIG_LATENCYTOP is not set |
902 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
870 | CONFIG_HAVE_FUNCTION_TRACER=y | 903 | CONFIG_HAVE_FUNCTION_TRACER=y |
871 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 904 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
872 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 905 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -879,7 +912,6 @@ CONFIG_TRACING_SUPPORT=y | |||
879 | # CONFIG_SAMPLES is not set | 912 | # CONFIG_SAMPLES is not set |
880 | CONFIG_HAVE_ARCH_KGDB=y | 913 | CONFIG_HAVE_ARCH_KGDB=y |
881 | # CONFIG_SH_STANDARD_BIOS is not set | 914 | # CONFIG_SH_STANDARD_BIOS is not set |
882 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
883 | # CONFIG_DWARF_UNWINDER is not set | 915 | # CONFIG_DWARF_UNWINDER is not set |
884 | 916 | ||
885 | # | 917 | # |
@@ -888,7 +920,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
888 | # CONFIG_KEYS is not set | 920 | # CONFIG_KEYS is not set |
889 | # CONFIG_SECURITY is not set | 921 | # CONFIG_SECURITY is not set |
890 | # CONFIG_SECURITYFS is not set | 922 | # CONFIG_SECURITYFS is not set |
891 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 923 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
924 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
925 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
926 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
927 | CONFIG_DEFAULT_SECURITY="" | ||
892 | CONFIG_CRYPTO=y | 928 | CONFIG_CRYPTO=y |
893 | 929 | ||
894 | # | 930 | # |
diff --git a/arch/sh/configs/se7780_defconfig b/arch/sh/configs/se7780_defconfig index 82baeef40a9..58533d50f06 100644 --- a/arch/sh/configs/se7780_defconfig +++ b/arch/sh/configs/se7780_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:03:59 2009 | 4 | # Mon Jan 4 14:40:32 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -59,6 +61,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
59 | # | 61 | # |
60 | CONFIG_TREE_RCU=y | 62 | CONFIG_TREE_RCU=y |
61 | # CONFIG_TREE_PREEMPT_RCU is not set | 63 | # CONFIG_TREE_PREEMPT_RCU is not set |
64 | # CONFIG_TINY_RCU is not set | ||
62 | # CONFIG_RCU_TRACE is not set | 65 | # CONFIG_RCU_TRACE is not set |
63 | CONFIG_RCU_FANOUT=32 | 66 | CONFIG_RCU_FANOUT=32 |
64 | # CONFIG_RCU_FANOUT_EXACT is not set | 67 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -92,6 +95,7 @@ CONFIG_EVENTFD=y | |||
92 | CONFIG_SHMEM=y | 95 | CONFIG_SHMEM=y |
93 | CONFIG_AIO=y | 96 | CONFIG_AIO=y |
94 | CONFIG_HAVE_PERF_EVENTS=y | 97 | CONFIG_HAVE_PERF_EVENTS=y |
98 | CONFIG_PERF_USE_VMALLOC=y | ||
95 | 99 | ||
96 | # | 100 | # |
97 | # Kernel Performance Events And Counters | 101 | # Kernel Performance Events And Counters |
@@ -110,6 +114,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
110 | CONFIG_HAVE_KPROBES=y | 114 | CONFIG_HAVE_KPROBES=y |
111 | CONFIG_HAVE_KRETPROBES=y | 115 | CONFIG_HAVE_KRETPROBES=y |
112 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 116 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
117 | CONFIG_HAVE_DMA_ATTRS=y | ||
113 | CONFIG_HAVE_CLK=y | 118 | CONFIG_HAVE_CLK=y |
114 | CONFIG_HAVE_DMA_API_DEBUG=y | 119 | CONFIG_HAVE_DMA_API_DEBUG=y |
115 | 120 | ||
@@ -136,14 +141,41 @@ CONFIG_BLK_DEV_BSG=y | |||
136 | # IO Schedulers | 141 | # IO Schedulers |
137 | # | 142 | # |
138 | CONFIG_IOSCHED_NOOP=y | 143 | CONFIG_IOSCHED_NOOP=y |
139 | # CONFIG_IOSCHED_AS is not set | ||
140 | CONFIG_IOSCHED_DEADLINE=y | 144 | CONFIG_IOSCHED_DEADLINE=y |
141 | # CONFIG_IOSCHED_CFQ is not set | 145 | # CONFIG_IOSCHED_CFQ is not set |
142 | # CONFIG_DEFAULT_AS is not set | ||
143 | CONFIG_DEFAULT_DEADLINE=y | 146 | CONFIG_DEFAULT_DEADLINE=y |
144 | # CONFIG_DEFAULT_CFQ is not set | 147 | # CONFIG_DEFAULT_CFQ is not set |
145 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="deadline" | 149 | CONFIG_DEFAULT_IOSCHED="deadline" |
150 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
151 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
152 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
153 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
156 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
157 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
158 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
160 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
161 | # CONFIG_INLINE_READ_LOCK is not set | ||
162 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
165 | CONFIG_INLINE_READ_UNLOCK=y | ||
166 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
167 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
168 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
171 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
174 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
175 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
176 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
147 | # CONFIG_FREEZER is not set | 179 | # CONFIG_FREEZER is not set |
148 | 180 | ||
149 | # | 181 | # |
@@ -222,8 +254,6 @@ CONFIG_MIGRATION=y | |||
222 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 254 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
223 | CONFIG_ZONE_DMA_FLAG=0 | 255 | CONFIG_ZONE_DMA_FLAG=0 |
224 | CONFIG_NR_QUICK=2 | 256 | CONFIG_NR_QUICK=2 |
225 | CONFIG_HAVE_MLOCK=y | ||
226 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
227 | # CONFIG_KSM is not set | 257 | # CONFIG_KSM is not set |
228 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 258 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
229 | 259 | ||
@@ -313,7 +343,6 @@ CONFIG_CMDLINE="console=ttySC0,115200 root=/dev/sda1" | |||
313 | # Bus options | 343 | # Bus options |
314 | # | 344 | # |
315 | CONFIG_PCI=y | 345 | CONFIG_PCI=y |
316 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
317 | # CONFIG_PCIEPORTBUS is not set | 346 | # CONFIG_PCIEPORTBUS is not set |
318 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 347 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
319 | CONFIG_PCI_LEGACY=y | 348 | CONFIG_PCI_LEGACY=y |
@@ -401,9 +430,6 @@ CONFIG_IPV6=y | |||
401 | # CONFIG_BT is not set | 430 | # CONFIG_BT is not set |
402 | CONFIG_WIRELESS=y | 431 | CONFIG_WIRELESS=y |
403 | # CONFIG_CFG80211 is not set | 432 | # CONFIG_CFG80211 is not set |
404 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
405 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
406 | # CONFIG_WIRELESS_EXT is not set | ||
407 | # CONFIG_LIB80211 is not set | 433 | # CONFIG_LIB80211 is not set |
408 | 434 | ||
409 | # | 435 | # |
@@ -517,6 +543,10 @@ CONFIG_BLK_DEV=y | |||
517 | # CONFIG_BLK_DEV_COW_COMMON is not set | 543 | # CONFIG_BLK_DEV_COW_COMMON is not set |
518 | CONFIG_BLK_DEV_LOOP=y | 544 | CONFIG_BLK_DEV_LOOP=y |
519 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 545 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
546 | |||
547 | # | ||
548 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
549 | # | ||
520 | # CONFIG_BLK_DEV_NBD is not set | 550 | # CONFIG_BLK_DEV_NBD is not set |
521 | # CONFIG_BLK_DEV_SX8 is not set | 551 | # CONFIG_BLK_DEV_SX8 is not set |
522 | # CONFIG_BLK_DEV_UB is not set | 552 | # CONFIG_BLK_DEV_UB is not set |
@@ -574,8 +604,11 @@ CONFIG_SCSI_WAIT_SCAN=m | |||
574 | CONFIG_SCSI_LOWLEVEL=y | 604 | CONFIG_SCSI_LOWLEVEL=y |
575 | # CONFIG_ISCSI_TCP is not set | 605 | # CONFIG_ISCSI_TCP is not set |
576 | # CONFIG_SCSI_BNX2_ISCSI is not set | 606 | # CONFIG_SCSI_BNX2_ISCSI is not set |
607 | # CONFIG_BE2ISCSI is not set | ||
577 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 608 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
609 | # CONFIG_SCSI_HPSA is not set | ||
578 | # CONFIG_SCSI_3W_9XXX is not set | 610 | # CONFIG_SCSI_3W_9XXX is not set |
611 | # CONFIG_SCSI_3W_SAS is not set | ||
579 | # CONFIG_SCSI_ACARD is not set | 612 | # CONFIG_SCSI_ACARD is not set |
580 | # CONFIG_SCSI_AACRAID is not set | 613 | # CONFIG_SCSI_AACRAID is not set |
581 | # CONFIG_SCSI_AIC7XXX is not set | 614 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -608,7 +641,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
608 | # CONFIG_SCSI_NSP32 is not set | 641 | # CONFIG_SCSI_NSP32 is not set |
609 | # CONFIG_SCSI_DEBUG is not set | 642 | # CONFIG_SCSI_DEBUG is not set |
610 | # CONFIG_SCSI_PMCRAID is not set | 643 | # CONFIG_SCSI_PMCRAID is not set |
644 | # CONFIG_SCSI_PM8001 is not set | ||
611 | # CONFIG_SCSI_SRP is not set | 645 | # CONFIG_SCSI_SRP is not set |
646 | # CONFIG_SCSI_BFA_FC is not set | ||
612 | # CONFIG_SCSI_DH is not set | 647 | # CONFIG_SCSI_DH is not set |
613 | # CONFIG_SCSI_OSD_INITIATOR is not set | 648 | # CONFIG_SCSI_OSD_INITIATOR is not set |
614 | CONFIG_ATA=y | 649 | CONFIG_ATA=y |
@@ -642,6 +677,8 @@ CONFIG_SATA_SIL=y | |||
642 | # CONFIG_PATA_EFAR is not set | 677 | # CONFIG_PATA_EFAR is not set |
643 | # CONFIG_ATA_GENERIC is not set | 678 | # CONFIG_ATA_GENERIC is not set |
644 | # CONFIG_PATA_HPT366 is not set | 679 | # CONFIG_PATA_HPT366 is not set |
680 | # CONFIG_PATA_HPT37X is not set | ||
681 | # CONFIG_PATA_HPT3X2N is not set | ||
645 | # CONFIG_PATA_HPT3X3 is not set | 682 | # CONFIG_PATA_HPT3X3 is not set |
646 | # CONFIG_PATA_IT821X is not set | 683 | # CONFIG_PATA_IT821X is not set |
647 | # CONFIG_PATA_JMICRON is not set | 684 | # CONFIG_PATA_JMICRON is not set |
@@ -650,14 +687,15 @@ CONFIG_SATA_SIL=y | |||
650 | # CONFIG_PATA_MPIIX is not set | 687 | # CONFIG_PATA_MPIIX is not set |
651 | # CONFIG_PATA_OLDPIIX is not set | 688 | # CONFIG_PATA_OLDPIIX is not set |
652 | # CONFIG_PATA_NETCELL is not set | 689 | # CONFIG_PATA_NETCELL is not set |
690 | # CONFIG_PATA_NINJA32 is not set | ||
653 | # CONFIG_PATA_NS87410 is not set | 691 | # CONFIG_PATA_NS87410 is not set |
654 | # CONFIG_PATA_NS87415 is not set | 692 | # CONFIG_PATA_NS87415 is not set |
693 | # CONFIG_PATA_PDC2027X is not set | ||
655 | # CONFIG_PATA_PDC_OLD is not set | 694 | # CONFIG_PATA_PDC_OLD is not set |
656 | # CONFIG_PATA_RDC is not set | 695 | # CONFIG_PATA_RDC is not set |
657 | # CONFIG_PATA_RZ1000 is not set | 696 | # CONFIG_PATA_RZ1000 is not set |
658 | # CONFIG_PATA_SC1200 is not set | 697 | # CONFIG_PATA_SC1200 is not set |
659 | # CONFIG_PATA_SERVERWORKS is not set | 698 | # CONFIG_PATA_SERVERWORKS is not set |
660 | # CONFIG_PATA_PDC2027X is not set | ||
661 | # CONFIG_PATA_SIL680 is not set | 699 | # CONFIG_PATA_SIL680 is not set |
662 | # CONFIG_PATA_SIS is not set | 700 | # CONFIG_PATA_SIS is not set |
663 | # CONFIG_PATA_VIA is not set | 701 | # CONFIG_PATA_VIA is not set |
@@ -748,14 +786,16 @@ CONFIG_NET_PCI=y | |||
748 | # CONFIG_SUNDANCE is not set | 786 | # CONFIG_SUNDANCE is not set |
749 | # CONFIG_TLAN is not set | 787 | # CONFIG_TLAN is not set |
750 | # CONFIG_KS8842 is not set | 788 | # CONFIG_KS8842 is not set |
789 | # CONFIG_KS8851_MLL is not set | ||
751 | # CONFIG_VIA_RHINE is not set | 790 | # CONFIG_VIA_RHINE is not set |
752 | # CONFIG_ATL2 is not set | 791 | # CONFIG_ATL2 is not set |
753 | # CONFIG_NETDEV_1000 is not set | 792 | # CONFIG_NETDEV_1000 is not set |
754 | # CONFIG_NETDEV_10000 is not set | 793 | # CONFIG_NETDEV_10000 is not set |
755 | # CONFIG_TR is not set | 794 | # CONFIG_TR is not set |
756 | CONFIG_WLAN=y | 795 | CONFIG_WLAN=y |
757 | # CONFIG_WLAN_PRE80211 is not set | 796 | # CONFIG_ATMEL is not set |
758 | # CONFIG_WLAN_80211 is not set | 797 | # CONFIG_USB_ZD1201 is not set |
798 | # CONFIG_HOSTAP is not set | ||
759 | 799 | ||
760 | # | 800 | # |
761 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 801 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -774,6 +814,7 @@ CONFIG_WLAN=y | |||
774 | # CONFIG_NET_FC is not set | 814 | # CONFIG_NET_FC is not set |
775 | # CONFIG_NETPOLL is not set | 815 | # CONFIG_NETPOLL is not set |
776 | # CONFIG_NET_POLL_CONTROLLER is not set | 816 | # CONFIG_NET_POLL_CONTROLLER is not set |
817 | # CONFIG_VMXNET3 is not set | ||
777 | # CONFIG_ISDN is not set | 818 | # CONFIG_ISDN is not set |
778 | # CONFIG_PHONE is not set | 819 | # CONFIG_PHONE is not set |
779 | 820 | ||
@@ -783,6 +824,7 @@ CONFIG_WLAN=y | |||
783 | CONFIG_INPUT=y | 824 | CONFIG_INPUT=y |
784 | CONFIG_INPUT_FF_MEMLESS=m | 825 | CONFIG_INPUT_FF_MEMLESS=m |
785 | # CONFIG_INPUT_POLLDEV is not set | 826 | # CONFIG_INPUT_POLLDEV is not set |
827 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
786 | 828 | ||
787 | # | 829 | # |
788 | # Userland interfaces | 830 | # Userland interfaces |
@@ -883,6 +925,7 @@ CONFIG_SSB_POSSIBLE=y | |||
883 | # | 925 | # |
884 | # CONFIG_MFD_CORE is not set | 926 | # CONFIG_MFD_CORE is not set |
885 | # CONFIG_MFD_SM501 is not set | 927 | # CONFIG_MFD_SM501 is not set |
928 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
886 | # CONFIG_HTC_PASIC3 is not set | 929 | # CONFIG_HTC_PASIC3 is not set |
887 | # CONFIG_MFD_TMIO is not set | 930 | # CONFIG_MFD_TMIO is not set |
888 | # CONFIG_REGULATOR is not set | 931 | # CONFIG_REGULATOR is not set |
@@ -1149,6 +1192,7 @@ CONFIG_EXT2_FS=y | |||
1149 | # CONFIG_EXT2_FS_XIP is not set | 1192 | # CONFIG_EXT2_FS_XIP is not set |
1150 | # CONFIG_EXT3_FS is not set | 1193 | # CONFIG_EXT3_FS is not set |
1151 | # CONFIG_EXT4_FS is not set | 1194 | # CONFIG_EXT4_FS is not set |
1195 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
1152 | # CONFIG_REISERFS_FS is not set | 1196 | # CONFIG_REISERFS_FS is not set |
1153 | # CONFIG_JFS_FS is not set | 1197 | # CONFIG_JFS_FS is not set |
1154 | # CONFIG_FS_POSIX_ACL is not set | 1198 | # CONFIG_FS_POSIX_ACL is not set |
@@ -1285,7 +1329,7 @@ CONFIG_FRAME_WARN=1024 | |||
1285 | CONFIG_DEBUG_FS=y | 1329 | CONFIG_DEBUG_FS=y |
1286 | # CONFIG_HEADERS_CHECK is not set | 1330 | # CONFIG_HEADERS_CHECK is not set |
1287 | # CONFIG_DEBUG_KERNEL is not set | 1331 | # CONFIG_DEBUG_KERNEL is not set |
1288 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1332 | CONFIG_DEBUG_BUGVERBOSE=y |
1289 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1333 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1290 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1334 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1291 | # CONFIG_LATENCYTOP is not set | 1335 | # CONFIG_LATENCYTOP is not set |
@@ -1303,7 +1347,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1303 | # CONFIG_SAMPLES is not set | 1347 | # CONFIG_SAMPLES is not set |
1304 | CONFIG_HAVE_ARCH_KGDB=y | 1348 | CONFIG_HAVE_ARCH_KGDB=y |
1305 | # CONFIG_SH_STANDARD_BIOS is not set | 1349 | # CONFIG_SH_STANDARD_BIOS is not set |
1306 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1307 | # CONFIG_DWARF_UNWINDER is not set | 1350 | # CONFIG_DWARF_UNWINDER is not set |
1308 | 1351 | ||
1309 | # | 1352 | # |
@@ -1312,7 +1355,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1312 | # CONFIG_KEYS is not set | 1355 | # CONFIG_KEYS is not set |
1313 | # CONFIG_SECURITY is not set | 1356 | # CONFIG_SECURITY is not set |
1314 | # CONFIG_SECURITYFS is not set | 1357 | # CONFIG_SECURITYFS is not set |
1315 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1358 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1359 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1360 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1361 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1362 | CONFIG_DEFAULT_SECURITY="" | ||
1316 | CONFIG_CRYPTO=y | 1363 | CONFIG_CRYPTO=y |
1317 | 1364 | ||
1318 | # | 1365 | # |
diff --git a/arch/sh/configs/sh03_defconfig b/arch/sh/configs/sh03_defconfig index dd0e8900afb..666fde110b2 100644 --- a/arch/sh/configs/sh03_defconfig +++ b/arch/sh/configs/sh03_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:07:14 2009 | 4 | # Mon Jan 4 14:41:25 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -21,6 +21,7 @@ CONFIG_GENERIC_CLOCKEVENTS=y | |||
21 | CONFIG_GENERIC_CMOS_UPDATE=y | 21 | CONFIG_GENERIC_CMOS_UPDATE=y |
22 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 22 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
23 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 23 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
24 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
24 | CONFIG_SYS_SUPPORTS_PCI=y | 25 | CONFIG_SYS_SUPPORTS_PCI=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
26 | CONFIG_STACKTRACE_SUPPORT=y | 27 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -64,6 +66,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
64 | # | 66 | # |
65 | CONFIG_TREE_RCU=y | 67 | CONFIG_TREE_RCU=y |
66 | # CONFIG_TREE_PREEMPT_RCU is not set | 68 | # CONFIG_TREE_PREEMPT_RCU is not set |
69 | # CONFIG_TINY_RCU is not set | ||
67 | # CONFIG_RCU_TRACE is not set | 70 | # CONFIG_RCU_TRACE is not set |
68 | CONFIG_RCU_FANOUT=32 | 71 | CONFIG_RCU_FANOUT=32 |
69 | # CONFIG_RCU_FANOUT_EXACT is not set | 72 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +105,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 106 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 107 | CONFIG_HAVE_PERF_EVENTS=y |
108 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 109 | ||
106 | # | 110 | # |
107 | # Kernel Performance Events And Counters | 111 | # Kernel Performance Events And Counters |
@@ -124,6 +128,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
124 | CONFIG_HAVE_KPROBES=y | 128 | CONFIG_HAVE_KPROBES=y |
125 | CONFIG_HAVE_KRETPROBES=y | 129 | CONFIG_HAVE_KRETPROBES=y |
126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 130 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
131 | CONFIG_HAVE_DMA_ATTRS=y | ||
127 | CONFIG_HAVE_CLK=y | 132 | CONFIG_HAVE_CLK=y |
128 | CONFIG_HAVE_DMA_API_DEBUG=y | 133 | CONFIG_HAVE_DMA_API_DEBUG=y |
129 | 134 | ||
@@ -151,14 +156,41 @@ CONFIG_LBDAF=y | |||
151 | # IO Schedulers | 156 | # IO Schedulers |
152 | # | 157 | # |
153 | CONFIG_IOSCHED_NOOP=y | 158 | CONFIG_IOSCHED_NOOP=y |
154 | CONFIG_IOSCHED_AS=y | ||
155 | CONFIG_IOSCHED_DEADLINE=y | 159 | CONFIG_IOSCHED_DEADLINE=y |
156 | CONFIG_IOSCHED_CFQ=y | 160 | CONFIG_IOSCHED_CFQ=y |
157 | CONFIG_DEFAULT_AS=y | ||
158 | # CONFIG_DEFAULT_DEADLINE is not set | 161 | # CONFIG_DEFAULT_DEADLINE is not set |
159 | # CONFIG_DEFAULT_CFQ is not set | 162 | CONFIG_DEFAULT_CFQ=y |
160 | # CONFIG_DEFAULT_NOOP is not set | 163 | # CONFIG_DEFAULT_NOOP is not set |
161 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 164 | CONFIG_DEFAULT_IOSCHED="cfq" |
165 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
166 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
168 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
172 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
174 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
175 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
176 | # CONFIG_INLINE_READ_LOCK is not set | ||
177 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
178 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
180 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
181 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
182 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
183 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
184 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
186 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
188 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
190 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
192 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
193 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
162 | # CONFIG_FREEZER is not set | 194 | # CONFIG_FREEZER is not set |
163 | 195 | ||
164 | # | 196 | # |
@@ -234,8 +266,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
234 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 266 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
235 | CONFIG_ZONE_DMA_FLAG=0 | 267 | CONFIG_ZONE_DMA_FLAG=0 |
236 | CONFIG_NR_QUICK=2 | 268 | CONFIG_NR_QUICK=2 |
237 | CONFIG_HAVE_MLOCK=y | ||
238 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
239 | # CONFIG_KSM is not set | 269 | # CONFIG_KSM is not set |
240 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 270 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
241 | 271 | ||
@@ -320,7 +350,6 @@ CONFIG_GUSA=y | |||
320 | CONFIG_ZERO_PAGE_OFFSET=0x00004000 | 350 | CONFIG_ZERO_PAGE_OFFSET=0x00004000 |
321 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 351 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
322 | CONFIG_ENTRY_OFFSET=0x00001000 | 352 | CONFIG_ENTRY_OFFSET=0x00001000 |
323 | # CONFIG_UBC_WAKEUP is not set | ||
324 | CONFIG_CMDLINE_OVERWRITE=y | 353 | CONFIG_CMDLINE_OVERWRITE=y |
325 | # CONFIG_CMDLINE_EXTEND is not set | 354 | # CONFIG_CMDLINE_EXTEND is not set |
326 | CONFIG_CMDLINE="console=ttySC1,115200 mem=64M root=/dev/nfs" | 355 | CONFIG_CMDLINE="console=ttySC1,115200 mem=64M root=/dev/nfs" |
@@ -329,7 +358,6 @@ CONFIG_CMDLINE="console=ttySC1,115200 mem=64M root=/dev/nfs" | |||
329 | # Bus options | 358 | # Bus options |
330 | # | 359 | # |
331 | CONFIG_PCI=y | 360 | CONFIG_PCI=y |
332 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
333 | # CONFIG_PCIEPORTBUS is not set | 361 | # CONFIG_PCIEPORTBUS is not set |
334 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 362 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
335 | CONFIG_PCI_LEGACY=y | 363 | CONFIG_PCI_LEGACY=y |
@@ -433,9 +461,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
433 | # CONFIG_AF_RXRPC is not set | 461 | # CONFIG_AF_RXRPC is not set |
434 | CONFIG_WIRELESS=y | 462 | CONFIG_WIRELESS=y |
435 | # CONFIG_CFG80211 is not set | 463 | # CONFIG_CFG80211 is not set |
436 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
437 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
438 | # CONFIG_WIRELESS_EXT is not set | ||
439 | # CONFIG_LIB80211 is not set | 464 | # CONFIG_LIB80211 is not set |
440 | 465 | ||
441 | # | 466 | # |
@@ -468,6 +493,10 @@ CONFIG_BLK_DEV=y | |||
468 | # CONFIG_BLK_DEV_COW_COMMON is not set | 493 | # CONFIG_BLK_DEV_COW_COMMON is not set |
469 | CONFIG_BLK_DEV_LOOP=y | 494 | CONFIG_BLK_DEV_LOOP=y |
470 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 495 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
496 | |||
497 | # | ||
498 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
499 | # | ||
471 | CONFIG_BLK_DEV_NBD=y | 500 | CONFIG_BLK_DEV_NBD=y |
472 | # CONFIG_BLK_DEV_SX8 is not set | 501 | # CONFIG_BLK_DEV_SX8 is not set |
473 | CONFIG_BLK_DEV_RAM=y | 502 | CONFIG_BLK_DEV_RAM=y |
@@ -580,8 +609,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
580 | # CONFIG_ISCSI_TCP is not set | 609 | # CONFIG_ISCSI_TCP is not set |
581 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 610 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
582 | # CONFIG_SCSI_BNX2_ISCSI is not set | 611 | # CONFIG_SCSI_BNX2_ISCSI is not set |
612 | # CONFIG_BE2ISCSI is not set | ||
583 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 613 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
614 | # CONFIG_SCSI_HPSA is not set | ||
584 | # CONFIG_SCSI_3W_9XXX is not set | 615 | # CONFIG_SCSI_3W_9XXX is not set |
616 | # CONFIG_SCSI_3W_SAS is not set | ||
585 | # CONFIG_SCSI_ACARD is not set | 617 | # CONFIG_SCSI_ACARD is not set |
586 | # CONFIG_SCSI_AACRAID is not set | 618 | # CONFIG_SCSI_AACRAID is not set |
587 | # CONFIG_SCSI_AIC7XXX is not set | 619 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -614,7 +646,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
614 | # CONFIG_SCSI_NSP32 is not set | 646 | # CONFIG_SCSI_NSP32 is not set |
615 | # CONFIG_SCSI_DEBUG is not set | 647 | # CONFIG_SCSI_DEBUG is not set |
616 | # CONFIG_SCSI_PMCRAID is not set | 648 | # CONFIG_SCSI_PMCRAID is not set |
649 | # CONFIG_SCSI_PM8001 is not set | ||
617 | # CONFIG_SCSI_SRP is not set | 650 | # CONFIG_SCSI_SRP is not set |
651 | # CONFIG_SCSI_BFA_FC is not set | ||
618 | # CONFIG_SCSI_DH is not set | 652 | # CONFIG_SCSI_DH is not set |
619 | # CONFIG_SCSI_OSD_INITIATOR is not set | 653 | # CONFIG_SCSI_OSD_INITIATOR is not set |
620 | # CONFIG_ATA is not set | 654 | # CONFIG_ATA is not set |
@@ -685,6 +719,7 @@ CONFIG_8139CP=y | |||
685 | # CONFIG_SUNDANCE is not set | 719 | # CONFIG_SUNDANCE is not set |
686 | # CONFIG_TLAN is not set | 720 | # CONFIG_TLAN is not set |
687 | # CONFIG_KS8842 is not set | 721 | # CONFIG_KS8842 is not set |
722 | # CONFIG_KS8851_MLL is not set | ||
688 | # CONFIG_VIA_RHINE is not set | 723 | # CONFIG_VIA_RHINE is not set |
689 | # CONFIG_SC92031 is not set | 724 | # CONFIG_SC92031 is not set |
690 | # CONFIG_ATL2 is not set | 725 | # CONFIG_ATL2 is not set |
@@ -733,8 +768,9 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
733 | # CONFIG_BE2NET is not set | 768 | # CONFIG_BE2NET is not set |
734 | # CONFIG_TR is not set | 769 | # CONFIG_TR is not set |
735 | CONFIG_WLAN=y | 770 | CONFIG_WLAN=y |
736 | # CONFIG_WLAN_PRE80211 is not set | 771 | # CONFIG_ATMEL is not set |
737 | # CONFIG_WLAN_80211 is not set | 772 | # CONFIG_PRISM54 is not set |
773 | # CONFIG_HOSTAP is not set | ||
738 | 774 | ||
739 | # | 775 | # |
740 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 776 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -748,6 +784,7 @@ CONFIG_WLAN=y | |||
748 | # CONFIG_NETCONSOLE is not set | 784 | # CONFIG_NETCONSOLE is not set |
749 | # CONFIG_NETPOLL is not set | 785 | # CONFIG_NETPOLL is not set |
750 | # CONFIG_NET_POLL_CONTROLLER is not set | 786 | # CONFIG_NET_POLL_CONTROLLER is not set |
787 | # CONFIG_VMXNET3 is not set | ||
751 | # CONFIG_ISDN is not set | 788 | # CONFIG_ISDN is not set |
752 | # CONFIG_PHONE is not set | 789 | # CONFIG_PHONE is not set |
753 | 790 | ||
@@ -757,6 +794,7 @@ CONFIG_WLAN=y | |||
757 | CONFIG_INPUT=y | 794 | CONFIG_INPUT=y |
758 | # CONFIG_INPUT_FF_MEMLESS is not set | 795 | # CONFIG_INPUT_FF_MEMLESS is not set |
759 | # CONFIG_INPUT_POLLDEV is not set | 796 | # CONFIG_INPUT_POLLDEV is not set |
797 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
760 | 798 | ||
761 | # | 799 | # |
762 | # Userland interfaces | 800 | # Userland interfaces |
@@ -886,6 +924,7 @@ CONFIG_SSB_POSSIBLE=y | |||
886 | # | 924 | # |
887 | # CONFIG_MFD_CORE is not set | 925 | # CONFIG_MFD_CORE is not set |
888 | # CONFIG_MFD_SM501 is not set | 926 | # CONFIG_MFD_SM501 is not set |
927 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
889 | # CONFIG_HTC_PASIC3 is not set | 928 | # CONFIG_HTC_PASIC3 is not set |
890 | # CONFIG_MFD_TMIO is not set | 929 | # CONFIG_MFD_TMIO is not set |
891 | # CONFIG_REGULATOR is not set | 930 | # CONFIG_REGULATOR is not set |
@@ -1149,10 +1188,11 @@ CONFIG_DEBUG_FS=y | |||
1149 | # CONFIG_HEADERS_CHECK is not set | 1188 | # CONFIG_HEADERS_CHECK is not set |
1150 | # CONFIG_DEBUG_KERNEL is not set | 1189 | # CONFIG_DEBUG_KERNEL is not set |
1151 | CONFIG_STACKTRACE=y | 1190 | CONFIG_STACKTRACE=y |
1152 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1191 | CONFIG_DEBUG_BUGVERBOSE=y |
1153 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1192 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1154 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1193 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1155 | # CONFIG_LATENCYTOP is not set | 1194 | # CONFIG_LATENCYTOP is not set |
1195 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1156 | CONFIG_NOP_TRACER=y | 1196 | CONFIG_NOP_TRACER=y |
1157 | CONFIG_HAVE_FUNCTION_TRACER=y | 1197 | CONFIG_HAVE_FUNCTION_TRACER=y |
1158 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1198 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1172,8 +1212,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1172 | # CONFIG_SAMPLES is not set | 1212 | # CONFIG_SAMPLES is not set |
1173 | CONFIG_HAVE_ARCH_KGDB=y | 1213 | CONFIG_HAVE_ARCH_KGDB=y |
1174 | CONFIG_SH_STANDARD_BIOS=y | 1214 | CONFIG_SH_STANDARD_BIOS=y |
1175 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1176 | # CONFIG_EARLY_PRINTK is not set | ||
1177 | # CONFIG_DWARF_UNWINDER is not set | 1215 | # CONFIG_DWARF_UNWINDER is not set |
1178 | 1216 | ||
1179 | # | 1217 | # |
@@ -1182,7 +1220,11 @@ CONFIG_SH_STANDARD_BIOS=y | |||
1182 | # CONFIG_KEYS is not set | 1220 | # CONFIG_KEYS is not set |
1183 | # CONFIG_SECURITY is not set | 1221 | # CONFIG_SECURITY is not set |
1184 | # CONFIG_SECURITYFS is not set | 1222 | # CONFIG_SECURITYFS is not set |
1185 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1223 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1224 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1225 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1226 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1227 | CONFIG_DEFAULT_SECURITY="" | ||
1186 | CONFIG_CRYPTO=y | 1228 | CONFIG_CRYPTO=y |
1187 | 1229 | ||
1188 | # | 1230 | # |
diff --git a/arch/sh/configs/sh7710voipgw_defconfig b/arch/sh/configs/sh7710voipgw_defconfig index 662156ec921..35a3beeba18 100644 --- a/arch/sh/configs/sh7710voipgw_defconfig +++ b/arch/sh/configs/sh7710voipgw_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:11:49 2009 | 4 | # Mon Jan 4 14:43:04 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -29,6 +29,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
32 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 34 | CONFIG_CONSTRUCTORS=y |
34 | 35 | ||
@@ -60,6 +61,7 @@ CONFIG_POSIX_MQUEUE_SYSCTL=y | |||
60 | # | 61 | # |
61 | CONFIG_TREE_RCU=y | 62 | CONFIG_TREE_RCU=y |
62 | # CONFIG_TREE_PREEMPT_RCU is not set | 63 | # CONFIG_TREE_PREEMPT_RCU is not set |
64 | # CONFIG_TINY_RCU is not set | ||
63 | # CONFIG_RCU_TRACE is not set | 65 | # CONFIG_RCU_TRACE is not set |
64 | CONFIG_RCU_FANOUT=32 | 66 | CONFIG_RCU_FANOUT=32 |
65 | # CONFIG_RCU_FANOUT_EXACT is not set | 67 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -98,6 +100,7 @@ CONFIG_EVENTFD=y | |||
98 | # CONFIG_SHMEM is not set | 100 | # CONFIG_SHMEM is not set |
99 | CONFIG_AIO=y | 101 | CONFIG_AIO=y |
100 | CONFIG_HAVE_PERF_EVENTS=y | 102 | CONFIG_HAVE_PERF_EVENTS=y |
103 | CONFIG_PERF_USE_VMALLOC=y | ||
101 | 104 | ||
102 | # | 105 | # |
103 | # Kernel Performance Events And Counters | 106 | # Kernel Performance Events And Counters |
@@ -116,6 +119,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
116 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
117 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
118 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
122 | CONFIG_HAVE_DMA_ATTRS=y | ||
119 | CONFIG_HAVE_CLK=y | 123 | CONFIG_HAVE_CLK=y |
120 | CONFIG_HAVE_DMA_API_DEBUG=y | 124 | CONFIG_HAVE_DMA_API_DEBUG=y |
121 | 125 | ||
@@ -142,14 +146,41 @@ CONFIG_LBDAF=y | |||
142 | # IO Schedulers | 146 | # IO Schedulers |
143 | # | 147 | # |
144 | CONFIG_IOSCHED_NOOP=y | 148 | CONFIG_IOSCHED_NOOP=y |
145 | # CONFIG_IOSCHED_AS is not set | ||
146 | CONFIG_IOSCHED_DEADLINE=y | 149 | CONFIG_IOSCHED_DEADLINE=y |
147 | # CONFIG_IOSCHED_CFQ is not set | 150 | # CONFIG_IOSCHED_CFQ is not set |
148 | # CONFIG_DEFAULT_AS is not set | ||
149 | CONFIG_DEFAULT_DEADLINE=y | 151 | CONFIG_DEFAULT_DEADLINE=y |
150 | # CONFIG_DEFAULT_CFQ is not set | 152 | # CONFIG_DEFAULT_CFQ is not set |
151 | # CONFIG_DEFAULT_NOOP is not set | 153 | # CONFIG_DEFAULT_NOOP is not set |
152 | CONFIG_DEFAULT_IOSCHED="deadline" | 154 | CONFIG_DEFAULT_IOSCHED="deadline" |
155 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
160 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
161 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
163 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
164 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
165 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
166 | # CONFIG_INLINE_READ_LOCK is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
169 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
170 | CONFIG_INLINE_READ_UNLOCK=y | ||
171 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
172 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
173 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
174 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
178 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
179 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
181 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
182 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
183 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
153 | # CONFIG_FREEZER is not set | 184 | # CONFIG_FREEZER is not set |
154 | 185 | ||
155 | # | 186 | # |
@@ -225,8 +256,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
225 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 256 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
226 | CONFIG_ZONE_DMA_FLAG=0 | 257 | CONFIG_ZONE_DMA_FLAG=0 |
227 | CONFIG_NR_QUICK=2 | 258 | CONFIG_NR_QUICK=2 |
228 | CONFIG_HAVE_MLOCK=y | ||
229 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
230 | # CONFIG_KSM is not set | 259 | # CONFIG_KSM is not set |
231 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 260 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
232 | 261 | ||
@@ -460,9 +489,6 @@ CONFIG_NET_SCH_FIFO=y | |||
460 | # CONFIG_AF_RXRPC is not set | 489 | # CONFIG_AF_RXRPC is not set |
461 | CONFIG_WIRELESS=y | 490 | CONFIG_WIRELESS=y |
462 | # CONFIG_CFG80211 is not set | 491 | # CONFIG_CFG80211 is not set |
463 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
464 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
465 | # CONFIG_WIRELESS_EXT is not set | ||
466 | # CONFIG_LIB80211 is not set | 492 | # CONFIG_LIB80211 is not set |
467 | 493 | ||
468 | # | 494 | # |
@@ -571,6 +597,10 @@ CONFIG_MTD_RAM=y | |||
571 | CONFIG_BLK_DEV=y | 597 | CONFIG_BLK_DEV=y |
572 | # CONFIG_BLK_DEV_COW_COMMON is not set | 598 | # CONFIG_BLK_DEV_COW_COMMON is not set |
573 | # CONFIG_BLK_DEV_LOOP is not set | 599 | # CONFIG_BLK_DEV_LOOP is not set |
600 | |||
601 | # | ||
602 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
603 | # | ||
574 | # CONFIG_BLK_DEV_NBD is not set | 604 | # CONFIG_BLK_DEV_NBD is not set |
575 | # CONFIG_BLK_DEV_RAM is not set | 605 | # CONFIG_BLK_DEV_RAM is not set |
576 | # CONFIG_CDROM_PKTCDVD is not set | 606 | # CONFIG_CDROM_PKTCDVD is not set |
@@ -623,11 +653,11 @@ CONFIG_NET_ETHERNET=y | |||
623 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 653 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
624 | # CONFIG_B44 is not set | 654 | # CONFIG_B44 is not set |
625 | # CONFIG_KS8842 is not set | 655 | # CONFIG_KS8842 is not set |
656 | # CONFIG_KS8851_MLL is not set | ||
626 | CONFIG_NETDEV_1000=y | 657 | CONFIG_NETDEV_1000=y |
627 | CONFIG_NETDEV_10000=y | 658 | CONFIG_NETDEV_10000=y |
628 | CONFIG_WLAN=y | 659 | CONFIG_WLAN=y |
629 | # CONFIG_WLAN_PRE80211 is not set | 660 | # CONFIG_HOSTAP is not set |
630 | # CONFIG_WLAN_80211 is not set | ||
631 | 661 | ||
632 | # | 662 | # |
633 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 663 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -647,6 +677,7 @@ CONFIG_PHONE=y | |||
647 | CONFIG_INPUT=y | 677 | CONFIG_INPUT=y |
648 | # CONFIG_INPUT_FF_MEMLESS is not set | 678 | # CONFIG_INPUT_FF_MEMLESS is not set |
649 | # CONFIG_INPUT_POLLDEV is not set | 679 | # CONFIG_INPUT_POLLDEV is not set |
680 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
650 | 681 | ||
651 | # | 682 | # |
652 | # Userland interfaces | 683 | # Userland interfaces |
@@ -725,6 +756,7 @@ CONFIG_SSB_POSSIBLE=y | |||
725 | # | 756 | # |
726 | # CONFIG_MFD_CORE is not set | 757 | # CONFIG_MFD_CORE is not set |
727 | # CONFIG_MFD_SM501 is not set | 758 | # CONFIG_MFD_SM501 is not set |
759 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
728 | # CONFIG_HTC_PASIC3 is not set | 760 | # CONFIG_HTC_PASIC3 is not set |
729 | # CONFIG_MFD_TMIO is not set | 761 | # CONFIG_MFD_TMIO is not set |
730 | # CONFIG_REGULATOR is not set | 762 | # CONFIG_REGULATOR is not set |
@@ -792,6 +824,7 @@ CONFIG_RTC_LIB=y | |||
792 | # CONFIG_EXT2_FS is not set | 824 | # CONFIG_EXT2_FS is not set |
793 | # CONFIG_EXT3_FS is not set | 825 | # CONFIG_EXT3_FS is not set |
794 | # CONFIG_EXT4_FS is not set | 826 | # CONFIG_EXT4_FS is not set |
827 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
795 | # CONFIG_REISERFS_FS is not set | 828 | # CONFIG_REISERFS_FS is not set |
796 | # CONFIG_JFS_FS is not set | 829 | # CONFIG_JFS_FS is not set |
797 | # CONFIG_FS_POSIX_ACL is not set | 830 | # CONFIG_FS_POSIX_ACL is not set |
@@ -836,7 +869,6 @@ CONFIG_PROC_FS=y | |||
836 | CONFIG_PROC_SYSCTL=y | 869 | CONFIG_PROC_SYSCTL=y |
837 | CONFIG_PROC_PAGE_MONITOR=y | 870 | CONFIG_PROC_PAGE_MONITOR=y |
838 | CONFIG_SYSFS=y | 871 | CONFIG_SYSFS=y |
839 | # CONFIG_HUGETLBFS is not set | ||
840 | # CONFIG_HUGETLB_PAGE is not set | 872 | # CONFIG_HUGETLB_PAGE is not set |
841 | # CONFIG_CONFIGFS_FS is not set | 873 | # CONFIG_CONFIGFS_FS is not set |
842 | CONFIG_MISC_FILESYSTEMS=y | 874 | CONFIG_MISC_FILESYSTEMS=y |
@@ -899,10 +931,11 @@ CONFIG_FRAME_WARN=1024 | |||
899 | CONFIG_DEBUG_FS=y | 931 | CONFIG_DEBUG_FS=y |
900 | # CONFIG_HEADERS_CHECK is not set | 932 | # CONFIG_HEADERS_CHECK is not set |
901 | # CONFIG_DEBUG_KERNEL is not set | 933 | # CONFIG_DEBUG_KERNEL is not set |
902 | # CONFIG_DEBUG_BUGVERBOSE is not set | 934 | CONFIG_DEBUG_BUGVERBOSE=y |
903 | # CONFIG_DEBUG_MEMORY_INIT is not set | 935 | # CONFIG_DEBUG_MEMORY_INIT is not set |
904 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 936 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
905 | # CONFIG_LATENCYTOP is not set | 937 | # CONFIG_LATENCYTOP is not set |
938 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
906 | CONFIG_HAVE_FUNCTION_TRACER=y | 939 | CONFIG_HAVE_FUNCTION_TRACER=y |
907 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 940 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
908 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 941 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -916,7 +949,6 @@ CONFIG_TRACING_SUPPORT=y | |||
916 | # CONFIG_SAMPLES is not set | 949 | # CONFIG_SAMPLES is not set |
917 | CONFIG_HAVE_ARCH_KGDB=y | 950 | CONFIG_HAVE_ARCH_KGDB=y |
918 | # CONFIG_SH_STANDARD_BIOS is not set | 951 | # CONFIG_SH_STANDARD_BIOS is not set |
919 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
920 | # CONFIG_DWARF_UNWINDER is not set | 952 | # CONFIG_DWARF_UNWINDER is not set |
921 | 953 | ||
922 | # | 954 | # |
@@ -925,7 +957,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
925 | # CONFIG_KEYS is not set | 957 | # CONFIG_KEYS is not set |
926 | # CONFIG_SECURITY is not set | 958 | # CONFIG_SECURITY is not set |
927 | # CONFIG_SECURITYFS is not set | 959 | # CONFIG_SECURITYFS is not set |
928 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 960 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
961 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
962 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
963 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
964 | CONFIG_DEFAULT_SECURITY="" | ||
929 | CONFIG_CRYPTO=y | 965 | CONFIG_CRYPTO=y |
930 | 966 | ||
931 | # | 967 | # |
diff --git a/arch/sh/configs/sh7724_generic_defconfig b/arch/sh/configs/sh7724_generic_defconfig index e06719a30ba..a3056b69d2b 100644 --- a/arch/sh/configs/sh7724_generic_defconfig +++ b/arch/sh/configs/sh7724_generic_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:14:00 2009 | 4 | # Mon Jan 4 15:03:45 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_CMT=y | 24 | CONFIG_SYS_SUPPORTS_CMT=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -49,7 +51,6 @@ CONFIG_KERNEL_GZIP=y | |||
49 | # CONFIG_KERNEL_LZMA is not set | 51 | # CONFIG_KERNEL_LZMA is not set |
50 | CONFIG_SWAP=y | 52 | CONFIG_SWAP=y |
51 | CONFIG_SYSVIPC=y | 53 | CONFIG_SYSVIPC=y |
52 | CONFIG_SYSVIPC_SYSCTL=y | ||
53 | # CONFIG_BSD_PROCESS_ACCT is not set | 54 | # CONFIG_BSD_PROCESS_ACCT is not set |
54 | 55 | ||
55 | # | 56 | # |
@@ -57,6 +58,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
57 | # | 58 | # |
58 | CONFIG_TREE_RCU=y | 59 | CONFIG_TREE_RCU=y |
59 | # CONFIG_TREE_PREEMPT_RCU is not set | 60 | # CONFIG_TREE_PREEMPT_RCU is not set |
61 | # CONFIG_TINY_RCU is not set | ||
60 | # CONFIG_RCU_TRACE is not set | 62 | # CONFIG_RCU_TRACE is not set |
61 | CONFIG_RCU_FANOUT=32 | 63 | CONFIG_RCU_FANOUT=32 |
62 | # CONFIG_RCU_FANOUT_EXACT is not set | 64 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -80,11 +82,9 @@ CONFIG_CGROUPS=y | |||
80 | # CONFIG_NAMESPACES is not set | 82 | # CONFIG_NAMESPACES is not set |
81 | # CONFIG_BLK_DEV_INITRD is not set | 83 | # CONFIG_BLK_DEV_INITRD is not set |
82 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 84 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
83 | CONFIG_SYSCTL=y | ||
84 | CONFIG_ANON_INODES=y | 85 | CONFIG_ANON_INODES=y |
85 | CONFIG_EMBEDDED=y | 86 | CONFIG_EMBEDDED=y |
86 | # CONFIG_UID16 is not set | 87 | # CONFIG_UID16 is not set |
87 | CONFIG_SYSCTL_SYSCALL=y | ||
88 | CONFIG_KALLSYMS=y | 88 | CONFIG_KALLSYMS=y |
89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 89 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
90 | CONFIG_HOTPLUG=y | 90 | CONFIG_HOTPLUG=y |
@@ -100,6 +100,7 @@ CONFIG_EVENTFD=y | |||
100 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
101 | CONFIG_AIO=y | 101 | CONFIG_AIO=y |
102 | CONFIG_HAVE_PERF_EVENTS=y | 102 | CONFIG_HAVE_PERF_EVENTS=y |
103 | CONFIG_PERF_USE_VMALLOC=y | ||
103 | 104 | ||
104 | # | 105 | # |
105 | # Kernel Performance Events And Counters | 106 | # Kernel Performance Events And Counters |
@@ -120,6 +121,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
120 | CONFIG_HAVE_KPROBES=y | 121 | CONFIG_HAVE_KPROBES=y |
121 | CONFIG_HAVE_KRETPROBES=y | 122 | CONFIG_HAVE_KRETPROBES=y |
122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 123 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
124 | CONFIG_HAVE_DMA_ATTRS=y | ||
123 | CONFIG_HAVE_CLK=y | 125 | CONFIG_HAVE_CLK=y |
124 | CONFIG_HAVE_DMA_API_DEBUG=y | 126 | CONFIG_HAVE_DMA_API_DEBUG=y |
125 | 127 | ||
@@ -136,19 +138,48 @@ CONFIG_BLOCK=y | |||
136 | CONFIG_LBDAF=y | 138 | CONFIG_LBDAF=y |
137 | # CONFIG_BLK_DEV_BSG is not set | 139 | # CONFIG_BLK_DEV_BSG is not set |
138 | # CONFIG_BLK_DEV_INTEGRITY is not set | 140 | # CONFIG_BLK_DEV_INTEGRITY is not set |
141 | # CONFIG_BLK_CGROUP is not set | ||
139 | 142 | ||
140 | # | 143 | # |
141 | # IO Schedulers | 144 | # IO Schedulers |
142 | # | 145 | # |
143 | CONFIG_IOSCHED_NOOP=y | 146 | CONFIG_IOSCHED_NOOP=y |
144 | CONFIG_IOSCHED_AS=y | ||
145 | CONFIG_IOSCHED_DEADLINE=y | 147 | CONFIG_IOSCHED_DEADLINE=y |
146 | CONFIG_IOSCHED_CFQ=y | 148 | CONFIG_IOSCHED_CFQ=y |
147 | CONFIG_DEFAULT_AS=y | 149 | # CONFIG_CFQ_GROUP_IOSCHED is not set |
148 | # CONFIG_DEFAULT_DEADLINE is not set | 150 | # CONFIG_DEFAULT_DEADLINE is not set |
149 | # CONFIG_DEFAULT_CFQ is not set | 151 | CONFIG_DEFAULT_CFQ=y |
150 | # CONFIG_DEFAULT_NOOP is not set | 152 | # CONFIG_DEFAULT_NOOP is not set |
151 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 153 | CONFIG_DEFAULT_IOSCHED="cfq" |
154 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
155 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
159 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
160 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
161 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
162 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
163 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
164 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
165 | # CONFIG_INLINE_READ_LOCK is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
168 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
169 | CONFIG_INLINE_READ_UNLOCK=y | ||
170 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
171 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
172 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
173 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
177 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
178 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
179 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
180 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
181 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
182 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
152 | CONFIG_FREEZER=y | 183 | CONFIG_FREEZER=y |
153 | 184 | ||
154 | # | 185 | # |
@@ -204,6 +235,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
204 | CONFIG_MEMORY_START=0x08000000 | 235 | CONFIG_MEMORY_START=0x08000000 |
205 | CONFIG_MEMORY_SIZE=0x04000000 | 236 | CONFIG_MEMORY_SIZE=0x04000000 |
206 | CONFIG_29BIT=y | 237 | CONFIG_29BIT=y |
238 | # CONFIG_PMB_ENABLE is not set | ||
207 | # CONFIG_X2TLB is not set | 239 | # CONFIG_X2TLB is not set |
208 | CONFIG_VSYSCALL=y | 240 | CONFIG_VSYSCALL=y |
209 | CONFIG_ARCH_FLATMEM_ENABLE=y | 241 | CONFIG_ARCH_FLATMEM_ENABLE=y |
@@ -225,17 +257,12 @@ CONFIG_SPARSEMEM_MANUAL=y | |||
225 | CONFIG_SPARSEMEM=y | 257 | CONFIG_SPARSEMEM=y |
226 | CONFIG_HAVE_MEMORY_PRESENT=y | 258 | CONFIG_HAVE_MEMORY_PRESENT=y |
227 | CONFIG_SPARSEMEM_STATIC=y | 259 | CONFIG_SPARSEMEM_STATIC=y |
228 | 260 | # CONFIG_MEMORY_HOTPLUG is not set | |
229 | # | ||
230 | # Memory hotplug is currently incompatible with Software Suspend | ||
231 | # | ||
232 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 261 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
233 | CONFIG_MIGRATION=y | 262 | CONFIG_MIGRATION=y |
234 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 263 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
235 | CONFIG_ZONE_DMA_FLAG=0 | 264 | CONFIG_ZONE_DMA_FLAG=0 |
236 | CONFIG_NR_QUICK=2 | 265 | CONFIG_NR_QUICK=2 |
237 | CONFIG_HAVE_MLOCK=y | ||
238 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
239 | # CONFIG_KSM is not set | 266 | # CONFIG_KSM is not set |
240 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 267 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
241 | 268 | ||
@@ -269,7 +296,6 @@ CONFIG_CPU_HAS_FPU=y | |||
269 | # | 296 | # |
270 | CONFIG_SH_TIMER_TMU=y | 297 | CONFIG_SH_TIMER_TMU=y |
271 | CONFIG_SH_TIMER_CMT=y | 298 | CONFIG_SH_TIMER_CMT=y |
272 | CONFIG_SH_PCLK_FREQ=41666666 | ||
273 | CONFIG_SH_CLK_CPG=y | 299 | CONFIG_SH_CLK_CPG=y |
274 | CONFIG_TICK_ONESHOT=y | 300 | CONFIG_TICK_ONESHOT=y |
275 | CONFIG_NO_HZ=y | 301 | CONFIG_NO_HZ=y |
@@ -388,6 +414,10 @@ CONFIG_EXTRA_FIRMWARE="" | |||
388 | CONFIG_BLK_DEV=y | 414 | CONFIG_BLK_DEV=y |
389 | # CONFIG_BLK_DEV_COW_COMMON is not set | 415 | # CONFIG_BLK_DEV_COW_COMMON is not set |
390 | # CONFIG_BLK_DEV_LOOP is not set | 416 | # CONFIG_BLK_DEV_LOOP is not set |
417 | |||
418 | # | ||
419 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
420 | # | ||
391 | # CONFIG_BLK_DEV_RAM is not set | 421 | # CONFIG_BLK_DEV_RAM is not set |
392 | # CONFIG_CDROM_PKTCDVD is not set | 422 | # CONFIG_CDROM_PKTCDVD is not set |
393 | # CONFIG_BLK_DEV_HD is not set | 423 | # CONFIG_BLK_DEV_HD is not set |
@@ -476,7 +506,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
476 | # | 506 | # |
477 | # Miscellaneous I2C Chip support | 507 | # Miscellaneous I2C Chip support |
478 | # | 508 | # |
479 | # CONFIG_DS1682 is not set | ||
480 | # CONFIG_SENSORS_TSL2550 is not set | 509 | # CONFIG_SENSORS_TSL2550 is not set |
481 | # CONFIG_I2C_DEBUG_CORE is not set | 510 | # CONFIG_I2C_DEBUG_CORE is not set |
482 | # CONFIG_I2C_DEBUG_ALGO is not set | 511 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -505,15 +534,18 @@ CONFIG_SSB_POSSIBLE=y | |||
505 | # | 534 | # |
506 | # CONFIG_MFD_CORE is not set | 535 | # CONFIG_MFD_CORE is not set |
507 | # CONFIG_MFD_SM501 is not set | 536 | # CONFIG_MFD_SM501 is not set |
537 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
508 | # CONFIG_HTC_PASIC3 is not set | 538 | # CONFIG_HTC_PASIC3 is not set |
509 | # CONFIG_TWL4030_CORE is not set | 539 | # CONFIG_TWL4030_CORE is not set |
510 | # CONFIG_MFD_TMIO is not set | 540 | # CONFIG_MFD_TMIO is not set |
511 | # CONFIG_PMIC_DA903X is not set | 541 | # CONFIG_PMIC_DA903X is not set |
542 | # CONFIG_PMIC_ADP5520 is not set | ||
512 | # CONFIG_MFD_WM8400 is not set | 543 | # CONFIG_MFD_WM8400 is not set |
513 | # CONFIG_MFD_WM831X is not set | 544 | # CONFIG_MFD_WM831X is not set |
514 | # CONFIG_MFD_WM8350_I2C is not set | 545 | # CONFIG_MFD_WM8350_I2C is not set |
515 | # CONFIG_MFD_PCF50633 is not set | 546 | # CONFIG_MFD_PCF50633 is not set |
516 | # CONFIG_AB3100_CORE is not set | 547 | # CONFIG_AB3100_CORE is not set |
548 | # CONFIG_MFD_88PM8607 is not set | ||
517 | # CONFIG_REGULATOR is not set | 549 | # CONFIG_REGULATOR is not set |
518 | # CONFIG_MEDIA_SUPPORT is not set | 550 | # CONFIG_MEDIA_SUPPORT is not set |
519 | 551 | ||
@@ -561,6 +593,7 @@ CONFIG_RTC_INTF_DEV=y | |||
561 | # CONFIG_RTC_DRV_PCF8563 is not set | 593 | # CONFIG_RTC_DRV_PCF8563 is not set |
562 | # CONFIG_RTC_DRV_PCF8583 is not set | 594 | # CONFIG_RTC_DRV_PCF8583 is not set |
563 | # CONFIG_RTC_DRV_M41T80 is not set | 595 | # CONFIG_RTC_DRV_M41T80 is not set |
596 | # CONFIG_RTC_DRV_BQ32K is not set | ||
564 | # CONFIG_RTC_DRV_S35390A is not set | 597 | # CONFIG_RTC_DRV_S35390A is not set |
565 | # CONFIG_RTC_DRV_FM3130 is not set | 598 | # CONFIG_RTC_DRV_FM3130 is not set |
566 | # CONFIG_RTC_DRV_RX8581 is not set | 599 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -581,7 +614,9 @@ CONFIG_RTC_INTF_DEV=y | |||
581 | # CONFIG_RTC_DRV_M48T86 is not set | 614 | # CONFIG_RTC_DRV_M48T86 is not set |
582 | # CONFIG_RTC_DRV_M48T35 is not set | 615 | # CONFIG_RTC_DRV_M48T35 is not set |
583 | # CONFIG_RTC_DRV_M48T59 is not set | 616 | # CONFIG_RTC_DRV_M48T59 is not set |
617 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
584 | # CONFIG_RTC_DRV_BQ4802 is not set | 618 | # CONFIG_RTC_DRV_BQ4802 is not set |
619 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
585 | # CONFIG_RTC_DRV_V3020 is not set | 620 | # CONFIG_RTC_DRV_V3020 is not set |
586 | 621 | ||
587 | # | 622 | # |
@@ -608,6 +643,7 @@ CONFIG_UIO_PDRV_GENIRQ=y | |||
608 | # CONFIG_EXT2_FS is not set | 643 | # CONFIG_EXT2_FS is not set |
609 | # CONFIG_EXT3_FS is not set | 644 | # CONFIG_EXT3_FS is not set |
610 | # CONFIG_EXT4_FS is not set | 645 | # CONFIG_EXT4_FS is not set |
646 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
611 | # CONFIG_REISERFS_FS is not set | 647 | # CONFIG_REISERFS_FS is not set |
612 | # CONFIG_JFS_FS is not set | 648 | # CONFIG_JFS_FS is not set |
613 | # CONFIG_FS_POSIX_ACL is not set | 649 | # CONFIG_FS_POSIX_ACL is not set |
@@ -675,11 +711,10 @@ CONFIG_DEBUG_FS=y | |||
675 | # CONFIG_HEADERS_CHECK is not set | 711 | # CONFIG_HEADERS_CHECK is not set |
676 | # CONFIG_DEBUG_KERNEL is not set | 712 | # CONFIG_DEBUG_KERNEL is not set |
677 | CONFIG_STACKTRACE=y | 713 | CONFIG_STACKTRACE=y |
678 | # CONFIG_DEBUG_BUGVERBOSE is not set | 714 | CONFIG_DEBUG_BUGVERBOSE=y |
679 | # CONFIG_DEBUG_MEMORY_INIT is not set | 715 | # CONFIG_DEBUG_MEMORY_INIT is not set |
680 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 716 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
681 | # CONFIG_LATENCYTOP is not set | 717 | # CONFIG_LATENCYTOP is not set |
682 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
683 | CONFIG_NOP_TRACER=y | 718 | CONFIG_NOP_TRACER=y |
684 | CONFIG_HAVE_FUNCTION_TRACER=y | 719 | CONFIG_HAVE_FUNCTION_TRACER=y |
685 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 720 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -699,7 +734,6 @@ CONFIG_TRACING_SUPPORT=y | |||
699 | # CONFIG_SAMPLES is not set | 734 | # CONFIG_SAMPLES is not set |
700 | CONFIG_HAVE_ARCH_KGDB=y | 735 | CONFIG_HAVE_ARCH_KGDB=y |
701 | # CONFIG_SH_STANDARD_BIOS is not set | 736 | # CONFIG_SH_STANDARD_BIOS is not set |
702 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
703 | # CONFIG_DWARF_UNWINDER is not set | 737 | # CONFIG_DWARF_UNWINDER is not set |
704 | 738 | ||
705 | # | 739 | # |
@@ -707,7 +741,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
707 | # | 741 | # |
708 | # CONFIG_KEYS is not set | 742 | # CONFIG_KEYS is not set |
709 | # CONFIG_SECURITYFS is not set | 743 | # CONFIG_SECURITYFS is not set |
710 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 744 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
745 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
746 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
747 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
748 | CONFIG_DEFAULT_SECURITY="" | ||
711 | # CONFIG_CRYPTO is not set | 749 | # CONFIG_CRYPTO is not set |
712 | CONFIG_BINARY_PRINTF=y | 750 | CONFIG_BINARY_PRINTF=y |
713 | 751 | ||
diff --git a/arch/sh/configs/sh7763rdp_defconfig b/arch/sh/configs/sh7763rdp_defconfig index 194ff703e23..04b841b2942 100644 --- a/arch/sh/configs/sh7763rdp_defconfig +++ b/arch/sh/configs/sh7763rdp_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:15:37 2009 | 4 | # Mon Jan 4 15:05:29 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -59,6 +61,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
59 | # | 61 | # |
60 | CONFIG_TREE_RCU=y | 62 | CONFIG_TREE_RCU=y |
61 | # CONFIG_TREE_PREEMPT_RCU is not set | 63 | # CONFIG_TREE_PREEMPT_RCU is not set |
64 | # CONFIG_TINY_RCU is not set | ||
62 | # CONFIG_RCU_TRACE is not set | 65 | # CONFIG_RCU_TRACE is not set |
63 | CONFIG_RCU_FANOUT=32 | 66 | CONFIG_RCU_FANOUT=32 |
64 | # CONFIG_RCU_FANOUT_EXACT is not set | 67 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,6 +106,7 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -124,6 +128,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
124 | CONFIG_HAVE_KPROBES=y | 128 | CONFIG_HAVE_KPROBES=y |
125 | CONFIG_HAVE_KRETPROBES=y | 129 | CONFIG_HAVE_KRETPROBES=y |
126 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 130 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
131 | CONFIG_HAVE_DMA_ATTRS=y | ||
127 | CONFIG_HAVE_CLK=y | 132 | CONFIG_HAVE_CLK=y |
128 | CONFIG_HAVE_DMA_API_DEBUG=y | 133 | CONFIG_HAVE_DMA_API_DEBUG=y |
129 | 134 | ||
@@ -150,14 +155,41 @@ CONFIG_LBDAF=y | |||
150 | # IO Schedulers | 155 | # IO Schedulers |
151 | # | 156 | # |
152 | CONFIG_IOSCHED_NOOP=y | 157 | CONFIG_IOSCHED_NOOP=y |
153 | CONFIG_IOSCHED_AS=y | ||
154 | CONFIG_IOSCHED_DEADLINE=y | 158 | CONFIG_IOSCHED_DEADLINE=y |
155 | CONFIG_IOSCHED_CFQ=y | 159 | CONFIG_IOSCHED_CFQ=y |
156 | CONFIG_DEFAULT_AS=y | ||
157 | # CONFIG_DEFAULT_DEADLINE is not set | 160 | # CONFIG_DEFAULT_DEADLINE is not set |
158 | # CONFIG_DEFAULT_CFQ is not set | 161 | CONFIG_DEFAULT_CFQ=y |
159 | # CONFIG_DEFAULT_NOOP is not set | 162 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 163 | CONFIG_DEFAULT_IOSCHED="cfq" |
164 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
165 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
168 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
170 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
172 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
174 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
175 | # CONFIG_INLINE_READ_LOCK is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
177 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
178 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
179 | CONFIG_INLINE_READ_UNLOCK=y | ||
180 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
181 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
182 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
183 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
186 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
188 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
190 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
192 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
161 | # CONFIG_FREEZER is not set | 193 | # CONFIG_FREEZER is not set |
162 | 194 | ||
163 | # | 195 | # |
@@ -211,6 +243,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
211 | CONFIG_MEMORY_START=0x0c000000 | 243 | CONFIG_MEMORY_START=0x0c000000 |
212 | CONFIG_MEMORY_SIZE=0x04000000 | 244 | CONFIG_MEMORY_SIZE=0x04000000 |
213 | CONFIG_29BIT=y | 245 | CONFIG_29BIT=y |
246 | # CONFIG_PMB_ENABLE is not set | ||
214 | CONFIG_VSYSCALL=y | 247 | CONFIG_VSYSCALL=y |
215 | CONFIG_ARCH_FLATMEM_ENABLE=y | 248 | CONFIG_ARCH_FLATMEM_ENABLE=y |
216 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 249 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
@@ -237,8 +270,6 @@ CONFIG_MIGRATION=y | |||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 270 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=0 | 271 | CONFIG_ZONE_DMA_FLAG=0 |
239 | CONFIG_NR_QUICK=2 | 272 | CONFIG_NR_QUICK=2 |
240 | CONFIG_HAVE_MLOCK=y | ||
241 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
242 | # CONFIG_KSM is not set | 273 | # CONFIG_KSM is not set |
243 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 274 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
244 | 275 | ||
@@ -421,10 +452,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
421 | # CONFIG_AF_RXRPC is not set | 452 | # CONFIG_AF_RXRPC is not set |
422 | CONFIG_WIRELESS=y | 453 | CONFIG_WIRELESS=y |
423 | # CONFIG_CFG80211 is not set | 454 | # CONFIG_CFG80211 is not set |
424 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
425 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
426 | CONFIG_WIRELESS_EXT=y | ||
427 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
428 | # CONFIG_LIB80211 is not set | 455 | # CONFIG_LIB80211 is not set |
429 | 456 | ||
430 | # | 457 | # |
@@ -509,7 +536,6 @@ CONFIG_MTD_CFI_UTIL=y | |||
509 | CONFIG_MTD_COMPLEX_MAPPINGS=y | 536 | CONFIG_MTD_COMPLEX_MAPPINGS=y |
510 | CONFIG_MTD_PHYSMAP=y | 537 | CONFIG_MTD_PHYSMAP=y |
511 | # CONFIG_MTD_PHYSMAP_COMPAT is not set | 538 | # CONFIG_MTD_PHYSMAP_COMPAT is not set |
512 | # CONFIG_MTD_GPIO_ADDR is not set | ||
513 | # CONFIG_MTD_PLATRAM is not set | 539 | # CONFIG_MTD_PLATRAM is not set |
514 | 540 | ||
515 | # | 541 | # |
@@ -542,6 +568,10 @@ CONFIG_MTD_PHYSMAP=y | |||
542 | CONFIG_BLK_DEV=y | 568 | CONFIG_BLK_DEV=y |
543 | # CONFIG_BLK_DEV_COW_COMMON is not set | 569 | # CONFIG_BLK_DEV_COW_COMMON is not set |
544 | # CONFIG_BLK_DEV_LOOP is not set | 570 | # CONFIG_BLK_DEV_LOOP is not set |
571 | |||
572 | # | ||
573 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
574 | # | ||
545 | # CONFIG_BLK_DEV_NBD is not set | 575 | # CONFIG_BLK_DEV_NBD is not set |
546 | # CONFIG_BLK_DEV_UB is not set | 576 | # CONFIG_BLK_DEV_UB is not set |
547 | # CONFIG_BLK_DEV_RAM is not set | 577 | # CONFIG_BLK_DEV_RAM is not set |
@@ -640,11 +670,12 @@ CONFIG_SH_ETH=y | |||
640 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 670 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
641 | # CONFIG_B44 is not set | 671 | # CONFIG_B44 is not set |
642 | # CONFIG_KS8842 is not set | 672 | # CONFIG_KS8842 is not set |
673 | # CONFIG_KS8851_MLL is not set | ||
643 | # CONFIG_NETDEV_1000 is not set | 674 | # CONFIG_NETDEV_1000 is not set |
644 | # CONFIG_NETDEV_10000 is not set | 675 | # CONFIG_NETDEV_10000 is not set |
645 | CONFIG_WLAN=y | 676 | CONFIG_WLAN=y |
646 | # CONFIG_WLAN_PRE80211 is not set | 677 | # CONFIG_USB_ZD1201 is not set |
647 | # CONFIG_WLAN_80211 is not set | 678 | # CONFIG_HOSTAP is not set |
648 | 679 | ||
649 | # | 680 | # |
650 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 681 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -673,6 +704,7 @@ CONFIG_WLAN=y | |||
673 | CONFIG_INPUT=y | 704 | CONFIG_INPUT=y |
674 | # CONFIG_INPUT_FF_MEMLESS is not set | 705 | # CONFIG_INPUT_FF_MEMLESS is not set |
675 | # CONFIG_INPUT_POLLDEV is not set | 706 | # CONFIG_INPUT_POLLDEV is not set |
707 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
676 | 708 | ||
677 | # | 709 | # |
678 | # Userland interfaces | 710 | # Userland interfaces |
@@ -756,6 +788,7 @@ CONFIG_SSB_POSSIBLE=y | |||
756 | # | 788 | # |
757 | # CONFIG_MFD_CORE is not set | 789 | # CONFIG_MFD_CORE is not set |
758 | # CONFIG_MFD_SM501 is not set | 790 | # CONFIG_MFD_SM501 is not set |
791 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
759 | # CONFIG_HTC_PASIC3 is not set | 792 | # CONFIG_HTC_PASIC3 is not set |
760 | # CONFIG_MFD_TMIO is not set | 793 | # CONFIG_MFD_TMIO is not set |
761 | # CONFIG_REGULATOR is not set | 794 | # CONFIG_REGULATOR is not set |
@@ -949,6 +982,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
949 | # CONFIG_MMC_SDHCI is not set | 982 | # CONFIG_MMC_SDHCI is not set |
950 | # CONFIG_MMC_AT91 is not set | 983 | # CONFIG_MMC_AT91 is not set |
951 | # CONFIG_MMC_ATMELMCI is not set | 984 | # CONFIG_MMC_ATMELMCI is not set |
985 | # CONFIG_MMC_TMIO is not set | ||
952 | # CONFIG_MEMSTICK is not set | 986 | # CONFIG_MEMSTICK is not set |
953 | # CONFIG_NEW_LEDS is not set | 987 | # CONFIG_NEW_LEDS is not set |
954 | # CONFIG_ACCESSIBILITY is not set | 988 | # CONFIG_ACCESSIBILITY is not set |
@@ -1129,10 +1163,11 @@ CONFIG_DEBUG_FS=y | |||
1129 | # CONFIG_HEADERS_CHECK is not set | 1163 | # CONFIG_HEADERS_CHECK is not set |
1130 | # CONFIG_DEBUG_KERNEL is not set | 1164 | # CONFIG_DEBUG_KERNEL is not set |
1131 | CONFIG_STACKTRACE=y | 1165 | CONFIG_STACKTRACE=y |
1132 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1166 | CONFIG_DEBUG_BUGVERBOSE=y |
1133 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1167 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1134 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1168 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1135 | # CONFIG_LATENCYTOP is not set | 1169 | # CONFIG_LATENCYTOP is not set |
1170 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1136 | CONFIG_NOP_TRACER=y | 1171 | CONFIG_NOP_TRACER=y |
1137 | CONFIG_HAVE_FUNCTION_TRACER=y | 1172 | CONFIG_HAVE_FUNCTION_TRACER=y |
1138 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1173 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1152,7 +1187,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1152 | # CONFIG_SAMPLES is not set | 1187 | # CONFIG_SAMPLES is not set |
1153 | CONFIG_HAVE_ARCH_KGDB=y | 1188 | CONFIG_HAVE_ARCH_KGDB=y |
1154 | # CONFIG_SH_STANDARD_BIOS is not set | 1189 | # CONFIG_SH_STANDARD_BIOS is not set |
1155 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1156 | # CONFIG_DWARF_UNWINDER is not set | 1190 | # CONFIG_DWARF_UNWINDER is not set |
1157 | 1191 | ||
1158 | # | 1192 | # |
@@ -1161,7 +1195,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1161 | # CONFIG_KEYS is not set | 1195 | # CONFIG_KEYS is not set |
1162 | # CONFIG_SECURITY is not set | 1196 | # CONFIG_SECURITY is not set |
1163 | # CONFIG_SECURITYFS is not set | 1197 | # CONFIG_SECURITYFS is not set |
1164 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1198 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1199 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1200 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1201 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1202 | CONFIG_DEFAULT_SECURITY="" | ||
1165 | CONFIG_CRYPTO=y | 1203 | CONFIG_CRYPTO=y |
1166 | 1204 | ||
1167 | # | 1205 | # |
diff --git a/arch/sh/configs/sh7770_generic_defconfig b/arch/sh/configs/sh7770_generic_defconfig index 34bed5541f3..7b247053ece 100644 --- a/arch/sh/configs/sh7770_generic_defconfig +++ b/arch/sh/configs/sh7770_generic_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:17:16 2009 | 4 | # Mon Jan 4 15:06:28 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -48,7 +50,6 @@ CONFIG_KERNEL_GZIP=y | |||
48 | # CONFIG_KERNEL_LZMA is not set | 50 | # CONFIG_KERNEL_LZMA is not set |
49 | CONFIG_SWAP=y | 51 | CONFIG_SWAP=y |
50 | CONFIG_SYSVIPC=y | 52 | CONFIG_SYSVIPC=y |
51 | CONFIG_SYSVIPC_SYSCTL=y | ||
52 | # CONFIG_BSD_PROCESS_ACCT is not set | 53 | # CONFIG_BSD_PROCESS_ACCT is not set |
53 | 54 | ||
54 | # | 55 | # |
@@ -56,6 +57,7 @@ CONFIG_SYSVIPC_SYSCTL=y | |||
56 | # | 57 | # |
57 | CONFIG_TREE_RCU=y | 58 | CONFIG_TREE_RCU=y |
58 | # CONFIG_TREE_PREEMPT_RCU is not set | 59 | # CONFIG_TREE_PREEMPT_RCU is not set |
60 | # CONFIG_TINY_RCU is not set | ||
59 | # CONFIG_RCU_TRACE is not set | 61 | # CONFIG_RCU_TRACE is not set |
60 | CONFIG_RCU_FANOUT=32 | 62 | CONFIG_RCU_FANOUT=32 |
61 | # CONFIG_RCU_FANOUT_EXACT is not set | 63 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -79,11 +81,9 @@ CONFIG_CGROUPS=y | |||
79 | # CONFIG_NAMESPACES is not set | 81 | # CONFIG_NAMESPACES is not set |
80 | # CONFIG_BLK_DEV_INITRD is not set | 82 | # CONFIG_BLK_DEV_INITRD is not set |
81 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y | 83 | CONFIG_CC_OPTIMIZE_FOR_SIZE=y |
82 | CONFIG_SYSCTL=y | ||
83 | CONFIG_ANON_INODES=y | 84 | CONFIG_ANON_INODES=y |
84 | CONFIG_EMBEDDED=y | 85 | CONFIG_EMBEDDED=y |
85 | # CONFIG_UID16 is not set | 86 | # CONFIG_UID16 is not set |
86 | CONFIG_SYSCTL_SYSCALL=y | ||
87 | CONFIG_KALLSYMS=y | 87 | CONFIG_KALLSYMS=y |
88 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 88 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
89 | CONFIG_HOTPLUG=y | 89 | CONFIG_HOTPLUG=y |
@@ -99,6 +99,7 @@ CONFIG_EVENTFD=y | |||
99 | CONFIG_SHMEM=y | 99 | CONFIG_SHMEM=y |
100 | CONFIG_AIO=y | 100 | CONFIG_AIO=y |
101 | CONFIG_HAVE_PERF_EVENTS=y | 101 | CONFIG_HAVE_PERF_EVENTS=y |
102 | CONFIG_PERF_USE_VMALLOC=y | ||
102 | 103 | ||
103 | # | 104 | # |
104 | # Kernel Performance Events And Counters | 105 | # Kernel Performance Events And Counters |
@@ -119,6 +120,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
119 | CONFIG_HAVE_KPROBES=y | 120 | CONFIG_HAVE_KPROBES=y |
120 | CONFIG_HAVE_KRETPROBES=y | 121 | CONFIG_HAVE_KRETPROBES=y |
121 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 122 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
123 | CONFIG_HAVE_DMA_ATTRS=y | ||
122 | CONFIG_HAVE_CLK=y | 124 | CONFIG_HAVE_CLK=y |
123 | CONFIG_HAVE_DMA_API_DEBUG=y | 125 | CONFIG_HAVE_DMA_API_DEBUG=y |
124 | 126 | ||
@@ -135,19 +137,48 @@ CONFIG_BLOCK=y | |||
135 | CONFIG_LBDAF=y | 137 | CONFIG_LBDAF=y |
136 | # CONFIG_BLK_DEV_BSG is not set | 138 | # CONFIG_BLK_DEV_BSG is not set |
137 | # CONFIG_BLK_DEV_INTEGRITY is not set | 139 | # CONFIG_BLK_DEV_INTEGRITY is not set |
140 | # CONFIG_BLK_CGROUP is not set | ||
138 | 141 | ||
139 | # | 142 | # |
140 | # IO Schedulers | 143 | # IO Schedulers |
141 | # | 144 | # |
142 | CONFIG_IOSCHED_NOOP=y | 145 | CONFIG_IOSCHED_NOOP=y |
143 | CONFIG_IOSCHED_AS=y | ||
144 | CONFIG_IOSCHED_DEADLINE=y | 146 | CONFIG_IOSCHED_DEADLINE=y |
145 | CONFIG_IOSCHED_CFQ=y | 147 | CONFIG_IOSCHED_CFQ=y |
146 | CONFIG_DEFAULT_AS=y | 148 | # CONFIG_CFQ_GROUP_IOSCHED is not set |
147 | # CONFIG_DEFAULT_DEADLINE is not set | 149 | # CONFIG_DEFAULT_DEADLINE is not set |
148 | # CONFIG_DEFAULT_CFQ is not set | 150 | CONFIG_DEFAULT_CFQ=y |
149 | # CONFIG_DEFAULT_NOOP is not set | 151 | # CONFIG_DEFAULT_NOOP is not set |
150 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 152 | CONFIG_DEFAULT_IOSCHED="cfq" |
153 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
154 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
158 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
159 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
160 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
161 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
162 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
163 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
164 | # CONFIG_INLINE_READ_LOCK is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
168 | CONFIG_INLINE_READ_UNLOCK=y | ||
169 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
170 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
171 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
172 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
177 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
178 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
179 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
180 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
181 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
151 | CONFIG_FREEZER=y | 182 | CONFIG_FREEZER=y |
152 | 183 | ||
153 | # | 184 | # |
@@ -201,6 +232,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
201 | CONFIG_MEMORY_START=0x08000000 | 232 | CONFIG_MEMORY_START=0x08000000 |
202 | CONFIG_MEMORY_SIZE=0x04000000 | 233 | CONFIG_MEMORY_SIZE=0x04000000 |
203 | CONFIG_29BIT=y | 234 | CONFIG_29BIT=y |
235 | # CONFIG_PMB_ENABLE is not set | ||
204 | CONFIG_VSYSCALL=y | 236 | CONFIG_VSYSCALL=y |
205 | CONFIG_ARCH_FLATMEM_ENABLE=y | 237 | CONFIG_ARCH_FLATMEM_ENABLE=y |
206 | CONFIG_ARCH_SPARSEMEM_ENABLE=y | 238 | CONFIG_ARCH_SPARSEMEM_ENABLE=y |
@@ -221,17 +253,12 @@ CONFIG_SPARSEMEM_MANUAL=y | |||
221 | CONFIG_SPARSEMEM=y | 253 | CONFIG_SPARSEMEM=y |
222 | CONFIG_HAVE_MEMORY_PRESENT=y | 254 | CONFIG_HAVE_MEMORY_PRESENT=y |
223 | CONFIG_SPARSEMEM_STATIC=y | 255 | CONFIG_SPARSEMEM_STATIC=y |
224 | 256 | # CONFIG_MEMORY_HOTPLUG is not set | |
225 | # | ||
226 | # Memory hotplug is currently incompatible with Software Suspend | ||
227 | # | ||
228 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 257 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
229 | CONFIG_MIGRATION=y | 258 | CONFIG_MIGRATION=y |
230 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 259 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
231 | CONFIG_ZONE_DMA_FLAG=0 | 260 | CONFIG_ZONE_DMA_FLAG=0 |
232 | CONFIG_NR_QUICK=2 | 261 | CONFIG_NR_QUICK=2 |
233 | CONFIG_HAVE_MLOCK=y | ||
234 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
235 | # CONFIG_KSM is not set | 262 | # CONFIG_KSM is not set |
236 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 263 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
237 | 264 | ||
@@ -379,6 +406,10 @@ CONFIG_EXTRA_FIRMWARE="" | |||
379 | CONFIG_BLK_DEV=y | 406 | CONFIG_BLK_DEV=y |
380 | # CONFIG_BLK_DEV_COW_COMMON is not set | 407 | # CONFIG_BLK_DEV_COW_COMMON is not set |
381 | # CONFIG_BLK_DEV_LOOP is not set | 408 | # CONFIG_BLK_DEV_LOOP is not set |
409 | |||
410 | # | ||
411 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
412 | # | ||
382 | # CONFIG_BLK_DEV_RAM is not set | 413 | # CONFIG_BLK_DEV_RAM is not set |
383 | # CONFIG_CDROM_PKTCDVD is not set | 414 | # CONFIG_CDROM_PKTCDVD is not set |
384 | # CONFIG_BLK_DEV_HD is not set | 415 | # CONFIG_BLK_DEV_HD is not set |
@@ -467,7 +498,6 @@ CONFIG_I2C_SH_MOBILE=y | |||
467 | # | 498 | # |
468 | # Miscellaneous I2C Chip support | 499 | # Miscellaneous I2C Chip support |
469 | # | 500 | # |
470 | # CONFIG_DS1682 is not set | ||
471 | # CONFIG_SENSORS_TSL2550 is not set | 501 | # CONFIG_SENSORS_TSL2550 is not set |
472 | # CONFIG_I2C_DEBUG_CORE is not set | 502 | # CONFIG_I2C_DEBUG_CORE is not set |
473 | # CONFIG_I2C_DEBUG_ALGO is not set | 503 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -496,15 +526,18 @@ CONFIG_SSB_POSSIBLE=y | |||
496 | # | 526 | # |
497 | # CONFIG_MFD_CORE is not set | 527 | # CONFIG_MFD_CORE is not set |
498 | # CONFIG_MFD_SM501 is not set | 528 | # CONFIG_MFD_SM501 is not set |
529 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
499 | # CONFIG_HTC_PASIC3 is not set | 530 | # CONFIG_HTC_PASIC3 is not set |
500 | # CONFIG_TWL4030_CORE is not set | 531 | # CONFIG_TWL4030_CORE is not set |
501 | # CONFIG_MFD_TMIO is not set | 532 | # CONFIG_MFD_TMIO is not set |
502 | # CONFIG_PMIC_DA903X is not set | 533 | # CONFIG_PMIC_DA903X is not set |
534 | # CONFIG_PMIC_ADP5520 is not set | ||
503 | # CONFIG_MFD_WM8400 is not set | 535 | # CONFIG_MFD_WM8400 is not set |
504 | # CONFIG_MFD_WM831X is not set | 536 | # CONFIG_MFD_WM831X is not set |
505 | # CONFIG_MFD_WM8350_I2C is not set | 537 | # CONFIG_MFD_WM8350_I2C is not set |
506 | # CONFIG_MFD_PCF50633 is not set | 538 | # CONFIG_MFD_PCF50633 is not set |
507 | # CONFIG_AB3100_CORE is not set | 539 | # CONFIG_AB3100_CORE is not set |
540 | # CONFIG_MFD_88PM8607 is not set | ||
508 | # CONFIG_REGULATOR is not set | 541 | # CONFIG_REGULATOR is not set |
509 | # CONFIG_MEDIA_SUPPORT is not set | 542 | # CONFIG_MEDIA_SUPPORT is not set |
510 | 543 | ||
@@ -552,6 +585,7 @@ CONFIG_RTC_INTF_DEV=y | |||
552 | # CONFIG_RTC_DRV_PCF8563 is not set | 585 | # CONFIG_RTC_DRV_PCF8563 is not set |
553 | # CONFIG_RTC_DRV_PCF8583 is not set | 586 | # CONFIG_RTC_DRV_PCF8583 is not set |
554 | # CONFIG_RTC_DRV_M41T80 is not set | 587 | # CONFIG_RTC_DRV_M41T80 is not set |
588 | # CONFIG_RTC_DRV_BQ32K is not set | ||
555 | # CONFIG_RTC_DRV_S35390A is not set | 589 | # CONFIG_RTC_DRV_S35390A is not set |
556 | # CONFIG_RTC_DRV_FM3130 is not set | 590 | # CONFIG_RTC_DRV_FM3130 is not set |
557 | # CONFIG_RTC_DRV_RX8581 is not set | 591 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -572,7 +606,9 @@ CONFIG_RTC_INTF_DEV=y | |||
572 | # CONFIG_RTC_DRV_M48T86 is not set | 606 | # CONFIG_RTC_DRV_M48T86 is not set |
573 | # CONFIG_RTC_DRV_M48T35 is not set | 607 | # CONFIG_RTC_DRV_M48T35 is not set |
574 | # CONFIG_RTC_DRV_M48T59 is not set | 608 | # CONFIG_RTC_DRV_M48T59 is not set |
609 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
575 | # CONFIG_RTC_DRV_BQ4802 is not set | 610 | # CONFIG_RTC_DRV_BQ4802 is not set |
611 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
576 | # CONFIG_RTC_DRV_V3020 is not set | 612 | # CONFIG_RTC_DRV_V3020 is not set |
577 | 613 | ||
578 | # | 614 | # |
@@ -599,6 +635,7 @@ CONFIG_UIO_PDRV_GENIRQ=y | |||
599 | # CONFIG_EXT2_FS is not set | 635 | # CONFIG_EXT2_FS is not set |
600 | # CONFIG_EXT3_FS is not set | 636 | # CONFIG_EXT3_FS is not set |
601 | # CONFIG_EXT4_FS is not set | 637 | # CONFIG_EXT4_FS is not set |
638 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
602 | # CONFIG_REISERFS_FS is not set | 639 | # CONFIG_REISERFS_FS is not set |
603 | # CONFIG_JFS_FS is not set | 640 | # CONFIG_JFS_FS is not set |
604 | # CONFIG_FS_POSIX_ACL is not set | 641 | # CONFIG_FS_POSIX_ACL is not set |
@@ -666,11 +703,10 @@ CONFIG_DEBUG_FS=y | |||
666 | # CONFIG_HEADERS_CHECK is not set | 703 | # CONFIG_HEADERS_CHECK is not set |
667 | # CONFIG_DEBUG_KERNEL is not set | 704 | # CONFIG_DEBUG_KERNEL is not set |
668 | CONFIG_STACKTRACE=y | 705 | CONFIG_STACKTRACE=y |
669 | # CONFIG_DEBUG_BUGVERBOSE is not set | 706 | CONFIG_DEBUG_BUGVERBOSE=y |
670 | # CONFIG_DEBUG_MEMORY_INIT is not set | 707 | # CONFIG_DEBUG_MEMORY_INIT is not set |
671 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 708 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
672 | # CONFIG_LATENCYTOP is not set | 709 | # CONFIG_LATENCYTOP is not set |
673 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
674 | CONFIG_NOP_TRACER=y | 710 | CONFIG_NOP_TRACER=y |
675 | CONFIG_HAVE_FUNCTION_TRACER=y | 711 | CONFIG_HAVE_FUNCTION_TRACER=y |
676 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 712 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -690,7 +726,6 @@ CONFIG_TRACING_SUPPORT=y | |||
690 | # CONFIG_SAMPLES is not set | 726 | # CONFIG_SAMPLES is not set |
691 | CONFIG_HAVE_ARCH_KGDB=y | 727 | CONFIG_HAVE_ARCH_KGDB=y |
692 | # CONFIG_SH_STANDARD_BIOS is not set | 728 | # CONFIG_SH_STANDARD_BIOS is not set |
693 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
694 | # CONFIG_DWARF_UNWINDER is not set | 729 | # CONFIG_DWARF_UNWINDER is not set |
695 | 730 | ||
696 | # | 731 | # |
@@ -698,7 +733,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
698 | # | 733 | # |
699 | # CONFIG_KEYS is not set | 734 | # CONFIG_KEYS is not set |
700 | # CONFIG_SECURITYFS is not set | 735 | # CONFIG_SECURITYFS is not set |
701 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 736 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
737 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
738 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
739 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
740 | CONFIG_DEFAULT_SECURITY="" | ||
702 | # CONFIG_CRYPTO is not set | 741 | # CONFIG_CRYPTO is not set |
703 | CONFIG_BINARY_PRINTF=y | 742 | CONFIG_BINARY_PRINTF=y |
704 | 743 | ||
diff --git a/arch/sh/configs/sh7785lcr_32bit_defconfig b/arch/sh/configs/sh7785lcr_32bit_defconfig index 51cbaedf7a5..8330813b0c1 100644 --- a/arch/sh/configs/sh7785lcr_32bit_defconfig +++ b/arch/sh/configs/sh7785lcr_32bit_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Fri Sep 25 11:39:20 2009 | 4 | # Mon Jan 4 15:07:40 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
24 | CONFIG_SYS_SUPPORTS_PCI=y | 25 | CONFIG_SYS_SUPPORTS_PCI=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -64,6 +66,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
64 | # | 66 | # |
65 | CONFIG_TREE_RCU=y | 67 | CONFIG_TREE_RCU=y |
66 | # CONFIG_TREE_PREEMPT_RCU is not set | 68 | # CONFIG_TREE_PREEMPT_RCU is not set |
69 | # CONFIG_TINY_RCU is not set | ||
67 | # CONFIG_RCU_TRACE is not set | 70 | # CONFIG_RCU_TRACE is not set |
68 | CONFIG_RCU_FANOUT=32 | 71 | CONFIG_RCU_FANOUT=32 |
69 | # CONFIG_RCU_FANOUT_EXACT is not set | 72 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,6 +106,7 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
@@ -126,6 +130,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
126 | CONFIG_HAVE_KPROBES=y | 130 | CONFIG_HAVE_KPROBES=y |
127 | CONFIG_HAVE_KRETPROBES=y | 131 | CONFIG_HAVE_KRETPROBES=y |
128 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 132 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
133 | CONFIG_HAVE_DMA_ATTRS=y | ||
129 | CONFIG_HAVE_CLK=y | 134 | CONFIG_HAVE_CLK=y |
130 | CONFIG_HAVE_DMA_API_DEBUG=y | 135 | CONFIG_HAVE_DMA_API_DEBUG=y |
131 | 136 | ||
@@ -153,14 +158,41 @@ CONFIG_BLOCK=y | |||
153 | # IO Schedulers | 158 | # IO Schedulers |
154 | # | 159 | # |
155 | CONFIG_IOSCHED_NOOP=y | 160 | CONFIG_IOSCHED_NOOP=y |
156 | CONFIG_IOSCHED_AS=y | ||
157 | CONFIG_IOSCHED_DEADLINE=y | 161 | CONFIG_IOSCHED_DEADLINE=y |
158 | CONFIG_IOSCHED_CFQ=y | 162 | CONFIG_IOSCHED_CFQ=y |
159 | # CONFIG_DEFAULT_AS is not set | ||
160 | # CONFIG_DEFAULT_DEADLINE is not set | 163 | # CONFIG_DEFAULT_DEADLINE is not set |
161 | CONFIG_DEFAULT_CFQ=y | 164 | CONFIG_DEFAULT_CFQ=y |
162 | # CONFIG_DEFAULT_NOOP is not set | 165 | # CONFIG_DEFAULT_NOOP is not set |
163 | CONFIG_DEFAULT_IOSCHED="cfq" | 166 | CONFIG_DEFAULT_IOSCHED="cfq" |
167 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
168 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
170 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
171 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
172 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
174 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
175 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
177 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
178 | # CONFIG_INLINE_READ_LOCK is not set | ||
179 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
180 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
181 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
182 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
183 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
184 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
185 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
186 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
188 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
189 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
190 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
192 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
193 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
194 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
195 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
164 | # CONFIG_FREEZER is not set | 196 | # CONFIG_FREEZER is not set |
165 | 197 | ||
166 | # | 198 | # |
@@ -253,8 +285,6 @@ CONFIG_MIGRATION=y | |||
253 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 285 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
254 | CONFIG_ZONE_DMA_FLAG=0 | 286 | CONFIG_ZONE_DMA_FLAG=0 |
255 | CONFIG_NR_QUICK=2 | 287 | CONFIG_NR_QUICK=2 |
256 | CONFIG_HAVE_MLOCK=y | ||
257 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
258 | # CONFIG_KSM is not set | 288 | # CONFIG_KSM is not set |
259 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 289 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
260 | 290 | ||
@@ -287,7 +317,6 @@ CONFIG_SH_SH7785LCR=y | |||
287 | # Timer and clock configuration | 317 | # Timer and clock configuration |
288 | # | 318 | # |
289 | CONFIG_SH_TIMER_TMU=y | 319 | CONFIG_SH_TIMER_TMU=y |
290 | CONFIG_SH_PCLK_FREQ=50000000 | ||
291 | CONFIG_SH_CLK_CPG=y | 320 | CONFIG_SH_CLK_CPG=y |
292 | CONFIG_TICK_ONESHOT=y | 321 | CONFIG_TICK_ONESHOT=y |
293 | CONFIG_NO_HZ=y | 322 | CONFIG_NO_HZ=y |
@@ -360,7 +389,6 @@ CONFIG_ENTRY_OFFSET=0x00001000 | |||
360 | # Bus options | 389 | # Bus options |
361 | # | 390 | # |
362 | CONFIG_PCI=y | 391 | CONFIG_PCI=y |
363 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
364 | # CONFIG_PCIEPORTBUS is not set | 392 | # CONFIG_PCIEPORTBUS is not set |
365 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 393 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
366 | # CONFIG_PCI_LEGACY is not set | 394 | # CONFIG_PCI_LEGACY is not set |
@@ -470,10 +498,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
470 | # CONFIG_AF_RXRPC is not set | 498 | # CONFIG_AF_RXRPC is not set |
471 | CONFIG_WIRELESS=y | 499 | CONFIG_WIRELESS=y |
472 | # CONFIG_CFG80211 is not set | 500 | # CONFIG_CFG80211 is not set |
473 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
474 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
475 | CONFIG_WIRELESS_EXT=y | ||
476 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
477 | # CONFIG_LIB80211 is not set | 501 | # CONFIG_LIB80211 is not set |
478 | 502 | ||
479 | # | 503 | # |
@@ -588,6 +612,10 @@ CONFIG_BLK_DEV=y | |||
588 | # CONFIG_BLK_DEV_COW_COMMON is not set | 612 | # CONFIG_BLK_DEV_COW_COMMON is not set |
589 | CONFIG_BLK_DEV_LOOP=y | 613 | CONFIG_BLK_DEV_LOOP=y |
590 | CONFIG_BLK_DEV_CRYPTOLOOP=m | 614 | CONFIG_BLK_DEV_CRYPTOLOOP=m |
615 | |||
616 | # | ||
617 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
618 | # | ||
591 | # CONFIG_BLK_DEV_NBD is not set | 619 | # CONFIG_BLK_DEV_NBD is not set |
592 | # CONFIG_BLK_DEV_SX8 is not set | 620 | # CONFIG_BLK_DEV_SX8 is not set |
593 | # CONFIG_BLK_DEV_UB is not set | 621 | # CONFIG_BLK_DEV_UB is not set |
@@ -688,15 +716,16 @@ CONFIG_SATA_SIL=y | |||
688 | # CONFIG_PATA_NS87415 is not set | 716 | # CONFIG_PATA_NS87415 is not set |
689 | # CONFIG_PATA_OPTI is not set | 717 | # CONFIG_PATA_OPTI is not set |
690 | # CONFIG_PATA_OPTIDMA is not set | 718 | # CONFIG_PATA_OPTIDMA is not set |
719 | # CONFIG_PATA_PDC2027X is not set | ||
691 | # CONFIG_PATA_PDC_OLD is not set | 720 | # CONFIG_PATA_PDC_OLD is not set |
692 | # CONFIG_PATA_RADISYS is not set | 721 | # CONFIG_PATA_RADISYS is not set |
693 | # CONFIG_PATA_RDC is not set | 722 | # CONFIG_PATA_RDC is not set |
694 | # CONFIG_PATA_RZ1000 is not set | 723 | # CONFIG_PATA_RZ1000 is not set |
695 | # CONFIG_PATA_SC1200 is not set | 724 | # CONFIG_PATA_SC1200 is not set |
696 | # CONFIG_PATA_SERVERWORKS is not set | 725 | # CONFIG_PATA_SERVERWORKS is not set |
697 | # CONFIG_PATA_PDC2027X is not set | ||
698 | # CONFIG_PATA_SIL680 is not set | 726 | # CONFIG_PATA_SIL680 is not set |
699 | # CONFIG_PATA_SIS is not set | 727 | # CONFIG_PATA_SIS is not set |
728 | # CONFIG_PATA_TOSHIBA is not set | ||
700 | # CONFIG_PATA_VIA is not set | 729 | # CONFIG_PATA_VIA is not set |
701 | # CONFIG_PATA_WINBOND is not set | 730 | # CONFIG_PATA_WINBOND is not set |
702 | # CONFIG_PATA_PLATFORM is not set | 731 | # CONFIG_PATA_PLATFORM is not set |
@@ -777,6 +806,7 @@ CONFIG_R8169=y | |||
777 | # CONFIG_NETCONSOLE is not set | 806 | # CONFIG_NETCONSOLE is not set |
778 | # CONFIG_NETPOLL is not set | 807 | # CONFIG_NETPOLL is not set |
779 | # CONFIG_NET_POLL_CONTROLLER is not set | 808 | # CONFIG_NET_POLL_CONTROLLER is not set |
809 | # CONFIG_VMXNET3 is not set | ||
780 | # CONFIG_ISDN is not set | 810 | # CONFIG_ISDN is not set |
781 | # CONFIG_PHONE is not set | 811 | # CONFIG_PHONE is not set |
782 | 812 | ||
@@ -786,6 +816,7 @@ CONFIG_R8169=y | |||
786 | CONFIG_INPUT=y | 816 | CONFIG_INPUT=y |
787 | CONFIG_INPUT_FF_MEMLESS=m | 817 | CONFIG_INPUT_FF_MEMLESS=m |
788 | # CONFIG_INPUT_POLLDEV is not set | 818 | # CONFIG_INPUT_POLLDEV is not set |
819 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
789 | 820 | ||
790 | # | 821 | # |
791 | # Userland interfaces | 822 | # Userland interfaces |
@@ -841,6 +872,7 @@ CONFIG_SERIO_SERPORT=y | |||
841 | # CONFIG_SERIO_PCIPS2 is not set | 872 | # CONFIG_SERIO_PCIPS2 is not set |
842 | CONFIG_SERIO_LIBPS2=y | 873 | CONFIG_SERIO_LIBPS2=y |
843 | # CONFIG_SERIO_RAW is not set | 874 | # CONFIG_SERIO_RAW is not set |
875 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
844 | # CONFIG_GAMEPORT is not set | 876 | # CONFIG_GAMEPORT is not set |
845 | 877 | ||
846 | # | 878 | # |
@@ -924,11 +956,6 @@ CONFIG_I2C_ALGOPCA=y | |||
924 | # CONFIG_I2C_TINY_USB is not set | 956 | # CONFIG_I2C_TINY_USB is not set |
925 | 957 | ||
926 | # | 958 | # |
927 | # Graphics adapter I2C/DDC channel drivers | ||
928 | # | ||
929 | # CONFIG_I2C_VOODOO3 is not set | ||
930 | |||
931 | # | ||
932 | # Other I2C/SMBus bus drivers | 959 | # Other I2C/SMBus bus drivers |
933 | # | 960 | # |
934 | CONFIG_I2C_PCA_PLATFORM=y | 961 | CONFIG_I2C_PCA_PLATFORM=y |
@@ -937,7 +964,6 @@ CONFIG_I2C_PCA_PLATFORM=y | |||
937 | # | 964 | # |
938 | # Miscellaneous I2C Chip support | 965 | # Miscellaneous I2C Chip support |
939 | # | 966 | # |
940 | # CONFIG_DS1682 is not set | ||
941 | # CONFIG_SENSORS_TSL2550 is not set | 967 | # CONFIG_SENSORS_TSL2550 is not set |
942 | # CONFIG_I2C_DEBUG_CORE is not set | 968 | # CONFIG_I2C_DEBUG_CORE is not set |
943 | # CONFIG_I2C_DEBUG_ALGO is not set | 969 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -986,15 +1012,18 @@ CONFIG_SSB_POSSIBLE=y | |||
986 | # | 1012 | # |
987 | # CONFIG_MFD_CORE is not set | 1013 | # CONFIG_MFD_CORE is not set |
988 | CONFIG_MFD_SM501=y | 1014 | CONFIG_MFD_SM501=y |
1015 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
989 | # CONFIG_HTC_PASIC3 is not set | 1016 | # CONFIG_HTC_PASIC3 is not set |
990 | # CONFIG_TWL4030_CORE is not set | 1017 | # CONFIG_TWL4030_CORE is not set |
991 | # CONFIG_MFD_TMIO is not set | 1018 | # CONFIG_MFD_TMIO is not set |
992 | # CONFIG_PMIC_DA903X is not set | 1019 | # CONFIG_PMIC_DA903X is not set |
1020 | # CONFIG_PMIC_ADP5520 is not set | ||
993 | # CONFIG_MFD_WM8400 is not set | 1021 | # CONFIG_MFD_WM8400 is not set |
994 | # CONFIG_MFD_WM831X is not set | 1022 | # CONFIG_MFD_WM831X is not set |
995 | # CONFIG_MFD_WM8350_I2C is not set | 1023 | # CONFIG_MFD_WM8350_I2C is not set |
996 | # CONFIG_MFD_PCF50633 is not set | 1024 | # CONFIG_MFD_PCF50633 is not set |
997 | # CONFIG_AB3100_CORE is not set | 1025 | # CONFIG_AB3100_CORE is not set |
1026 | # CONFIG_MFD_88PM8607 is not set | ||
998 | # CONFIG_REGULATOR is not set | 1027 | # CONFIG_REGULATOR is not set |
999 | # CONFIG_MEDIA_SUPPORT is not set | 1028 | # CONFIG_MEDIA_SUPPORT is not set |
1000 | 1029 | ||
@@ -1129,6 +1158,7 @@ CONFIG_SND_CMIPCI=y | |||
1129 | # CONFIG_SND_OXYGEN is not set | 1158 | # CONFIG_SND_OXYGEN is not set |
1130 | # CONFIG_SND_CS4281 is not set | 1159 | # CONFIG_SND_CS4281 is not set |
1131 | # CONFIG_SND_CS46XX is not set | 1160 | # CONFIG_SND_CS46XX is not set |
1161 | # CONFIG_SND_CS5535AUDIO is not set | ||
1132 | # CONFIG_SND_CTXFI is not set | 1162 | # CONFIG_SND_CTXFI is not set |
1133 | # CONFIG_SND_DARLA20 is not set | 1163 | # CONFIG_SND_DARLA20 is not set |
1134 | # CONFIG_SND_GINA20 is not set | 1164 | # CONFIG_SND_GINA20 is not set |
@@ -1363,6 +1393,7 @@ CONFIG_MMC_SDHCI_PLTFM=m | |||
1363 | # CONFIG_MMC_AT91 is not set | 1393 | # CONFIG_MMC_AT91 is not set |
1364 | # CONFIG_MMC_ATMELMCI is not set | 1394 | # CONFIG_MMC_ATMELMCI is not set |
1365 | # CONFIG_MMC_TIFM_SD is not set | 1395 | # CONFIG_MMC_TIFM_SD is not set |
1396 | # CONFIG_MMC_TMIO is not set | ||
1366 | # CONFIG_MMC_CB710 is not set | 1397 | # CONFIG_MMC_CB710 is not set |
1367 | # CONFIG_MMC_VIA_SDMMC is not set | 1398 | # CONFIG_MMC_VIA_SDMMC is not set |
1368 | # CONFIG_MEMSTICK is not set | 1399 | # CONFIG_MEMSTICK is not set |
@@ -1397,6 +1428,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1397 | # CONFIG_RTC_DRV_PCF8563 is not set | 1428 | # CONFIG_RTC_DRV_PCF8563 is not set |
1398 | # CONFIG_RTC_DRV_PCF8583 is not set | 1429 | # CONFIG_RTC_DRV_PCF8583 is not set |
1399 | # CONFIG_RTC_DRV_M41T80 is not set | 1430 | # CONFIG_RTC_DRV_M41T80 is not set |
1431 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1400 | # CONFIG_RTC_DRV_S35390A is not set | 1432 | # CONFIG_RTC_DRV_S35390A is not set |
1401 | # CONFIG_RTC_DRV_FM3130 is not set | 1433 | # CONFIG_RTC_DRV_FM3130 is not set |
1402 | # CONFIG_RTC_DRV_RX8581 is not set | 1434 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1417,7 +1449,9 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1417 | # CONFIG_RTC_DRV_M48T86 is not set | 1449 | # CONFIG_RTC_DRV_M48T86 is not set |
1418 | # CONFIG_RTC_DRV_M48T35 is not set | 1450 | # CONFIG_RTC_DRV_M48T35 is not set |
1419 | # CONFIG_RTC_DRV_M48T59 is not set | 1451 | # CONFIG_RTC_DRV_M48T59 is not set |
1452 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1420 | # CONFIG_RTC_DRV_BQ4802 is not set | 1453 | # CONFIG_RTC_DRV_BQ4802 is not set |
1454 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1421 | # CONFIG_RTC_DRV_V3020 is not set | 1455 | # CONFIG_RTC_DRV_V3020 is not set |
1422 | 1456 | ||
1423 | # | 1457 | # |
@@ -1622,13 +1656,14 @@ CONFIG_SCHED_DEBUG=y | |||
1622 | CONFIG_SCHEDSTATS=y | 1656 | CONFIG_SCHEDSTATS=y |
1623 | CONFIG_TRACE_IRQFLAGS=y | 1657 | CONFIG_TRACE_IRQFLAGS=y |
1624 | CONFIG_STACKTRACE=y | 1658 | CONFIG_STACKTRACE=y |
1625 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1659 | CONFIG_DEBUG_BUGVERBOSE=y |
1626 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1660 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1627 | CONFIG_FRAME_POINTER=y | 1661 | CONFIG_FRAME_POINTER=y |
1628 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1662 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1629 | CONFIG_LATENCYTOP=y | 1663 | CONFIG_LATENCYTOP=y |
1630 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 1664 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
1631 | CONFIG_NOP_TRACER=y | 1665 | CONFIG_NOP_TRACER=y |
1666 | CONFIG_HAVE_FTRACE_NMI_ENTER=y | ||
1632 | CONFIG_HAVE_FUNCTION_TRACER=y | 1667 | CONFIG_HAVE_FUNCTION_TRACER=y |
1633 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1668 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
1634 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 1669 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -1637,6 +1672,7 @@ CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | |||
1637 | CONFIG_HAVE_SYSCALL_TRACEPOINTS=y | 1672 | CONFIG_HAVE_SYSCALL_TRACEPOINTS=y |
1638 | CONFIG_TRACER_MAX_TRACE=y | 1673 | CONFIG_TRACER_MAX_TRACE=y |
1639 | CONFIG_RING_BUFFER=y | 1674 | CONFIG_RING_BUFFER=y |
1675 | CONFIG_FTRACE_NMI_ENTER=y | ||
1640 | CONFIG_EVENT_TRACING=y | 1676 | CONFIG_EVENT_TRACING=y |
1641 | CONFIG_CONTEXT_SWITCH_TRACER=y | 1677 | CONFIG_CONTEXT_SWITCH_TRACER=y |
1642 | CONFIG_RING_BUFFER_ALLOW_SWAP=y | 1678 | CONFIG_RING_BUFFER_ALLOW_SWAP=y |
@@ -1668,7 +1704,6 @@ CONFIG_FTRACE_MCOUNT_RECORD=y | |||
1668 | # CONFIG_SAMPLES is not set | 1704 | # CONFIG_SAMPLES is not set |
1669 | CONFIG_HAVE_ARCH_KGDB=y | 1705 | CONFIG_HAVE_ARCH_KGDB=y |
1670 | # CONFIG_SH_STANDARD_BIOS is not set | 1706 | # CONFIG_SH_STANDARD_BIOS is not set |
1671 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1672 | CONFIG_DWARF_UNWINDER=y | 1707 | CONFIG_DWARF_UNWINDER=y |
1673 | CONFIG_MCOUNT=y | 1708 | CONFIG_MCOUNT=y |
1674 | 1709 | ||
@@ -1678,7 +1713,11 @@ CONFIG_MCOUNT=y | |||
1678 | # CONFIG_KEYS is not set | 1713 | # CONFIG_KEYS is not set |
1679 | # CONFIG_SECURITY is not set | 1714 | # CONFIG_SECURITY is not set |
1680 | # CONFIG_SECURITYFS is not set | 1715 | # CONFIG_SECURITYFS is not set |
1681 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1716 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1717 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1718 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1719 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1720 | CONFIG_DEFAULT_SECURITY="" | ||
1682 | CONFIG_CRYPTO=y | 1721 | CONFIG_CRYPTO=y |
1683 | 1722 | ||
1684 | # | 1723 | # |
diff --git a/arch/sh/configs/sh7785lcr_defconfig b/arch/sh/configs/sh7785lcr_defconfig index 8c2c47ed399..f196e87c766 100644 --- a/arch/sh/configs/sh7785lcr_defconfig +++ b/arch/sh/configs/sh7785lcr_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:23:18 2009 | 4 | # Mon Jan 4 15:09:09 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
24 | CONFIG_SYS_SUPPORTS_PCI=y | 25 | CONFIG_SYS_SUPPORTS_PCI=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -63,6 +65,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
63 | # | 65 | # |
64 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 69 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -103,12 +106,14 @@ CONFIG_EVENTFD=y | |||
103 | CONFIG_SHMEM=y | 106 | CONFIG_SHMEM=y |
104 | CONFIG_AIO=y | 107 | CONFIG_AIO=y |
105 | CONFIG_HAVE_PERF_EVENTS=y | 108 | CONFIG_HAVE_PERF_EVENTS=y |
109 | CONFIG_PERF_USE_VMALLOC=y | ||
106 | 110 | ||
107 | # | 111 | # |
108 | # Kernel Performance Events And Counters | 112 | # Kernel Performance Events And Counters |
109 | # | 113 | # |
110 | CONFIG_PERF_EVENTS=y | 114 | CONFIG_PERF_EVENTS=y |
111 | # CONFIG_PERF_COUNTERS is not set | 115 | # CONFIG_PERF_COUNTERS is not set |
116 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
112 | CONFIG_VM_EVENT_COUNTERS=y | 117 | CONFIG_VM_EVENT_COUNTERS=y |
113 | CONFIG_PCI_QUIRKS=y | 118 | CONFIG_PCI_QUIRKS=y |
114 | CONFIG_COMPAT_BRK=y | 119 | CONFIG_COMPAT_BRK=y |
@@ -123,6 +128,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
123 | CONFIG_HAVE_KPROBES=y | 128 | CONFIG_HAVE_KPROBES=y |
124 | CONFIG_HAVE_KRETPROBES=y | 129 | CONFIG_HAVE_KRETPROBES=y |
125 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 130 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
131 | CONFIG_HAVE_DMA_ATTRS=y | ||
126 | CONFIG_HAVE_CLK=y | 132 | CONFIG_HAVE_CLK=y |
127 | CONFIG_HAVE_DMA_API_DEBUG=y | 133 | CONFIG_HAVE_DMA_API_DEBUG=y |
128 | 134 | ||
@@ -149,14 +155,41 @@ CONFIG_LBDAF=y | |||
149 | # IO Schedulers | 155 | # IO Schedulers |
150 | # | 156 | # |
151 | CONFIG_IOSCHED_NOOP=y | 157 | CONFIG_IOSCHED_NOOP=y |
152 | CONFIG_IOSCHED_AS=y | ||
153 | CONFIG_IOSCHED_DEADLINE=y | 158 | CONFIG_IOSCHED_DEADLINE=y |
154 | CONFIG_IOSCHED_CFQ=y | 159 | CONFIG_IOSCHED_CFQ=y |
155 | # CONFIG_DEFAULT_AS is not set | ||
156 | # CONFIG_DEFAULT_DEADLINE is not set | 160 | # CONFIG_DEFAULT_DEADLINE is not set |
157 | CONFIG_DEFAULT_CFQ=y | 161 | CONFIG_DEFAULT_CFQ=y |
158 | # CONFIG_DEFAULT_NOOP is not set | 162 | # CONFIG_DEFAULT_NOOP is not set |
159 | CONFIG_DEFAULT_IOSCHED="cfq" | 163 | CONFIG_DEFAULT_IOSCHED="cfq" |
164 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
165 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
168 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
169 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
170 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
172 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
174 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
175 | # CONFIG_INLINE_READ_LOCK is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
177 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
178 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
179 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
180 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
181 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
182 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
183 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
186 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
187 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
188 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
190 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
191 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
192 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
160 | # CONFIG_FREEZER is not set | 193 | # CONFIG_FREEZER is not set |
161 | 194 | ||
162 | # | 195 | # |
@@ -237,8 +270,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
237 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 270 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
238 | CONFIG_ZONE_DMA_FLAG=0 | 271 | CONFIG_ZONE_DMA_FLAG=0 |
239 | CONFIG_NR_QUICK=2 | 272 | CONFIG_NR_QUICK=2 |
240 | CONFIG_HAVE_MLOCK=y | ||
241 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
242 | # CONFIG_KSM is not set | 273 | # CONFIG_KSM is not set |
243 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 274 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
244 | 275 | ||
@@ -271,7 +302,6 @@ CONFIG_SH_SH7785LCR_29BIT_PHYSMAPS=y | |||
271 | # Timer and clock configuration | 302 | # Timer and clock configuration |
272 | # | 303 | # |
273 | CONFIG_SH_TIMER_TMU=y | 304 | CONFIG_SH_TIMER_TMU=y |
274 | CONFIG_SH_PCLK_FREQ=50000000 | ||
275 | CONFIG_SH_CLK_CPG=y | 305 | CONFIG_SH_CLK_CPG=y |
276 | CONFIG_TICK_ONESHOT=y | 306 | CONFIG_TICK_ONESHOT=y |
277 | # CONFIG_NO_HZ is not set | 307 | # CONFIG_NO_HZ is not set |
@@ -329,7 +359,6 @@ CONFIG_ENTRY_OFFSET=0x00001000 | |||
329 | # Bus options | 359 | # Bus options |
330 | # | 360 | # |
331 | CONFIG_PCI=y | 361 | CONFIG_PCI=y |
332 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
333 | # CONFIG_PCIEPORTBUS is not set | 362 | # CONFIG_PCIEPORTBUS is not set |
334 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 363 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
335 | CONFIG_PCI_LEGACY=y | 364 | CONFIG_PCI_LEGACY=y |
@@ -433,10 +462,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
433 | # CONFIG_AF_RXRPC is not set | 462 | # CONFIG_AF_RXRPC is not set |
434 | CONFIG_WIRELESS=y | 463 | CONFIG_WIRELESS=y |
435 | # CONFIG_CFG80211 is not set | 464 | # CONFIG_CFG80211 is not set |
436 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
437 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
438 | CONFIG_WIRELESS_EXT=y | ||
439 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
440 | # CONFIG_LIB80211 is not set | 465 | # CONFIG_LIB80211 is not set |
441 | 466 | ||
442 | # | 467 | # |
@@ -552,6 +577,10 @@ CONFIG_BLK_DEV=y | |||
552 | # CONFIG_BLK_DEV_UMEM is not set | 577 | # CONFIG_BLK_DEV_UMEM is not set |
553 | # CONFIG_BLK_DEV_COW_COMMON is not set | 578 | # CONFIG_BLK_DEV_COW_COMMON is not set |
554 | # CONFIG_BLK_DEV_LOOP is not set | 579 | # CONFIG_BLK_DEV_LOOP is not set |
580 | |||
581 | # | ||
582 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
583 | # | ||
555 | # CONFIG_BLK_DEV_NBD is not set | 584 | # CONFIG_BLK_DEV_NBD is not set |
556 | # CONFIG_BLK_DEV_SX8 is not set | 585 | # CONFIG_BLK_DEV_SX8 is not set |
557 | # CONFIG_BLK_DEV_UB is not set | 586 | # CONFIG_BLK_DEV_UB is not set |
@@ -652,15 +681,16 @@ CONFIG_SATA_SIL=y | |||
652 | # CONFIG_PATA_NS87415 is not set | 681 | # CONFIG_PATA_NS87415 is not set |
653 | # CONFIG_PATA_OPTI is not set | 682 | # CONFIG_PATA_OPTI is not set |
654 | # CONFIG_PATA_OPTIDMA is not set | 683 | # CONFIG_PATA_OPTIDMA is not set |
684 | # CONFIG_PATA_PDC2027X is not set | ||
655 | # CONFIG_PATA_PDC_OLD is not set | 685 | # CONFIG_PATA_PDC_OLD is not set |
656 | # CONFIG_PATA_RADISYS is not set | 686 | # CONFIG_PATA_RADISYS is not set |
657 | # CONFIG_PATA_RDC is not set | 687 | # CONFIG_PATA_RDC is not set |
658 | # CONFIG_PATA_RZ1000 is not set | 688 | # CONFIG_PATA_RZ1000 is not set |
659 | # CONFIG_PATA_SC1200 is not set | 689 | # CONFIG_PATA_SC1200 is not set |
660 | # CONFIG_PATA_SERVERWORKS is not set | 690 | # CONFIG_PATA_SERVERWORKS is not set |
661 | # CONFIG_PATA_PDC2027X is not set | ||
662 | # CONFIG_PATA_SIL680 is not set | 691 | # CONFIG_PATA_SIL680 is not set |
663 | # CONFIG_PATA_SIS is not set | 692 | # CONFIG_PATA_SIS is not set |
693 | # CONFIG_PATA_TOSHIBA is not set | ||
664 | # CONFIG_PATA_VIA is not set | 694 | # CONFIG_PATA_VIA is not set |
665 | # CONFIG_PATA_WINBOND is not set | 695 | # CONFIG_PATA_WINBOND is not set |
666 | # CONFIG_PATA_PLATFORM is not set | 696 | # CONFIG_PATA_PLATFORM is not set |
@@ -719,8 +749,10 @@ CONFIG_R8169=y | |||
719 | # CONFIG_NETDEV_10000 is not set | 749 | # CONFIG_NETDEV_10000 is not set |
720 | # CONFIG_TR is not set | 750 | # CONFIG_TR is not set |
721 | CONFIG_WLAN=y | 751 | CONFIG_WLAN=y |
722 | # CONFIG_WLAN_PRE80211 is not set | 752 | # CONFIG_ATMEL is not set |
723 | # CONFIG_WLAN_80211 is not set | 753 | # CONFIG_PRISM54 is not set |
754 | # CONFIG_USB_ZD1201 is not set | ||
755 | # CONFIG_HOSTAP is not set | ||
724 | 756 | ||
725 | # | 757 | # |
726 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 758 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -743,6 +775,7 @@ CONFIG_WLAN=y | |||
743 | # CONFIG_NETCONSOLE is not set | 775 | # CONFIG_NETCONSOLE is not set |
744 | # CONFIG_NETPOLL is not set | 776 | # CONFIG_NETPOLL is not set |
745 | # CONFIG_NET_POLL_CONTROLLER is not set | 777 | # CONFIG_NET_POLL_CONTROLLER is not set |
778 | # CONFIG_VMXNET3 is not set | ||
746 | # CONFIG_ISDN is not set | 779 | # CONFIG_ISDN is not set |
747 | # CONFIG_PHONE is not set | 780 | # CONFIG_PHONE is not set |
748 | 781 | ||
@@ -752,6 +785,7 @@ CONFIG_WLAN=y | |||
752 | CONFIG_INPUT=y | 785 | CONFIG_INPUT=y |
753 | CONFIG_INPUT_FF_MEMLESS=m | 786 | CONFIG_INPUT_FF_MEMLESS=m |
754 | # CONFIG_INPUT_POLLDEV is not set | 787 | # CONFIG_INPUT_POLLDEV is not set |
788 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
755 | 789 | ||
756 | # | 790 | # |
757 | # Userland interfaces | 791 | # Userland interfaces |
@@ -874,11 +908,6 @@ CONFIG_I2C_ALGOPCA=y | |||
874 | # CONFIG_I2C_TINY_USB is not set | 908 | # CONFIG_I2C_TINY_USB is not set |
875 | 909 | ||
876 | # | 910 | # |
877 | # Graphics adapter I2C/DDC channel drivers | ||
878 | # | ||
879 | # CONFIG_I2C_VOODOO3 is not set | ||
880 | |||
881 | # | ||
882 | # Other I2C/SMBus bus drivers | 911 | # Other I2C/SMBus bus drivers |
883 | # | 912 | # |
884 | CONFIG_I2C_PCA_PLATFORM=y | 913 | CONFIG_I2C_PCA_PLATFORM=y |
@@ -887,7 +916,6 @@ CONFIG_I2C_PCA_PLATFORM=y | |||
887 | # | 916 | # |
888 | # Miscellaneous I2C Chip support | 917 | # Miscellaneous I2C Chip support |
889 | # | 918 | # |
890 | # CONFIG_DS1682 is not set | ||
891 | # CONFIG_SENSORS_TSL2550 is not set | 919 | # CONFIG_SENSORS_TSL2550 is not set |
892 | # CONFIG_I2C_DEBUG_CORE is not set | 920 | # CONFIG_I2C_DEBUG_CORE is not set |
893 | # CONFIG_I2C_DEBUG_ALGO is not set | 921 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -916,15 +944,18 @@ CONFIG_SSB_POSSIBLE=y | |||
916 | # | 944 | # |
917 | # CONFIG_MFD_CORE is not set | 945 | # CONFIG_MFD_CORE is not set |
918 | CONFIG_MFD_SM501=y | 946 | CONFIG_MFD_SM501=y |
947 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
919 | # CONFIG_HTC_PASIC3 is not set | 948 | # CONFIG_HTC_PASIC3 is not set |
920 | # CONFIG_TWL4030_CORE is not set | 949 | # CONFIG_TWL4030_CORE is not set |
921 | # CONFIG_MFD_TMIO is not set | 950 | # CONFIG_MFD_TMIO is not set |
922 | # CONFIG_PMIC_DA903X is not set | 951 | # CONFIG_PMIC_DA903X is not set |
952 | # CONFIG_PMIC_ADP5520 is not set | ||
923 | # CONFIG_MFD_WM8400 is not set | 953 | # CONFIG_MFD_WM8400 is not set |
924 | # CONFIG_MFD_WM831X is not set | 954 | # CONFIG_MFD_WM831X is not set |
925 | # CONFIG_MFD_WM8350_I2C is not set | 955 | # CONFIG_MFD_WM8350_I2C is not set |
926 | # CONFIG_MFD_PCF50633 is not set | 956 | # CONFIG_MFD_PCF50633 is not set |
927 | # CONFIG_AB3100_CORE is not set | 957 | # CONFIG_AB3100_CORE is not set |
958 | # CONFIG_MFD_88PM8607 is not set | ||
928 | # CONFIG_REGULATOR is not set | 959 | # CONFIG_REGULATOR is not set |
929 | # CONFIG_MEDIA_SUPPORT is not set | 960 | # CONFIG_MEDIA_SUPPORT is not set |
930 | 961 | ||
@@ -1205,6 +1236,7 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1205 | # CONFIG_RTC_DRV_PCF8563 is not set | 1236 | # CONFIG_RTC_DRV_PCF8563 is not set |
1206 | # CONFIG_RTC_DRV_PCF8583 is not set | 1237 | # CONFIG_RTC_DRV_PCF8583 is not set |
1207 | # CONFIG_RTC_DRV_M41T80 is not set | 1238 | # CONFIG_RTC_DRV_M41T80 is not set |
1239 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1208 | # CONFIG_RTC_DRV_S35390A is not set | 1240 | # CONFIG_RTC_DRV_S35390A is not set |
1209 | # CONFIG_RTC_DRV_FM3130 is not set | 1241 | # CONFIG_RTC_DRV_FM3130 is not set |
1210 | # CONFIG_RTC_DRV_RX8581 is not set | 1242 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1225,7 +1257,9 @@ CONFIG_RTC_DRV_RS5C372=y | |||
1225 | # CONFIG_RTC_DRV_M48T86 is not set | 1257 | # CONFIG_RTC_DRV_M48T86 is not set |
1226 | # CONFIG_RTC_DRV_M48T35 is not set | 1258 | # CONFIG_RTC_DRV_M48T35 is not set |
1227 | # CONFIG_RTC_DRV_M48T59 is not set | 1259 | # CONFIG_RTC_DRV_M48T59 is not set |
1260 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1228 | # CONFIG_RTC_DRV_BQ4802 is not set | 1261 | # CONFIG_RTC_DRV_BQ4802 is not set |
1262 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1229 | # CONFIG_RTC_DRV_V3020 is not set | 1263 | # CONFIG_RTC_DRV_V3020 is not set |
1230 | 1264 | ||
1231 | # | 1265 | # |
@@ -1484,7 +1518,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1484 | CONFIG_HAVE_ARCH_KGDB=y | 1518 | CONFIG_HAVE_ARCH_KGDB=y |
1485 | # CONFIG_KGDB is not set | 1519 | # CONFIG_KGDB is not set |
1486 | # CONFIG_SH_STANDARD_BIOS is not set | 1520 | # CONFIG_SH_STANDARD_BIOS is not set |
1487 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1488 | # CONFIG_STACK_DEBUG is not set | 1521 | # CONFIG_STACK_DEBUG is not set |
1489 | # CONFIG_DEBUG_STACK_USAGE is not set | 1522 | # CONFIG_DEBUG_STACK_USAGE is not set |
1490 | # CONFIG_4KSTACKS is not set | 1523 | # CONFIG_4KSTACKS is not set |
@@ -1498,7 +1531,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1498 | # CONFIG_KEYS is not set | 1531 | # CONFIG_KEYS is not set |
1499 | # CONFIG_SECURITY is not set | 1532 | # CONFIG_SECURITY is not set |
1500 | # CONFIG_SECURITYFS is not set | 1533 | # CONFIG_SECURITYFS is not set |
1501 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1534 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1535 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1536 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1537 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1538 | CONFIG_DEFAULT_SECURITY="" | ||
1502 | CONFIG_CRYPTO=y | 1539 | CONFIG_CRYPTO=y |
1503 | 1540 | ||
1504 | # | 1541 | # |
diff --git a/arch/sh/configs/shmin_defconfig b/arch/sh/configs/shmin_defconfig index 92115e61275..45441c0ab30 100644 --- a/arch/sh/configs/shmin_defconfig +++ b/arch/sh/configs/shmin_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:27:17 2009 | 4 | # Mon Jan 4 15:10:09 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -28,6 +28,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 28 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 29 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
30 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 30 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
31 | CONFIG_DMA_NONCOHERENT=y | ||
31 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
32 | CONFIG_CONSTRUCTORS=y | 33 | CONFIG_CONSTRUCTORS=y |
33 | 34 | ||
@@ -57,6 +58,7 @@ CONFIG_KERNEL_GZIP=y | |||
57 | # | 58 | # |
58 | CONFIG_TREE_RCU=y | 59 | CONFIG_TREE_RCU=y |
59 | # CONFIG_TREE_PREEMPT_RCU is not set | 60 | # CONFIG_TREE_PREEMPT_RCU is not set |
61 | # CONFIG_TINY_RCU is not set | ||
60 | # CONFIG_RCU_TRACE is not set | 62 | # CONFIG_RCU_TRACE is not set |
61 | CONFIG_RCU_FANOUT=32 | 63 | CONFIG_RCU_FANOUT=32 |
62 | # CONFIG_RCU_FANOUT_EXACT is not set | 64 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -88,6 +90,7 @@ CONFIG_EVENTFD=y | |||
88 | # CONFIG_SHMEM is not set | 90 | # CONFIG_SHMEM is not set |
89 | CONFIG_AIO=y | 91 | CONFIG_AIO=y |
90 | CONFIG_HAVE_PERF_EVENTS=y | 92 | CONFIG_HAVE_PERF_EVENTS=y |
93 | CONFIG_PERF_USE_VMALLOC=y | ||
91 | 94 | ||
92 | # | 95 | # |
93 | # Kernel Performance Events And Counters | 96 | # Kernel Performance Events And Counters |
@@ -105,6 +108,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
105 | CONFIG_HAVE_KPROBES=y | 108 | CONFIG_HAVE_KPROBES=y |
106 | CONFIG_HAVE_KRETPROBES=y | 109 | CONFIG_HAVE_KRETPROBES=y |
107 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 110 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
111 | CONFIG_HAVE_DMA_ATTRS=y | ||
108 | CONFIG_HAVE_CLK=y | 112 | CONFIG_HAVE_CLK=y |
109 | CONFIG_HAVE_DMA_API_DEBUG=y | 113 | CONFIG_HAVE_DMA_API_DEBUG=y |
110 | 114 | ||
@@ -124,14 +128,41 @@ CONFIG_LBDAF=y | |||
124 | # IO Schedulers | 128 | # IO Schedulers |
125 | # | 129 | # |
126 | CONFIG_IOSCHED_NOOP=y | 130 | CONFIG_IOSCHED_NOOP=y |
127 | # CONFIG_IOSCHED_AS is not set | ||
128 | # CONFIG_IOSCHED_DEADLINE is not set | 131 | # CONFIG_IOSCHED_DEADLINE is not set |
129 | # CONFIG_IOSCHED_CFQ is not set | 132 | # CONFIG_IOSCHED_CFQ is not set |
130 | # CONFIG_DEFAULT_AS is not set | ||
131 | # CONFIG_DEFAULT_DEADLINE is not set | 133 | # CONFIG_DEFAULT_DEADLINE is not set |
132 | # CONFIG_DEFAULT_CFQ is not set | 134 | # CONFIG_DEFAULT_CFQ is not set |
133 | CONFIG_DEFAULT_NOOP=y | 135 | CONFIG_DEFAULT_NOOP=y |
134 | CONFIG_DEFAULT_IOSCHED="noop" | 136 | CONFIG_DEFAULT_IOSCHED="noop" |
137 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
138 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
139 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
140 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
141 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
142 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
143 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
144 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
145 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
146 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
147 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
148 | # CONFIG_INLINE_READ_LOCK is not set | ||
149 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
150 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
151 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
152 | CONFIG_INLINE_READ_UNLOCK=y | ||
153 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
154 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
155 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
156 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
157 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
158 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
159 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
160 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
161 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
162 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
163 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
164 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
165 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
135 | # CONFIG_FREEZER is not set | 166 | # CONFIG_FREEZER is not set |
136 | 167 | ||
137 | # | 168 | # |
@@ -207,8 +238,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
207 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 238 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
208 | CONFIG_ZONE_DMA_FLAG=0 | 239 | CONFIG_ZONE_DMA_FLAG=0 |
209 | CONFIG_NR_QUICK=2 | 240 | CONFIG_NR_QUICK=2 |
210 | CONFIG_HAVE_MLOCK=y | ||
211 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
212 | # CONFIG_KSM is not set | 241 | # CONFIG_KSM is not set |
213 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 242 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
214 | 243 | ||
@@ -387,9 +416,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
387 | # CONFIG_AF_RXRPC is not set | 416 | # CONFIG_AF_RXRPC is not set |
388 | CONFIG_WIRELESS=y | 417 | CONFIG_WIRELESS=y |
389 | # CONFIG_CFG80211 is not set | 418 | # CONFIG_CFG80211 is not set |
390 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
391 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
392 | # CONFIG_WIRELESS_EXT is not set | ||
393 | # CONFIG_LIB80211 is not set | 419 | # CONFIG_LIB80211 is not set |
394 | 420 | ||
395 | # | 421 | # |
@@ -495,6 +521,10 @@ CONFIG_BLK_DEV=y | |||
495 | # CONFIG_BLK_DEV_COW_COMMON is not set | 521 | # CONFIG_BLK_DEV_COW_COMMON is not set |
496 | CONFIG_BLK_DEV_LOOP=y | 522 | CONFIG_BLK_DEV_LOOP=y |
497 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | 523 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set |
524 | |||
525 | # | ||
526 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
527 | # | ||
498 | # CONFIG_BLK_DEV_NBD is not set | 528 | # CONFIG_BLK_DEV_NBD is not set |
499 | # CONFIG_BLK_DEV_RAM is not set | 529 | # CONFIG_BLK_DEV_RAM is not set |
500 | # CONFIG_CDROM_PKTCDVD is not set | 530 | # CONFIG_CDROM_PKTCDVD is not set |
@@ -546,11 +576,11 @@ CONFIG_NET_ETHERNET=y | |||
546 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 576 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
547 | # CONFIG_B44 is not set | 577 | # CONFIG_B44 is not set |
548 | # CONFIG_KS8842 is not set | 578 | # CONFIG_KS8842 is not set |
579 | # CONFIG_KS8851_MLL is not set | ||
549 | CONFIG_NETDEV_1000=y | 580 | CONFIG_NETDEV_1000=y |
550 | CONFIG_NETDEV_10000=y | 581 | CONFIG_NETDEV_10000=y |
551 | CONFIG_WLAN=y | 582 | CONFIG_WLAN=y |
552 | # CONFIG_WLAN_PRE80211 is not set | 583 | # CONFIG_HOSTAP is not set |
553 | # CONFIG_WLAN_80211 is not set | ||
554 | 584 | ||
555 | # | 585 | # |
556 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 586 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -629,6 +659,7 @@ CONFIG_SSB_POSSIBLE=y | |||
629 | # | 659 | # |
630 | # CONFIG_MFD_CORE is not set | 660 | # CONFIG_MFD_CORE is not set |
631 | # CONFIG_MFD_SM501 is not set | 661 | # CONFIG_MFD_SM501 is not set |
662 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
632 | # CONFIG_HTC_PASIC3 is not set | 663 | # CONFIG_HTC_PASIC3 is not set |
633 | # CONFIG_MFD_TMIO is not set | 664 | # CONFIG_MFD_TMIO is not set |
634 | # CONFIG_REGULATOR is not set | 665 | # CONFIG_REGULATOR is not set |
@@ -688,6 +719,7 @@ CONFIG_RTC_LIB=y | |||
688 | # CONFIG_EXT2_FS is not set | 719 | # CONFIG_EXT2_FS is not set |
689 | # CONFIG_EXT3_FS is not set | 720 | # CONFIG_EXT3_FS is not set |
690 | # CONFIG_EXT4_FS is not set | 721 | # CONFIG_EXT4_FS is not set |
722 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
691 | # CONFIG_REISERFS_FS is not set | 723 | # CONFIG_REISERFS_FS is not set |
692 | # CONFIG_JFS_FS is not set | 724 | # CONFIG_JFS_FS is not set |
693 | # CONFIG_FS_POSIX_ACL is not set | 725 | # CONFIG_FS_POSIX_ACL is not set |
@@ -731,7 +763,6 @@ CONFIG_PROC_FS=y | |||
731 | CONFIG_PROC_SYSCTL=y | 763 | CONFIG_PROC_SYSCTL=y |
732 | CONFIG_PROC_PAGE_MONITOR=y | 764 | CONFIG_PROC_PAGE_MONITOR=y |
733 | # CONFIG_SYSFS is not set | 765 | # CONFIG_SYSFS is not set |
734 | # CONFIG_HUGETLBFS is not set | ||
735 | # CONFIG_HUGETLB_PAGE is not set | 766 | # CONFIG_HUGETLB_PAGE is not set |
736 | CONFIG_MISC_FILESYSTEMS=y | 767 | CONFIG_MISC_FILESYSTEMS=y |
737 | # CONFIG_ADFS_FS is not set | 768 | # CONFIG_ADFS_FS is not set |
@@ -794,6 +825,7 @@ CONFIG_FRAME_WARN=1024 | |||
794 | # CONFIG_DEBUG_MEMORY_INIT is not set | 825 | # CONFIG_DEBUG_MEMORY_INIT is not set |
795 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 826 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
796 | # CONFIG_LATENCYTOP is not set | 827 | # CONFIG_LATENCYTOP is not set |
828 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
797 | CONFIG_HAVE_FUNCTION_TRACER=y | 829 | CONFIG_HAVE_FUNCTION_TRACER=y |
798 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 830 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
799 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 831 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -806,8 +838,6 @@ CONFIG_TRACING_SUPPORT=y | |||
806 | # CONFIG_SAMPLES is not set | 838 | # CONFIG_SAMPLES is not set |
807 | CONFIG_HAVE_ARCH_KGDB=y | 839 | CONFIG_HAVE_ARCH_KGDB=y |
808 | CONFIG_SH_STANDARD_BIOS=y | 840 | CONFIG_SH_STANDARD_BIOS=y |
809 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
810 | CONFIG_EARLY_PRINTK=y | ||
811 | # CONFIG_DWARF_UNWINDER is not set | 841 | # CONFIG_DWARF_UNWINDER is not set |
812 | 842 | ||
813 | # | 843 | # |
@@ -815,7 +845,11 @@ CONFIG_EARLY_PRINTK=y | |||
815 | # | 845 | # |
816 | # CONFIG_KEYS is not set | 846 | # CONFIG_KEYS is not set |
817 | # CONFIG_SECURITYFS is not set | 847 | # CONFIG_SECURITYFS is not set |
818 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 848 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
849 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
850 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
851 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
852 | CONFIG_DEFAULT_SECURITY="" | ||
819 | CONFIG_CRYPTO=y | 853 | CONFIG_CRYPTO=y |
820 | 854 | ||
821 | # | 855 | # |
diff --git a/arch/sh/configs/shx3_defconfig b/arch/sh/configs/shx3_defconfig index e3858d757d5..ecf50cda4cb 100644 --- a/arch/sh/configs/shx3_defconfig +++ b/arch/sh/configs/shx3_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:29:26 2009 | 4 | # Mon Jan 4 15:10:45 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -22,6 +22,7 @@ CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y | |||
22 | CONFIG_GENERIC_LOCKBREAK=y | 22 | CONFIG_GENERIC_LOCKBREAK=y |
23 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 23 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
24 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 24 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
25 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
25 | CONFIG_SYS_SUPPORTS_SMP=y | 26 | CONFIG_SYS_SUPPORTS_SMP=y |
26 | CONFIG_SYS_SUPPORTS_NUMA=y | 27 | CONFIG_SYS_SUPPORTS_NUMA=y |
27 | CONFIG_SYS_SUPPORTS_TMU=y | 28 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -32,6 +33,8 @@ CONFIG_LOCKDEP_SUPPORT=y | |||
32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 33 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 34 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 35 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
36 | CONFIG_DMA_COHERENT=y | ||
37 | # CONFIG_DMA_NONCOHERENT is not set | ||
35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 38 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
36 | CONFIG_CONSTRUCTORS=y | 39 | CONFIG_CONSTRUCTORS=y |
37 | 40 | ||
@@ -66,6 +69,7 @@ CONFIG_AUDIT_TREE=y | |||
66 | # | 69 | # |
67 | CONFIG_TREE_RCU=y | 70 | CONFIG_TREE_RCU=y |
68 | # CONFIG_TREE_PREEMPT_RCU is not set | 71 | # CONFIG_TREE_PREEMPT_RCU is not set |
72 | # CONFIG_TINY_RCU is not set | ||
69 | CONFIG_RCU_TRACE=y | 73 | CONFIG_RCU_TRACE=y |
70 | CONFIG_RCU_FANOUT=32 | 74 | CONFIG_RCU_FANOUT=32 |
71 | # CONFIG_RCU_FANOUT_EXACT is not set | 75 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -121,6 +125,7 @@ CONFIG_EVENTFD=y | |||
121 | CONFIG_SHMEM=y | 125 | CONFIG_SHMEM=y |
122 | CONFIG_AIO=y | 126 | CONFIG_AIO=y |
123 | CONFIG_HAVE_PERF_EVENTS=y | 127 | CONFIG_HAVE_PERF_EVENTS=y |
128 | CONFIG_PERF_USE_VMALLOC=y | ||
124 | 129 | ||
125 | # | 130 | # |
126 | # Kernel Performance Events And Counters | 131 | # Kernel Performance Events And Counters |
@@ -128,6 +133,7 @@ CONFIG_HAVE_PERF_EVENTS=y | |||
128 | CONFIG_PERF_EVENTS=y | 133 | CONFIG_PERF_EVENTS=y |
129 | CONFIG_EVENT_PROFILE=y | 134 | CONFIG_EVENT_PROFILE=y |
130 | # CONFIG_PERF_COUNTERS is not set | 135 | # CONFIG_PERF_COUNTERS is not set |
136 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
131 | CONFIG_VM_EVENT_COUNTERS=y | 137 | CONFIG_VM_EVENT_COUNTERS=y |
132 | CONFIG_COMPAT_BRK=y | 138 | CONFIG_COMPAT_BRK=y |
133 | # CONFIG_SLAB is not set | 139 | # CONFIG_SLAB is not set |
@@ -143,6 +149,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
143 | CONFIG_HAVE_KPROBES=y | 149 | CONFIG_HAVE_KPROBES=y |
144 | CONFIG_HAVE_KRETPROBES=y | 150 | CONFIG_HAVE_KRETPROBES=y |
145 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 151 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
152 | CONFIG_HAVE_DMA_ATTRS=y | ||
146 | CONFIG_USE_GENERIC_SMP_HELPERS=y | 153 | CONFIG_USE_GENERIC_SMP_HELPERS=y |
147 | CONFIG_HAVE_CLK=y | 154 | CONFIG_HAVE_CLK=y |
148 | CONFIG_HAVE_DMA_API_DEBUG=y | 155 | CONFIG_HAVE_DMA_API_DEBUG=y |
@@ -166,19 +173,48 @@ CONFIG_BLOCK=y | |||
166 | CONFIG_LBDAF=y | 173 | CONFIG_LBDAF=y |
167 | # CONFIG_BLK_DEV_BSG is not set | 174 | # CONFIG_BLK_DEV_BSG is not set |
168 | # CONFIG_BLK_DEV_INTEGRITY is not set | 175 | # CONFIG_BLK_DEV_INTEGRITY is not set |
176 | # CONFIG_BLK_CGROUP is not set | ||
169 | 177 | ||
170 | # | 178 | # |
171 | # IO Schedulers | 179 | # IO Schedulers |
172 | # | 180 | # |
173 | CONFIG_IOSCHED_NOOP=y | 181 | CONFIG_IOSCHED_NOOP=y |
174 | CONFIG_IOSCHED_AS=y | ||
175 | CONFIG_IOSCHED_DEADLINE=y | 182 | CONFIG_IOSCHED_DEADLINE=y |
176 | CONFIG_IOSCHED_CFQ=y | 183 | CONFIG_IOSCHED_CFQ=y |
177 | CONFIG_DEFAULT_AS=y | 184 | # CONFIG_CFQ_GROUP_IOSCHED is not set |
178 | # CONFIG_DEFAULT_DEADLINE is not set | 185 | # CONFIG_DEFAULT_DEADLINE is not set |
179 | # CONFIG_DEFAULT_CFQ is not set | 186 | CONFIG_DEFAULT_CFQ=y |
180 | # CONFIG_DEFAULT_NOOP is not set | 187 | # CONFIG_DEFAULT_NOOP is not set |
181 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 188 | CONFIG_DEFAULT_IOSCHED="cfq" |
189 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
190 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
191 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
192 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
193 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
194 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
195 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
196 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
197 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
198 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
199 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
200 | # CONFIG_INLINE_READ_LOCK is not set | ||
201 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
202 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
203 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
204 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
205 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
206 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
207 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
208 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
209 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
210 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
211 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
212 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
213 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
214 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
215 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
216 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
217 | CONFIG_MUTEX_SPIN_ON_OWNER=y | ||
182 | CONFIG_FREEZER=y | 218 | CONFIG_FREEZER=y |
183 | 219 | ||
184 | # | 220 | # |
@@ -233,6 +269,7 @@ CONFIG_FORCE_MAX_ZONEORDER=7 | |||
233 | CONFIG_MEMORY_START=0x0c000000 | 269 | CONFIG_MEMORY_START=0x0c000000 |
234 | CONFIG_MEMORY_SIZE=0x04000000 | 270 | CONFIG_MEMORY_SIZE=0x04000000 |
235 | CONFIG_29BIT=y | 271 | CONFIG_29BIT=y |
272 | # CONFIG_PMB_ENABLE is not set | ||
236 | # CONFIG_X2TLB is not set | 273 | # CONFIG_X2TLB is not set |
237 | CONFIG_VSYSCALL=y | 274 | CONFIG_VSYSCALL=y |
238 | CONFIG_NUMA=y | 275 | CONFIG_NUMA=y |
@@ -271,10 +308,9 @@ CONFIG_MIGRATION=y | |||
271 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 308 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
272 | CONFIG_ZONE_DMA_FLAG=0 | 309 | CONFIG_ZONE_DMA_FLAG=0 |
273 | CONFIG_NR_QUICK=2 | 310 | CONFIG_NR_QUICK=2 |
274 | CONFIG_HAVE_MLOCK=y | ||
275 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
276 | # CONFIG_KSM is not set | 311 | # CONFIG_KSM is not set |
277 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 312 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
313 | CONFIG_SCHED_MC=y | ||
278 | 314 | ||
279 | # | 315 | # |
280 | # Cache configuration | 316 | # Cache configuration |
@@ -449,6 +485,7 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=m | |||
449 | CONFIG_INET6_XFRM_MODE_BEET=m | 485 | CONFIG_INET6_XFRM_MODE_BEET=m |
450 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 486 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
451 | CONFIG_IPV6_SIT=m | 487 | CONFIG_IPV6_SIT=m |
488 | # CONFIG_IPV6_SIT_6RD is not set | ||
452 | CONFIG_IPV6_NDISC_NODETYPE=y | 489 | CONFIG_IPV6_NDISC_NODETYPE=y |
453 | # CONFIG_IPV6_TUNNEL is not set | 490 | # CONFIG_IPV6_TUNNEL is not set |
454 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 491 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
@@ -496,7 +533,13 @@ CONFIG_CAN_VCAN=m | |||
496 | # CONFIG_IRDA is not set | 533 | # CONFIG_IRDA is not set |
497 | # CONFIG_BT is not set | 534 | # CONFIG_BT is not set |
498 | # CONFIG_AF_RXRPC is not set | 535 | # CONFIG_AF_RXRPC is not set |
499 | # CONFIG_WIRELESS is not set | 536 | CONFIG_WIRELESS=y |
537 | # CONFIG_CFG80211 is not set | ||
538 | # CONFIG_LIB80211 is not set | ||
539 | |||
540 | # | ||
541 | # CFG80211 needs to be enabled for MAC80211 | ||
542 | # | ||
500 | # CONFIG_WIMAX is not set | 543 | # CONFIG_WIMAX is not set |
501 | # CONFIG_RFKILL is not set | 544 | # CONFIG_RFKILL is not set |
502 | # CONFIG_NET_9P is not set | 545 | # CONFIG_NET_9P is not set |
@@ -522,6 +565,10 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
522 | CONFIG_BLK_DEV=y | 565 | CONFIG_BLK_DEV=y |
523 | # CONFIG_BLK_DEV_COW_COMMON is not set | 566 | # CONFIG_BLK_DEV_COW_COMMON is not set |
524 | # CONFIG_BLK_DEV_LOOP is not set | 567 | # CONFIG_BLK_DEV_LOOP is not set |
568 | |||
569 | # | ||
570 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
571 | # | ||
525 | # CONFIG_BLK_DEV_NBD is not set | 572 | # CONFIG_BLK_DEV_NBD is not set |
526 | # CONFIG_BLK_DEV_UB is not set | 573 | # CONFIG_BLK_DEV_UB is not set |
527 | CONFIG_BLK_DEV_RAM=y | 574 | CONFIG_BLK_DEV_RAM=y |
@@ -532,9 +579,12 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
532 | # CONFIG_ATA_OVER_ETH is not set | 579 | # CONFIG_ATA_OVER_ETH is not set |
533 | # CONFIG_BLK_DEV_HD is not set | 580 | # CONFIG_BLK_DEV_HD is not set |
534 | CONFIG_MISC_DEVICES=y | 581 | CONFIG_MISC_DEVICES=y |
582 | # CONFIG_AD525X_DPOT is not set | ||
535 | # CONFIG_ICS932S401 is not set | 583 | # CONFIG_ICS932S401 is not set |
536 | # CONFIG_ENCLOSURE_SERVICES is not set | 584 | # CONFIG_ENCLOSURE_SERVICES is not set |
537 | # CONFIG_ISL29003 is not set | 585 | # CONFIG_ISL29003 is not set |
586 | # CONFIG_DS1682 is not set | ||
587 | # CONFIG_TI_DAC7512 is not set | ||
538 | # CONFIG_C2PORT is not set | 588 | # CONFIG_C2PORT is not set |
539 | 589 | ||
540 | # | 590 | # |
@@ -624,11 +674,12 @@ CONFIG_SMC91X=y | |||
624 | # CONFIG_B44 is not set | 674 | # CONFIG_B44 is not set |
625 | # CONFIG_KS8842 is not set | 675 | # CONFIG_KS8842 is not set |
626 | # CONFIG_KS8851 is not set | 676 | # CONFIG_KS8851 is not set |
677 | # CONFIG_KS8851_MLL is not set | ||
627 | # CONFIG_NETDEV_1000 is not set | 678 | # CONFIG_NETDEV_1000 is not set |
628 | # CONFIG_NETDEV_10000 is not set | 679 | # CONFIG_NETDEV_10000 is not set |
629 | CONFIG_WLAN=y | 680 | CONFIG_WLAN=y |
630 | # CONFIG_WLAN_PRE80211 is not set | 681 | # CONFIG_USB_ZD1201 is not set |
631 | # CONFIG_WLAN_80211 is not set | 682 | # CONFIG_HOSTAP is not set |
632 | 683 | ||
633 | # | 684 | # |
634 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 685 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -726,7 +777,6 @@ CONFIG_I2C_HELPER_AUTO=y | |||
726 | # | 777 | # |
727 | # Miscellaneous I2C Chip support | 778 | # Miscellaneous I2C Chip support |
728 | # | 779 | # |
729 | # CONFIG_DS1682 is not set | ||
730 | # CONFIG_SENSORS_TSL2550 is not set | 780 | # CONFIG_SENSORS_TSL2550 is not set |
731 | # CONFIG_I2C_DEBUG_CORE is not set | 781 | # CONFIG_I2C_DEBUG_CORE is not set |
732 | # CONFIG_I2C_DEBUG_ALGO is not set | 782 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -740,7 +790,10 @@ CONFIG_SPI_MASTER=y | |||
740 | # SPI Master Controller Drivers | 790 | # SPI Master Controller Drivers |
741 | # | 791 | # |
742 | # CONFIG_SPI_BITBANG is not set | 792 | # CONFIG_SPI_BITBANG is not set |
793 | # CONFIG_SPI_SH_MSIOF is not set | ||
743 | # CONFIG_SPI_SH_SCI is not set | 794 | # CONFIG_SPI_SH_SCI is not set |
795 | # CONFIG_SPI_XILINX is not set | ||
796 | # CONFIG_SPI_DESIGNWARE is not set | ||
744 | 797 | ||
745 | # | 798 | # |
746 | # SPI Protocol Masters | 799 | # SPI Protocol Masters |
@@ -781,15 +834,16 @@ CONFIG_SSB_POSSIBLE=y | |||
781 | # | 834 | # |
782 | # CONFIG_MFD_CORE is not set | 835 | # CONFIG_MFD_CORE is not set |
783 | # CONFIG_MFD_SM501 is not set | 836 | # CONFIG_MFD_SM501 is not set |
837 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
784 | # CONFIG_HTC_PASIC3 is not set | 838 | # CONFIG_HTC_PASIC3 is not set |
785 | # CONFIG_MFD_TMIO is not set | 839 | # CONFIG_MFD_TMIO is not set |
786 | # CONFIG_MFD_WM8400 is not set | 840 | # CONFIG_MFD_WM8400 is not set |
787 | # CONFIG_MFD_WM831X is not set | ||
788 | # CONFIG_MFD_WM8350_I2C is not set | 841 | # CONFIG_MFD_WM8350_I2C is not set |
789 | # CONFIG_MFD_PCF50633 is not set | 842 | # CONFIG_MFD_PCF50633 is not set |
790 | # CONFIG_MFD_MC13783 is not set | 843 | # CONFIG_MFD_MC13783 is not set |
791 | # CONFIG_AB3100_CORE is not set | 844 | # CONFIG_AB3100_CORE is not set |
792 | # CONFIG_EZX_PCAP is not set | 845 | # CONFIG_EZX_PCAP is not set |
846 | # CONFIG_AB4500_CORE is not set | ||
793 | # CONFIG_REGULATOR is not set | 847 | # CONFIG_REGULATOR is not set |
794 | # CONFIG_MEDIA_SUPPORT is not set | 848 | # CONFIG_MEDIA_SUPPORT is not set |
795 | 849 | ||
@@ -924,10 +978,12 @@ CONFIG_USB_GADGET_DUALSPEED=y | |||
924 | # CONFIG_USB_ETH is not set | 978 | # CONFIG_USB_ETH is not set |
925 | # CONFIG_USB_GADGETFS is not set | 979 | # CONFIG_USB_GADGETFS is not set |
926 | # CONFIG_USB_FILE_STORAGE is not set | 980 | # CONFIG_USB_FILE_STORAGE is not set |
981 | # CONFIG_USB_MASS_STORAGE is not set | ||
927 | # CONFIG_USB_G_SERIAL is not set | 982 | # CONFIG_USB_G_SERIAL is not set |
928 | # CONFIG_USB_MIDI_GADGET is not set | 983 | # CONFIG_USB_MIDI_GADGET is not set |
929 | # CONFIG_USB_G_PRINTER is not set | 984 | # CONFIG_USB_G_PRINTER is not set |
930 | # CONFIG_USB_CDC_COMPOSITE is not set | 985 | # CONFIG_USB_CDC_COMPOSITE is not set |
986 | # CONFIG_USB_G_MULTI is not set | ||
931 | 987 | ||
932 | # | 988 | # |
933 | # OTG and related infrastructure | 989 | # OTG and related infrastructure |
@@ -965,6 +1021,7 @@ CONFIG_RTC_INTF_DEV=y | |||
965 | # CONFIG_RTC_DRV_PCF8563 is not set | 1021 | # CONFIG_RTC_DRV_PCF8563 is not set |
966 | # CONFIG_RTC_DRV_PCF8583 is not set | 1022 | # CONFIG_RTC_DRV_PCF8583 is not set |
967 | # CONFIG_RTC_DRV_M41T80 is not set | 1023 | # CONFIG_RTC_DRV_M41T80 is not set |
1024 | # CONFIG_RTC_DRV_BQ32K is not set | ||
968 | # CONFIG_RTC_DRV_S35390A is not set | 1025 | # CONFIG_RTC_DRV_S35390A is not set |
969 | # CONFIG_RTC_DRV_FM3130 is not set | 1026 | # CONFIG_RTC_DRV_FM3130 is not set |
970 | # CONFIG_RTC_DRV_RX8581 is not set | 1027 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -993,7 +1050,9 @@ CONFIG_RTC_INTF_DEV=y | |||
993 | # CONFIG_RTC_DRV_M48T86 is not set | 1050 | # CONFIG_RTC_DRV_M48T86 is not set |
994 | # CONFIG_RTC_DRV_M48T35 is not set | 1051 | # CONFIG_RTC_DRV_M48T35 is not set |
995 | # CONFIG_RTC_DRV_M48T59 is not set | 1052 | # CONFIG_RTC_DRV_M48T59 is not set |
1053 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
996 | # CONFIG_RTC_DRV_BQ4802 is not set | 1054 | # CONFIG_RTC_DRV_BQ4802 is not set |
1055 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
997 | # CONFIG_RTC_DRV_V3020 is not set | 1056 | # CONFIG_RTC_DRV_V3020 is not set |
998 | 1057 | ||
999 | # | 1058 | # |
@@ -1244,8 +1303,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1244 | CONFIG_HAVE_ARCH_KGDB=y | 1303 | CONFIG_HAVE_ARCH_KGDB=y |
1245 | # CONFIG_KGDB is not set | 1304 | # CONFIG_KGDB is not set |
1246 | CONFIG_SH_STANDARD_BIOS=y | 1305 | CONFIG_SH_STANDARD_BIOS=y |
1247 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1248 | CONFIG_EARLY_PRINTK=y | ||
1249 | # CONFIG_STACK_DEBUG is not set | 1306 | # CONFIG_STACK_DEBUG is not set |
1250 | CONFIG_DEBUG_STACK_USAGE=y | 1307 | CONFIG_DEBUG_STACK_USAGE=y |
1251 | CONFIG_DUMP_CODE=y | 1308 | CONFIG_DUMP_CODE=y |
@@ -1258,7 +1315,11 @@ CONFIG_DUMP_CODE=y | |||
1258 | # CONFIG_KEYS is not set | 1315 | # CONFIG_KEYS is not set |
1259 | # CONFIG_SECURITY is not set | 1316 | # CONFIG_SECURITY is not set |
1260 | # CONFIG_SECURITYFS is not set | 1317 | # CONFIG_SECURITYFS is not set |
1261 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1318 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1319 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1320 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1321 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1322 | CONFIG_DEFAULT_SECURITY="" | ||
1262 | CONFIG_CRYPTO=y | 1323 | CONFIG_CRYPTO=y |
1263 | 1324 | ||
1264 | # | 1325 | # |
diff --git a/arch/sh/configs/snapgear_defconfig b/arch/sh/configs/snapgear_defconfig index cb919a0de4b..98352d75785 100644 --- a/arch/sh/configs/snapgear_defconfig +++ b/arch/sh/configs/snapgear_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:33:00 2009 | 4 | # Mon Jan 4 15:14:18 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -59,6 +61,7 @@ CONFIG_KERNEL_GZIP=y | |||
59 | # | 61 | # |
60 | CONFIG_TREE_RCU=y | 62 | CONFIG_TREE_RCU=y |
61 | # CONFIG_TREE_PREEMPT_RCU is not set | 63 | # CONFIG_TREE_PREEMPT_RCU is not set |
64 | # CONFIG_TINY_RCU is not set | ||
62 | # CONFIG_RCU_TRACE is not set | 65 | # CONFIG_RCU_TRACE is not set |
63 | CONFIG_RCU_FANOUT=32 | 66 | CONFIG_RCU_FANOUT=32 |
64 | # CONFIG_RCU_FANOUT_EXACT is not set | 67 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -97,6 +100,7 @@ CONFIG_EVENTFD=y | |||
97 | CONFIG_SHMEM=y | 100 | CONFIG_SHMEM=y |
98 | CONFIG_AIO=y | 101 | CONFIG_AIO=y |
99 | CONFIG_HAVE_PERF_EVENTS=y | 102 | CONFIG_HAVE_PERF_EVENTS=y |
103 | CONFIG_PERF_USE_VMALLOC=y | ||
100 | 104 | ||
101 | # | 105 | # |
102 | # Kernel Performance Events And Counters | 106 | # Kernel Performance Events And Counters |
@@ -115,6 +119,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
115 | CONFIG_HAVE_KPROBES=y | 119 | CONFIG_HAVE_KPROBES=y |
116 | CONFIG_HAVE_KRETPROBES=y | 120 | CONFIG_HAVE_KRETPROBES=y |
117 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 121 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
122 | CONFIG_HAVE_DMA_ATTRS=y | ||
118 | CONFIG_HAVE_CLK=y | 123 | CONFIG_HAVE_CLK=y |
119 | CONFIG_HAVE_DMA_API_DEBUG=y | 124 | CONFIG_HAVE_DMA_API_DEBUG=y |
120 | 125 | ||
@@ -136,14 +141,41 @@ CONFIG_LBDAF=y | |||
136 | # IO Schedulers | 141 | # IO Schedulers |
137 | # | 142 | # |
138 | CONFIG_IOSCHED_NOOP=y | 143 | CONFIG_IOSCHED_NOOP=y |
139 | CONFIG_IOSCHED_AS=y | ||
140 | CONFIG_IOSCHED_DEADLINE=y | 144 | CONFIG_IOSCHED_DEADLINE=y |
141 | CONFIG_IOSCHED_CFQ=y | 145 | CONFIG_IOSCHED_CFQ=y |
142 | CONFIG_DEFAULT_AS=y | ||
143 | # CONFIG_DEFAULT_DEADLINE is not set | 146 | # CONFIG_DEFAULT_DEADLINE is not set |
144 | # CONFIG_DEFAULT_CFQ is not set | 147 | CONFIG_DEFAULT_CFQ=y |
145 | # CONFIG_DEFAULT_NOOP is not set | 148 | # CONFIG_DEFAULT_NOOP is not set |
146 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 149 | CONFIG_DEFAULT_IOSCHED="cfq" |
150 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
151 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
152 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
153 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
156 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
157 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
158 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
160 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
161 | # CONFIG_INLINE_READ_LOCK is not set | ||
162 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
163 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
165 | CONFIG_INLINE_READ_UNLOCK=y | ||
166 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
167 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
168 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
169 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
170 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
171 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
174 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
175 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
176 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
178 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
147 | # CONFIG_FREEZER is not set | 179 | # CONFIG_FREEZER is not set |
148 | 180 | ||
149 | # | 181 | # |
@@ -219,8 +251,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
219 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 251 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
220 | CONFIG_ZONE_DMA_FLAG=0 | 252 | CONFIG_ZONE_DMA_FLAG=0 |
221 | CONFIG_NR_QUICK=2 | 253 | CONFIG_NR_QUICK=2 |
222 | CONFIG_HAVE_MLOCK=y | ||
223 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
224 | # CONFIG_KSM is not set | 254 | # CONFIG_KSM is not set |
225 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 255 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
226 | 256 | ||
@@ -272,9 +302,9 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
272 | # | 302 | # |
273 | # DMA support | 303 | # DMA support |
274 | # | 304 | # |
275 | CONFIG_SH_DMA_API=y | ||
276 | CONFIG_SH_DMA=y | 305 | CONFIG_SH_DMA=y |
277 | CONFIG_SH_DMA_IRQ_MULTI=y | 306 | CONFIG_SH_DMA_IRQ_MULTI=y |
307 | CONFIG_SH_DMA_API=y | ||
278 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 | 308 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 |
279 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 309 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
280 | 310 | ||
@@ -313,7 +343,6 @@ CONFIG_GUSA=y | |||
313 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 343 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
314 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 344 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
315 | CONFIG_ENTRY_OFFSET=0x00001000 | 345 | CONFIG_ENTRY_OFFSET=0x00001000 |
316 | # CONFIG_UBC_WAKEUP is not set | ||
317 | # CONFIG_CMDLINE_OVERWRITE is not set | 346 | # CONFIG_CMDLINE_OVERWRITE is not set |
318 | # CONFIG_CMDLINE_EXTEND is not set | 347 | # CONFIG_CMDLINE_EXTEND is not set |
319 | 348 | ||
@@ -321,7 +350,6 @@ CONFIG_ENTRY_OFFSET=0x00001000 | |||
321 | # Bus options | 350 | # Bus options |
322 | # | 351 | # |
323 | CONFIG_PCI=y | 352 | CONFIG_PCI=y |
324 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
325 | # CONFIG_PCIEPORTBUS is not set | 353 | # CONFIG_PCIEPORTBUS is not set |
326 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 354 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
327 | CONFIG_PCI_LEGACY=y | 355 | CONFIG_PCI_LEGACY=y |
@@ -407,9 +435,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
407 | # CONFIG_AF_RXRPC is not set | 435 | # CONFIG_AF_RXRPC is not set |
408 | CONFIG_WIRELESS=y | 436 | CONFIG_WIRELESS=y |
409 | # CONFIG_CFG80211 is not set | 437 | # CONFIG_CFG80211 is not set |
410 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
411 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
412 | # CONFIG_WIRELESS_EXT is not set | ||
413 | # CONFIG_LIB80211 is not set | 438 | # CONFIG_LIB80211 is not set |
414 | 439 | ||
415 | # | 440 | # |
@@ -524,6 +549,10 @@ CONFIG_BLK_DEV=y | |||
524 | # CONFIG_BLK_DEV_UMEM is not set | 549 | # CONFIG_BLK_DEV_UMEM is not set |
525 | # CONFIG_BLK_DEV_COW_COMMON is not set | 550 | # CONFIG_BLK_DEV_COW_COMMON is not set |
526 | # CONFIG_BLK_DEV_LOOP is not set | 551 | # CONFIG_BLK_DEV_LOOP is not set |
552 | |||
553 | # | ||
554 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
555 | # | ||
527 | # CONFIG_BLK_DEV_NBD is not set | 556 | # CONFIG_BLK_DEV_NBD is not set |
528 | # CONFIG_BLK_DEV_SX8 is not set | 557 | # CONFIG_BLK_DEV_SX8 is not set |
529 | CONFIG_BLK_DEV_RAM=y | 558 | CONFIG_BLK_DEV_RAM=y |
@@ -616,6 +645,7 @@ CONFIG_8139TOO_PIO=y | |||
616 | # CONFIG_SUNDANCE is not set | 645 | # CONFIG_SUNDANCE is not set |
617 | # CONFIG_TLAN is not set | 646 | # CONFIG_TLAN is not set |
618 | # CONFIG_KS8842 is not set | 647 | # CONFIG_KS8842 is not set |
648 | # CONFIG_KS8851_MLL is not set | ||
619 | # CONFIG_VIA_RHINE is not set | 649 | # CONFIG_VIA_RHINE is not set |
620 | # CONFIG_SC92031 is not set | 650 | # CONFIG_SC92031 is not set |
621 | # CONFIG_ATL2 is not set | 651 | # CONFIG_ATL2 is not set |
@@ -623,8 +653,9 @@ CONFIG_8139TOO_PIO=y | |||
623 | # CONFIG_NETDEV_10000 is not set | 653 | # CONFIG_NETDEV_10000 is not set |
624 | # CONFIG_TR is not set | 654 | # CONFIG_TR is not set |
625 | CONFIG_WLAN=y | 655 | CONFIG_WLAN=y |
626 | # CONFIG_WLAN_PRE80211 is not set | 656 | # CONFIG_ATMEL is not set |
627 | # CONFIG_WLAN_80211 is not set | 657 | # CONFIG_PRISM54 is not set |
658 | # CONFIG_HOSTAP is not set | ||
628 | 659 | ||
629 | # | 660 | # |
630 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 661 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -637,6 +668,7 @@ CONFIG_WLAN=y | |||
637 | # CONFIG_NETCONSOLE is not set | 668 | # CONFIG_NETCONSOLE is not set |
638 | # CONFIG_NETPOLL is not set | 669 | # CONFIG_NETPOLL is not set |
639 | # CONFIG_NET_POLL_CONTROLLER is not set | 670 | # CONFIG_NET_POLL_CONTROLLER is not set |
671 | # CONFIG_VMXNET3 is not set | ||
640 | # CONFIG_ISDN is not set | 672 | # CONFIG_ISDN is not set |
641 | # CONFIG_PHONE is not set | 673 | # CONFIG_PHONE is not set |
642 | 674 | ||
@@ -646,6 +678,7 @@ CONFIG_WLAN=y | |||
646 | CONFIG_INPUT=y | 678 | CONFIG_INPUT=y |
647 | # CONFIG_INPUT_FF_MEMLESS is not set | 679 | # CONFIG_INPUT_FF_MEMLESS is not set |
648 | # CONFIG_INPUT_POLLDEV is not set | 680 | # CONFIG_INPUT_POLLDEV is not set |
681 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
649 | 682 | ||
650 | # | 683 | # |
651 | # Userland interfaces | 684 | # Userland interfaces |
@@ -728,6 +761,7 @@ CONFIG_SSB_POSSIBLE=y | |||
728 | # | 761 | # |
729 | # CONFIG_MFD_CORE is not set | 762 | # CONFIG_MFD_CORE is not set |
730 | # CONFIG_MFD_SM501 is not set | 763 | # CONFIG_MFD_SM501 is not set |
764 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
731 | # CONFIG_HTC_PASIC3 is not set | 765 | # CONFIG_HTC_PASIC3 is not set |
732 | # CONFIG_MFD_TMIO is not set | 766 | # CONFIG_MFD_TMIO is not set |
733 | # CONFIG_REGULATOR is not set | 767 | # CONFIG_REGULATOR is not set |
@@ -787,7 +821,9 @@ CONFIG_RTC_DRV_DS1302=y | |||
787 | # CONFIG_RTC_DRV_M48T86 is not set | 821 | # CONFIG_RTC_DRV_M48T86 is not set |
788 | # CONFIG_RTC_DRV_M48T35 is not set | 822 | # CONFIG_RTC_DRV_M48T35 is not set |
789 | # CONFIG_RTC_DRV_M48T59 is not set | 823 | # CONFIG_RTC_DRV_M48T59 is not set |
824 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
790 | # CONFIG_RTC_DRV_BQ4802 is not set | 825 | # CONFIG_RTC_DRV_BQ4802 is not set |
826 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
791 | # CONFIG_RTC_DRV_V3020 is not set | 827 | # CONFIG_RTC_DRV_V3020 is not set |
792 | 828 | ||
793 | # | 829 | # |
@@ -812,6 +848,7 @@ CONFIG_EXT2_FS=y | |||
812 | # CONFIG_EXT2_FS_XIP is not set | 848 | # CONFIG_EXT2_FS_XIP is not set |
813 | # CONFIG_EXT3_FS is not set | 849 | # CONFIG_EXT3_FS is not set |
814 | # CONFIG_EXT4_FS is not set | 850 | # CONFIG_EXT4_FS is not set |
851 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
815 | # CONFIG_REISERFS_FS is not set | 852 | # CONFIG_REISERFS_FS is not set |
816 | # CONFIG_JFS_FS is not set | 853 | # CONFIG_JFS_FS is not set |
817 | # CONFIG_FS_POSIX_ACL is not set | 854 | # CONFIG_FS_POSIX_ACL is not set |
@@ -915,10 +952,11 @@ CONFIG_FRAME_WARN=1024 | |||
915 | # CONFIG_DEBUG_FS is not set | 952 | # CONFIG_DEBUG_FS is not set |
916 | # CONFIG_HEADERS_CHECK is not set | 953 | # CONFIG_HEADERS_CHECK is not set |
917 | # CONFIG_DEBUG_KERNEL is not set | 954 | # CONFIG_DEBUG_KERNEL is not set |
918 | # CONFIG_DEBUG_BUGVERBOSE is not set | 955 | CONFIG_DEBUG_BUGVERBOSE=y |
919 | # CONFIG_DEBUG_MEMORY_INIT is not set | 956 | # CONFIG_DEBUG_MEMORY_INIT is not set |
920 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 957 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
921 | # CONFIG_LATENCYTOP is not set | 958 | # CONFIG_LATENCYTOP is not set |
959 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
922 | CONFIG_HAVE_FUNCTION_TRACER=y | 960 | CONFIG_HAVE_FUNCTION_TRACER=y |
923 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 961 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
924 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 962 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -931,7 +969,6 @@ CONFIG_TRACING_SUPPORT=y | |||
931 | # CONFIG_SAMPLES is not set | 969 | # CONFIG_SAMPLES is not set |
932 | CONFIG_HAVE_ARCH_KGDB=y | 970 | CONFIG_HAVE_ARCH_KGDB=y |
933 | # CONFIG_SH_STANDARD_BIOS is not set | 971 | # CONFIG_SH_STANDARD_BIOS is not set |
934 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
935 | # CONFIG_DWARF_UNWINDER is not set | 972 | # CONFIG_DWARF_UNWINDER is not set |
936 | 973 | ||
937 | # | 974 | # |
@@ -940,7 +977,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
940 | # CONFIG_KEYS is not set | 977 | # CONFIG_KEYS is not set |
941 | # CONFIG_SECURITY is not set | 978 | # CONFIG_SECURITY is not set |
942 | # CONFIG_SECURITYFS is not set | 979 | # CONFIG_SECURITYFS is not set |
943 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 980 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
981 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
982 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
983 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
984 | CONFIG_DEFAULT_SECURITY="" | ||
944 | # CONFIG_CRYPTO is not set | 985 | # CONFIG_CRYPTO is not set |
945 | # CONFIG_BINARY_PRINTF is not set | 986 | # CONFIG_BINARY_PRINTF is not set |
946 | 987 | ||
diff --git a/arch/sh/configs/systemh_defconfig b/arch/sh/configs/systemh_defconfig index b9fe960309f..72982e360e3 100644 --- a/arch/sh/configs/systemh_defconfig +++ b/arch/sh/configs/systemh_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:35:03 2009 | 4 | # Mon Jan 4 15:14:50 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_TMU=y | 24 | CONFIG_SYS_SUPPORTS_TMU=y |
24 | CONFIG_STACKTRACE_SUPPORT=y | 25 | CONFIG_STACKTRACE_SUPPORT=y |
25 | CONFIG_LOCKDEP_SUPPORT=y | 26 | CONFIG_LOCKDEP_SUPPORT=y |
@@ -29,6 +30,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
29 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
30 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
31 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
33 | CONFIG_DMA_NONCOHERENT=y | ||
32 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
33 | CONFIG_CONSTRUCTORS=y | 35 | CONFIG_CONSTRUCTORS=y |
34 | 36 | ||
@@ -56,6 +58,7 @@ CONFIG_SWAP=y | |||
56 | # | 58 | # |
57 | CONFIG_TREE_RCU=y | 59 | CONFIG_TREE_RCU=y |
58 | # CONFIG_TREE_PREEMPT_RCU is not set | 60 | # CONFIG_TREE_PREEMPT_RCU is not set |
61 | # CONFIG_TINY_RCU is not set | ||
59 | # CONFIG_RCU_TRACE is not set | 62 | # CONFIG_RCU_TRACE is not set |
60 | CONFIG_RCU_FANOUT=32 | 63 | CONFIG_RCU_FANOUT=32 |
61 | # CONFIG_RCU_FANOUT_EXACT is not set | 64 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -94,6 +97,7 @@ CONFIG_EVENTFD=y | |||
94 | CONFIG_SHMEM=y | 97 | CONFIG_SHMEM=y |
95 | CONFIG_AIO=y | 98 | CONFIG_AIO=y |
96 | CONFIG_HAVE_PERF_EVENTS=y | 99 | CONFIG_HAVE_PERF_EVENTS=y |
100 | CONFIG_PERF_USE_VMALLOC=y | ||
97 | 101 | ||
98 | # | 102 | # |
99 | # Kernel Performance Events And Counters | 103 | # Kernel Performance Events And Counters |
@@ -112,6 +116,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
112 | CONFIG_HAVE_KPROBES=y | 116 | CONFIG_HAVE_KPROBES=y |
113 | CONFIG_HAVE_KRETPROBES=y | 117 | CONFIG_HAVE_KRETPROBES=y |
114 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 118 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
119 | CONFIG_HAVE_DMA_ATTRS=y | ||
115 | CONFIG_HAVE_CLK=y | 120 | CONFIG_HAVE_CLK=y |
116 | CONFIG_HAVE_DMA_API_DEBUG=y | 121 | CONFIG_HAVE_DMA_API_DEBUG=y |
117 | 122 | ||
@@ -138,14 +143,41 @@ CONFIG_LBDAF=y | |||
138 | # IO Schedulers | 143 | # IO Schedulers |
139 | # | 144 | # |
140 | CONFIG_IOSCHED_NOOP=y | 145 | CONFIG_IOSCHED_NOOP=y |
141 | CONFIG_IOSCHED_AS=y | ||
142 | CONFIG_IOSCHED_DEADLINE=y | 146 | CONFIG_IOSCHED_DEADLINE=y |
143 | CONFIG_IOSCHED_CFQ=y | 147 | CONFIG_IOSCHED_CFQ=y |
144 | CONFIG_DEFAULT_AS=y | ||
145 | # CONFIG_DEFAULT_DEADLINE is not set | 148 | # CONFIG_DEFAULT_DEADLINE is not set |
146 | # CONFIG_DEFAULT_CFQ is not set | 149 | CONFIG_DEFAULT_CFQ=y |
147 | # CONFIG_DEFAULT_NOOP is not set | 150 | # CONFIG_DEFAULT_NOOP is not set |
148 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 151 | CONFIG_DEFAULT_IOSCHED="cfq" |
152 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
153 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
154 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
155 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
156 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
157 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
158 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
159 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
160 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
161 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
162 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
163 | # CONFIG_INLINE_READ_LOCK is not set | ||
164 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
165 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
166 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
167 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
168 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
169 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
170 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
171 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
172 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
173 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
174 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
175 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
176 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
177 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
178 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
179 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
180 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
149 | # CONFIG_FREEZER is not set | 181 | # CONFIG_FREEZER is not set |
150 | 182 | ||
151 | # | 183 | # |
@@ -221,8 +253,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
221 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 253 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
222 | CONFIG_ZONE_DMA_FLAG=0 | 254 | CONFIG_ZONE_DMA_FLAG=0 |
223 | CONFIG_NR_QUICK=2 | 255 | CONFIG_NR_QUICK=2 |
224 | CONFIG_HAVE_MLOCK=y | ||
225 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
226 | # CONFIG_KSM is not set | 256 | # CONFIG_KSM is not set |
227 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 257 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
228 | 258 | ||
@@ -310,7 +340,6 @@ CONFIG_GUSA=y | |||
310 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 340 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
311 | CONFIG_BOOT_LINK_OFFSET=0x00800000 | 341 | CONFIG_BOOT_LINK_OFFSET=0x00800000 |
312 | CONFIG_ENTRY_OFFSET=0x00001000 | 342 | CONFIG_ENTRY_OFFSET=0x00001000 |
313 | # CONFIG_UBC_WAKEUP is not set | ||
314 | # CONFIG_CMDLINE_OVERWRITE is not set | 343 | # CONFIG_CMDLINE_OVERWRITE is not set |
315 | # CONFIG_CMDLINE_EXTEND is not set | 344 | # CONFIG_CMDLINE_EXTEND is not set |
316 | 345 | ||
@@ -349,6 +378,10 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y | |||
349 | CONFIG_BLK_DEV=y | 378 | CONFIG_BLK_DEV=y |
350 | # CONFIG_BLK_DEV_COW_COMMON is not set | 379 | # CONFIG_BLK_DEV_COW_COMMON is not set |
351 | # CONFIG_BLK_DEV_LOOP is not set | 380 | # CONFIG_BLK_DEV_LOOP is not set |
381 | |||
382 | # | ||
383 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
384 | # | ||
352 | CONFIG_BLK_DEV_RAM=y | 385 | CONFIG_BLK_DEV_RAM=y |
353 | CONFIG_BLK_DEV_RAM_COUNT=16 | 386 | CONFIG_BLK_DEV_RAM_COUNT=16 |
354 | CONFIG_BLK_DEV_RAM_SIZE=1024 | 387 | CONFIG_BLK_DEV_RAM_SIZE=1024 |
@@ -390,6 +423,7 @@ CONFIG_SERIO=y | |||
390 | # CONFIG_SERIO_SERPORT is not set | 423 | # CONFIG_SERIO_SERPORT is not set |
391 | # CONFIG_SERIO_LIBPS2 is not set | 424 | # CONFIG_SERIO_LIBPS2 is not set |
392 | # CONFIG_SERIO_RAW is not set | 425 | # CONFIG_SERIO_RAW is not set |
426 | # CONFIG_SERIO_ALTERA_PS2 is not set | ||
393 | # CONFIG_GAMEPORT is not set | 427 | # CONFIG_GAMEPORT is not set |
394 | 428 | ||
395 | # | 429 | # |
@@ -458,6 +492,7 @@ CONFIG_SSB_POSSIBLE=y | |||
458 | # | 492 | # |
459 | # CONFIG_MFD_CORE is not set | 493 | # CONFIG_MFD_CORE is not set |
460 | # CONFIG_MFD_SM501 is not set | 494 | # CONFIG_MFD_SM501 is not set |
495 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
461 | # CONFIG_HTC_PASIC3 is not set | 496 | # CONFIG_HTC_PASIC3 is not set |
462 | # CONFIG_MFD_TMIO is not set | 497 | # CONFIG_MFD_TMIO is not set |
463 | # CONFIG_REGULATOR is not set | 498 | # CONFIG_REGULATOR is not set |
@@ -517,6 +552,7 @@ CONFIG_RTC_LIB=y | |||
517 | # CONFIG_EXT2_FS is not set | 552 | # CONFIG_EXT2_FS is not set |
518 | # CONFIG_EXT3_FS is not set | 553 | # CONFIG_EXT3_FS is not set |
519 | # CONFIG_EXT4_FS is not set | 554 | # CONFIG_EXT4_FS is not set |
555 | CONFIG_EXT4_USE_FOR_EXT23=y | ||
520 | # CONFIG_REISERFS_FS is not set | 556 | # CONFIG_REISERFS_FS is not set |
521 | # CONFIG_JFS_FS is not set | 557 | # CONFIG_JFS_FS is not set |
522 | # CONFIG_FS_POSIX_ACL is not set | 558 | # CONFIG_FS_POSIX_ACL is not set |
@@ -609,10 +645,11 @@ CONFIG_FRAME_WARN=1024 | |||
609 | # CONFIG_DEBUG_FS is not set | 645 | # CONFIG_DEBUG_FS is not set |
610 | # CONFIG_HEADERS_CHECK is not set | 646 | # CONFIG_HEADERS_CHECK is not set |
611 | # CONFIG_DEBUG_KERNEL is not set | 647 | # CONFIG_DEBUG_KERNEL is not set |
612 | # CONFIG_DEBUG_BUGVERBOSE is not set | 648 | CONFIG_DEBUG_BUGVERBOSE=y |
613 | # CONFIG_DEBUG_MEMORY_INIT is not set | 649 | # CONFIG_DEBUG_MEMORY_INIT is not set |
614 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 650 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
615 | # CONFIG_LATENCYTOP is not set | 651 | # CONFIG_LATENCYTOP is not set |
652 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
616 | CONFIG_HAVE_FUNCTION_TRACER=y | 653 | CONFIG_HAVE_FUNCTION_TRACER=y |
617 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 654 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
618 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y | 655 | CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y |
@@ -625,7 +662,6 @@ CONFIG_TRACING_SUPPORT=y | |||
625 | # CONFIG_SAMPLES is not set | 662 | # CONFIG_SAMPLES is not set |
626 | CONFIG_HAVE_ARCH_KGDB=y | 663 | CONFIG_HAVE_ARCH_KGDB=y |
627 | # CONFIG_SH_STANDARD_BIOS is not set | 664 | # CONFIG_SH_STANDARD_BIOS is not set |
628 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
629 | # CONFIG_DWARF_UNWINDER is not set | 665 | # CONFIG_DWARF_UNWINDER is not set |
630 | 666 | ||
631 | # | 667 | # |
@@ -634,7 +670,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
634 | # CONFIG_KEYS is not set | 670 | # CONFIG_KEYS is not set |
635 | # CONFIG_SECURITY is not set | 671 | # CONFIG_SECURITY is not set |
636 | # CONFIG_SECURITYFS is not set | 672 | # CONFIG_SECURITYFS is not set |
637 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 673 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
674 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
675 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
676 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
677 | CONFIG_DEFAULT_SECURITY="" | ||
638 | # CONFIG_CRYPTO is not set | 678 | # CONFIG_CRYPTO is not set |
639 | # CONFIG_BINARY_PRINTF is not set | 679 | # CONFIG_BINARY_PRINTF is not set |
640 | 680 | ||
diff --git a/arch/sh/configs/titan_defconfig b/arch/sh/configs/titan_defconfig index 2ca79ed9fb6..78c257053c7 100644 --- a/arch/sh/configs/titan_defconfig +++ b/arch/sh/configs/titan_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:36:36 2009 | 4 | # Mon Jan 4 15:17:20 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_PCI=y | 24 | CONFIG_SYS_SUPPORTS_PCI=y |
24 | CONFIG_SYS_SUPPORTS_TMU=y | 25 | CONFIG_SYS_SUPPORTS_TMU=y |
25 | CONFIG_STACKTRACE_SUPPORT=y | 26 | CONFIG_STACKTRACE_SUPPORT=y |
@@ -30,6 +31,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
30 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
31 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
32 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
34 | CONFIG_DMA_NONCOHERENT=y | ||
33 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
34 | CONFIG_CONSTRUCTORS=y | 36 | CONFIG_CONSTRUCTORS=y |
35 | 37 | ||
@@ -61,6 +63,7 @@ CONFIG_POSIX_MQUEUE_SYSCTL=y | |||
61 | # | 63 | # |
62 | CONFIG_TREE_RCU=y | 64 | CONFIG_TREE_RCU=y |
63 | # CONFIG_TREE_PREEMPT_RCU is not set | 65 | # CONFIG_TREE_PREEMPT_RCU is not set |
66 | # CONFIG_TINY_RCU is not set | ||
64 | # CONFIG_RCU_TRACE is not set | 67 | # CONFIG_RCU_TRACE is not set |
65 | CONFIG_RCU_FANOUT=32 | 68 | CONFIG_RCU_FANOUT=32 |
66 | # CONFIG_RCU_FANOUT_EXACT is not set | 69 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -101,6 +104,7 @@ CONFIG_EVENTFD=y | |||
101 | CONFIG_SHMEM=y | 104 | CONFIG_SHMEM=y |
102 | CONFIG_AIO=y | 105 | CONFIG_AIO=y |
103 | CONFIG_HAVE_PERF_EVENTS=y | 106 | CONFIG_HAVE_PERF_EVENTS=y |
107 | CONFIG_PERF_USE_VMALLOC=y | ||
104 | 108 | ||
105 | # | 109 | # |
106 | # Kernel Performance Events And Counters | 110 | # Kernel Performance Events And Counters |
@@ -120,13 +124,14 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
120 | CONFIG_HAVE_KPROBES=y | 124 | CONFIG_HAVE_KPROBES=y |
121 | CONFIG_HAVE_KRETPROBES=y | 125 | CONFIG_HAVE_KRETPROBES=y |
122 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 126 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
127 | CONFIG_HAVE_DMA_ATTRS=y | ||
123 | CONFIG_HAVE_CLK=y | 128 | CONFIG_HAVE_CLK=y |
124 | CONFIG_HAVE_DMA_API_DEBUG=y | 129 | CONFIG_HAVE_DMA_API_DEBUG=y |
125 | 130 | ||
126 | # | 131 | # |
127 | # GCOV-based kernel profiling | 132 | # GCOV-based kernel profiling |
128 | # | 133 | # |
129 | # CONFIG_SLOW_WORK is not set | 134 | CONFIG_SLOW_WORK=y |
130 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y | 135 | CONFIG_HAVE_GENERIC_DMA_COHERENT=y |
131 | CONFIG_SLABINFO=y | 136 | CONFIG_SLABINFO=y |
132 | CONFIG_RT_MUTEXES=y | 137 | CONFIG_RT_MUTEXES=y |
@@ -146,14 +151,41 @@ CONFIG_LBDAF=y | |||
146 | # IO Schedulers | 151 | # IO Schedulers |
147 | # | 152 | # |
148 | CONFIG_IOSCHED_NOOP=y | 153 | CONFIG_IOSCHED_NOOP=y |
149 | CONFIG_IOSCHED_AS=y | ||
150 | CONFIG_IOSCHED_DEADLINE=y | 154 | CONFIG_IOSCHED_DEADLINE=y |
151 | CONFIG_IOSCHED_CFQ=y | 155 | CONFIG_IOSCHED_CFQ=y |
152 | CONFIG_DEFAULT_AS=y | ||
153 | # CONFIG_DEFAULT_DEADLINE is not set | 156 | # CONFIG_DEFAULT_DEADLINE is not set |
154 | # CONFIG_DEFAULT_CFQ is not set | 157 | CONFIG_DEFAULT_CFQ=y |
155 | # CONFIG_DEFAULT_NOOP is not set | 158 | # CONFIG_DEFAULT_NOOP is not set |
156 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 159 | CONFIG_DEFAULT_IOSCHED="cfq" |
160 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
161 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
162 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
163 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
165 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
166 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
167 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
168 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
169 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
170 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
171 | # CONFIG_INLINE_READ_LOCK is not set | ||
172 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
173 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
174 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
175 | CONFIG_INLINE_READ_UNLOCK=y | ||
176 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
177 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
178 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
179 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
180 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
181 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
183 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
184 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
185 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
186 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
187 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
188 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
157 | # CONFIG_FREEZER is not set | 189 | # CONFIG_FREEZER is not set |
158 | 190 | ||
159 | # | 191 | # |
@@ -229,8 +261,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
229 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 261 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
230 | CONFIG_ZONE_DMA_FLAG=0 | 262 | CONFIG_ZONE_DMA_FLAG=0 |
231 | CONFIG_NR_QUICK=2 | 263 | CONFIG_NR_QUICK=2 |
232 | CONFIG_HAVE_MLOCK=y | ||
233 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
234 | # CONFIG_KSM is not set | 264 | # CONFIG_KSM is not set |
235 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 265 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
236 | 266 | ||
@@ -282,9 +312,9 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y | |||
282 | # | 312 | # |
283 | # DMA support | 313 | # DMA support |
284 | # | 314 | # |
285 | CONFIG_SH_DMA_API=y | ||
286 | CONFIG_SH_DMA=y | 315 | CONFIG_SH_DMA=y |
287 | CONFIG_SH_DMA_IRQ_MULTI=y | 316 | CONFIG_SH_DMA_IRQ_MULTI=y |
317 | CONFIG_SH_DMA_API=y | ||
288 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 | 318 | CONFIG_NR_ONCHIP_DMA_CHANNELS=8 |
289 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set | 319 | # CONFIG_NR_DMA_CHANNELS_BOOL is not set |
290 | 320 | ||
@@ -323,7 +353,6 @@ CONFIG_GUSA=y | |||
323 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 | 353 | CONFIG_ZERO_PAGE_OFFSET=0x00001000 |
324 | CONFIG_BOOT_LINK_OFFSET=0x009e0000 | 354 | CONFIG_BOOT_LINK_OFFSET=0x009e0000 |
325 | CONFIG_ENTRY_OFFSET=0x00001000 | 355 | CONFIG_ENTRY_OFFSET=0x00001000 |
326 | # CONFIG_UBC_WAKEUP is not set | ||
327 | CONFIG_CMDLINE_OVERWRITE=y | 356 | CONFIG_CMDLINE_OVERWRITE=y |
328 | # CONFIG_CMDLINE_EXTEND is not set | 357 | # CONFIG_CMDLINE_EXTEND is not set |
329 | CONFIG_CMDLINE="console=ttySC1,38400N81 root=/dev/nfs ip=:::::eth1:autoconf rw" | 358 | CONFIG_CMDLINE="console=ttySC1,38400N81 root=/dev/nfs ip=:::::eth1:autoconf rw" |
@@ -332,7 +361,6 @@ CONFIG_CMDLINE="console=ttySC1,38400N81 root=/dev/nfs ip=:::::eth1:autoconf rw" | |||
332 | # Bus options | 361 | # Bus options |
333 | # | 362 | # |
334 | CONFIG_PCI=y | 363 | CONFIG_PCI=y |
335 | CONFIG_SH_PCIDMA_NONCOHERENT=y | ||
336 | # CONFIG_PCIEPORTBUS is not set | 364 | # CONFIG_PCIEPORTBUS is not set |
337 | # CONFIG_ARCH_SUPPORTS_MSI is not set | 365 | # CONFIG_ARCH_SUPPORTS_MSI is not set |
338 | CONFIG_PCI_LEGACY=y | 366 | CONFIG_PCI_LEGACY=y |
@@ -425,6 +453,7 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y | |||
425 | CONFIG_INET6_XFRM_MODE_BEET=y | 453 | CONFIG_INET6_XFRM_MODE_BEET=y |
426 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set | 454 | # CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set |
427 | CONFIG_IPV6_SIT=m | 455 | CONFIG_IPV6_SIT=m |
456 | # CONFIG_IPV6_SIT_6RD is not set | ||
428 | CONFIG_IPV6_NDISC_NODETYPE=y | 457 | CONFIG_IPV6_NDISC_NODETYPE=y |
429 | CONFIG_IPV6_TUNNEL=y | 458 | CONFIG_IPV6_TUNNEL=y |
430 | # CONFIG_IPV6_MULTIPLE_TABLES is not set | 459 | # CONFIG_IPV6_MULTIPLE_TABLES is not set |
@@ -614,10 +643,6 @@ CONFIG_NET_SCH_FIFO=y | |||
614 | CONFIG_FIB_RULES=y | 643 | CONFIG_FIB_RULES=y |
615 | CONFIG_WIRELESS=y | 644 | CONFIG_WIRELESS=y |
616 | # CONFIG_CFG80211 is not set | 645 | # CONFIG_CFG80211 is not set |
617 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
618 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
619 | CONFIG_WIRELESS_EXT=y | ||
620 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
621 | # CONFIG_LIB80211 is not set | 646 | # CONFIG_LIB80211 is not set |
622 | 647 | ||
623 | # | 648 | # |
@@ -743,6 +768,11 @@ CONFIG_BLK_DEV=y | |||
743 | # CONFIG_BLK_DEV_COW_COMMON is not set | 768 | # CONFIG_BLK_DEV_COW_COMMON is not set |
744 | CONFIG_BLK_DEV_LOOP=m | 769 | CONFIG_BLK_DEV_LOOP=m |
745 | CONFIG_BLK_DEV_CRYPTOLOOP=m | 770 | CONFIG_BLK_DEV_CRYPTOLOOP=m |
771 | |||
772 | # | ||
773 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
774 | # | ||
775 | # CONFIG_BLK_DEV_DRBD is not set | ||
746 | # CONFIG_BLK_DEV_NBD is not set | 776 | # CONFIG_BLK_DEV_NBD is not set |
747 | # CONFIG_BLK_DEV_SX8 is not set | 777 | # CONFIG_BLK_DEV_SX8 is not set |
748 | # CONFIG_BLK_DEV_UB is not set | 778 | # CONFIG_BLK_DEV_UB is not set |
@@ -807,8 +837,11 @@ CONFIG_SCSI_LOWLEVEL=y | |||
807 | # CONFIG_ISCSI_TCP is not set | 837 | # CONFIG_ISCSI_TCP is not set |
808 | # CONFIG_SCSI_CXGB3_ISCSI is not set | 838 | # CONFIG_SCSI_CXGB3_ISCSI is not set |
809 | # CONFIG_SCSI_BNX2_ISCSI is not set | 839 | # CONFIG_SCSI_BNX2_ISCSI is not set |
840 | # CONFIG_BE2ISCSI is not set | ||
810 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 841 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
842 | # CONFIG_SCSI_HPSA is not set | ||
811 | # CONFIG_SCSI_3W_9XXX is not set | 843 | # CONFIG_SCSI_3W_9XXX is not set |
844 | # CONFIG_SCSI_3W_SAS is not set | ||
812 | # CONFIG_SCSI_ACARD is not set | 845 | # CONFIG_SCSI_ACARD is not set |
813 | # CONFIG_SCSI_AACRAID is not set | 846 | # CONFIG_SCSI_AACRAID is not set |
814 | # CONFIG_SCSI_AIC7XXX is not set | 847 | # CONFIG_SCSI_AIC7XXX is not set |
@@ -841,7 +874,9 @@ CONFIG_SCSI_LOWLEVEL=y | |||
841 | # CONFIG_SCSI_NSP32 is not set | 874 | # CONFIG_SCSI_NSP32 is not set |
842 | # CONFIG_SCSI_DEBUG is not set | 875 | # CONFIG_SCSI_DEBUG is not set |
843 | # CONFIG_SCSI_PMCRAID is not set | 876 | # CONFIG_SCSI_PMCRAID is not set |
877 | # CONFIG_SCSI_PM8001 is not set | ||
844 | # CONFIG_SCSI_SRP is not set | 878 | # CONFIG_SCSI_SRP is not set |
879 | # CONFIG_SCSI_BFA_FC is not set | ||
845 | # CONFIG_SCSI_DH is not set | 880 | # CONFIG_SCSI_DH is not set |
846 | # CONFIG_SCSI_OSD_INITIATOR is not set | 881 | # CONFIG_SCSI_OSD_INITIATOR is not set |
847 | # CONFIG_ATA is not set | 882 | # CONFIG_ATA is not set |
@@ -935,6 +970,7 @@ CONFIG_8139_OLD_RX_RESET=y | |||
935 | # CONFIG_SUNDANCE is not set | 970 | # CONFIG_SUNDANCE is not set |
936 | # CONFIG_TLAN is not set | 971 | # CONFIG_TLAN is not set |
937 | # CONFIG_KS8842 is not set | 972 | # CONFIG_KS8842 is not set |
973 | # CONFIG_KS8851_MLL is not set | ||
938 | # CONFIG_VIA_RHINE is not set | 974 | # CONFIG_VIA_RHINE is not set |
939 | # CONFIG_SC92031 is not set | 975 | # CONFIG_SC92031 is not set |
940 | # CONFIG_ATL2 is not set | 976 | # CONFIG_ATL2 is not set |
@@ -983,8 +1019,10 @@ CONFIG_CHELSIO_T3_DEPENDS=y | |||
983 | # CONFIG_BE2NET is not set | 1019 | # CONFIG_BE2NET is not set |
984 | # CONFIG_TR is not set | 1020 | # CONFIG_TR is not set |
985 | CONFIG_WLAN=y | 1021 | CONFIG_WLAN=y |
986 | # CONFIG_WLAN_PRE80211 is not set | 1022 | # CONFIG_ATMEL is not set |
987 | # CONFIG_WLAN_80211 is not set | 1023 | # CONFIG_PRISM54 is not set |
1024 | # CONFIG_USB_ZD1201 is not set | ||
1025 | # CONFIG_HOSTAP is not set | ||
988 | 1026 | ||
989 | # | 1027 | # |
990 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 1028 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -1033,6 +1071,7 @@ CONFIG_SLIP_SMART=y | |||
1033 | # CONFIG_NETCONSOLE is not set | 1071 | # CONFIG_NETCONSOLE is not set |
1034 | # CONFIG_NETPOLL is not set | 1072 | # CONFIG_NETPOLL is not set |
1035 | # CONFIG_NET_POLL_CONTROLLER is not set | 1073 | # CONFIG_NET_POLL_CONTROLLER is not set |
1074 | # CONFIG_VMXNET3 is not set | ||
1036 | # CONFIG_ISDN is not set | 1075 | # CONFIG_ISDN is not set |
1037 | # CONFIG_PHONE is not set | 1076 | # CONFIG_PHONE is not set |
1038 | 1077 | ||
@@ -1042,6 +1081,7 @@ CONFIG_SLIP_SMART=y | |||
1042 | CONFIG_INPUT=y | 1081 | CONFIG_INPUT=y |
1043 | # CONFIG_INPUT_FF_MEMLESS is not set | 1082 | # CONFIG_INPUT_FF_MEMLESS is not set |
1044 | # CONFIG_INPUT_POLLDEV is not set | 1083 | # CONFIG_INPUT_POLLDEV is not set |
1084 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
1045 | 1085 | ||
1046 | # | 1086 | # |
1047 | # Userland interfaces | 1087 | # Userland interfaces |
@@ -1172,6 +1212,7 @@ CONFIG_SSB_POSSIBLE=y | |||
1172 | # | 1212 | # |
1173 | # CONFIG_MFD_CORE is not set | 1213 | # CONFIG_MFD_CORE is not set |
1174 | # CONFIG_MFD_SM501 is not set | 1214 | # CONFIG_MFD_SM501 is not set |
1215 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
1175 | # CONFIG_HTC_PASIC3 is not set | 1216 | # CONFIG_HTC_PASIC3 is not set |
1176 | # CONFIG_MFD_TMIO is not set | 1217 | # CONFIG_MFD_TMIO is not set |
1177 | # CONFIG_REGULATOR is not set | 1218 | # CONFIG_REGULATOR is not set |
@@ -1409,7 +1450,9 @@ CONFIG_RTC_INTF_DEV=y | |||
1409 | # CONFIG_RTC_DRV_M48T86 is not set | 1450 | # CONFIG_RTC_DRV_M48T86 is not set |
1410 | # CONFIG_RTC_DRV_M48T35 is not set | 1451 | # CONFIG_RTC_DRV_M48T35 is not set |
1411 | # CONFIG_RTC_DRV_M48T59 is not set | 1452 | # CONFIG_RTC_DRV_M48T59 is not set |
1453 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1412 | # CONFIG_RTC_DRV_BQ4802 is not set | 1454 | # CONFIG_RTC_DRV_BQ4802 is not set |
1455 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1413 | # CONFIG_RTC_DRV_V3020 is not set | 1456 | # CONFIG_RTC_DRV_V3020 is not set |
1414 | 1457 | ||
1415 | # | 1458 | # |
@@ -1664,6 +1707,7 @@ CONFIG_SCHED_DEBUG=y | |||
1664 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set | 1707 | # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set |
1665 | # CONFIG_FAULT_INJECTION is not set | 1708 | # CONFIG_FAULT_INJECTION is not set |
1666 | # CONFIG_LATENCYTOP is not set | 1709 | # CONFIG_LATENCYTOP is not set |
1710 | # CONFIG_SYSCTL_SYSCALL_CHECK is not set | ||
1667 | # CONFIG_PAGE_POISONING is not set | 1711 | # CONFIG_PAGE_POISONING is not set |
1668 | CONFIG_HAVE_FUNCTION_TRACER=y | 1712 | CONFIG_HAVE_FUNCTION_TRACER=y |
1669 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | 1713 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y |
@@ -1691,7 +1735,6 @@ CONFIG_BRANCH_PROFILE_NONE=y | |||
1691 | CONFIG_HAVE_ARCH_KGDB=y | 1735 | CONFIG_HAVE_ARCH_KGDB=y |
1692 | # CONFIG_KGDB is not set | 1736 | # CONFIG_KGDB is not set |
1693 | # CONFIG_SH_STANDARD_BIOS is not set | 1737 | # CONFIG_SH_STANDARD_BIOS is not set |
1694 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1695 | # CONFIG_STACK_DEBUG is not set | 1738 | # CONFIG_STACK_DEBUG is not set |
1696 | # CONFIG_DEBUG_STACK_USAGE is not set | 1739 | # CONFIG_DEBUG_STACK_USAGE is not set |
1697 | # CONFIG_4KSTACKS is not set | 1740 | # CONFIG_4KSTACKS is not set |
@@ -1705,7 +1748,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1705 | # CONFIG_KEYS is not set | 1748 | # CONFIG_KEYS is not set |
1706 | # CONFIG_SECURITY is not set | 1749 | # CONFIG_SECURITY is not set |
1707 | # CONFIG_SECURITYFS is not set | 1750 | # CONFIG_SECURITYFS is not set |
1708 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1751 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1752 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1753 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1754 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1755 | CONFIG_DEFAULT_SECURITY="" | ||
1709 | CONFIG_CRYPTO=y | 1756 | CONFIG_CRYPTO=y |
1710 | 1757 | ||
1711 | # | 1758 | # |
diff --git a/arch/sh/configs/ul2_defconfig b/arch/sh/configs/ul2_defconfig index b012ca77f02..4fa03bf086d 100644 --- a/arch/sh/configs/ul2_defconfig +++ b/arch/sh/configs/ul2_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:42:33 2009 | 4 | # Mon Jan 4 15:18:53 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 21 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_NUMA=y | 24 | CONFIG_SYS_SUPPORTS_NUMA=y |
24 | CONFIG_SYS_SUPPORTS_CMT=y | 25 | CONFIG_SYS_SUPPORTS_CMT=y |
25 | CONFIG_SYS_SUPPORTS_TMU=y | 26 | CONFIG_SYS_SUPPORTS_TMU=y |
@@ -31,6 +32,7 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
31 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
32 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
33 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
35 | CONFIG_DMA_NONCOHERENT=y | ||
34 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 36 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
35 | CONFIG_CONSTRUCTORS=y | 37 | CONFIG_CONSTRUCTORS=y |
36 | 38 | ||
@@ -63,6 +65,7 @@ CONFIG_BSD_PROCESS_ACCT=y | |||
63 | # | 65 | # |
64 | CONFIG_TREE_RCU=y | 66 | CONFIG_TREE_RCU=y |
65 | # CONFIG_TREE_PREEMPT_RCU is not set | 67 | # CONFIG_TREE_PREEMPT_RCU is not set |
68 | # CONFIG_TINY_RCU is not set | ||
66 | # CONFIG_RCU_TRACE is not set | 69 | # CONFIG_RCU_TRACE is not set |
67 | CONFIG_RCU_FANOUT=32 | 70 | CONFIG_RCU_FANOUT=32 |
68 | # CONFIG_RCU_FANOUT_EXACT is not set | 71 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -102,6 +105,7 @@ CONFIG_EVENTFD=y | |||
102 | CONFIG_SHMEM=y | 105 | CONFIG_SHMEM=y |
103 | CONFIG_AIO=y | 106 | CONFIG_AIO=y |
104 | CONFIG_HAVE_PERF_EVENTS=y | 107 | CONFIG_HAVE_PERF_EVENTS=y |
108 | CONFIG_PERF_USE_VMALLOC=y | ||
105 | 109 | ||
106 | # | 110 | # |
107 | # Kernel Performance Events And Counters | 111 | # Kernel Performance Events And Counters |
@@ -122,6 +126,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
122 | CONFIG_HAVE_KPROBES=y | 126 | CONFIG_HAVE_KPROBES=y |
123 | CONFIG_HAVE_KRETPROBES=y | 127 | CONFIG_HAVE_KRETPROBES=y |
124 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 128 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
129 | CONFIG_HAVE_DMA_ATTRS=y | ||
125 | CONFIG_HAVE_CLK=y | 130 | CONFIG_HAVE_CLK=y |
126 | CONFIG_HAVE_DMA_API_DEBUG=y | 131 | CONFIG_HAVE_DMA_API_DEBUG=y |
127 | 132 | ||
@@ -148,14 +153,41 @@ CONFIG_LBDAF=y | |||
148 | # IO Schedulers | 153 | # IO Schedulers |
149 | # | 154 | # |
150 | CONFIG_IOSCHED_NOOP=y | 155 | CONFIG_IOSCHED_NOOP=y |
151 | # CONFIG_IOSCHED_AS is not set | ||
152 | # CONFIG_IOSCHED_DEADLINE is not set | 156 | # CONFIG_IOSCHED_DEADLINE is not set |
153 | # CONFIG_IOSCHED_CFQ is not set | 157 | # CONFIG_IOSCHED_CFQ is not set |
154 | # CONFIG_DEFAULT_AS is not set | ||
155 | # CONFIG_DEFAULT_DEADLINE is not set | 158 | # CONFIG_DEFAULT_DEADLINE is not set |
156 | # CONFIG_DEFAULT_CFQ is not set | 159 | # CONFIG_DEFAULT_CFQ is not set |
157 | CONFIG_DEFAULT_NOOP=y | 160 | CONFIG_DEFAULT_NOOP=y |
158 | CONFIG_DEFAULT_IOSCHED="noop" | 161 | CONFIG_DEFAULT_IOSCHED="noop" |
162 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
163 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
164 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
165 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
166 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
167 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
168 | # CONFIG_INLINE_SPIN_UNLOCK is not set | ||
169 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
170 | # CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set | ||
171 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
172 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
173 | # CONFIG_INLINE_READ_LOCK is not set | ||
174 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
175 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
176 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
177 | # CONFIG_INLINE_READ_UNLOCK is not set | ||
178 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
179 | # CONFIG_INLINE_READ_UNLOCK_IRQ is not set | ||
180 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
181 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
182 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
183 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
184 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
185 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
186 | # CONFIG_INLINE_WRITE_UNLOCK is not set | ||
187 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
188 | # CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set | ||
189 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
190 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
159 | CONFIG_FREEZER=y | 191 | CONFIG_FREEZER=y |
160 | 192 | ||
161 | # | 193 | # |
@@ -247,8 +279,6 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 | |||
247 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 279 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
248 | CONFIG_ZONE_DMA_FLAG=0 | 280 | CONFIG_ZONE_DMA_FLAG=0 |
249 | CONFIG_NR_QUICK=2 | 281 | CONFIG_NR_QUICK=2 |
250 | CONFIG_HAVE_MLOCK=y | ||
251 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
252 | # CONFIG_KSM is not set | 282 | # CONFIG_KSM is not set |
253 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 283 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
254 | 284 | ||
@@ -280,7 +310,6 @@ CONFIG_CPU_HAS_DSP=y | |||
280 | # | 310 | # |
281 | CONFIG_SH_TIMER_TMU=y | 311 | CONFIG_SH_TIMER_TMU=y |
282 | # CONFIG_SH_TIMER_CMT is not set | 312 | # CONFIG_SH_TIMER_CMT is not set |
283 | CONFIG_SH_PCLK_FREQ=33333333 | ||
284 | CONFIG_SH_CLK_CPG=y | 313 | CONFIG_SH_CLK_CPG=y |
285 | CONFIG_TICK_ONESHOT=y | 314 | CONFIG_TICK_ONESHOT=y |
286 | # CONFIG_NO_HZ is not set | 315 | # CONFIG_NO_HZ is not set |
@@ -435,14 +464,17 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
435 | # CONFIG_BT is not set | 464 | # CONFIG_BT is not set |
436 | # CONFIG_AF_RXRPC is not set | 465 | # CONFIG_AF_RXRPC is not set |
437 | CONFIG_WIRELESS=y | 466 | CONFIG_WIRELESS=y |
467 | CONFIG_WIRELESS_EXT=y | ||
468 | CONFIG_WEXT_CORE=y | ||
469 | CONFIG_WEXT_PROC=y | ||
470 | CONFIG_WEXT_SPY=y | ||
438 | CONFIG_CFG80211=y | 471 | CONFIG_CFG80211=y |
439 | # CONFIG_NL80211_TESTMODE is not set | 472 | # CONFIG_NL80211_TESTMODE is not set |
440 | # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set | 473 | # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set |
441 | # CONFIG_CFG80211_REG_DEBUG is not set | 474 | # CONFIG_CFG80211_REG_DEBUG is not set |
442 | CONFIG_CFG80211_DEFAULT_PS=y | 475 | CONFIG_CFG80211_DEFAULT_PS=y |
443 | CONFIG_CFG80211_DEFAULT_PS_VALUE=1 | ||
444 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | 476 | # CONFIG_WIRELESS_OLD_REGULATORY is not set |
445 | CONFIG_WIRELESS_EXT=y | 477 | CONFIG_CFG80211_WEXT=y |
446 | CONFIG_WIRELESS_EXT_SYSFS=y | 478 | CONFIG_WIRELESS_EXT_SYSFS=y |
447 | CONFIG_LIB80211=m | 479 | CONFIG_LIB80211=m |
448 | # CONFIG_LIB80211_DEBUG is not set | 480 | # CONFIG_LIB80211_DEBUG is not set |
@@ -559,6 +591,10 @@ CONFIG_MTD_RAM=y | |||
559 | CONFIG_BLK_DEV=y | 591 | CONFIG_BLK_DEV=y |
560 | # CONFIG_BLK_DEV_COW_COMMON is not set | 592 | # CONFIG_BLK_DEV_COW_COMMON is not set |
561 | # CONFIG_BLK_DEV_LOOP is not set | 593 | # CONFIG_BLK_DEV_LOOP is not set |
594 | |||
595 | # | ||
596 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
597 | # | ||
562 | # CONFIG_BLK_DEV_NBD is not set | 598 | # CONFIG_BLK_DEV_NBD is not set |
563 | # CONFIG_BLK_DEV_UB is not set | 599 | # CONFIG_BLK_DEV_UB is not set |
564 | CONFIG_BLK_DEV_RAM=y | 600 | CONFIG_BLK_DEV_RAM=y |
@@ -576,6 +612,7 @@ CONFIG_MISC_DEVICES=y | |||
576 | # EEPROM support | 612 | # EEPROM support |
577 | # | 613 | # |
578 | # CONFIG_EEPROM_93CX6 is not set | 614 | # CONFIG_EEPROM_93CX6 is not set |
615 | # CONFIG_IWMC3200TOP is not set | ||
579 | CONFIG_HAVE_IDE=y | 616 | CONFIG_HAVE_IDE=y |
580 | # CONFIG_IDE is not set | 617 | # CONFIG_IDE is not set |
581 | 618 | ||
@@ -653,30 +690,29 @@ CONFIG_MII=y | |||
653 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set | 690 | # CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set |
654 | # CONFIG_B44 is not set | 691 | # CONFIG_B44 is not set |
655 | # CONFIG_KS8842 is not set | 692 | # CONFIG_KS8842 is not set |
693 | # CONFIG_KS8851_MLL is not set | ||
656 | # CONFIG_NETDEV_1000 is not set | 694 | # CONFIG_NETDEV_1000 is not set |
657 | # CONFIG_NETDEV_10000 is not set | 695 | # CONFIG_NETDEV_10000 is not set |
658 | CONFIG_WLAN=y | 696 | CONFIG_WLAN=y |
659 | # CONFIG_WLAN_PRE80211 is not set | ||
660 | CONFIG_WLAN_80211=y | ||
661 | CONFIG_LIBERTAS=m | ||
662 | # CONFIG_LIBERTAS_USB is not set | ||
663 | CONFIG_LIBERTAS_SDIO=m | ||
664 | CONFIG_LIBERTAS_DEBUG=y | ||
665 | # CONFIG_LIBERTAS_THINFIRM is not set | 697 | # CONFIG_LIBERTAS_THINFIRM is not set |
666 | # CONFIG_AT76C50X_USB is not set | 698 | # CONFIG_AT76C50X_USB is not set |
667 | # CONFIG_USB_ZD1201 is not set | 699 | # CONFIG_USB_ZD1201 is not set |
668 | # CONFIG_USB_NET_RNDIS_WLAN is not set | 700 | # CONFIG_USB_NET_RNDIS_WLAN is not set |
669 | # CONFIG_RTL8187 is not set | 701 | # CONFIG_RTL8187 is not set |
670 | # CONFIG_MAC80211_HWSIM is not set | 702 | # CONFIG_MAC80211_HWSIM is not set |
671 | # CONFIG_P54_COMMON is not set | ||
672 | # CONFIG_ATH_COMMON is not set | 703 | # CONFIG_ATH_COMMON is not set |
673 | # CONFIG_HOSTAP is not set | ||
674 | # CONFIG_B43 is not set | 704 | # CONFIG_B43 is not set |
675 | # CONFIG_B43LEGACY is not set | 705 | # CONFIG_B43LEGACY is not set |
676 | # CONFIG_ZD1211RW is not set | 706 | # CONFIG_HOSTAP is not set |
707 | # CONFIG_IWM is not set | ||
708 | CONFIG_LIBERTAS=m | ||
709 | # CONFIG_LIBERTAS_USB is not set | ||
710 | CONFIG_LIBERTAS_SDIO=m | ||
711 | CONFIG_LIBERTAS_DEBUG=y | ||
712 | # CONFIG_P54_COMMON is not set | ||
677 | # CONFIG_RT2X00 is not set | 713 | # CONFIG_RT2X00 is not set |
678 | # CONFIG_WL12XX is not set | 714 | # CONFIG_WL12XX is not set |
679 | # CONFIG_IWM is not set | 715 | # CONFIG_ZD1211RW is not set |
680 | 716 | ||
681 | # | 717 | # |
682 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 718 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -718,6 +754,7 @@ CONFIG_USB_NET_CDCETHER=y | |||
718 | CONFIG_INPUT=y | 754 | CONFIG_INPUT=y |
719 | # CONFIG_INPUT_FF_MEMLESS is not set | 755 | # CONFIG_INPUT_FF_MEMLESS is not set |
720 | # CONFIG_INPUT_POLLDEV is not set | 756 | # CONFIG_INPUT_POLLDEV is not set |
757 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
721 | 758 | ||
722 | # | 759 | # |
723 | # Userland interfaces | 760 | # Userland interfaces |
@@ -810,6 +847,7 @@ CONFIG_SSB_POSSIBLE=y | |||
810 | # | 847 | # |
811 | # CONFIG_MFD_CORE is not set | 848 | # CONFIG_MFD_CORE is not set |
812 | # CONFIG_MFD_SM501 is not set | 849 | # CONFIG_MFD_SM501 is not set |
850 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
813 | # CONFIG_HTC_PASIC3 is not set | 851 | # CONFIG_HTC_PASIC3 is not set |
814 | # CONFIG_MFD_TMIO is not set | 852 | # CONFIG_MFD_TMIO is not set |
815 | # CONFIG_REGULATOR is not set | 853 | # CONFIG_REGULATOR is not set |
@@ -951,6 +989,7 @@ CONFIG_MMC_BLOCK_BOUNCE=y | |||
951 | # CONFIG_MMC_SDHCI is not set | 989 | # CONFIG_MMC_SDHCI is not set |
952 | # CONFIG_MMC_AT91 is not set | 990 | # CONFIG_MMC_AT91 is not set |
953 | # CONFIG_MMC_ATMELMCI is not set | 991 | # CONFIG_MMC_ATMELMCI is not set |
992 | # CONFIG_MMC_TMIO is not set | ||
954 | # CONFIG_MEMSTICK is not set | 993 | # CONFIG_MEMSTICK is not set |
955 | # CONFIG_NEW_LEDS is not set | 994 | # CONFIG_NEW_LEDS is not set |
956 | # CONFIG_ACCESSIBILITY is not set | 995 | # CONFIG_ACCESSIBILITY is not set |
@@ -1133,7 +1172,7 @@ CONFIG_FRAME_WARN=1024 | |||
1133 | # CONFIG_DEBUG_KERNEL is not set | 1172 | # CONFIG_DEBUG_KERNEL is not set |
1134 | # CONFIG_SLUB_DEBUG_ON is not set | 1173 | # CONFIG_SLUB_DEBUG_ON is not set |
1135 | # CONFIG_SLUB_STATS is not set | 1174 | # CONFIG_SLUB_STATS is not set |
1136 | # CONFIG_DEBUG_BUGVERBOSE is not set | 1175 | CONFIG_DEBUG_BUGVERBOSE=y |
1137 | # CONFIG_DEBUG_MEMORY_INIT is not set | 1176 | # CONFIG_DEBUG_MEMORY_INIT is not set |
1138 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 1177 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
1139 | # CONFIG_LATENCYTOP is not set | 1178 | # CONFIG_LATENCYTOP is not set |
@@ -1150,7 +1189,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1150 | # CONFIG_SAMPLES is not set | 1189 | # CONFIG_SAMPLES is not set |
1151 | CONFIG_HAVE_ARCH_KGDB=y | 1190 | CONFIG_HAVE_ARCH_KGDB=y |
1152 | # CONFIG_SH_STANDARD_BIOS is not set | 1191 | # CONFIG_SH_STANDARD_BIOS is not set |
1153 | # CONFIG_EARLY_SCIF_CONSOLE is not set | ||
1154 | # CONFIG_DWARF_UNWINDER is not set | 1192 | # CONFIG_DWARF_UNWINDER is not set |
1155 | 1193 | ||
1156 | # | 1194 | # |
@@ -1159,7 +1197,11 @@ CONFIG_HAVE_ARCH_KGDB=y | |||
1159 | # CONFIG_KEYS is not set | 1197 | # CONFIG_KEYS is not set |
1160 | # CONFIG_SECURITY is not set | 1198 | # CONFIG_SECURITY is not set |
1161 | # CONFIG_SECURITYFS is not set | 1199 | # CONFIG_SECURITYFS is not set |
1162 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1200 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1201 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1202 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1203 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1204 | CONFIG_DEFAULT_SECURITY="" | ||
1163 | CONFIG_CRYPTO=y | 1205 | CONFIG_CRYPTO=y |
1164 | 1206 | ||
1165 | # | 1207 | # |
diff --git a/arch/sh/configs/urquell_defconfig b/arch/sh/configs/urquell_defconfig index 9f8aee5bc55..23bda1916f4 100644 --- a/arch/sh/configs/urquell_defconfig +++ b/arch/sh/configs/urquell_defconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | # | 1 | # |
2 | # Automatically generated make config: don't edit | 2 | # Automatically generated make config: don't edit |
3 | # Linux kernel version: 2.6.31 | 3 | # Linux kernel version: 2.6.33-rc2 |
4 | # Thu Sep 24 19:46:13 2009 | 4 | # Mon Jan 4 15:27:53 2010 |
5 | # | 5 | # |
6 | CONFIG_SUPERH=y | 6 | CONFIG_SUPERH=y |
7 | CONFIG_SUPERH32=y | 7 | CONFIG_SUPERH32=y |
@@ -20,6 +20,7 @@ CONFIG_GENERIC_TIME=y | |||
20 | CONFIG_GENERIC_CLOCKEVENTS=y | 20 | CONFIG_GENERIC_CLOCKEVENTS=y |
21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set | 21 | # CONFIG_ARCH_SUSPEND_POSSIBLE is not set |
22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 22 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
23 | CONFIG_SYS_SUPPORTS_HUGETLBFS=y | ||
23 | CONFIG_SYS_SUPPORTS_SMP=y | 24 | CONFIG_SYS_SUPPORTS_SMP=y |
24 | CONFIG_SYS_SUPPORTS_NUMA=y | 25 | CONFIG_SYS_SUPPORTS_NUMA=y |
25 | CONFIG_SYS_SUPPORTS_PCI=y | 26 | CONFIG_SYS_SUPPORTS_PCI=y |
@@ -32,6 +33,8 @@ CONFIG_HAVE_LATENCYTOP_SUPPORT=y | |||
32 | CONFIG_ARCH_NO_VIRT_TO_BUS=y | 33 | CONFIG_ARCH_NO_VIRT_TO_BUS=y |
33 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y | 34 | CONFIG_ARCH_HAS_DEFAULT_IDLE=y |
34 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y | 35 | CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y |
36 | CONFIG_DMA_COHERENT=y | ||
37 | # CONFIG_DMA_NONCOHERENT is not set | ||
35 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 38 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
36 | CONFIG_CONSTRUCTORS=y | 39 | CONFIG_CONSTRUCTORS=y |
37 | 40 | ||
@@ -66,6 +69,7 @@ CONFIG_AUDIT_TREE=y | |||
66 | # | 69 | # |
67 | CONFIG_TREE_RCU=y | 70 | CONFIG_TREE_RCU=y |
68 | # CONFIG_TREE_PREEMPT_RCU is not set | 71 | # CONFIG_TREE_PREEMPT_RCU is not set |
72 | # CONFIG_TINY_RCU is not set | ||
69 | # CONFIG_RCU_TRACE is not set | 73 | # CONFIG_RCU_TRACE is not set |
70 | CONFIG_RCU_FANOUT=32 | 74 | CONFIG_RCU_FANOUT=32 |
71 | # CONFIG_RCU_FANOUT_EXACT is not set | 75 | # CONFIG_RCU_FANOUT_EXACT is not set |
@@ -120,12 +124,14 @@ CONFIG_EVENTFD=y | |||
120 | CONFIG_SHMEM=y | 124 | CONFIG_SHMEM=y |
121 | CONFIG_AIO=y | 125 | CONFIG_AIO=y |
122 | CONFIG_HAVE_PERF_EVENTS=y | 126 | CONFIG_HAVE_PERF_EVENTS=y |
127 | CONFIG_PERF_USE_VMALLOC=y | ||
123 | 128 | ||
124 | # | 129 | # |
125 | # Kernel Performance Events And Counters | 130 | # Kernel Performance Events And Counters |
126 | # | 131 | # |
127 | CONFIG_PERF_EVENTS=y | 132 | CONFIG_PERF_EVENTS=y |
128 | # CONFIG_PERF_COUNTERS is not set | 133 | # CONFIG_PERF_COUNTERS is not set |
134 | # CONFIG_DEBUG_PERF_USE_VMALLOC is not set | ||
129 | CONFIG_VM_EVENT_COUNTERS=y | 135 | CONFIG_VM_EVENT_COUNTERS=y |
130 | CONFIG_PCI_QUIRKS=y | 136 | CONFIG_PCI_QUIRKS=y |
131 | CONFIG_COMPAT_BRK=y | 137 | CONFIG_COMPAT_BRK=y |
@@ -140,6 +146,7 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
140 | CONFIG_HAVE_KPROBES=y | 146 | CONFIG_HAVE_KPROBES=y |
141 | CONFIG_HAVE_KRETPROBES=y | 147 | CONFIG_HAVE_KRETPROBES=y |
142 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 148 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
149 | CONFIG_HAVE_DMA_ATTRS=y | ||
143 | CONFIG_HAVE_CLK=y | 150 | CONFIG_HAVE_CLK=y |
144 | CONFIG_HAVE_DMA_API_DEBUG=y | 151 | CONFIG_HAVE_DMA_API_DEBUG=y |
145 | 152 | ||
@@ -162,19 +169,48 @@ CONFIG_BLOCK=y | |||
162 | CONFIG_LBDAF=y | 169 | CONFIG_LBDAF=y |
163 | # CONFIG_BLK_DEV_BSG is not set | 170 | # CONFIG_BLK_DEV_BSG is not set |
164 | # CONFIG_BLK_DEV_INTEGRITY is not set | 171 | # CONFIG_BLK_DEV_INTEGRITY is not set |
172 | # CONFIG_BLK_CGROUP is not set | ||
165 | 173 | ||
166 | # | 174 | # |
167 | # IO Schedulers | 175 | # IO Schedulers |
168 | # | 176 | # |
169 | CONFIG_IOSCHED_NOOP=y | 177 | CONFIG_IOSCHED_NOOP=y |
170 | CONFIG_IOSCHED_AS=y | ||
171 | CONFIG_IOSCHED_DEADLINE=y | 178 | CONFIG_IOSCHED_DEADLINE=y |
172 | CONFIG_IOSCHED_CFQ=y | 179 | CONFIG_IOSCHED_CFQ=y |
173 | CONFIG_DEFAULT_AS=y | 180 | # CONFIG_CFQ_GROUP_IOSCHED is not set |
174 | # CONFIG_DEFAULT_DEADLINE is not set | 181 | # CONFIG_DEFAULT_DEADLINE is not set |
175 | # CONFIG_DEFAULT_CFQ is not set | 182 | CONFIG_DEFAULT_CFQ=y |
176 | # CONFIG_DEFAULT_NOOP is not set | 183 | # CONFIG_DEFAULT_NOOP is not set |
177 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 184 | CONFIG_DEFAULT_IOSCHED="cfq" |
185 | # CONFIG_INLINE_SPIN_TRYLOCK is not set | ||
186 | # CONFIG_INLINE_SPIN_TRYLOCK_BH is not set | ||
187 | # CONFIG_INLINE_SPIN_LOCK is not set | ||
188 | # CONFIG_INLINE_SPIN_LOCK_BH is not set | ||
189 | # CONFIG_INLINE_SPIN_LOCK_IRQ is not set | ||
190 | # CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set | ||
191 | CONFIG_INLINE_SPIN_UNLOCK=y | ||
192 | # CONFIG_INLINE_SPIN_UNLOCK_BH is not set | ||
193 | CONFIG_INLINE_SPIN_UNLOCK_IRQ=y | ||
194 | # CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set | ||
195 | # CONFIG_INLINE_READ_TRYLOCK is not set | ||
196 | # CONFIG_INLINE_READ_LOCK is not set | ||
197 | # CONFIG_INLINE_READ_LOCK_BH is not set | ||
198 | # CONFIG_INLINE_READ_LOCK_IRQ is not set | ||
199 | # CONFIG_INLINE_READ_LOCK_IRQSAVE is not set | ||
200 | CONFIG_INLINE_READ_UNLOCK=y | ||
201 | # CONFIG_INLINE_READ_UNLOCK_BH is not set | ||
202 | CONFIG_INLINE_READ_UNLOCK_IRQ=y | ||
203 | # CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set | ||
204 | # CONFIG_INLINE_WRITE_TRYLOCK is not set | ||
205 | # CONFIG_INLINE_WRITE_LOCK is not set | ||
206 | # CONFIG_INLINE_WRITE_LOCK_BH is not set | ||
207 | # CONFIG_INLINE_WRITE_LOCK_IRQ is not set | ||
208 | # CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set | ||
209 | CONFIG_INLINE_WRITE_UNLOCK=y | ||
210 | # CONFIG_INLINE_WRITE_UNLOCK_BH is not set | ||
211 | CONFIG_INLINE_WRITE_UNLOCK_IRQ=y | ||
212 | # CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set | ||
213 | # CONFIG_MUTEX_SPIN_ON_OWNER is not set | ||
178 | CONFIG_FREEZER=y | 214 | CONFIG_FREEZER=y |
179 | 215 | ||
180 | # | 216 | # |
@@ -229,6 +265,7 @@ CONFIG_FORCE_MAX_ZONEORDER=11 | |||
229 | CONFIG_MEMORY_START=0x08000000 | 265 | CONFIG_MEMORY_START=0x08000000 |
230 | CONFIG_MEMORY_SIZE=0x08000000 | 266 | CONFIG_MEMORY_SIZE=0x08000000 |
231 | CONFIG_29BIT=y | 267 | CONFIG_29BIT=y |
268 | # CONFIG_PMB_ENABLE is not set | ||
232 | # CONFIG_X2TLB is not set | 269 | # CONFIG_X2TLB is not set |
233 | CONFIG_VSYSCALL=y | 270 | CONFIG_VSYSCALL=y |
234 | # CONFIG_NUMA is not set | 271 | # CONFIG_NUMA is not set |
@@ -263,8 +300,6 @@ CONFIG_MIGRATION=y | |||
263 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 300 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
264 | CONFIG_ZONE_DMA_FLAG=0 | 301 | CONFIG_ZONE_DMA_FLAG=0 |
265 | CONFIG_NR_QUICK=2 | 302 | CONFIG_NR_QUICK=2 |
266 | CONFIG_HAVE_MLOCK=y | ||
267 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
268 | # CONFIG_KSM is not set | 303 | # CONFIG_KSM is not set |
269 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 | 304 | CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 |
270 | 305 | ||
@@ -356,7 +391,6 @@ CONFIG_ENTRY_OFFSET=0x00001000 | |||
356 | # Bus options | 391 | # Bus options |
357 | # | 392 | # |
358 | CONFIG_PCI=y | 393 | CONFIG_PCI=y |
359 | # CONFIG_SH_PCIDMA_NONCOHERENT is not set | ||
360 | CONFIG_PCIEPORTBUS=y | 394 | CONFIG_PCIEPORTBUS=y |
361 | CONFIG_PCIEAER=y | 395 | CONFIG_PCIEAER=y |
362 | # CONFIG_PCIE_ECRC is not set | 396 | # CONFIG_PCIE_ECRC is not set |
@@ -469,10 +503,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic" | |||
469 | # CONFIG_AF_RXRPC is not set | 503 | # CONFIG_AF_RXRPC is not set |
470 | CONFIG_WIRELESS=y | 504 | CONFIG_WIRELESS=y |
471 | # CONFIG_CFG80211 is not set | 505 | # CONFIG_CFG80211 is not set |
472 | CONFIG_CFG80211_DEFAULT_PS_VALUE=0 | ||
473 | # CONFIG_WIRELESS_OLD_REGULATORY is not set | ||
474 | CONFIG_WIRELESS_EXT=y | ||
475 | CONFIG_WIRELESS_EXT_SYSFS=y | ||
476 | # CONFIG_LIB80211 is not set | 506 | # CONFIG_LIB80211 is not set |
477 | 507 | ||
478 | # | 508 | # |
@@ -588,6 +618,10 @@ CONFIG_BLK_DEV=y | |||
588 | # CONFIG_BLK_DEV_UMEM is not set | 618 | # CONFIG_BLK_DEV_UMEM is not set |
589 | # CONFIG_BLK_DEV_COW_COMMON is not set | 619 | # CONFIG_BLK_DEV_COW_COMMON is not set |
590 | # CONFIG_BLK_DEV_LOOP is not set | 620 | # CONFIG_BLK_DEV_LOOP is not set |
621 | |||
622 | # | ||
623 | # DRBD disabled because PROC_FS, INET or CONNECTOR not selected | ||
624 | # | ||
591 | # CONFIG_BLK_DEV_NBD is not set | 625 | # CONFIG_BLK_DEV_NBD is not set |
592 | # CONFIG_BLK_DEV_SX8 is not set | 626 | # CONFIG_BLK_DEV_SX8 is not set |
593 | # CONFIG_BLK_DEV_UB is not set | 627 | # CONFIG_BLK_DEV_UB is not set |
@@ -688,15 +722,16 @@ CONFIG_ATA_SFF=y | |||
688 | # CONFIG_PATA_NS87415 is not set | 722 | # CONFIG_PATA_NS87415 is not set |
689 | # CONFIG_PATA_OPTI is not set | 723 | # CONFIG_PATA_OPTI is not set |
690 | # CONFIG_PATA_OPTIDMA is not set | 724 | # CONFIG_PATA_OPTIDMA is not set |
725 | # CONFIG_PATA_PDC2027X is not set | ||
691 | # CONFIG_PATA_PDC_OLD is not set | 726 | # CONFIG_PATA_PDC_OLD is not set |
692 | # CONFIG_PATA_RADISYS is not set | 727 | # CONFIG_PATA_RADISYS is not set |
693 | # CONFIG_PATA_RDC is not set | 728 | # CONFIG_PATA_RDC is not set |
694 | # CONFIG_PATA_RZ1000 is not set | 729 | # CONFIG_PATA_RZ1000 is not set |
695 | # CONFIG_PATA_SC1200 is not set | 730 | # CONFIG_PATA_SC1200 is not set |
696 | # CONFIG_PATA_SERVERWORKS is not set | 731 | # CONFIG_PATA_SERVERWORKS is not set |
697 | # CONFIG_PATA_PDC2027X is not set | ||
698 | # CONFIG_PATA_SIL680 is not set | 732 | # CONFIG_PATA_SIL680 is not set |
699 | # CONFIG_PATA_SIS is not set | 733 | # CONFIG_PATA_SIS is not set |
734 | # CONFIG_PATA_TOSHIBA is not set | ||
700 | # CONFIG_PATA_VIA is not set | 735 | # CONFIG_PATA_VIA is not set |
701 | # CONFIG_PATA_WINBOND is not set | 736 | # CONFIG_PATA_WINBOND is not set |
702 | # CONFIG_PATA_PLATFORM is not set | 737 | # CONFIG_PATA_PLATFORM is not set |
@@ -787,6 +822,7 @@ CONFIG_8139CP=y | |||
787 | # CONFIG_SUNDANCE is not set | 822 | # CONFIG_SUNDANCE is not set |
788 | # CONFIG_TLAN is not set | 823 | # CONFIG_TLAN is not set |
789 | # CONFIG_KS8842 is not set | 824 | # CONFIG_KS8842 is not set |
825 | # CONFIG_KS8851_MLL is not set | ||
790 | # CONFIG_VIA_RHINE is not set | 826 | # CONFIG_VIA_RHINE is not set |
791 | # CONFIG_SC92031 is not set | 827 | # CONFIG_SC92031 is not set |
792 | # CONFIG_ATL2 is not set | 828 | # CONFIG_ATL2 is not set |
@@ -818,8 +854,10 @@ CONFIG_SKY2_DEBUG=y | |||
818 | # CONFIG_NETDEV_10000 is not set | 854 | # CONFIG_NETDEV_10000 is not set |
819 | # CONFIG_TR is not set | 855 | # CONFIG_TR is not set |
820 | CONFIG_WLAN=y | 856 | CONFIG_WLAN=y |
821 | # CONFIG_WLAN_PRE80211 is not set | 857 | # CONFIG_ATMEL is not set |
822 | # CONFIG_WLAN_80211 is not set | 858 | # CONFIG_PRISM54 is not set |
859 | # CONFIG_USB_ZD1201 is not set | ||
860 | # CONFIG_HOSTAP is not set | ||
823 | 861 | ||
824 | # | 862 | # |
825 | # Enable WiMAX (Networking options) to see the WiMAX drivers | 863 | # Enable WiMAX (Networking options) to see the WiMAX drivers |
@@ -842,6 +880,7 @@ CONFIG_WLAN=y | |||
842 | # CONFIG_NETCONSOLE is not set | 880 | # CONFIG_NETCONSOLE is not set |
843 | # CONFIG_NETPOLL is not set | 881 | # CONFIG_NETPOLL is not set |
844 | # CONFIG_NET_POLL_CONTROLLER is not set | 882 | # CONFIG_NET_POLL_CONTROLLER is not set |
883 | # CONFIG_VMXNET3 is not set | ||
845 | # CONFIG_ISDN is not set | 884 | # CONFIG_ISDN is not set |
846 | # CONFIG_PHONE is not set | 885 | # CONFIG_PHONE is not set |
847 | 886 | ||
@@ -851,6 +890,7 @@ CONFIG_WLAN=y | |||
851 | CONFIG_INPUT=y | 890 | CONFIG_INPUT=y |
852 | CONFIG_INPUT_FF_MEMLESS=m | 891 | CONFIG_INPUT_FF_MEMLESS=m |
853 | # CONFIG_INPUT_POLLDEV is not set | 892 | # CONFIG_INPUT_POLLDEV is not set |
893 | # CONFIG_INPUT_SPARSEKMAP is not set | ||
854 | 894 | ||
855 | # | 895 | # |
856 | # Userland interfaces | 896 | # Userland interfaces |
@@ -976,11 +1016,6 @@ CONFIG_I2C_ALGOPCA=y | |||
976 | # CONFIG_I2C_TINY_USB is not set | 1016 | # CONFIG_I2C_TINY_USB is not set |
977 | 1017 | ||
978 | # | 1018 | # |
979 | # Graphics adapter I2C/DDC channel drivers | ||
980 | # | ||
981 | # CONFIG_I2C_VOODOO3 is not set | ||
982 | |||
983 | # | ||
984 | # Other I2C/SMBus bus drivers | 1019 | # Other I2C/SMBus bus drivers |
985 | # | 1020 | # |
986 | CONFIG_I2C_PCA_PLATFORM=y | 1021 | CONFIG_I2C_PCA_PLATFORM=y |
@@ -989,7 +1024,6 @@ CONFIG_I2C_PCA_PLATFORM=y | |||
989 | # | 1024 | # |
990 | # Miscellaneous I2C Chip support | 1025 | # Miscellaneous I2C Chip support |
991 | # | 1026 | # |
992 | # CONFIG_DS1682 is not set | ||
993 | # CONFIG_SENSORS_TSL2550 is not set | 1027 | # CONFIG_SENSORS_TSL2550 is not set |
994 | # CONFIG_I2C_DEBUG_CORE is not set | 1028 | # CONFIG_I2C_DEBUG_CORE is not set |
995 | # CONFIG_I2C_DEBUG_ALGO is not set | 1029 | # CONFIG_I2C_DEBUG_ALGO is not set |
@@ -1020,6 +1054,7 @@ CONFIG_GPIOLIB=y | |||
1020 | # | 1054 | # |
1021 | # PCI GPIO expanders: | 1055 | # PCI GPIO expanders: |
1022 | # | 1056 | # |
1057 | # CONFIG_GPIO_CS5535 is not set | ||
1023 | # CONFIG_GPIO_BT8XX is not set | 1058 | # CONFIG_GPIO_BT8XX is not set |
1024 | # CONFIG_GPIO_LANGWELL is not set | 1059 | # CONFIG_GPIO_LANGWELL is not set |
1025 | 1060 | ||
@@ -1062,6 +1097,7 @@ CONFIG_HWMON=y | |||
1062 | # CONFIG_SENSORS_GL520SM is not set | 1097 | # CONFIG_SENSORS_GL520SM is not set |
1063 | # CONFIG_SENSORS_IT87 is not set | 1098 | # CONFIG_SENSORS_IT87 is not set |
1064 | # CONFIG_SENSORS_LM63 is not set | 1099 | # CONFIG_SENSORS_LM63 is not set |
1100 | # CONFIG_SENSORS_LM73 is not set | ||
1065 | # CONFIG_SENSORS_LM75 is not set | 1101 | # CONFIG_SENSORS_LM75 is not set |
1066 | # CONFIG_SENSORS_LM77 is not set | 1102 | # CONFIG_SENSORS_LM77 is not set |
1067 | # CONFIG_SENSORS_LM78 is not set | 1103 | # CONFIG_SENSORS_LM78 is not set |
@@ -1101,6 +1137,7 @@ CONFIG_HWMON=y | |||
1101 | # CONFIG_SENSORS_W83L786NG is not set | 1137 | # CONFIG_SENSORS_W83L786NG is not set |
1102 | # CONFIG_SENSORS_W83627HF is not set | 1138 | # CONFIG_SENSORS_W83627HF is not set |
1103 | # CONFIG_SENSORS_W83627EHF is not set | 1139 | # CONFIG_SENSORS_W83627EHF is not set |
1140 | # CONFIG_SENSORS_LIS3_I2C is not set | ||
1104 | # CONFIG_THERMAL is not set | 1141 | # CONFIG_THERMAL is not set |
1105 | # CONFIG_WATCHDOG is not set | 1142 | # CONFIG_WATCHDOG is not set |
1106 | CONFIG_SSB_POSSIBLE=y | 1143 | CONFIG_SSB_POSSIBLE=y |
@@ -1116,16 +1153,19 @@ CONFIG_SSB_POSSIBLE=y | |||
1116 | # CONFIG_MFD_CORE is not set | 1153 | # CONFIG_MFD_CORE is not set |
1117 | CONFIG_MFD_SM501=y | 1154 | CONFIG_MFD_SM501=y |
1118 | # CONFIG_MFD_SM501_GPIO is not set | 1155 | # CONFIG_MFD_SM501_GPIO is not set |
1156 | # CONFIG_MFD_SH_MOBILE_SDHI is not set | ||
1119 | # CONFIG_HTC_PASIC3 is not set | 1157 | # CONFIG_HTC_PASIC3 is not set |
1120 | # CONFIG_TPS65010 is not set | 1158 | # CONFIG_TPS65010 is not set |
1121 | # CONFIG_TWL4030_CORE is not set | 1159 | # CONFIG_TWL4030_CORE is not set |
1122 | # CONFIG_MFD_TMIO is not set | 1160 | # CONFIG_MFD_TMIO is not set |
1123 | # CONFIG_PMIC_DA903X is not set | 1161 | # CONFIG_PMIC_DA903X is not set |
1162 | # CONFIG_PMIC_ADP5520 is not set | ||
1124 | # CONFIG_MFD_WM8400 is not set | 1163 | # CONFIG_MFD_WM8400 is not set |
1125 | # CONFIG_MFD_WM831X is not set | 1164 | # CONFIG_MFD_WM831X is not set |
1126 | # CONFIG_MFD_WM8350_I2C is not set | 1165 | # CONFIG_MFD_WM8350_I2C is not set |
1127 | # CONFIG_MFD_PCF50633 is not set | 1166 | # CONFIG_MFD_PCF50633 is not set |
1128 | # CONFIG_AB3100_CORE is not set | 1167 | # CONFIG_AB3100_CORE is not set |
1168 | # CONFIG_MFD_88PM8607 is not set | ||
1129 | # CONFIG_REGULATOR is not set | 1169 | # CONFIG_REGULATOR is not set |
1130 | CONFIG_MEDIA_SUPPORT=y | 1170 | CONFIG_MEDIA_SUPPORT=y |
1131 | 1171 | ||
@@ -1139,6 +1179,8 @@ CONFIG_MEDIA_SUPPORT=y | |||
1139 | # | 1179 | # |
1140 | # Multimedia drivers | 1180 | # Multimedia drivers |
1141 | # | 1181 | # |
1182 | CONFIG_IR_CORE=y | ||
1183 | CONFIG_VIDEO_IR=y | ||
1142 | # CONFIG_DAB is not set | 1184 | # CONFIG_DAB is not set |
1143 | 1185 | ||
1144 | # | 1186 | # |
@@ -1417,6 +1459,7 @@ CONFIG_RTC_INTF_DEV=y | |||
1417 | # CONFIG_RTC_DRV_PCF8563 is not set | 1459 | # CONFIG_RTC_DRV_PCF8563 is not set |
1418 | # CONFIG_RTC_DRV_PCF8583 is not set | 1460 | # CONFIG_RTC_DRV_PCF8583 is not set |
1419 | # CONFIG_RTC_DRV_M41T80 is not set | 1461 | # CONFIG_RTC_DRV_M41T80 is not set |
1462 | # CONFIG_RTC_DRV_BQ32K is not set | ||
1420 | # CONFIG_RTC_DRV_S35390A is not set | 1463 | # CONFIG_RTC_DRV_S35390A is not set |
1421 | # CONFIG_RTC_DRV_FM3130 is not set | 1464 | # CONFIG_RTC_DRV_FM3130 is not set |
1422 | # CONFIG_RTC_DRV_RX8581 is not set | 1465 | # CONFIG_RTC_DRV_RX8581 is not set |
@@ -1437,7 +1480,9 @@ CONFIG_RTC_INTF_DEV=y | |||
1437 | # CONFIG_RTC_DRV_M48T86 is not set | 1480 | # CONFIG_RTC_DRV_M48T86 is not set |
1438 | # CONFIG_RTC_DRV_M48T35 is not set | 1481 | # CONFIG_RTC_DRV_M48T35 is not set |
1439 | # CONFIG_RTC_DRV_M48T59 is not set | 1482 | # CONFIG_RTC_DRV_M48T59 is not set |
1483 | # CONFIG_RTC_DRV_MSM6242 is not set | ||
1440 | # CONFIG_RTC_DRV_BQ4802 is not set | 1484 | # CONFIG_RTC_DRV_BQ4802 is not set |
1485 | # CONFIG_RTC_DRV_RP5C01 is not set | ||
1441 | # CONFIG_RTC_DRV_V3020 is not set | 1486 | # CONFIG_RTC_DRV_V3020 is not set |
1442 | 1487 | ||
1443 | # | 1488 | # |
@@ -1466,7 +1511,6 @@ CONFIG_EXT3_FS_XATTR=y | |||
1466 | # CONFIG_EXT3_FS_POSIX_ACL is not set | 1511 | # CONFIG_EXT3_FS_POSIX_ACL is not set |
1467 | # CONFIG_EXT3_FS_SECURITY is not set | 1512 | # CONFIG_EXT3_FS_SECURITY is not set |
1468 | CONFIG_EXT4_FS=y | 1513 | CONFIG_EXT4_FS=y |
1469 | # CONFIG_EXT4DEV_COMPAT is not set | ||
1470 | CONFIG_EXT4_FS_XATTR=y | 1514 | CONFIG_EXT4_FS_XATTR=y |
1471 | # CONFIG_EXT4_FS_POSIX_ACL is not set | 1515 | # CONFIG_EXT4_FS_POSIX_ACL is not set |
1472 | # CONFIG_EXT4_FS_SECURITY is not set | 1516 | # CONFIG_EXT4_FS_SECURITY is not set |
@@ -1687,9 +1731,6 @@ CONFIG_TRACING_SUPPORT=y | |||
1687 | CONFIG_HAVE_ARCH_KGDB=y | 1731 | CONFIG_HAVE_ARCH_KGDB=y |
1688 | # CONFIG_KGDB is not set | 1732 | # CONFIG_KGDB is not set |
1689 | # CONFIG_SH_STANDARD_BIOS is not set | 1733 | # CONFIG_SH_STANDARD_BIOS is not set |
1690 | CONFIG_EARLY_SCIF_CONSOLE=y | ||
1691 | CONFIG_EARLY_SCIF_CONSOLE_PORT=0xffeb0000 | ||
1692 | CONFIG_EARLY_PRINTK=y | ||
1693 | # CONFIG_STACK_DEBUG is not set | 1734 | # CONFIG_STACK_DEBUG is not set |
1694 | # CONFIG_DEBUG_STACK_USAGE is not set | 1735 | # CONFIG_DEBUG_STACK_USAGE is not set |
1695 | # CONFIG_4KSTACKS is not set | 1736 | # CONFIG_4KSTACKS is not set |
@@ -1703,7 +1744,11 @@ CONFIG_EARLY_PRINTK=y | |||
1703 | # CONFIG_KEYS is not set | 1744 | # CONFIG_KEYS is not set |
1704 | # CONFIG_SECURITY is not set | 1745 | # CONFIG_SECURITY is not set |
1705 | # CONFIG_SECURITYFS is not set | 1746 | # CONFIG_SECURITYFS is not set |
1706 | # CONFIG_SECURITY_FILE_CAPABILITIES is not set | 1747 | # CONFIG_DEFAULT_SECURITY_SELINUX is not set |
1748 | # CONFIG_DEFAULT_SECURITY_SMACK is not set | ||
1749 | # CONFIG_DEFAULT_SECURITY_TOMOYO is not set | ||
1750 | CONFIG_DEFAULT_SECURITY_DAC=y | ||
1751 | CONFIG_DEFAULT_SECURITY="" | ||
1707 | CONFIG_CRYPTO=y | 1752 | CONFIG_CRYPTO=y |
1708 | 1753 | ||
1709 | # | 1754 | # |
diff --git a/arch/sh/include/asm/dma.h b/arch/sh/include/asm/dma.h index 04ad0e1e637..07373a07409 100644 --- a/arch/sh/include/asm/dma.h +++ b/arch/sh/include/asm/dma.h | |||
@@ -19,9 +19,11 @@ | |||
19 | #include <asm-generic/dma.h> | 19 | #include <asm-generic/dma.h> |
20 | 20 | ||
21 | #ifdef CONFIG_NR_DMA_CHANNELS | 21 | #ifdef CONFIG_NR_DMA_CHANNELS |
22 | # define MAX_DMA_CHANNELS (CONFIG_NR_DMA_CHANNELS) | 22 | # define MAX_DMA_CHANNELS (CONFIG_NR_DMA_CHANNELS) |
23 | #elif defined(CONFIG_NR_ONCHIP_DMA_CHANNELS) | ||
24 | # define MAX_DMA_CHANNELS (CONFIG_NR_ONCHIP_DMA_CHANNELS) | ||
23 | #else | 25 | #else |
24 | # define MAX_DMA_CHANNELS (CONFIG_NR_ONCHIP_DMA_CHANNELS) | 26 | # define MAX_DMA_CHANNELS 0 |
25 | #endif | 27 | #endif |
26 | 28 | ||
27 | /* | 29 | /* |
diff --git a/arch/sh/include/asm/timex.h b/arch/sh/include/asm/timex.h index b556d49e5f2..18bf06d9c76 100644 --- a/arch/sh/include/asm/timex.h +++ b/arch/sh/include/asm/timex.h | |||
@@ -6,7 +6,17 @@ | |||
6 | #ifndef __ASM_SH_TIMEX_H | 6 | #ifndef __ASM_SH_TIMEX_H |
7 | #define __ASM_SH_TIMEX_H | 7 | #define __ASM_SH_TIMEX_H |
8 | 8 | ||
9 | /* | ||
10 | * Only parts using the legacy CPG code for their clock framework | ||
11 | * implementation need to define their own Pclk value. If provided, this | ||
12 | * can be used for accurately setting CLOCK_TICK_RATE, otherwise we | ||
13 | * simply fall back on the i8253 PIT value. | ||
14 | */ | ||
15 | #ifdef CONFIG_SH_PCLK_FREQ | ||
9 | #define CLOCK_TICK_RATE (CONFIG_SH_PCLK_FREQ / 4) /* Underlying HZ */ | 16 | #define CLOCK_TICK_RATE (CONFIG_SH_PCLK_FREQ / 4) /* Underlying HZ */ |
17 | #else | ||
18 | #define CLOCK_TICK_RATE 1193180 | ||
19 | #endif | ||
10 | 20 | ||
11 | #include <asm-generic/timex.h> | 21 | #include <asm-generic/timex.h> |
12 | 22 | ||
diff --git a/arch/sh/include/cpu-sh4/cpu/dma-sh4a.h b/arch/sh/include/cpu-sh4/cpu/dma-sh4a.h index f0886bc880e..c4ed660c14c 100644 --- a/arch/sh/include/cpu-sh4/cpu/dma-sh4a.h +++ b/arch/sh/include/cpu-sh4/cpu/dma-sh4a.h | |||
@@ -19,10 +19,10 @@ | |||
19 | #elif defined(CONFIG_CPU_SUBTYPE_SH7723) || \ | 19 | #elif defined(CONFIG_CPU_SUBTYPE_SH7723) || \ |
20 | defined(CONFIG_CPU_SUBTYPE_SH7724) | 20 | defined(CONFIG_CPU_SUBTYPE_SH7724) |
21 | #define DMTE0_IRQ 48 /* DMAC0A*/ | 21 | #define DMTE0_IRQ 48 /* DMAC0A*/ |
22 | #define DMTE4_IRQ 40 /* DMAC0B */ | 22 | #define DMTE4_IRQ 76 /* DMAC0B */ |
23 | #define DMTE6_IRQ 42 | 23 | #define DMTE6_IRQ 40 |
24 | #define DMTE8_IRQ 76 /* DMAC1A */ | 24 | #define DMTE8_IRQ 42 /* DMAC1A */ |
25 | #define DMTE9_IRQ 77 | 25 | #define DMTE9_IRQ 43 |
26 | #define DMTE10_IRQ 72 /* DMAC1B */ | 26 | #define DMTE10_IRQ 72 /* DMAC1B */ |
27 | #define DMTE11_IRQ 73 | 27 | #define DMTE11_IRQ 73 |
28 | #define DMAE0_IRQ 78 /* DMA Error IRQ*/ | 28 | #define DMAE0_IRQ 78 /* DMA Error IRQ*/ |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7724.c b/arch/sh/kernel/cpu/sh4a/setup-sh7724.c index a52f35117e8..d32f96c1cc1 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7724.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7724.c | |||
@@ -23,9 +23,23 @@ | |||
23 | #include <linux/notifier.h> | 23 | #include <linux/notifier.h> |
24 | #include <asm/suspend.h> | 24 | #include <asm/suspend.h> |
25 | #include <asm/clock.h> | 25 | #include <asm/clock.h> |
26 | #include <asm/dma-sh.h> | ||
26 | #include <asm/mmzone.h> | 27 | #include <asm/mmzone.h> |
27 | #include <cpu/sh7724.h> | 28 | #include <cpu/sh7724.h> |
28 | 29 | ||
30 | /* DMA */ | ||
31 | static struct sh_dmae_pdata dma_platform_data = { | ||
32 | .mode = SHDMA_DMAOR1, | ||
33 | }; | ||
34 | |||
35 | static struct platform_device dma_device = { | ||
36 | .name = "sh-dma-engine", | ||
37 | .id = -1, | ||
38 | .dev = { | ||
39 | .platform_data = &dma_platform_data, | ||
40 | }, | ||
41 | }; | ||
42 | |||
29 | /* Serial */ | 43 | /* Serial */ |
30 | static struct plat_sci_port scif0_platform_data = { | 44 | static struct plat_sci_port scif0_platform_data = { |
31 | .mapbase = 0xffe00000, | 45 | .mapbase = 0xffe00000, |
@@ -649,6 +663,7 @@ static struct platform_device *sh7724_devices[] __initdata = { | |||
649 | &tmu3_device, | 663 | &tmu3_device, |
650 | &tmu4_device, | 664 | &tmu4_device, |
651 | &tmu5_device, | 665 | &tmu5_device, |
666 | &dma_device, | ||
652 | &rtc_device, | 667 | &rtc_device, |
653 | &iic0_device, | 668 | &iic0_device, |
654 | &iic1_device, | 669 | &iic1_device, |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c index ef26ebda6e8..f685b9b2199 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7785.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7785.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <linux/mm.h> | 15 | #include <linux/mm.h> |
16 | #include <linux/sh_timer.h> | 16 | #include <linux/sh_timer.h> |
17 | #include <asm/dma-sh.h> | ||
17 | #include <asm/mmzone.h> | 18 | #include <asm/mmzone.h> |
18 | 19 | ||
19 | static struct plat_sci_port scif0_platform_data = { | 20 | static struct plat_sci_port scif0_platform_data = { |
@@ -294,6 +295,18 @@ static struct platform_device tmu5_device = { | |||
294 | .num_resources = ARRAY_SIZE(tmu5_resources), | 295 | .num_resources = ARRAY_SIZE(tmu5_resources), |
295 | }; | 296 | }; |
296 | 297 | ||
298 | static struct sh_dmae_pdata dma_platform_data = { | ||
299 | .mode = (SHDMA_MIX_IRQ | SHDMA_DMAOR1), | ||
300 | }; | ||
301 | |||
302 | static struct platform_device dma_device = { | ||
303 | .name = "sh-dma-engine", | ||
304 | .id = -1, | ||
305 | .dev = { | ||
306 | .platform_data = &dma_platform_data, | ||
307 | }, | ||
308 | }; | ||
309 | |||
297 | static struct platform_device *sh7785_devices[] __initdata = { | 310 | static struct platform_device *sh7785_devices[] __initdata = { |
298 | &scif0_device, | 311 | &scif0_device, |
299 | &scif1_device, | 312 | &scif1_device, |
@@ -307,6 +320,7 @@ static struct platform_device *sh7785_devices[] __initdata = { | |||
307 | &tmu3_device, | 320 | &tmu3_device, |
308 | &tmu4_device, | 321 | &tmu4_device, |
309 | &tmu5_device, | 322 | &tmu5_device, |
323 | &dma_device, | ||
310 | }; | 324 | }; |
311 | 325 | ||
312 | static int __init sh7785_devices_setup(void) | 326 | static int __init sh7785_devices_setup(void) |
diff --git a/arch/sh/kernel/idle.c b/arch/sh/kernel/idle.c index aaff0037fcd..6b3d706deac 100644 --- a/arch/sh/kernel/idle.c +++ b/arch/sh/kernel/idle.c | |||
@@ -62,6 +62,7 @@ void default_idle(void) | |||
62 | clear_thread_flag(TIF_POLLING_NRFLAG); | 62 | clear_thread_flag(TIF_POLLING_NRFLAG); |
63 | smp_mb__after_clear_bit(); | 63 | smp_mb__after_clear_bit(); |
64 | 64 | ||
65 | set_bl_bit(); | ||
65 | if (!need_resched()) { | 66 | if (!need_resched()) { |
66 | local_irq_enable(); | 67 | local_irq_enable(); |
67 | cpu_sleep(); | 68 | cpu_sleep(); |
@@ -69,6 +70,7 @@ void default_idle(void) | |||
69 | local_irq_enable(); | 70 | local_irq_enable(); |
70 | 71 | ||
71 | set_thread_flag(TIF_POLLING_NRFLAG); | 72 | set_thread_flag(TIF_POLLING_NRFLAG); |
73 | clear_bl_bit(); | ||
72 | } else | 74 | } else |
73 | poll_idle(); | 75 | poll_idle(); |
74 | } | 76 | } |
diff --git a/arch/sh/mm/Kconfig b/arch/sh/mm/Kconfig index 0e7ba8e891c..986a71b88ca 100644 --- a/arch/sh/mm/Kconfig +++ b/arch/sh/mm/Kconfig | |||
@@ -82,8 +82,7 @@ config 32BIT | |||
82 | 82 | ||
83 | config PMB_ENABLE | 83 | config PMB_ENABLE |
84 | bool "Support 32-bit physical addressing through PMB" | 84 | bool "Support 32-bit physical addressing through PMB" |
85 | depends on MMU && EXPERIMENTAL && CPU_SH4A | 85 | depends on MMU && EXPERIMENTAL && CPU_SH4A && !CPU_SH4AL_DSP |
86 | default y | ||
87 | help | 86 | help |
88 | If you say Y here, physical addressing will be extended to | 87 | If you say Y here, physical addressing will be extended to |
89 | 32-bits through the SH-4A PMB. If this is not set, legacy | 88 | 32-bits through the SH-4A PMB. If this is not set, legacy |
@@ -96,7 +95,7 @@ choice | |||
96 | 95 | ||
97 | config PMB | 96 | config PMB |
98 | bool "PMB" | 97 | bool "PMB" |
99 | depends on MMU && EXPERIMENTAL && CPU_SH4A | 98 | depends on MMU && EXPERIMENTAL && CPU_SH4A && !CPU_SH4AL_DSP |
100 | help | 99 | help |
101 | If you say Y here, physical addressing will be extended to | 100 | If you say Y here, physical addressing will be extended to |
102 | 32-bits through the SH-4A PMB. If this is not set, legacy | 101 | 32-bits through the SH-4A PMB. If this is not set, legacy |
@@ -104,7 +103,7 @@ config PMB | |||
104 | 103 | ||
105 | config PMB_FIXED | 104 | config PMB_FIXED |
106 | bool "fixed PMB" | 105 | bool "fixed PMB" |
107 | depends on MMU && EXPERIMENTAL && CPU_SH4A | 106 | depends on MMU && EXPERIMENTAL && CPU_SH4A && !CPU_SH4AL_DSP |
108 | select 32BIT | 107 | select 32BIT |
109 | help | 108 | help |
110 | If this option is enabled, fixed PMB mappings are inherited | 109 | If this option is enabled, fixed PMB mappings are inherited |
diff --git a/arch/sh/mm/cache.c b/arch/sh/mm/cache.c index e9415d3ea94..b8607fa7ae1 100644 --- a/arch/sh/mm/cache.c +++ b/arch/sh/mm/cache.c | |||
@@ -133,12 +133,8 @@ void __update_cache(struct vm_area_struct *vma, | |||
133 | page = pfn_to_page(pfn); | 133 | page = pfn_to_page(pfn); |
134 | if (pfn_valid(pfn)) { | 134 | if (pfn_valid(pfn)) { |
135 | int dirty = test_and_clear_bit(PG_dcache_dirty, &page->flags); | 135 | int dirty = test_and_clear_bit(PG_dcache_dirty, &page->flags); |
136 | if (dirty) { | 136 | if (dirty) |
137 | unsigned long addr = (unsigned long)page_address(page); | 137 | __flush_purge_region(page_address(page), PAGE_SIZE); |
138 | |||
139 | if (pages_do_alias(addr, address & PAGE_MASK)) | ||
140 | __flush_purge_region((void *)addr, PAGE_SIZE); | ||
141 | } | ||
142 | } | 138 | } |
143 | } | 139 | } |
144 | 140 | ||
diff --git a/arch/sh/tools/Makefile b/arch/sh/tools/Makefile index 558a56bcc7c..2082af1f3fe 100644 --- a/arch/sh/tools/Makefile +++ b/arch/sh/tools/Makefile | |||
@@ -13,4 +13,4 @@ | |||
13 | include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types | 13 | include/generated/machtypes.h: $(src)/gen-mach-types $(src)/mach-types |
14 | @echo ' Generating $@' | 14 | @echo ' Generating $@' |
15 | $(Q)mkdir -p $(dir $@) | 15 | $(Q)mkdir -p $(dir $@) |
16 | $(Q)$(AWK) -f $^ > $@ || { rm -f $@; /bin/false; } | 16 | $(Q)LC_ALL=C $(AWK) -f $^ > $@ || { rm -f $@; /bin/false; } |
diff --git a/arch/sparc/kernel/nmi.c b/arch/sparc/kernel/nmi.c index f30f4a1ead2..d242a734054 100644 --- a/arch/sparc/kernel/nmi.c +++ b/arch/sparc/kernel/nmi.c | |||
@@ -96,7 +96,6 @@ notrace __kprobes void perfctr_irq(int irq, struct pt_regs *regs) | |||
96 | int cpu = smp_processor_id(); | 96 | int cpu = smp_processor_id(); |
97 | 97 | ||
98 | clear_softint(1 << irq); | 98 | clear_softint(1 << irq); |
99 | pcr_ops->write(PCR_PIC_PRIV); | ||
100 | 99 | ||
101 | local_cpu_data().__nmi_count++; | 100 | local_cpu_data().__nmi_count++; |
102 | 101 | ||
@@ -105,6 +104,8 @@ notrace __kprobes void perfctr_irq(int irq, struct pt_regs *regs) | |||
105 | if (notify_die(DIE_NMI, "nmi", regs, 0, | 104 | if (notify_die(DIE_NMI, "nmi", regs, 0, |
106 | pt_regs_trap_type(regs), SIGINT) == NOTIFY_STOP) | 105 | pt_regs_trap_type(regs), SIGINT) == NOTIFY_STOP) |
107 | touched = 1; | 106 | touched = 1; |
107 | else | ||
108 | pcr_ops->write(PCR_PIC_PRIV); | ||
108 | 109 | ||
109 | sum = kstat_irqs_cpu(0, cpu); | 110 | sum = kstat_irqs_cpu(0, cpu); |
110 | if (__get_cpu_var(nmi_touch)) { | 111 | if (__get_cpu_var(nmi_touch)) { |
diff --git a/arch/sparc/kernel/perf_event.c b/arch/sparc/kernel/perf_event.c index fa5936e1c3b..198fb4e79ba 100644 --- a/arch/sparc/kernel/perf_event.c +++ b/arch/sparc/kernel/perf_event.c | |||
@@ -986,6 +986,17 @@ static int __kprobes perf_event_nmi_handler(struct notifier_block *self, | |||
986 | data.addr = 0; | 986 | data.addr = 0; |
987 | 987 | ||
988 | cpuc = &__get_cpu_var(cpu_hw_events); | 988 | cpuc = &__get_cpu_var(cpu_hw_events); |
989 | |||
990 | /* If the PMU has the TOE IRQ enable bits, we need to do a | ||
991 | * dummy write to the %pcr to clear the overflow bits and thus | ||
992 | * the interrupt. | ||
993 | * | ||
994 | * Do this before we peek at the counters to determine | ||
995 | * overflow so we don't lose any events. | ||
996 | */ | ||
997 | if (sparc_pmu->irq_bit) | ||
998 | pcr_ops->write(cpuc->pcr); | ||
999 | |||
989 | for (idx = 0; idx < MAX_HWEVENTS; idx++) { | 1000 | for (idx = 0; idx < MAX_HWEVENTS; idx++) { |
990 | struct perf_event *event = cpuc->events[idx]; | 1001 | struct perf_event *event = cpuc->events[idx]; |
991 | struct hw_perf_event *hwc; | 1002 | struct hw_perf_event *hwc; |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 3b2a5aca4ed..cbcbfdee3ee 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -49,7 +49,10 @@ config X86 | |||
49 | select HAVE_KERNEL_GZIP | 49 | select HAVE_KERNEL_GZIP |
50 | select HAVE_KERNEL_BZIP2 | 50 | select HAVE_KERNEL_BZIP2 |
51 | select HAVE_KERNEL_LZMA | 51 | select HAVE_KERNEL_LZMA |
52 | select HAVE_KERNEL_LZO | ||
52 | select HAVE_HW_BREAKPOINT | 53 | select HAVE_HW_BREAKPOINT |
54 | select PERF_EVENTS | ||
55 | select ANON_INODES | ||
53 | select HAVE_ARCH_KMEMCHECK | 56 | select HAVE_ARCH_KMEMCHECK |
54 | select HAVE_USER_RETURN_NOTIFIER | 57 | select HAVE_USER_RETURN_NOTIFIER |
55 | 58 | ||
@@ -1244,6 +1247,11 @@ config ARCH_MEMORY_PROBE | |||
1244 | def_bool X86_64 | 1247 | def_bool X86_64 |
1245 | depends on MEMORY_HOTPLUG | 1248 | depends on MEMORY_HOTPLUG |
1246 | 1249 | ||
1250 | config ILLEGAL_POINTER_VALUE | ||
1251 | hex | ||
1252 | default 0 if X86_32 | ||
1253 | default 0xdead000000000000 if X86_64 | ||
1254 | |||
1247 | source "mm/Kconfig" | 1255 | source "mm/Kconfig" |
1248 | 1256 | ||
1249 | config HIGHPTE | 1257 | config HIGHPTE |
diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile index f25bbd37765..fbb47daf245 100644 --- a/arch/x86/boot/compressed/Makefile +++ b/arch/x86/boot/compressed/Makefile | |||
@@ -4,7 +4,7 @@ | |||
4 | # create a compressed vmlinux image from the original vmlinux | 4 | # create a compressed vmlinux image from the original vmlinux |
5 | # | 5 | # |
6 | 6 | ||
7 | targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma head_$(BITS).o misc.o piggy.o | 7 | targets := vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.lzo head_$(BITS).o misc.o piggy.o |
8 | 8 | ||
9 | KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2 | 9 | KBUILD_CFLAGS := -m$(BITS) -D__KERNEL__ $(LINUX_INCLUDE) -O2 |
10 | KBUILD_CFLAGS += -fno-strict-aliasing -fPIC | 10 | KBUILD_CFLAGS += -fno-strict-aliasing -fPIC |
@@ -49,10 +49,13 @@ $(obj)/vmlinux.bin.bz2: $(vmlinux.bin.all-y) FORCE | |||
49 | $(call if_changed,bzip2) | 49 | $(call if_changed,bzip2) |
50 | $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE | 50 | $(obj)/vmlinux.bin.lzma: $(vmlinux.bin.all-y) FORCE |
51 | $(call if_changed,lzma) | 51 | $(call if_changed,lzma) |
52 | $(obj)/vmlinux.bin.lzo: $(vmlinux.bin.all-y) FORCE | ||
53 | $(call if_changed,lzo) | ||
52 | 54 | ||
53 | suffix-$(CONFIG_KERNEL_GZIP) := gz | 55 | suffix-$(CONFIG_KERNEL_GZIP) := gz |
54 | suffix-$(CONFIG_KERNEL_BZIP2) := bz2 | 56 | suffix-$(CONFIG_KERNEL_BZIP2) := bz2 |
55 | suffix-$(CONFIG_KERNEL_LZMA) := lzma | 57 | suffix-$(CONFIG_KERNEL_LZMA) := lzma |
58 | suffix-$(CONFIG_KERNEL_LZO) := lzo | ||
56 | 59 | ||
57 | quiet_cmd_mkpiggy = MKPIGGY $@ | 60 | quiet_cmd_mkpiggy = MKPIGGY $@ |
58 | cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false ) | 61 | cmd_mkpiggy = $(obj)/mkpiggy $< > $@ || ( rm -f $@ ; false ) |
diff --git a/arch/x86/boot/compressed/misc.c b/arch/x86/boot/compressed/misc.c index 842b2a36174..3b22fe8ab91 100644 --- a/arch/x86/boot/compressed/misc.c +++ b/arch/x86/boot/compressed/misc.c | |||
@@ -162,6 +162,10 @@ static int lines, cols; | |||
162 | #include "../../../../lib/decompress_unlzma.c" | 162 | #include "../../../../lib/decompress_unlzma.c" |
163 | #endif | 163 | #endif |
164 | 164 | ||
165 | #ifdef CONFIG_KERNEL_LZO | ||
166 | #include "../../../../lib/decompress_unlzo.c" | ||
167 | #endif | ||
168 | |||
165 | static void scroll(void) | 169 | static void scroll(void) |
166 | { | 170 | { |
167 | int i; | 171 | int i; |
diff --git a/arch/x86/include/asm/acpi.h b/arch/x86/include/asm/acpi.h index 60d2b2db0bc..56f462cf22d 100644 --- a/arch/x86/include/asm/acpi.h +++ b/arch/x86/include/asm/acpi.h | |||
@@ -142,6 +142,32 @@ static inline unsigned int acpi_processor_cstate_check(unsigned int max_cstate) | |||
142 | return max_cstate; | 142 | return max_cstate; |
143 | } | 143 | } |
144 | 144 | ||
145 | static inline bool arch_has_acpi_pdc(void) | ||
146 | { | ||
147 | struct cpuinfo_x86 *c = &cpu_data(0); | ||
148 | return (c->x86_vendor == X86_VENDOR_INTEL || | ||
149 | c->x86_vendor == X86_VENDOR_CENTAUR); | ||
150 | } | ||
151 | |||
152 | static inline void arch_acpi_set_pdc_bits(u32 *buf) | ||
153 | { | ||
154 | struct cpuinfo_x86 *c = &cpu_data(0); | ||
155 | |||
156 | buf[2] |= ACPI_PDC_C_CAPABILITY_SMP; | ||
157 | |||
158 | if (cpu_has(c, X86_FEATURE_EST)) | ||
159 | buf[2] |= ACPI_PDC_EST_CAPABILITY_SWSMP; | ||
160 | |||
161 | if (cpu_has(c, X86_FEATURE_ACPI)) | ||
162 | buf[2] |= ACPI_PDC_T_FFH; | ||
163 | |||
164 | /* | ||
165 | * If mwait/monitor is unsupported, C2/C3_FFH will be disabled | ||
166 | */ | ||
167 | if (!cpu_has(c, X86_FEATURE_MWAIT)) | ||
168 | buf[2] &= ~(ACPI_PDC_C_C2C3_FFH); | ||
169 | } | ||
170 | |||
145 | #else /* !CONFIG_ACPI */ | 171 | #else /* !CONFIG_ACPI */ |
146 | 172 | ||
147 | #define acpi_lapic 0 | 173 | #define acpi_lapic 0 |
diff --git a/arch/x86/include/asm/kvm.h b/arch/x86/include/asm/kvm.h index 950df434763..f46b79f6c16 100644 --- a/arch/x86/include/asm/kvm.h +++ b/arch/x86/include/asm/kvm.h | |||
@@ -254,6 +254,10 @@ struct kvm_reinject_control { | |||
254 | __u8 reserved[31]; | 254 | __u8 reserved[31]; |
255 | }; | 255 | }; |
256 | 256 | ||
257 | /* When set in flags, include corresponding fields on KVM_SET_VCPU_EVENTS */ | ||
258 | #define KVM_VCPUEVENT_VALID_NMI_PENDING 0x00000001 | ||
259 | #define KVM_VCPUEVENT_VALID_SIPI_VECTOR 0x00000002 | ||
260 | |||
257 | /* for KVM_GET/SET_VCPU_EVENTS */ | 261 | /* for KVM_GET/SET_VCPU_EVENTS */ |
258 | struct kvm_vcpu_events { | 262 | struct kvm_vcpu_events { |
259 | struct { | 263 | struct { |
diff --git a/arch/x86/include/asm/stacktrace.h b/arch/x86/include/asm/stacktrace.h index cf86a5e7381..35e89122a42 100644 --- a/arch/x86/include/asm/stacktrace.h +++ b/arch/x86/include/asm/stacktrace.h | |||
@@ -5,6 +5,29 @@ extern int kstack_depth_to_print; | |||
5 | 5 | ||
6 | int x86_is_stack_id(int id, char *name); | 6 | int x86_is_stack_id(int id, char *name); |
7 | 7 | ||
8 | struct thread_info; | ||
9 | struct stacktrace_ops; | ||
10 | |||
11 | typedef unsigned long (*walk_stack_t)(struct thread_info *tinfo, | ||
12 | unsigned long *stack, | ||
13 | unsigned long bp, | ||
14 | const struct stacktrace_ops *ops, | ||
15 | void *data, | ||
16 | unsigned long *end, | ||
17 | int *graph); | ||
18 | |||
19 | extern unsigned long | ||
20 | print_context_stack(struct thread_info *tinfo, | ||
21 | unsigned long *stack, unsigned long bp, | ||
22 | const struct stacktrace_ops *ops, void *data, | ||
23 | unsigned long *end, int *graph); | ||
24 | |||
25 | extern unsigned long | ||
26 | print_context_stack_bp(struct thread_info *tinfo, | ||
27 | unsigned long *stack, unsigned long bp, | ||
28 | const struct stacktrace_ops *ops, void *data, | ||
29 | unsigned long *end, int *graph); | ||
30 | |||
8 | /* Generic stack tracer with callbacks */ | 31 | /* Generic stack tracer with callbacks */ |
9 | 32 | ||
10 | struct stacktrace_ops { | 33 | struct stacktrace_ops { |
@@ -14,6 +37,7 @@ struct stacktrace_ops { | |||
14 | void (*address)(void *data, unsigned long address, int reliable); | 37 | void (*address)(void *data, unsigned long address, int reliable); |
15 | /* On negative return stop dumping */ | 38 | /* On negative return stop dumping */ |
16 | int (*stack)(void *data, char *name); | 39 | int (*stack)(void *data, char *name); |
40 | walk_stack_t walk_stack; | ||
17 | }; | 41 | }; |
18 | 42 | ||
19 | void dump_trace(struct task_struct *tsk, struct pt_regs *regs, | 43 | void dump_trace(struct task_struct *tsk, struct pt_regs *regs, |
diff --git a/arch/x86/kernel/acpi/Makefile b/arch/x86/kernel/acpi/Makefile index fd5ca97a2ad..6f35260bb3e 100644 --- a/arch/x86/kernel/acpi/Makefile +++ b/arch/x86/kernel/acpi/Makefile | |||
@@ -4,7 +4,7 @@ obj-$(CONFIG_ACPI) += boot.o | |||
4 | obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup_rm.o wakeup_$(BITS).o | 4 | obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup_rm.o wakeup_$(BITS).o |
5 | 5 | ||
6 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | 6 | ifneq ($(CONFIG_ACPI_PROCESSOR),) |
7 | obj-y += cstate.o processor.o | 7 | obj-y += cstate.o |
8 | endif | 8 | endif |
9 | 9 | ||
10 | $(obj)/wakeup_rm.o: $(obj)/realmode/wakeup.bin | 10 | $(obj)/wakeup_rm.o: $(obj)/realmode/wakeup.bin |
diff --git a/arch/x86/kernel/acpi/processor.c b/arch/x86/kernel/acpi/processor.c deleted file mode 100644 index d85d1b2432b..00000000000 --- a/arch/x86/kernel/acpi/processor.c +++ /dev/null | |||
@@ -1,101 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2005 Intel Corporation | ||
3 | * Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> | ||
4 | * - Added _PDC for platforms with Intel CPUs | ||
5 | */ | ||
6 | |||
7 | #include <linux/kernel.h> | ||
8 | #include <linux/module.h> | ||
9 | #include <linux/init.h> | ||
10 | #include <linux/acpi.h> | ||
11 | |||
12 | #include <acpi/processor.h> | ||
13 | #include <asm/acpi.h> | ||
14 | |||
15 | static void init_intel_pdc(struct acpi_processor *pr, struct cpuinfo_x86 *c) | ||
16 | { | ||
17 | struct acpi_object_list *obj_list; | ||
18 | union acpi_object *obj; | ||
19 | u32 *buf; | ||
20 | |||
21 | /* allocate and initialize pdc. It will be used later. */ | ||
22 | obj_list = kmalloc(sizeof(struct acpi_object_list), GFP_KERNEL); | ||
23 | if (!obj_list) { | ||
24 | printk(KERN_ERR "Memory allocation error\n"); | ||
25 | return; | ||
26 | } | ||
27 | |||
28 | obj = kmalloc(sizeof(union acpi_object), GFP_KERNEL); | ||
29 | if (!obj) { | ||
30 | printk(KERN_ERR "Memory allocation error\n"); | ||
31 | kfree(obj_list); | ||
32 | return; | ||
33 | } | ||
34 | |||
35 | buf = kmalloc(12, GFP_KERNEL); | ||
36 | if (!buf) { | ||
37 | printk(KERN_ERR "Memory allocation error\n"); | ||
38 | kfree(obj); | ||
39 | kfree(obj_list); | ||
40 | return; | ||
41 | } | ||
42 | |||
43 | buf[0] = ACPI_PDC_REVISION_ID; | ||
44 | buf[1] = 1; | ||
45 | buf[2] = ACPI_PDC_C_CAPABILITY_SMP; | ||
46 | |||
47 | /* | ||
48 | * The default of PDC_SMP_T_SWCOORD bit is set for intel x86 cpu so | ||
49 | * that OSPM is capable of native ACPI throttling software | ||
50 | * coordination using BIOS supplied _TSD info. | ||
51 | */ | ||
52 | buf[2] |= ACPI_PDC_SMP_T_SWCOORD; | ||
53 | if (cpu_has(c, X86_FEATURE_EST)) | ||
54 | buf[2] |= ACPI_PDC_EST_CAPABILITY_SWSMP; | ||
55 | |||
56 | if (cpu_has(c, X86_FEATURE_ACPI)) | ||
57 | buf[2] |= ACPI_PDC_T_FFH; | ||
58 | |||
59 | /* | ||
60 | * If mwait/monitor is unsupported, C2/C3_FFH will be disabled | ||
61 | */ | ||
62 | if (!cpu_has(c, X86_FEATURE_MWAIT)) | ||
63 | buf[2] &= ~(ACPI_PDC_C_C2C3_FFH); | ||
64 | |||
65 | obj->type = ACPI_TYPE_BUFFER; | ||
66 | obj->buffer.length = 12; | ||
67 | obj->buffer.pointer = (u8 *) buf; | ||
68 | obj_list->count = 1; | ||
69 | obj_list->pointer = obj; | ||
70 | pr->pdc = obj_list; | ||
71 | |||
72 | return; | ||
73 | } | ||
74 | |||
75 | |||
76 | /* Initialize _PDC data based on the CPU vendor */ | ||
77 | void arch_acpi_processor_init_pdc(struct acpi_processor *pr) | ||
78 | { | ||
79 | struct cpuinfo_x86 *c = &cpu_data(pr->id); | ||
80 | |||
81 | pr->pdc = NULL; | ||
82 | if (c->x86_vendor == X86_VENDOR_INTEL || | ||
83 | c->x86_vendor == X86_VENDOR_CENTAUR) | ||
84 | init_intel_pdc(pr, c); | ||
85 | |||
86 | return; | ||
87 | } | ||
88 | |||
89 | EXPORT_SYMBOL(arch_acpi_processor_init_pdc); | ||
90 | |||
91 | void arch_acpi_processor_cleanup_pdc(struct acpi_processor *pr) | ||
92 | { | ||
93 | if (pr->pdc) { | ||
94 | kfree(pr->pdc->pointer->buffer.pointer); | ||
95 | kfree(pr->pdc->pointer); | ||
96 | kfree(pr->pdc); | ||
97 | pr->pdc = NULL; | ||
98 | } | ||
99 | } | ||
100 | |||
101 | EXPORT_SYMBOL(arch_acpi_processor_cleanup_pdc); | ||
diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c index 82e508677b9..f9961034e55 100644 --- a/arch/x86/kernel/acpi/sleep.c +++ b/arch/x86/kernel/acpi/sleep.c | |||
@@ -162,6 +162,8 @@ static int __init acpi_sleep_setup(char *str) | |||
162 | #endif | 162 | #endif |
163 | if (strncmp(str, "old_ordering", 12) == 0) | 163 | if (strncmp(str, "old_ordering", 12) == 0) |
164 | acpi_old_suspend_ordering(); | 164 | acpi_old_suspend_ordering(); |
165 | if (strncmp(str, "sci_force_enable", 16) == 0) | ||
166 | acpi_set_sci_en_on_resume(); | ||
165 | str = strchr(str, ','); | 167 | str = strchr(str, ','); |
166 | if (str != NULL) | 168 | if (str != NULL) |
167 | str += strspn(str, ", \t"); | 169 | str += strspn(str, ", \t"); |
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index aa57c079c98..e80f291472a 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
@@ -62,7 +62,7 @@ unsigned int boot_cpu_physical_apicid = -1U; | |||
62 | /* | 62 | /* |
63 | * The highest APIC ID seen during enumeration. | 63 | * The highest APIC ID seen during enumeration. |
64 | * | 64 | * |
65 | * On AMD, this determines the messaging protocol we can use: if all APIC IDs | 65 | * This determines the messaging protocol we can use: if all APIC IDs |
66 | * are in the 0 ... 7 range, then we can use logical addressing which | 66 | * are in the 0 ... 7 range, then we can use logical addressing which |
67 | * has some performance advantages (better broadcasting). | 67 | * has some performance advantages (better broadcasting). |
68 | * | 68 | * |
@@ -1898,14 +1898,24 @@ void __cpuinit generic_processor_info(int apicid, int version) | |||
1898 | max_physical_apicid = apicid; | 1898 | max_physical_apicid = apicid; |
1899 | 1899 | ||
1900 | #ifdef CONFIG_X86_32 | 1900 | #ifdef CONFIG_X86_32 |
1901 | switch (boot_cpu_data.x86_vendor) { | 1901 | /* |
1902 | case X86_VENDOR_INTEL: | 1902 | * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y |
1903 | if (num_processors > 8) | 1903 | * but we need to work other dependencies like SMP_SUSPEND etc |
1904 | def_to_bigsmp = 1; | 1904 | * before this can be done without some confusion. |
1905 | break; | 1905 | * if (CPU_HOTPLUG_ENABLED || num_processors > 8) |
1906 | case X86_VENDOR_AMD: | 1906 | * - Ashok Raj <ashok.raj@intel.com> |
1907 | if (max_physical_apicid >= 8) | 1907 | */ |
1908 | if (max_physical_apicid >= 8) { | ||
1909 | switch (boot_cpu_data.x86_vendor) { | ||
1910 | case X86_VENDOR_INTEL: | ||
1911 | if (!APIC_XAPIC(version)) { | ||
1912 | def_to_bigsmp = 0; | ||
1913 | break; | ||
1914 | } | ||
1915 | /* If P4 and above fall through */ | ||
1916 | case X86_VENDOR_AMD: | ||
1908 | def_to_bigsmp = 1; | 1917 | def_to_bigsmp = 1; |
1918 | } | ||
1909 | } | 1919 | } |
1910 | #endif | 1920 | #endif |
1911 | 1921 | ||
diff --git a/arch/x86/kernel/apic/probe_64.c b/arch/x86/kernel/apic/probe_64.c index c4cbd3080c1..65edc180fc8 100644 --- a/arch/x86/kernel/apic/probe_64.c +++ b/arch/x86/kernel/apic/probe_64.c | |||
@@ -64,23 +64,16 @@ void __init default_setup_apic_routing(void) | |||
64 | apic = &apic_x2apic_phys; | 64 | apic = &apic_x2apic_phys; |
65 | else | 65 | else |
66 | apic = &apic_x2apic_cluster; | 66 | apic = &apic_x2apic_cluster; |
67 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); | ||
67 | } | 68 | } |
68 | #endif | 69 | #endif |
69 | 70 | ||
70 | if (apic == &apic_flat) { | 71 | if (apic == &apic_flat) { |
71 | switch (boot_cpu_data.x86_vendor) { | 72 | if (max_physical_apicid >= 8) |
72 | case X86_VENDOR_INTEL: | 73 | apic = &apic_physflat; |
73 | if (num_processors > 8) | 74 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); |
74 | apic = &apic_physflat; | ||
75 | break; | ||
76 | case X86_VENDOR_AMD: | ||
77 | if (max_physical_apicid >= 8) | ||
78 | apic = &apic_physflat; | ||
79 | } | ||
80 | } | 75 | } |
81 | 76 | ||
82 | printk(KERN_INFO "Setting APIC routing to %s\n", apic->name); | ||
83 | |||
84 | if (is_vsmp_box()) { | 77 | if (is_vsmp_box()) { |
85 | /* need to update phys_pkg_id */ | 78 | /* need to update phys_pkg_id */ |
86 | apic->phys_pkg_id = apicid_phys_pkg_id; | 79 | apic->phys_pkg_id = apicid_phys_pkg_id; |
diff --git a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c index f28decf8dde..1b1920fa7c8 100644 --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c +++ b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c | |||
@@ -190,9 +190,11 @@ static void do_drv_write(void *_cmd) | |||
190 | 190 | ||
191 | static void drv_read(struct drv_cmd *cmd) | 191 | static void drv_read(struct drv_cmd *cmd) |
192 | { | 192 | { |
193 | int err; | ||
193 | cmd->val = 0; | 194 | cmd->val = 0; |
194 | 195 | ||
195 | smp_call_function_single(cpumask_any(cmd->mask), do_drv_read, cmd, 1); | 196 | err = smp_call_function_any(cmd->mask, do_drv_read, cmd, 1); |
197 | WARN_ON_ONCE(err); /* smp_call_function_any() was buggy? */ | ||
196 | } | 198 | } |
197 | 199 | ||
198 | static void drv_write(struct drv_cmd *cmd) | 200 | static void drv_write(struct drv_cmd *cmd) |
diff --git a/arch/x86/kernel/cpu/perf_event.c b/arch/x86/kernel/cpu/perf_event.c index 45506d5dd8d..d616c06e99b 100644 --- a/arch/x86/kernel/cpu/perf_event.c +++ b/arch/x86/kernel/cpu/perf_event.c | |||
@@ -2336,6 +2336,7 @@ static const struct stacktrace_ops backtrace_ops = { | |||
2336 | .warning_symbol = backtrace_warning_symbol, | 2336 | .warning_symbol = backtrace_warning_symbol, |
2337 | .stack = backtrace_stack, | 2337 | .stack = backtrace_stack, |
2338 | .address = backtrace_address, | 2338 | .address = backtrace_address, |
2339 | .walk_stack = print_context_stack_bp, | ||
2339 | }; | 2340 | }; |
2340 | 2341 | ||
2341 | #include "../dumpstack.h" | 2342 | #include "../dumpstack.h" |
@@ -2346,7 +2347,7 @@ perf_callchain_kernel(struct pt_regs *regs, struct perf_callchain_entry *entry) | |||
2346 | callchain_store(entry, PERF_CONTEXT_KERNEL); | 2347 | callchain_store(entry, PERF_CONTEXT_KERNEL); |
2347 | callchain_store(entry, regs->ip); | 2348 | callchain_store(entry, regs->ip); |
2348 | 2349 | ||
2349 | dump_trace(NULL, regs, NULL, 0, &backtrace_ops, entry); | 2350 | dump_trace(NULL, regs, NULL, regs->bp, &backtrace_ops, entry); |
2350 | } | 2351 | } |
2351 | 2352 | ||
2352 | /* | 2353 | /* |
diff --git a/arch/x86/kernel/dumpstack.c b/arch/x86/kernel/dumpstack.c index 0a0aa1cec8f..6d817554780 100644 --- a/arch/x86/kernel/dumpstack.c +++ b/arch/x86/kernel/dumpstack.c | |||
@@ -109,6 +109,32 @@ print_context_stack(struct thread_info *tinfo, | |||
109 | } | 109 | } |
110 | return bp; | 110 | return bp; |
111 | } | 111 | } |
112 | EXPORT_SYMBOL_GPL(print_context_stack); | ||
113 | |||
114 | unsigned long | ||
115 | print_context_stack_bp(struct thread_info *tinfo, | ||
116 | unsigned long *stack, unsigned long bp, | ||
117 | const struct stacktrace_ops *ops, void *data, | ||
118 | unsigned long *end, int *graph) | ||
119 | { | ||
120 | struct stack_frame *frame = (struct stack_frame *)bp; | ||
121 | unsigned long *ret_addr = &frame->return_address; | ||
122 | |||
123 | while (valid_stack_ptr(tinfo, ret_addr, sizeof(*ret_addr), end)) { | ||
124 | unsigned long addr = *ret_addr; | ||
125 | |||
126 | if (!__kernel_text_address(addr)) | ||
127 | break; | ||
128 | |||
129 | ops->address(data, addr, 1); | ||
130 | frame = frame->next_frame; | ||
131 | ret_addr = &frame->return_address; | ||
132 | print_ftrace_graph_addr(addr, data, ops, tinfo, graph); | ||
133 | } | ||
134 | |||
135 | return (unsigned long)frame; | ||
136 | } | ||
137 | EXPORT_SYMBOL_GPL(print_context_stack_bp); | ||
112 | 138 | ||
113 | 139 | ||
114 | static void | 140 | static void |
@@ -141,10 +167,11 @@ static void print_trace_address(void *data, unsigned long addr, int reliable) | |||
141 | } | 167 | } |
142 | 168 | ||
143 | static const struct stacktrace_ops print_trace_ops = { | 169 | static const struct stacktrace_ops print_trace_ops = { |
144 | .warning = print_trace_warning, | 170 | .warning = print_trace_warning, |
145 | .warning_symbol = print_trace_warning_symbol, | 171 | .warning_symbol = print_trace_warning_symbol, |
146 | .stack = print_trace_stack, | 172 | .stack = print_trace_stack, |
147 | .address = print_trace_address, | 173 | .address = print_trace_address, |
174 | .walk_stack = print_context_stack, | ||
148 | }; | 175 | }; |
149 | 176 | ||
150 | void | 177 | void |
diff --git a/arch/x86/kernel/dumpstack.h b/arch/x86/kernel/dumpstack.h index 81086c227ab..4fd1420faff 100644 --- a/arch/x86/kernel/dumpstack.h +++ b/arch/x86/kernel/dumpstack.h | |||
@@ -14,12 +14,6 @@ | |||
14 | #define get_bp(bp) asm("movq %%rbp, %0" : "=r" (bp) :) | 14 | #define get_bp(bp) asm("movq %%rbp, %0" : "=r" (bp) :) |
15 | #endif | 15 | #endif |
16 | 16 | ||
17 | extern unsigned long | ||
18 | print_context_stack(struct thread_info *tinfo, | ||
19 | unsigned long *stack, unsigned long bp, | ||
20 | const struct stacktrace_ops *ops, void *data, | ||
21 | unsigned long *end, int *graph); | ||
22 | |||
23 | extern void | 17 | extern void |
24 | show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs, | 18 | show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs, |
25 | unsigned long *stack, unsigned long bp, char *log_lvl); | 19 | unsigned long *stack, unsigned long bp, char *log_lvl); |
diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c index e0ed4c7abb6..ae775ca47b2 100644 --- a/arch/x86/kernel/dumpstack_32.c +++ b/arch/x86/kernel/dumpstack_32.c | |||
@@ -58,7 +58,7 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs, | |||
58 | 58 | ||
59 | context = (struct thread_info *) | 59 | context = (struct thread_info *) |
60 | ((unsigned long)stack & (~(THREAD_SIZE - 1))); | 60 | ((unsigned long)stack & (~(THREAD_SIZE - 1))); |
61 | bp = print_context_stack(context, stack, bp, ops, data, NULL, &graph); | 61 | bp = ops->walk_stack(context, stack, bp, ops, data, NULL, &graph); |
62 | 62 | ||
63 | stack = (unsigned long *)context->previous_esp; | 63 | stack = (unsigned long *)context->previous_esp; |
64 | if (!stack) | 64 | if (!stack) |
diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c index b13af53883a..0ad9597073f 100644 --- a/arch/x86/kernel/dumpstack_64.c +++ b/arch/x86/kernel/dumpstack_64.c | |||
@@ -188,8 +188,8 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs, | |||
188 | if (ops->stack(data, id) < 0) | 188 | if (ops->stack(data, id) < 0) |
189 | break; | 189 | break; |
190 | 190 | ||
191 | bp = print_context_stack(tinfo, stack, bp, ops, | 191 | bp = ops->walk_stack(tinfo, stack, bp, ops, |
192 | data, estack_end, &graph); | 192 | data, estack_end, &graph); |
193 | ops->stack(data, "<EOE>"); | 193 | ops->stack(data, "<EOE>"); |
194 | /* | 194 | /* |
195 | * We link to the next stack via the | 195 | * We link to the next stack via the |
diff --git a/arch/x86/kernel/microcode_core.c b/arch/x86/kernel/microcode_core.c index 844c02c65fc..0c863243309 100644 --- a/arch/x86/kernel/microcode_core.c +++ b/arch/x86/kernel/microcode_core.c | |||
@@ -394,7 +394,7 @@ static enum ucode_state microcode_update_cpu(int cpu) | |||
394 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; | 394 | struct ucode_cpu_info *uci = ucode_cpu_info + cpu; |
395 | enum ucode_state ustate; | 395 | enum ucode_state ustate; |
396 | 396 | ||
397 | if (uci->valid && uci->mc) | 397 | if (uci->valid) |
398 | ustate = microcode_resume_cpu(cpu); | 398 | ustate = microcode_resume_cpu(cpu); |
399 | else | 399 | else |
400 | ustate = microcode_init_cpu(cpu); | 400 | ustate = microcode_init_cpu(cpu); |
diff --git a/arch/x86/kernel/stacktrace.c b/arch/x86/kernel/stacktrace.c index c3eb207181f..922eefbb3f6 100644 --- a/arch/x86/kernel/stacktrace.c +++ b/arch/x86/kernel/stacktrace.c | |||
@@ -53,17 +53,19 @@ save_stack_address_nosched(void *data, unsigned long addr, int reliable) | |||
53 | } | 53 | } |
54 | 54 | ||
55 | static const struct stacktrace_ops save_stack_ops = { | 55 | static const struct stacktrace_ops save_stack_ops = { |
56 | .warning = save_stack_warning, | 56 | .warning = save_stack_warning, |
57 | .warning_symbol = save_stack_warning_symbol, | 57 | .warning_symbol = save_stack_warning_symbol, |
58 | .stack = save_stack_stack, | 58 | .stack = save_stack_stack, |
59 | .address = save_stack_address, | 59 | .address = save_stack_address, |
60 | .walk_stack = print_context_stack, | ||
60 | }; | 61 | }; |
61 | 62 | ||
62 | static const struct stacktrace_ops save_stack_ops_nosched = { | 63 | static const struct stacktrace_ops save_stack_ops_nosched = { |
63 | .warning = save_stack_warning, | 64 | .warning = save_stack_warning, |
64 | .warning_symbol = save_stack_warning_symbol, | 65 | .warning_symbol = save_stack_warning_symbol, |
65 | .stack = save_stack_stack, | 66 | .stack = save_stack_stack, |
66 | .address = save_stack_address_nosched, | 67 | .address = save_stack_address_nosched, |
68 | .walk_stack = print_context_stack, | ||
67 | }; | 69 | }; |
68 | 70 | ||
69 | /* | 71 | /* |
diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c index cd60c0bd1b3..3063a0c4858 100644 --- a/arch/x86/kvm/lapic.c +++ b/arch/x86/kvm/lapic.c | |||
@@ -1150,6 +1150,7 @@ void kvm_apic_post_state_restore(struct kvm_vcpu *vcpu) | |||
1150 | hrtimer_cancel(&apic->lapic_timer.timer); | 1150 | hrtimer_cancel(&apic->lapic_timer.timer); |
1151 | update_divide_count(apic); | 1151 | update_divide_count(apic); |
1152 | start_apic_timer(apic); | 1152 | start_apic_timer(apic); |
1153 | apic->irr_pending = true; | ||
1153 | } | 1154 | } |
1154 | 1155 | ||
1155 | void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu) | 1156 | void __kvm_migrate_apic_timer(struct kvm_vcpu *vcpu) |
diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h index a6017132fba..58a0f1e8859 100644 --- a/arch/x86/kvm/paging_tmpl.h +++ b/arch/x86/kvm/paging_tmpl.h | |||
@@ -455,8 +455,6 @@ out_unlock: | |||
455 | static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva) | 455 | static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva) |
456 | { | 456 | { |
457 | struct kvm_shadow_walk_iterator iterator; | 457 | struct kvm_shadow_walk_iterator iterator; |
458 | pt_element_t gpte; | ||
459 | gpa_t pte_gpa = -1; | ||
460 | int level; | 458 | int level; |
461 | u64 *sptep; | 459 | u64 *sptep; |
462 | int need_flush = 0; | 460 | int need_flush = 0; |
@@ -470,10 +468,6 @@ static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva) | |||
470 | if (level == PT_PAGE_TABLE_LEVEL || | 468 | if (level == PT_PAGE_TABLE_LEVEL || |
471 | ((level == PT_DIRECTORY_LEVEL && is_large_pte(*sptep))) || | 469 | ((level == PT_DIRECTORY_LEVEL && is_large_pte(*sptep))) || |
472 | ((level == PT_PDPE_LEVEL && is_large_pte(*sptep)))) { | 470 | ((level == PT_PDPE_LEVEL && is_large_pte(*sptep)))) { |
473 | struct kvm_mmu_page *sp = page_header(__pa(sptep)); | ||
474 | |||
475 | pte_gpa = (sp->gfn << PAGE_SHIFT); | ||
476 | pte_gpa += (sptep - sp->spt) * sizeof(pt_element_t); | ||
477 | 471 | ||
478 | if (is_shadow_present_pte(*sptep)) { | 472 | if (is_shadow_present_pte(*sptep)) { |
479 | rmap_remove(vcpu->kvm, sptep); | 473 | rmap_remove(vcpu->kvm, sptep); |
@@ -492,18 +486,6 @@ static void FNAME(invlpg)(struct kvm_vcpu *vcpu, gva_t gva) | |||
492 | if (need_flush) | 486 | if (need_flush) |
493 | kvm_flush_remote_tlbs(vcpu->kvm); | 487 | kvm_flush_remote_tlbs(vcpu->kvm); |
494 | spin_unlock(&vcpu->kvm->mmu_lock); | 488 | spin_unlock(&vcpu->kvm->mmu_lock); |
495 | |||
496 | if (pte_gpa == -1) | ||
497 | return; | ||
498 | if (kvm_read_guest_atomic(vcpu->kvm, pte_gpa, &gpte, | ||
499 | sizeof(pt_element_t))) | ||
500 | return; | ||
501 | if (is_present_gpte(gpte) && (gpte & PT_ACCESSED_MASK)) { | ||
502 | if (mmu_topup_memory_caches(vcpu)) | ||
503 | return; | ||
504 | kvm_mmu_pte_write(vcpu, pte_gpa, (const u8 *)&gpte, | ||
505 | sizeof(pt_element_t), 0); | ||
506 | } | ||
507 | } | 489 | } |
508 | 490 | ||
509 | static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr) | 491 | static gpa_t FNAME(gva_to_gpa)(struct kvm_vcpu *vcpu, gva_t vaddr) |
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 9d068966fb2..6651dbf5867 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -1913,7 +1913,8 @@ static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, | |||
1913 | 1913 | ||
1914 | events->sipi_vector = vcpu->arch.sipi_vector; | 1914 | events->sipi_vector = vcpu->arch.sipi_vector; |
1915 | 1915 | ||
1916 | events->flags = 0; | 1916 | events->flags = (KVM_VCPUEVENT_VALID_NMI_PENDING |
1917 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR); | ||
1917 | 1918 | ||
1918 | vcpu_put(vcpu); | 1919 | vcpu_put(vcpu); |
1919 | } | 1920 | } |
@@ -1921,7 +1922,8 @@ static void kvm_vcpu_ioctl_x86_get_vcpu_events(struct kvm_vcpu *vcpu, | |||
1921 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, | 1922 | static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, |
1922 | struct kvm_vcpu_events *events) | 1923 | struct kvm_vcpu_events *events) |
1923 | { | 1924 | { |
1924 | if (events->flags) | 1925 | if (events->flags & ~(KVM_VCPUEVENT_VALID_NMI_PENDING |
1926 | | KVM_VCPUEVENT_VALID_SIPI_VECTOR)) | ||
1925 | return -EINVAL; | 1927 | return -EINVAL; |
1926 | 1928 | ||
1927 | vcpu_load(vcpu); | 1929 | vcpu_load(vcpu); |
@@ -1938,10 +1940,12 @@ static int kvm_vcpu_ioctl_x86_set_vcpu_events(struct kvm_vcpu *vcpu, | |||
1938 | kvm_pic_clear_isr_ack(vcpu->kvm); | 1940 | kvm_pic_clear_isr_ack(vcpu->kvm); |
1939 | 1941 | ||
1940 | vcpu->arch.nmi_injected = events->nmi.injected; | 1942 | vcpu->arch.nmi_injected = events->nmi.injected; |
1941 | vcpu->arch.nmi_pending = events->nmi.pending; | 1943 | if (events->flags & KVM_VCPUEVENT_VALID_NMI_PENDING) |
1944 | vcpu->arch.nmi_pending = events->nmi.pending; | ||
1942 | kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked); | 1945 | kvm_x86_ops->set_nmi_mask(vcpu, events->nmi.masked); |
1943 | 1946 | ||
1944 | vcpu->arch.sipi_vector = events->sipi_vector; | 1947 | if (events->flags & KVM_VCPUEVENT_VALID_SIPI_VECTOR) |
1948 | vcpu->arch.sipi_vector = events->sipi_vector; | ||
1945 | 1949 | ||
1946 | vcpu_put(vcpu); | 1950 | vcpu_put(vcpu); |
1947 | 1951 | ||
diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c index c973f8e2a6c..9a0c258a86b 100644 --- a/arch/x86/mm/init_32.c +++ b/arch/x86/mm/init_32.c | |||
@@ -892,8 +892,7 @@ void __init mem_init(void) | |||
892 | reservedpages << (PAGE_SHIFT-10), | 892 | reservedpages << (PAGE_SHIFT-10), |
893 | datasize >> 10, | 893 | datasize >> 10, |
894 | initsize >> 10, | 894 | initsize >> 10, |
895 | (unsigned long) (totalhigh_pages << (PAGE_SHIFT-10)) | 895 | totalhigh_pages << (PAGE_SHIFT-10)); |
896 | ); | ||
897 | 896 | ||
898 | printk(KERN_INFO "virtual kernel memory layout:\n" | 897 | printk(KERN_INFO "virtual kernel memory layout:\n" |
899 | " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n" | 898 | " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n" |
diff --git a/arch/x86/oprofile/backtrace.c b/arch/x86/oprofile/backtrace.c index 044897be021..3855096c59b 100644 --- a/arch/x86/oprofile/backtrace.c +++ b/arch/x86/oprofile/backtrace.c | |||
@@ -41,10 +41,11 @@ static void backtrace_address(void *data, unsigned long addr, int reliable) | |||
41 | } | 41 | } |
42 | 42 | ||
43 | static struct stacktrace_ops backtrace_ops = { | 43 | static struct stacktrace_ops backtrace_ops = { |
44 | .warning = backtrace_warning, | 44 | .warning = backtrace_warning, |
45 | .warning_symbol = backtrace_warning_symbol, | 45 | .warning_symbol = backtrace_warning_symbol, |
46 | .stack = backtrace_stack, | 46 | .stack = backtrace_stack, |
47 | .address = backtrace_address, | 47 | .address = backtrace_address, |
48 | .walk_stack = print_context_stack, | ||
48 | }; | 49 | }; |
49 | 50 | ||
50 | struct frame_head { | 51 | struct frame_head { |
diff --git a/arch/x86/pci/bus_numa.c b/arch/x86/pci/bus_numa.c index 145df00e038..f939d603adf 100644 --- a/arch/x86/pci/bus_numa.c +++ b/arch/x86/pci/bus_numa.c | |||
@@ -51,7 +51,7 @@ void x86_pci_root_bus_res_quirks(struct pci_bus *b) | |||
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ||
54 | void __init update_res(struct pci_root_info *info, size_t start, | 54 | void __devinit update_res(struct pci_root_info *info, size_t start, |
55 | size_t end, unsigned long flags, int merge) | 55 | size_t end, unsigned long flags, int merge) |
56 | { | 56 | { |
57 | int i; | 57 | int i; |