diff options
69 files changed, 732 insertions, 239 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 41c6605feb0a..cf4abddfc8a4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -624,6 +624,7 @@ M: paulius.zaleckas@teltonika.lt | |||
| 624 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) | 624 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 625 | T: git git://gitorious.org/linux-gemini/mainline.git | 625 | T: git git://gitorious.org/linux-gemini/mainline.git |
| 626 | S: Maintained | 626 | S: Maintained |
| 627 | F: arch/arm/mach-gemini/ | ||
| 627 | 628 | ||
| 628 | ARM/EBSA110 MACHINE SUPPORT | 629 | ARM/EBSA110 MACHINE SUPPORT |
| 629 | P: Russell King | 630 | P: Russell King |
| @@ -650,6 +651,7 @@ P: Paulius Zaleckas | |||
| 650 | M: paulius.zaleckas@teltonika.lt | 651 | M: paulius.zaleckas@teltonika.lt |
| 651 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) | 652 | L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only) |
| 652 | S: Maintained | 653 | S: Maintained |
| 654 | F: arch/arm/mm/*-fa* | ||
| 653 | 655 | ||
| 654 | ARM/FOOTBRIDGE ARCHITECTURE | 656 | ARM/FOOTBRIDGE ARCHITECTURE |
| 655 | P: Russell King | 657 | P: Russell King |
| @@ -1540,6 +1542,13 @@ W: http://www.fi.muni.cz/~kas/cosa/ | |||
| 1540 | S: Maintained | 1542 | S: Maintained |
| 1541 | F: drivers/net/wan/cosa* | 1543 | F: drivers/net/wan/cosa* |
| 1542 | 1544 | ||
| 1545 | CPMAC ETHERNET DRIVER | ||
| 1546 | P: Florian Fainelli | ||
| 1547 | M: florian@openwrt.org | ||
| 1548 | L: netdev@vger.kernel.org | ||
| 1549 | S: Maintained | ||
| 1550 | F: drivers/net/cpmac.c | ||
| 1551 | |||
| 1543 | CPU FREQUENCY DRIVERS | 1552 | CPU FREQUENCY DRIVERS |
| 1544 | P: Dave Jones | 1553 | P: Dave Jones |
| 1545 | M: davej@redhat.com | 1554 | M: davej@redhat.com |
| @@ -2249,7 +2258,7 @@ P: Li Yang | |||
| 2249 | M: leoli@freescale.com | 2258 | M: leoli@freescale.com |
| 2250 | P: Zhang Wei | 2259 | P: Zhang Wei |
| 2251 | M: zw@zh-kernel.org | 2260 | M: zw@zh-kernel.org |
| 2252 | L: linuxppc-embedded@ozlabs.org | 2261 | L: linuxppc-dev@ozlabs.org |
| 2253 | L: linux-kernel@vger.kernel.org | 2262 | L: linux-kernel@vger.kernel.org |
| 2254 | S: Maintained | 2263 | S: Maintained |
| 2255 | F: drivers/dma/fsldma.* | 2264 | F: drivers/dma/fsldma.* |
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/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/drivers/acpi/pci_bind.c b/drivers/acpi/pci_bind.c index 95650f83ce2e..bc46de3d967f 100644 --- a/drivers/acpi/pci_bind.c +++ b/drivers/acpi/pci_bind.c | |||
| @@ -116,9 +116,6 @@ int acpi_pci_bind(struct acpi_device *device) | |||
| 116 | struct acpi_pci_data *pdata; | 116 | struct acpi_pci_data *pdata; |
| 117 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 117 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 118 | acpi_handle handle; | 118 | acpi_handle handle; |
| 119 | struct pci_dev *dev; | ||
| 120 | struct pci_bus *bus; | ||
| 121 | |||
| 122 | 119 | ||
| 123 | if (!device || !device->parent) | 120 | if (!device || !device->parent) |
| 124 | return -EINVAL; | 121 | return -EINVAL; |
| @@ -176,20 +173,9 @@ int acpi_pci_bind(struct acpi_device *device) | |||
| 176 | * Locate matching device in PCI namespace. If it doesn't exist | 173 | * Locate matching device in PCI namespace. If it doesn't exist |
| 177 | * this typically means that the device isn't currently inserted | 174 | * this typically means that the device isn't currently inserted |
| 178 | * (e.g. docking station, port replicator, etc.). | 175 | * (e.g. docking station, port replicator, etc.). |
| 179 | * We cannot simply search the global pci device list, since | ||
| 180 | * PCI devices are added to the global pci list when the root | ||
| 181 | * bridge start ops are run, which may not have happened yet. | ||
| 182 | */ | 176 | */ |
| 183 | bus = pci_find_bus(data->id.segment, data->id.bus); | 177 | data->dev = pci_get_slot(pdata->bus, |
| 184 | if (bus) { | 178 | PCI_DEVFN(data->id.device, data->id.function)); |
| 185 | list_for_each_entry(dev, &bus->devices, bus_list) { | ||
| 186 | if (dev->devfn == PCI_DEVFN(data->id.device, | ||
| 187 | data->id.function)) { | ||
| 188 | data->dev = dev; | ||
| 189 | break; | ||
| 190 | } | ||
| 191 | } | ||
| 192 | } | ||
| 193 | if (!data->dev) { | 179 | if (!data->dev) { |
| 194 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, | 180 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 195 | "Device %04x:%02x:%02x.%d not present in PCI namespace\n", | 181 | "Device %04x:%02x:%02x.%d not present in PCI namespace\n", |
| @@ -259,9 +245,10 @@ int acpi_pci_bind(struct acpi_device *device) | |||
| 259 | 245 | ||
| 260 | end: | 246 | end: |
| 261 | kfree(buffer.pointer); | 247 | kfree(buffer.pointer); |
| 262 | if (result) | 248 | if (result) { |
| 249 | pci_dev_put(data->dev); | ||
| 263 | kfree(data); | 250 | kfree(data); |
| 264 | 251 | } | |
| 265 | return result; | 252 | return result; |
| 266 | } | 253 | } |
| 267 | 254 | ||
| @@ -303,6 +290,7 @@ static int acpi_pci_unbind(struct acpi_device *device) | |||
| 303 | if (data->dev->subordinate) { | 290 | if (data->dev->subordinate) { |
| 304 | acpi_pci_irq_del_prt(data->id.segment, data->bus->number); | 291 | acpi_pci_irq_del_prt(data->id.segment, data->bus->number); |
| 305 | } | 292 | } |
| 293 | pci_dev_put(data->dev); | ||
| 306 | kfree(data); | 294 | kfree(data); |
| 307 | 295 | ||
| 308 | end: | 296 | end: |
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 72069ba5f1ed..10a2d913635a 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
| @@ -148,6 +148,9 @@ static void acpi_timer_check_state(int state, struct acpi_processor *pr, | |||
| 148 | if (cpu_has(&cpu_data(pr->id), X86_FEATURE_ARAT)) | 148 | if (cpu_has(&cpu_data(pr->id), X86_FEATURE_ARAT)) |
| 149 | return; | 149 | return; |
| 150 | 150 | ||
| 151 | if (boot_cpu_has(X86_FEATURE_AMDC1E)) | ||
| 152 | type = ACPI_STATE_C1; | ||
| 153 | |||
| 151 | /* | 154 | /* |
| 152 | * Check, if one of the previous states already marked the lapic | 155 | * Check, if one of the previous states already marked the lapic |
| 153 | * unstable | 156 | * unstable |
| @@ -611,6 +614,7 @@ static int acpi_processor_power_verify(struct acpi_processor *pr) | |||
| 611 | switch (cx->type) { | 614 | switch (cx->type) { |
| 612 | case ACPI_STATE_C1: | 615 | case ACPI_STATE_C1: |
| 613 | cx->valid = 1; | 616 | cx->valid = 1; |
| 617 | acpi_timer_check_state(i, pr, cx); | ||
| 614 | break; | 618 | break; |
| 615 | 619 | ||
| 616 | case ACPI_STATE_C2: | 620 | case ACPI_STATE_C2: |
| @@ -830,11 +834,12 @@ static int acpi_idle_enter_c1(struct cpuidle_device *dev, | |||
| 830 | 834 | ||
| 831 | /* Do not access any ACPI IO ports in suspend path */ | 835 | /* Do not access any ACPI IO ports in suspend path */ |
| 832 | if (acpi_idle_suspend) { | 836 | if (acpi_idle_suspend) { |
| 833 | acpi_safe_halt(); | ||
| 834 | local_irq_enable(); | 837 | local_irq_enable(); |
| 838 | cpu_relax(); | ||
| 835 | return 0; | 839 | return 0; |
| 836 | } | 840 | } |
| 837 | 841 | ||
| 842 | acpi_state_timer_broadcast(pr, cx, 1); | ||
| 838 | kt1 = ktime_get_real(); | 843 | kt1 = ktime_get_real(); |
| 839 | acpi_idle_do_entry(cx); | 844 | acpi_idle_do_entry(cx); |
| 840 | kt2 = ktime_get_real(); | 845 | kt2 = ktime_get_real(); |
| @@ -842,6 +847,7 @@ static int acpi_idle_enter_c1(struct cpuidle_device *dev, | |||
| 842 | 847 | ||
| 843 | local_irq_enable(); | 848 | local_irq_enable(); |
| 844 | cx->usage++; | 849 | cx->usage++; |
| 850 | acpi_state_timer_broadcast(pr, cx, 0); | ||
| 845 | 851 | ||
| 846 | return idle_time; | 852 | return idle_time; |
| 847 | } | 853 | } |
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c index cafb41000f6b..60e543d3234e 100644 --- a/drivers/acpi/processor_perflib.c +++ b/drivers/acpi/processor_perflib.c | |||
| @@ -309,9 +309,15 @@ static int acpi_processor_get_performance_states(struct acpi_processor *pr) | |||
| 309 | (u32) px->bus_master_latency, | 309 | (u32) px->bus_master_latency, |
| 310 | (u32) px->control, (u32) px->status)); | 310 | (u32) px->control, (u32) px->status)); |
| 311 | 311 | ||
| 312 | if (!px->core_frequency) { | 312 | /* |
| 313 | printk(KERN_ERR PREFIX | 313 | * Check that ACPI's u64 MHz will be valid as u32 KHz in cpufreq |
| 314 | "Invalid _PSS data: freq is zero\n"); | 314 | */ |
| 315 | if (!px->core_frequency || | ||
| 316 | ((u32)(px->core_frequency * 1000) != | ||
| 317 | (px->core_frequency * 1000))) { | ||
| 318 | printk(KERN_ERR FW_BUG PREFIX | ||
| 319 | "Invalid BIOS _PSS frequency: 0x%llx MHz\n", | ||
| 320 | px->core_frequency); | ||
| 315 | result = -EFAULT; | 321 | result = -EFAULT; |
| 316 | kfree(pr->performance->states); | 322 | kfree(pr->performance->states); |
| 317 | goto end; | 323 | goto end; |
diff --git a/drivers/acpi/processor_throttling.c b/drivers/acpi/processor_throttling.c index 7f16f5f8e7d3..227543789ba9 100644 --- a/drivers/acpi/processor_throttling.c +++ b/drivers/acpi/processor_throttling.c | |||
| @@ -840,7 +840,7 @@ static int acpi_processor_get_throttling_ptc(struct acpi_processor *pr) | |||
| 840 | state = acpi_get_throttling_state(pr, value); | 840 | state = acpi_get_throttling_state(pr, value); |
| 841 | if (state == -1) { | 841 | if (state == -1) { |
| 842 | ACPI_WARNING((AE_INFO, | 842 | ACPI_WARNING((AE_INFO, |
| 843 | "Invalid throttling state, reset\n")); | 843 | "Invalid throttling state, reset")); |
| 844 | state = 0; | 844 | state = 0; |
| 845 | ret = acpi_processor_set_throttling(pr, state); | 845 | ret = acpi_processor_set_throttling(pr, state); |
| 846 | if (ret) | 846 | if (ret) |
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 810cca90ca7f..1bdfb37377e3 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c | |||
| @@ -570,6 +570,22 @@ static struct dmi_system_id video_dmi_table[] __initdata = { | |||
| 570 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"), | 570 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5710Z"), |
| 571 | }, | 571 | }, |
| 572 | }, | 572 | }, |
| 573 | { | ||
| 574 | .callback = video_set_bqc_offset, | ||
| 575 | .ident = "eMachines E510", | ||
| 576 | .matches = { | ||
| 577 | DMI_MATCH(DMI_BOARD_VENDOR, "EMACHINES"), | ||
| 578 | DMI_MATCH(DMI_PRODUCT_NAME, "eMachines E510"), | ||
| 579 | }, | ||
| 580 | }, | ||
| 581 | { | ||
| 582 | .callback = video_set_bqc_offset, | ||
| 583 | .ident = "Acer Aspire 5315", | ||
| 584 | .matches = { | ||
| 585 | DMI_MATCH(DMI_BOARD_VENDOR, "Acer"), | ||
| 586 | DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5315"), | ||
| 587 | }, | ||
| 588 | }, | ||
| 573 | {} | 589 | {} |
| 574 | }; | 590 | }; |
| 575 | 591 | ||
| @@ -2334,7 +2350,7 @@ static int __init acpi_video_init(void) | |||
| 2334 | return acpi_video_register(); | 2350 | return acpi_video_register(); |
| 2335 | } | 2351 | } |
| 2336 | 2352 | ||
| 2337 | void __exit acpi_video_exit(void) | 2353 | void acpi_video_exit(void) |
| 2338 | { | 2354 | { |
| 2339 | 2355 | ||
| 2340 | acpi_bus_unregister_driver(&acpi_video_bus); | 2356 | acpi_bus_unregister_driver(&acpi_video_bus); |
diff --git a/drivers/dma/fsldma.c b/drivers/dma/fsldma.c index da8a8ed9e411..f18d1bde0439 100644 --- a/drivers/dma/fsldma.c +++ b/drivers/dma/fsldma.c | |||
| @@ -179,9 +179,14 @@ static void dma_halt(struct fsl_dma_chan *fsl_chan) | |||
| 179 | static void set_ld_eol(struct fsl_dma_chan *fsl_chan, | 179 | static void set_ld_eol(struct fsl_dma_chan *fsl_chan, |
| 180 | struct fsl_desc_sw *desc) | 180 | struct fsl_desc_sw *desc) |
| 181 | { | 181 | { |
| 182 | u64 snoop_bits; | ||
| 183 | |||
| 184 | snoop_bits = ((fsl_chan->feature & FSL_DMA_IP_MASK) == FSL_DMA_IP_83XX) | ||
| 185 | ? FSL_DMA_SNEN : 0; | ||
| 186 | |||
| 182 | desc->hw.next_ln_addr = CPU_TO_DMA(fsl_chan, | 187 | desc->hw.next_ln_addr = CPU_TO_DMA(fsl_chan, |
| 183 | DMA_TO_CPU(fsl_chan, desc->hw.next_ln_addr, 64) | FSL_DMA_EOL, | 188 | DMA_TO_CPU(fsl_chan, desc->hw.next_ln_addr, 64) | FSL_DMA_EOL |
| 184 | 64); | 189 | | snoop_bits, 64); |
| 185 | } | 190 | } |
| 186 | 191 | ||
| 187 | static void append_ld_queue(struct fsl_dma_chan *fsl_chan, | 192 | static void append_ld_queue(struct fsl_dma_chan *fsl_chan, |
| @@ -313,8 +318,8 @@ static void fsl_chan_toggle_ext_start(struct fsl_dma_chan *fsl_chan, int enable) | |||
| 313 | 318 | ||
| 314 | static dma_cookie_t fsl_dma_tx_submit(struct dma_async_tx_descriptor *tx) | 319 | static dma_cookie_t fsl_dma_tx_submit(struct dma_async_tx_descriptor *tx) |
| 315 | { | 320 | { |
| 316 | struct fsl_desc_sw *desc = tx_to_fsl_desc(tx); | ||
| 317 | struct fsl_dma_chan *fsl_chan = to_fsl_chan(tx->chan); | 321 | struct fsl_dma_chan *fsl_chan = to_fsl_chan(tx->chan); |
| 322 | struct fsl_desc_sw *desc; | ||
| 318 | unsigned long flags; | 323 | unsigned long flags; |
| 319 | dma_cookie_t cookie; | 324 | dma_cookie_t cookie; |
| 320 | 325 | ||
| @@ -322,14 +327,17 @@ static dma_cookie_t fsl_dma_tx_submit(struct dma_async_tx_descriptor *tx) | |||
| 322 | spin_lock_irqsave(&fsl_chan->desc_lock, flags); | 327 | spin_lock_irqsave(&fsl_chan->desc_lock, flags); |
| 323 | 328 | ||
| 324 | cookie = fsl_chan->common.cookie; | 329 | cookie = fsl_chan->common.cookie; |
| 325 | cookie++; | 330 | list_for_each_entry(desc, &tx->tx_list, node) { |
| 326 | if (cookie < 0) | 331 | cookie++; |
| 327 | cookie = 1; | 332 | if (cookie < 0) |
| 328 | desc->async_tx.cookie = cookie; | 333 | cookie = 1; |
| 329 | fsl_chan->common.cookie = desc->async_tx.cookie; | ||
| 330 | 334 | ||
| 331 | append_ld_queue(fsl_chan, desc); | 335 | desc->async_tx.cookie = cookie; |
| 332 | list_splice_init(&desc->async_tx.tx_list, fsl_chan->ld_queue.prev); | 336 | } |
| 337 | |||
| 338 | fsl_chan->common.cookie = cookie; | ||
| 339 | append_ld_queue(fsl_chan, tx_to_fsl_desc(tx)); | ||
| 340 | list_splice_init(&tx->tx_list, fsl_chan->ld_queue.prev); | ||
| 333 | 341 | ||
| 334 | spin_unlock_irqrestore(&fsl_chan->desc_lock, flags); | 342 | spin_unlock_irqrestore(&fsl_chan->desc_lock, flags); |
| 335 | 343 | ||
| @@ -454,8 +462,8 @@ static struct dma_async_tx_descriptor *fsl_dma_prep_memcpy( | |||
| 454 | { | 462 | { |
| 455 | struct fsl_dma_chan *fsl_chan; | 463 | struct fsl_dma_chan *fsl_chan; |
| 456 | struct fsl_desc_sw *first = NULL, *prev = NULL, *new; | 464 | struct fsl_desc_sw *first = NULL, *prev = NULL, *new; |
| 465 | struct list_head *list; | ||
| 457 | size_t copy; | 466 | size_t copy; |
| 458 | LIST_HEAD(link_chain); | ||
| 459 | 467 | ||
| 460 | if (!chan) | 468 | if (!chan) |
| 461 | return NULL; | 469 | return NULL; |
| @@ -472,7 +480,7 @@ static struct dma_async_tx_descriptor *fsl_dma_prep_memcpy( | |||
| 472 | if (!new) { | 480 | if (!new) { |
| 473 | dev_err(fsl_chan->dev, | 481 | dev_err(fsl_chan->dev, |
| 474 | "No free memory for link descriptor\n"); | 482 | "No free memory for link descriptor\n"); |
| 475 | return NULL; | 483 | goto fail; |
| 476 | } | 484 | } |
| 477 | #ifdef FSL_DMA_LD_DEBUG | 485 | #ifdef FSL_DMA_LD_DEBUG |
| 478 | dev_dbg(fsl_chan->dev, "new link desc alloc %p\n", new); | 486 | dev_dbg(fsl_chan->dev, "new link desc alloc %p\n", new); |
| @@ -507,7 +515,19 @@ static struct dma_async_tx_descriptor *fsl_dma_prep_memcpy( | |||
| 507 | /* Set End-of-link to the last link descriptor of new list*/ | 515 | /* Set End-of-link to the last link descriptor of new list*/ |
| 508 | set_ld_eol(fsl_chan, new); | 516 | set_ld_eol(fsl_chan, new); |
| 509 | 517 | ||
| 510 | return first ? &first->async_tx : NULL; | 518 | return &first->async_tx; |
| 519 | |||
| 520 | fail: | ||
| 521 | if (!first) | ||
| 522 | return NULL; | ||
| 523 | |||
| 524 | list = &first->async_tx.tx_list; | ||
| 525 | list_for_each_entry_safe_reverse(new, prev, list, node) { | ||
| 526 | list_del(&new->node); | ||
| 527 | dma_pool_free(fsl_chan->desc_pool, new, new->async_tx.phys); | ||
| 528 | } | ||
| 529 | |||
| 530 | return NULL; | ||
| 511 | } | 531 | } |
| 512 | 532 | ||
| 513 | /** | 533 | /** |
| @@ -598,15 +618,16 @@ static void fsl_chan_xfer_ld_queue(struct fsl_dma_chan *fsl_chan) | |||
| 598 | dma_addr_t next_dest_addr; | 618 | dma_addr_t next_dest_addr; |
| 599 | unsigned long flags; | 619 | unsigned long flags; |
| 600 | 620 | ||
| 621 | spin_lock_irqsave(&fsl_chan->desc_lock, flags); | ||
| 622 | |||
| 601 | if (!dma_is_idle(fsl_chan)) | 623 | if (!dma_is_idle(fsl_chan)) |
| 602 | return; | 624 | goto out_unlock; |
| 603 | 625 | ||
| 604 | dma_halt(fsl_chan); | 626 | dma_halt(fsl_chan); |
| 605 | 627 | ||
| 606 | /* If there are some link descriptors | 628 | /* If there are some link descriptors |
| 607 | * not transfered in queue. We need to start it. | 629 | * not transfered in queue. We need to start it. |
| 608 | */ | 630 | */ |
| 609 | spin_lock_irqsave(&fsl_chan->desc_lock, flags); | ||
| 610 | 631 | ||
| 611 | /* Find the first un-transfer desciptor */ | 632 | /* Find the first un-transfer desciptor */ |
| 612 | for (ld_node = fsl_chan->ld_queue.next; | 633 | for (ld_node = fsl_chan->ld_queue.next; |
| @@ -617,19 +638,20 @@ static void fsl_chan_xfer_ld_queue(struct fsl_dma_chan *fsl_chan) | |||
| 617 | fsl_chan->common.cookie) == DMA_SUCCESS); | 638 | fsl_chan->common.cookie) == DMA_SUCCESS); |
| 618 | ld_node = ld_node->next); | 639 | ld_node = ld_node->next); |
| 619 | 640 | ||
| 620 | spin_unlock_irqrestore(&fsl_chan->desc_lock, flags); | ||
| 621 | |||
| 622 | if (ld_node != &fsl_chan->ld_queue) { | 641 | if (ld_node != &fsl_chan->ld_queue) { |
| 623 | /* Get the ld start address from ld_queue */ | 642 | /* Get the ld start address from ld_queue */ |
| 624 | next_dest_addr = to_fsl_desc(ld_node)->async_tx.phys; | 643 | next_dest_addr = to_fsl_desc(ld_node)->async_tx.phys; |
| 625 | dev_dbg(fsl_chan->dev, "xfer LDs staring from %p\n", | 644 | dev_dbg(fsl_chan->dev, "xfer LDs staring from 0x%llx\n", |
| 626 | (void *)next_dest_addr); | 645 | (unsigned long long)next_dest_addr); |
| 627 | set_cdar(fsl_chan, next_dest_addr); | 646 | set_cdar(fsl_chan, next_dest_addr); |
| 628 | dma_start(fsl_chan); | 647 | dma_start(fsl_chan); |
| 629 | } else { | 648 | } else { |
| 630 | set_cdar(fsl_chan, 0); | 649 | set_cdar(fsl_chan, 0); |
| 631 | set_ndar(fsl_chan, 0); | 650 | set_ndar(fsl_chan, 0); |
| 632 | } | 651 | } |
| 652 | |||
| 653 | out_unlock: | ||
| 654 | spin_unlock_irqrestore(&fsl_chan->desc_lock, flags); | ||
| 633 | } | 655 | } |
| 634 | 656 | ||
| 635 | /** | 657 | /** |
| @@ -734,8 +756,9 @@ static irqreturn_t fsl_dma_chan_do_interrupt(int irq, void *data) | |||
| 734 | */ | 756 | */ |
| 735 | if (stat & FSL_DMA_SR_EOSI) { | 757 | if (stat & FSL_DMA_SR_EOSI) { |
| 736 | dev_dbg(fsl_chan->dev, "event: End-of-segments INT\n"); | 758 | dev_dbg(fsl_chan->dev, "event: End-of-segments INT\n"); |
| 737 | dev_dbg(fsl_chan->dev, "event: clndar %p, nlndar %p\n", | 759 | dev_dbg(fsl_chan->dev, "event: clndar 0x%llx, nlndar 0x%llx\n", |
| 738 | (void *)get_cdar(fsl_chan), (void *)get_ndar(fsl_chan)); | 760 | (unsigned long long)get_cdar(fsl_chan), |
| 761 | (unsigned long long)get_ndar(fsl_chan)); | ||
| 739 | stat &= ~FSL_DMA_SR_EOSI; | 762 | stat &= ~FSL_DMA_SR_EOSI; |
| 740 | update_cookie = 1; | 763 | update_cookie = 1; |
| 741 | } | 764 | } |
| @@ -830,7 +853,7 @@ static int __devinit fsl_dma_chan_probe(struct fsl_dma_device *fdev, | |||
| 830 | new_fsl_chan->reg.end - new_fsl_chan->reg.start + 1); | 853 | new_fsl_chan->reg.end - new_fsl_chan->reg.start + 1); |
| 831 | 854 | ||
| 832 | new_fsl_chan->id = ((new_fsl_chan->reg.start - 0x100) & 0xfff) >> 7; | 855 | new_fsl_chan->id = ((new_fsl_chan->reg.start - 0x100) & 0xfff) >> 7; |
| 833 | if (new_fsl_chan->id > FSL_DMA_MAX_CHANS_PER_DEVICE) { | 856 | if (new_fsl_chan->id >= FSL_DMA_MAX_CHANS_PER_DEVICE) { |
| 834 | dev_err(fdev->dev, "There is no %d channel!\n", | 857 | dev_err(fdev->dev, "There is no %d channel!\n", |
| 835 | new_fsl_chan->id); | 858 | new_fsl_chan->id); |
| 836 | err = -EINVAL; | 859 | err = -EINVAL; |
| @@ -925,8 +948,8 @@ static int __devinit of_fsl_dma_probe(struct of_device *dev, | |||
| 925 | } | 948 | } |
| 926 | 949 | ||
| 927 | dev_info(&dev->dev, "Probe the Freescale DMA driver for %s " | 950 | dev_info(&dev->dev, "Probe the Freescale DMA driver for %s " |
| 928 | "controller at %p...\n", | 951 | "controller at 0x%llx...\n", |
| 929 | match->compatible, (void *)fdev->reg.start); | 952 | match->compatible, (unsigned long long)fdev->reg.start); |
| 930 | fdev->reg_base = ioremap(fdev->reg.start, fdev->reg.end | 953 | fdev->reg_base = ioremap(fdev->reg.start, fdev->reg.end |
| 931 | - fdev->reg.start + 1); | 954 | - fdev->reg.start + 1); |
| 932 | 955 | ||
diff --git a/drivers/dma/ioat_dma.c b/drivers/dma/ioat_dma.c index 1955ee8d6d20..a600fc0f7962 100644 --- a/drivers/dma/ioat_dma.c +++ b/drivers/dma/ioat_dma.c | |||
| @@ -173,7 +173,7 @@ static int ioat_dma_enumerate_channels(struct ioatdma_device *device) | |||
| 173 | xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale)); | 173 | xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale)); |
| 174 | 174 | ||
| 175 | #ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL | 175 | #ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL |
| 176 | if (i7300_idle_platform_probe(NULL, NULL) == 0) { | 176 | if (i7300_idle_platform_probe(NULL, NULL, 1) == 0) { |
| 177 | device->common.chancnt--; | 177 | device->common.chancnt--; |
| 178 | } | 178 | } |
| 179 | #endif | 179 | #endif |
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 4cd35d8fd799..f5d46e7199d4 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig | |||
| @@ -67,12 +67,18 @@ config DRM_I830 | |||
| 67 | will load the correct one. | 67 | will load the correct one. |
| 68 | 68 | ||
| 69 | config DRM_I915 | 69 | config DRM_I915 |
| 70 | tristate "i915 driver" | ||
| 70 | select FB_CFB_FILLRECT | 71 | select FB_CFB_FILLRECT |
| 71 | select FB_CFB_COPYAREA | 72 | select FB_CFB_COPYAREA |
| 72 | select FB_CFB_IMAGEBLIT | 73 | select FB_CFB_IMAGEBLIT |
| 73 | select FB | 74 | select FB |
| 74 | select FRAMEBUFFER_CONSOLE if !EMBEDDED | 75 | select FRAMEBUFFER_CONSOLE if !EMBEDDED |
| 75 | tristate "i915 driver" | 76 | # i915 depends on ACPI_VIDEO when ACPI is enabled |
| 77 | # but for select to work, need to select ACPI_VIDEO's dependencies, ick | ||
| 78 | select VIDEO_OUTPUT_CONTROL if ACPI | ||
| 79 | select BACKLIGHT_CLASS_DEVICE if ACPI | ||
| 80 | select INPUT if ACPI | ||
| 81 | select ACPI_VIDEO if ACPI | ||
| 76 | help | 82 | help |
| 77 | Choose this option if you have a system that has Intel 830M, 845G, | 83 | Choose this option if you have a system that has Intel 830M, 845G, |
| 78 | 852GM, 855GM 865G or 915G integrated graphics. If M is selected, the | 84 | 852GM, 855GM 865G or 915G integrated graphics. If M is selected, the |
| @@ -84,12 +90,6 @@ config DRM_I915 | |||
| 84 | config DRM_I915_KMS | 90 | config DRM_I915_KMS |
| 85 | bool "Enable modesetting on intel by default" | 91 | bool "Enable modesetting on intel by default" |
| 86 | depends on DRM_I915 | 92 | depends on DRM_I915 |
| 87 | # i915 KMS depends on ACPI_VIDEO when ACPI is enabled | ||
| 88 | # but for select to work, need to select ACPI_VIDEO's dependencies, ick | ||
| 89 | select VIDEO_OUTPUT_CONTROL if ACPI | ||
| 90 | select BACKLIGHT_CLASS_DEVICE if ACPI | ||
| 91 | select INPUT if ACPI | ||
| 92 | select ACPI_VIDEO if ACPI | ||
| 93 | help | 93 | help |
| 94 | Choose this option if you want kernel modesetting enabled by default, | 94 | Choose this option if you want kernel modesetting enabled by default, |
| 95 | and you have a new enough userspace to support this. Running old | 95 | and you have a new enough userspace to support this. Running old |
diff --git a/drivers/ide/ide-pci-generic.c b/drivers/ide/ide-pci-generic.c index 61111fd27130..39d4e01f5c9c 100644 --- a/drivers/ide/ide-pci-generic.c +++ b/drivers/ide/ide-pci-generic.c | |||
| @@ -33,6 +33,16 @@ static int ide_generic_all; /* Set to claim all devices */ | |||
| 33 | module_param_named(all_generic_ide, ide_generic_all, bool, 0444); | 33 | module_param_named(all_generic_ide, ide_generic_all, bool, 0444); |
| 34 | MODULE_PARM_DESC(all_generic_ide, "IDE generic will claim all unknown PCI IDE storage controllers."); | 34 | MODULE_PARM_DESC(all_generic_ide, "IDE generic will claim all unknown PCI IDE storage controllers."); |
| 35 | 35 | ||
| 36 | static void netcell_quirkproc(ide_drive_t *drive) | ||
| 37 | { | ||
| 38 | /* mark words 85-87 as valid */ | ||
| 39 | drive->id[ATA_ID_CSF_DEFAULT] |= 0x4000; | ||
| 40 | } | ||
| 41 | |||
| 42 | static const struct ide_port_ops netcell_port_ops = { | ||
| 43 | .quirkproc = netcell_quirkproc, | ||
| 44 | }; | ||
| 45 | |||
| 36 | #define DECLARE_GENERIC_PCI_DEV(extra_flags) \ | 46 | #define DECLARE_GENERIC_PCI_DEV(extra_flags) \ |
| 37 | { \ | 47 | { \ |
| 38 | .name = DRV_NAME, \ | 48 | .name = DRV_NAME, \ |
| @@ -74,6 +84,7 @@ static const struct ide_port_info generic_chipsets[] __devinitdata = { | |||
| 74 | 84 | ||
| 75 | { /* 6: Revolution */ | 85 | { /* 6: Revolution */ |
| 76 | .name = DRV_NAME, | 86 | .name = DRV_NAME, |
| 87 | .port_ops = &netcell_port_ops, | ||
| 77 | .host_flags = IDE_HFLAG_CLEAR_SIMPLEX | | 88 | .host_flags = IDE_HFLAG_CLEAR_SIMPLEX | |
| 78 | IDE_HFLAG_TRUST_BIOS_FOR_DMA | | 89 | IDE_HFLAG_TRUST_BIOS_FOR_DMA | |
| 79 | IDE_HFLAG_OFF_BOARD, | 90 | IDE_HFLAG_OFF_BOARD, |
diff --git a/drivers/idle/i7300_idle.c b/drivers/idle/i7300_idle.c index bf740394d704..949c97ff57e3 100644 --- a/drivers/idle/i7300_idle.c +++ b/drivers/idle/i7300_idle.c | |||
| @@ -41,6 +41,10 @@ static int debug; | |||
| 41 | module_param_named(debug, debug, uint, 0644); | 41 | module_param_named(debug, debug, uint, 0644); |
| 42 | MODULE_PARM_DESC(debug, "Enable debug printks in this driver"); | 42 | MODULE_PARM_DESC(debug, "Enable debug printks in this driver"); |
| 43 | 43 | ||
| 44 | static int forceload; | ||
| 45 | module_param_named(forceload, forceload, uint, 0644); | ||
| 46 | MODULE_PARM_DESC(debug, "Enable driver testing on unvalidated i5000"); | ||
| 47 | |||
| 44 | #define dprintk(fmt, arg...) \ | 48 | #define dprintk(fmt, arg...) \ |
| 45 | do { if (debug) printk(KERN_INFO I7300_PRINT fmt, ##arg); } while (0) | 49 | do { if (debug) printk(KERN_INFO I7300_PRINT fmt, ##arg); } while (0) |
| 46 | 50 | ||
| @@ -552,7 +556,7 @@ static int __init i7300_idle_init(void) | |||
| 552 | cpus_clear(idle_cpumask); | 556 | cpus_clear(idle_cpumask); |
| 553 | total_us = 0; | 557 | total_us = 0; |
| 554 | 558 | ||
| 555 | if (i7300_idle_platform_probe(&fbd_dev, &ioat_dev)) | 559 | if (i7300_idle_platform_probe(&fbd_dev, &ioat_dev, forceload)) |
| 556 | return -ENODEV; | 560 | return -ENODEV; |
| 557 | 561 | ||
| 558 | if (i7300_idle_thrt_save()) | 562 | if (i7300_idle_thrt_save()) |
diff --git a/drivers/net/3c509.c b/drivers/net/3c509.c index fbb371921991..682aad897081 100644 --- a/drivers/net/3c509.c +++ b/drivers/net/3c509.c | |||
| @@ -480,9 +480,13 @@ static int pnp_registered; | |||
| 480 | 480 | ||
| 481 | #ifdef CONFIG_EISA | 481 | #ifdef CONFIG_EISA |
| 482 | static struct eisa_device_id el3_eisa_ids[] = { | 482 | static struct eisa_device_id el3_eisa_ids[] = { |
| 483 | { "TCM5090" }, | ||
| 484 | { "TCM5091" }, | ||
| 483 | { "TCM5092" }, | 485 | { "TCM5092" }, |
| 484 | { "TCM5093" }, | 486 | { "TCM5093" }, |
| 487 | { "TCM5094" }, | ||
| 485 | { "TCM5095" }, | 488 | { "TCM5095" }, |
| 489 | { "TCM5098" }, | ||
| 486 | { "" } | 490 | { "" } |
| 487 | }; | 491 | }; |
| 488 | MODULE_DEVICE_TABLE(eisa, el3_eisa_ids); | 492 | MODULE_DEVICE_TABLE(eisa, el3_eisa_ids); |
diff --git a/drivers/net/atl1e/atl1e_main.c b/drivers/net/atl1e/atl1e_main.c index fb57b750866b..1342418fb209 100644 --- a/drivers/net/atl1e/atl1e_main.c +++ b/drivers/net/atl1e/atl1e_main.c | |||
| @@ -37,6 +37,7 @@ char atl1e_driver_version[] = DRV_VERSION; | |||
| 37 | */ | 37 | */ |
| 38 | static struct pci_device_id atl1e_pci_tbl[] = { | 38 | static struct pci_device_id atl1e_pci_tbl[] = { |
| 39 | {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC, PCI_DEVICE_ID_ATTANSIC_L1E)}, | 39 | {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC, PCI_DEVICE_ID_ATTANSIC_L1E)}, |
| 40 | {PCI_DEVICE(PCI_VENDOR_ID_ATTANSIC, 0x1066)}, | ||
| 40 | /* required last entry */ | 41 | /* required last entry */ |
| 41 | { 0 } | 42 | { 0 } |
| 42 | }; | 43 | }; |
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index 0ab22540bf59..4e817126e280 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c | |||
| @@ -82,6 +82,12 @@ | |||
| 82 | 82 | ||
| 83 | #include "atl1.h" | 83 | #include "atl1.h" |
| 84 | 84 | ||
| 85 | #define ATLX_DRIVER_VERSION "2.1.3" | ||
| 86 | MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, \ | ||
| 87 | Chris Snook <csnook@redhat.com>, Jay Cliburn <jcliburn@gmail.com>"); | ||
| 88 | MODULE_LICENSE("GPL"); | ||
| 89 | MODULE_VERSION(ATLX_DRIVER_VERSION); | ||
| 90 | |||
| 85 | /* Temporary hack for merging atl1 and atl2 */ | 91 | /* Temporary hack for merging atl1 and atl2 */ |
| 86 | #include "atlx.c" | 92 | #include "atlx.c" |
| 87 | 93 | ||
diff --git a/drivers/net/atlx/atlx.h b/drivers/net/atlx/atlx.h index 297a03da6b7f..14054b75aa62 100644 --- a/drivers/net/atlx/atlx.h +++ b/drivers/net/atlx/atlx.h | |||
| @@ -29,12 +29,6 @@ | |||
| 29 | #include <linux/module.h> | 29 | #include <linux/module.h> |
| 30 | #include <linux/types.h> | 30 | #include <linux/types.h> |
| 31 | 31 | ||
| 32 | #define ATLX_DRIVER_VERSION "2.1.3" | ||
| 33 | MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, \ | ||
| 34 | Chris Snook <csnook@redhat.com>, Jay Cliburn <jcliburn@gmail.com>"); | ||
| 35 | MODULE_LICENSE("GPL"); | ||
| 36 | MODULE_VERSION(ATLX_DRIVER_VERSION); | ||
| 37 | |||
| 38 | #define ATLX_ERR_PHY 2 | 32 | #define ATLX_ERR_PHY 2 |
| 39 | #define ATLX_ERR_PHY_SPEED 7 | 33 | #define ATLX_ERR_PHY_SPEED 7 |
| 40 | #define ATLX_ERR_PHY_RES 8 | 34 | #define ATLX_ERR_PHY_RES 8 |
diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index 9f971ed6b58d..b4da18213324 100644 --- a/drivers/net/bfin_mac.c +++ b/drivers/net/bfin_mac.c | |||
| @@ -979,22 +979,7 @@ static int bfin_mac_open(struct net_device *dev) | |||
| 979 | return 0; | 979 | return 0; |
| 980 | } | 980 | } |
| 981 | 981 | ||
| 982 | static const struct net_device_ops bfin_mac_netdev_ops = { | ||
| 983 | .ndo_open = bfin_mac_open, | ||
| 984 | .ndo_stop = bfin_mac_close, | ||
| 985 | .ndo_start_xmit = bfin_mac_hard_start_xmit, | ||
| 986 | .ndo_set_mac_address = bfin_mac_set_mac_address, | ||
| 987 | .ndo_tx_timeout = bfin_mac_timeout, | ||
| 988 | .ndo_set_multicast_list = bfin_mac_set_multicast_list, | ||
| 989 | .ndo_validate_addr = eth_validate_addr, | ||
| 990 | .ndo_change_mtu = eth_change_mtu, | ||
| 991 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 992 | .ndo_poll_controller = bfin_mac_poll, | ||
| 993 | #endif | ||
| 994 | }; | ||
| 995 | |||
| 996 | /* | 982 | /* |
| 997 | * | ||
| 998 | * this makes the board clean up everything that it can | 983 | * this makes the board clean up everything that it can |
| 999 | * and not talk to the outside world. Caused by | 984 | * and not talk to the outside world. Caused by |
| 1000 | * an 'ifconfig ethX down' | 985 | * an 'ifconfig ethX down' |
| @@ -1019,6 +1004,20 @@ static int bfin_mac_close(struct net_device *dev) | |||
| 1019 | return 0; | 1004 | return 0; |
| 1020 | } | 1005 | } |
| 1021 | 1006 | ||
| 1007 | static const struct net_device_ops bfin_mac_netdev_ops = { | ||
| 1008 | .ndo_open = bfin_mac_open, | ||
| 1009 | .ndo_stop = bfin_mac_close, | ||
| 1010 | .ndo_start_xmit = bfin_mac_hard_start_xmit, | ||
| 1011 | .ndo_set_mac_address = bfin_mac_set_mac_address, | ||
| 1012 | .ndo_tx_timeout = bfin_mac_timeout, | ||
| 1013 | .ndo_set_multicast_list = bfin_mac_set_multicast_list, | ||
| 1014 | .ndo_validate_addr = eth_validate_addr, | ||
| 1015 | .ndo_change_mtu = eth_change_mtu, | ||
| 1016 | #ifdef CONFIG_NET_POLL_CONTROLLER | ||
| 1017 | .ndo_poll_controller = bfin_mac_poll, | ||
| 1018 | #endif | ||
| 1019 | }; | ||
| 1020 | |||
| 1022 | static int __devinit bfin_mac_probe(struct platform_device *pdev) | 1021 | static int __devinit bfin_mac_probe(struct platform_device *pdev) |
| 1023 | { | 1022 | { |
| 1024 | struct net_device *ndev; | 1023 | struct net_device *ndev; |
diff --git a/drivers/net/cxgb3/adapter.h b/drivers/net/cxgb3/adapter.h index 714df2b675e6..c888e97c9671 100644 --- a/drivers/net/cxgb3/adapter.h +++ b/drivers/net/cxgb3/adapter.h | |||
| @@ -85,8 +85,8 @@ struct fl_pg_chunk { | |||
| 85 | struct page *page; | 85 | struct page *page; |
| 86 | void *va; | 86 | void *va; |
| 87 | unsigned int offset; | 87 | unsigned int offset; |
| 88 | u64 *p_cnt; | 88 | unsigned long *p_cnt; |
| 89 | DECLARE_PCI_UNMAP_ADDR(mapping); | 89 | dma_addr_t mapping; |
| 90 | }; | 90 | }; |
| 91 | 91 | ||
| 92 | struct rx_desc; | 92 | struct rx_desc; |
diff --git a/drivers/net/cxgb3/cxgb3_main.c b/drivers/net/cxgb3/cxgb3_main.c index 7ea48414c6cb..17858b9a5830 100644 --- a/drivers/net/cxgb3/cxgb3_main.c +++ b/drivers/net/cxgb3/cxgb3_main.c | |||
| @@ -2496,14 +2496,16 @@ static void check_link_status(struct adapter *adapter) | |||
| 2496 | for_each_port(adapter, i) { | 2496 | for_each_port(adapter, i) { |
| 2497 | struct net_device *dev = adapter->port[i]; | 2497 | struct net_device *dev = adapter->port[i]; |
| 2498 | struct port_info *p = netdev_priv(dev); | 2498 | struct port_info *p = netdev_priv(dev); |
| 2499 | int link_fault; | ||
| 2499 | 2500 | ||
| 2500 | spin_lock_irq(&adapter->work_lock); | 2501 | spin_lock_irq(&adapter->work_lock); |
| 2501 | if (p->link_fault) { | 2502 | link_fault = p->link_fault; |
| 2503 | spin_unlock_irq(&adapter->work_lock); | ||
| 2504 | |||
| 2505 | if (link_fault) { | ||
| 2502 | t3_link_fault(adapter, i); | 2506 | t3_link_fault(adapter, i); |
| 2503 | spin_unlock_irq(&adapter->work_lock); | ||
| 2504 | continue; | 2507 | continue; |
| 2505 | } | 2508 | } |
| 2506 | spin_unlock_irq(&adapter->work_lock); | ||
| 2507 | 2509 | ||
| 2508 | if (!(p->phy.caps & SUPPORTED_IRQ) && netif_running(dev)) { | 2510 | if (!(p->phy.caps & SUPPORTED_IRQ) && netif_running(dev)) { |
| 2509 | t3_xgm_intr_disable(adapter, i); | 2511 | t3_xgm_intr_disable(adapter, i); |
diff --git a/drivers/net/cxgb3/sge.c b/drivers/net/cxgb3/sge.c index 26d3587f3399..b3ee2bc1a005 100644 --- a/drivers/net/cxgb3/sge.c +++ b/drivers/net/cxgb3/sge.c | |||
| @@ -355,7 +355,7 @@ static void clear_rx_desc(struct pci_dev *pdev, const struct sge_fl *q, | |||
| 355 | (*d->pg_chunk.p_cnt)--; | 355 | (*d->pg_chunk.p_cnt)--; |
| 356 | if (!*d->pg_chunk.p_cnt) | 356 | if (!*d->pg_chunk.p_cnt) |
| 357 | pci_unmap_page(pdev, | 357 | pci_unmap_page(pdev, |
| 358 | pci_unmap_addr(&d->pg_chunk, mapping), | 358 | d->pg_chunk.mapping, |
| 359 | q->alloc_size, PCI_DMA_FROMDEVICE); | 359 | q->alloc_size, PCI_DMA_FROMDEVICE); |
| 360 | 360 | ||
| 361 | put_page(d->pg_chunk.page); | 361 | put_page(d->pg_chunk.page); |
| @@ -454,7 +454,7 @@ static int alloc_pg_chunk(struct adapter *adapter, struct sge_fl *q, | |||
| 454 | q->pg_chunk.offset = 0; | 454 | q->pg_chunk.offset = 0; |
| 455 | mapping = pci_map_page(adapter->pdev, q->pg_chunk.page, | 455 | mapping = pci_map_page(adapter->pdev, q->pg_chunk.page, |
| 456 | 0, q->alloc_size, PCI_DMA_FROMDEVICE); | 456 | 0, q->alloc_size, PCI_DMA_FROMDEVICE); |
| 457 | pci_unmap_addr_set(&q->pg_chunk, mapping, mapping); | 457 | q->pg_chunk.mapping = mapping; |
| 458 | } | 458 | } |
| 459 | sd->pg_chunk = q->pg_chunk; | 459 | sd->pg_chunk = q->pg_chunk; |
| 460 | 460 | ||
| @@ -511,8 +511,7 @@ static int refill_fl(struct adapter *adap, struct sge_fl *q, int n, gfp_t gfp) | |||
| 511 | nomem: q->alloc_failed++; | 511 | nomem: q->alloc_failed++; |
| 512 | break; | 512 | break; |
| 513 | } | 513 | } |
| 514 | mapping = pci_unmap_addr(&sd->pg_chunk, mapping) + | 514 | mapping = sd->pg_chunk.mapping + sd->pg_chunk.offset; |
| 515 | sd->pg_chunk.offset; | ||
| 516 | pci_unmap_addr_set(sd, dma_addr, mapping); | 515 | pci_unmap_addr_set(sd, dma_addr, mapping); |
| 517 | 516 | ||
| 518 | add_one_rx_chunk(mapping, d, q->gen); | 517 | add_one_rx_chunk(mapping, d, q->gen); |
| @@ -881,7 +880,7 @@ recycle: | |||
| 881 | (*sd->pg_chunk.p_cnt)--; | 880 | (*sd->pg_chunk.p_cnt)--; |
| 882 | if (!*sd->pg_chunk.p_cnt) | 881 | if (!*sd->pg_chunk.p_cnt) |
| 883 | pci_unmap_page(adap->pdev, | 882 | pci_unmap_page(adap->pdev, |
| 884 | pci_unmap_addr(&sd->pg_chunk, mapping), | 883 | sd->pg_chunk.mapping, |
| 885 | fl->alloc_size, | 884 | fl->alloc_size, |
| 886 | PCI_DMA_FROMDEVICE); | 885 | PCI_DMA_FROMDEVICE); |
| 887 | if (!skb) { | 886 | if (!skb) { |
| @@ -2096,7 +2095,7 @@ static void lro_add_page(struct adapter *adap, struct sge_qset *qs, | |||
| 2096 | (*sd->pg_chunk.p_cnt)--; | 2095 | (*sd->pg_chunk.p_cnt)--; |
| 2097 | if (!*sd->pg_chunk.p_cnt) | 2096 | if (!*sd->pg_chunk.p_cnt) |
| 2098 | pci_unmap_page(adap->pdev, | 2097 | pci_unmap_page(adap->pdev, |
| 2099 | pci_unmap_addr(&sd->pg_chunk, mapping), | 2098 | sd->pg_chunk.mapping, |
| 2100 | fl->alloc_size, | 2099 | fl->alloc_size, |
| 2101 | PCI_DMA_FROMDEVICE); | 2100 | PCI_DMA_FROMDEVICE); |
| 2102 | 2101 | ||
diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c index 4f68aeb2679a..4950d5d789ae 100644 --- a/drivers/net/cxgb3/t3_hw.c +++ b/drivers/net/cxgb3/t3_hw.c | |||
| @@ -1274,6 +1274,11 @@ void t3_link_fault(struct adapter *adapter, int port_id) | |||
| 1274 | A_XGM_INT_STATUS + mac->offset); | 1274 | A_XGM_INT_STATUS + mac->offset); |
| 1275 | link_fault &= F_LINKFAULTCHANGE; | 1275 | link_fault &= F_LINKFAULTCHANGE; |
| 1276 | 1276 | ||
| 1277 | link_ok = lc->link_ok; | ||
| 1278 | speed = lc->speed; | ||
| 1279 | duplex = lc->duplex; | ||
| 1280 | fc = lc->fc; | ||
| 1281 | |||
| 1277 | phy->ops->get_link_status(phy, &link_ok, &speed, &duplex, &fc); | 1282 | phy->ops->get_link_status(phy, &link_ok, &speed, &duplex, &fc); |
| 1278 | 1283 | ||
| 1279 | if (link_fault) { | 1284 | if (link_fault) { |
diff --git a/drivers/net/gianfar.h b/drivers/net/gianfar.h index 0642d52aef5c..cf352961ae9b 100644 --- a/drivers/net/gianfar.h +++ b/drivers/net/gianfar.h | |||
| @@ -259,7 +259,7 @@ extern const char gfar_driver_version[]; | |||
| 259 | (IEVENT_RXC | IEVENT_BSY | IEVENT_EBERR | IEVENT_MSRO | \ | 259 | (IEVENT_RXC | IEVENT_BSY | IEVENT_EBERR | IEVENT_MSRO | \ |
| 260 | IEVENT_BABT | IEVENT_TXC | IEVENT_TXE | IEVENT_LC \ | 260 | IEVENT_BABT | IEVENT_TXC | IEVENT_TXE | IEVENT_LC \ |
| 261 | | IEVENT_CRL | IEVENT_XFUN | IEVENT_DPE | IEVENT_PERR \ | 261 | | IEVENT_CRL | IEVENT_XFUN | IEVENT_DPE | IEVENT_PERR \ |
| 262 | | IEVENT_MAG) | 262 | | IEVENT_MAG | IEVENT_BABR) |
| 263 | 263 | ||
| 264 | #define IMASK_INIT_CLEAR 0x00000000 | 264 | #define IMASK_INIT_CLEAR 0x00000000 |
| 265 | #define IMASK_BABR 0x80000000 | 265 | #define IMASK_BABR 0x80000000 |
diff --git a/drivers/net/mac8390.c b/drivers/net/mac8390.c index f26667d5eaae..22e74a0e0361 100644 --- a/drivers/net/mac8390.c +++ b/drivers/net/mac8390.c | |||
| @@ -489,7 +489,7 @@ static const struct net_device_ops mac8390_netdev_ops = { | |||
| 489 | .ndo_set_mac_address = eth_mac_addr, | 489 | .ndo_set_mac_address = eth_mac_addr, |
| 490 | .ndo_change_mtu = eth_change_mtu, | 490 | .ndo_change_mtu = eth_change_mtu, |
| 491 | #ifdef CONFIG_NET_POLL_CONTROLLER | 491 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 492 | .ndo_poll_controller = ei_poll, | 492 | .ndo_poll_controller = __ei_poll, |
| 493 | #endif | 493 | #endif |
| 494 | }; | 494 | }; |
| 495 | 495 | ||
diff --git a/drivers/net/mlx4/en_tx.c b/drivers/net/mlx4/en_tx.c index ac6fc499b280..e5c98a98ad37 100644 --- a/drivers/net/mlx4/en_tx.c +++ b/drivers/net/mlx4/en_tx.c | |||
| @@ -426,7 +426,7 @@ void mlx4_en_poll_tx_cq(unsigned long data) | |||
| 426 | 426 | ||
| 427 | INC_PERF_COUNTER(priv->pstats.tx_poll); | 427 | INC_PERF_COUNTER(priv->pstats.tx_poll); |
| 428 | 428 | ||
| 429 | if (!spin_trylock(&ring->comp_lock)) { | 429 | if (!spin_trylock_irq(&ring->comp_lock)) { |
| 430 | mod_timer(&cq->timer, jiffies + MLX4_EN_TX_POLL_TIMEOUT); | 430 | mod_timer(&cq->timer, jiffies + MLX4_EN_TX_POLL_TIMEOUT); |
| 431 | return; | 431 | return; |
| 432 | } | 432 | } |
| @@ -439,7 +439,7 @@ void mlx4_en_poll_tx_cq(unsigned long data) | |||
| 439 | if (inflight && priv->port_up) | 439 | if (inflight && priv->port_up) |
| 440 | mod_timer(&cq->timer, jiffies + MLX4_EN_TX_POLL_TIMEOUT); | 440 | mod_timer(&cq->timer, jiffies + MLX4_EN_TX_POLL_TIMEOUT); |
| 441 | 441 | ||
| 442 | spin_unlock(&ring->comp_lock); | 442 | spin_unlock_irq(&ring->comp_lock); |
| 443 | } | 443 | } |
| 444 | 444 | ||
| 445 | static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv, | 445 | static struct mlx4_en_tx_desc *mlx4_en_bounce_to_desc(struct mlx4_en_priv *priv, |
| @@ -482,9 +482,9 @@ static inline void mlx4_en_xmit_poll(struct mlx4_en_priv *priv, int tx_ind) | |||
| 482 | 482 | ||
| 483 | /* Poll the CQ every mlx4_en_TX_MODER_POLL packets */ | 483 | /* Poll the CQ every mlx4_en_TX_MODER_POLL packets */ |
| 484 | if ((++ring->poll_cnt & (MLX4_EN_TX_POLL_MODER - 1)) == 0) | 484 | if ((++ring->poll_cnt & (MLX4_EN_TX_POLL_MODER - 1)) == 0) |
| 485 | if (spin_trylock(&ring->comp_lock)) { | 485 | if (spin_trylock_irq(&ring->comp_lock)) { |
| 486 | mlx4_en_process_tx_cq(priv->dev, cq); | 486 | mlx4_en_process_tx_cq(priv->dev, cq); |
| 487 | spin_unlock(&ring->comp_lock); | 487 | spin_unlock_irq(&ring->comp_lock); |
| 488 | } | 488 | } |
| 489 | } | 489 | } |
| 490 | 490 | ||
diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig index 8a0823588c51..3d94e7dfea69 100644 --- a/drivers/net/wireless/Kconfig +++ b/drivers/net/wireless/Kconfig | |||
| @@ -430,6 +430,7 @@ config RTL8187 | |||
| 430 | ASUS P5B Deluxe | 430 | ASUS P5B Deluxe |
| 431 | Toshiba Satellite Pro series of laptops | 431 | Toshiba Satellite Pro series of laptops |
| 432 | Asus Wireless Link | 432 | Asus Wireless Link |
| 433 | Linksys WUSB54GC-EU | ||
| 433 | 434 | ||
| 434 | Thanks to Realtek for their support! | 435 | Thanks to Realtek for their support! |
| 435 | 436 | ||
diff --git a/drivers/net/wireless/at76c50x-usb.c b/drivers/net/wireless/at76c50x-usb.c index 744f4f4dd3d1..8d93ca4651b9 100644 --- a/drivers/net/wireless/at76c50x-usb.c +++ b/drivers/net/wireless/at76c50x-usb.c | |||
| @@ -1873,18 +1873,18 @@ static void at76_dwork_hw_scan(struct work_struct *work) | |||
| 1873 | if (ret != CMD_STATUS_COMPLETE) { | 1873 | if (ret != CMD_STATUS_COMPLETE) { |
| 1874 | queue_delayed_work(priv->hw->workqueue, &priv->dwork_hw_scan, | 1874 | queue_delayed_work(priv->hw->workqueue, &priv->dwork_hw_scan, |
| 1875 | SCAN_POLL_INTERVAL); | 1875 | SCAN_POLL_INTERVAL); |
| 1876 | goto exit; | 1876 | mutex_unlock(&priv->mtx); |
| 1877 | return; | ||
| 1877 | } | 1878 | } |
| 1878 | 1879 | ||
| 1879 | ieee80211_scan_completed(priv->hw, false); | ||
| 1880 | |||
| 1881 | if (is_valid_ether_addr(priv->bssid)) | 1880 | if (is_valid_ether_addr(priv->bssid)) |
| 1882 | at76_join(priv); | 1881 | at76_join(priv); |
| 1883 | 1882 | ||
| 1884 | ieee80211_wake_queues(priv->hw); | ||
| 1885 | |||
| 1886 | exit: | ||
| 1887 | mutex_unlock(&priv->mtx); | 1883 | mutex_unlock(&priv->mtx); |
| 1884 | |||
| 1885 | ieee80211_scan_completed(priv->hw, false); | ||
| 1886 | |||
| 1887 | ieee80211_wake_queues(priv->hw); | ||
| 1888 | } | 1888 | } |
| 1889 | 1889 | ||
| 1890 | static int at76_hw_scan(struct ieee80211_hw *hw, | 1890 | static int at76_hw_scan(struct ieee80211_hw *hw, |
diff --git a/drivers/net/wireless/rtl818x/rtl8187_dev.c b/drivers/net/wireless/rtl818x/rtl8187_dev.c index bac6cfba6abd..d51ba0a88c23 100644 --- a/drivers/net/wireless/rtl818x/rtl8187_dev.c +++ b/drivers/net/wireless/rtl818x/rtl8187_dev.c | |||
| @@ -71,6 +71,8 @@ static struct usb_device_id rtl8187_table[] __devinitdata = { | |||
| 71 | {USB_DEVICE(0x18E8, 0x6232), .driver_info = DEVICE_RTL8187}, | 71 | {USB_DEVICE(0x18E8, 0x6232), .driver_info = DEVICE_RTL8187}, |
| 72 | /* AirLive */ | 72 | /* AirLive */ |
| 73 | {USB_DEVICE(0x1b75, 0x8187), .driver_info = DEVICE_RTL8187}, | 73 | {USB_DEVICE(0x1b75, 0x8187), .driver_info = DEVICE_RTL8187}, |
| 74 | /* Linksys */ | ||
| 75 | {USB_DEVICE(0x1737, 0x0073), .driver_info = DEVICE_RTL8187B}, | ||
| 74 | {} | 76 | {} |
| 75 | }; | 77 | }; |
| 76 | 78 | ||
diff --git a/drivers/pci/hotplug/acpiphp.h b/drivers/pci/hotplug/acpiphp.h index 4fc168b70095..e68d5f20ffb3 100644 --- a/drivers/pci/hotplug/acpiphp.h +++ b/drivers/pci/hotplug/acpiphp.h | |||
| @@ -129,7 +129,6 @@ struct acpiphp_func { | |||
| 129 | struct acpiphp_bridge *bridge; /* Ejectable PCI-to-PCI bridge */ | 129 | struct acpiphp_bridge *bridge; /* Ejectable PCI-to-PCI bridge */ |
| 130 | 130 | ||
| 131 | struct list_head sibling; | 131 | struct list_head sibling; |
| 132 | struct pci_dev *pci_dev; | ||
| 133 | struct notifier_block nb; | 132 | struct notifier_block nb; |
| 134 | acpi_handle handle; | 133 | acpi_handle handle; |
| 135 | 134 | ||
diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index a33794d9e0dc..3a6064bce561 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c | |||
| @@ -32,9 +32,6 @@ | |||
| 32 | 32 | ||
| 33 | /* | 33 | /* |
| 34 | * Lifetime rules for pci_dev: | 34 | * Lifetime rules for pci_dev: |
| 35 | * - The one in acpiphp_func has its refcount elevated by pci_get_slot() | ||
| 36 | * when the driver is loaded or when an insertion event occurs. It loses | ||
| 37 | * a refcount when its ejected or the driver unloads. | ||
| 38 | * - The one in acpiphp_bridge has its refcount elevated by pci_get_slot() | 35 | * - The one in acpiphp_bridge has its refcount elevated by pci_get_slot() |
| 39 | * when the bridge is scanned and it loses a refcount when the bridge | 36 | * when the bridge is scanned and it loses a refcount when the bridge |
| 40 | * is removed. | 37 | * is removed. |
| @@ -130,6 +127,7 @@ register_slot(acpi_handle handle, u32 lvl, void *context, void **rv) | |||
| 130 | unsigned long long adr, sun; | 127 | unsigned long long adr, sun; |
| 131 | int device, function, retval; | 128 | int device, function, retval; |
| 132 | struct pci_bus *pbus = bridge->pci_bus; | 129 | struct pci_bus *pbus = bridge->pci_bus; |
| 130 | struct pci_dev *pdev; | ||
| 133 | 131 | ||
| 134 | if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle)) | 132 | if (!acpi_pci_check_ejectable(pbus, handle) && !is_dock_device(handle)) |
| 135 | return AE_OK; | 133 | return AE_OK; |
| @@ -213,10 +211,10 @@ register_slot(acpi_handle handle, u32 lvl, void *context, void **rv) | |||
| 213 | newfunc->slot = slot; | 211 | newfunc->slot = slot; |
| 214 | list_add_tail(&newfunc->sibling, &slot->funcs); | 212 | list_add_tail(&newfunc->sibling, &slot->funcs); |
| 215 | 213 | ||
| 216 | /* associate corresponding pci_dev */ | 214 | pdev = pci_get_slot(pbus, PCI_DEVFN(device, function)); |
| 217 | newfunc->pci_dev = pci_get_slot(pbus, PCI_DEVFN(device, function)); | 215 | if (pdev) { |
| 218 | if (newfunc->pci_dev) { | ||
| 219 | slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON); | 216 | slot->flags |= (SLOT_ENABLED | SLOT_POWEREDON); |
| 217 | pci_dev_put(pdev); | ||
| 220 | } | 218 | } |
| 221 | 219 | ||
| 222 | if (is_dock_device(handle)) { | 220 | if (is_dock_device(handle)) { |
| @@ -617,7 +615,6 @@ static void cleanup_bridge(struct acpiphp_bridge *bridge) | |||
| 617 | if (ACPI_FAILURE(status)) | 615 | if (ACPI_FAILURE(status)) |
| 618 | err("failed to remove notify handler\n"); | 616 | err("failed to remove notify handler\n"); |
| 619 | } | 617 | } |
| 620 | pci_dev_put(func->pci_dev); | ||
| 621 | list_del(list); | 618 | list_del(list); |
| 622 | kfree(func); | 619 | kfree(func); |
| 623 | } | 620 | } |
| @@ -1101,22 +1098,24 @@ static int __ref enable_device(struct acpiphp_slot *slot) | |||
| 1101 | pci_enable_bridges(bus); | 1098 | pci_enable_bridges(bus); |
| 1102 | pci_bus_add_devices(bus); | 1099 | pci_bus_add_devices(bus); |
| 1103 | 1100 | ||
| 1104 | /* associate pci_dev to our representation */ | ||
| 1105 | list_for_each (l, &slot->funcs) { | 1101 | list_for_each (l, &slot->funcs) { |
| 1106 | func = list_entry(l, struct acpiphp_func, sibling); | 1102 | func = list_entry(l, struct acpiphp_func, sibling); |
| 1107 | func->pci_dev = pci_get_slot(bus, PCI_DEVFN(slot->device, | 1103 | dev = pci_get_slot(bus, PCI_DEVFN(slot->device, |
| 1108 | func->function)); | 1104 | func->function)); |
| 1109 | if (!func->pci_dev) | 1105 | if (!dev) |
| 1110 | continue; | 1106 | continue; |
| 1111 | 1107 | ||
| 1112 | if (func->pci_dev->hdr_type != PCI_HEADER_TYPE_BRIDGE && | 1108 | if (dev->hdr_type != PCI_HEADER_TYPE_BRIDGE && |
| 1113 | func->pci_dev->hdr_type != PCI_HEADER_TYPE_CARDBUS) | 1109 | dev->hdr_type != PCI_HEADER_TYPE_CARDBUS) { |
| 1110 | pci_dev_put(dev); | ||
| 1114 | continue; | 1111 | continue; |
| 1112 | } | ||
| 1115 | 1113 | ||
| 1116 | status = find_p2p_bridge(func->handle, (u32)1, bus, NULL); | 1114 | status = find_p2p_bridge(func->handle, (u32)1, bus, NULL); |
| 1117 | if (ACPI_FAILURE(status)) | 1115 | if (ACPI_FAILURE(status)) |
| 1118 | warn("find_p2p_bridge failed (error code = 0x%x)\n", | 1116 | warn("find_p2p_bridge failed (error code = 0x%x)\n", |
| 1119 | status); | 1117 | status); |
| 1118 | pci_dev_put(dev); | ||
| 1120 | } | 1119 | } |
| 1121 | 1120 | ||
| 1122 | slot->flags |= SLOT_ENABLED; | 1121 | slot->flags |= SLOT_ENABLED; |
| @@ -1142,17 +1141,14 @@ static void disable_bridges(struct pci_bus *bus) | |||
| 1142 | */ | 1141 | */ |
| 1143 | static int disable_device(struct acpiphp_slot *slot) | 1142 | static int disable_device(struct acpiphp_slot *slot) |
| 1144 | { | 1143 | { |
| 1145 | int retval = 0; | ||
| 1146 | struct acpiphp_func *func; | 1144 | struct acpiphp_func *func; |
| 1147 | struct list_head *l; | 1145 | struct pci_dev *pdev; |
| 1148 | 1146 | ||
| 1149 | /* is this slot already disabled? */ | 1147 | /* is this slot already disabled? */ |
| 1150 | if (!(slot->flags & SLOT_ENABLED)) | 1148 | if (!(slot->flags & SLOT_ENABLED)) |
| 1151 | goto err_exit; | 1149 | goto err_exit; |
| 1152 | 1150 | ||
| 1153 | list_for_each (l, &slot->funcs) { | 1151 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 1154 | func = list_entry(l, struct acpiphp_func, sibling); | ||
| 1155 | |||
| 1156 | if (func->bridge) { | 1152 | if (func->bridge) { |
| 1157 | /* cleanup p2p bridges under this P2P bridge */ | 1153 | /* cleanup p2p bridges under this P2P bridge */ |
| 1158 | cleanup_p2p_bridge(func->bridge->handle, | 1154 | cleanup_p2p_bridge(func->bridge->handle, |
| @@ -1160,35 +1156,28 @@ static int disable_device(struct acpiphp_slot *slot) | |||
| 1160 | func->bridge = NULL; | 1156 | func->bridge = NULL; |
| 1161 | } | 1157 | } |
| 1162 | 1158 | ||
| 1163 | if (func->pci_dev) { | 1159 | pdev = pci_get_slot(slot->bridge->pci_bus, |
| 1164 | pci_stop_bus_device(func->pci_dev); | 1160 | PCI_DEVFN(slot->device, func->function)); |
| 1165 | if (func->pci_dev->subordinate) { | 1161 | if (pdev) { |
| 1166 | disable_bridges(func->pci_dev->subordinate); | 1162 | pci_stop_bus_device(pdev); |
| 1167 | pci_disable_device(func->pci_dev); | 1163 | if (pdev->subordinate) { |
| 1164 | disable_bridges(pdev->subordinate); | ||
| 1165 | pci_disable_device(pdev); | ||
| 1168 | } | 1166 | } |
| 1167 | pci_remove_bus_device(pdev); | ||
| 1168 | pci_dev_put(pdev); | ||
| 1169 | } | 1169 | } |
| 1170 | } | 1170 | } |
| 1171 | 1171 | ||
| 1172 | list_for_each (l, &slot->funcs) { | 1172 | list_for_each_entry(func, &slot->funcs, sibling) { |
| 1173 | func = list_entry(l, struct acpiphp_func, sibling); | ||
| 1174 | |||
| 1175 | acpiphp_unconfigure_ioapics(func->handle); | 1173 | acpiphp_unconfigure_ioapics(func->handle); |
| 1176 | acpiphp_bus_trim(func->handle); | 1174 | acpiphp_bus_trim(func->handle); |
| 1177 | /* try to remove anyway. | ||
| 1178 | * acpiphp_bus_add might have been failed */ | ||
| 1179 | |||
| 1180 | if (!func->pci_dev) | ||
| 1181 | continue; | ||
| 1182 | |||
| 1183 | pci_remove_bus_device(func->pci_dev); | ||
| 1184 | pci_dev_put(func->pci_dev); | ||
| 1185 | func->pci_dev = NULL; | ||
| 1186 | } | 1175 | } |
| 1187 | 1176 | ||
| 1188 | slot->flags &= (~SLOT_ENABLED); | 1177 | slot->flags &= (~SLOT_ENABLED); |
| 1189 | 1178 | ||
| 1190 | err_exit: | 1179 | err_exit: |
| 1191 | return retval; | 1180 | return 0; |
| 1192 | } | 1181 | } |
| 1193 | 1182 | ||
| 1194 | 1183 | ||
diff --git a/firmware/cis/.gitignore b/firmware/cis/.gitignore new file mode 100644 index 000000000000..1de39847f261 --- /dev/null +++ b/firmware/cis/.gitignore | |||
| @@ -0,0 +1 @@ | |||
| *.cis | |||
diff --git a/fs/nilfs2/cpfile.c b/fs/nilfs2/cpfile.c index e90b60dfced9..300f1cdfa862 100644 --- a/fs/nilfs2/cpfile.c +++ b/fs/nilfs2/cpfile.c | |||
| @@ -311,7 +311,7 @@ int nilfs_cpfile_delete_checkpoints(struct inode *cpfile, | |||
| 311 | ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh); | 311 | ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh); |
| 312 | if (ret < 0) { | 312 | if (ret < 0) { |
| 313 | if (ret != -ENOENT) | 313 | if (ret != -ENOENT) |
| 314 | goto out_sem; | 314 | goto out_header; |
| 315 | /* skip hole */ | 315 | /* skip hole */ |
| 316 | ret = 0; | 316 | ret = 0; |
| 317 | continue; | 317 | continue; |
| @@ -344,7 +344,7 @@ int nilfs_cpfile_delete_checkpoints(struct inode *cpfile, | |||
| 344 | continue; | 344 | continue; |
| 345 | printk(KERN_ERR "%s: cannot delete block\n", | 345 | printk(KERN_ERR "%s: cannot delete block\n", |
| 346 | __func__); | 346 | __func__); |
| 347 | goto out_sem; | 347 | goto out_header; |
| 348 | } | 348 | } |
| 349 | } | 349 | } |
| 350 | 350 | ||
| @@ -361,6 +361,8 @@ int nilfs_cpfile_delete_checkpoints(struct inode *cpfile, | |||
| 361 | nilfs_mdt_mark_dirty(cpfile); | 361 | nilfs_mdt_mark_dirty(cpfile); |
| 362 | kunmap_atomic(kaddr, KM_USER0); | 362 | kunmap_atomic(kaddr, KM_USER0); |
| 363 | } | 363 | } |
| 364 | |||
| 365 | out_header: | ||
| 364 | brelse(header_bh); | 366 | brelse(header_bh); |
| 365 | 367 | ||
| 366 | out_sem: | 368 | out_sem: |
diff --git a/include/linux/auto_fs.h b/include/linux/auto_fs.h index 63265852b7d1..7b09c8348fd3 100644 --- a/include/linux/auto_fs.h +++ b/include/linux/auto_fs.h | |||
| @@ -14,13 +14,12 @@ | |||
| 14 | #ifndef _LINUX_AUTO_FS_H | 14 | #ifndef _LINUX_AUTO_FS_H |
| 15 | #define _LINUX_AUTO_FS_H | 15 | #define _LINUX_AUTO_FS_H |
| 16 | 16 | ||
| 17 | #include <linux/types.h> | ||
| 17 | #ifdef __KERNEL__ | 18 | #ifdef __KERNEL__ |
| 18 | #include <linux/fs.h> | 19 | #include <linux/fs.h> |
| 19 | #include <linux/limits.h> | 20 | #include <linux/limits.h> |
| 20 | #include <linux/types.h> | ||
| 21 | #include <linux/ioctl.h> | 21 | #include <linux/ioctl.h> |
| 22 | #else | 22 | #else |
| 23 | #include <asm/types.h> | ||
| 24 | #include <sys/ioctl.h> | 23 | #include <sys/ioctl.h> |
| 25 | #endif /* __KERNEL__ */ | 24 | #endif /* __KERNEL__ */ |
| 26 | 25 | ||
diff --git a/include/linux/i7300_idle.h b/include/linux/i7300_idle.h index 05a80c44513c..1587b7dec505 100644 --- a/include/linux/i7300_idle.h +++ b/include/linux/i7300_idle.h | |||
| @@ -16,35 +16,33 @@ | |||
| 16 | struct fbd_ioat { | 16 | struct fbd_ioat { |
| 17 | unsigned int vendor; | 17 | unsigned int vendor; |
| 18 | unsigned int ioat_dev; | 18 | unsigned int ioat_dev; |
| 19 | unsigned int enabled; | ||
| 19 | }; | 20 | }; |
| 20 | 21 | ||
| 21 | /* | 22 | /* |
| 22 | * The i5000 chip-set has the same hooks as the i7300 | 23 | * The i5000 chip-set has the same hooks as the i7300 |
| 23 | * but support is disabled by default because this driver | 24 | * but it is not enabled by default and must be manually |
| 24 | * has not been validated on that platform. | 25 | * manually enabled with "forceload=1" because it is |
| 26 | * only lightly validated. | ||
| 25 | */ | 27 | */ |
| 26 | #define SUPPORT_I5000 0 | ||
| 27 | 28 | ||
| 28 | static const struct fbd_ioat fbd_ioat_list[] = { | 29 | static const struct fbd_ioat fbd_ioat_list[] = { |
| 29 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB}, | 30 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB, 1}, |
| 30 | #if SUPPORT_I5000 | 31 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT, 0}, |
| 31 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT}, | ||
| 32 | #endif | ||
| 33 | {0, 0} | 32 | {0, 0} |
| 34 | }; | 33 | }; |
| 35 | 34 | ||
| 36 | /* table of devices that work with this driver */ | 35 | /* table of devices that work with this driver */ |
| 37 | static const struct pci_device_id pci_tbl[] = { | 36 | static const struct pci_device_id pci_tbl[] = { |
| 38 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_FBD_CNB) }, | 37 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_FBD_CNB) }, |
| 39 | #if SUPPORT_I5000 | ||
| 40 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) }, | 38 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) }, |
| 41 | #endif | ||
| 42 | { } /* Terminating entry */ | 39 | { } /* Terminating entry */ |
| 43 | }; | 40 | }; |
| 44 | 41 | ||
| 45 | /* Check for known platforms with I/O-AT */ | 42 | /* Check for known platforms with I/O-AT */ |
| 46 | static inline int i7300_idle_platform_probe(struct pci_dev **fbd_dev, | 43 | static inline int i7300_idle_platform_probe(struct pci_dev **fbd_dev, |
| 47 | struct pci_dev **ioat_dev) | 44 | struct pci_dev **ioat_dev, |
| 45 | int enable_all) | ||
| 48 | { | 46 | { |
| 49 | int i; | 47 | int i; |
| 50 | struct pci_dev *memdev, *dmadev; | 48 | struct pci_dev *memdev, *dmadev; |
| @@ -69,6 +67,8 @@ static inline int i7300_idle_platform_probe(struct pci_dev **fbd_dev, | |||
| 69 | for (i = 0; fbd_ioat_list[i].vendor != 0; i++) { | 67 | for (i = 0; fbd_ioat_list[i].vendor != 0; i++) { |
| 70 | if (dmadev->vendor == fbd_ioat_list[i].vendor && | 68 | if (dmadev->vendor == fbd_ioat_list[i].vendor && |
| 71 | dmadev->device == fbd_ioat_list[i].ioat_dev) { | 69 | dmadev->device == fbd_ioat_list[i].ioat_dev) { |
| 70 | if (!(fbd_ioat_list[i].enabled || enable_all)) | ||
| 71 | continue; | ||
| 72 | if (fbd_dev) | 72 | if (fbd_dev) |
| 73 | *fbd_dev = memdev; | 73 | *fbd_dev = memdev; |
| 74 | if (ioat_dev) | 74 | if (ioat_dev) |
diff --git a/include/linux/net_dropmon.h b/include/linux/net_dropmon.h index 0217fb81a630..0e2e100c44a2 100644 --- a/include/linux/net_dropmon.h +++ b/include/linux/net_dropmon.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __NET_DROPMON_H | 1 | #ifndef __NET_DROPMON_H |
| 2 | #define __NET_DROPMON_H | 2 | #define __NET_DROPMON_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/netlink.h> | 5 | #include <linux/netlink.h> |
| 5 | 6 | ||
| 6 | struct net_dm_drop_point { | 7 | struct net_dm_drop_point { |
diff --git a/include/linux/netfilter/nf_conntrack_tcp.h b/include/linux/netfilter/nf_conntrack_tcp.h index 3066789b972a..b2f384d42611 100644 --- a/include/linux/netfilter/nf_conntrack_tcp.h +++ b/include/linux/netfilter/nf_conntrack_tcp.h | |||
| @@ -35,6 +35,9 @@ enum tcp_conntrack { | |||
| 35 | /* Has unacknowledged data */ | 35 | /* Has unacknowledged data */ |
| 36 | #define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED 0x10 | 36 | #define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED 0x10 |
| 37 | 37 | ||
| 38 | /* The field td_maxack has been set */ | ||
| 39 | #define IP_CT_TCP_FLAG_MAXACK_SET 0x20 | ||
| 40 | |||
| 38 | struct nf_ct_tcp_flags { | 41 | struct nf_ct_tcp_flags { |
| 39 | __u8 flags; | 42 | __u8 flags; |
| 40 | __u8 mask; | 43 | __u8 mask; |
| @@ -46,6 +49,7 @@ struct ip_ct_tcp_state { | |||
| 46 | u_int32_t td_end; /* max of seq + len */ | 49 | u_int32_t td_end; /* max of seq + len */ |
| 47 | u_int32_t td_maxend; /* max of ack + max(win, 1) */ | 50 | u_int32_t td_maxend; /* max of ack + max(win, 1) */ |
| 48 | u_int32_t td_maxwin; /* max(win) */ | 51 | u_int32_t td_maxwin; /* max(win) */ |
| 52 | u_int32_t td_maxack; /* max of ack */ | ||
| 49 | u_int8_t td_scale; /* window scale factor */ | 53 | u_int8_t td_scale; /* window scale factor */ |
| 50 | u_int8_t flags; /* per direction options */ | 54 | u_int8_t flags; /* per direction options */ |
| 51 | }; | 55 | }; |
diff --git a/net/netfilter/nf_conntrack_proto_dccp.c b/net/netfilter/nf_conntrack_proto_dccp.c index 8e757dd53396..aee0d6bea309 100644 --- a/net/netfilter/nf_conntrack_proto_dccp.c +++ b/net/netfilter/nf_conntrack_proto_dccp.c | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include <linux/netfilter/nfnetlink_conntrack.h> | 22 | #include <linux/netfilter/nfnetlink_conntrack.h> |
| 23 | #include <net/netfilter/nf_conntrack.h> | 23 | #include <net/netfilter/nf_conntrack.h> |
| 24 | #include <net/netfilter/nf_conntrack_l4proto.h> | 24 | #include <net/netfilter/nf_conntrack_l4proto.h> |
| 25 | #include <net/netfilter/nf_conntrack_ecache.h> | ||
| 25 | #include <net/netfilter/nf_log.h> | 26 | #include <net/netfilter/nf_log.h> |
| 26 | 27 | ||
| 27 | static DEFINE_RWLOCK(dccp_lock); | 28 | static DEFINE_RWLOCK(dccp_lock); |
| @@ -553,6 +554,9 @@ static int dccp_packet(struct nf_conn *ct, const struct sk_buff *skb, | |||
| 553 | ct->proto.dccp.state = new_state; | 554 | ct->proto.dccp.state = new_state; |
| 554 | write_unlock_bh(&dccp_lock); | 555 | write_unlock_bh(&dccp_lock); |
| 555 | 556 | ||
| 557 | if (new_state != old_state) | ||
| 558 | nf_conntrack_event_cache(IPCT_PROTOINFO, ct); | ||
| 559 | |||
| 556 | dn = dccp_pernet(net); | 560 | dn = dccp_pernet(net); |
| 557 | nf_ct_refresh_acct(ct, ctinfo, skb, dn->dccp_timeout[new_state]); | 561 | nf_ct_refresh_acct(ct, ctinfo, skb, dn->dccp_timeout[new_state]); |
| 558 | 562 | ||
diff --git a/net/netfilter/nf_conntrack_proto_tcp.c b/net/netfilter/nf_conntrack_proto_tcp.c index b5ccf2b4b2e7..97a6e93d742e 100644 --- a/net/netfilter/nf_conntrack_proto_tcp.c +++ b/net/netfilter/nf_conntrack_proto_tcp.c | |||
| @@ -634,6 +634,14 @@ static bool tcp_in_window(const struct nf_conn *ct, | |||
| 634 | sender->td_end = end; | 634 | sender->td_end = end; |
| 635 | sender->flags |= IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED; | 635 | sender->flags |= IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED; |
| 636 | } | 636 | } |
| 637 | if (tcph->ack) { | ||
| 638 | if (!(sender->flags & IP_CT_TCP_FLAG_MAXACK_SET)) { | ||
| 639 | sender->td_maxack = ack; | ||
| 640 | sender->flags |= IP_CT_TCP_FLAG_MAXACK_SET; | ||
| 641 | } else if (after(ack, sender->td_maxack)) | ||
| 642 | sender->td_maxack = ack; | ||
| 643 | } | ||
| 644 | |||
| 637 | /* | 645 | /* |
| 638 | * Update receiver data. | 646 | * Update receiver data. |
| 639 | */ | 647 | */ |
| @@ -919,6 +927,16 @@ static int tcp_packet(struct nf_conn *ct, | |||
| 919 | return -NF_ACCEPT; | 927 | return -NF_ACCEPT; |
| 920 | case TCP_CONNTRACK_CLOSE: | 928 | case TCP_CONNTRACK_CLOSE: |
| 921 | if (index == TCP_RST_SET | 929 | if (index == TCP_RST_SET |
| 930 | && (ct->proto.tcp.seen[!dir].flags & IP_CT_TCP_FLAG_MAXACK_SET) | ||
| 931 | && before(ntohl(th->seq), ct->proto.tcp.seen[!dir].td_maxack)) { | ||
| 932 | /* Invalid RST */ | ||
| 933 | write_unlock_bh(&tcp_lock); | ||
| 934 | if (LOG_INVALID(net, IPPROTO_TCP)) | ||
| 935 | nf_log_packet(pf, 0, skb, NULL, NULL, NULL, | ||
| 936 | "nf_ct_tcp: invalid RST "); | ||
| 937 | return -NF_ACCEPT; | ||
| 938 | } | ||
| 939 | if (index == TCP_RST_SET | ||
| 922 | && ((test_bit(IPS_SEEN_REPLY_BIT, &ct->status) | 940 | && ((test_bit(IPS_SEEN_REPLY_BIT, &ct->status) |
| 923 | && ct->proto.tcp.last_index == TCP_SYN_SET) | 941 | && ct->proto.tcp.last_index == TCP_SYN_SET) |
| 924 | || (!test_bit(IPS_ASSURED_BIT, &ct->status) | 942 | || (!test_bit(IPS_ASSURED_BIT, &ct->status) |
diff --git a/net/netfilter/nfnetlink_log.c b/net/netfilter/nfnetlink_log.c index fd326ac27ec8..66a6dd5c519a 100644 --- a/net/netfilter/nfnetlink_log.c +++ b/net/netfilter/nfnetlink_log.c | |||
| @@ -581,6 +581,12 @@ nfulnl_log_packet(u_int8_t pf, | |||
| 581 | + nla_total_size(sizeof(struct nfulnl_msg_packet_hw)) | 581 | + nla_total_size(sizeof(struct nfulnl_msg_packet_hw)) |
| 582 | + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp)); | 582 | + nla_total_size(sizeof(struct nfulnl_msg_packet_timestamp)); |
| 583 | 583 | ||
| 584 | if (in && skb_mac_header_was_set(skb)) { | ||
| 585 | size += nla_total_size(skb->dev->hard_header_len) | ||
| 586 | + nla_total_size(sizeof(u_int16_t)) /* hwtype */ | ||
| 587 | + nla_total_size(sizeof(u_int16_t)); /* hwlen */ | ||
| 588 | } | ||
| 589 | |||
| 584 | spin_lock_bh(&inst->lock); | 590 | spin_lock_bh(&inst->lock); |
| 585 | 591 | ||
| 586 | if (inst->flags & NFULNL_CFG_F_SEQ) | 592 | if (inst->flags & NFULNL_CFG_F_SEQ) |
diff --git a/net/netfilter/xt_hashlimit.c b/net/netfilter/xt_hashlimit.c index a5b5369c30f9..219dcdbe388c 100644 --- a/net/netfilter/xt_hashlimit.c +++ b/net/netfilter/xt_hashlimit.c | |||
| @@ -926,7 +926,7 @@ static int dl_seq_show(struct seq_file *s, void *v) | |||
| 926 | if (!hlist_empty(&htable->hash[*bucket])) { | 926 | if (!hlist_empty(&htable->hash[*bucket])) { |
| 927 | hlist_for_each_entry(ent, pos, &htable->hash[*bucket], node) | 927 | hlist_for_each_entry(ent, pos, &htable->hash[*bucket], node) |
| 928 | if (dl_seq_real_show(ent, htable->family, s)) | 928 | if (dl_seq_real_show(ent, htable->family, s)) |
| 929 | return 1; | 929 | return -1; |
| 930 | } | 930 | } |
| 931 | return 0; | 931 | return 0; |
| 932 | } | 932 | } |
diff --git a/net/sched/cls_cgroup.c b/net/sched/cls_cgroup.c index 91a3db4a76f8..cc29b44b1500 100644 --- a/net/sched/cls_cgroup.c +++ b/net/sched/cls_cgroup.c | |||
| @@ -104,8 +104,7 @@ static int cls_cgroup_classify(struct sk_buff *skb, struct tcf_proto *tp, | |||
| 104 | struct tcf_result *res) | 104 | struct tcf_result *res) |
| 105 | { | 105 | { |
| 106 | struct cls_cgroup_head *head = tp->root; | 106 | struct cls_cgroup_head *head = tp->root; |
| 107 | struct cgroup_cls_state *cs; | 107 | u32 classid; |
| 108 | int ret = 0; | ||
| 109 | 108 | ||
| 110 | /* | 109 | /* |
| 111 | * Due to the nature of the classifier it is required to ignore all | 110 | * Due to the nature of the classifier it is required to ignore all |
| @@ -121,17 +120,18 @@ static int cls_cgroup_classify(struct sk_buff *skb, struct tcf_proto *tp, | |||
| 121 | return -1; | 120 | return -1; |
| 122 | 121 | ||
| 123 | rcu_read_lock(); | 122 | rcu_read_lock(); |
| 124 | cs = task_cls_state(current); | 123 | classid = task_cls_state(current)->classid; |
| 125 | if (cs->classid && tcf_em_tree_match(skb, &head->ematches, NULL)) { | ||
| 126 | res->classid = cs->classid; | ||
| 127 | res->class = 0; | ||
| 128 | ret = tcf_exts_exec(skb, &head->exts, res); | ||
| 129 | } else | ||
| 130 | ret = -1; | ||
| 131 | |||
| 132 | rcu_read_unlock(); | 124 | rcu_read_unlock(); |
| 133 | 125 | ||
| 134 | return ret; | 126 | if (!classid) |
| 127 | return -1; | ||
| 128 | |||
| 129 | if (!tcf_em_tree_match(skb, &head->ematches, NULL)) | ||
| 130 | return -1; | ||
| 131 | |||
| 132 | res->classid = classid; | ||
| 133 | res->class = 0; | ||
| 134 | return tcf_exts_exec(skb, &head->exts, res); | ||
| 135 | } | 135 | } |
| 136 | 136 | ||
| 137 | static unsigned long cls_cgroup_get(struct tcf_proto *tp, u32 handle) | 137 | static unsigned long cls_cgroup_get(struct tcf_proto *tp, u32 handle) |
