diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-06-06 14:21:25 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-06 14:21:28 -0400 |
commit | 75b5032212641f6d38ac041416945e70da833b68 (patch) | |
tree | bb827401e00c1681a29e75ade3b4ecc903df1a54 /arch | |
parent | 0b73da3f40128eab6ca2a07508f424029a1edaeb (diff) | |
parent | b87297fb405ef13cac375f202d114323b076a56d (diff) |
Merge branch 'linus' into perfcounters/core
Merge reason: Pick up the latest fixes before the -v8 perfcounters
release.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
33 files changed, 676 insertions, 160 deletions
diff --git a/arch/arm/include/asm/assembler.h b/arch/arm/include/asm/assembler.h index 6116e4893c0a..15f8a092b700 100644 --- a/arch/arm/include/asm/assembler.h +++ b/arch/arm/include/asm/assembler.h | |||
@@ -114,3 +114,16 @@ | |||
114 | .align 3; \ | 114 | .align 3; \ |
115 | .long 9999b,9001f; \ | 115 | .long 9999b,9001f; \ |
116 | .previous | 116 | .previous |
117 | |||
118 | /* | ||
119 | * SMP data memory barrier | ||
120 | */ | ||
121 | .macro smp_dmb | ||
122 | #ifdef CONFIG_SMP | ||
123 | #if __LINUX_ARM_ARCH__ >= 7 | ||
124 | dmb | ||
125 | #elif __LINUX_ARM_ARCH__ == 6 | ||
126 | mcr p15, 0, r0, c7, c10, 5 @ dmb | ||
127 | #endif | ||
128 | #endif | ||
129 | .endm | ||
diff --git a/arch/arm/include/asm/atomic.h b/arch/arm/include/asm/atomic.h index ee99723b3a6c..16b52f397983 100644 --- a/arch/arm/include/asm/atomic.h +++ b/arch/arm/include/asm/atomic.h | |||
@@ -44,11 +44,29 @@ static inline void atomic_set(atomic_t *v, int i) | |||
44 | : "cc"); | 44 | : "cc"); |
45 | } | 45 | } |
46 | 46 | ||
47 | static inline void atomic_add(int i, atomic_t *v) | ||
48 | { | ||
49 | unsigned long tmp; | ||
50 | int result; | ||
51 | |||
52 | __asm__ __volatile__("@ atomic_add\n" | ||
53 | "1: ldrex %0, [%2]\n" | ||
54 | " add %0, %0, %3\n" | ||
55 | " strex %1, %0, [%2]\n" | ||
56 | " teq %1, #0\n" | ||
57 | " bne 1b" | ||
58 | : "=&r" (result), "=&r" (tmp) | ||
59 | : "r" (&v->counter), "Ir" (i) | ||
60 | : "cc"); | ||
61 | } | ||
62 | |||
47 | static inline int atomic_add_return(int i, atomic_t *v) | 63 | static inline int atomic_add_return(int i, atomic_t *v) |
48 | { | 64 | { |
49 | unsigned long tmp; | 65 | unsigned long tmp; |
50 | int result; | 66 | int result; |
51 | 67 | ||
68 | smp_mb(); | ||
69 | |||
52 | __asm__ __volatile__("@ atomic_add_return\n" | 70 | __asm__ __volatile__("@ atomic_add_return\n" |
53 | "1: ldrex %0, [%2]\n" | 71 | "1: ldrex %0, [%2]\n" |
54 | " add %0, %0, %3\n" | 72 | " add %0, %0, %3\n" |
@@ -59,14 +77,34 @@ static inline int atomic_add_return(int i, atomic_t *v) | |||
59 | : "r" (&v->counter), "Ir" (i) | 77 | : "r" (&v->counter), "Ir" (i) |
60 | : "cc"); | 78 | : "cc"); |
61 | 79 | ||
80 | smp_mb(); | ||
81 | |||
62 | return result; | 82 | return result; |
63 | } | 83 | } |
64 | 84 | ||
85 | static inline void atomic_sub(int i, atomic_t *v) | ||
86 | { | ||
87 | unsigned long tmp; | ||
88 | int result; | ||
89 | |||
90 | __asm__ __volatile__("@ atomic_sub\n" | ||
91 | "1: ldrex %0, [%2]\n" | ||
92 | " sub %0, %0, %3\n" | ||
93 | " strex %1, %0, [%2]\n" | ||
94 | " teq %1, #0\n" | ||
95 | " bne 1b" | ||
96 | : "=&r" (result), "=&r" (tmp) | ||
97 | : "r" (&v->counter), "Ir" (i) | ||
98 | : "cc"); | ||
99 | } | ||
100 | |||
65 | static inline int atomic_sub_return(int i, atomic_t *v) | 101 | static inline int atomic_sub_return(int i, atomic_t *v) |
66 | { | 102 | { |
67 | unsigned long tmp; | 103 | unsigned long tmp; |
68 | int result; | 104 | int result; |
69 | 105 | ||
106 | smp_mb(); | ||
107 | |||
70 | __asm__ __volatile__("@ atomic_sub_return\n" | 108 | __asm__ __volatile__("@ atomic_sub_return\n" |
71 | "1: ldrex %0, [%2]\n" | 109 | "1: ldrex %0, [%2]\n" |
72 | " sub %0, %0, %3\n" | 110 | " sub %0, %0, %3\n" |
@@ -77,6 +115,8 @@ static inline int atomic_sub_return(int i, atomic_t *v) | |||
77 | : "r" (&v->counter), "Ir" (i) | 115 | : "r" (&v->counter), "Ir" (i) |
78 | : "cc"); | 116 | : "cc"); |
79 | 117 | ||
118 | smp_mb(); | ||
119 | |||
80 | return result; | 120 | return result; |
81 | } | 121 | } |
82 | 122 | ||
@@ -84,6 +124,8 @@ static inline int atomic_cmpxchg(atomic_t *ptr, int old, int new) | |||
84 | { | 124 | { |
85 | unsigned long oldval, res; | 125 | unsigned long oldval, res; |
86 | 126 | ||
127 | smp_mb(); | ||
128 | |||
87 | do { | 129 | do { |
88 | __asm__ __volatile__("@ atomic_cmpxchg\n" | 130 | __asm__ __volatile__("@ atomic_cmpxchg\n" |
89 | "ldrex %1, [%2]\n" | 131 | "ldrex %1, [%2]\n" |
@@ -95,6 +137,8 @@ static inline int atomic_cmpxchg(atomic_t *ptr, int old, int new) | |||
95 | : "cc"); | 137 | : "cc"); |
96 | } while (res); | 138 | } while (res); |
97 | 139 | ||
140 | smp_mb(); | ||
141 | |||
98 | return oldval; | 142 | return oldval; |
99 | } | 143 | } |
100 | 144 | ||
@@ -135,6 +179,7 @@ static inline int atomic_add_return(int i, atomic_t *v) | |||
135 | 179 | ||
136 | return val; | 180 | return val; |
137 | } | 181 | } |
182 | #define atomic_add(i, v) (void) atomic_add_return(i, v) | ||
138 | 183 | ||
139 | static inline int atomic_sub_return(int i, atomic_t *v) | 184 | static inline int atomic_sub_return(int i, atomic_t *v) |
140 | { | 185 | { |
@@ -148,6 +193,7 @@ static inline int atomic_sub_return(int i, atomic_t *v) | |||
148 | 193 | ||
149 | return val; | 194 | return val; |
150 | } | 195 | } |
196 | #define atomic_sub(i, v) (void) atomic_sub_return(i, v) | ||
151 | 197 | ||
152 | static inline int atomic_cmpxchg(atomic_t *v, int old, int new) | 198 | static inline int atomic_cmpxchg(atomic_t *v, int old, int new) |
153 | { | 199 | { |
@@ -187,10 +233,8 @@ static inline int atomic_add_unless(atomic_t *v, int a, int u) | |||
187 | } | 233 | } |
188 | #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) | 234 | #define atomic_inc_not_zero(v) atomic_add_unless((v), 1, 0) |
189 | 235 | ||
190 | #define atomic_add(i, v) (void) atomic_add_return(i, v) | 236 | #define atomic_inc(v) atomic_add(1, v) |
191 | #define atomic_inc(v) (void) atomic_add_return(1, v) | 237 | #define atomic_dec(v) atomic_sub(1, v) |
192 | #define atomic_sub(i, v) (void) atomic_sub_return(i, v) | ||
193 | #define atomic_dec(v) (void) atomic_sub_return(1, v) | ||
194 | 238 | ||
195 | #define atomic_inc_and_test(v) (atomic_add_return(1, v) == 0) | 239 | #define atomic_inc_and_test(v) (atomic_add_return(1, v) == 0) |
196 | #define atomic_dec_and_test(v) (atomic_sub_return(1, v) == 0) | 240 | #define atomic_dec_and_test(v) (atomic_sub_return(1, v) == 0) |
@@ -200,11 +244,10 @@ static inline int atomic_add_unless(atomic_t *v, int a, int u) | |||
200 | 244 | ||
201 | #define atomic_add_negative(i,v) (atomic_add_return(i, v) < 0) | 245 | #define atomic_add_negative(i,v) (atomic_add_return(i, v) < 0) |
202 | 246 | ||
203 | /* Atomic operations are already serializing on ARM */ | 247 | #define smp_mb__before_atomic_dec() smp_mb() |
204 | #define smp_mb__before_atomic_dec() barrier() | 248 | #define smp_mb__after_atomic_dec() smp_mb() |
205 | #define smp_mb__after_atomic_dec() barrier() | 249 | #define smp_mb__before_atomic_inc() smp_mb() |
206 | #define smp_mb__before_atomic_inc() barrier() | 250 | #define smp_mb__after_atomic_inc() smp_mb() |
207 | #define smp_mb__after_atomic_inc() barrier() | ||
208 | 251 | ||
209 | #include <asm-generic/atomic.h> | 252 | #include <asm-generic/atomic.h> |
210 | #endif | 253 | #endif |
diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/system.h index bd4dc8ed53d5..d65b2f5bf41f 100644 --- a/arch/arm/include/asm/system.h +++ b/arch/arm/include/asm/system.h | |||
@@ -248,6 +248,8 @@ static inline unsigned long __xchg(unsigned long x, volatile void *ptr, int size | |||
248 | unsigned int tmp; | 248 | unsigned int tmp; |
249 | #endif | 249 | #endif |
250 | 250 | ||
251 | smp_mb(); | ||
252 | |||
251 | switch (size) { | 253 | switch (size) { |
252 | #if __LINUX_ARM_ARCH__ >= 6 | 254 | #if __LINUX_ARM_ARCH__ >= 6 |
253 | case 1: | 255 | case 1: |
@@ -307,6 +309,7 @@ static inline unsigned long __xchg(unsigned long x, volatile void *ptr, int size | |||
307 | __bad_xchg(ptr, size), ret = 0; | 309 | __bad_xchg(ptr, size), ret = 0; |
308 | break; | 310 | break; |
309 | } | 311 | } |
312 | smp_mb(); | ||
310 | 313 | ||
311 | return ret; | 314 | return ret; |
312 | } | 315 | } |
@@ -316,6 +319,12 @@ extern void enable_hlt(void); | |||
316 | 319 | ||
317 | #include <asm-generic/cmpxchg-local.h> | 320 | #include <asm-generic/cmpxchg-local.h> |
318 | 321 | ||
322 | #if __LINUX_ARM_ARCH__ < 6 | ||
323 | |||
324 | #ifdef CONFIG_SMP | ||
325 | #error "SMP is not supported on this platform" | ||
326 | #endif | ||
327 | |||
319 | /* | 328 | /* |
320 | * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make | 329 | * cmpxchg_local and cmpxchg64_local are atomic wrt current CPU. Always make |
321 | * them available. | 330 | * them available. |
@@ -329,6 +338,173 @@ extern void enable_hlt(void); | |||
329 | #include <asm-generic/cmpxchg.h> | 338 | #include <asm-generic/cmpxchg.h> |
330 | #endif | 339 | #endif |
331 | 340 | ||
341 | #else /* __LINUX_ARM_ARCH__ >= 6 */ | ||
342 | |||
343 | extern void __bad_cmpxchg(volatile void *ptr, int size); | ||
344 | |||
345 | /* | ||
346 | * cmpxchg only support 32-bits operands on ARMv6. | ||
347 | */ | ||
348 | |||
349 | static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old, | ||
350 | unsigned long new, int size) | ||
351 | { | ||
352 | unsigned long oldval, res; | ||
353 | |||
354 | switch (size) { | ||
355 | #ifdef CONFIG_CPU_32v6K | ||
356 | case 1: | ||
357 | do { | ||
358 | asm volatile("@ __cmpxchg1\n" | ||
359 | " ldrexb %1, [%2]\n" | ||
360 | " mov %0, #0\n" | ||
361 | " teq %1, %3\n" | ||
362 | " strexbeq %0, %4, [%2]\n" | ||
363 | : "=&r" (res), "=&r" (oldval) | ||
364 | : "r" (ptr), "Ir" (old), "r" (new) | ||
365 | : "memory", "cc"); | ||
366 | } while (res); | ||
367 | break; | ||
368 | case 2: | ||
369 | do { | ||
370 | asm volatile("@ __cmpxchg1\n" | ||
371 | " ldrexh %1, [%2]\n" | ||
372 | " mov %0, #0\n" | ||
373 | " teq %1, %3\n" | ||
374 | " strexheq %0, %4, [%2]\n" | ||
375 | : "=&r" (res), "=&r" (oldval) | ||
376 | : "r" (ptr), "Ir" (old), "r" (new) | ||
377 | : "memory", "cc"); | ||
378 | } while (res); | ||
379 | break; | ||
380 | #endif /* CONFIG_CPU_32v6K */ | ||
381 | case 4: | ||
382 | do { | ||
383 | asm volatile("@ __cmpxchg4\n" | ||
384 | " ldrex %1, [%2]\n" | ||
385 | " mov %0, #0\n" | ||
386 | " teq %1, %3\n" | ||
387 | " strexeq %0, %4, [%2]\n" | ||
388 | : "=&r" (res), "=&r" (oldval) | ||
389 | : "r" (ptr), "Ir" (old), "r" (new) | ||
390 | : "memory", "cc"); | ||
391 | } while (res); | ||
392 | break; | ||
393 | default: | ||
394 | __bad_cmpxchg(ptr, size); | ||
395 | oldval = 0; | ||
396 | } | ||
397 | |||
398 | return oldval; | ||
399 | } | ||
400 | |||
401 | static inline unsigned long __cmpxchg_mb(volatile void *ptr, unsigned long old, | ||
402 | unsigned long new, int size) | ||
403 | { | ||
404 | unsigned long ret; | ||
405 | |||
406 | smp_mb(); | ||
407 | ret = __cmpxchg(ptr, old, new, size); | ||
408 | smp_mb(); | ||
409 | |||
410 | return ret; | ||
411 | } | ||
412 | |||
413 | #define cmpxchg(ptr,o,n) \ | ||
414 | ((__typeof__(*(ptr)))__cmpxchg_mb((ptr), \ | ||
415 | (unsigned long)(o), \ | ||
416 | (unsigned long)(n), \ | ||
417 | sizeof(*(ptr)))) | ||
418 | |||
419 | static inline unsigned long __cmpxchg_local(volatile void *ptr, | ||
420 | unsigned long old, | ||
421 | unsigned long new, int size) | ||
422 | { | ||
423 | unsigned long ret; | ||
424 | |||
425 | switch (size) { | ||
426 | #ifndef CONFIG_CPU_32v6K | ||
427 | case 1: | ||
428 | case 2: | ||
429 | ret = __cmpxchg_local_generic(ptr, old, new, size); | ||
430 | break; | ||
431 | #endif /* !CONFIG_CPU_32v6K */ | ||
432 | default: | ||
433 | ret = __cmpxchg(ptr, old, new, size); | ||
434 | } | ||
435 | |||
436 | return ret; | ||
437 | } | ||
438 | |||
439 | #define cmpxchg_local(ptr,o,n) \ | ||
440 | ((__typeof__(*(ptr)))__cmpxchg_local((ptr), \ | ||
441 | (unsigned long)(o), \ | ||
442 | (unsigned long)(n), \ | ||
443 | sizeof(*(ptr)))) | ||
444 | |||
445 | #ifdef CONFIG_CPU_32v6K | ||
446 | |||
447 | /* | ||
448 | * Note : ARMv7-M (currently unsupported by Linux) does not support | ||
449 | * ldrexd/strexd. If ARMv7-M is ever supported by the Linux kernel, it should | ||
450 | * not be allowed to use __cmpxchg64. | ||
451 | */ | ||
452 | static inline unsigned long long __cmpxchg64(volatile void *ptr, | ||
453 | unsigned long long old, | ||
454 | unsigned long long new) | ||
455 | { | ||
456 | register unsigned long long oldval asm("r0"); | ||
457 | register unsigned long long __old asm("r2") = old; | ||
458 | register unsigned long long __new asm("r4") = new; | ||
459 | unsigned long res; | ||
460 | |||
461 | do { | ||
462 | asm volatile( | ||
463 | " @ __cmpxchg8\n" | ||
464 | " ldrexd %1, %H1, [%2]\n" | ||
465 | " mov %0, #0\n" | ||
466 | " teq %1, %3\n" | ||
467 | " teqeq %H1, %H3\n" | ||
468 | " strexdeq %0, %4, %H4, [%2]\n" | ||
469 | : "=&r" (res), "=&r" (oldval) | ||
470 | : "r" (ptr), "Ir" (__old), "r" (__new) | ||
471 | : "memory", "cc"); | ||
472 | } while (res); | ||
473 | |||
474 | return oldval; | ||
475 | } | ||
476 | |||
477 | static inline unsigned long long __cmpxchg64_mb(volatile void *ptr, | ||
478 | unsigned long long old, | ||
479 | unsigned long long new) | ||
480 | { | ||
481 | unsigned long long ret; | ||
482 | |||
483 | smp_mb(); | ||
484 | ret = __cmpxchg64(ptr, old, new); | ||
485 | smp_mb(); | ||
486 | |||
487 | return ret; | ||
488 | } | ||
489 | |||
490 | #define cmpxchg64(ptr,o,n) \ | ||
491 | ((__typeof__(*(ptr)))__cmpxchg64_mb((ptr), \ | ||
492 | (unsigned long long)(o), \ | ||
493 | (unsigned long long)(n))) | ||
494 | |||
495 | #define cmpxchg64_local(ptr,o,n) \ | ||
496 | ((__typeof__(*(ptr)))__cmpxchg64((ptr), \ | ||
497 | (unsigned long long)(o), \ | ||
498 | (unsigned long long)(n))) | ||
499 | |||
500 | #else /* !CONFIG_CPU_32v6K */ | ||
501 | |||
502 | #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n)) | ||
503 | |||
504 | #endif /* CONFIG_CPU_32v6K */ | ||
505 | |||
506 | #endif /* __LINUX_ARM_ARCH__ >= 6 */ | ||
507 | |||
332 | #endif /* __ASSEMBLY__ */ | 508 | #endif /* __ASSEMBLY__ */ |
333 | 509 | ||
334 | #define arch_align_stack(x) (x) | 510 | #define arch_align_stack(x) (x) |
diff --git a/arch/arm/kernel/elf.c b/arch/arm/kernel/elf.c index d4a0da1e48f4..950391f194c4 100644 --- a/arch/arm/kernel/elf.c +++ b/arch/arm/kernel/elf.c | |||
@@ -78,6 +78,15 @@ int arm_elf_read_implies_exec(const struct elf32_hdr *x, int executable_stack) | |||
78 | return 1; | 78 | return 1; |
79 | if (cpu_architecture() < CPU_ARCH_ARMv6) | 79 | if (cpu_architecture() < CPU_ARCH_ARMv6) |
80 | return 1; | 80 | return 1; |
81 | #if !defined(CONFIG_AEABI) || defined(CONFIG_OABI_COMPAT) | ||
82 | /* | ||
83 | * If we have support for OABI programs, we can never allow NX | ||
84 | * support - our signal syscall restart mechanism relies upon | ||
85 | * being able to execute code placed on the user stack. | ||
86 | */ | ||
87 | return 1; | ||
88 | #else | ||
81 | return 0; | 89 | return 0; |
90 | #endif | ||
82 | } | 91 | } |
83 | EXPORT_SYMBOL(arm_elf_read_implies_exec); | 92 | EXPORT_SYMBOL(arm_elf_read_implies_exec); |
diff --git a/arch/arm/kernel/entry-armv.S b/arch/arm/kernel/entry-armv.S index d662a2f1fd85..83b1da6b7baa 100644 --- a/arch/arm/kernel/entry-armv.S +++ b/arch/arm/kernel/entry-armv.S | |||
@@ -815,10 +815,7 @@ __kuser_helper_start: | |||
815 | */ | 815 | */ |
816 | 816 | ||
817 | __kuser_memory_barrier: @ 0xffff0fa0 | 817 | __kuser_memory_barrier: @ 0xffff0fa0 |
818 | 818 | smp_dmb | |
819 | #if __LINUX_ARM_ARCH__ >= 6 && defined(CONFIG_SMP) | ||
820 | mcr p15, 0, r0, c7, c10, 5 @ dmb | ||
821 | #endif | ||
822 | usr_ret lr | 819 | usr_ret lr |
823 | 820 | ||
824 | .align 5 | 821 | .align 5 |
diff --git a/arch/arm/lib/bitops.h b/arch/arm/lib/bitops.h index 2e787d40d599..c7f2627385e7 100644 --- a/arch/arm/lib/bitops.h +++ b/arch/arm/lib/bitops.h | |||
@@ -18,12 +18,14 @@ | |||
18 | mov r2, #1 | 18 | mov r2, #1 |
19 | add r1, r1, r0, lsr #3 @ Get byte offset | 19 | add r1, r1, r0, lsr #3 @ Get byte offset |
20 | mov r3, r2, lsl r3 @ create mask | 20 | mov r3, r2, lsl r3 @ create mask |
21 | smp_dmb | ||
21 | 1: ldrexb r2, [r1] | 22 | 1: ldrexb r2, [r1] |
22 | ands r0, r2, r3 @ save old value of bit | 23 | ands r0, r2, r3 @ save old value of bit |
23 | \instr r2, r2, r3 @ toggle bit | 24 | \instr r2, r2, r3 @ toggle bit |
24 | strexb ip, r2, [r1] | 25 | strexb ip, r2, [r1] |
25 | cmp ip, #0 | 26 | cmp ip, #0 |
26 | bne 1b | 27 | bne 1b |
28 | smp_dmb | ||
27 | cmp r0, #0 | 29 | cmp r0, #0 |
28 | movne r0, #1 | 30 | movne r0, #1 |
29 | 2: mov pc, lr | 31 | 2: mov pc, lr |
diff --git a/arch/arm/mach-gemini/include/mach/hardware.h b/arch/arm/mach-gemini/include/mach/hardware.h index de6752674c05..213a4fcfeb1c 100644 --- a/arch/arm/mach-gemini/include/mach/hardware.h +++ b/arch/arm/mach-gemini/include/mach/hardware.h | |||
@@ -15,10 +15,9 @@ | |||
15 | /* | 15 | /* |
16 | * Memory Map definitions | 16 | * Memory Map definitions |
17 | */ | 17 | */ |
18 | /* FIXME: Does it really swap SRAM like this? */ | ||
19 | #ifdef CONFIG_GEMINI_MEM_SWAP | 18 | #ifdef CONFIG_GEMINI_MEM_SWAP |
20 | # define GEMINI_DRAM_BASE 0x00000000 | 19 | # define GEMINI_DRAM_BASE 0x00000000 |
21 | # define GEMINI_SRAM_BASE 0x20000000 | 20 | # define GEMINI_SRAM_BASE 0x70000000 |
22 | #else | 21 | #else |
23 | # define GEMINI_SRAM_BASE 0x00000000 | 22 | # define GEMINI_SRAM_BASE 0x00000000 |
24 | # define GEMINI_DRAM_BASE 0x10000000 | 23 | # define GEMINI_DRAM_BASE 0x10000000 |
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index eeb00240d784..be1ca28fed3f 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
@@ -144,6 +144,9 @@ static struct platform_device kirkwood_ge00 = { | |||
144 | .id = 0, | 144 | .id = 0, |
145 | .num_resources = 1, | 145 | .num_resources = 1, |
146 | .resource = kirkwood_ge00_resources, | 146 | .resource = kirkwood_ge00_resources, |
147 | .dev = { | ||
148 | .coherent_dma_mask = 0xffffffff, | ||
149 | }, | ||
147 | }; | 150 | }; |
148 | 151 | ||
149 | void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 152 | void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -202,6 +205,9 @@ static struct platform_device kirkwood_ge01 = { | |||
202 | .id = 1, | 205 | .id = 1, |
203 | .num_resources = 1, | 206 | .num_resources = 1, |
204 | .resource = kirkwood_ge01_resources, | 207 | .resource = kirkwood_ge01_resources, |
208 | .dev = { | ||
209 | .coherent_dma_mask = 0xffffffff, | ||
210 | }, | ||
205 | }; | 211 | }; |
206 | 212 | ||
207 | void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data) | 213 | void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -386,12 +392,10 @@ static struct mv64xxx_i2c_pdata kirkwood_i2c_pdata = { | |||
386 | 392 | ||
387 | static struct resource kirkwood_i2c_resources[] = { | 393 | static struct resource kirkwood_i2c_resources[] = { |
388 | { | 394 | { |
389 | .name = "i2c", | ||
390 | .start = I2C_PHYS_BASE, | 395 | .start = I2C_PHYS_BASE, |
391 | .end = I2C_PHYS_BASE + 0x1f, | 396 | .end = I2C_PHYS_BASE + 0x1f, |
392 | .flags = IORESOURCE_MEM, | 397 | .flags = IORESOURCE_MEM, |
393 | }, { | 398 | }, { |
394 | .name = "i2c", | ||
395 | .start = IRQ_KIRKWOOD_TWSI, | 399 | .start = IRQ_KIRKWOOD_TWSI, |
396 | .end = IRQ_KIRKWOOD_TWSI, | 400 | .end = IRQ_KIRKWOOD_TWSI, |
397 | .flags = IORESOURCE_IRQ, | 401 | .flags = IORESOURCE_IRQ, |
diff --git a/arch/arm/mach-kirkwood/ts219-setup.c b/arch/arm/mach-kirkwood/ts219-setup.c index dda5743cf3e0..01aa213c0a6f 100644 --- a/arch/arm/mach-kirkwood/ts219-setup.c +++ b/arch/arm/mach-kirkwood/ts219-setup.c | |||
@@ -142,6 +142,8 @@ static unsigned int qnap_ts219_mpp_config[] __initdata = { | |||
142 | MPP1_SPI_MOSI, | 142 | MPP1_SPI_MOSI, |
143 | MPP2_SPI_SCK, | 143 | MPP2_SPI_SCK, |
144 | MPP3_SPI_MISO, | 144 | MPP3_SPI_MISO, |
145 | MPP4_SATA1_ACTn, | ||
146 | MPP5_SATA0_ACTn, | ||
145 | MPP8_TW_SDA, | 147 | MPP8_TW_SDA, |
146 | MPP9_TW_SCK, | 148 | MPP9_TW_SCK, |
147 | MPP10_UART0_TXD, | 149 | MPP10_UART0_TXD, |
@@ -150,10 +152,6 @@ static unsigned int qnap_ts219_mpp_config[] __initdata = { | |||
150 | MPP14_UART1_RXD, /* PIC controller */ | 152 | MPP14_UART1_RXD, /* PIC controller */ |
151 | MPP15_GPIO, /* USB Copy button */ | 153 | MPP15_GPIO, /* USB Copy button */ |
152 | MPP16_GPIO, /* Reset button */ | 154 | MPP16_GPIO, /* Reset button */ |
153 | MPP20_SATA1_ACTn, | ||
154 | MPP21_SATA0_ACTn, | ||
155 | MPP22_SATA1_PRESENTn, | ||
156 | MPP23_SATA0_PRESENTn, | ||
157 | 0 | 155 | 0 |
158 | }; | 156 | }; |
159 | 157 | ||
diff --git a/arch/arm/mach-loki/common.c b/arch/arm/mach-loki/common.c index c0d2d9d12e74..818f19d7ab1f 100644 --- a/arch/arm/mach-loki/common.c +++ b/arch/arm/mach-loki/common.c | |||
@@ -82,6 +82,9 @@ static struct platform_device loki_ge0 = { | |||
82 | .id = 0, | 82 | .id = 0, |
83 | .num_resources = 1, | 83 | .num_resources = 1, |
84 | .resource = loki_ge0_resources, | 84 | .resource = loki_ge0_resources, |
85 | .dev = { | ||
86 | .coherent_dma_mask = 0xffffffff, | ||
87 | }, | ||
85 | }; | 88 | }; |
86 | 89 | ||
87 | void __init loki_ge0_init(struct mv643xx_eth_platform_data *eth_data) | 90 | void __init loki_ge0_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -136,6 +139,9 @@ static struct platform_device loki_ge1 = { | |||
136 | .id = 1, | 139 | .id = 1, |
137 | .num_resources = 1, | 140 | .num_resources = 1, |
138 | .resource = loki_ge1_resources, | 141 | .resource = loki_ge1_resources, |
142 | .dev = { | ||
143 | .coherent_dma_mask = 0xffffffff, | ||
144 | }, | ||
139 | }; | 145 | }; |
140 | 146 | ||
141 | void __init loki_ge1_init(struct mv643xx_eth_platform_data *eth_data) | 147 | void __init loki_ge1_init(struct mv643xx_eth_platform_data *eth_data) |
diff --git a/arch/arm/mach-mmp/include/mach/mfp-pxa168.h b/arch/arm/mach-mmp/include/mach/mfp-pxa168.h index d0bdb6e3682b..2e914649b9e4 100644 --- a/arch/arm/mach-mmp/include/mach/mfp-pxa168.h +++ b/arch/arm/mach-mmp/include/mach/mfp-pxa168.h | |||
@@ -3,6 +3,11 @@ | |||
3 | 3 | ||
4 | #include <mach/mfp.h> | 4 | #include <mach/mfp.h> |
5 | 5 | ||
6 | #define MFP_DRIVE_VERY_SLOW (0x0 << 13) | ||
7 | #define MFP_DRIVE_SLOW (0x1 << 13) | ||
8 | #define MFP_DRIVE_MEDIUM (0x2 << 13) | ||
9 | #define MFP_DRIVE_FAST (0x3 << 13) | ||
10 | |||
6 | /* GPIO */ | 11 | /* GPIO */ |
7 | #define GPIO0_GPIO MFP_CFG(GPIO0, AF5) | 12 | #define GPIO0_GPIO MFP_CFG(GPIO0, AF5) |
8 | #define GPIO1_GPIO MFP_CFG(GPIO1, AF5) | 13 | #define GPIO1_GPIO MFP_CFG(GPIO1, AF5) |
diff --git a/arch/arm/mach-mmp/include/mach/mfp-pxa910.h b/arch/arm/mach-mmp/include/mach/mfp-pxa910.h index 48a1cbc7c56b..d97de36c50ad 100644 --- a/arch/arm/mach-mmp/include/mach/mfp-pxa910.h +++ b/arch/arm/mach-mmp/include/mach/mfp-pxa910.h | |||
@@ -3,6 +3,11 @@ | |||
3 | 3 | ||
4 | #include <mach/mfp.h> | 4 | #include <mach/mfp.h> |
5 | 5 | ||
6 | #define MFP_DRIVE_VERY_SLOW (0x0 << 13) | ||
7 | #define MFP_DRIVE_SLOW (0x2 << 13) | ||
8 | #define MFP_DRIVE_MEDIUM (0x4 << 13) | ||
9 | #define MFP_DRIVE_FAST (0x8 << 13) | ||
10 | |||
6 | /* UART2 */ | 11 | /* UART2 */ |
7 | #define GPIO47_UART2_RXD MFP_CFG(GPIO47, AF6) | 12 | #define GPIO47_UART2_RXD MFP_CFG(GPIO47, AF6) |
8 | #define GPIO48_UART2_TXD MFP_CFG(GPIO48, AF6) | 13 | #define GPIO48_UART2_TXD MFP_CFG(GPIO48, AF6) |
diff --git a/arch/arm/mach-mmp/include/mach/mfp.h b/arch/arm/mach-mmp/include/mach/mfp.h index 277ea4cd0f9f..62e510e80a58 100644 --- a/arch/arm/mach-mmp/include/mach/mfp.h +++ b/arch/arm/mach-mmp/include/mach/mfp.h | |||
@@ -12,16 +12,13 @@ | |||
12 | * possible, we make the following compromise: | 12 | * possible, we make the following compromise: |
13 | * | 13 | * |
14 | * 1. SLEEP_OE_N will always be programmed to '1' (by MFP_LPM_FLOAT) | 14 | * 1. SLEEP_OE_N will always be programmed to '1' (by MFP_LPM_FLOAT) |
15 | * 2. DRIVE strength definitions redefined to include the reserved bit10 | 15 | * 2. DRIVE strength definitions redefined to include the reserved bit |
16 | * - the reserved bit differs between pxa168 and pxa910, and the | ||
17 | * MFP_DRIVE_* macros are individually defined in mfp-pxa{168,910}.h | ||
16 | * 3. Override MFP_CFG() and MFP_CFG_DRV() | 18 | * 3. Override MFP_CFG() and MFP_CFG_DRV() |
17 | * 4. Drop the use of MFP_CFG_LPM() and MFP_CFG_X() | 19 | * 4. Drop the use of MFP_CFG_LPM() and MFP_CFG_X() |
18 | */ | 20 | */ |
19 | 21 | ||
20 | #define MFP_DRIVE_VERY_SLOW (0x0 << 13) | ||
21 | #define MFP_DRIVE_SLOW (0x2 << 13) | ||
22 | #define MFP_DRIVE_MEDIUM (0x4 << 13) | ||
23 | #define MFP_DRIVE_FAST (0x8 << 13) | ||
24 | |||
25 | #undef MFP_CFG | 22 | #undef MFP_CFG |
26 | #undef MFP_CFG_DRV | 23 | #undef MFP_CFG_DRV |
27 | #undef MFP_CFG_LPM | 24 | #undef MFP_CFG_LPM |
diff --git a/arch/arm/mach-mmp/time.c b/arch/arm/mach-mmp/time.c index b03a6eda7419..a8400bb891e7 100644 --- a/arch/arm/mach-mmp/time.c +++ b/arch/arm/mach-mmp/time.c | |||
@@ -136,7 +136,7 @@ static struct clock_event_device ckevt = { | |||
136 | .set_mode = timer_set_mode, | 136 | .set_mode = timer_set_mode, |
137 | }; | 137 | }; |
138 | 138 | ||
139 | static cycle_t clksrc_read(void) | 139 | static cycle_t clksrc_read(struct clocksource *cs) |
140 | { | 140 | { |
141 | return timer_read(); | 141 | return timer_read(); |
142 | } | 142 | } |
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index 9ba595083dab..1b22e4af8791 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c | |||
@@ -321,6 +321,9 @@ static struct platform_device mv78xx0_ge00 = { | |||
321 | .id = 0, | 321 | .id = 0, |
322 | .num_resources = 1, | 322 | .num_resources = 1, |
323 | .resource = mv78xx0_ge00_resources, | 323 | .resource = mv78xx0_ge00_resources, |
324 | .dev = { | ||
325 | .coherent_dma_mask = 0xffffffff, | ||
326 | }, | ||
324 | }; | 327 | }; |
325 | 328 | ||
326 | void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 329 | void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -375,6 +378,9 @@ static struct platform_device mv78xx0_ge01 = { | |||
375 | .id = 1, | 378 | .id = 1, |
376 | .num_resources = 1, | 379 | .num_resources = 1, |
377 | .resource = mv78xx0_ge01_resources, | 380 | .resource = mv78xx0_ge01_resources, |
381 | .dev = { | ||
382 | .coherent_dma_mask = 0xffffffff, | ||
383 | }, | ||
378 | }; | 384 | }; |
379 | 385 | ||
380 | void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data) | 386 | void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -429,6 +435,9 @@ static struct platform_device mv78xx0_ge10 = { | |||
429 | .id = 2, | 435 | .id = 2, |
430 | .num_resources = 1, | 436 | .num_resources = 1, |
431 | .resource = mv78xx0_ge10_resources, | 437 | .resource = mv78xx0_ge10_resources, |
438 | .dev = { | ||
439 | .coherent_dma_mask = 0xffffffff, | ||
440 | }, | ||
432 | }; | 441 | }; |
433 | 442 | ||
434 | void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) | 443 | void __init mv78xx0_ge10_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -496,6 +505,9 @@ static struct platform_device mv78xx0_ge11 = { | |||
496 | .id = 3, | 505 | .id = 3, |
497 | .num_resources = 1, | 506 | .num_resources = 1, |
498 | .resource = mv78xx0_ge11_resources, | 507 | .resource = mv78xx0_ge11_resources, |
508 | .dev = { | ||
509 | .coherent_dma_mask = 0xffffffff, | ||
510 | }, | ||
499 | }; | 511 | }; |
500 | 512 | ||
501 | void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) | 513 | void __init mv78xx0_ge11_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -532,12 +544,10 @@ static struct mv64xxx_i2c_pdata mv78xx0_i2c_0_pdata = { | |||
532 | 544 | ||
533 | static struct resource mv78xx0_i2c_0_resources[] = { | 545 | static struct resource mv78xx0_i2c_0_resources[] = { |
534 | { | 546 | { |
535 | .name = "i2c 0 base", | ||
536 | .start = I2C_0_PHYS_BASE, | 547 | .start = I2C_0_PHYS_BASE, |
537 | .end = I2C_0_PHYS_BASE + 0x1f, | 548 | .end = I2C_0_PHYS_BASE + 0x1f, |
538 | .flags = IORESOURCE_MEM, | 549 | .flags = IORESOURCE_MEM, |
539 | }, { | 550 | }, { |
540 | .name = "i2c 0 irq", | ||
541 | .start = IRQ_MV78XX0_I2C_0, | 551 | .start = IRQ_MV78XX0_I2C_0, |
542 | .end = IRQ_MV78XX0_I2C_0, | 552 | .end = IRQ_MV78XX0_I2C_0, |
543 | .flags = IORESOURCE_IRQ, | 553 | .flags = IORESOURCE_IRQ, |
@@ -567,12 +577,10 @@ static struct mv64xxx_i2c_pdata mv78xx0_i2c_1_pdata = { | |||
567 | 577 | ||
568 | static struct resource mv78xx0_i2c_1_resources[] = { | 578 | static struct resource mv78xx0_i2c_1_resources[] = { |
569 | { | 579 | { |
570 | .name = "i2c 1 base", | ||
571 | .start = I2C_1_PHYS_BASE, | 580 | .start = I2C_1_PHYS_BASE, |
572 | .end = I2C_1_PHYS_BASE + 0x1f, | 581 | .end = I2C_1_PHYS_BASE + 0x1f, |
573 | .flags = IORESOURCE_MEM, | 582 | .flags = IORESOURCE_MEM, |
574 | }, { | 583 | }, { |
575 | .name = "i2c 1 irq", | ||
576 | .start = IRQ_MV78XX0_I2C_1, | 584 | .start = IRQ_MV78XX0_I2C_1, |
577 | .end = IRQ_MV78XX0_I2C_1, | 585 | .end = IRQ_MV78XX0_I2C_1, |
578 | .flags = IORESOURCE_IRQ, | 586 | .flags = IORESOURCE_IRQ, |
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 6af99ddabdfb..b1c7778d9f96 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
@@ -188,6 +188,9 @@ static struct platform_device orion5x_eth = { | |||
188 | .id = 0, | 188 | .id = 0, |
189 | .num_resources = 1, | 189 | .num_resources = 1, |
190 | .resource = orion5x_eth_resources, | 190 | .resource = orion5x_eth_resources, |
191 | .dev = { | ||
192 | .coherent_dma_mask = 0xffffffff, | ||
193 | }, | ||
191 | }; | 194 | }; |
192 | 195 | ||
193 | void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) | 196 | void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) |
@@ -248,12 +251,10 @@ static struct mv64xxx_i2c_pdata orion5x_i2c_pdata = { | |||
248 | 251 | ||
249 | static struct resource orion5x_i2c_resources[] = { | 252 | static struct resource orion5x_i2c_resources[] = { |
250 | { | 253 | { |
251 | .name = "i2c base", | ||
252 | .start = I2C_PHYS_BASE, | 254 | .start = I2C_PHYS_BASE, |
253 | .end = I2C_PHYS_BASE + 0x1f, | 255 | .end = I2C_PHYS_BASE + 0x1f, |
254 | .flags = IORESOURCE_MEM, | 256 | .flags = IORESOURCE_MEM, |
255 | }, { | 257 | }, { |
256 | .name = "i2c irq", | ||
257 | .start = IRQ_ORION5X_I2C, | 258 | .start = IRQ_ORION5X_I2C, |
258 | .end = IRQ_ORION5X_I2C, | 259 | .end = IRQ_ORION5X_I2C, |
259 | .flags = IORESOURCE_IRQ, | 260 | .flags = IORESOURCE_IRQ, |
diff --git a/arch/arm/mach-pxa/ezx.c b/arch/arm/mach-pxa/ezx.c index 92ba16e1b6fc..7db966dc29ce 100644 --- a/arch/arm/mach-pxa/ezx.c +++ b/arch/arm/mach-pxa/ezx.c | |||
@@ -111,9 +111,9 @@ static unsigned long ezx_pin_config[] __initdata = { | |||
111 | GPIO25_SSP1_TXD, | 111 | GPIO25_SSP1_TXD, |
112 | GPIO26_SSP1_RXD, | 112 | GPIO26_SSP1_RXD, |
113 | GPIO24_GPIO, /* pcap chip select */ | 113 | GPIO24_GPIO, /* pcap chip select */ |
114 | GPIO1_GPIO, /* pcap interrupt */ | 114 | GPIO1_GPIO | WAKEUP_ON_EDGE_RISE, /* pcap interrupt */ |
115 | GPIO4_GPIO, /* WDI_AP */ | 115 | GPIO4_GPIO | MFP_LPM_DRIVE_HIGH, /* WDI_AP */ |
116 | GPIO55_GPIO, /* SYS_RESTART */ | 116 | GPIO55_GPIO | MFP_LPM_DRIVE_HIGH, /* SYS_RESTART */ |
117 | 117 | ||
118 | /* MMC */ | 118 | /* MMC */ |
119 | GPIO32_MMC_CLK, | 119 | GPIO32_MMC_CLK, |
@@ -144,20 +144,20 @@ static unsigned long ezx_pin_config[] __initdata = { | |||
144 | #if defined(CONFIG_MACH_EZX_A780) || defined(CONFIG_MACH_EZX_E680) | 144 | #if defined(CONFIG_MACH_EZX_A780) || defined(CONFIG_MACH_EZX_E680) |
145 | static unsigned long gen1_pin_config[] __initdata = { | 145 | static unsigned long gen1_pin_config[] __initdata = { |
146 | /* flip / lockswitch */ | 146 | /* flip / lockswitch */ |
147 | GPIO12_GPIO, | 147 | GPIO12_GPIO | WAKEUP_ON_EDGE_BOTH, |
148 | 148 | ||
149 | /* bluetooth (bcm2035) */ | 149 | /* bluetooth (bcm2035) */ |
150 | GPIO14_GPIO | WAKEUP_ON_LEVEL_HIGH, /* HOSTWAKE */ | 150 | GPIO14_GPIO | WAKEUP_ON_EDGE_RISE, /* HOSTWAKE */ |
151 | GPIO48_GPIO, /* RESET */ | 151 | GPIO48_GPIO, /* RESET */ |
152 | GPIO28_GPIO, /* WAKEUP */ | 152 | GPIO28_GPIO, /* WAKEUP */ |
153 | 153 | ||
154 | /* Neptune handshake */ | 154 | /* Neptune handshake */ |
155 | GPIO0_GPIO | WAKEUP_ON_LEVEL_HIGH, /* BP_RDY */ | 155 | GPIO0_GPIO | WAKEUP_ON_EDGE_FALL, /* BP_RDY */ |
156 | GPIO57_GPIO, /* AP_RDY */ | 156 | GPIO57_GPIO | MFP_LPM_DRIVE_HIGH, /* AP_RDY */ |
157 | GPIO13_GPIO | WAKEUP_ON_LEVEL_HIGH, /* WDI */ | 157 | GPIO13_GPIO | WAKEUP_ON_EDGE_BOTH, /* WDI */ |
158 | GPIO3_GPIO | WAKEUP_ON_LEVEL_HIGH, /* WDI2 */ | 158 | GPIO3_GPIO | WAKEUP_ON_EDGE_BOTH, /* WDI2 */ |
159 | GPIO82_GPIO, /* RESET */ | 159 | GPIO82_GPIO | MFP_LPM_DRIVE_HIGH, /* RESET */ |
160 | GPIO99_GPIO, /* TC_MM_EN */ | 160 | GPIO99_GPIO | MFP_LPM_DRIVE_HIGH, /* TC_MM_EN */ |
161 | 161 | ||
162 | /* sound */ | 162 | /* sound */ |
163 | GPIO52_SSP3_SCLK, | 163 | GPIO52_SSP3_SCLK, |
@@ -199,21 +199,21 @@ static unsigned long gen1_pin_config[] __initdata = { | |||
199 | defined(CONFIG_MACH_EZX_E2) || defined(CONFIG_MACH_EZX_E6) | 199 | defined(CONFIG_MACH_EZX_E2) || defined(CONFIG_MACH_EZX_E6) |
200 | static unsigned long gen2_pin_config[] __initdata = { | 200 | static unsigned long gen2_pin_config[] __initdata = { |
201 | /* flip / lockswitch */ | 201 | /* flip / lockswitch */ |
202 | GPIO15_GPIO, | 202 | GPIO15_GPIO | WAKEUP_ON_EDGE_BOTH, |
203 | 203 | ||
204 | /* EOC */ | 204 | /* EOC */ |
205 | GPIO10_GPIO, | 205 | GPIO10_GPIO | WAKEUP_ON_EDGE_RISE, |
206 | 206 | ||
207 | /* bluetooth (bcm2045) */ | 207 | /* bluetooth (bcm2045) */ |
208 | GPIO13_GPIO | WAKEUP_ON_LEVEL_HIGH, /* HOSTWAKE */ | 208 | GPIO13_GPIO | WAKEUP_ON_EDGE_RISE, /* HOSTWAKE */ |
209 | GPIO37_GPIO, /* RESET */ | 209 | GPIO37_GPIO, /* RESET */ |
210 | GPIO57_GPIO, /* WAKEUP */ | 210 | GPIO57_GPIO, /* WAKEUP */ |
211 | 211 | ||
212 | /* Neptune handshake */ | 212 | /* Neptune handshake */ |
213 | GPIO0_GPIO | WAKEUP_ON_LEVEL_HIGH, /* BP_RDY */ | 213 | GPIO0_GPIO | WAKEUP_ON_EDGE_FALL, /* BP_RDY */ |
214 | GPIO96_GPIO, /* AP_RDY */ | 214 | GPIO96_GPIO | MFP_LPM_DRIVE_HIGH, /* AP_RDY */ |
215 | GPIO3_GPIO | WAKEUP_ON_LEVEL_HIGH, /* WDI */ | 215 | GPIO3_GPIO | WAKEUP_ON_EDGE_FALL, /* WDI */ |
216 | GPIO116_GPIO, /* RESET */ | 216 | GPIO116_GPIO | MFP_LPM_DRIVE_HIGH, /* RESET */ |
217 | GPIO41_GPIO, /* BP_FLASH */ | 217 | GPIO41_GPIO, /* BP_FLASH */ |
218 | 218 | ||
219 | /* sound */ | 219 | /* sound */ |
diff --git a/arch/arm/mach-pxa/include/mach/reset.h b/arch/arm/mach-pxa/include/mach/reset.h index 31e6a7b6ad80..b6c10556fbc7 100644 --- a/arch/arm/mach-pxa/include/mach/reset.h +++ b/arch/arm/mach-pxa/include/mach/reset.h | |||
@@ -13,8 +13,9 @@ extern void clear_reset_status(unsigned int mask); | |||
13 | /** | 13 | /** |
14 | * init_gpio_reset() - register GPIO as reset generator | 14 | * init_gpio_reset() - register GPIO as reset generator |
15 | * @gpio: gpio nr | 15 | * @gpio: gpio nr |
16 | * @output: set gpio as out/low instead of input during normal work | 16 | * @output: set gpio as output instead of input during normal work |
17 | * @level: output level | ||
17 | */ | 18 | */ |
18 | extern int init_gpio_reset(int gpio, int output); | 19 | extern int init_gpio_reset(int gpio, int output, int level); |
19 | 20 | ||
20 | #endif /* __ASM_ARCH_RESET_H */ | 21 | #endif /* __ASM_ARCH_RESET_H */ |
diff --git a/arch/arm/mach-pxa/mfp-pxa2xx.c b/arch/arm/mach-pxa/mfp-pxa2xx.c index 7ffb91d64c39..cf6b720c055f 100644 --- a/arch/arm/mach-pxa/mfp-pxa2xx.c +++ b/arch/arm/mach-pxa/mfp-pxa2xx.c | |||
@@ -322,6 +322,7 @@ static inline void pxa27x_mfp_init(void) {} | |||
322 | #ifdef CONFIG_PM | 322 | #ifdef CONFIG_PM |
323 | static unsigned long saved_gafr[2][4]; | 323 | static unsigned long saved_gafr[2][4]; |
324 | static unsigned long saved_gpdr[4]; | 324 | static unsigned long saved_gpdr[4]; |
325 | static unsigned long saved_pgsr[4]; | ||
325 | 326 | ||
326 | static int pxa2xx_mfp_suspend(struct sys_device *d, pm_message_t state) | 327 | static int pxa2xx_mfp_suspend(struct sys_device *d, pm_message_t state) |
327 | { | 328 | { |
@@ -332,6 +333,7 @@ static int pxa2xx_mfp_suspend(struct sys_device *d, pm_message_t state) | |||
332 | saved_gafr[0][i] = GAFR_L(i); | 333 | saved_gafr[0][i] = GAFR_L(i); |
333 | saved_gafr[1][i] = GAFR_U(i); | 334 | saved_gafr[1][i] = GAFR_U(i); |
334 | saved_gpdr[i] = GPDR(i * 32); | 335 | saved_gpdr[i] = GPDR(i * 32); |
336 | saved_pgsr[i] = PGSR(i); | ||
335 | 337 | ||
336 | GPDR(i * 32) = gpdr_lpm[i]; | 338 | GPDR(i * 32) = gpdr_lpm[i]; |
337 | } | 339 | } |
@@ -346,6 +348,7 @@ static int pxa2xx_mfp_resume(struct sys_device *d) | |||
346 | GAFR_L(i) = saved_gafr[0][i]; | 348 | GAFR_L(i) = saved_gafr[0][i]; |
347 | GAFR_U(i) = saved_gafr[1][i]; | 349 | GAFR_U(i) = saved_gafr[1][i]; |
348 | GPDR(i * 32) = saved_gpdr[i]; | 350 | GPDR(i * 32) = saved_gpdr[i]; |
351 | PGSR(i) = saved_pgsr[i]; | ||
349 | } | 352 | } |
350 | PSSR = PSSR_RDH | PSSR_PH; | 353 | PSSR = PSSR_RDH | PSSR_PH; |
351 | return 0; | 354 | return 0; |
@@ -374,6 +377,9 @@ static int __init pxa2xx_mfp_init(void) | |||
374 | if (cpu_is_pxa27x()) | 377 | if (cpu_is_pxa27x()) |
375 | pxa27x_mfp_init(); | 378 | pxa27x_mfp_init(); |
376 | 379 | ||
380 | /* clear RDH bit to enable GPIO receivers after reset/sleep exit */ | ||
381 | PSSR = PSSR_RDH; | ||
382 | |||
377 | /* initialize gafr_run[], pgsr_lpm[] from existing values */ | 383 | /* initialize gafr_run[], pgsr_lpm[] from existing values */ |
378 | for (i = 0; i <= gpio_to_bank(pxa_last_gpio); i++) | 384 | for (i = 0; i <= gpio_to_bank(pxa_last_gpio); i++) |
379 | gpdr_lpm[i] = GPDR(i * 32); | 385 | gpdr_lpm[i] = GPDR(i * 32); |
diff --git a/arch/arm/mach-pxa/palmld.c b/arch/arm/mach-pxa/palmld.c index 1cec1806f002..471a853e548b 100644 --- a/arch/arm/mach-pxa/palmld.c +++ b/arch/arm/mach-pxa/palmld.c | |||
@@ -62,6 +62,8 @@ static unsigned long palmld_pin_config[] __initdata = { | |||
62 | GPIO29_AC97_SDATA_IN_0, | 62 | GPIO29_AC97_SDATA_IN_0, |
63 | GPIO30_AC97_SDATA_OUT, | 63 | GPIO30_AC97_SDATA_OUT, |
64 | GPIO31_AC97_SYNC, | 64 | GPIO31_AC97_SYNC, |
65 | GPIO89_AC97_SYSCLK, | ||
66 | GPIO95_AC97_nRESET, | ||
65 | 67 | ||
66 | /* IrDA */ | 68 | /* IrDA */ |
67 | GPIO108_GPIO, /* ir disable */ | 69 | GPIO108_GPIO, /* ir disable */ |
diff --git a/arch/arm/mach-pxa/palmt5.c b/arch/arm/mach-pxa/palmt5.c index 30662363907b..05bf979b78a6 100644 --- a/arch/arm/mach-pxa/palmt5.c +++ b/arch/arm/mach-pxa/palmt5.c | |||
@@ -64,6 +64,7 @@ static unsigned long palmt5_pin_config[] __initdata = { | |||
64 | GPIO29_AC97_SDATA_IN_0, | 64 | GPIO29_AC97_SDATA_IN_0, |
65 | GPIO30_AC97_SDATA_OUT, | 65 | GPIO30_AC97_SDATA_OUT, |
66 | GPIO31_AC97_SYNC, | 66 | GPIO31_AC97_SYNC, |
67 | GPIO89_AC97_SYSCLK, | ||
67 | GPIO95_AC97_nRESET, | 68 | GPIO95_AC97_nRESET, |
68 | 69 | ||
69 | /* IrDA */ | 70 | /* IrDA */ |
diff --git a/arch/arm/mach-pxa/palmtx.c b/arch/arm/mach-pxa/palmtx.c index e2d44b1a8a9b..e99a893c58a7 100644 --- a/arch/arm/mach-pxa/palmtx.c +++ b/arch/arm/mach-pxa/palmtx.c | |||
@@ -65,6 +65,7 @@ static unsigned long palmtx_pin_config[] __initdata = { | |||
65 | GPIO29_AC97_SDATA_IN_0, | 65 | GPIO29_AC97_SDATA_IN_0, |
66 | GPIO30_AC97_SDATA_OUT, | 66 | GPIO30_AC97_SDATA_OUT, |
67 | GPIO31_AC97_SYNC, | 67 | GPIO31_AC97_SYNC, |
68 | GPIO89_AC97_SYSCLK, | ||
68 | GPIO95_AC97_nRESET, | 69 | GPIO95_AC97_nRESET, |
69 | 70 | ||
70 | /* IrDA */ | 71 | /* IrDA */ |
diff --git a/arch/arm/mach-pxa/reset.c b/arch/arm/mach-pxa/reset.c index df29d45fb4e7..01e9d643394a 100644 --- a/arch/arm/mach-pxa/reset.c +++ b/arch/arm/mach-pxa/reset.c | |||
@@ -20,7 +20,7 @@ static void do_hw_reset(void); | |||
20 | 20 | ||
21 | static int reset_gpio = -1; | 21 | static int reset_gpio = -1; |
22 | 22 | ||
23 | int init_gpio_reset(int gpio, int output) | 23 | int init_gpio_reset(int gpio, int output, int level) |
24 | { | 24 | { |
25 | int rc; | 25 | int rc; |
26 | 26 | ||
@@ -31,7 +31,7 @@ int init_gpio_reset(int gpio, int output) | |||
31 | } | 31 | } |
32 | 32 | ||
33 | if (output) | 33 | if (output) |
34 | rc = gpio_direction_output(gpio, 0); | 34 | rc = gpio_direction_output(gpio, level); |
35 | else | 35 | else |
36 | rc = gpio_direction_input(gpio); | 36 | rc = gpio_direction_input(gpio); |
37 | if (rc) { | 37 | if (rc) { |
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index c18e34acafcb..5a45fe340a10 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -531,9 +531,15 @@ static int spitz_ohci_init(struct device *dev) | |||
531 | return gpio_direction_output(SPITZ_GPIO_USB_HOST, 1); | 531 | return gpio_direction_output(SPITZ_GPIO_USB_HOST, 1); |
532 | } | 532 | } |
533 | 533 | ||
534 | static void spitz_ohci_exit(struct device *dev) | ||
535 | { | ||
536 | gpio_free(SPITZ_GPIO_USB_HOST); | ||
537 | } | ||
538 | |||
534 | static struct pxaohci_platform_data spitz_ohci_platform_data = { | 539 | static struct pxaohci_platform_data spitz_ohci_platform_data = { |
535 | .port_mode = PMM_NPS_MODE, | 540 | .port_mode = PMM_NPS_MODE, |
536 | .init = spitz_ohci_init, | 541 | .init = spitz_ohci_init, |
542 | .exit = spitz_ohci_exit, | ||
537 | .flags = ENABLE_PORT_ALL | NO_OC_PROTECTION, | 543 | .flags = ENABLE_PORT_ALL | NO_OC_PROTECTION, |
538 | .power_budget = 150, | 544 | .power_budget = 150, |
539 | }; | 545 | }; |
@@ -731,7 +737,7 @@ static void spitz_restart(char mode, const char *cmd) | |||
731 | 737 | ||
732 | static void __init common_init(void) | 738 | static void __init common_init(void) |
733 | { | 739 | { |
734 | init_gpio_reset(SPITZ_GPIO_ON_RESET, 1); | 740 | init_gpio_reset(SPITZ_GPIO_ON_RESET, 1, 0); |
735 | pm_power_off = spitz_poweroff; | 741 | pm_power_off = spitz_poweroff; |
736 | arm_pm_restart = spitz_restart; | 742 | arm_pm_restart = spitz_restart; |
737 | 743 | ||
diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index afac5b6d3d78..a0bd46ef5d30 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c | |||
@@ -897,7 +897,7 @@ static void __init tosa_init(void) | |||
897 | gpio_set_wake(MFP_PIN_GPIO1, 1); | 897 | gpio_set_wake(MFP_PIN_GPIO1, 1); |
898 | /* We can't pass to gpio-keys since it will drop the Reset altfunc */ | 898 | /* We can't pass to gpio-keys since it will drop the Reset altfunc */ |
899 | 899 | ||
900 | init_gpio_reset(TOSA_GPIO_ON_RESET, 0); | 900 | init_gpio_reset(TOSA_GPIO_ON_RESET, 0, 0); |
901 | 901 | ||
902 | pm_power_off = tosa_poweroff; | 902 | pm_power_off = tosa_poweroff; |
903 | arm_pm_restart = tosa_restart; | 903 | arm_pm_restart = tosa_restart; |
diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index 945e0d237a1d..fec64678a63a 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types | |||
@@ -12,7 +12,7 @@ | |||
12 | # | 12 | # |
13 | # http://www.arm.linux.org.uk/developer/machines/?action=new | 13 | # http://www.arm.linux.org.uk/developer/machines/?action=new |
14 | # | 14 | # |
15 | # Last update: Mon Mar 23 20:09:01 2009 | 15 | # Last update: Fri May 29 10:14:20 2009 |
16 | # | 16 | # |
17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number | 17 | # machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number |
18 | # | 18 | # |
@@ -916,7 +916,7 @@ nxdb500 MACH_NXDB500 NXDB500 905 | |||
916 | apf9328 MACH_APF9328 APF9328 906 | 916 | apf9328 MACH_APF9328 APF9328 906 |
917 | omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907 | 917 | omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907 |
918 | omap_twip MACH_OMAP_TWIP OMAP_TWIP 908 | 918 | omap_twip MACH_OMAP_TWIP OMAP_TWIP 908 |
919 | palmt650 MACH_PALMT650 PALMT650 909 | 919 | treo650 MACH_TREO650 TREO650 909 |
920 | acumen MACH_ACUMEN ACUMEN 910 | 920 | acumen MACH_ACUMEN ACUMEN 910 |
921 | xp100 MACH_XP100 XP100 911 | 921 | xp100 MACH_XP100 XP100 911 |
922 | fs2410 MACH_FS2410 FS2410 912 | 922 | fs2410 MACH_FS2410 FS2410 912 |
@@ -1232,7 +1232,7 @@ ql202b MACH_QL202B QL202B 1226 | |||
1232 | vpac270 MACH_VPAC270 VPAC270 1227 | 1232 | vpac270 MACH_VPAC270 VPAC270 1227 |
1233 | rd129 MACH_RD129 RD129 1228 | 1233 | rd129 MACH_RD129 RD129 1228 |
1234 | htcwizard MACH_HTCWIZARD HTCWIZARD 1229 | 1234 | htcwizard MACH_HTCWIZARD HTCWIZARD 1229 |
1235 | xscale_treo680 MACH_XSCALE_TREO680 XSCALE_TREO680 1230 | 1235 | treo680 MACH_TREO680 TREO680 1230 |
1236 | tecon_tmezon MACH_TECON_TMEZON TECON_TMEZON 1231 | 1236 | tecon_tmezon MACH_TECON_TMEZON TECON_TMEZON 1231 |
1237 | zylonite MACH_ZYLONITE ZYLONITE 1233 | 1237 | zylonite MACH_ZYLONITE ZYLONITE 1233 |
1238 | gene1270 MACH_GENE1270 GENE1270 1234 | 1238 | gene1270 MACH_GENE1270 GENE1270 1234 |
@@ -1418,10 +1418,10 @@ looxc550 MACH_LOOXC550 LOOXC550 1417 | |||
1418 | cnty_titan MACH_CNTY_TITAN CNTY_TITAN 1418 | 1418 | cnty_titan MACH_CNTY_TITAN CNTY_TITAN 1418 |
1419 | app3xx MACH_APP3XX APP3XX 1419 | 1419 | app3xx MACH_APP3XX APP3XX 1419 |
1420 | sideoatsgrama MACH_SIDEOATSGRAMA SIDEOATSGRAMA 1420 | 1420 | sideoatsgrama MACH_SIDEOATSGRAMA SIDEOATSGRAMA 1420 |
1421 | palmtreo700p MACH_PALMTREO700P PALMTREO700P 1421 | 1421 | treo700p MACH_TREO700P TREO700P 1421 |
1422 | palmtreo700w MACH_PALMTREO700W PALMTREO700W 1422 | 1422 | treo700w MACH_TREO700W TREO700W 1422 |
1423 | palmtreo750 MACH_PALMTREO750 PALMTREO750 1423 | 1423 | treo750 MACH_TREO750 TREO750 1423 |
1424 | palmtreo755p MACH_PALMTREO755P PALMTREO755P 1424 | 1424 | treo755p MACH_TREO755P TREO755P 1424 |
1425 | ezreganut9200 MACH_EZREGANUT9200 EZREGANUT9200 1425 | 1425 | ezreganut9200 MACH_EZREGANUT9200 EZREGANUT9200 1425 |
1426 | sarge MACH_SARGE SARGE 1426 | 1426 | sarge MACH_SARGE SARGE 1426 |
1427 | a696 MACH_A696 A696 1427 | 1427 | a696 MACH_A696 A696 1427 |
@@ -1721,7 +1721,7 @@ sapphire MACH_SAPPHIRE SAPPHIRE 1729 | |||
1721 | csb637xo MACH_CSB637XO CSB637XO 1730 | 1721 | csb637xo MACH_CSB637XO CSB637XO 1730 |
1722 | evisiong MACH_EVISIONG EVISIONG 1731 | 1722 | evisiong MACH_EVISIONG EVISIONG 1731 |
1723 | stmp37xx MACH_STMP37XX STMP37XX 1732 | 1723 | stmp37xx MACH_STMP37XX STMP37XX 1732 |
1724 | stmp378x MACH_STMP38XX STMP38XX 1733 | 1724 | stmp378x MACH_STMP378X STMP378X 1733 |
1725 | tnt MACH_TNT TNT 1734 | 1725 | tnt MACH_TNT TNT 1734 |
1726 | tbxt MACH_TBXT TBXT 1735 | 1726 | tbxt MACH_TBXT TBXT 1735 |
1727 | playmate MACH_PLAYMATE PLAYMATE 1736 | 1727 | playmate MACH_PLAYMATE PLAYMATE 1736 |
@@ -1817,7 +1817,7 @@ smdkc100 MACH_SMDKC100 SMDKC100 1826 | |||
1817 | tavorevb MACH_TAVOREVB TAVOREVB 1827 | 1817 | tavorevb MACH_TAVOREVB TAVOREVB 1827 |
1818 | saar MACH_SAAR SAAR 1828 | 1818 | saar MACH_SAAR SAAR 1828 |
1819 | deister_eyecam MACH_DEISTER_EYECAM DEISTER_EYECAM 1829 | 1819 | deister_eyecam MACH_DEISTER_EYECAM DEISTER_EYECAM 1829 |
1820 | at91sam9m10ek MACH_AT91SAM9M10EK AT91SAM9M10EK 1830 | 1820 | at91sam9m10g45ek MACH_AT91SAM9M10G45EK AT91SAM9M10G45EK 1830 |
1821 | linkstation_produo MACH_LINKSTATION_PRODUO LINKSTATION_PRODUO 1831 | 1821 | linkstation_produo MACH_LINKSTATION_PRODUO LINKSTATION_PRODUO 1831 |
1822 | hit_b0 MACH_HIT_B0 HIT_B0 1832 | 1822 | hit_b0 MACH_HIT_B0 HIT_B0 1832 |
1823 | adx_rmu MACH_ADX_RMU ADX_RMU 1833 | 1823 | adx_rmu MACH_ADX_RMU ADX_RMU 1833 |
@@ -2132,3 +2132,116 @@ apollo MACH_APOLLO APOLLO 2141 | |||
2132 | at91cap9stk MACH_AT91CAP9STK AT91CAP9STK 2142 | 2132 | at91cap9stk MACH_AT91CAP9STK AT91CAP9STK 2142 |
2133 | spc300 MACH_SPC300 SPC300 2143 | 2133 | spc300 MACH_SPC300 SPC300 2143 |
2134 | eko MACH_EKO EKO 2144 | 2134 | eko MACH_EKO EKO 2144 |
2135 | ccw9m2443 MACH_CCW9M2443 CCW9M2443 2145 | ||
2136 | ccw9m2443js MACH_CCW9M2443JS CCW9M2443JS 2146 | ||
2137 | m2m_router_device MACH_M2M_ROUTER_DEVICE M2M_ROUTER_DEVICE 2147 | ||
2138 | str9104nas MACH_STAR9104NAS STAR9104NAS 2148 | ||
2139 | pca100 MACH_PCA100 PCA100 2149 | ||
2140 | z3_dm365_mod_01 MACH_Z3_DM365_MOD_01 Z3_DM365_MOD_01 2150 | ||
2141 | hipox MACH_HIPOX HIPOX 2151 | ||
2142 | omap3_piteds MACH_OMAP3_PITEDS OMAP3_PITEDS 2152 | ||
2143 | bm150r MACH_BM150R BM150R 2153 | ||
2144 | tbone MACH_TBONE TBONE 2154 | ||
2145 | merlin MACH_MERLIN MERLIN 2155 | ||
2146 | falcon MACH_FALCON FALCON 2156 | ||
2147 | davinci_da850_evm MACH_DAVINCI_DA850_EVM DAVINCI_DA850_EVM 2157 | ||
2148 | s5p6440 MACH_S5P6440 S5P6440 2158 | ||
2149 | at91sam9g10ek MACH_AT91SAM9G10EK AT91SAM9G10EK 2159 | ||
2150 | omap_4430sdp MACH_OMAP_4430SDP OMAP_4430SDP 2160 | ||
2151 | lpc313x MACH_LPC313X LPC313X 2161 | ||
2152 | magx_zn5 MACH_MAGX_ZN5 MAGX_ZN5 2162 | ||
2153 | magx_em30 MACH_MAGX_EM30 MAGX_EM30 2163 | ||
2154 | magx_ve66 MACH_MAGX_VE66 MAGX_VE66 2164 | ||
2155 | meesc MACH_MEESC MEESC 2165 | ||
2156 | otc570 MACH_OTC570 OTC570 2166 | ||
2157 | bcu2412 MACH_BCU2412 BCU2412 2167 | ||
2158 | beacon MACH_BEACON BEACON 2168 | ||
2159 | actia_tgw MACH_ACTIA_TGW ACTIA_TGW 2169 | ||
2160 | e4430 MACH_E4430 E4430 2170 | ||
2161 | ql300 MACH_QL300 QL300 2171 | ||
2162 | btmavb101 MACH_BTMAVB101 BTMAVB101 2172 | ||
2163 | btmawb101 MACH_BTMAWB101 BTMAWB101 2173 | ||
2164 | sq201 MACH_SQ201 SQ201 2174 | ||
2165 | quatro45xx MACH_QUATRO45XX QUATRO45XX 2175 | ||
2166 | openpad MACH_OPENPAD OPENPAD 2176 | ||
2167 | tx25 MACH_TX25 TX25 2177 | ||
2168 | omap3_torpedo MACH_OMAP3_TORPEDO OMAP3_TORPEDO 2178 | ||
2169 | htcraphael_k MACH_HTCRAPHAEL_K HTCRAPHAEL_K 2179 | ||
2170 | lal43 MACH_LAL43 LAL43 2181 | ||
2171 | htcraphael_cdma500 MACH_HTCRAPHAEL_CDMA500 HTCRAPHAEL_CDMA500 2182 | ||
2172 | anw6410 MACH_ANW6410 ANW6410 2183 | ||
2173 | htcprophet MACH_HTCPROPHET HTCPROPHET 2185 | ||
2174 | cfa_10022 MACH_CFA_10022 CFA_10022 2186 | ||
2175 | imx27_visstrim_m10 MACH_IMX27_VISSTRIM_M10 IMX27_VISSTRIM_M10 2187 | ||
2176 | px2imx27 MACH_PX2IMX27 PX2IMX27 2188 | ||
2177 | stm3210e_eval MACH_STM3210E_EVAL STM3210E_EVAL 2189 | ||
2178 | dvs10 MACH_DVS10 DVS10 2190 | ||
2179 | portuxg20 MACH_PORTUXG20 PORTUXG20 2191 | ||
2180 | arm_spv MACH_ARM_SPV ARM_SPV 2192 | ||
2181 | smdkc110 MACH_SMDKC110 SMDKC110 2193 | ||
2182 | cabespresso MACH_CABESPRESSO CABESPRESSO 2194 | ||
2183 | hmc800 MACH_HMC800 HMC800 2195 | ||
2184 | sholes MACH_SHOLES SHOLES 2196 | ||
2185 | btmxc31 MACH_BTMXC31 BTMXC31 2197 | ||
2186 | dt501 MACH_DT501 DT501 2198 | ||
2187 | ktx MACH_KTX KTX 2199 | ||
2188 | omap3517evm MACH_OMAP3517EVM OMAP3517EVM 2200 | ||
2189 | netspace_v2 MACH_NETSPACE_V2 NETSPACE_V2 2201 | ||
2190 | netspace_max_v2 MACH_NETSPACE_MAX_V2 NETSPACE_MAX_V2 2202 | ||
2191 | d2net_v2 MACH_D2NET_V2 D2NET_V2 2203 | ||
2192 | net2big_v2 MACH_NET2BIG_V2 NET2BIG_V2 2204 | ||
2193 | net4big_v2 MACH_NET4BIG_V2 NET4BIG_V2 2205 | ||
2194 | net5big_v2 MACH_NET5BIG_V2 NET5BIG_V2 2206 | ||
2195 | endb2443 MACH_ENDB2443 ENDB2443 2207 | ||
2196 | inetspace_v2 MACH_INETSPACE_V2 INETSPACE_V2 2208 | ||
2197 | tros MACH_TROS TROS 2209 | ||
2198 | pelco_homer MACH_PELCO_HOMER PELCO_HOMER 2210 | ||
2199 | ofsp8 MACH_OFSP8 OFSP8 2211 | ||
2200 | at91sam9g45ekes MACH_AT91SAM9G45EKES AT91SAM9G45EKES 2212 | ||
2201 | guf_cupid MACH_GUF_CUPID GUF_CUPID 2213 | ||
2202 | eab1r MACH_EAB1R EAB1R 2214 | ||
2203 | desirec MACH_DESIREC DESIREC 2215 | ||
2204 | cordoba MACH_CORDOBA CORDOBA 2216 | ||
2205 | irvine MACH_IRVINE IRVINE 2217 | ||
2206 | sff772 MACH_SFF772 SFF772 2218 | ||
2207 | pelco_milano MACH_PELCO_MILANO PELCO_MILANO 2219 | ||
2208 | pc7302 MACH_PC7302 PC7302 2220 | ||
2209 | bip6000 MACH_BIP6000 BIP6000 2221 | ||
2210 | silvermoon MACH_SILVERMOON SILVERMOON 2222 | ||
2211 | vc0830 MACH_VC0830 VC0830 2223 | ||
2212 | dt430 MACH_DT430 DT430 2224 | ||
2213 | ji42pf MACH_JI42PF JI42PF 2225 | ||
2214 | gnet_ksm MACH_GNET_KSM GNET_KSM 2226 | ||
2215 | gnet_sgm MACH_GNET_SGM GNET_SGM 2227 | ||
2216 | gnet_sgr MACH_GNET_SGR GNET_SGR 2228 | ||
2217 | omap3_icetekevm MACH_OMAP3_ICETEKEVM OMAP3_ICETEKEVM 2229 | ||
2218 | pnp MACH_PNP PNP 2230 | ||
2219 | ctera_2bay_k MACH_CTERA_2BAY_K CTERA_2BAY_K 2231 | ||
2220 | ctera_2bay_u MACH_CTERA_2BAY_U CTERA_2BAY_U 2232 | ||
2221 | sas_c MACH_SAS_C SAS_C 2233 | ||
2222 | vma2315 MACH_VMA2315 VMA2315 2234 | ||
2223 | vcs MACH_VCS VCS 2235 | ||
2224 | spear600 MACH_SPEAR600 SPEAR600 2236 | ||
2225 | spear300 MACH_SPEAR300 SPEAR300 2237 | ||
2226 | spear1300 MACH_SPEAR1300 SPEAR1300 2238 | ||
2227 | lilly1131 MACH_LILLY1131 LILLY1131 2239 | ||
2228 | arvoo_ax301 MACH_ARVOO_AX301 ARVOO_AX301 2240 | ||
2229 | mapphone MACH_MAPPHONE MAPPHONE 2241 | ||
2230 | legend MACH_LEGEND LEGEND 2242 | ||
2231 | salsa MACH_SALSA SALSA 2243 | ||
2232 | lounge MACH_LOUNGE LOUNGE 2244 | ||
2233 | vision MACH_VISION VISION 2245 | ||
2234 | vmb20 MACH_VMB20 VMB20 2246 | ||
2235 | hy2410 MACH_HY2410 HY2410 2247 | ||
2236 | hy9315 MACH_HY9315 HY9315 2248 | ||
2237 | bullwinkle MACH_BULLWINKLE BULLWINKLE 2249 | ||
2238 | arm_ultimator2 MACH_ARM_ULTIMATOR2 ARM_ULTIMATOR2 2250 | ||
2239 | vs_v210 MACH_VS_V210 VS_V210 2252 | ||
2240 | vs_v212 MACH_VS_V212 VS_V212 2253 | ||
2241 | hmt MACH_HMT HMT 2254 | ||
2242 | suen3 MACH_SUEN3 SUEN3 2255 | ||
2243 | vesper MACH_VESPER VESPER 2256 | ||
2244 | str9 MACH_STR9 STR9 2257 | ||
2245 | omap3_wl_ff MACH_OMAP3_WL_FF OMAP3_WL_FF 2258 | ||
2246 | simcom MACH_SIMCOM SIMCOM 2259 | ||
2247 | mcwebio MACH_MCWEBIO MCWEBIO 2260 | ||
diff --git a/arch/powerpc/configs/pmac32_defconfig b/arch/powerpc/configs/pmac32_defconfig index 5339bb44cce9..ea8870a34482 100644 --- a/arch/powerpc/configs/pmac32_defconfig +++ b/arch/powerpc/configs/pmac32_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.28-rc3 | 3 | # Linux kernel version: 2.6.30-rc7 |
4 | # Tue Nov 11 19:36:51 2008 | 4 | # Mon May 25 14:53:25 2009 |
5 | # | 5 | # |
6 | # CONFIG_PPC64 is not set | 6 | # CONFIG_PPC64 is not set |
7 | 7 | ||
@@ -14,6 +14,7 @@ CONFIG_6xx=y | |||
14 | # CONFIG_40x is not set | 14 | # CONFIG_40x is not set |
15 | # CONFIG_44x is not set | 15 | # CONFIG_44x is not set |
16 | # CONFIG_E200 is not set | 16 | # CONFIG_E200 is not set |
17 | CONFIG_PPC_BOOK3S=y | ||
17 | CONFIG_PPC_FPU=y | 18 | CONFIG_PPC_FPU=y |
18 | CONFIG_ALTIVEC=y | 19 | CONFIG_ALTIVEC=y |
19 | CONFIG_PPC_STD_MMU=y | 20 | CONFIG_PPC_STD_MMU=y |
@@ -43,7 +44,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y | |||
43 | CONFIG_PPC=y | 44 | CONFIG_PPC=y |
44 | CONFIG_EARLY_PRINTK=y | 45 | CONFIG_EARLY_PRINTK=y |
45 | CONFIG_GENERIC_NVRAM=y | 46 | CONFIG_GENERIC_NVRAM=y |
46 | CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y | 47 | CONFIG_SCHED_OMIT_FRAME_POINTER=y |
47 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y | 48 | CONFIG_ARCH_MAY_HAVE_PC_FDC=y |
48 | CONFIG_PPC_OF=y | 49 | CONFIG_PPC_OF=y |
49 | CONFIG_OF=y | 50 | CONFIG_OF=y |
@@ -52,12 +53,14 @@ CONFIG_OF=y | |||
52 | CONFIG_AUDIT_ARCH=y | 53 | CONFIG_AUDIT_ARCH=y |
53 | CONFIG_GENERIC_BUG=y | 54 | CONFIG_GENERIC_BUG=y |
54 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y | 55 | CONFIG_SYS_SUPPORTS_APM_EMULATION=y |
56 | CONFIG_DTC=y | ||
55 | # CONFIG_DEFAULT_UIMAGE is not set | 57 | # CONFIG_DEFAULT_UIMAGE is not set |
56 | CONFIG_HIBERNATE_32=y | 58 | CONFIG_HIBERNATE_32=y |
57 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y | 59 | CONFIG_ARCH_HIBERNATION_POSSIBLE=y |
58 | CONFIG_ARCH_SUSPEND_POSSIBLE=y | 60 | CONFIG_ARCH_SUSPEND_POSSIBLE=y |
59 | # CONFIG_PPC_DCR_NATIVE is not set | 61 | # CONFIG_PPC_DCR_NATIVE is not set |
60 | # CONFIG_PPC_DCR_MMIO is not set | 62 | # CONFIG_PPC_DCR_MMIO is not set |
63 | CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y | ||
61 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" | 64 | CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" |
62 | 65 | ||
63 | # | 66 | # |
@@ -72,14 +75,24 @@ CONFIG_SWAP=y | |||
72 | CONFIG_SYSVIPC=y | 75 | CONFIG_SYSVIPC=y |
73 | CONFIG_SYSVIPC_SYSCTL=y | 76 | CONFIG_SYSVIPC_SYSCTL=y |
74 | CONFIG_POSIX_MQUEUE=y | 77 | CONFIG_POSIX_MQUEUE=y |
78 | CONFIG_POSIX_MQUEUE_SYSCTL=y | ||
75 | # CONFIG_BSD_PROCESS_ACCT is not set | 79 | # CONFIG_BSD_PROCESS_ACCT is not set |
76 | # CONFIG_TASKSTATS is not set | 80 | # CONFIG_TASKSTATS is not set |
77 | # CONFIG_AUDIT is not set | 81 | # CONFIG_AUDIT is not set |
82 | |||
83 | # | ||
84 | # RCU Subsystem | ||
85 | # | ||
86 | CONFIG_CLASSIC_RCU=y | ||
87 | # CONFIG_TREE_RCU is not set | ||
88 | # CONFIG_PREEMPT_RCU is not set | ||
89 | # CONFIG_TREE_RCU_TRACE is not set | ||
90 | # CONFIG_PREEMPT_RCU_TRACE is not set | ||
78 | CONFIG_IKCONFIG=y | 91 | CONFIG_IKCONFIG=y |
79 | CONFIG_IKCONFIG_PROC=y | 92 | CONFIG_IKCONFIG_PROC=y |
80 | CONFIG_LOG_BUF_SHIFT=14 | 93 | CONFIG_LOG_BUF_SHIFT=14 |
81 | # CONFIG_CGROUPS is not set | ||
82 | # CONFIG_GROUP_SCHED is not set | 94 | # CONFIG_GROUP_SCHED is not set |
95 | # CONFIG_CGROUPS is not set | ||
83 | CONFIG_SYSFS_DEPRECATED=y | 96 | CONFIG_SYSFS_DEPRECATED=y |
84 | CONFIG_SYSFS_DEPRECATED_V2=y | 97 | CONFIG_SYSFS_DEPRECATED_V2=y |
85 | # CONFIG_RELAY is not set | 98 | # CONFIG_RELAY is not set |
@@ -88,23 +101,27 @@ CONFIG_NAMESPACES=y | |||
88 | # CONFIG_IPC_NS is not set | 101 | # CONFIG_IPC_NS is not set |
89 | # CONFIG_USER_NS is not set | 102 | # CONFIG_USER_NS is not set |
90 | # CONFIG_PID_NS is not set | 103 | # CONFIG_PID_NS is not set |
104 | # CONFIG_NET_NS is not set | ||
91 | CONFIG_BLK_DEV_INITRD=y | 105 | CONFIG_BLK_DEV_INITRD=y |
92 | CONFIG_INITRAMFS_SOURCE="" | 106 | CONFIG_INITRAMFS_SOURCE="" |
107 | CONFIG_RD_GZIP=y | ||
108 | CONFIG_RD_BZIP2=y | ||
109 | CONFIG_RD_LZMA=y | ||
93 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | 110 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set |
94 | CONFIG_SYSCTL=y | 111 | CONFIG_SYSCTL=y |
112 | CONFIG_ANON_INODES=y | ||
95 | # CONFIG_EMBEDDED is not set | 113 | # CONFIG_EMBEDDED is not set |
96 | CONFIG_SYSCTL_SYSCALL=y | 114 | CONFIG_SYSCTL_SYSCALL=y |
97 | CONFIG_KALLSYMS=y | 115 | CONFIG_KALLSYMS=y |
98 | CONFIG_KALLSYMS_ALL=y | 116 | CONFIG_KALLSYMS_ALL=y |
99 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | 117 | # CONFIG_KALLSYMS_EXTRA_PASS is not set |
118 | # CONFIG_STRIP_ASM_SYMS is not set | ||
100 | CONFIG_HOTPLUG=y | 119 | CONFIG_HOTPLUG=y |
101 | CONFIG_PRINTK=y | 120 | CONFIG_PRINTK=y |
102 | CONFIG_BUG=y | 121 | CONFIG_BUG=y |
103 | CONFIG_ELF_CORE=y | 122 | CONFIG_ELF_CORE=y |
104 | # CONFIG_COMPAT_BRK is not set | ||
105 | CONFIG_BASE_FULL=y | 123 | CONFIG_BASE_FULL=y |
106 | CONFIG_FUTEX=y | 124 | CONFIG_FUTEX=y |
107 | CONFIG_ANON_INODES=y | ||
108 | CONFIG_EPOLL=y | 125 | CONFIG_EPOLL=y |
109 | CONFIG_SIGNALFD=y | 126 | CONFIG_SIGNALFD=y |
110 | CONFIG_TIMERFD=y | 127 | CONFIG_TIMERFD=y |
@@ -114,10 +131,12 @@ CONFIG_AIO=y | |||
114 | CONFIG_VM_EVENT_COUNTERS=y | 131 | CONFIG_VM_EVENT_COUNTERS=y |
115 | CONFIG_PCI_QUIRKS=y | 132 | CONFIG_PCI_QUIRKS=y |
116 | CONFIG_SLUB_DEBUG=y | 133 | CONFIG_SLUB_DEBUG=y |
134 | # CONFIG_COMPAT_BRK is not set | ||
117 | # CONFIG_SLAB is not set | 135 | # CONFIG_SLAB is not set |
118 | CONFIG_SLUB=y | 136 | CONFIG_SLUB=y |
119 | # CONFIG_SLOB is not set | 137 | # CONFIG_SLOB is not set |
120 | CONFIG_PROFILING=y | 138 | CONFIG_PROFILING=y |
139 | CONFIG_TRACEPOINTS=y | ||
121 | # CONFIG_MARKERS is not set | 140 | # CONFIG_MARKERS is not set |
122 | CONFIG_OPROFILE=y | 141 | CONFIG_OPROFILE=y |
123 | CONFIG_HAVE_OPROFILE=y | 142 | CONFIG_HAVE_OPROFILE=y |
@@ -127,10 +146,10 @@ CONFIG_HAVE_IOREMAP_PROT=y | |||
127 | CONFIG_HAVE_KPROBES=y | 146 | CONFIG_HAVE_KPROBES=y |
128 | CONFIG_HAVE_KRETPROBES=y | 147 | CONFIG_HAVE_KRETPROBES=y |
129 | CONFIG_HAVE_ARCH_TRACEHOOK=y | 148 | CONFIG_HAVE_ARCH_TRACEHOOK=y |
149 | # CONFIG_SLOW_WORK is not set | ||
130 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set | 150 | # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set |
131 | CONFIG_SLABINFO=y | 151 | CONFIG_SLABINFO=y |
132 | CONFIG_RT_MUTEXES=y | 152 | CONFIG_RT_MUTEXES=y |
133 | # CONFIG_TINY_SHMEM is not set | ||
134 | CONFIG_BASE_SMALL=0 | 153 | CONFIG_BASE_SMALL=0 |
135 | CONFIG_MODULES=y | 154 | CONFIG_MODULES=y |
136 | # CONFIG_MODULE_FORCE_LOAD is not set | 155 | # CONFIG_MODULE_FORCE_LOAD is not set |
@@ -138,11 +157,8 @@ CONFIG_MODULE_UNLOAD=y | |||
138 | CONFIG_MODULE_FORCE_UNLOAD=y | 157 | CONFIG_MODULE_FORCE_UNLOAD=y |
139 | # CONFIG_MODVERSIONS is not set | 158 | # CONFIG_MODVERSIONS is not set |
140 | # CONFIG_MODULE_SRCVERSION_ALL is not set | 159 | # CONFIG_MODULE_SRCVERSION_ALL is not set |
141 | CONFIG_KMOD=y | ||
142 | CONFIG_BLOCK=y | 160 | CONFIG_BLOCK=y |
143 | CONFIG_LBD=y | 161 | CONFIG_LBD=y |
144 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
145 | CONFIG_LSF=y | ||
146 | CONFIG_BLK_DEV_BSG=y | 162 | CONFIG_BLK_DEV_BSG=y |
147 | # CONFIG_BLK_DEV_INTEGRITY is not set | 163 | # CONFIG_BLK_DEV_INTEGRITY is not set |
148 | 164 | ||
@@ -158,14 +174,11 @@ CONFIG_DEFAULT_AS=y | |||
158 | # CONFIG_DEFAULT_CFQ is not set | 174 | # CONFIG_DEFAULT_CFQ is not set |
159 | # CONFIG_DEFAULT_NOOP is not set | 175 | # CONFIG_DEFAULT_NOOP is not set |
160 | CONFIG_DEFAULT_IOSCHED="anticipatory" | 176 | CONFIG_DEFAULT_IOSCHED="anticipatory" |
161 | CONFIG_CLASSIC_RCU=y | ||
162 | CONFIG_FREEZER=y | 177 | CONFIG_FREEZER=y |
163 | 178 | ||
164 | # | 179 | # |
165 | # Platform support | 180 | # Platform support |
166 | # | 181 | # |
167 | CONFIG_PPC_MULTIPLATFORM=y | ||
168 | CONFIG_CLASSIC32=y | ||
169 | # CONFIG_PPC_CHRP is not set | 182 | # CONFIG_PPC_CHRP is not set |
170 | # CONFIG_MPC5121_ADS is not set | 183 | # CONFIG_MPC5121_ADS is not set |
171 | # CONFIG_MPC5121_GENERIC is not set | 184 | # CONFIG_MPC5121_GENERIC is not set |
@@ -178,7 +191,9 @@ CONFIG_PPC_PMAC=y | |||
178 | # CONFIG_PPC_83xx is not set | 191 | # CONFIG_PPC_83xx is not set |
179 | # CONFIG_PPC_86xx is not set | 192 | # CONFIG_PPC_86xx is not set |
180 | # CONFIG_EMBEDDED6xx is not set | 193 | # CONFIG_EMBEDDED6xx is not set |
194 | # CONFIG_AMIGAONE is not set | ||
181 | CONFIG_PPC_NATIVE=y | 195 | CONFIG_PPC_NATIVE=y |
196 | CONFIG_PPC_OF_BOOT_TRAMPOLINE=y | ||
182 | # CONFIG_IPIC is not set | 197 | # CONFIG_IPIC is not set |
183 | CONFIG_MPIC=y | 198 | CONFIG_MPIC=y |
184 | # CONFIG_MPIC_WEIRD is not set | 199 | # CONFIG_MPIC_WEIRD is not set |
@@ -212,11 +227,12 @@ CONFIG_CPU_FREQ_PMAC=y | |||
212 | CONFIG_PPC601_SYNC_FIX=y | 227 | CONFIG_PPC601_SYNC_FIX=y |
213 | # CONFIG_TAU is not set | 228 | # CONFIG_TAU is not set |
214 | # CONFIG_FSL_ULI1575 is not set | 229 | # CONFIG_FSL_ULI1575 is not set |
230 | # CONFIG_SIMPLE_GPIO is not set | ||
215 | 231 | ||
216 | # | 232 | # |
217 | # Kernel options | 233 | # Kernel options |
218 | # | 234 | # |
219 | # CONFIG_HIGHMEM is not set | 235 | CONFIG_HIGHMEM=y |
220 | CONFIG_TICK_ONESHOT=y | 236 | CONFIG_TICK_ONESHOT=y |
221 | CONFIG_NO_HZ=y | 237 | CONFIG_NO_HZ=y |
222 | CONFIG_HIGH_RES_TIMERS=y | 238 | CONFIG_HIGH_RES_TIMERS=y |
@@ -239,6 +255,7 @@ CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y | |||
239 | CONFIG_ARCH_HAS_WALK_MEMORY=y | 255 | CONFIG_ARCH_HAS_WALK_MEMORY=y |
240 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y | 256 | CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y |
241 | # CONFIG_KEXEC is not set | 257 | # CONFIG_KEXEC is not set |
258 | # CONFIG_CRASH_DUMP is not set | ||
242 | CONFIG_ARCH_FLATMEM_ENABLE=y | 259 | CONFIG_ARCH_FLATMEM_ENABLE=y |
243 | CONFIG_ARCH_POPULATES_NODE_MAP=y | 260 | CONFIG_ARCH_POPULATES_NODE_MAP=y |
244 | CONFIG_SELECT_MEMORY_MODEL=y | 261 | CONFIG_SELECT_MEMORY_MODEL=y |
@@ -250,12 +267,17 @@ CONFIG_FLAT_NODE_MEM_MAP=y | |||
250 | CONFIG_PAGEFLAGS_EXTENDED=y | 267 | CONFIG_PAGEFLAGS_EXTENDED=y |
251 | CONFIG_SPLIT_PTLOCK_CPUS=4 | 268 | CONFIG_SPLIT_PTLOCK_CPUS=4 |
252 | # CONFIG_MIGRATION is not set | 269 | # CONFIG_MIGRATION is not set |
253 | # CONFIG_RESOURCES_64BIT is not set | ||
254 | # CONFIG_PHYS_ADDR_T_64BIT is not set | 270 | # CONFIG_PHYS_ADDR_T_64BIT is not set |
255 | CONFIG_ZONE_DMA_FLAG=1 | 271 | CONFIG_ZONE_DMA_FLAG=1 |
256 | CONFIG_BOUNCE=y | 272 | CONFIG_BOUNCE=y |
257 | CONFIG_VIRT_TO_BUS=y | 273 | CONFIG_VIRT_TO_BUS=y |
258 | CONFIG_UNEVICTABLE_LRU=y | 274 | CONFIG_UNEVICTABLE_LRU=y |
275 | CONFIG_HAVE_MLOCK=y | ||
276 | CONFIG_HAVE_MLOCKED_PAGE_BIT=y | ||
277 | CONFIG_PPC_4K_PAGES=y | ||
278 | # CONFIG_PPC_16K_PAGES is not set | ||
279 | # CONFIG_PPC_64K_PAGES is not set | ||
280 | # CONFIG_PPC_256K_PAGES is not set | ||
259 | CONFIG_FORCE_MAX_ZONEORDER=11 | 281 | CONFIG_FORCE_MAX_ZONEORDER=11 |
260 | CONFIG_PROC_DEVICETREE=y | 282 | CONFIG_PROC_DEVICETREE=y |
261 | # CONFIG_CMDLINE_BOOL is not set | 283 | # CONFIG_CMDLINE_BOOL is not set |
@@ -288,6 +310,8 @@ CONFIG_ARCH_SUPPORTS_MSI=y | |||
288 | # CONFIG_PCI_MSI is not set | 310 | # CONFIG_PCI_MSI is not set |
289 | # CONFIG_PCI_LEGACY is not set | 311 | # CONFIG_PCI_LEGACY is not set |
290 | # CONFIG_PCI_DEBUG is not set | 312 | # CONFIG_PCI_DEBUG is not set |
313 | # CONFIG_PCI_STUB is not set | ||
314 | # CONFIG_PCI_IOV is not set | ||
291 | CONFIG_PCCARD=m | 315 | CONFIG_PCCARD=m |
292 | # CONFIG_PCMCIA_DEBUG is not set | 316 | # CONFIG_PCMCIA_DEBUG is not set |
293 | CONFIG_PCMCIA=m | 317 | CONFIG_PCMCIA=m |
@@ -397,6 +421,8 @@ CONFIG_NETFILTER_XTABLES=m | |||
397 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m | 421 | CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m |
398 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set | 422 | # CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set |
399 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set | 423 | # CONFIG_NETFILTER_XT_TARGET_DSCP is not set |
424 | CONFIG_NETFILTER_XT_TARGET_HL=m | ||
425 | # CONFIG_NETFILTER_XT_TARGET_LED is not set | ||
400 | CONFIG_NETFILTER_XT_TARGET_MARK=m | 426 | CONFIG_NETFILTER_XT_TARGET_MARK=m |
401 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m | 427 | CONFIG_NETFILTER_XT_TARGET_NFLOG=m |
402 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m | 428 | CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m |
@@ -405,6 +431,7 @@ CONFIG_NETFILTER_XT_TARGET_RATEEST=m | |||
405 | CONFIG_NETFILTER_XT_TARGET_TRACE=m | 431 | CONFIG_NETFILTER_XT_TARGET_TRACE=m |
406 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m | 432 | CONFIG_NETFILTER_XT_TARGET_TCPMSS=m |
407 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m | 433 | CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m |
434 | # CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set | ||
408 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m | 435 | CONFIG_NETFILTER_XT_MATCH_COMMENT=m |
409 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set | 436 | # CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set |
410 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m | 437 | CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m |
@@ -415,6 +442,7 @@ CONFIG_NETFILTER_XT_MATCH_DSCP=m | |||
415 | CONFIG_NETFILTER_XT_MATCH_ESP=m | 442 | CONFIG_NETFILTER_XT_MATCH_ESP=m |
416 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set | 443 | # CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set |
417 | CONFIG_NETFILTER_XT_MATCH_HELPER=m | 444 | CONFIG_NETFILTER_XT_MATCH_HELPER=m |
445 | CONFIG_NETFILTER_XT_MATCH_HL=m | ||
418 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m | 446 | CONFIG_NETFILTER_XT_MATCH_IPRANGE=m |
419 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m | 447 | CONFIG_NETFILTER_XT_MATCH_LENGTH=m |
420 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m | 448 | CONFIG_NETFILTER_XT_MATCH_LIMIT=m |
@@ -478,17 +506,15 @@ CONFIG_IP_NF_ARPFILTER=m | |||
478 | CONFIG_IP_NF_ARP_MANGLE=m | 506 | CONFIG_IP_NF_ARP_MANGLE=m |
479 | CONFIG_IP_DCCP=m | 507 | CONFIG_IP_DCCP=m |
480 | CONFIG_INET_DCCP_DIAG=m | 508 | CONFIG_INET_DCCP_DIAG=m |
481 | CONFIG_IP_DCCP_ACKVEC=y | ||
482 | 509 | ||
483 | # | 510 | # |
484 | # DCCP CCIDs Configuration (EXPERIMENTAL) | 511 | # DCCP CCIDs Configuration (EXPERIMENTAL) |
485 | # | 512 | # |
486 | CONFIG_IP_DCCP_CCID2=m | ||
487 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set | 513 | # CONFIG_IP_DCCP_CCID2_DEBUG is not set |
488 | CONFIG_IP_DCCP_CCID3=m | 514 | CONFIG_IP_DCCP_CCID3=y |
489 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set | 515 | # CONFIG_IP_DCCP_CCID3_DEBUG is not set |
490 | CONFIG_IP_DCCP_CCID3_RTO=100 | 516 | CONFIG_IP_DCCP_CCID3_RTO=100 |
491 | CONFIG_IP_DCCP_TFRC_LIB=m | 517 | CONFIG_IP_DCCP_TFRC_LIB=y |
492 | 518 | ||
493 | # | 519 | # |
494 | # DCCP Kernel Hacking | 520 | # DCCP Kernel Hacking |
@@ -508,13 +534,16 @@ CONFIG_IP_DCCP_TFRC_LIB=m | |||
508 | # CONFIG_LAPB is not set | 534 | # CONFIG_LAPB is not set |
509 | # CONFIG_ECONET is not set | 535 | # CONFIG_ECONET is not set |
510 | # CONFIG_WAN_ROUTER is not set | 536 | # CONFIG_WAN_ROUTER is not set |
537 | # CONFIG_PHONET is not set | ||
511 | # CONFIG_NET_SCHED is not set | 538 | # CONFIG_NET_SCHED is not set |
512 | CONFIG_NET_CLS_ROUTE=y | 539 | CONFIG_NET_CLS_ROUTE=y |
540 | # CONFIG_DCB is not set | ||
513 | 541 | ||
514 | # | 542 | # |
515 | # Network testing | 543 | # Network testing |
516 | # | 544 | # |
517 | # CONFIG_NET_PKTGEN is not set | 545 | # CONFIG_NET_PKTGEN is not set |
546 | # CONFIG_NET_DROP_MONITOR is not set | ||
518 | # CONFIG_HAMRADIO is not set | 547 | # CONFIG_HAMRADIO is not set |
519 | # CONFIG_CAN is not set | 548 | # CONFIG_CAN is not set |
520 | CONFIG_IRDA=m | 549 | CONFIG_IRDA=m |
@@ -577,8 +606,6 @@ CONFIG_BT_HIDP=m | |||
577 | # | 606 | # |
578 | # Bluetooth device drivers | 607 | # Bluetooth device drivers |
579 | # | 608 | # |
580 | CONFIG_BT_HCIUSB=m | ||
581 | # CONFIG_BT_HCIUSB_SCO is not set | ||
582 | # CONFIG_BT_HCIBTUSB is not set | 609 | # CONFIG_BT_HCIBTUSB is not set |
583 | # CONFIG_BT_HCIUART is not set | 610 | # CONFIG_BT_HCIUART is not set |
584 | CONFIG_BT_HCIBCM203X=m | 611 | CONFIG_BT_HCIBCM203X=m |
@@ -590,31 +617,27 @@ CONFIG_BT_HCIBFUSB=m | |||
590 | # CONFIG_BT_HCIBTUART is not set | 617 | # CONFIG_BT_HCIBTUART is not set |
591 | # CONFIG_BT_HCIVHCI is not set | 618 | # CONFIG_BT_HCIVHCI is not set |
592 | # CONFIG_AF_RXRPC is not set | 619 | # CONFIG_AF_RXRPC is not set |
593 | # CONFIG_PHONET is not set | ||
594 | CONFIG_WIRELESS=y | 620 | CONFIG_WIRELESS=y |
595 | CONFIG_CFG80211=m | 621 | CONFIG_CFG80211=m |
596 | CONFIG_NL80211=y | 622 | # CONFIG_CFG80211_REG_DEBUG is not set |
597 | CONFIG_WIRELESS_OLD_REGULATORY=y | 623 | CONFIG_WIRELESS_OLD_REGULATORY=y |
598 | CONFIG_WIRELESS_EXT=y | 624 | CONFIG_WIRELESS_EXT=y |
599 | CONFIG_WIRELESS_EXT_SYSFS=y | 625 | CONFIG_WIRELESS_EXT_SYSFS=y |
626 | # CONFIG_LIB80211 is not set | ||
600 | CONFIG_MAC80211=m | 627 | CONFIG_MAC80211=m |
601 | 628 | ||
602 | # | 629 | # |
603 | # Rate control algorithm selection | 630 | # Rate control algorithm selection |
604 | # | 631 | # |
605 | CONFIG_MAC80211_RC_PID=y | 632 | CONFIG_MAC80211_RC_MINSTREL=y |
606 | # CONFIG_MAC80211_RC_MINSTREL is not set | 633 | # CONFIG_MAC80211_RC_DEFAULT_PID is not set |
607 | CONFIG_MAC80211_RC_DEFAULT_PID=y | 634 | CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y |
608 | # CONFIG_MAC80211_RC_DEFAULT_MINSTREL is not set | 635 | CONFIG_MAC80211_RC_DEFAULT="minstrel" |
609 | CONFIG_MAC80211_RC_DEFAULT="pid" | ||
610 | # CONFIG_MAC80211_MESH is not set | 636 | # CONFIG_MAC80211_MESH is not set |
611 | CONFIG_MAC80211_LEDS=y | 637 | CONFIG_MAC80211_LEDS=y |
638 | # CONFIG_MAC80211_DEBUGFS is not set | ||
612 | # CONFIG_MAC80211_DEBUG_MENU is not set | 639 | # CONFIG_MAC80211_DEBUG_MENU is not set |
613 | CONFIG_IEEE80211=m | 640 | # CONFIG_WIMAX is not set |
614 | # CONFIG_IEEE80211_DEBUG is not set | ||
615 | CONFIG_IEEE80211_CRYPT_WEP=m | ||
616 | CONFIG_IEEE80211_CRYPT_CCMP=m | ||
617 | CONFIG_IEEE80211_CRYPT_TKIP=m | ||
618 | # CONFIG_RFKILL is not set | 641 | # CONFIG_RFKILL is not set |
619 | # CONFIG_NET_9P is not set | 642 | # CONFIG_NET_9P is not set |
620 | 643 | ||
@@ -662,17 +685,27 @@ CONFIG_BLK_DEV_RAM_SIZE=4096 | |||
662 | # CONFIG_BLK_DEV_HD is not set | 685 | # CONFIG_BLK_DEV_HD is not set |
663 | CONFIG_MISC_DEVICES=y | 686 | CONFIG_MISC_DEVICES=y |
664 | # CONFIG_PHANTOM is not set | 687 | # CONFIG_PHANTOM is not set |
665 | # CONFIG_EEPROM_93CX6 is not set | ||
666 | # CONFIG_SGI_IOC4 is not set | 688 | # CONFIG_SGI_IOC4 is not set |
667 | # CONFIG_TIFM_CORE is not set | 689 | # CONFIG_TIFM_CORE is not set |
690 | # CONFIG_ICS932S401 is not set | ||
668 | # CONFIG_ENCLOSURE_SERVICES is not set | 691 | # CONFIG_ENCLOSURE_SERVICES is not set |
669 | # CONFIG_HP_ILO is not set | 692 | # CONFIG_HP_ILO is not set |
693 | # CONFIG_ISL29003 is not set | ||
694 | # CONFIG_C2PORT is not set | ||
695 | |||
696 | # | ||
697 | # EEPROM support | ||
698 | # | ||
699 | # CONFIG_EEPROM_AT24 is not set | ||
700 | # CONFIG_EEPROM_LEGACY is not set | ||
701 | # CONFIG_EEPROM_93CX6 is not set | ||
670 | CONFIG_HAVE_IDE=y | 702 | CONFIG_HAVE_IDE=y |
671 | CONFIG_IDE=y | 703 | CONFIG_IDE=y |
672 | 704 | ||
673 | # | 705 | # |
674 | # Please see Documentation/ide/ide.txt for help/info on IDE drives | 706 | # Please see Documentation/ide/ide.txt for help/info on IDE drives |
675 | # | 707 | # |
708 | CONFIG_IDE_XFER_MODE=y | ||
676 | CONFIG_IDE_TIMINGS=y | 709 | CONFIG_IDE_TIMINGS=y |
677 | CONFIG_IDE_ATAPI=y | 710 | CONFIG_IDE_ATAPI=y |
678 | # CONFIG_BLK_DEV_IDE_SATA is not set | 711 | # CONFIG_BLK_DEV_IDE_SATA is not set |
@@ -684,7 +717,6 @@ CONFIG_BLK_DEV_IDECS=m | |||
684 | CONFIG_BLK_DEV_IDECD=y | 717 | CONFIG_BLK_DEV_IDECD=y |
685 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y | 718 | CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y |
686 | # CONFIG_BLK_DEV_IDETAPE is not set | 719 | # CONFIG_BLK_DEV_IDETAPE is not set |
687 | CONFIG_BLK_DEV_IDESCSI=y | ||
688 | # CONFIG_IDE_TASK_IOCTL is not set | 720 | # CONFIG_IDE_TASK_IOCTL is not set |
689 | CONFIG_IDE_PROC_FS=y | 721 | CONFIG_IDE_PROC_FS=y |
690 | 722 | ||
@@ -714,6 +746,7 @@ CONFIG_BLK_DEV_IDEDMA_PCI=y | |||
714 | # CONFIG_BLK_DEV_JMICRON is not set | 746 | # CONFIG_BLK_DEV_JMICRON is not set |
715 | # CONFIG_BLK_DEV_SC1200 is not set | 747 | # CONFIG_BLK_DEV_SC1200 is not set |
716 | # CONFIG_BLK_DEV_PIIX is not set | 748 | # CONFIG_BLK_DEV_PIIX is not set |
749 | # CONFIG_BLK_DEV_IT8172 is not set | ||
717 | # CONFIG_BLK_DEV_IT8213 is not set | 750 | # CONFIG_BLK_DEV_IT8213 is not set |
718 | # CONFIG_BLK_DEV_IT821X is not set | 751 | # CONFIG_BLK_DEV_IT821X is not set |
719 | # CONFIG_BLK_DEV_NS87415 is not set | 752 | # CONFIG_BLK_DEV_NS87415 is not set |
@@ -728,7 +761,6 @@ CONFIG_BLK_DEV_SL82C105=y | |||
728 | # CONFIG_BLK_DEV_TC86C001 is not set | 761 | # CONFIG_BLK_DEV_TC86C001 is not set |
729 | CONFIG_BLK_DEV_IDE_PMAC=y | 762 | CONFIG_BLK_DEV_IDE_PMAC=y |
730 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | 763 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y |
731 | CONFIG_BLK_DEV_IDEDMA_PMAC=y | ||
732 | CONFIG_BLK_DEV_IDEDMA=y | 764 | CONFIG_BLK_DEV_IDEDMA=y |
733 | 765 | ||
734 | # | 766 | # |
@@ -772,6 +804,7 @@ CONFIG_SCSI_FC_ATTRS=y | |||
772 | # CONFIG_SCSI_SRP_ATTRS is not set | 804 | # CONFIG_SCSI_SRP_ATTRS is not set |
773 | CONFIG_SCSI_LOWLEVEL=y | 805 | CONFIG_SCSI_LOWLEVEL=y |
774 | # CONFIG_ISCSI_TCP is not set | 806 | # CONFIG_ISCSI_TCP is not set |
807 | # CONFIG_SCSI_CXGB3_ISCSI is not set | ||
775 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | 808 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set |
776 | # CONFIG_SCSI_3W_9XXX is not set | 809 | # CONFIG_SCSI_3W_9XXX is not set |
777 | # CONFIG_SCSI_ACARD is not set | 810 | # CONFIG_SCSI_ACARD is not set |
@@ -791,8 +824,12 @@ CONFIG_SCSI_AIC7XXX_OLD=m | |||
791 | # CONFIG_MEGARAID_NEWGEN is not set | 824 | # CONFIG_MEGARAID_NEWGEN is not set |
792 | # CONFIG_MEGARAID_LEGACY is not set | 825 | # CONFIG_MEGARAID_LEGACY is not set |
793 | # CONFIG_MEGARAID_SAS is not set | 826 | # CONFIG_MEGARAID_SAS is not set |
827 | # CONFIG_SCSI_MPT2SAS is not set | ||
794 | # CONFIG_SCSI_HPTIOP is not set | 828 | # CONFIG_SCSI_HPTIOP is not set |
795 | # CONFIG_SCSI_BUSLOGIC is not set | 829 | # CONFIG_SCSI_BUSLOGIC is not set |
830 | # CONFIG_LIBFC is not set | ||
831 | # CONFIG_LIBFCOE is not set | ||
832 | # CONFIG_FCOE is not set | ||
796 | # CONFIG_SCSI_DMX3191D is not set | 833 | # CONFIG_SCSI_DMX3191D is not set |
797 | # CONFIG_SCSI_EATA is not set | 834 | # CONFIG_SCSI_EATA is not set |
798 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | 835 | # CONFIG_SCSI_FUTURE_DOMAIN is not set |
@@ -822,6 +859,7 @@ CONFIG_SCSI_MAC53C94=y | |||
822 | # CONFIG_SCSI_SRP is not set | 859 | # CONFIG_SCSI_SRP is not set |
823 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set | 860 | # CONFIG_SCSI_LOWLEVEL_PCMCIA is not set |
824 | # CONFIG_SCSI_DH is not set | 861 | # CONFIG_SCSI_DH is not set |
862 | # CONFIG_SCSI_OSD_INITIATOR is not set | ||
825 | # CONFIG_ATA is not set | 863 | # CONFIG_ATA is not set |
826 | CONFIG_MD=y | 864 | CONFIG_MD=y |
827 | CONFIG_BLK_DEV_MD=m | 865 | CONFIG_BLK_DEV_MD=m |
@@ -881,6 +919,7 @@ CONFIG_THERM_ADT746X=m | |||
881 | # CONFIG_ANSLCD is not set | 919 | # CONFIG_ANSLCD is not set |
882 | CONFIG_PMAC_RACKMETER=m | 920 | CONFIG_PMAC_RACKMETER=m |
883 | CONFIG_NETDEVICES=y | 921 | CONFIG_NETDEVICES=y |
922 | CONFIG_COMPAT_NET_DEV_OPS=y | ||
884 | CONFIG_DUMMY=m | 923 | CONFIG_DUMMY=m |
885 | # CONFIG_BONDING is not set | 924 | # CONFIG_BONDING is not set |
886 | # CONFIG_MACVLAN is not set | 925 | # CONFIG_MACVLAN is not set |
@@ -898,6 +937,8 @@ CONFIG_BMAC=y | |||
898 | CONFIG_SUNGEM=y | 937 | CONFIG_SUNGEM=y |
899 | # CONFIG_CASSINI is not set | 938 | # CONFIG_CASSINI is not set |
900 | # CONFIG_NET_VENDOR_3COM is not set | 939 | # CONFIG_NET_VENDOR_3COM is not set |
940 | # CONFIG_ETHOC is not set | ||
941 | # CONFIG_DNET is not set | ||
901 | # CONFIG_NET_TULIP is not set | 942 | # CONFIG_NET_TULIP is not set |
902 | # CONFIG_HP100 is not set | 943 | # CONFIG_HP100 is not set |
903 | # CONFIG_IBM_NEW_EMAC_ZMII is not set | 944 | # CONFIG_IBM_NEW_EMAC_ZMII is not set |
@@ -913,7 +954,6 @@ CONFIG_PCNET32=y | |||
913 | # CONFIG_ADAPTEC_STARFIRE is not set | 954 | # CONFIG_ADAPTEC_STARFIRE is not set |
914 | # CONFIG_B44 is not set | 955 | # CONFIG_B44 is not set |
915 | # CONFIG_FORCEDETH is not set | 956 | # CONFIG_FORCEDETH is not set |
916 | # CONFIG_EEPRO100 is not set | ||
917 | # CONFIG_E100 is not set | 957 | # CONFIG_E100 is not set |
918 | # CONFIG_FEALNX is not set | 958 | # CONFIG_FEALNX is not set |
919 | # CONFIG_NATSEMI is not set | 959 | # CONFIG_NATSEMI is not set |
@@ -923,6 +963,7 @@ CONFIG_PCNET32=y | |||
923 | # CONFIG_R6040 is not set | 963 | # CONFIG_R6040 is not set |
924 | # CONFIG_SIS900 is not set | 964 | # CONFIG_SIS900 is not set |
925 | # CONFIG_EPIC100 is not set | 965 | # CONFIG_EPIC100 is not set |
966 | # CONFIG_SMSC9420 is not set | ||
926 | # CONFIG_SUNDANCE is not set | 967 | # CONFIG_SUNDANCE is not set |
927 | # CONFIG_TLAN is not set | 968 | # CONFIG_TLAN is not set |
928 | # CONFIG_VIA_RHINE is not set | 969 | # CONFIG_VIA_RHINE is not set |
@@ -935,6 +976,7 @@ CONFIG_NETDEV_1000=y | |||
935 | # CONFIG_E1000E is not set | 976 | # CONFIG_E1000E is not set |
936 | # CONFIG_IP1000 is not set | 977 | # CONFIG_IP1000 is not set |
937 | # CONFIG_IGB is not set | 978 | # CONFIG_IGB is not set |
979 | # CONFIG_IGBVF is not set | ||
938 | # CONFIG_NS83820 is not set | 980 | # CONFIG_NS83820 is not set |
939 | # CONFIG_HAMACHI is not set | 981 | # CONFIG_HAMACHI is not set |
940 | # CONFIG_YELLOWFIN is not set | 982 | # CONFIG_YELLOWFIN is not set |
@@ -945,18 +987,20 @@ CONFIG_NETDEV_1000=y | |||
945 | # CONFIG_VIA_VELOCITY is not set | 987 | # CONFIG_VIA_VELOCITY is not set |
946 | # CONFIG_TIGON3 is not set | 988 | # CONFIG_TIGON3 is not set |
947 | # CONFIG_BNX2 is not set | 989 | # CONFIG_BNX2 is not set |
948 | # CONFIG_MV643XX_ETH is not set | ||
949 | # CONFIG_QLA3XXX is not set | 990 | # CONFIG_QLA3XXX is not set |
950 | # CONFIG_ATL1 is not set | 991 | # CONFIG_ATL1 is not set |
951 | # CONFIG_ATL1E is not set | 992 | # CONFIG_ATL1E is not set |
993 | # CONFIG_ATL1C is not set | ||
952 | # CONFIG_JME is not set | 994 | # CONFIG_JME is not set |
953 | CONFIG_NETDEV_10000=y | 995 | CONFIG_NETDEV_10000=y |
954 | # CONFIG_CHELSIO_T1 is not set | 996 | # CONFIG_CHELSIO_T1 is not set |
997 | CONFIG_CHELSIO_T3_DEPENDS=y | ||
955 | # CONFIG_CHELSIO_T3 is not set | 998 | # CONFIG_CHELSIO_T3 is not set |
956 | # CONFIG_ENIC is not set | 999 | # CONFIG_ENIC is not set |
957 | # CONFIG_IXGBE is not set | 1000 | # CONFIG_IXGBE is not set |
958 | # CONFIG_IXGB is not set | 1001 | # CONFIG_IXGB is not set |
959 | # CONFIG_S2IO is not set | 1002 | # CONFIG_S2IO is not set |
1003 | # CONFIG_VXGE is not set | ||
960 | # CONFIG_MYRI10GE is not set | 1004 | # CONFIG_MYRI10GE is not set |
961 | # CONFIG_NETXEN_NIC is not set | 1005 | # CONFIG_NETXEN_NIC is not set |
962 | # CONFIG_NIU is not set | 1006 | # CONFIG_NIU is not set |
@@ -966,6 +1010,7 @@ CONFIG_NETDEV_10000=y | |||
966 | # CONFIG_BNX2X is not set | 1010 | # CONFIG_BNX2X is not set |
967 | # CONFIG_QLGE is not set | 1011 | # CONFIG_QLGE is not set |
968 | # CONFIG_SFC is not set | 1012 | # CONFIG_SFC is not set |
1013 | # CONFIG_BE2NET is not set | ||
969 | # CONFIG_TR is not set | 1014 | # CONFIG_TR is not set |
970 | 1015 | ||
971 | # | 1016 | # |
@@ -974,20 +1019,11 @@ CONFIG_NETDEV_10000=y | |||
974 | # CONFIG_WLAN_PRE80211 is not set | 1019 | # CONFIG_WLAN_PRE80211 is not set |
975 | CONFIG_WLAN_80211=y | 1020 | CONFIG_WLAN_80211=y |
976 | # CONFIG_PCMCIA_RAYCS is not set | 1021 | # CONFIG_PCMCIA_RAYCS is not set |
977 | # CONFIG_IPW2100 is not set | ||
978 | # CONFIG_IPW2200 is not set | ||
979 | # CONFIG_LIBERTAS is not set | 1022 | # CONFIG_LIBERTAS is not set |
980 | # CONFIG_LIBERTAS_THINFIRM is not set | 1023 | # CONFIG_LIBERTAS_THINFIRM is not set |
981 | # CONFIG_AIRO is not set | 1024 | # CONFIG_AIRO is not set |
982 | CONFIG_HERMES=m | ||
983 | CONFIG_APPLE_AIRPORT=m | ||
984 | # CONFIG_PLX_HERMES is not set | ||
985 | # CONFIG_TMD_HERMES is not set | ||
986 | # CONFIG_NORTEL_HERMES is not set | ||
987 | CONFIG_PCI_HERMES=m | ||
988 | CONFIG_PCMCIA_HERMES=m | ||
989 | # CONFIG_PCMCIA_SPECTRUM is not set | ||
990 | # CONFIG_ATMEL is not set | 1025 | # CONFIG_ATMEL is not set |
1026 | # CONFIG_AT76C50X_USB is not set | ||
991 | # CONFIG_AIRO_CS is not set | 1027 | # CONFIG_AIRO_CS is not set |
992 | # CONFIG_PCMCIA_WL3501 is not set | 1028 | # CONFIG_PCMCIA_WL3501 is not set |
993 | CONFIG_PRISM54=m | 1029 | CONFIG_PRISM54=m |
@@ -997,15 +1033,17 @@ CONFIG_PRISM54=m | |||
997 | # CONFIG_RTL8187 is not set | 1033 | # CONFIG_RTL8187 is not set |
998 | # CONFIG_ADM8211 is not set | 1034 | # CONFIG_ADM8211 is not set |
999 | # CONFIG_MAC80211_HWSIM is not set | 1035 | # CONFIG_MAC80211_HWSIM is not set |
1036 | # CONFIG_MWL8K is not set | ||
1000 | CONFIG_P54_COMMON=m | 1037 | CONFIG_P54_COMMON=m |
1001 | # CONFIG_P54_USB is not set | 1038 | # CONFIG_P54_USB is not set |
1002 | # CONFIG_P54_PCI is not set | 1039 | # CONFIG_P54_PCI is not set |
1040 | CONFIG_P54_LEDS=y | ||
1003 | # CONFIG_ATH5K is not set | 1041 | # CONFIG_ATH5K is not set |
1004 | # CONFIG_ATH9K is not set | 1042 | # CONFIG_ATH9K is not set |
1005 | # CONFIG_IWLCORE is not set | 1043 | # CONFIG_AR9170_USB is not set |
1006 | # CONFIG_IWLWIFI_LEDS is not set | 1044 | # CONFIG_IPW2100 is not set |
1007 | # CONFIG_IWLAGN is not set | 1045 | # CONFIG_IPW2200 is not set |
1008 | # CONFIG_IWL3945 is not set | 1046 | # CONFIG_IWLWIFI is not set |
1009 | # CONFIG_HOSTAP is not set | 1047 | # CONFIG_HOSTAP is not set |
1010 | CONFIG_B43=m | 1048 | CONFIG_B43=m |
1011 | CONFIG_B43_PCI_AUTOSELECT=y | 1049 | CONFIG_B43_PCI_AUTOSELECT=y |
@@ -1025,6 +1063,19 @@ CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y | |||
1025 | # CONFIG_B43LEGACY_PIO_MODE is not set | 1063 | # CONFIG_B43LEGACY_PIO_MODE is not set |
1026 | # CONFIG_ZD1211RW is not set | 1064 | # CONFIG_ZD1211RW is not set |
1027 | # CONFIG_RT2X00 is not set | 1065 | # CONFIG_RT2X00 is not set |
1066 | CONFIG_HERMES=m | ||
1067 | CONFIG_HERMES_CACHE_FW_ON_INIT=y | ||
1068 | CONFIG_APPLE_AIRPORT=m | ||
1069 | # CONFIG_PLX_HERMES is not set | ||
1070 | # CONFIG_TMD_HERMES is not set | ||
1071 | # CONFIG_NORTEL_HERMES is not set | ||
1072 | CONFIG_PCI_HERMES=m | ||
1073 | CONFIG_PCMCIA_HERMES=m | ||
1074 | # CONFIG_PCMCIA_SPECTRUM is not set | ||
1075 | |||
1076 | # | ||
1077 | # Enable WiMAX (Networking options) to see the WiMAX drivers | ||
1078 | # | ||
1028 | 1079 | ||
1029 | # | 1080 | # |
1030 | # USB Network Adapters | 1081 | # USB Network Adapters |
@@ -1036,6 +1087,7 @@ CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y | |||
1036 | CONFIG_USB_USBNET=m | 1087 | CONFIG_USB_USBNET=m |
1037 | CONFIG_USB_NET_AX8817X=m | 1088 | CONFIG_USB_NET_AX8817X=m |
1038 | CONFIG_USB_NET_CDCETHER=m | 1089 | CONFIG_USB_NET_CDCETHER=m |
1090 | # CONFIG_USB_NET_CDC_EEM is not set | ||
1039 | # CONFIG_USB_NET_DM9601 is not set | 1091 | # CONFIG_USB_NET_DM9601 is not set |
1040 | # CONFIG_USB_NET_SMSC95XX is not set | 1092 | # CONFIG_USB_NET_SMSC95XX is not set |
1041 | # CONFIG_USB_NET_GL620A is not set | 1093 | # CONFIG_USB_NET_GL620A is not set |
@@ -1099,7 +1151,7 @@ CONFIG_INPUT_KEYBOARD=y | |||
1099 | CONFIG_INPUT_MOUSE=y | 1151 | CONFIG_INPUT_MOUSE=y |
1100 | # CONFIG_MOUSE_PS2 is not set | 1152 | # CONFIG_MOUSE_PS2 is not set |
1101 | # CONFIG_MOUSE_SERIAL is not set | 1153 | # CONFIG_MOUSE_SERIAL is not set |
1102 | # CONFIG_MOUSE_APPLETOUCH is not set | 1154 | CONFIG_MOUSE_APPLETOUCH=y |
1103 | # CONFIG_MOUSE_BCM5974 is not set | 1155 | # CONFIG_MOUSE_BCM5974 is not set |
1104 | # CONFIG_MOUSE_VSXXXAA is not set | 1156 | # CONFIG_MOUSE_VSXXXAA is not set |
1105 | # CONFIG_INPUT_JOYSTICK is not set | 1157 | # CONFIG_INPUT_JOYSTICK is not set |
@@ -1150,10 +1202,13 @@ CONFIG_SERIAL_PMACZILOG_TTYS=y | |||
1150 | # CONFIG_SERIAL_JSM is not set | 1202 | # CONFIG_SERIAL_JSM is not set |
1151 | # CONFIG_SERIAL_OF_PLATFORM is not set | 1203 | # CONFIG_SERIAL_OF_PLATFORM is not set |
1152 | CONFIG_UNIX98_PTYS=y | 1204 | CONFIG_UNIX98_PTYS=y |
1205 | # CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set | ||
1153 | CONFIG_LEGACY_PTYS=y | 1206 | CONFIG_LEGACY_PTYS=y |
1154 | CONFIG_LEGACY_PTY_COUNT=256 | 1207 | CONFIG_LEGACY_PTY_COUNT=256 |
1208 | # CONFIG_HVC_UDBG is not set | ||
1155 | # CONFIG_IPMI_HANDLER is not set | 1209 | # CONFIG_IPMI_HANDLER is not set |
1156 | CONFIG_HW_RANDOM=m | 1210 | CONFIG_HW_RANDOM=m |
1211 | # CONFIG_HW_RANDOM_TIMERIOMEM is not set | ||
1157 | CONFIG_NVRAM=y | 1212 | CONFIG_NVRAM=y |
1158 | CONFIG_GEN_RTC=y | 1213 | CONFIG_GEN_RTC=y |
1159 | # CONFIG_GEN_RTC_X is not set | 1214 | # CONFIG_GEN_RTC_X is not set |
@@ -1232,12 +1287,9 @@ CONFIG_I2C_POWERMAC=y | |||
1232 | # Miscellaneous I2C Chip support | 1287 | # Miscellaneous I2C Chip support |
1233 | # | 1288 | # |
1234 | # CONFIG_DS1682 is not set | 1289 | # CONFIG_DS1682 is not set |
1235 | # CONFIG_EEPROM_AT24 is not set | ||
1236 | # CONFIG_EEPROM_LEGACY is not set | ||
1237 | # CONFIG_SENSORS_PCF8574 is not set | 1290 | # CONFIG_SENSORS_PCF8574 is not set |
1238 | # CONFIG_PCF8575 is not set | 1291 | # CONFIG_PCF8575 is not set |
1239 | # CONFIG_SENSORS_PCA9539 is not set | 1292 | # CONFIG_SENSORS_PCA9539 is not set |
1240 | # CONFIG_SENSORS_PCF8591 is not set | ||
1241 | # CONFIG_SENSORS_MAX6875 is not set | 1293 | # CONFIG_SENSORS_MAX6875 is not set |
1242 | # CONFIG_SENSORS_TSL2550 is not set | 1294 | # CONFIG_SENSORS_TSL2550 is not set |
1243 | # CONFIG_I2C_DEBUG_CORE is not set | 1295 | # CONFIG_I2C_DEBUG_CORE is not set |
@@ -1259,11 +1311,11 @@ CONFIG_BATTERY_PMU=y | |||
1259 | # CONFIG_THERMAL is not set | 1311 | # CONFIG_THERMAL is not set |
1260 | # CONFIG_THERMAL_HWMON is not set | 1312 | # CONFIG_THERMAL_HWMON is not set |
1261 | # CONFIG_WATCHDOG is not set | 1313 | # CONFIG_WATCHDOG is not set |
1314 | CONFIG_SSB_POSSIBLE=y | ||
1262 | 1315 | ||
1263 | # | 1316 | # |
1264 | # Sonics Silicon Backplane | 1317 | # Sonics Silicon Backplane |
1265 | # | 1318 | # |
1266 | CONFIG_SSB_POSSIBLE=y | ||
1267 | CONFIG_SSB=m | 1319 | CONFIG_SSB=m |
1268 | CONFIG_SSB_SPROM=y | 1320 | CONFIG_SSB_SPROM=y |
1269 | CONFIG_SSB_PCIHOST_POSSIBLE=y | 1321 | CONFIG_SSB_PCIHOST_POSSIBLE=y |
@@ -1281,18 +1333,13 @@ CONFIG_SSB_DRIVER_PCICORE=y | |||
1281 | # CONFIG_MFD_CORE is not set | 1333 | # CONFIG_MFD_CORE is not set |
1282 | # CONFIG_MFD_SM501 is not set | 1334 | # CONFIG_MFD_SM501 is not set |
1283 | # CONFIG_HTC_PASIC3 is not set | 1335 | # CONFIG_HTC_PASIC3 is not set |
1336 | # CONFIG_TWL4030_CORE is not set | ||
1284 | # CONFIG_MFD_TMIO is not set | 1337 | # CONFIG_MFD_TMIO is not set |
1285 | # CONFIG_PMIC_DA903X is not set | 1338 | # CONFIG_PMIC_DA903X is not set |
1286 | # CONFIG_MFD_WM8400 is not set | 1339 | # CONFIG_MFD_WM8400 is not set |
1287 | # CONFIG_MFD_WM8350_I2C is not set | 1340 | # CONFIG_MFD_WM8350_I2C is not set |
1288 | 1341 | # CONFIG_MFD_PCF50633 is not set | |
1289 | # | ||
1290 | # Voltage and Current regulators | ||
1291 | # | ||
1292 | # CONFIG_REGULATOR is not set | 1342 | # CONFIG_REGULATOR is not set |
1293 | # CONFIG_REGULATOR_FIXED_VOLTAGE is not set | ||
1294 | # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set | ||
1295 | # CONFIG_REGULATOR_BQ24022 is not set | ||
1296 | 1343 | ||
1297 | # | 1344 | # |
1298 | # Multimedia devices | 1345 | # Multimedia devices |
@@ -1390,6 +1437,7 @@ CONFIG_FB_ATY_BACKLIGHT=y | |||
1390 | # CONFIG_FB_KYRO is not set | 1437 | # CONFIG_FB_KYRO is not set |
1391 | CONFIG_FB_3DFX=y | 1438 | CONFIG_FB_3DFX=y |
1392 | # CONFIG_FB_3DFX_ACCEL is not set | 1439 | # CONFIG_FB_3DFX_ACCEL is not set |
1440 | CONFIG_FB_3DFX_I2C=y | ||
1393 | # CONFIG_FB_VOODOO1 is not set | 1441 | # CONFIG_FB_VOODOO1 is not set |
1394 | # CONFIG_FB_VT8623 is not set | 1442 | # CONFIG_FB_VT8623 is not set |
1395 | # CONFIG_FB_TRIDENT is not set | 1443 | # CONFIG_FB_TRIDENT is not set |
@@ -1399,12 +1447,14 @@ CONFIG_FB_3DFX=y | |||
1399 | # CONFIG_FB_IBM_GXT4500 is not set | 1447 | # CONFIG_FB_IBM_GXT4500 is not set |
1400 | # CONFIG_FB_VIRTUAL is not set | 1448 | # CONFIG_FB_VIRTUAL is not set |
1401 | # CONFIG_FB_METRONOME is not set | 1449 | # CONFIG_FB_METRONOME is not set |
1450 | # CONFIG_FB_MB862XX is not set | ||
1451 | # CONFIG_FB_BROADSHEET is not set | ||
1402 | CONFIG_BACKLIGHT_LCD_SUPPORT=y | 1452 | CONFIG_BACKLIGHT_LCD_SUPPORT=y |
1403 | CONFIG_LCD_CLASS_DEVICE=m | 1453 | CONFIG_LCD_CLASS_DEVICE=m |
1404 | # CONFIG_LCD_ILI9320 is not set | 1454 | # CONFIG_LCD_ILI9320 is not set |
1405 | # CONFIG_LCD_PLATFORM is not set | 1455 | # CONFIG_LCD_PLATFORM is not set |
1406 | CONFIG_BACKLIGHT_CLASS_DEVICE=y | 1456 | CONFIG_BACKLIGHT_CLASS_DEVICE=y |
1407 | # CONFIG_BACKLIGHT_CORGI is not set | 1457 | CONFIG_BACKLIGHT_GENERIC=y |
1408 | 1458 | ||
1409 | # | 1459 | # |
1410 | # Display device support | 1460 | # Display device support |
@@ -1444,11 +1494,13 @@ CONFIG_SND_MIXER_OSS=m | |||
1444 | CONFIG_SND_PCM_OSS=m | 1494 | CONFIG_SND_PCM_OSS=m |
1445 | CONFIG_SND_PCM_OSS_PLUGINS=y | 1495 | CONFIG_SND_PCM_OSS_PLUGINS=y |
1446 | CONFIG_SND_SEQUENCER_OSS=y | 1496 | CONFIG_SND_SEQUENCER_OSS=y |
1497 | # CONFIG_SND_HRTIMER is not set | ||
1447 | # CONFIG_SND_DYNAMIC_MINORS is not set | 1498 | # CONFIG_SND_DYNAMIC_MINORS is not set |
1448 | CONFIG_SND_SUPPORT_OLD_API=y | 1499 | CONFIG_SND_SUPPORT_OLD_API=y |
1449 | CONFIG_SND_VERBOSE_PROCFS=y | 1500 | CONFIG_SND_VERBOSE_PROCFS=y |
1450 | # CONFIG_SND_VERBOSE_PRINTK is not set | 1501 | # CONFIG_SND_VERBOSE_PRINTK is not set |
1451 | # CONFIG_SND_DEBUG is not set | 1502 | # CONFIG_SND_DEBUG is not set |
1503 | CONFIG_SND_VMASTER=y | ||
1452 | CONFIG_SND_DRIVERS=y | 1504 | CONFIG_SND_DRIVERS=y |
1453 | CONFIG_SND_DUMMY=m | 1505 | CONFIG_SND_DUMMY=m |
1454 | # CONFIG_SND_VIRMIDI is not set | 1506 | # CONFIG_SND_VIRMIDI is not set |
@@ -1486,6 +1538,8 @@ CONFIG_SND_PCI=y | |||
1486 | # CONFIG_SND_INDIGO is not set | 1538 | # CONFIG_SND_INDIGO is not set |
1487 | # CONFIG_SND_INDIGOIO is not set | 1539 | # CONFIG_SND_INDIGOIO is not set |
1488 | # CONFIG_SND_INDIGODJ is not set | 1540 | # CONFIG_SND_INDIGODJ is not set |
1541 | # CONFIG_SND_INDIGOIOX is not set | ||
1542 | # CONFIG_SND_INDIGODJX is not set | ||
1489 | # CONFIG_SND_EMU10K1 is not set | 1543 | # CONFIG_SND_EMU10K1 is not set |
1490 | # CONFIG_SND_EMU10K1X is not set | 1544 | # CONFIG_SND_EMU10K1X is not set |
1491 | # CONFIG_SND_ENS1370 is not set | 1545 | # CONFIG_SND_ENS1370 is not set |
@@ -1551,28 +1605,31 @@ CONFIG_USB_HID=y | |||
1551 | # | 1605 | # |
1552 | # Special HID drivers | 1606 | # Special HID drivers |
1553 | # | 1607 | # |
1554 | CONFIG_HID_COMPAT=y | ||
1555 | CONFIG_HID_A4TECH=y | 1608 | CONFIG_HID_A4TECH=y |
1556 | CONFIG_HID_APPLE=y | 1609 | CONFIG_HID_APPLE=y |
1557 | CONFIG_HID_BELKIN=y | 1610 | CONFIG_HID_BELKIN=y |
1558 | CONFIG_HID_BRIGHT=y | ||
1559 | CONFIG_HID_CHERRY=y | 1611 | CONFIG_HID_CHERRY=y |
1560 | CONFIG_HID_CHICONY=y | 1612 | CONFIG_HID_CHICONY=y |
1561 | CONFIG_HID_CYPRESS=y | 1613 | CONFIG_HID_CYPRESS=y |
1562 | CONFIG_HID_DELL=y | 1614 | # CONFIG_DRAGONRISE_FF is not set |
1563 | CONFIG_HID_EZKEY=y | 1615 | CONFIG_HID_EZKEY=y |
1616 | CONFIG_HID_KYE=y | ||
1564 | CONFIG_HID_GYRATION=y | 1617 | CONFIG_HID_GYRATION=y |
1618 | CONFIG_HID_KENSINGTON=y | ||
1565 | CONFIG_HID_LOGITECH=y | 1619 | CONFIG_HID_LOGITECH=y |
1566 | # CONFIG_LOGITECH_FF is not set | 1620 | # CONFIG_LOGITECH_FF is not set |
1567 | # CONFIG_LOGIRUMBLEPAD2_FF is not set | 1621 | # CONFIG_LOGIRUMBLEPAD2_FF is not set |
1568 | CONFIG_HID_MICROSOFT=y | 1622 | CONFIG_HID_MICROSOFT=y |
1569 | CONFIG_HID_MONTEREY=y | 1623 | CONFIG_HID_MONTEREY=y |
1624 | CONFIG_HID_NTRIG=y | ||
1570 | CONFIG_HID_PANTHERLORD=y | 1625 | CONFIG_HID_PANTHERLORD=y |
1571 | # CONFIG_PANTHERLORD_FF is not set | 1626 | # CONFIG_PANTHERLORD_FF is not set |
1572 | CONFIG_HID_PETALYNX=y | 1627 | CONFIG_HID_PETALYNX=y |
1573 | CONFIG_HID_SAMSUNG=y | 1628 | CONFIG_HID_SAMSUNG=y |
1574 | CONFIG_HID_SONY=y | 1629 | CONFIG_HID_SONY=y |
1575 | CONFIG_HID_SUNPLUS=y | 1630 | CONFIG_HID_SUNPLUS=y |
1631 | # CONFIG_GREENASIA_FF is not set | ||
1632 | CONFIG_HID_TOPSEED=y | ||
1576 | # CONFIG_THRUSTMASTER_FF is not set | 1633 | # CONFIG_THRUSTMASTER_FF is not set |
1577 | # CONFIG_ZEROPLUS_FF is not set | 1634 | # CONFIG_ZEROPLUS_FF is not set |
1578 | CONFIG_USB_SUPPORT=y | 1635 | CONFIG_USB_SUPPORT=y |
@@ -1603,6 +1660,7 @@ CONFIG_USB_EHCI_HCD=m | |||
1603 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 1660 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
1604 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set | 1661 | # CONFIG_USB_EHCI_TT_NEWSCHED is not set |
1605 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | 1662 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set |
1663 | # CONFIG_USB_OXU210HP_HCD is not set | ||
1606 | # CONFIG_USB_ISP116X_HCD is not set | 1664 | # CONFIG_USB_ISP116X_HCD is not set |
1607 | # CONFIG_USB_ISP1760_HCD is not set | 1665 | # CONFIG_USB_ISP1760_HCD is not set |
1608 | CONFIG_USB_OHCI_HCD=y | 1666 | CONFIG_USB_OHCI_HCD=y |
@@ -1625,24 +1683,23 @@ CONFIG_USB_PRINTER=m | |||
1625 | # CONFIG_USB_TMC is not set | 1683 | # CONFIG_USB_TMC is not set |
1626 | 1684 | ||
1627 | # | 1685 | # |
1628 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' | 1686 | # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may |
1629 | # | 1687 | # |
1630 | 1688 | ||
1631 | # | 1689 | # |
1632 | # may also be needed; see USB_STORAGE Help for more information | 1690 | # also be needed; see USB_STORAGE Help for more info |
1633 | # | 1691 | # |
1634 | CONFIG_USB_STORAGE=m | 1692 | CONFIG_USB_STORAGE=m |
1635 | # CONFIG_USB_STORAGE_DEBUG is not set | 1693 | # CONFIG_USB_STORAGE_DEBUG is not set |
1636 | # CONFIG_USB_STORAGE_DATAFAB is not set | 1694 | # CONFIG_USB_STORAGE_DATAFAB is not set |
1637 | # CONFIG_USB_STORAGE_FREECOM is not set | 1695 | # CONFIG_USB_STORAGE_FREECOM is not set |
1638 | # CONFIG_USB_STORAGE_ISD200 is not set | 1696 | # CONFIG_USB_STORAGE_ISD200 is not set |
1639 | # CONFIG_USB_STORAGE_DPCM is not set | ||
1640 | # CONFIG_USB_STORAGE_USBAT is not set | 1697 | # CONFIG_USB_STORAGE_USBAT is not set |
1641 | # CONFIG_USB_STORAGE_SDDR09 is not set | 1698 | # CONFIG_USB_STORAGE_SDDR09 is not set |
1642 | # CONFIG_USB_STORAGE_SDDR55 is not set | 1699 | # CONFIG_USB_STORAGE_SDDR55 is not set |
1643 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | 1700 | # CONFIG_USB_STORAGE_JUMPSHOT is not set |
1644 | # CONFIG_USB_STORAGE_ALAUDA is not set | 1701 | # CONFIG_USB_STORAGE_ALAUDA is not set |
1645 | CONFIG_USB_STORAGE_ONETOUCH=y | 1702 | CONFIG_USB_STORAGE_ONETOUCH=m |
1646 | # CONFIG_USB_STORAGE_KARMA is not set | 1703 | # CONFIG_USB_STORAGE_KARMA is not set |
1647 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set | 1704 | # CONFIG_USB_STORAGE_CYPRESS_ATACB is not set |
1648 | # CONFIG_USB_LIBUSUAL is not set | 1705 | # CONFIG_USB_LIBUSUAL is not set |
@@ -1665,7 +1722,7 @@ CONFIG_USB_EZUSB=y | |||
1665 | # CONFIG_USB_SERIAL_CH341 is not set | 1722 | # CONFIG_USB_SERIAL_CH341 is not set |
1666 | # CONFIG_USB_SERIAL_WHITEHEAT is not set | 1723 | # CONFIG_USB_SERIAL_WHITEHEAT is not set |
1667 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set | 1724 | # CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set |
1668 | # CONFIG_USB_SERIAL_CP2101 is not set | 1725 | # CONFIG_USB_SERIAL_CP210X is not set |
1669 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set | 1726 | # CONFIG_USB_SERIAL_CYPRESS_M8 is not set |
1670 | # CONFIG_USB_SERIAL_EMPEG is not set | 1727 | # CONFIG_USB_SERIAL_EMPEG is not set |
1671 | # CONFIG_USB_SERIAL_FTDI_SIO is not set | 1728 | # CONFIG_USB_SERIAL_FTDI_SIO is not set |
@@ -1701,15 +1758,19 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
1701 | # CONFIG_USB_SERIAL_NAVMAN is not set | 1758 | # CONFIG_USB_SERIAL_NAVMAN is not set |
1702 | # CONFIG_USB_SERIAL_PL2303 is not set | 1759 | # CONFIG_USB_SERIAL_PL2303 is not set |
1703 | # CONFIG_USB_SERIAL_OTI6858 is not set | 1760 | # CONFIG_USB_SERIAL_OTI6858 is not set |
1761 | # CONFIG_USB_SERIAL_QUALCOMM is not set | ||
1704 | # CONFIG_USB_SERIAL_SPCP8X5 is not set | 1762 | # CONFIG_USB_SERIAL_SPCP8X5 is not set |
1705 | # CONFIG_USB_SERIAL_HP4X is not set | 1763 | # CONFIG_USB_SERIAL_HP4X is not set |
1706 | # CONFIG_USB_SERIAL_SAFE is not set | 1764 | # CONFIG_USB_SERIAL_SAFE is not set |
1765 | # CONFIG_USB_SERIAL_SIEMENS_MPI is not set | ||
1707 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set | 1766 | # CONFIG_USB_SERIAL_SIERRAWIRELESS is not set |
1767 | # CONFIG_USB_SERIAL_SYMBOL is not set | ||
1708 | # CONFIG_USB_SERIAL_TI is not set | 1768 | # CONFIG_USB_SERIAL_TI is not set |
1709 | # CONFIG_USB_SERIAL_CYBERJACK is not set | 1769 | # CONFIG_USB_SERIAL_CYBERJACK is not set |
1710 | # CONFIG_USB_SERIAL_XIRCOM is not set | 1770 | # CONFIG_USB_SERIAL_XIRCOM is not set |
1711 | # CONFIG_USB_SERIAL_OPTION is not set | 1771 | # CONFIG_USB_SERIAL_OPTION is not set |
1712 | # CONFIG_USB_SERIAL_OMNINET is not set | 1772 | # CONFIG_USB_SERIAL_OMNINET is not set |
1773 | # CONFIG_USB_SERIAL_OPTICON is not set | ||
1713 | # CONFIG_USB_SERIAL_DEBUG is not set | 1774 | # CONFIG_USB_SERIAL_DEBUG is not set |
1714 | 1775 | ||
1715 | # | 1776 | # |
@@ -1726,7 +1787,6 @@ CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y | |||
1726 | # CONFIG_USB_LED is not set | 1787 | # CONFIG_USB_LED is not set |
1727 | # CONFIG_USB_CYPRESS_CY7C63 is not set | 1788 | # CONFIG_USB_CYPRESS_CY7C63 is not set |
1728 | # CONFIG_USB_CYTHERM is not set | 1789 | # CONFIG_USB_CYTHERM is not set |
1729 | # CONFIG_USB_PHIDGET is not set | ||
1730 | # CONFIG_USB_IDMOUSE is not set | 1790 | # CONFIG_USB_IDMOUSE is not set |
1731 | # CONFIG_USB_FTDI_ELAN is not set | 1791 | # CONFIG_USB_FTDI_ELAN is not set |
1732 | CONFIG_USB_APPLEDISPLAY=m | 1792 | CONFIG_USB_APPLEDISPLAY=m |
@@ -1738,6 +1798,11 @@ CONFIG_USB_APPLEDISPLAY=m | |||
1738 | # CONFIG_USB_ISIGHTFW is not set | 1798 | # CONFIG_USB_ISIGHTFW is not set |
1739 | # CONFIG_USB_VST is not set | 1799 | # CONFIG_USB_VST is not set |
1740 | # CONFIG_USB_GADGET is not set | 1800 | # CONFIG_USB_GADGET is not set |
1801 | |||
1802 | # | ||
1803 | # OTG and related infrastructure | ||
1804 | # | ||
1805 | # CONFIG_NOP_USB_XCEIV is not set | ||
1741 | # CONFIG_UWB is not set | 1806 | # CONFIG_UWB is not set |
1742 | # CONFIG_MMC is not set | 1807 | # CONFIG_MMC is not set |
1743 | # CONFIG_MEMSTICK is not set | 1808 | # CONFIG_MEMSTICK is not set |
@@ -1748,7 +1813,9 @@ CONFIG_LEDS_CLASS=y | |||
1748 | # LED drivers | 1813 | # LED drivers |
1749 | # | 1814 | # |
1750 | # CONFIG_LEDS_PCA9532 is not set | 1815 | # CONFIG_LEDS_PCA9532 is not set |
1816 | # CONFIG_LEDS_LP5521 is not set | ||
1751 | # CONFIG_LEDS_PCA955X is not set | 1817 | # CONFIG_LEDS_PCA955X is not set |
1818 | # CONFIG_LEDS_BD2802 is not set | ||
1752 | 1819 | ||
1753 | # | 1820 | # |
1754 | # LED Triggers | 1821 | # LED Triggers |
@@ -1759,11 +1826,16 @@ CONFIG_LEDS_TRIGGER_IDE_DISK=y | |||
1759 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set | 1826 | # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set |
1760 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set | 1827 | # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set |
1761 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y | 1828 | CONFIG_LEDS_TRIGGER_DEFAULT_ON=y |
1829 | |||
1830 | # | ||
1831 | # iptables trigger is under Netfilter config (LED target) | ||
1832 | # | ||
1762 | # CONFIG_ACCESSIBILITY is not set | 1833 | # CONFIG_ACCESSIBILITY is not set |
1763 | # CONFIG_INFINIBAND is not set | 1834 | # CONFIG_INFINIBAND is not set |
1764 | # CONFIG_EDAC is not set | 1835 | # CONFIG_EDAC is not set |
1765 | # CONFIG_RTC_CLASS is not set | 1836 | # CONFIG_RTC_CLASS is not set |
1766 | # CONFIG_DMADEVICES is not set | 1837 | # CONFIG_DMADEVICES is not set |
1838 | # CONFIG_AUXDISPLAY is not set | ||
1767 | # CONFIG_UIO is not set | 1839 | # CONFIG_UIO is not set |
1768 | # CONFIG_STAGING is not set | 1840 | # CONFIG_STAGING is not set |
1769 | 1841 | ||
@@ -1774,6 +1846,7 @@ CONFIG_EXT2_FS=y | |||
1774 | # CONFIG_EXT2_FS_XATTR is not set | 1846 | # CONFIG_EXT2_FS_XATTR is not set |
1775 | # CONFIG_EXT2_FS_XIP is not set | 1847 | # CONFIG_EXT2_FS_XIP is not set |
1776 | CONFIG_EXT3_FS=y | 1848 | CONFIG_EXT3_FS=y |
1849 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | ||
1777 | CONFIG_EXT3_FS_XATTR=y | 1850 | CONFIG_EXT3_FS_XATTR=y |
1778 | CONFIG_EXT3_FS_POSIX_ACL=y | 1851 | CONFIG_EXT3_FS_POSIX_ACL=y |
1779 | # CONFIG_EXT3_FS_SECURITY is not set | 1852 | # CONFIG_EXT3_FS_SECURITY is not set |
@@ -1783,7 +1856,9 @@ CONFIG_EXT4_FS_XATTR=y | |||
1783 | # CONFIG_EXT4_FS_POSIX_ACL is not set | 1856 | # CONFIG_EXT4_FS_POSIX_ACL is not set |
1784 | # CONFIG_EXT4_FS_SECURITY is not set | 1857 | # CONFIG_EXT4_FS_SECURITY is not set |
1785 | CONFIG_JBD=y | 1858 | CONFIG_JBD=y |
1859 | # CONFIG_JBD_DEBUG is not set | ||
1786 | CONFIG_JBD2=y | 1860 | CONFIG_JBD2=y |
1861 | # CONFIG_JBD2_DEBUG is not set | ||
1787 | CONFIG_FS_MBCACHE=y | 1862 | CONFIG_FS_MBCACHE=y |
1788 | # CONFIG_REISERFS_FS is not set | 1863 | # CONFIG_REISERFS_FS is not set |
1789 | # CONFIG_JFS_FS is not set | 1864 | # CONFIG_JFS_FS is not set |
@@ -1792,6 +1867,7 @@ CONFIG_FILE_LOCKING=y | |||
1792 | # CONFIG_XFS_FS is not set | 1867 | # CONFIG_XFS_FS is not set |
1793 | # CONFIG_GFS2_FS is not set | 1868 | # CONFIG_GFS2_FS is not set |
1794 | # CONFIG_OCFS2_FS is not set | 1869 | # CONFIG_OCFS2_FS is not set |
1870 | # CONFIG_BTRFS_FS is not set | ||
1795 | CONFIG_DNOTIFY=y | 1871 | CONFIG_DNOTIFY=y |
1796 | CONFIG_INOTIFY=y | 1872 | CONFIG_INOTIFY=y |
1797 | CONFIG_INOTIFY_USER=y | 1873 | CONFIG_INOTIFY_USER=y |
@@ -1801,6 +1877,11 @@ CONFIG_AUTOFS4_FS=m | |||
1801 | CONFIG_FUSE_FS=m | 1877 | CONFIG_FUSE_FS=m |
1802 | 1878 | ||
1803 | # | 1879 | # |
1880 | # Caches | ||
1881 | # | ||
1882 | # CONFIG_FSCACHE is not set | ||
1883 | |||
1884 | # | ||
1804 | # CD-ROM/DVD Filesystems | 1885 | # CD-ROM/DVD Filesystems |
1805 | # | 1886 | # |
1806 | CONFIG_ISO9660_FS=y | 1887 | CONFIG_ISO9660_FS=y |
@@ -1831,10 +1912,7 @@ CONFIG_TMPFS=y | |||
1831 | # CONFIG_TMPFS_POSIX_ACL is not set | 1912 | # CONFIG_TMPFS_POSIX_ACL is not set |
1832 | # CONFIG_HUGETLB_PAGE is not set | 1913 | # CONFIG_HUGETLB_PAGE is not set |
1833 | # CONFIG_CONFIGFS_FS is not set | 1914 | # CONFIG_CONFIGFS_FS is not set |
1834 | 1915 | CONFIG_MISC_FILESYSTEMS=y | |
1835 | # | ||
1836 | # Miscellaneous filesystems | ||
1837 | # | ||
1838 | # CONFIG_ADFS_FS is not set | 1916 | # CONFIG_ADFS_FS is not set |
1839 | # CONFIG_AFFS_FS is not set | 1917 | # CONFIG_AFFS_FS is not set |
1840 | CONFIG_HFS_FS=m | 1918 | CONFIG_HFS_FS=m |
@@ -1843,6 +1921,7 @@ CONFIG_HFSPLUS_FS=m | |||
1843 | # CONFIG_BFS_FS is not set | 1921 | # CONFIG_BFS_FS is not set |
1844 | # CONFIG_EFS_FS is not set | 1922 | # CONFIG_EFS_FS is not set |
1845 | # CONFIG_CRAMFS is not set | 1923 | # CONFIG_CRAMFS is not set |
1924 | # CONFIG_SQUASHFS is not set | ||
1846 | # CONFIG_VXFS_FS is not set | 1925 | # CONFIG_VXFS_FS is not set |
1847 | # CONFIG_MINIX_FS is not set | 1926 | # CONFIG_MINIX_FS is not set |
1848 | # CONFIG_OMFS_FS is not set | 1927 | # CONFIG_OMFS_FS is not set |
@@ -1851,6 +1930,7 @@ CONFIG_HFSPLUS_FS=m | |||
1851 | # CONFIG_ROMFS_FS is not set | 1930 | # CONFIG_ROMFS_FS is not set |
1852 | # CONFIG_SYSV_FS is not set | 1931 | # CONFIG_SYSV_FS is not set |
1853 | # CONFIG_UFS_FS is not set | 1932 | # CONFIG_UFS_FS is not set |
1933 | # CONFIG_NILFS2_FS is not set | ||
1854 | CONFIG_NETWORK_FILESYSTEMS=y | 1934 | CONFIG_NETWORK_FILESYSTEMS=y |
1855 | CONFIG_NFS_FS=y | 1935 | CONFIG_NFS_FS=y |
1856 | CONFIG_NFS_V3=y | 1936 | CONFIG_NFS_V3=y |
@@ -1868,7 +1948,6 @@ CONFIG_NFS_ACL_SUPPORT=y | |||
1868 | CONFIG_NFS_COMMON=y | 1948 | CONFIG_NFS_COMMON=y |
1869 | CONFIG_SUNRPC=y | 1949 | CONFIG_SUNRPC=y |
1870 | CONFIG_SUNRPC_GSS=y | 1950 | CONFIG_SUNRPC_GSS=y |
1871 | # CONFIG_SUNRPC_REGISTER_V4 is not set | ||
1872 | CONFIG_RPCSEC_GSS_KRB5=y | 1951 | CONFIG_RPCSEC_GSS_KRB5=y |
1873 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | 1952 | # CONFIG_RPCSEC_GSS_SPKM3 is not set |
1874 | CONFIG_SMB_FS=m | 1953 | CONFIG_SMB_FS=m |
@@ -1940,11 +2019,13 @@ CONFIG_NLS_ISO8859_1=m | |||
1940 | # CONFIG_NLS_KOI8_U is not set | 2019 | # CONFIG_NLS_KOI8_U is not set |
1941 | CONFIG_NLS_UTF8=m | 2020 | CONFIG_NLS_UTF8=m |
1942 | # CONFIG_DLM is not set | 2021 | # CONFIG_DLM is not set |
2022 | CONFIG_BINARY_PRINTF=y | ||
1943 | 2023 | ||
1944 | # | 2024 | # |
1945 | # Library routines | 2025 | # Library routines |
1946 | # | 2026 | # |
1947 | CONFIG_BITREVERSE=y | 2027 | CONFIG_BITREVERSE=y |
2028 | CONFIG_GENERIC_FIND_LAST_BIT=y | ||
1948 | CONFIG_CRC_CCITT=y | 2029 | CONFIG_CRC_CCITT=y |
1949 | CONFIG_CRC16=y | 2030 | CONFIG_CRC16=y |
1950 | CONFIG_CRC_T10DIF=y | 2031 | CONFIG_CRC_T10DIF=y |
@@ -1954,15 +2035,18 @@ CONFIG_CRC32=y | |||
1954 | CONFIG_LIBCRC32C=m | 2035 | CONFIG_LIBCRC32C=m |
1955 | CONFIG_ZLIB_INFLATE=y | 2036 | CONFIG_ZLIB_INFLATE=y |
1956 | CONFIG_ZLIB_DEFLATE=y | 2037 | CONFIG_ZLIB_DEFLATE=y |
2038 | CONFIG_DECOMPRESS_GZIP=y | ||
2039 | CONFIG_DECOMPRESS_BZIP2=y | ||
2040 | CONFIG_DECOMPRESS_LZMA=y | ||
1957 | CONFIG_TEXTSEARCH=y | 2041 | CONFIG_TEXTSEARCH=y |
1958 | CONFIG_TEXTSEARCH_KMP=m | 2042 | CONFIG_TEXTSEARCH_KMP=m |
1959 | CONFIG_TEXTSEARCH_BM=m | 2043 | CONFIG_TEXTSEARCH_BM=m |
1960 | CONFIG_TEXTSEARCH_FSM=m | 2044 | CONFIG_TEXTSEARCH_FSM=m |
1961 | CONFIG_PLIST=y | ||
1962 | CONFIG_HAS_IOMEM=y | 2045 | CONFIG_HAS_IOMEM=y |
1963 | CONFIG_HAS_IOPORT=y | 2046 | CONFIG_HAS_IOPORT=y |
1964 | CONFIG_HAS_DMA=y | 2047 | CONFIG_HAS_DMA=y |
1965 | CONFIG_HAVE_LMB=y | 2048 | CONFIG_HAVE_LMB=y |
2049 | CONFIG_NLATTR=y | ||
1966 | 2050 | ||
1967 | # | 2051 | # |
1968 | # Kernel hacking | 2052 | # Kernel hacking |
@@ -1973,13 +2057,16 @@ CONFIG_ENABLE_MUST_CHECK=y | |||
1973 | CONFIG_FRAME_WARN=1024 | 2057 | CONFIG_FRAME_WARN=1024 |
1974 | CONFIG_MAGIC_SYSRQ=y | 2058 | CONFIG_MAGIC_SYSRQ=y |
1975 | # CONFIG_UNUSED_SYMBOLS is not set | 2059 | # CONFIG_UNUSED_SYMBOLS is not set |
1976 | # CONFIG_DEBUG_FS is not set | 2060 | CONFIG_DEBUG_FS=y |
1977 | # CONFIG_HEADERS_CHECK is not set | 2061 | # CONFIG_HEADERS_CHECK is not set |
1978 | CONFIG_DEBUG_KERNEL=y | 2062 | CONFIG_DEBUG_KERNEL=y |
1979 | # CONFIG_DEBUG_SHIRQ is not set | 2063 | # CONFIG_DEBUG_SHIRQ is not set |
1980 | CONFIG_DETECT_SOFTLOCKUP=y | 2064 | CONFIG_DETECT_SOFTLOCKUP=y |
1981 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set | 2065 | # CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set |
1982 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 | 2066 | CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 |
2067 | CONFIG_DETECT_HUNG_TASK=y | ||
2068 | # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set | ||
2069 | CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 | ||
1983 | CONFIG_SCHED_DEBUG=y | 2070 | CONFIG_SCHED_DEBUG=y |
1984 | CONFIG_SCHEDSTATS=y | 2071 | CONFIG_SCHEDSTATS=y |
1985 | # CONFIG_TIMER_STATS is not set | 2072 | # CONFIG_TIMER_STATS is not set |
@@ -1994,6 +2081,7 @@ CONFIG_SCHEDSTATS=y | |||
1994 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set | 2081 | # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set |
1995 | CONFIG_STACKTRACE=y | 2082 | CONFIG_STACKTRACE=y |
1996 | # CONFIG_DEBUG_KOBJECT is not set | 2083 | # CONFIG_DEBUG_KOBJECT is not set |
2084 | # CONFIG_DEBUG_HIGHMEM is not set | ||
1997 | CONFIG_DEBUG_BUGVERBOSE=y | 2085 | CONFIG_DEBUG_BUGVERBOSE=y |
1998 | # CONFIG_DEBUG_INFO is not set | 2086 | # CONFIG_DEBUG_INFO is not set |
1999 | # CONFIG_DEBUG_VM is not set | 2087 | # CONFIG_DEBUG_VM is not set |
@@ -2001,6 +2089,7 @@ CONFIG_DEBUG_BUGVERBOSE=y | |||
2001 | CONFIG_DEBUG_MEMORY_INIT=y | 2089 | CONFIG_DEBUG_MEMORY_INIT=y |
2002 | # CONFIG_DEBUG_LIST is not set | 2090 | # CONFIG_DEBUG_LIST is not set |
2003 | # CONFIG_DEBUG_SG is not set | 2091 | # CONFIG_DEBUG_SG is not set |
2092 | # CONFIG_DEBUG_NOTIFIERS is not set | ||
2004 | # CONFIG_BOOT_PRINTK_DELAY is not set | 2093 | # CONFIG_BOOT_PRINTK_DELAY is not set |
2005 | # CONFIG_RCU_TORTURE_TEST is not set | 2094 | # CONFIG_RCU_TORTURE_TEST is not set |
2006 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | 2095 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set |
@@ -2009,7 +2098,14 @@ CONFIG_DEBUG_MEMORY_INIT=y | |||
2009 | # CONFIG_FAULT_INJECTION is not set | 2098 | # CONFIG_FAULT_INJECTION is not set |
2010 | CONFIG_LATENCYTOP=y | 2099 | CONFIG_LATENCYTOP=y |
2011 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 2100 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
2101 | CONFIG_NOP_TRACER=y | ||
2012 | CONFIG_HAVE_FUNCTION_TRACER=y | 2102 | CONFIG_HAVE_FUNCTION_TRACER=y |
2103 | CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y | ||
2104 | CONFIG_HAVE_DYNAMIC_FTRACE=y | ||
2105 | CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y | ||
2106 | CONFIG_RING_BUFFER=y | ||
2107 | CONFIG_TRACING=y | ||
2108 | CONFIG_TRACING_SUPPORT=y | ||
2013 | 2109 | ||
2014 | # | 2110 | # |
2015 | # Tracers | 2111 | # Tracers |
@@ -2017,12 +2113,19 @@ CONFIG_HAVE_FUNCTION_TRACER=y | |||
2017 | # CONFIG_FUNCTION_TRACER is not set | 2113 | # CONFIG_FUNCTION_TRACER is not set |
2018 | # CONFIG_SCHED_TRACER is not set | 2114 | # CONFIG_SCHED_TRACER is not set |
2019 | # CONFIG_CONTEXT_SWITCH_TRACER is not set | 2115 | # CONFIG_CONTEXT_SWITCH_TRACER is not set |
2116 | # CONFIG_EVENT_TRACER is not set | ||
2020 | # CONFIG_BOOT_TRACER is not set | 2117 | # CONFIG_BOOT_TRACER is not set |
2118 | # CONFIG_TRACE_BRANCH_PROFILING is not set | ||
2021 | # CONFIG_STACK_TRACER is not set | 2119 | # CONFIG_STACK_TRACER is not set |
2022 | # CONFIG_DYNAMIC_PRINTK_DEBUG is not set | 2120 | # CONFIG_KMEMTRACE is not set |
2121 | # CONFIG_WORKQUEUE_TRACER is not set | ||
2122 | # CONFIG_BLK_DEV_IO_TRACE is not set | ||
2123 | # CONFIG_FTRACE_STARTUP_TEST is not set | ||
2124 | # CONFIG_DYNAMIC_DEBUG is not set | ||
2023 | # CONFIG_SAMPLES is not set | 2125 | # CONFIG_SAMPLES is not set |
2024 | CONFIG_HAVE_ARCH_KGDB=y | 2126 | CONFIG_HAVE_ARCH_KGDB=y |
2025 | # CONFIG_KGDB is not set | 2127 | # CONFIG_KGDB is not set |
2128 | CONFIG_PRINT_STACK_DEPTH=64 | ||
2026 | # CONFIG_DEBUG_STACKOVERFLOW is not set | 2129 | # CONFIG_DEBUG_STACKOVERFLOW is not set |
2027 | # CONFIG_DEBUG_STACK_USAGE is not set | 2130 | # CONFIG_DEBUG_STACK_USAGE is not set |
2028 | # CONFIG_CODE_PATCHING_SELFTEST is not set | 2131 | # CONFIG_CODE_PATCHING_SELFTEST is not set |
@@ -2033,6 +2136,7 @@ CONFIG_XMON_DEFAULT=y | |||
2033 | CONFIG_XMON_DISASSEMBLY=y | 2136 | CONFIG_XMON_DISASSEMBLY=y |
2034 | CONFIG_DEBUGGER=y | 2137 | CONFIG_DEBUGGER=y |
2035 | CONFIG_IRQSTACKS=y | 2138 | CONFIG_IRQSTACKS=y |
2139 | # CONFIG_VIRQ_DEBUG is not set | ||
2036 | # CONFIG_BDI_SWITCH is not set | 2140 | # CONFIG_BDI_SWITCH is not set |
2037 | CONFIG_BOOTX_TEXT=y | 2141 | CONFIG_BOOTX_TEXT=y |
2038 | # CONFIG_PPC_EARLY_DEBUG is not set | 2142 | # CONFIG_PPC_EARLY_DEBUG is not set |
@@ -2051,13 +2155,20 @@ CONFIG_CRYPTO=y | |||
2051 | # | 2155 | # |
2052 | # CONFIG_CRYPTO_FIPS is not set | 2156 | # CONFIG_CRYPTO_FIPS is not set |
2053 | CONFIG_CRYPTO_ALGAPI=y | 2157 | CONFIG_CRYPTO_ALGAPI=y |
2158 | CONFIG_CRYPTO_ALGAPI2=y | ||
2054 | CONFIG_CRYPTO_AEAD=y | 2159 | CONFIG_CRYPTO_AEAD=y |
2160 | CONFIG_CRYPTO_AEAD2=y | ||
2055 | CONFIG_CRYPTO_BLKCIPHER=y | 2161 | CONFIG_CRYPTO_BLKCIPHER=y |
2162 | CONFIG_CRYPTO_BLKCIPHER2=y | ||
2056 | CONFIG_CRYPTO_HASH=y | 2163 | CONFIG_CRYPTO_HASH=y |
2057 | CONFIG_CRYPTO_RNG=y | 2164 | CONFIG_CRYPTO_HASH2=y |
2165 | CONFIG_CRYPTO_RNG2=y | ||
2166 | CONFIG_CRYPTO_PCOMP=y | ||
2058 | CONFIG_CRYPTO_MANAGER=y | 2167 | CONFIG_CRYPTO_MANAGER=y |
2168 | CONFIG_CRYPTO_MANAGER2=y | ||
2059 | # CONFIG_CRYPTO_GF128MUL is not set | 2169 | # CONFIG_CRYPTO_GF128MUL is not set |
2060 | CONFIG_CRYPTO_NULL=m | 2170 | CONFIG_CRYPTO_NULL=m |
2171 | CONFIG_CRYPTO_WORKQUEUE=y | ||
2061 | # CONFIG_CRYPTO_CRYPTD is not set | 2172 | # CONFIG_CRYPTO_CRYPTD is not set |
2062 | CONFIG_CRYPTO_AUTHENC=y | 2173 | CONFIG_CRYPTO_AUTHENC=y |
2063 | # CONFIG_CRYPTO_TEST is not set | 2174 | # CONFIG_CRYPTO_TEST is not set |
@@ -2127,6 +2238,7 @@ CONFIG_CRYPTO_TWOFISH_COMMON=m | |||
2127 | # Compression | 2238 | # Compression |
2128 | # | 2239 | # |
2129 | CONFIG_CRYPTO_DEFLATE=m | 2240 | CONFIG_CRYPTO_DEFLATE=m |
2241 | # CONFIG_CRYPTO_ZLIB is not set | ||
2130 | # CONFIG_CRYPTO_LZO is not set | 2242 | # CONFIG_CRYPTO_LZO is not set |
2131 | 2243 | ||
2132 | # | 2244 | # |
diff --git a/arch/sparc/include/asm/elf_64.h b/arch/sparc/include/asm/elf_64.h index 425c2f9be6d5..d42e393078c4 100644 --- a/arch/sparc/include/asm/elf_64.h +++ b/arch/sparc/include/asm/elf_64.h | |||
@@ -208,8 +208,9 @@ do { unsigned long new_flags = current_thread_info()->flags; \ | |||
208 | else \ | 208 | else \ |
209 | clear_thread_flag(TIF_ABI_PENDING); \ | 209 | clear_thread_flag(TIF_ABI_PENDING); \ |
210 | /* flush_thread will update pgd cache */ \ | 210 | /* flush_thread will update pgd cache */ \ |
211 | if (current->personality != PER_LINUX32) \ | 211 | if (personality(current->personality) != PER_LINUX32) \ |
212 | set_personality(PER_LINUX); \ | 212 | set_personality(PER_LINUX | \ |
213 | (current->personality & (~PER_MASK))); \ | ||
213 | } while (0) | 214 | } while (0) |
214 | 215 | ||
215 | #endif /* !(__ASM_SPARC64_ELF_H) */ | 216 | #endif /* !(__ASM_SPARC64_ELF_H) */ |
diff --git a/arch/sparc/lib/csum_copy_from_user.S b/arch/sparc/lib/csum_copy_from_user.S index a22eddbe5dba..e0304e6a2242 100644 --- a/arch/sparc/lib/csum_copy_from_user.S +++ b/arch/sparc/lib/csum_copy_from_user.S | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | #define EX_LD(x) \ | 6 | #define EX_LD(x) \ |
7 | 98: x; \ | 7 | 98: x; \ |
8 | .section .fixup; \ | 8 | .section .fixup, "ax"; \ |
9 | .align 4; \ | 9 | .align 4; \ |
10 | 99: retl; \ | 10 | 99: retl; \ |
11 | mov -1, %o0; \ | 11 | mov -1, %o0; \ |
diff --git a/arch/sparc/lib/csum_copy_to_user.S b/arch/sparc/lib/csum_copy_to_user.S index d5b12f441f02..afd01acc587c 100644 --- a/arch/sparc/lib/csum_copy_to_user.S +++ b/arch/sparc/lib/csum_copy_to_user.S | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | #define EX_ST(x) \ | 6 | #define EX_ST(x) \ |
7 | 98: x; \ | 7 | 98: x; \ |
8 | .section .fixup; \ | 8 | .section .fixup,"ax"; \ |
9 | .align 4; \ | 9 | .align 4; \ |
10 | 99: retl; \ | 10 | 99: retl; \ |
11 | mov -1, %o0; \ | 11 | mov -1, %o0; \ |
diff --git a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c index 208ecf6643df..54b6de2cd947 100644 --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c +++ b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c | |||
@@ -693,8 +693,8 @@ static int acpi_cpufreq_cpu_init(struct cpufreq_policy *policy) | |||
693 | if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE && | 693 | if (perf->control_register.space_id == ACPI_ADR_SPACE_FIXED_HARDWARE && |
694 | policy->cpuinfo.transition_latency > 20 * 1000) { | 694 | policy->cpuinfo.transition_latency > 20 * 1000) { |
695 | policy->cpuinfo.transition_latency = 20 * 1000; | 695 | policy->cpuinfo.transition_latency = 20 * 1000; |
696 | printk_once(KERN_INFO "Capping off P-state tranision" | 696 | printk_once(KERN_INFO |
697 | " latency at 20 uS\n"); | 697 | "P-state transition latency capped at 20 uS\n"); |
698 | } | 698 | } |
699 | 699 | ||
700 | /* table init */ | 700 | /* table init */ |
diff --git a/arch/x86/lguest/Makefile b/arch/x86/lguest/Makefile index 27f0c9ed7f60..94e0e54056a9 100644 --- a/arch/x86/lguest/Makefile +++ b/arch/x86/lguest/Makefile | |||
@@ -1 +1,2 @@ | |||
1 | obj-y := i386_head.o boot.o | 1 | obj-y := i386_head.o boot.o |
2 | CFLAGS_boot.o := $(call cc-option, -fno-stack-protector) | ||
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c index ca7ec44bafc3..33a93b417396 100644 --- a/arch/x86/lguest/boot.c +++ b/arch/x86/lguest/boot.c | |||
@@ -67,6 +67,7 @@ | |||
67 | #include <asm/mce.h> | 67 | #include <asm/mce.h> |
68 | #include <asm/io.h> | 68 | #include <asm/io.h> |
69 | #include <asm/i387.h> | 69 | #include <asm/i387.h> |
70 | #include <asm/stackprotector.h> | ||
70 | #include <asm/reboot.h> /* for struct machine_ops */ | 71 | #include <asm/reboot.h> /* for struct machine_ops */ |
71 | 72 | ||
72 | /*G:010 Welcome to the Guest! | 73 | /*G:010 Welcome to the Guest! |
@@ -1088,13 +1089,21 @@ __init void lguest_init(void) | |||
1088 | * lguest_init() where the rest of the fairly chaotic boot setup | 1089 | * lguest_init() where the rest of the fairly chaotic boot setup |
1089 | * occurs. */ | 1090 | * occurs. */ |
1090 | 1091 | ||
1092 | /* The stack protector is a weird thing where gcc places a canary | ||
1093 | * value on the stack and then checks it on return. This file is | ||
1094 | * compiled with -fno-stack-protector it, so we got this far without | ||
1095 | * problems. The value of the canary is kept at offset 20 from the | ||
1096 | * %gs register, so we need to set that up before calling C functions | ||
1097 | * in other files. */ | ||
1098 | setup_stack_canary_segment(0); | ||
1099 | /* We could just call load_stack_canary_segment(), but we might as | ||
1100 | * call switch_to_new_gdt() which loads the whole table and sets up | ||
1101 | * the per-cpu segment descriptor register %fs as well. */ | ||
1102 | switch_to_new_gdt(0); | ||
1103 | |||
1091 | /* As described in head_32.S, we map the first 128M of memory. */ | 1104 | /* As described in head_32.S, we map the first 128M of memory. */ |
1092 | max_pfn_mapped = (128*1024*1024) >> PAGE_SHIFT; | 1105 | max_pfn_mapped = (128*1024*1024) >> PAGE_SHIFT; |
1093 | 1106 | ||
1094 | /* Load the %fs segment register (the per-cpu segment register) with | ||
1095 | * the normal data segment to get through booting. */ | ||
1096 | asm volatile ("mov %0, %%fs" : : "r" (__KERNEL_DS) : "memory"); | ||
1097 | |||
1098 | /* The Host<->Guest Switcher lives at the top of our address space, and | 1107 | /* The Host<->Guest Switcher lives at the top of our address space, and |
1099 | * the Host told us how big it is when we made LGUEST_INIT hypercall: | 1108 | * the Host told us how big it is when we made LGUEST_INIT hypercall: |
1100 | * it put the answer in lguest_data.reserve_mem */ | 1109 | * it put the answer in lguest_data.reserve_mem */ |