diff options
129 files changed, 862 insertions, 348 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index c4a6e148732a..4dc465477665 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
| @@ -592,3 +592,11 @@ Why: In 3.0, we can now autodetect internal 3G device and already have | |||
| 592 | interface that was used by acer-wmi driver. It will replaced by | 592 | interface that was used by acer-wmi driver. It will replaced by |
| 593 | information log when acer-wmi initial. | 593 | information log when acer-wmi initial. |
| 594 | Who: Lee, Chun-Yi <jlee@novell.com> | 594 | Who: Lee, Chun-Yi <jlee@novell.com> |
| 595 | |||
| 596 | ---------------------------- | ||
| 597 | What: The XFS nodelaylog mount option | ||
| 598 | When: 3.3 | ||
| 599 | Why: The delaylog mode that has been the default since 2.6.39 has proven | ||
| 600 | stable, and the old code is in the way of additional improvements in | ||
| 601 | the log code. | ||
| 602 | Who: Christoph Hellwig <hch@lst.de> | ||
diff --git a/MAINTAINERS b/MAINTAINERS index 1a8cc600067d..28f65c249b97 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -2649,11 +2649,11 @@ F: drivers/net/wan/dlci.c | |||
| 2649 | F: drivers/net/wan/sdla.c | 2649 | F: drivers/net/wan/sdla.c |
| 2650 | 2650 | ||
| 2651 | FRAMEBUFFER LAYER | 2651 | FRAMEBUFFER LAYER |
| 2652 | M: Paul Mundt <lethal@linux-sh.org> | 2652 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
| 2653 | L: linux-fbdev@vger.kernel.org | 2653 | L: linux-fbdev@vger.kernel.org |
| 2654 | W: http://linux-fbdev.sourceforge.net/ | 2654 | W: http://linux-fbdev.sourceforge.net/ |
| 2655 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ | 2655 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
| 2656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6.git | 2656 | T: git git://github.com/schandinat/linux-2.6.git fbdev-next |
| 2657 | S: Maintained | 2657 | S: Maintained |
| 2658 | F: Documentation/fb/ | 2658 | F: Documentation/fb/ |
| 2659 | F: Documentation/devicetree/bindings/fb/ | 2659 | F: Documentation/devicetree/bindings/fb/ |
| @@ -4450,8 +4450,8 @@ M: "David S. Miller" <davem@davemloft.net> | |||
| 4450 | L: netdev@vger.kernel.org | 4450 | L: netdev@vger.kernel.org |
| 4451 | W: http://www.linuxfoundation.org/en/Net | 4451 | W: http://www.linuxfoundation.org/en/Net |
| 4452 | W: http://patchwork.ozlabs.org/project/netdev/list/ | 4452 | W: http://patchwork.ozlabs.org/project/netdev/list/ |
| 4453 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git | 4453 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 4454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git | 4454 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
| 4455 | S: Maintained | 4455 | S: Maintained |
| 4456 | F: net/ | 4456 | F: net/ |
| 4457 | F: include/net/ | 4457 | F: include/net/ |
| @@ -1,7 +1,7 @@ | |||
| 1 | VERSION = 3 | 1 | VERSION = 3 |
| 2 | PATCHLEVEL = 1 | 2 | PATCHLEVEL = 1 |
| 3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
| 4 | EXTRAVERSION = -rc4 | 4 | EXTRAVERSION = -rc5 |
| 5 | NAME = "Divemaster Edition" | 5 | NAME = "Divemaster Edition" |
| 6 | 6 | ||
| 7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 5ebc5d922ea1..3269576dbfa8 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -1271,6 +1271,18 @@ config ARM_ERRATA_754327 | |||
| 1271 | This workaround defines cpu_relax() as smp_mb(), preventing correctly | 1271 | This workaround defines cpu_relax() as smp_mb(), preventing correctly |
| 1272 | written polling loops from denying visibility of updates to memory. | 1272 | written polling loops from denying visibility of updates to memory. |
| 1273 | 1273 | ||
| 1274 | config ARM_ERRATA_364296 | ||
| 1275 | bool "ARM errata: Possible cache data corruption with hit-under-miss enabled" | ||
| 1276 | depends on CPU_V6 && !SMP | ||
| 1277 | help | ||
| 1278 | This options enables the workaround for the 364296 ARM1136 | ||
| 1279 | r0p2 erratum (possible cache data corruption with | ||
| 1280 | hit-under-miss enabled). It sets the undocumented bit 31 in | ||
| 1281 | the auxiliary control register and the FI bit in the control | ||
| 1282 | register, thus disabling hit-under-miss without putting the | ||
| 1283 | processor into full low interrupt latency mode. ARM11MPCore | ||
| 1284 | is not affected. | ||
| 1285 | |||
| 1274 | endmenu | 1286 | endmenu |
| 1275 | 1287 | ||
| 1276 | source "arch/arm/common/Kconfig" | 1288 | source "arch/arm/common/Kconfig" |
diff --git a/arch/arm/boot/compressed/mmcif-sh7372.c b/arch/arm/boot/compressed/mmcif-sh7372.c index b6f61d9a5a1b..672ae95db5c3 100644 --- a/arch/arm/boot/compressed/mmcif-sh7372.c +++ b/arch/arm/boot/compressed/mmcif-sh7372.c | |||
| @@ -82,7 +82,7 @@ asmlinkage void mmc_loader(unsigned char *buf, unsigned long len) | |||
| 82 | 82 | ||
| 83 | 83 | ||
| 84 | /* Disable clock to MMC hardware block */ | 84 | /* Disable clock to MMC hardware block */ |
| 85 | __raw_writel(__raw_readl(SMSTPCR3) & (1 << 12), SMSTPCR3); | 85 | __raw_writel(__raw_readl(SMSTPCR3) | (1 << 12), SMSTPCR3); |
| 86 | 86 | ||
| 87 | mmc_update_progress(MMC_PROGRESS_DONE); | 87 | mmc_update_progress(MMC_PROGRESS_DONE); |
| 88 | } | 88 | } |
diff --git a/arch/arm/boot/compressed/sdhi-sh7372.c b/arch/arm/boot/compressed/sdhi-sh7372.c index d403a8b24d7f..d279294f2381 100644 --- a/arch/arm/boot/compressed/sdhi-sh7372.c +++ b/arch/arm/boot/compressed/sdhi-sh7372.c | |||
| @@ -85,7 +85,7 @@ asmlinkage void mmc_loader(unsigned short *buf, unsigned long len) | |||
| 85 | goto err; | 85 | goto err; |
| 86 | 86 | ||
| 87 | /* Disable clock to SDHI1 hardware block */ | 87 | /* Disable clock to SDHI1 hardware block */ |
| 88 | __raw_writel(__raw_readl(SMSTPCR3) & (1 << 13), SMSTPCR3); | 88 | __raw_writel(__raw_readl(SMSTPCR3) | (1 << 13), SMSTPCR3); |
| 89 | 89 | ||
| 90 | mmc_update_progress(MMC_PROGRESS_DONE); | 90 | mmc_update_progress(MMC_PROGRESS_DONE); |
| 91 | 91 | ||
diff --git a/arch/arm/include/asm/hardware/cache-l2x0.h b/arch/arm/include/asm/hardware/cache-l2x0.h index 16bd48031583..bfa706ffd968 100644 --- a/arch/arm/include/asm/hardware/cache-l2x0.h +++ b/arch/arm/include/asm/hardware/cache-l2x0.h | |||
| @@ -64,7 +64,7 @@ | |||
| 64 | #define L2X0_AUX_CTRL_MASK 0xc0000fff | 64 | #define L2X0_AUX_CTRL_MASK 0xc0000fff |
| 65 | #define L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT 16 | 65 | #define L2X0_AUX_CTRL_ASSOCIATIVITY_SHIFT 16 |
| 66 | #define L2X0_AUX_CTRL_WAY_SIZE_SHIFT 17 | 66 | #define L2X0_AUX_CTRL_WAY_SIZE_SHIFT 17 |
| 67 | #define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x3 << 17) | 67 | #define L2X0_AUX_CTRL_WAY_SIZE_MASK (0x7 << 17) |
| 68 | #define L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT 22 | 68 | #define L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT 22 |
| 69 | #define L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT 26 | 69 | #define L2X0_AUX_CTRL_NS_LOCKDOWN_SHIFT 26 |
| 70 | #define L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT 27 | 70 | #define L2X0_AUX_CTRL_NS_INT_CTRL_SHIFT 27 |
diff --git a/arch/arm/include/asm/pmu.h b/arch/arm/include/asm/pmu.h index 67c70a31a1be..b7e82c4aced6 100644 --- a/arch/arm/include/asm/pmu.h +++ b/arch/arm/include/asm/pmu.h | |||
| @@ -41,7 +41,7 @@ struct arm_pmu_platdata { | |||
| 41 | * encoded error on failure. | 41 | * encoded error on failure. |
| 42 | */ | 42 | */ |
| 43 | extern struct platform_device * | 43 | extern struct platform_device * |
| 44 | reserve_pmu(enum arm_pmu_type device); | 44 | reserve_pmu(enum arm_pmu_type type); |
| 45 | 45 | ||
| 46 | /** | 46 | /** |
| 47 | * release_pmu() - Relinquish control of the performance counters | 47 | * release_pmu() - Relinquish control of the performance counters |
| @@ -62,26 +62,26 @@ release_pmu(enum arm_pmu_type type); | |||
| 62 | * the actual hardware initialisation. | 62 | * the actual hardware initialisation. |
| 63 | */ | 63 | */ |
| 64 | extern int | 64 | extern int |
| 65 | init_pmu(enum arm_pmu_type device); | 65 | init_pmu(enum arm_pmu_type type); |
| 66 | 66 | ||
| 67 | #else /* CONFIG_CPU_HAS_PMU */ | 67 | #else /* CONFIG_CPU_HAS_PMU */ |
| 68 | 68 | ||
| 69 | #include <linux/err.h> | 69 | #include <linux/err.h> |
| 70 | 70 | ||
| 71 | static inline struct platform_device * | 71 | static inline struct platform_device * |
| 72 | reserve_pmu(enum arm_pmu_type device) | 72 | reserve_pmu(enum arm_pmu_type type) |
| 73 | { | 73 | { |
| 74 | return ERR_PTR(-ENODEV); | 74 | return ERR_PTR(-ENODEV); |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | static inline int | 77 | static inline int |
| 78 | release_pmu(struct platform_device *pdev) | 78 | release_pmu(enum arm_pmu_type type) |
| 79 | { | 79 | { |
| 80 | return -ENODEV; | 80 | return -ENODEV; |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | static inline int | 83 | static inline int |
| 84 | init_pmu(enum arm_pmu_type device) | 84 | init_pmu(enum arm_pmu_type type) |
| 85 | { | 85 | { |
| 86 | return -ENODEV; | 86 | return -ENODEV; |
| 87 | } | 87 | } |
diff --git a/arch/arm/kernel/pmu.c b/arch/arm/kernel/pmu.c index 2b70709376c3..c53474fe84df 100644 --- a/arch/arm/kernel/pmu.c +++ b/arch/arm/kernel/pmu.c | |||
| @@ -31,7 +31,7 @@ static int __devinit pmu_register(struct platform_device *pdev, | |||
| 31 | { | 31 | { |
| 32 | if (type < 0 || type >= ARM_NUM_PMU_DEVICES) { | 32 | if (type < 0 || type >= ARM_NUM_PMU_DEVICES) { |
| 33 | pr_warning("received registration request for unknown " | 33 | pr_warning("received registration request for unknown " |
| 34 | "device %d\n", type); | 34 | "PMU device type %d\n", type); |
| 35 | return -EINVAL; | 35 | return -EINVAL; |
| 36 | } | 36 | } |
| 37 | 37 | ||
| @@ -112,17 +112,17 @@ static int __init register_pmu_driver(void) | |||
| 112 | device_initcall(register_pmu_driver); | 112 | device_initcall(register_pmu_driver); |
| 113 | 113 | ||
| 114 | struct platform_device * | 114 | struct platform_device * |
| 115 | reserve_pmu(enum arm_pmu_type device) | 115 | reserve_pmu(enum arm_pmu_type type) |
| 116 | { | 116 | { |
| 117 | struct platform_device *pdev; | 117 | struct platform_device *pdev; |
| 118 | 118 | ||
| 119 | if (test_and_set_bit_lock(device, &pmu_lock)) { | 119 | if (test_and_set_bit_lock(type, &pmu_lock)) { |
| 120 | pdev = ERR_PTR(-EBUSY); | 120 | pdev = ERR_PTR(-EBUSY); |
| 121 | } else if (pmu_devices[device] == NULL) { | 121 | } else if (pmu_devices[type] == NULL) { |
| 122 | clear_bit_unlock(device, &pmu_lock); | 122 | clear_bit_unlock(type, &pmu_lock); |
| 123 | pdev = ERR_PTR(-ENODEV); | 123 | pdev = ERR_PTR(-ENODEV); |
| 124 | } else { | 124 | } else { |
| 125 | pdev = pmu_devices[device]; | 125 | pdev = pmu_devices[type]; |
| 126 | } | 126 | } |
| 127 | 127 | ||
| 128 | return pdev; | 128 | return pdev; |
| @@ -130,11 +130,11 @@ reserve_pmu(enum arm_pmu_type device) | |||
| 130 | EXPORT_SYMBOL_GPL(reserve_pmu); | 130 | EXPORT_SYMBOL_GPL(reserve_pmu); |
| 131 | 131 | ||
| 132 | int | 132 | int |
| 133 | release_pmu(enum arm_pmu_type device) | 133 | release_pmu(enum arm_pmu_type type) |
| 134 | { | 134 | { |
| 135 | if (WARN_ON(!pmu_devices[device])) | 135 | if (WARN_ON(!pmu_devices[type])) |
| 136 | return -EINVAL; | 136 | return -EINVAL; |
| 137 | clear_bit_unlock(device, &pmu_lock); | 137 | clear_bit_unlock(type, &pmu_lock); |
| 138 | return 0; | 138 | return 0; |
| 139 | } | 139 | } |
| 140 | EXPORT_SYMBOL_GPL(release_pmu); | 140 | EXPORT_SYMBOL_GPL(release_pmu); |
| @@ -182,17 +182,17 @@ init_cpu_pmu(void) | |||
| 182 | } | 182 | } |
| 183 | 183 | ||
| 184 | int | 184 | int |
| 185 | init_pmu(enum arm_pmu_type device) | 185 | init_pmu(enum arm_pmu_type type) |
| 186 | { | 186 | { |
| 187 | int err = 0; | 187 | int err = 0; |
| 188 | 188 | ||
| 189 | switch (device) { | 189 | switch (type) { |
| 190 | case ARM_PMU_DEVICE_CPU: | 190 | case ARM_PMU_DEVICE_CPU: |
| 191 | err = init_cpu_pmu(); | 191 | err = init_cpu_pmu(); |
| 192 | break; | 192 | break; |
| 193 | default: | 193 | default: |
| 194 | pr_warning("attempt to initialise unknown device %d\n", | 194 | pr_warning("attempt to initialise PMU of unknown " |
| 195 | device); | 195 | "type %d\n", type); |
| 196 | err = -EINVAL; | 196 | err = -EINVAL; |
| 197 | } | 197 | } |
| 198 | 198 | ||
diff --git a/arch/arm/kernel/relocate_kernel.S b/arch/arm/kernel/relocate_kernel.S index 9cf4cbf8f95b..d0cdedf4864d 100644 --- a/arch/arm/kernel/relocate_kernel.S +++ b/arch/arm/kernel/relocate_kernel.S | |||
| @@ -57,7 +57,8 @@ relocate_new_kernel: | |||
| 57 | mov r0,#0 | 57 | mov r0,#0 |
| 58 | ldr r1,kexec_mach_type | 58 | ldr r1,kexec_mach_type |
| 59 | ldr r2,kexec_boot_atags | 59 | ldr r2,kexec_boot_atags |
| 60 | mov pc,lr | 60 | ARM( mov pc, lr ) |
| 61 | THUMB( bx lr ) | ||
| 61 | 62 | ||
| 62 | .align | 63 | .align |
| 63 | 64 | ||
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 70bca649e925..e514c76043b4 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
| @@ -280,18 +280,19 @@ static void __init cacheid_init(void) | |||
| 280 | if (arch >= CPU_ARCH_ARMv6) { | 280 | if (arch >= CPU_ARCH_ARMv6) { |
| 281 | if ((cachetype & (7 << 29)) == 4 << 29) { | 281 | if ((cachetype & (7 << 29)) == 4 << 29) { |
| 282 | /* ARMv7 register format */ | 282 | /* ARMv7 register format */ |
| 283 | arch = CPU_ARCH_ARMv7; | ||
| 283 | cacheid = CACHEID_VIPT_NONALIASING; | 284 | cacheid = CACHEID_VIPT_NONALIASING; |
| 284 | if ((cachetype & (3 << 14)) == 1 << 14) | 285 | if ((cachetype & (3 << 14)) == 1 << 14) |
| 285 | cacheid |= CACHEID_ASID_TAGGED; | 286 | cacheid |= CACHEID_ASID_TAGGED; |
| 286 | else if (cpu_has_aliasing_icache(CPU_ARCH_ARMv7)) | ||
| 287 | cacheid |= CACHEID_VIPT_I_ALIASING; | ||
| 288 | } else if (cachetype & (1 << 23)) { | ||
| 289 | cacheid = CACHEID_VIPT_ALIASING; | ||
| 290 | } else { | 287 | } else { |
| 291 | cacheid = CACHEID_VIPT_NONALIASING; | 288 | arch = CPU_ARCH_ARMv6; |
| 292 | if (cpu_has_aliasing_icache(CPU_ARCH_ARMv6)) | 289 | if (cachetype & (1 << 23)) |
| 293 | cacheid |= CACHEID_VIPT_I_ALIASING; | 290 | cacheid = CACHEID_VIPT_ALIASING; |
| 291 | else | ||
| 292 | cacheid = CACHEID_VIPT_NONALIASING; | ||
| 294 | } | 293 | } |
| 294 | if (cpu_has_aliasing_icache(arch)) | ||
| 295 | cacheid |= CACHEID_VIPT_I_ALIASING; | ||
| 295 | } else { | 296 | } else { |
| 296 | cacheid = CACHEID_VIVT; | 297 | cacheid = CACHEID_VIVT; |
| 297 | } | 298 | } |
diff --git a/arch/arm/kernel/smp_twd.c b/arch/arm/kernel/smp_twd.c index 2c277d40cee6..01c186222f3b 100644 --- a/arch/arm/kernel/smp_twd.c +++ b/arch/arm/kernel/smp_twd.c | |||
| @@ -137,8 +137,8 @@ void __cpuinit twd_timer_setup(struct clock_event_device *clk) | |||
| 137 | clk->max_delta_ns = clockevent_delta2ns(0xffffffff, clk); | 137 | clk->max_delta_ns = clockevent_delta2ns(0xffffffff, clk); |
| 138 | clk->min_delta_ns = clockevent_delta2ns(0xf, clk); | 138 | clk->min_delta_ns = clockevent_delta2ns(0xf, clk); |
| 139 | 139 | ||
| 140 | clockevents_register_device(clk); | ||
| 141 | |||
| 140 | /* Make sure our local interrupt controller has this enabled */ | 142 | /* Make sure our local interrupt controller has this enabled */ |
| 141 | gic_enable_ppi(clk->irq); | 143 | gic_enable_ppi(clk->irq); |
| 142 | |||
| 143 | clockevents_register_device(clk); | ||
| 144 | } | 144 | } |
diff --git a/arch/arm/mach-at91/at91sam9261.c b/arch/arm/mach-at91/at91sam9261.c index d522b47e30b5..6c8e3b5f669f 100644 --- a/arch/arm/mach-at91/at91sam9261.c +++ b/arch/arm/mach-at91/at91sam9261.c | |||
| @@ -157,7 +157,7 @@ static struct clk_lookup periph_clocks_lookups[] = { | |||
| 157 | CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk), | 157 | CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk), |
| 158 | CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk), | 158 | CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tc0_clk), |
| 159 | CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk), | 159 | CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.0", &tc1_clk), |
| 160 | CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc1_clk), | 160 | CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.0", &tc2_clk), |
| 161 | CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk), | 161 | CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk), |
| 162 | CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk), | 162 | CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk), |
| 163 | CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk), | 163 | CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk), |
diff --git a/arch/arm/mach-cns3xxx/include/mach/entry-macro.S b/arch/arm/mach-cns3xxx/include/mach/entry-macro.S index 6bd83ed90afe..d87bfc397d39 100644 --- a/arch/arm/mach-cns3xxx/include/mach/entry-macro.S +++ b/arch/arm/mach-cns3xxx/include/mach/entry-macro.S | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #include <mach/hardware.h> | ||
| 12 | #include <asm/hardware/entry-macro-gic.S> | 11 | #include <asm/hardware/entry-macro-gic.S> |
| 13 | 12 | ||
| 14 | .macro disable_fiq | 13 | .macro disable_fiq |
diff --git a/arch/arm/mach-cns3xxx/include/mach/system.h b/arch/arm/mach-cns3xxx/include/mach/system.h index 58bb03ae3cf4..4f16c9b79f78 100644 --- a/arch/arm/mach-cns3xxx/include/mach/system.h +++ b/arch/arm/mach-cns3xxx/include/mach/system.h | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | 13 | ||
| 14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
| 15 | #include <asm/proc-fns.h> | 15 | #include <asm/proc-fns.h> |
| 16 | #include <mach/hardware.h> | ||
| 17 | 16 | ||
| 18 | static inline void arch_idle(void) | 17 | static inline void arch_idle(void) |
| 19 | { | 18 | { |
diff --git a/arch/arm/mach-cns3xxx/include/mach/uncompress.h b/arch/arm/mach-cns3xxx/include/mach/uncompress.h index de8ead9b91f7..a91b6058ab4f 100644 --- a/arch/arm/mach-cns3xxx/include/mach/uncompress.h +++ b/arch/arm/mach-cns3xxx/include/mach/uncompress.h | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | #include <asm/mach-types.h> | 10 | #include <asm/mach-types.h> |
| 11 | #include <mach/hardware.h> | ||
| 12 | #include <mach/cns3xxx.h> | 11 | #include <mach/cns3xxx.h> |
| 13 | 12 | ||
| 14 | #define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00)) | 13 | #define AMBA_UART_DR(base) (*(volatile unsigned char *)((base) + 0x00)) |
diff --git a/arch/arm/mach-cns3xxx/pcie.c b/arch/arm/mach-cns3xxx/pcie.c index 06fd25d70aec..0f8fca48a5ed 100644 --- a/arch/arm/mach-cns3xxx/pcie.c +++ b/arch/arm/mach-cns3xxx/pcie.c | |||
| @@ -49,7 +49,7 @@ static struct cns3xxx_pcie *sysdata_to_cnspci(void *sysdata) | |||
| 49 | return &cns3xxx_pcie[root->domain]; | 49 | return &cns3xxx_pcie[root->domain]; |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | static struct cns3xxx_pcie *pdev_to_cnspci(struct pci_dev *dev) | 52 | static struct cns3xxx_pcie *pdev_to_cnspci(const struct pci_dev *dev) |
| 53 | { | 53 | { |
| 54 | return sysdata_to_cnspci(dev->sysdata); | 54 | return sysdata_to_cnspci(dev->sysdata); |
| 55 | } | 55 | } |
diff --git a/arch/arm/mach-davinci/board-da850-evm.c b/arch/arm/mach-davinci/board-da850-evm.c index bd5394537c88..008d51407cd7 100644 --- a/arch/arm/mach-davinci/board-da850-evm.c +++ b/arch/arm/mach-davinci/board-da850-evm.c | |||
| @@ -115,6 +115,32 @@ static struct spi_board_info da850evm_spi_info[] = { | |||
| 115 | }, | 115 | }, |
| 116 | }; | 116 | }; |
| 117 | 117 | ||
| 118 | #ifdef CONFIG_MTD | ||
| 119 | static void da850_evm_m25p80_notify_add(struct mtd_info *mtd) | ||
| 120 | { | ||
| 121 | char *mac_addr = davinci_soc_info.emac_pdata->mac_addr; | ||
| 122 | size_t retlen; | ||
| 123 | |||
| 124 | if (!strcmp(mtd->name, "MAC-Address")) { | ||
| 125 | mtd->read(mtd, 0, ETH_ALEN, &retlen, mac_addr); | ||
| 126 | if (retlen == ETH_ALEN) | ||
| 127 | pr_info("Read MAC addr from SPI Flash: %pM\n", | ||
| 128 | mac_addr); | ||
| 129 | } | ||
| 130 | } | ||
| 131 | |||
| 132 | static struct mtd_notifier da850evm_spi_notifier = { | ||
| 133 | .add = da850_evm_m25p80_notify_add, | ||
| 134 | }; | ||
| 135 | |||
| 136 | static void da850_evm_setup_mac_addr(void) | ||
| 137 | { | ||
| 138 | register_mtd_user(&da850evm_spi_notifier); | ||
| 139 | } | ||
| 140 | #else | ||
| 141 | static void da850_evm_setup_mac_addr(void) { } | ||
| 142 | #endif | ||
| 143 | |||
| 118 | static struct mtd_partition da850_evm_norflash_partition[] = { | 144 | static struct mtd_partition da850_evm_norflash_partition[] = { |
| 119 | { | 145 | { |
| 120 | .name = "bootloaders + env", | 146 | .name = "bootloaders + env", |
| @@ -1244,6 +1270,8 @@ static __init void da850_evm_init(void) | |||
| 1244 | if (ret) | 1270 | if (ret) |
| 1245 | pr_warning("da850_evm_init: sata registration failed: %d\n", | 1271 | pr_warning("da850_evm_init: sata registration failed: %d\n", |
| 1246 | ret); | 1272 | ret); |
| 1273 | |||
| 1274 | da850_evm_setup_mac_addr(); | ||
| 1247 | } | 1275 | } |
| 1248 | 1276 | ||
| 1249 | #ifdef CONFIG_SERIAL_8250_CONSOLE | 1277 | #ifdef CONFIG_SERIAL_8250_CONSOLE |
diff --git a/arch/arm/mach-davinci/include/mach/psc.h b/arch/arm/mach-davinci/include/mach/psc.h index 47fd0bc3d3e7..fa59c097223d 100644 --- a/arch/arm/mach-davinci/include/mach/psc.h +++ b/arch/arm/mach-davinci/include/mach/psc.h | |||
| @@ -243,7 +243,7 @@ | |||
| 243 | #define PSC_STATE_DISABLE 2 | 243 | #define PSC_STATE_DISABLE 2 |
| 244 | #define PSC_STATE_ENABLE 3 | 244 | #define PSC_STATE_ENABLE 3 |
| 245 | 245 | ||
| 246 | #define MDSTAT_STATE_MASK 0x1f | 246 | #define MDSTAT_STATE_MASK 0x3f |
| 247 | #define MDCTL_FORCE BIT(31) | 247 | #define MDCTL_FORCE BIT(31) |
| 248 | 248 | ||
| 249 | #ifndef __ASSEMBLER__ | 249 | #ifndef __ASSEMBLER__ |
diff --git a/arch/arm/mach-davinci/sleep.S b/arch/arm/mach-davinci/sleep.S index fb5e72b532b0..5f1e045a3ad1 100644 --- a/arch/arm/mach-davinci/sleep.S +++ b/arch/arm/mach-davinci/sleep.S | |||
| @@ -217,7 +217,11 @@ ddr2clk_stop_done: | |||
| 217 | ENDPROC(davinci_ddr_psc_config) | 217 | ENDPROC(davinci_ddr_psc_config) |
| 218 | 218 | ||
| 219 | CACHE_FLUSH: | 219 | CACHE_FLUSH: |
| 220 | .word arm926_flush_kern_cache_all | 220 | #ifdef CONFIG_CPU_V6 |
| 221 | .word v6_flush_kern_cache_all | ||
| 222 | #else | ||
| 223 | .word arm926_flush_kern_cache_all | ||
| 224 | #endif | ||
| 221 | 225 | ||
| 222 | ENTRY(davinci_cpu_suspend_sz) | 226 | ENTRY(davinci_cpu_suspend_sz) |
| 223 | .word . - davinci_cpu_suspend | 227 | .word . - davinci_cpu_suspend |
diff --git a/arch/arm/mach-ep93xx/include/mach/ts72xx.h b/arch/arm/mach-ep93xx/include/mach/ts72xx.h index 0eabec62cd9d..f1397a13e76b 100644 --- a/arch/arm/mach-ep93xx/include/mach/ts72xx.h +++ b/arch/arm/mach-ep93xx/include/mach/ts72xx.h | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | * TS72xx memory map: | 6 | * TS72xx memory map: |
| 7 | * | 7 | * |
| 8 | * virt phys size | 8 | * virt phys size |
| 9 | * febff000 22000000 4K model number register | 9 | * febff000 22000000 4K model number register (bits 0-2) |
| 10 | * febfe000 22400000 4K options register | 10 | * febfe000 22400000 4K options register |
| 11 | * febfd000 22800000 4K options register #2 | 11 | * febfd000 22800000 4K options register #2 |
| 12 | * febf9000 10800000 4K TS-5620 RTC index register | 12 | * febf9000 10800000 4K TS-5620 RTC index register |
| @@ -20,6 +20,9 @@ | |||
| 20 | #define TS72XX_MODEL_TS7200 0x00 | 20 | #define TS72XX_MODEL_TS7200 0x00 |
| 21 | #define TS72XX_MODEL_TS7250 0x01 | 21 | #define TS72XX_MODEL_TS7250 0x01 |
| 22 | #define TS72XX_MODEL_TS7260 0x02 | 22 | #define TS72XX_MODEL_TS7260 0x02 |
| 23 | #define TS72XX_MODEL_TS7300 0x03 | ||
| 24 | #define TS72XX_MODEL_TS7400 0x04 | ||
| 25 | #define TS72XX_MODEL_MASK 0x07 | ||
| 23 | 26 | ||
| 24 | 27 | ||
| 25 | #define TS72XX_OPTIONS_PHYS_BASE 0x22400000 | 28 | #define TS72XX_OPTIONS_PHYS_BASE 0x22400000 |
| @@ -51,19 +54,34 @@ | |||
| 51 | 54 | ||
| 52 | #ifndef __ASSEMBLY__ | 55 | #ifndef __ASSEMBLY__ |
| 53 | 56 | ||
| 57 | static inline int ts72xx_model(void) | ||
| 58 | { | ||
| 59 | return __raw_readb(TS72XX_MODEL_VIRT_BASE) & TS72XX_MODEL_MASK; | ||
| 60 | } | ||
| 61 | |||
| 54 | static inline int board_is_ts7200(void) | 62 | static inline int board_is_ts7200(void) |
| 55 | { | 63 | { |
| 56 | return __raw_readb(TS72XX_MODEL_VIRT_BASE) == TS72XX_MODEL_TS7200; | 64 | return ts72xx_model() == TS72XX_MODEL_TS7200; |
| 57 | } | 65 | } |
| 58 | 66 | ||
| 59 | static inline int board_is_ts7250(void) | 67 | static inline int board_is_ts7250(void) |
| 60 | { | 68 | { |
| 61 | return __raw_readb(TS72XX_MODEL_VIRT_BASE) == TS72XX_MODEL_TS7250; | 69 | return ts72xx_model() == TS72XX_MODEL_TS7250; |
| 62 | } | 70 | } |
| 63 | 71 | ||
| 64 | static inline int board_is_ts7260(void) | 72 | static inline int board_is_ts7260(void) |
| 65 | { | 73 | { |
| 66 | return __raw_readb(TS72XX_MODEL_VIRT_BASE) == TS72XX_MODEL_TS7260; | 74 | return ts72xx_model() == TS72XX_MODEL_TS7260; |
| 75 | } | ||
| 76 | |||
| 77 | static inline int board_is_ts7300(void) | ||
| 78 | { | ||
| 79 | return ts72xx_model() == TS72XX_MODEL_TS7300; | ||
| 80 | } | ||
| 81 | |||
| 82 | static inline int board_is_ts7400(void) | ||
| 83 | { | ||
| 84 | return ts72xx_model() == TS72XX_MODEL_TS7400; | ||
| 67 | } | 85 | } |
| 68 | 86 | ||
| 69 | static inline int is_max197_installed(void) | 87 | static inline int is_max197_installed(void) |
diff --git a/arch/arm/mach-exynos4/clock.c b/arch/arm/mach-exynos4/clock.c index 851dea018578..1561b036a9bf 100644 --- a/arch/arm/mach-exynos4/clock.c +++ b/arch/arm/mach-exynos4/clock.c | |||
| @@ -520,7 +520,7 @@ static struct clk init_clocks_off[] = { | |||
| 520 | .ctrlbit = (1 << 21), | 520 | .ctrlbit = (1 << 21), |
| 521 | }, { | 521 | }, { |
| 522 | .name = "ac97", | 522 | .name = "ac97", |
| 523 | .id = -1, | 523 | .devname = "samsung-ac97", |
| 524 | .enable = exynos4_clk_ip_peril_ctrl, | 524 | .enable = exynos4_clk_ip_peril_ctrl, |
| 525 | .ctrlbit = (1 << 27), | 525 | .ctrlbit = (1 << 27), |
| 526 | }, { | 526 | }, { |
diff --git a/arch/arm/mach-exynos4/cpu.c b/arch/arm/mach-exynos4/cpu.c index 2d8a40c9e6e5..746d6fc6d397 100644 --- a/arch/arm/mach-exynos4/cpu.c +++ b/arch/arm/mach-exynos4/cpu.c | |||
| @@ -24,12 +24,13 @@ | |||
| 24 | #include <plat/exynos4.h> | 24 | #include <plat/exynos4.h> |
| 25 | #include <plat/adc-core.h> | 25 | #include <plat/adc-core.h> |
| 26 | #include <plat/sdhci.h> | 26 | #include <plat/sdhci.h> |
| 27 | #include <plat/devs.h> | ||
| 28 | #include <plat/fb-core.h> | 27 | #include <plat/fb-core.h> |
| 29 | #include <plat/fimc-core.h> | 28 | #include <plat/fimc-core.h> |
| 30 | #include <plat/iic-core.h> | 29 | #include <plat/iic-core.h> |
| 30 | #include <plat/reset.h> | ||
| 31 | 31 | ||
| 32 | #include <mach/regs-irq.h> | 32 | #include <mach/regs-irq.h> |
| 33 | #include <mach/regs-pmu.h> | ||
| 33 | 34 | ||
| 34 | extern int combiner_init(unsigned int combiner_nr, void __iomem *base, | 35 | extern int combiner_init(unsigned int combiner_nr, void __iomem *base, |
| 35 | unsigned int irq_start); | 36 | unsigned int irq_start); |
| @@ -128,6 +129,11 @@ static void exynos4_idle(void) | |||
| 128 | local_irq_enable(); | 129 | local_irq_enable(); |
| 129 | } | 130 | } |
| 130 | 131 | ||
| 132 | static void exynos4_sw_reset(void) | ||
| 133 | { | ||
| 134 | __raw_writel(0x1, S5P_SWRESET); | ||
| 135 | } | ||
| 136 | |||
| 131 | /* | 137 | /* |
| 132 | * exynos4_map_io | 138 | * exynos4_map_io |
| 133 | * | 139 | * |
| @@ -241,5 +247,8 @@ int __init exynos4_init(void) | |||
| 241 | /* set idle function */ | 247 | /* set idle function */ |
| 242 | pm_idle = exynos4_idle; | 248 | pm_idle = exynos4_idle; |
| 243 | 249 | ||
| 250 | /* set sw_reset function */ | ||
| 251 | s5p_reset_hook = exynos4_sw_reset; | ||
| 252 | |||
| 244 | return sysdev_register(&exynos4_sysdev); | 253 | return sysdev_register(&exynos4_sysdev); |
| 245 | } | 254 | } |
diff --git a/arch/arm/mach-exynos4/include/mach/irqs.h b/arch/arm/mach-exynos4/include/mach/irqs.h index 934d2a493982..f8952f8f3757 100644 --- a/arch/arm/mach-exynos4/include/mach/irqs.h +++ b/arch/arm/mach-exynos4/include/mach/irqs.h | |||
| @@ -80,9 +80,8 @@ | |||
| 80 | #define IRQ_HSMMC3 IRQ_SPI(76) | 80 | #define IRQ_HSMMC3 IRQ_SPI(76) |
| 81 | #define IRQ_DWMCI IRQ_SPI(77) | 81 | #define IRQ_DWMCI IRQ_SPI(77) |
| 82 | 82 | ||
| 83 | #define IRQ_MIPICSI0 IRQ_SPI(78) | 83 | #define IRQ_MIPI_CSIS0 IRQ_SPI(78) |
| 84 | 84 | #define IRQ_MIPI_CSIS1 IRQ_SPI(80) | |
| 85 | #define IRQ_MIPICSI1 IRQ_SPI(80) | ||
| 86 | 85 | ||
| 87 | #define IRQ_ONENAND_AUDI IRQ_SPI(82) | 86 | #define IRQ_ONENAND_AUDI IRQ_SPI(82) |
| 88 | #define IRQ_ROTATOR IRQ_SPI(83) | 87 | #define IRQ_ROTATOR IRQ_SPI(83) |
diff --git a/arch/arm/mach-exynos4/include/mach/regs-pmu.h b/arch/arm/mach-exynos4/include/mach/regs-pmu.h index fa49bbb8e7b0..cdf9b47c303c 100644 --- a/arch/arm/mach-exynos4/include/mach/regs-pmu.h +++ b/arch/arm/mach-exynos4/include/mach/regs-pmu.h | |||
| @@ -29,6 +29,8 @@ | |||
| 29 | #define S5P_USE_STANDBY_WFE1 (1 << 25) | 29 | #define S5P_USE_STANDBY_WFE1 (1 << 25) |
| 30 | #define S5P_USE_MASK ((0x3 << 16) | (0x3 << 24)) | 30 | #define S5P_USE_MASK ((0x3 << 16) | (0x3 << 24)) |
| 31 | 31 | ||
| 32 | #define S5P_SWRESET S5P_PMUREG(0x0400) | ||
| 33 | |||
| 32 | #define S5P_WAKEUP_STAT S5P_PMUREG(0x0600) | 34 | #define S5P_WAKEUP_STAT S5P_PMUREG(0x0600) |
| 33 | #define S5P_EINT_WAKEUP_MASK S5P_PMUREG(0x0604) | 35 | #define S5P_EINT_WAKEUP_MASK S5P_PMUREG(0x0604) |
| 34 | #define S5P_WAKEUP_MASK S5P_PMUREG(0x0608) | 36 | #define S5P_WAKEUP_MASK S5P_PMUREG(0x0608) |
diff --git a/arch/arm/mach-exynos4/irq-eint.c b/arch/arm/mach-exynos4/irq-eint.c index 9d87d2ac7f68..badb8c66fc9b 100644 --- a/arch/arm/mach-exynos4/irq-eint.c +++ b/arch/arm/mach-exynos4/irq-eint.c | |||
| @@ -23,6 +23,8 @@ | |||
| 23 | 23 | ||
| 24 | #include <mach/regs-gpio.h> | 24 | #include <mach/regs-gpio.h> |
| 25 | 25 | ||
| 26 | #include <asm/mach/irq.h> | ||
| 27 | |||
| 26 | static DEFINE_SPINLOCK(eint_lock); | 28 | static DEFINE_SPINLOCK(eint_lock); |
| 27 | 29 | ||
| 28 | static unsigned int eint0_15_data[16]; | 30 | static unsigned int eint0_15_data[16]; |
| @@ -184,8 +186,11 @@ static inline void exynos4_irq_demux_eint(unsigned int start) | |||
| 184 | 186 | ||
| 185 | static void exynos4_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc) | 187 | static void exynos4_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc) |
| 186 | { | 188 | { |
| 189 | struct irq_chip *chip = irq_get_chip(irq); | ||
| 190 | chained_irq_enter(chip, desc); | ||
| 187 | exynos4_irq_demux_eint(IRQ_EINT(16)); | 191 | exynos4_irq_demux_eint(IRQ_EINT(16)); |
| 188 | exynos4_irq_demux_eint(IRQ_EINT(24)); | 192 | exynos4_irq_demux_eint(IRQ_EINT(24)); |
| 193 | chained_irq_exit(chip, desc); | ||
| 189 | } | 194 | } |
| 190 | 195 | ||
| 191 | static void exynos4_irq_eint0_15(unsigned int irq, struct irq_desc *desc) | 196 | static void exynos4_irq_eint0_15(unsigned int irq, struct irq_desc *desc) |
| @@ -193,6 +198,7 @@ static void exynos4_irq_eint0_15(unsigned int irq, struct irq_desc *desc) | |||
| 193 | u32 *irq_data = irq_get_handler_data(irq); | 198 | u32 *irq_data = irq_get_handler_data(irq); |
| 194 | struct irq_chip *chip = irq_get_chip(irq); | 199 | struct irq_chip *chip = irq_get_chip(irq); |
| 195 | 200 | ||
| 201 | chained_irq_enter(chip, desc); | ||
| 196 | chip->irq_mask(&desc->irq_data); | 202 | chip->irq_mask(&desc->irq_data); |
| 197 | 203 | ||
| 198 | if (chip->irq_ack) | 204 | if (chip->irq_ack) |
| @@ -201,6 +207,7 @@ static void exynos4_irq_eint0_15(unsigned int irq, struct irq_desc *desc) | |||
| 201 | generic_handle_irq(*irq_data); | 207 | generic_handle_irq(*irq_data); |
| 202 | 208 | ||
| 203 | chip->irq_unmask(&desc->irq_data); | 209 | chip->irq_unmask(&desc->irq_data); |
| 210 | chained_irq_exit(chip, desc); | ||
| 204 | } | 211 | } |
| 205 | 212 | ||
| 206 | int __init exynos4_init_irq_eint(void) | 213 | int __init exynos4_init_irq_eint(void) |
diff --git a/arch/arm/mach-exynos4/mach-universal_c210.c b/arch/arm/mach-exynos4/mach-universal_c210.c index 0e280d12301e..b3b5d8911004 100644 --- a/arch/arm/mach-exynos4/mach-universal_c210.c +++ b/arch/arm/mach-exynos4/mach-universal_c210.c | |||
| @@ -79,7 +79,7 @@ static struct s3c2410_uartcfg universal_uartcfgs[] __initdata = { | |||
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | static struct regulator_consumer_supply max8952_consumer = | 81 | static struct regulator_consumer_supply max8952_consumer = |
| 82 | REGULATOR_SUPPLY("vddarm", NULL); | 82 | REGULATOR_SUPPLY("vdd_arm", NULL); |
| 83 | 83 | ||
| 84 | static struct max8952_platform_data universal_max8952_pdata __initdata = { | 84 | static struct max8952_platform_data universal_max8952_pdata __initdata = { |
| 85 | .gpio_vid0 = EXYNOS4_GPX0(3), | 85 | .gpio_vid0 = EXYNOS4_GPX0(3), |
| @@ -105,7 +105,7 @@ static struct max8952_platform_data universal_max8952_pdata __initdata = { | |||
| 105 | }; | 105 | }; |
| 106 | 106 | ||
| 107 | static struct regulator_consumer_supply lp3974_buck1_consumer = | 107 | static struct regulator_consumer_supply lp3974_buck1_consumer = |
| 108 | REGULATOR_SUPPLY("vddint", NULL); | 108 | REGULATOR_SUPPLY("vdd_int", NULL); |
| 109 | 109 | ||
| 110 | static struct regulator_consumer_supply lp3974_buck2_consumer = | 110 | static struct regulator_consumer_supply lp3974_buck2_consumer = |
| 111 | REGULATOR_SUPPLY("vddg3d", NULL); | 111 | REGULATOR_SUPPLY("vddg3d", NULL); |
diff --git a/arch/arm/mach-exynos4/setup-usb-phy.c b/arch/arm/mach-exynos4/setup-usb-phy.c index 0883c1b824b9..39aca045f660 100644 --- a/arch/arm/mach-exynos4/setup-usb-phy.c +++ b/arch/arm/mach-exynos4/setup-usb-phy.c | |||
| @@ -82,7 +82,7 @@ static int exynos4_usb_phy1_init(struct platform_device *pdev) | |||
| 82 | 82 | ||
| 83 | rstcon &= ~(HOST_LINK_PORT_SWRST_MASK | PHY1_SWRST_MASK); | 83 | rstcon &= ~(HOST_LINK_PORT_SWRST_MASK | PHY1_SWRST_MASK); |
| 84 | writel(rstcon, EXYNOS4_RSTCON); | 84 | writel(rstcon, EXYNOS4_RSTCON); |
| 85 | udelay(50); | 85 | udelay(80); |
| 86 | 86 | ||
| 87 | clk_disable(otg_clk); | 87 | clk_disable(otg_clk); |
| 88 | clk_put(otg_clk); | 88 | clk_put(otg_clk); |
diff --git a/arch/arm/mach-footbridge/Kconfig b/arch/arm/mach-footbridge/Kconfig index dc26fff22cf0..c8e7afcf14ec 100644 --- a/arch/arm/mach-footbridge/Kconfig +++ b/arch/arm/mach-footbridge/Kconfig | |||
| @@ -62,6 +62,7 @@ config ARCH_EBSA285_HOST | |||
| 62 | config ARCH_NETWINDER | 62 | config ARCH_NETWINDER |
| 63 | bool "NetWinder" | 63 | bool "NetWinder" |
| 64 | select CLKSRC_I8253 | 64 | select CLKSRC_I8253 |
| 65 | select CLKEVT_I8253 | ||
| 65 | select FOOTBRIDGE_HOST | 66 | select FOOTBRIDGE_HOST |
| 66 | select ISA | 67 | select ISA |
| 67 | select ISA_DMA | 68 | select ISA_DMA |
diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c index 1331fff51ae2..18c32a5541d9 100644 --- a/arch/arm/mach-footbridge/dc21285.c +++ b/arch/arm/mach-footbridge/dc21285.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/irq.h> | 18 | #include <linux/irq.h> |
| 19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
| 20 | #include <linux/spinlock.h> | 20 | #include <linux/spinlock.h> |
| 21 | #include <video/vga.h> | ||
| 21 | 22 | ||
| 22 | #include <asm/irq.h> | 23 | #include <asm/irq.h> |
| 23 | #include <asm/system.h> | 24 | #include <asm/system.h> |
diff --git a/arch/arm/mach-imx/mach-cpuimx27.c b/arch/arm/mach-imx/mach-cpuimx27.c index 87887ac5806b..f851fe903687 100644 --- a/arch/arm/mach-imx/mach-cpuimx27.c +++ b/arch/arm/mach-imx/mach-cpuimx27.c | |||
| @@ -310,7 +310,7 @@ static struct sys_timer eukrea_cpuimx27_timer = { | |||
| 310 | .init = eukrea_cpuimx27_timer_init, | 310 | .init = eukrea_cpuimx27_timer_init, |
| 311 | }; | 311 | }; |
| 312 | 312 | ||
| 313 | MACHINE_START(CPUIMX27, "EUKREA CPUIMX27") | 313 | MACHINE_START(EUKREA_CPUIMX27, "EUKREA CPUIMX27") |
| 314 | .boot_params = MX27_PHYS_OFFSET + 0x100, | 314 | .boot_params = MX27_PHYS_OFFSET + 0x100, |
| 315 | .map_io = mx27_map_io, | 315 | .map_io = mx27_map_io, |
| 316 | .init_early = imx27_init_early, | 316 | .init_early = imx27_init_early, |
diff --git a/arch/arm/mach-imx/mach-cpuimx35.c b/arch/arm/mach-imx/mach-cpuimx35.c index f39a478ba1a6..4bd083ba9af2 100644 --- a/arch/arm/mach-imx/mach-cpuimx35.c +++ b/arch/arm/mach-imx/mach-cpuimx35.c | |||
| @@ -192,7 +192,7 @@ struct sys_timer eukrea_cpuimx35_timer = { | |||
| 192 | .init = eukrea_cpuimx35_timer_init, | 192 | .init = eukrea_cpuimx35_timer_init, |
| 193 | }; | 193 | }; |
| 194 | 194 | ||
| 195 | MACHINE_START(EUKREA_CPUIMX35, "Eukrea CPUIMX35") | 195 | MACHINE_START(EUKREA_CPUIMX35SD, "Eukrea CPUIMX35") |
| 196 | /* Maintainer: Eukrea Electromatique */ | 196 | /* Maintainer: Eukrea Electromatique */ |
| 197 | .boot_params = MX3x_PHYS_OFFSET + 0x100, | 197 | .boot_params = MX3x_PHYS_OFFSET + 0x100, |
| 198 | .map_io = mx35_map_io, | 198 | .map_io = mx35_map_io, |
diff --git a/arch/arm/mach-imx/mach-eukrea_cpuimx25.c b/arch/arm/mach-imx/mach-eukrea_cpuimx25.c index da36da52969d..2442d5da883d 100644 --- a/arch/arm/mach-imx/mach-eukrea_cpuimx25.c +++ b/arch/arm/mach-imx/mach-eukrea_cpuimx25.c | |||
| @@ -161,7 +161,7 @@ static struct sys_timer eukrea_cpuimx25_timer = { | |||
| 161 | .init = eukrea_cpuimx25_timer_init, | 161 | .init = eukrea_cpuimx25_timer_init, |
| 162 | }; | 162 | }; |
| 163 | 163 | ||
| 164 | MACHINE_START(EUKREA_CPUIMX25, "Eukrea CPUIMX25") | 164 | MACHINE_START(EUKREA_CPUIMX25SD, "Eukrea CPUIMX25") |
| 165 | /* Maintainer: Eukrea Electromatique */ | 165 | /* Maintainer: Eukrea Electromatique */ |
| 166 | .boot_params = MX25_PHYS_OFFSET + 0x100, | 166 | .boot_params = MX25_PHYS_OFFSET + 0x100, |
| 167 | .map_io = mx25_map_io, | 167 | .map_io = mx25_map_io, |
diff --git a/arch/arm/mach-orion5x/dns323-setup.c b/arch/arm/mach-orion5x/dns323-setup.c index a6eddae82a0b..c105556a0ee1 100644 --- a/arch/arm/mach-orion5x/dns323-setup.c +++ b/arch/arm/mach-orion5x/dns323-setup.c | |||
| @@ -77,7 +77,7 @@ static int __init dns323_pci_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) | |||
| 77 | /* | 77 | /* |
| 78 | * Check for devices with hard-wired IRQs. | 78 | * Check for devices with hard-wired IRQs. |
| 79 | */ | 79 | */ |
| 80 | irq = orion5x_pci_map_irq(const dev, slot, pin); | 80 | irq = orion5x_pci_map_irq(dev, slot, pin); |
| 81 | if (irq != -1) | 81 | if (irq != -1) |
| 82 | return irq; | 82 | return irq; |
| 83 | 83 | ||
diff --git a/arch/arm/mach-orion5x/pci.c b/arch/arm/mach-orion5x/pci.c index 28b8760ab9fa..bc4a920e26ee 100644 --- a/arch/arm/mach-orion5x/pci.c +++ b/arch/arm/mach-orion5x/pci.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/pci.h> | 14 | #include <linux/pci.h> |
| 15 | #include <linux/slab.h> | 15 | #include <linux/slab.h> |
| 16 | #include <linux/mbus.h> | 16 | #include <linux/mbus.h> |
| 17 | #include <video/vga.h> | ||
| 17 | #include <asm/irq.h> | 18 | #include <asm/irq.h> |
| 18 | #include <asm/mach/pci.h> | 19 | #include <asm/mach/pci.h> |
| 19 | #include <plat/pcie.h> | 20 | #include <plat/pcie.h> |
diff --git a/arch/arm/mach-realview/include/mach/system.h b/arch/arm/mach-realview/include/mach/system.h index a30f2e3ec178..6657ff231161 100644 --- a/arch/arm/mach-realview/include/mach/system.h +++ b/arch/arm/mach-realview/include/mach/system.h | |||
| @@ -44,6 +44,7 @@ static inline void arch_reset(char mode, const char *cmd) | |||
| 44 | */ | 44 | */ |
| 45 | if (realview_reset) | 45 | if (realview_reset) |
| 46 | realview_reset(mode); | 46 | realview_reset(mode); |
| 47 | dsb(); | ||
| 47 | } | 48 | } |
| 48 | 49 | ||
| 49 | #endif | 50 | #endif |
diff --git a/arch/arm/mach-s3c64xx/pm.c b/arch/arm/mach-s3c64xx/pm.c index 8bad64370689..055e2858b0dd 100644 --- a/arch/arm/mach-s3c64xx/pm.c +++ b/arch/arm/mach-s3c64xx/pm.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/suspend.h> | 16 | #include <linux/suspend.h> |
| 17 | #include <linux/serial_core.h> | 17 | #include <linux/serial_core.h> |
| 18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
| 19 | #include <linux/gpio.h> | ||
| 19 | 20 | ||
| 20 | #include <mach/map.h> | 21 | #include <mach/map.h> |
| 21 | #include <mach/irqs.h> | 22 | #include <mach/irqs.h> |
diff --git a/arch/arm/mach-s5p64x0/irq-eint.c b/arch/arm/mach-s5p64x0/irq-eint.c index 69ed4545112b..fe7380f5c3cd 100644 --- a/arch/arm/mach-s5p64x0/irq-eint.c +++ b/arch/arm/mach-s5p64x0/irq-eint.c | |||
| @@ -129,7 +129,7 @@ static int s5p64x0_alloc_gc(void) | |||
| 129 | } | 129 | } |
| 130 | 130 | ||
| 131 | ct = gc->chip_types; | 131 | ct = gc->chip_types; |
| 132 | ct->chip.irq_ack = irq_gc_ack; | 132 | ct->chip.irq_ack = irq_gc_ack_set_bit; |
| 133 | ct->chip.irq_mask = irq_gc_mask_set_bit; | 133 | ct->chip.irq_mask = irq_gc_mask_set_bit; |
| 134 | ct->chip.irq_unmask = irq_gc_mask_clr_bit; | 134 | ct->chip.irq_unmask = irq_gc_mask_clr_bit; |
| 135 | ct->chip.irq_set_type = s5p64x0_irq_eint_set_type; | 135 | ct->chip.irq_set_type = s5p64x0_irq_eint_set_type; |
diff --git a/arch/arm/mach-s5pv210/pm.c b/arch/arm/mach-s5pv210/pm.c index 309e388a8a83..f149d278377b 100644 --- a/arch/arm/mach-s5pv210/pm.c +++ b/arch/arm/mach-s5pv210/pm.c | |||
| @@ -88,7 +88,7 @@ static struct sleep_save s5pv210_core_save[] = { | |||
| 88 | SAVE_ITEM(S3C2410_TCNTO(0)), | 88 | SAVE_ITEM(S3C2410_TCNTO(0)), |
| 89 | }; | 89 | }; |
| 90 | 90 | ||
| 91 | void s5pv210_cpu_suspend(unsigned long arg) | 91 | static int s5pv210_cpu_suspend(unsigned long arg) |
| 92 | { | 92 | { |
| 93 | unsigned long tmp; | 93 | unsigned long tmp; |
| 94 | 94 | ||
diff --git a/arch/arm/mach-shmobile/board-ag5evm.c b/arch/arm/mach-shmobile/board-ag5evm.c index ce5c2513c6ce..cdfdd624d21d 100644 --- a/arch/arm/mach-shmobile/board-ag5evm.c +++ b/arch/arm/mach-shmobile/board-ag5evm.c | |||
| @@ -341,6 +341,7 @@ static struct platform_device mipidsi0_device = { | |||
| 341 | static struct sh_mobile_sdhi_info sdhi0_info = { | 341 | static struct sh_mobile_sdhi_info sdhi0_info = { |
| 342 | .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX, | 342 | .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX, |
| 343 | .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX, | 343 | .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX, |
| 344 | .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT, | ||
| 344 | .tmio_caps = MMC_CAP_SD_HIGHSPEED, | 345 | .tmio_caps = MMC_CAP_SD_HIGHSPEED, |
| 345 | .tmio_ocr_mask = MMC_VDD_27_28 | MMC_VDD_28_29, | 346 | .tmio_ocr_mask = MMC_VDD_27_28 | MMC_VDD_28_29, |
| 346 | }; | 347 | }; |
| @@ -382,7 +383,7 @@ void ag5evm_sdhi1_set_pwr(struct platform_device *pdev, int state) | |||
| 382 | } | 383 | } |
| 383 | 384 | ||
| 384 | static struct sh_mobile_sdhi_info sh_sdhi1_info = { | 385 | static struct sh_mobile_sdhi_info sh_sdhi1_info = { |
| 385 | .tmio_flags = TMIO_MMC_WRPROTECT_DISABLE, | 386 | .tmio_flags = TMIO_MMC_WRPROTECT_DISABLE | TMIO_MMC_HAS_IDLE_WAIT, |
| 386 | .tmio_caps = MMC_CAP_NONREMOVABLE | MMC_CAP_SDIO_IRQ, | 387 | .tmio_caps = MMC_CAP_NONREMOVABLE | MMC_CAP_SDIO_IRQ, |
| 387 | .tmio_ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, | 388 | .tmio_ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34, |
| 388 | .set_pwr = ag5evm_sdhi1_set_pwr, | 389 | .set_pwr = ag5evm_sdhi1_set_pwr, |
diff --git a/arch/arm/mach-shmobile/board-mackerel.c b/arch/arm/mach-shmobile/board-mackerel.c index 0ea71f8d4b89..17c19dc25604 100644 --- a/arch/arm/mach-shmobile/board-mackerel.c +++ b/arch/arm/mach-shmobile/board-mackerel.c | |||
| @@ -641,6 +641,8 @@ static struct usbhs_private usbhs0_private = { | |||
| 641 | }, | 641 | }, |
| 642 | .driver_param = { | 642 | .driver_param = { |
| 643 | .buswait_bwait = 4, | 643 | .buswait_bwait = 4, |
| 644 | .d0_tx_id = SHDMA_SLAVE_USB0_TX, | ||
| 645 | .d1_rx_id = SHDMA_SLAVE_USB0_RX, | ||
| 644 | }, | 646 | }, |
| 645 | }, | 647 | }, |
| 646 | }; | 648 | }; |
| @@ -810,6 +812,8 @@ static struct usbhs_private usbhs1_private = { | |||
| 810 | .buswait_bwait = 4, | 812 | .buswait_bwait = 4, |
| 811 | .pipe_type = usbhs1_pipe_cfg, | 813 | .pipe_type = usbhs1_pipe_cfg, |
| 812 | .pipe_size = ARRAY_SIZE(usbhs1_pipe_cfg), | 814 | .pipe_size = ARRAY_SIZE(usbhs1_pipe_cfg), |
| 815 | .d0_tx_id = SHDMA_SLAVE_USB1_TX, | ||
| 816 | .d1_rx_id = SHDMA_SLAVE_USB1_RX, | ||
| 813 | }, | 817 | }, |
| 814 | }, | 818 | }, |
| 815 | }; | 819 | }; |
diff --git a/arch/arm/mach-shmobile/clock-sh7372.c b/arch/arm/mach-shmobile/clock-sh7372.c index e6e11e4e2d43..66975921e646 100644 --- a/arch/arm/mach-shmobile/clock-sh7372.c +++ b/arch/arm/mach-shmobile/clock-sh7372.c | |||
| @@ -503,16 +503,17 @@ static struct clk *late_main_clks[] = { | |||
| 503 | &sh7372_fsidivb_clk, | 503 | &sh7372_fsidivb_clk, |
| 504 | }; | 504 | }; |
| 505 | 505 | ||
| 506 | enum { MSTP001, | 506 | enum { MSTP001, MSTP000, |
| 507 | MSTP131, MSTP130, | 507 | MSTP131, MSTP130, |
| 508 | MSTP129, MSTP128, MSTP127, MSTP126, MSTP125, | 508 | MSTP129, MSTP128, MSTP127, MSTP126, MSTP125, |
| 509 | MSTP118, MSTP117, MSTP116, MSTP113, | 509 | MSTP118, MSTP117, MSTP116, MSTP113, |
| 510 | MSTP106, MSTP101, MSTP100, | 510 | MSTP106, MSTP101, MSTP100, |
| 511 | MSTP223, | 511 | MSTP223, |
| 512 | MSTP218, MSTP217, MSTP216, | 512 | MSTP218, MSTP217, MSTP216, MSTP214, MSTP208, MSTP207, |
| 513 | MSTP207, MSTP206, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200, | 513 | MSTP206, MSTP205, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200, |
| 514 | MSTP329, MSTP328, MSTP323, MSTP322, MSTP314, MSTP313, MSTP312, | 514 | MSTP328, MSTP323, MSTP322, MSTP314, MSTP313, MSTP312, |
| 515 | MSTP423, MSTP415, MSTP413, MSTP411, MSTP410, MSTP406, MSTP403, | 515 | MSTP423, MSTP415, MSTP413, MSTP411, MSTP410, MSTP407, MSTP406, |
| 516 | MSTP405, MSTP404, MSTP403, MSTP400, | ||
| 516 | MSTP_NR }; | 517 | MSTP_NR }; |
| 517 | 518 | ||
| 518 | #define MSTP(_parent, _reg, _bit, _flags) \ | 519 | #define MSTP(_parent, _reg, _bit, _flags) \ |
| @@ -520,6 +521,7 @@ enum { MSTP001, | |||
| 520 | 521 | ||
| 521 | static struct clk mstp_clks[MSTP_NR] = { | 522 | static struct clk mstp_clks[MSTP_NR] = { |
| 522 | [MSTP001] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR0, 1, 0), /* IIC2 */ | 523 | [MSTP001] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR0, 1, 0), /* IIC2 */ |
| 524 | [MSTP000] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR0, 0, 0), /* MSIOF0 */ | ||
| 523 | [MSTP131] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 31, 0), /* VEU3 */ | 525 | [MSTP131] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 31, 0), /* VEU3 */ |
| 524 | [MSTP130] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 30, 0), /* VEU2 */ | 526 | [MSTP130] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 30, 0), /* VEU2 */ |
| 525 | [MSTP129] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 29, 0), /* VEU1 */ | 527 | [MSTP129] = MSTP(&div4_clks[DIV4_B], SMSTPCR1, 29, 0), /* VEU1 */ |
| @@ -538,14 +540,16 @@ static struct clk mstp_clks[MSTP_NR] = { | |||
| 538 | [MSTP218] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 18, 0), /* DMAC1 */ | 540 | [MSTP218] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 18, 0), /* DMAC1 */ |
| 539 | [MSTP217] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 17, 0), /* DMAC2 */ | 541 | [MSTP217] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 17, 0), /* DMAC2 */ |
| 540 | [MSTP216] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 16, 0), /* DMAC3 */ | 542 | [MSTP216] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 16, 0), /* DMAC3 */ |
| 543 | [MSTP214] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 14, 0), /* USBDMAC */ | ||
| 544 | [MSTP208] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 8, 0), /* MSIOF1 */ | ||
| 541 | [MSTP207] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 7, 0), /* SCIFA5 */ | 545 | [MSTP207] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 7, 0), /* SCIFA5 */ |
| 542 | [MSTP206] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 6, 0), /* SCIFB */ | 546 | [MSTP206] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 6, 0), /* SCIFB */ |
| 547 | [MSTP205] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 5, 0), /* MSIOF2 */ | ||
| 543 | [MSTP204] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 4, 0), /* SCIFA0 */ | 548 | [MSTP204] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 4, 0), /* SCIFA0 */ |
| 544 | [MSTP203] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 3, 0), /* SCIFA1 */ | 549 | [MSTP203] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 3, 0), /* SCIFA1 */ |
| 545 | [MSTP202] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 2, 0), /* SCIFA2 */ | 550 | [MSTP202] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 2, 0), /* SCIFA2 */ |
| 546 | [MSTP201] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 1, 0), /* SCIFA3 */ | 551 | [MSTP201] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 1, 0), /* SCIFA3 */ |
| 547 | [MSTP200] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 0, 0), /* SCIFA4 */ | 552 | [MSTP200] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 0, 0), /* SCIFA4 */ |
| 548 | [MSTP329] = MSTP(&r_clk, SMSTPCR3, 29, 0), /* CMT10 */ | ||
| 549 | [MSTP328] = MSTP(&div6_clks[DIV6_SPU], SMSTPCR3, 28, 0), /* FSI2 */ | 553 | [MSTP328] = MSTP(&div6_clks[DIV6_SPU], SMSTPCR3, 28, 0), /* FSI2 */ |
| 550 | [MSTP323] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 23, 0), /* IIC1 */ | 554 | [MSTP323] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 23, 0), /* IIC1 */ |
| 551 | [MSTP322] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 22, 0), /* USB0 */ | 555 | [MSTP322] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR3, 22, 0), /* USB0 */ |
| @@ -557,8 +561,12 @@ static struct clk mstp_clks[MSTP_NR] = { | |||
| 557 | [MSTP413] = MSTP(&pllc1_div2_clk, SMSTPCR4, 13, 0), /* HDMI */ | 561 | [MSTP413] = MSTP(&pllc1_div2_clk, SMSTPCR4, 13, 0), /* HDMI */ |
| 558 | [MSTP411] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 11, 0), /* IIC3 */ | 562 | [MSTP411] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 11, 0), /* IIC3 */ |
| 559 | [MSTP410] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 10, 0), /* IIC4 */ | 563 | [MSTP410] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 10, 0), /* IIC4 */ |
| 564 | [MSTP407] = MSTP(&div4_clks[DIV4_HP], SMSTPCR4, 7, 0), /* USB-DMAC1 */ | ||
| 560 | [MSTP406] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 6, 0), /* USB1 */ | 565 | [MSTP406] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR4, 6, 0), /* USB1 */ |
| 566 | [MSTP405] = MSTP(&r_clk, SMSTPCR4, 5, 0), /* CMT4 */ | ||
| 567 | [MSTP404] = MSTP(&r_clk, SMSTPCR4, 4, 0), /* CMT3 */ | ||
| 561 | [MSTP403] = MSTP(&r_clk, SMSTPCR4, 3, 0), /* KEYSC */ | 568 | [MSTP403] = MSTP(&r_clk, SMSTPCR4, 3, 0), /* KEYSC */ |
| 569 | [MSTP400] = MSTP(&r_clk, SMSTPCR4, 0, 0), /* CMT2 */ | ||
| 562 | }; | 570 | }; |
| 563 | 571 | ||
| 564 | static struct clk_lookup lookups[] = { | 572 | static struct clk_lookup lookups[] = { |
| @@ -609,6 +617,7 @@ static struct clk_lookup lookups[] = { | |||
| 609 | 617 | ||
| 610 | /* MSTP32 clocks */ | 618 | /* MSTP32 clocks */ |
| 611 | CLKDEV_DEV_ID("i2c-sh_mobile.2", &mstp_clks[MSTP001]), /* IIC2 */ | 619 | CLKDEV_DEV_ID("i2c-sh_mobile.2", &mstp_clks[MSTP001]), /* IIC2 */ |
| 620 | CLKDEV_DEV_ID("spi_sh_msiof.0", &mstp_clks[MSTP000]), /* MSIOF0 */ | ||
| 612 | CLKDEV_DEV_ID("uio_pdrv_genirq.4", &mstp_clks[MSTP131]), /* VEU3 */ | 621 | CLKDEV_DEV_ID("uio_pdrv_genirq.4", &mstp_clks[MSTP131]), /* VEU3 */ |
| 613 | CLKDEV_DEV_ID("uio_pdrv_genirq.3", &mstp_clks[MSTP130]), /* VEU2 */ | 622 | CLKDEV_DEV_ID("uio_pdrv_genirq.3", &mstp_clks[MSTP130]), /* VEU2 */ |
| 614 | CLKDEV_DEV_ID("uio_pdrv_genirq.2", &mstp_clks[MSTP129]), /* VEU1 */ | 623 | CLKDEV_DEV_ID("uio_pdrv_genirq.2", &mstp_clks[MSTP129]), /* VEU1 */ |
| @@ -629,14 +638,16 @@ static struct clk_lookup lookups[] = { | |||
| 629 | CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP218]), /* DMAC1 */ | 638 | CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP218]), /* DMAC1 */ |
| 630 | CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP217]), /* DMAC2 */ | 639 | CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP217]), /* DMAC2 */ |
| 631 | CLKDEV_DEV_ID("sh-dma-engine.2", &mstp_clks[MSTP216]), /* DMAC3 */ | 640 | CLKDEV_DEV_ID("sh-dma-engine.2", &mstp_clks[MSTP216]), /* DMAC3 */ |
| 641 | CLKDEV_DEV_ID("sh-dma-engine.3", &mstp_clks[MSTP214]), /* USB-DMAC0 */ | ||
| 642 | CLKDEV_DEV_ID("spi_sh_msiof.1", &mstp_clks[MSTP208]), /* MSIOF1 */ | ||
| 632 | CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP207]), /* SCIFA5 */ | 643 | CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP207]), /* SCIFA5 */ |
| 633 | CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP206]), /* SCIFB */ | 644 | CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP206]), /* SCIFB */ |
| 645 | CLKDEV_DEV_ID("spi_sh_msiof.2", &mstp_clks[MSTP205]), /* MSIOF2 */ | ||
| 634 | CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]), /* SCIFA0 */ | 646 | CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]), /* SCIFA0 */ |
| 635 | CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]), /* SCIFA1 */ | 647 | CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP203]), /* SCIFA1 */ |
| 636 | CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP202]), /* SCIFA2 */ | 648 | CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP202]), /* SCIFA2 */ |
| 637 | CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP201]), /* SCIFA3 */ | 649 | CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP201]), /* SCIFA3 */ |
| 638 | CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP200]), /* SCIFA4 */ | 650 | CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP200]), /* SCIFA4 */ |
| 639 | CLKDEV_DEV_ID("sh_cmt.10", &mstp_clks[MSTP329]), /* CMT10 */ | ||
| 640 | CLKDEV_DEV_ID("sh_fsi2", &mstp_clks[MSTP328]), /* FSI2 */ | 651 | CLKDEV_DEV_ID("sh_fsi2", &mstp_clks[MSTP328]), /* FSI2 */ |
| 641 | CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[MSTP323]), /* IIC1 */ | 652 | CLKDEV_DEV_ID("i2c-sh_mobile.1", &mstp_clks[MSTP323]), /* IIC1 */ |
| 642 | CLKDEV_DEV_ID("r8a66597_hcd.0", &mstp_clks[MSTP322]), /* USB0 */ | 653 | CLKDEV_DEV_ID("r8a66597_hcd.0", &mstp_clks[MSTP322]), /* USB0 */ |
| @@ -650,10 +661,14 @@ static struct clk_lookup lookups[] = { | |||
| 650 | CLKDEV_DEV_ID("sh-mobile-hdmi", &mstp_clks[MSTP413]), /* HDMI */ | 661 | CLKDEV_DEV_ID("sh-mobile-hdmi", &mstp_clks[MSTP413]), /* HDMI */ |
| 651 | CLKDEV_DEV_ID("i2c-sh_mobile.3", &mstp_clks[MSTP411]), /* IIC3 */ | 662 | CLKDEV_DEV_ID("i2c-sh_mobile.3", &mstp_clks[MSTP411]), /* IIC3 */ |
| 652 | CLKDEV_DEV_ID("i2c-sh_mobile.4", &mstp_clks[MSTP410]), /* IIC4 */ | 663 | CLKDEV_DEV_ID("i2c-sh_mobile.4", &mstp_clks[MSTP410]), /* IIC4 */ |
| 664 | CLKDEV_DEV_ID("sh-dma-engine.4", &mstp_clks[MSTP407]), /* USB-DMAC1 */ | ||
| 653 | CLKDEV_DEV_ID("r8a66597_hcd.1", &mstp_clks[MSTP406]), /* USB1 */ | 665 | CLKDEV_DEV_ID("r8a66597_hcd.1", &mstp_clks[MSTP406]), /* USB1 */ |
| 654 | CLKDEV_DEV_ID("r8a66597_udc.1", &mstp_clks[MSTP406]), /* USB1 */ | 666 | CLKDEV_DEV_ID("r8a66597_udc.1", &mstp_clks[MSTP406]), /* USB1 */ |
| 655 | CLKDEV_DEV_ID("renesas_usbhs.1", &mstp_clks[MSTP406]), /* USB1 */ | 667 | CLKDEV_DEV_ID("renesas_usbhs.1", &mstp_clks[MSTP406]), /* USB1 */ |
| 668 | CLKDEV_DEV_ID("sh_cmt.4", &mstp_clks[MSTP405]), /* CMT4 */ | ||
| 669 | CLKDEV_DEV_ID("sh_cmt.3", &mstp_clks[MSTP404]), /* CMT3 */ | ||
| 656 | CLKDEV_DEV_ID("sh_keysc.0", &mstp_clks[MSTP403]), /* KEYSC */ | 670 | CLKDEV_DEV_ID("sh_keysc.0", &mstp_clks[MSTP403]), /* KEYSC */ |
| 671 | CLKDEV_DEV_ID("sh_cmt.2", &mstp_clks[MSTP400]), /* CMT2 */ | ||
| 657 | 672 | ||
| 658 | CLKDEV_ICK_ID("hdmi", "sh_mobile_lcdc_fb.1", | 673 | CLKDEV_ICK_ID("hdmi", "sh_mobile_lcdc_fb.1", |
| 659 | &div6_reparent_clks[DIV6_HDMI]), | 674 | &div6_reparent_clks[DIV6_HDMI]), |
diff --git a/arch/arm/mach-shmobile/clock-sh73a0.c b/arch/arm/mach-shmobile/clock-sh73a0.c index 6db2ccabc2bf..61a846bb30f2 100644 --- a/arch/arm/mach-shmobile/clock-sh73a0.c +++ b/arch/arm/mach-shmobile/clock-sh73a0.c | |||
| @@ -365,7 +365,7 @@ void __init sh73a0_clock_init(void) | |||
| 365 | __raw_writel(0x108, SD2CKCR); | 365 | __raw_writel(0x108, SD2CKCR); |
| 366 | 366 | ||
| 367 | /* detect main clock parent */ | 367 | /* detect main clock parent */ |
| 368 | switch ((__raw_readl(CKSCR) >> 24) & 0x03) { | 368 | switch ((__raw_readl(CKSCR) >> 28) & 0x03) { |
| 369 | case 0: | 369 | case 0: |
| 370 | main_clk.parent = &sh73a0_extal1_clk; | 370 | main_clk.parent = &sh73a0_extal1_clk; |
| 371 | break; | 371 | break; |
diff --git a/arch/arm/mach-shmobile/include/mach/sh7372.h b/arch/arm/mach-shmobile/include/mach/sh7372.h index ce595cee86cd..24e63a85e669 100644 --- a/arch/arm/mach-shmobile/include/mach/sh7372.h +++ b/arch/arm/mach-shmobile/include/mach/sh7372.h | |||
| @@ -459,6 +459,10 @@ enum { | |||
| 459 | SHDMA_SLAVE_SDHI2_TX, | 459 | SHDMA_SLAVE_SDHI2_TX, |
| 460 | SHDMA_SLAVE_MMCIF_RX, | 460 | SHDMA_SLAVE_MMCIF_RX, |
| 461 | SHDMA_SLAVE_MMCIF_TX, | 461 | SHDMA_SLAVE_MMCIF_TX, |
| 462 | SHDMA_SLAVE_USB0_TX, | ||
| 463 | SHDMA_SLAVE_USB0_RX, | ||
| 464 | SHDMA_SLAVE_USB1_TX, | ||
| 465 | SHDMA_SLAVE_USB1_RX, | ||
| 462 | }; | 466 | }; |
| 463 | 467 | ||
| 464 | extern struct clk sh7372_extal1_clk; | 468 | extern struct clk sh7372_extal1_clk; |
diff --git a/arch/arm/mach-shmobile/intc-sh7372.c b/arch/arm/mach-shmobile/intc-sh7372.c index 3b28743c77eb..739315e30eb9 100644 --- a/arch/arm/mach-shmobile/intc-sh7372.c +++ b/arch/arm/mach-shmobile/intc-sh7372.c | |||
| @@ -379,7 +379,7 @@ enum { | |||
| 379 | /* BBIF2 */ | 379 | /* BBIF2 */ |
| 380 | VPU, | 380 | VPU, |
| 381 | TSIF1, | 381 | TSIF1, |
| 382 | _3DG_SGX530, | 382 | /* 3DG */ |
| 383 | _2DDMAC, | 383 | _2DDMAC, |
| 384 | IIC2_ALI2, IIC2_TACKI2, IIC2_WAITI2, IIC2_DTEI2, | 384 | IIC2_ALI2, IIC2_TACKI2, IIC2_WAITI2, IIC2_DTEI2, |
| 385 | IPMMU_IPMMUR, IPMMU_IPMMUR2, | 385 | IPMMU_IPMMUR, IPMMU_IPMMUR2, |
| @@ -436,7 +436,7 @@ static struct intc_vect intcs_vectors[] = { | |||
| 436 | /* BBIF2 */ | 436 | /* BBIF2 */ |
| 437 | INTCS_VECT(VPU, 0x980), | 437 | INTCS_VECT(VPU, 0x980), |
| 438 | INTCS_VECT(TSIF1, 0x9a0), | 438 | INTCS_VECT(TSIF1, 0x9a0), |
| 439 | INTCS_VECT(_3DG_SGX530, 0x9e0), | 439 | /* 3DG */ |
| 440 | INTCS_VECT(_2DDMAC, 0xa00), | 440 | INTCS_VECT(_2DDMAC, 0xa00), |
| 441 | INTCS_VECT(IIC2_ALI2, 0xa80), INTCS_VECT(IIC2_TACKI2, 0xaa0), | 441 | INTCS_VECT(IIC2_ALI2, 0xa80), INTCS_VECT(IIC2_TACKI2, 0xaa0), |
| 442 | INTCS_VECT(IIC2_WAITI2, 0xac0), INTCS_VECT(IIC2_DTEI2, 0xae0), | 442 | INTCS_VECT(IIC2_WAITI2, 0xac0), INTCS_VECT(IIC2_DTEI2, 0xae0), |
| @@ -521,7 +521,7 @@ static struct intc_mask_reg intcs_mask_registers[] = { | |||
| 521 | RTDMAC_1_DEI3, RTDMAC_1_DEI2, RTDMAC_1_DEI1, RTDMAC_1_DEI0 } }, | 521 | RTDMAC_1_DEI3, RTDMAC_1_DEI2, RTDMAC_1_DEI1, RTDMAC_1_DEI0 } }, |
| 522 | { 0xffd20198, 0xffd201d8, 8, /* IMR6SA / IMCR6SA */ | 522 | { 0xffd20198, 0xffd201d8, 8, /* IMR6SA / IMCR6SA */ |
| 523 | { 0, 0, MSIOF, 0, | 523 | { 0, 0, MSIOF, 0, |
| 524 | _3DG_SGX530, 0, 0, 0 } }, | 524 | 0, 0, 0, 0 } }, |
| 525 | { 0xffd2019c, 0xffd201dc, 8, /* IMR7SA / IMCR7SA */ | 525 | { 0xffd2019c, 0xffd201dc, 8, /* IMR7SA / IMCR7SA */ |
| 526 | { 0, TMU_TUNI2, TMU_TUNI1, TMU_TUNI0, | 526 | { 0, TMU_TUNI2, TMU_TUNI1, TMU_TUNI0, |
| 527 | 0, 0, 0, 0 } }, | 527 | 0, 0, 0, 0 } }, |
| @@ -561,7 +561,6 @@ static struct intc_prio_reg intcs_prio_registers[] = { | |||
| 561 | TMU_TUNI2, TSIF1 } }, | 561 | TMU_TUNI2, TSIF1 } }, |
| 562 | { 0xffd2001c, 0, 16, 4, /* IPRHS */ { 0, 0, VEU, BEU } }, | 562 | { 0xffd2001c, 0, 16, 4, /* IPRHS */ { 0, 0, VEU, BEU } }, |
| 563 | { 0xffd20020, 0, 16, 4, /* IPRIS */ { 0, MSIOF, TSIF0, IIC0 } }, | 563 | { 0xffd20020, 0, 16, 4, /* IPRIS */ { 0, MSIOF, TSIF0, IIC0 } }, |
| 564 | { 0xffd20024, 0, 16, 4, /* IPRJS */ { 0, _3DG_SGX530, 0, 0 } }, | ||
| 565 | { 0xffd20028, 0, 16, 4, /* IPRKS */ { 0, 0, LMB, 0 } }, | 564 | { 0xffd20028, 0, 16, 4, /* IPRKS */ { 0, 0, LMB, 0 } }, |
| 566 | { 0xffd2002c, 0, 16, 4, /* IPRLS */ { IPMMU, 0, 0, 0 } }, | 565 | { 0xffd2002c, 0, 16, 4, /* IPRLS */ { IPMMU, 0, 0, 0 } }, |
| 567 | { 0xffd20030, 0, 16, 4, /* IPRMS */ { IIC2, 0, 0, 0 } }, | 566 | { 0xffd20030, 0, 16, 4, /* IPRMS */ { IIC2, 0, 0, 0 } }, |
diff --git a/arch/arm/mach-shmobile/setup-sh7372.c b/arch/arm/mach-shmobile/setup-sh7372.c index 79f0413d8725..2d9b1b1a2538 100644 --- a/arch/arm/mach-shmobile/setup-sh7372.c +++ b/arch/arm/mach-shmobile/setup-sh7372.c | |||
| @@ -169,35 +169,35 @@ static struct platform_device scif6_device = { | |||
| 169 | }; | 169 | }; |
| 170 | 170 | ||
| 171 | /* CMT */ | 171 | /* CMT */ |
| 172 | static struct sh_timer_config cmt10_platform_data = { | 172 | static struct sh_timer_config cmt2_platform_data = { |
| 173 | .name = "CMT10", | 173 | .name = "CMT2", |
| 174 | .channel_offset = 0x10, | 174 | .channel_offset = 0x40, |
| 175 | .timer_bit = 0, | 175 | .timer_bit = 5, |
| 176 | .clockevent_rating = 125, | 176 | .clockevent_rating = 125, |
| 177 | .clocksource_rating = 125, | 177 | .clocksource_rating = 125, |
| 178 | }; | 178 | }; |
| 179 | 179 | ||
| 180 | static struct resource cmt10_resources[] = { | 180 | static struct resource cmt2_resources[] = { |
| 181 | [0] = { | 181 | [0] = { |
| 182 | .name = "CMT10", | 182 | .name = "CMT2", |
| 183 | .start = 0xe6138010, | 183 | .start = 0xe6130040, |
| 184 | .end = 0xe613801b, | 184 | .end = 0xe613004b, |
| 185 | .flags = IORESOURCE_MEM, | 185 | .flags = IORESOURCE_MEM, |
| 186 | }, | 186 | }, |
| 187 | [1] = { | 187 | [1] = { |
| 188 | .start = evt2irq(0x0b00), /* CMT1_CMT10 */ | 188 | .start = evt2irq(0x0b80), /* CMT2 */ |
| 189 | .flags = IORESOURCE_IRQ, | 189 | .flags = IORESOURCE_IRQ, |
| 190 | }, | 190 | }, |
| 191 | }; | 191 | }; |
| 192 | 192 | ||
| 193 | static struct platform_device cmt10_device = { | 193 | static struct platform_device cmt2_device = { |
| 194 | .name = "sh_cmt", | 194 | .name = "sh_cmt", |
| 195 | .id = 10, | 195 | .id = 2, |
| 196 | .dev = { | 196 | .dev = { |
| 197 | .platform_data = &cmt10_platform_data, | 197 | .platform_data = &cmt2_platform_data, |
| 198 | }, | 198 | }, |
| 199 | .resource = cmt10_resources, | 199 | .resource = cmt2_resources, |
| 200 | .num_resources = ARRAY_SIZE(cmt10_resources), | 200 | .num_resources = ARRAY_SIZE(cmt2_resources), |
| 201 | }; | 201 | }; |
| 202 | 202 | ||
| 203 | /* TMU */ | 203 | /* TMU */ |
| @@ -602,6 +602,150 @@ static struct platform_device dma2_device = { | |||
| 602 | }, | 602 | }, |
| 603 | }; | 603 | }; |
| 604 | 604 | ||
| 605 | /* | ||
| 606 | * USB-DMAC | ||
| 607 | */ | ||
| 608 | |||
| 609 | unsigned int usbts_shift[] = {3, 4, 5}; | ||
| 610 | |||
| 611 | enum { | ||
| 612 | XMIT_SZ_8BYTE = 0, | ||
| 613 | XMIT_SZ_16BYTE = 1, | ||
| 614 | XMIT_SZ_32BYTE = 2, | ||
| 615 | }; | ||
| 616 | |||
| 617 | #define USBTS_INDEX2VAL(i) (((i) & 3) << 6) | ||
| 618 | |||
| 619 | static const struct sh_dmae_channel sh7372_usb_dmae_channels[] = { | ||
| 620 | { | ||
| 621 | .offset = 0, | ||
| 622 | }, { | ||
| 623 | .offset = 0x20, | ||
| 624 | }, | ||
| 625 | }; | ||
| 626 | |||
| 627 | /* USB DMAC0 */ | ||
| 628 | static const struct sh_dmae_slave_config sh7372_usb_dmae0_slaves[] = { | ||
| 629 | { | ||
| 630 | .slave_id = SHDMA_SLAVE_USB0_TX, | ||
| 631 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 632 | }, { | ||
| 633 | .slave_id = SHDMA_SLAVE_USB0_RX, | ||
| 634 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 635 | }, | ||
| 636 | }; | ||
| 637 | |||
| 638 | static struct sh_dmae_pdata usb_dma0_platform_data = { | ||
| 639 | .slave = sh7372_usb_dmae0_slaves, | ||
| 640 | .slave_num = ARRAY_SIZE(sh7372_usb_dmae0_slaves), | ||
| 641 | .channel = sh7372_usb_dmae_channels, | ||
| 642 | .channel_num = ARRAY_SIZE(sh7372_usb_dmae_channels), | ||
| 643 | .ts_low_shift = 6, | ||
| 644 | .ts_low_mask = 0xc0, | ||
| 645 | .ts_high_shift = 0, | ||
| 646 | .ts_high_mask = 0, | ||
| 647 | .ts_shift = usbts_shift, | ||
| 648 | .ts_shift_num = ARRAY_SIZE(usbts_shift), | ||
| 649 | .dmaor_init = DMAOR_DME, | ||
| 650 | .chcr_offset = 0x14, | ||
| 651 | .chcr_ie_bit = 1 << 5, | ||
| 652 | .dmaor_is_32bit = 1, | ||
| 653 | .needs_tend_set = 1, | ||
| 654 | .no_dmars = 1, | ||
| 655 | }; | ||
| 656 | |||
| 657 | static struct resource sh7372_usb_dmae0_resources[] = { | ||
| 658 | { | ||
| 659 | /* Channel registers and DMAOR */ | ||
| 660 | .start = 0xe68a0020, | ||
| 661 | .end = 0xe68a0064 - 1, | ||
| 662 | .flags = IORESOURCE_MEM, | ||
| 663 | }, | ||
| 664 | { | ||
| 665 | /* VCR/SWR/DMICR */ | ||
| 666 | .start = 0xe68a0000, | ||
| 667 | .end = 0xe68a0014 - 1, | ||
| 668 | .flags = IORESOURCE_MEM, | ||
| 669 | }, | ||
| 670 | { | ||
| 671 | /* IRQ for channels */ | ||
| 672 | .start = evt2irq(0x0a00), | ||
| 673 | .end = evt2irq(0x0a00), | ||
| 674 | .flags = IORESOURCE_IRQ, | ||
| 675 | }, | ||
| 676 | }; | ||
| 677 | |||
| 678 | static struct platform_device usb_dma0_device = { | ||
| 679 | .name = "sh-dma-engine", | ||
| 680 | .id = 3, | ||
| 681 | .resource = sh7372_usb_dmae0_resources, | ||
| 682 | .num_resources = ARRAY_SIZE(sh7372_usb_dmae0_resources), | ||
| 683 | .dev = { | ||
| 684 | .platform_data = &usb_dma0_platform_data, | ||
| 685 | }, | ||
| 686 | }; | ||
| 687 | |||
| 688 | /* USB DMAC1 */ | ||
| 689 | static const struct sh_dmae_slave_config sh7372_usb_dmae1_slaves[] = { | ||
| 690 | { | ||
| 691 | .slave_id = SHDMA_SLAVE_USB1_TX, | ||
| 692 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 693 | }, { | ||
| 694 | .slave_id = SHDMA_SLAVE_USB1_RX, | ||
| 695 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 696 | }, | ||
| 697 | }; | ||
| 698 | |||
| 699 | static struct sh_dmae_pdata usb_dma1_platform_data = { | ||
| 700 | .slave = sh7372_usb_dmae1_slaves, | ||
| 701 | .slave_num = ARRAY_SIZE(sh7372_usb_dmae1_slaves), | ||
| 702 | .channel = sh7372_usb_dmae_channels, | ||
| 703 | .channel_num = ARRAY_SIZE(sh7372_usb_dmae_channels), | ||
| 704 | .ts_low_shift = 6, | ||
| 705 | .ts_low_mask = 0xc0, | ||
| 706 | .ts_high_shift = 0, | ||
| 707 | .ts_high_mask = 0, | ||
| 708 | .ts_shift = usbts_shift, | ||
| 709 | .ts_shift_num = ARRAY_SIZE(usbts_shift), | ||
| 710 | .dmaor_init = DMAOR_DME, | ||
| 711 | .chcr_offset = 0x14, | ||
| 712 | .chcr_ie_bit = 1 << 5, | ||
| 713 | .dmaor_is_32bit = 1, | ||
| 714 | .needs_tend_set = 1, | ||
| 715 | .no_dmars = 1, | ||
| 716 | }; | ||
| 717 | |||
| 718 | static struct resource sh7372_usb_dmae1_resources[] = { | ||
| 719 | { | ||
| 720 | /* Channel registers and DMAOR */ | ||
| 721 | .start = 0xe68c0020, | ||
| 722 | .end = 0xe68c0064 - 1, | ||
| 723 | .flags = IORESOURCE_MEM, | ||
| 724 | }, | ||
| 725 | { | ||
| 726 | /* VCR/SWR/DMICR */ | ||
| 727 | .start = 0xe68c0000, | ||
| 728 | .end = 0xe68c0014 - 1, | ||
| 729 | .flags = IORESOURCE_MEM, | ||
| 730 | }, | ||
| 731 | { | ||
| 732 | /* IRQ for channels */ | ||
| 733 | .start = evt2irq(0x1d00), | ||
| 734 | .end = evt2irq(0x1d00), | ||
| 735 | .flags = IORESOURCE_IRQ, | ||
| 736 | }, | ||
| 737 | }; | ||
| 738 | |||
| 739 | static struct platform_device usb_dma1_device = { | ||
| 740 | .name = "sh-dma-engine", | ||
| 741 | .id = 4, | ||
| 742 | .resource = sh7372_usb_dmae1_resources, | ||
| 743 | .num_resources = ARRAY_SIZE(sh7372_usb_dmae1_resources), | ||
| 744 | .dev = { | ||
| 745 | .platform_data = &usb_dma1_platform_data, | ||
| 746 | }, | ||
| 747 | }; | ||
| 748 | |||
| 605 | /* VPU */ | 749 | /* VPU */ |
| 606 | static struct uio_info vpu_platform_data = { | 750 | static struct uio_info vpu_platform_data = { |
| 607 | .name = "VPU5HG", | 751 | .name = "VPU5HG", |
| @@ -818,7 +962,7 @@ static struct platform_device *sh7372_early_devices[] __initdata = { | |||
| 818 | &scif4_device, | 962 | &scif4_device, |
| 819 | &scif5_device, | 963 | &scif5_device, |
| 820 | &scif6_device, | 964 | &scif6_device, |
| 821 | &cmt10_device, | 965 | &cmt2_device, |
| 822 | &tmu00_device, | 966 | &tmu00_device, |
| 823 | &tmu01_device, | 967 | &tmu01_device, |
| 824 | }; | 968 | }; |
| @@ -829,6 +973,8 @@ static struct platform_device *sh7372_late_devices[] __initdata = { | |||
| 829 | &dma0_device, | 973 | &dma0_device, |
| 830 | &dma1_device, | 974 | &dma1_device, |
| 831 | &dma2_device, | 975 | &dma2_device, |
| 976 | &usb_dma0_device, | ||
| 977 | &usb_dma1_device, | ||
| 832 | &vpu_device, | 978 | &vpu_device, |
| 833 | &veu0_device, | 979 | &veu0_device, |
| 834 | &veu1_device, | 980 | &veu1_device, |
diff --git a/arch/arm/mach-vexpress/v2m.c b/arch/arm/mach-vexpress/v2m.c index 9e6b93b1a043..d0d267a8d3f9 100644 --- a/arch/arm/mach-vexpress/v2m.c +++ b/arch/arm/mach-vexpress/v2m.c | |||
| @@ -318,6 +318,10 @@ static struct clk v2m_sp804_clk = { | |||
| 318 | .rate = 1000000, | 318 | .rate = 1000000, |
| 319 | }; | 319 | }; |
| 320 | 320 | ||
| 321 | static struct clk v2m_ref_clk = { | ||
| 322 | .rate = 32768, | ||
| 323 | }; | ||
| 324 | |||
| 321 | static struct clk dummy_apb_pclk; | 325 | static struct clk dummy_apb_pclk; |
| 322 | 326 | ||
| 323 | static struct clk_lookup v2m_lookups[] = { | 327 | static struct clk_lookup v2m_lookups[] = { |
| @@ -348,6 +352,9 @@ static struct clk_lookup v2m_lookups[] = { | |||
| 348 | }, { /* CLCD */ | 352 | }, { /* CLCD */ |
| 349 | .dev_id = "mb:clcd", | 353 | .dev_id = "mb:clcd", |
| 350 | .clk = &osc1_clk, | 354 | .clk = &osc1_clk, |
| 355 | }, { /* SP805 WDT */ | ||
| 356 | .dev_id = "mb:wdt", | ||
| 357 | .clk = &v2m_ref_clk, | ||
| 351 | }, { /* SP804 timers */ | 358 | }, { /* SP804 timers */ |
| 352 | .dev_id = "sp804", | 359 | .dev_id = "sp804", |
| 353 | .con_id = "v2m-timer0", | 360 | .con_id = "v2m-timer0", |
diff --git a/arch/arm/mm/proc-arm920.S b/arch/arm/mm/proc-arm920.S index 92bd102e3982..2e6849b41f66 100644 --- a/arch/arm/mm/proc-arm920.S +++ b/arch/arm/mm/proc-arm920.S | |||
| @@ -379,7 +379,7 @@ ENTRY(cpu_arm920_set_pte_ext) | |||
| 379 | 379 | ||
| 380 | /* Suspend/resume support: taken from arch/arm/plat-s3c24xx/sleep.S */ | 380 | /* Suspend/resume support: taken from arch/arm/plat-s3c24xx/sleep.S */ |
| 381 | .globl cpu_arm920_suspend_size | 381 | .globl cpu_arm920_suspend_size |
| 382 | .equ cpu_arm920_suspend_size, 4 * 3 | 382 | .equ cpu_arm920_suspend_size, 4 * 4 |
| 383 | #ifdef CONFIG_PM_SLEEP | 383 | #ifdef CONFIG_PM_SLEEP |
| 384 | ENTRY(cpu_arm920_do_suspend) | 384 | ENTRY(cpu_arm920_do_suspend) |
| 385 | stmfd sp!, {r4 - r7, lr} | 385 | stmfd sp!, {r4 - r7, lr} |
diff --git a/arch/arm/mm/proc-arm926.S b/arch/arm/mm/proc-arm926.S index 2bbcf053dffd..cd8f79c3a282 100644 --- a/arch/arm/mm/proc-arm926.S +++ b/arch/arm/mm/proc-arm926.S | |||
| @@ -394,7 +394,7 @@ ENTRY(cpu_arm926_set_pte_ext) | |||
| 394 | 394 | ||
| 395 | /* Suspend/resume support: taken from arch/arm/plat-s3c24xx/sleep.S */ | 395 | /* Suspend/resume support: taken from arch/arm/plat-s3c24xx/sleep.S */ |
| 396 | .globl cpu_arm926_suspend_size | 396 | .globl cpu_arm926_suspend_size |
| 397 | .equ cpu_arm926_suspend_size, 4 * 3 | 397 | .equ cpu_arm926_suspend_size, 4 * 4 |
| 398 | #ifdef CONFIG_PM_SLEEP | 398 | #ifdef CONFIG_PM_SLEEP |
| 399 | ENTRY(cpu_arm926_do_suspend) | 399 | ENTRY(cpu_arm926_do_suspend) |
| 400 | stmfd sp!, {r4 - r7, lr} | 400 | stmfd sp!, {r4 - r7, lr} |
diff --git a/arch/arm/mm/proc-sa1100.S b/arch/arm/mm/proc-sa1100.S index 07219c2ae114..69e7f2ef7384 100644 --- a/arch/arm/mm/proc-sa1100.S +++ b/arch/arm/mm/proc-sa1100.S | |||
| @@ -182,11 +182,11 @@ ENDPROC(cpu_sa1100_do_suspend) | |||
| 182 | 182 | ||
| 183 | ENTRY(cpu_sa1100_do_resume) | 183 | ENTRY(cpu_sa1100_do_resume) |
| 184 | ldmia r0, {r4 - r7} @ load cp regs | 184 | ldmia r0, {r4 - r7} @ load cp regs |
| 185 | mov r1, #0 | 185 | mov ip, #0 |
| 186 | mcr p15, 0, r1, c8, c7, 0 @ flush I+D TLBs | 186 | mcr p15, 0, ip, c8, c7, 0 @ flush I+D TLBs |
| 187 | mcr p15, 0, r1, c7, c7, 0 @ flush I&D cache | 187 | mcr p15, 0, ip, c7, c7, 0 @ flush I&D cache |
| 188 | mcr p15, 0, r1, c9, c0, 0 @ invalidate RB | 188 | mcr p15, 0, ip, c9, c0, 0 @ invalidate RB |
| 189 | mcr p15, 0, r1, c9, c0, 5 @ allow user space to use RB | 189 | mcr p15, 0, ip, c9, c0, 5 @ allow user space to use RB |
| 190 | 190 | ||
| 191 | mcr p15, 0, r4, c3, c0, 0 @ domain ID | 191 | mcr p15, 0, r4, c3, c0, 0 @ domain ID |
| 192 | mcr p15, 0, r5, c2, c0, 0 @ translation table base addr | 192 | mcr p15, 0, r5, c2, c0, 0 @ translation table base addr |
diff --git a/arch/arm/mm/proc-v6.S b/arch/arm/mm/proc-v6.S index 219138d2f158..a923aa0fd00d 100644 --- a/arch/arm/mm/proc-v6.S +++ b/arch/arm/mm/proc-v6.S | |||
| @@ -223,6 +223,22 @@ __v6_setup: | |||
| 223 | mrc p15, 0, r0, c1, c0, 0 @ read control register | 223 | mrc p15, 0, r0, c1, c0, 0 @ read control register |
| 224 | bic r0, r0, r5 @ clear bits them | 224 | bic r0, r0, r5 @ clear bits them |
| 225 | orr r0, r0, r6 @ set them | 225 | orr r0, r0, r6 @ set them |
| 226 | #ifdef CONFIG_ARM_ERRATA_364296 | ||
| 227 | /* | ||
| 228 | * Workaround for the 364296 ARM1136 r0p2 erratum (possible cache data | ||
| 229 | * corruption with hit-under-miss enabled). The conditional code below | ||
| 230 | * (setting the undocumented bit 31 in the auxiliary control register | ||
| 231 | * and the FI bit in the control register) disables hit-under-miss | ||
| 232 | * without putting the processor into full low interrupt latency mode. | ||
| 233 | */ | ||
| 234 | ldr r6, =0x4107b362 @ id for ARM1136 r0p2 | ||
| 235 | mrc p15, 0, r5, c0, c0, 0 @ get processor id | ||
| 236 | teq r5, r6 @ check for the faulty core | ||
| 237 | mrceq p15, 0, r5, c1, c0, 1 @ load aux control reg | ||
| 238 | orreq r5, r5, #(1 << 31) @ set the undocumented bit 31 | ||
| 239 | mcreq p15, 0, r5, c1, c0, 1 @ write aux control reg | ||
| 240 | orreq r0, r0, #(1 << 21) @ low interrupt latency configuration | ||
| 241 | #endif | ||
| 226 | mov pc, lr @ return to head.S:__ret | 242 | mov pc, lr @ return to head.S:__ret |
| 227 | 243 | ||
| 228 | /* | 244 | /* |
diff --git a/arch/arm/mm/proc-v7.S b/arch/arm/mm/proc-v7.S index a30e78542ccf..9049c0764db2 100644 --- a/arch/arm/mm/proc-v7.S +++ b/arch/arm/mm/proc-v7.S | |||
| @@ -66,6 +66,7 @@ ENDPROC(cpu_v7_proc_fin) | |||
| 66 | ENTRY(cpu_v7_reset) | 66 | ENTRY(cpu_v7_reset) |
| 67 | mrc p15, 0, r1, c1, c0, 0 @ ctrl register | 67 | mrc p15, 0, r1, c1, c0, 0 @ ctrl register |
| 68 | bic r1, r1, #0x1 @ ...............m | 68 | bic r1, r1, #0x1 @ ...............m |
| 69 | THUMB( bic r1, r1, #1 << 30 ) @ SCTLR.TE (Thumb exceptions) | ||
| 69 | mcr p15, 0, r1, c1, c0, 0 @ disable MMU | 70 | mcr p15, 0, r1, c1, c0, 0 @ disable MMU |
| 70 | isb | 71 | isb |
| 71 | mov pc, r0 | 72 | mov pc, r0 |
| @@ -247,13 +248,16 @@ ENTRY(cpu_v7_do_resume) | |||
| 247 | mcr p15, 0, r7, c2, c0, 0 @ TTB 0 | 248 | mcr p15, 0, r7, c2, c0, 0 @ TTB 0 |
| 248 | mcr p15, 0, r8, c2, c0, 1 @ TTB 1 | 249 | mcr p15, 0, r8, c2, c0, 1 @ TTB 1 |
| 249 | mcr p15, 0, ip, c2, c0, 2 @ TTB control register | 250 | mcr p15, 0, ip, c2, c0, 2 @ TTB control register |
| 250 | mcr p15, 0, r10, c1, c0, 1 @ Auxiliary control register | 251 | mrc p15, 0, r4, c1, c0, 1 @ Read Auxiliary control register |
| 252 | teq r4, r10 @ Is it already set? | ||
| 253 | mcrne p15, 0, r10, c1, c0, 1 @ No, so write it | ||
| 251 | mcr p15, 0, r11, c1, c0, 2 @ Co-processor access control | 254 | mcr p15, 0, r11, c1, c0, 2 @ Co-processor access control |
| 252 | ldr r4, =PRRR @ PRRR | 255 | ldr r4, =PRRR @ PRRR |
| 253 | ldr r5, =NMRR @ NMRR | 256 | ldr r5, =NMRR @ NMRR |
| 254 | mcr p15, 0, r4, c10, c2, 0 @ write PRRR | 257 | mcr p15, 0, r4, c10, c2, 0 @ write PRRR |
| 255 | mcr p15, 0, r5, c10, c2, 1 @ write NMRR | 258 | mcr p15, 0, r5, c10, c2, 1 @ write NMRR |
| 256 | isb | 259 | isb |
| 260 | dsb | ||
| 257 | mov r0, r9 @ control register | 261 | mov r0, r9 @ control register |
| 258 | mov r2, r7, lsr #14 @ get TTB0 base | 262 | mov r2, r7, lsr #14 @ get TTB0 base |
| 259 | mov r2, r2, lsl #14 | 263 | mov r2, r2, lsl #14 |
diff --git a/arch/arm/mm/proc-xsc3.S b/arch/arm/mm/proc-xsc3.S index 28c72a2006a1..755e1bf22681 100644 --- a/arch/arm/mm/proc-xsc3.S +++ b/arch/arm/mm/proc-xsc3.S | |||
| @@ -406,7 +406,7 @@ ENTRY(cpu_xsc3_set_pte_ext) | |||
| 406 | .align | 406 | .align |
| 407 | 407 | ||
| 408 | .globl cpu_xsc3_suspend_size | 408 | .globl cpu_xsc3_suspend_size |
| 409 | .equ cpu_xsc3_suspend_size, 4 * 8 | 409 | .equ cpu_xsc3_suspend_size, 4 * 7 |
| 410 | #ifdef CONFIG_PM_SLEEP | 410 | #ifdef CONFIG_PM_SLEEP |
| 411 | ENTRY(cpu_xsc3_do_suspend) | 411 | ENTRY(cpu_xsc3_do_suspend) |
| 412 | stmfd sp!, {r4 - r10, lr} | 412 | stmfd sp!, {r4 - r10, lr} |
| @@ -418,12 +418,12 @@ ENTRY(cpu_xsc3_do_suspend) | |||
| 418 | mrc p15, 0, r9, c1, c0, 1 @ auxiliary control reg | 418 | mrc p15, 0, r9, c1, c0, 1 @ auxiliary control reg |
| 419 | mrc p15, 0, r10, c1, c0, 0 @ control reg | 419 | mrc p15, 0, r10, c1, c0, 0 @ control reg |
| 420 | bic r4, r4, #2 @ clear frequency change bit | 420 | bic r4, r4, #2 @ clear frequency change bit |
| 421 | stmia r0, {r1, r4 - r10} @ store v:p offset + cp regs | 421 | stmia r0, {r4 - r10} @ store cp regs |
| 422 | ldmia sp!, {r4 - r10, pc} | 422 | ldmia sp!, {r4 - r10, pc} |
| 423 | ENDPROC(cpu_xsc3_do_suspend) | 423 | ENDPROC(cpu_xsc3_do_suspend) |
| 424 | 424 | ||
| 425 | ENTRY(cpu_xsc3_do_resume) | 425 | ENTRY(cpu_xsc3_do_resume) |
| 426 | ldmia r0, {r1, r4 - r10} @ load v:p offset + cp regs | 426 | ldmia r0, {r4 - r10} @ load cp regs |
| 427 | mov ip, #0 | 427 | mov ip, #0 |
| 428 | mcr p15, 0, ip, c7, c7, 0 @ invalidate I & D caches, BTB | 428 | mcr p15, 0, ip, c7, c7, 0 @ invalidate I & D caches, BTB |
| 429 | mcr p15, 0, ip, c7, c10, 4 @ drain write (&fill) buffer | 429 | mcr p15, 0, ip, c7, c10, 4 @ drain write (&fill) buffer |
diff --git a/arch/arm/plat-s5p/clock.c b/arch/arm/plat-s5p/clock.c index 02af235298e2..5f84a3f13ef9 100644 --- a/arch/arm/plat-s5p/clock.c +++ b/arch/arm/plat-s5p/clock.c | |||
| @@ -192,7 +192,7 @@ unsigned long s5p_spdif_get_rate(struct clk *clk) | |||
| 192 | if (IS_ERR(pclk)) | 192 | if (IS_ERR(pclk)) |
| 193 | return -EINVAL; | 193 | return -EINVAL; |
| 194 | 194 | ||
| 195 | rate = pclk->ops->get_rate(clk); | 195 | rate = pclk->ops->get_rate(pclk); |
| 196 | clk_put(pclk); | 196 | clk_put(pclk); |
| 197 | 197 | ||
| 198 | return rate; | 198 | return rate; |
diff --git a/arch/arm/plat-s5p/irq-gpioint.c b/arch/arm/plat-s5p/irq-gpioint.c index 327ab9f662e8..f71078ef6bb5 100644 --- a/arch/arm/plat-s5p/irq-gpioint.c +++ b/arch/arm/plat-s5p/irq-gpioint.c | |||
| @@ -23,6 +23,8 @@ | |||
| 23 | #include <plat/gpio-core.h> | 23 | #include <plat/gpio-core.h> |
| 24 | #include <plat/gpio-cfg.h> | 24 | #include <plat/gpio-cfg.h> |
| 25 | 25 | ||
| 26 | #include <asm/mach/irq.h> | ||
| 27 | |||
| 26 | #define GPIO_BASE(chip) (((unsigned long)(chip)->base) & 0xFFFFF000u) | 28 | #define GPIO_BASE(chip) (((unsigned long)(chip)->base) & 0xFFFFF000u) |
| 27 | 29 | ||
| 28 | #define CON_OFFSET 0x700 | 30 | #define CON_OFFSET 0x700 |
| @@ -81,6 +83,9 @@ static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc) | |||
| 81 | int group, pend_offset, mask_offset; | 83 | int group, pend_offset, mask_offset; |
| 82 | unsigned int pend, mask; | 84 | unsigned int pend, mask; |
| 83 | 85 | ||
| 86 | struct irq_chip *chip = irq_get_chip(irq); | ||
| 87 | chained_irq_enter(chip, desc); | ||
| 88 | |||
| 84 | for (group = 0; group < bank->nr_groups; group++) { | 89 | for (group = 0; group < bank->nr_groups; group++) { |
| 85 | struct s3c_gpio_chip *chip = bank->chips[group]; | 90 | struct s3c_gpio_chip *chip = bank->chips[group]; |
| 86 | if (!chip) | 91 | if (!chip) |
| @@ -102,6 +107,7 @@ static void s5p_gpioint_handler(unsigned int irq, struct irq_desc *desc) | |||
| 102 | pend &= ~BIT(offset); | 107 | pend &= ~BIT(offset); |
| 103 | } | 108 | } |
| 104 | } | 109 | } |
| 110 | chained_irq_exit(chip, desc); | ||
| 105 | } | 111 | } |
| 106 | 112 | ||
| 107 | static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip) | 113 | static __init int s5p_gpioint_add(struct s3c_gpio_chip *chip) |
diff --git a/arch/arm/plat-samsung/include/plat/backlight.h b/arch/arm/plat-samsung/include/plat/backlight.h index 51d8da846a62..ad530c78fe8c 100644 --- a/arch/arm/plat-samsung/include/plat/backlight.h +++ b/arch/arm/plat-samsung/include/plat/backlight.h | |||
| @@ -20,7 +20,7 @@ struct samsung_bl_gpio_info { | |||
| 20 | int func; | 20 | int func; |
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | extern void samsung_bl_set(struct samsung_bl_gpio_info *gpio_info, | 23 | extern void __init samsung_bl_set(struct samsung_bl_gpio_info *gpio_info, |
| 24 | struct platform_pwm_backlight_data *bl_data); | 24 | struct platform_pwm_backlight_data *bl_data); |
| 25 | 25 | ||
| 26 | #endif /* __ASM_PLAT_BACKLIGHT_H */ | 26 | #endif /* __ASM_PLAT_BACKLIGHT_H */ |
diff --git a/arch/arm/plat-samsung/irq-vic-timer.c b/arch/arm/plat-samsung/irq-vic-timer.c index f714d060370d..51583cd30164 100644 --- a/arch/arm/plat-samsung/irq-vic-timer.c +++ b/arch/arm/plat-samsung/irq-vic-timer.c | |||
| @@ -22,9 +22,14 @@ | |||
| 22 | #include <plat/irq-vic-timer.h> | 22 | #include <plat/irq-vic-timer.h> |
| 23 | #include <plat/regs-timer.h> | 23 | #include <plat/regs-timer.h> |
| 24 | 24 | ||
| 25 | #include <asm/mach/irq.h> | ||
| 26 | |||
| 25 | static void s3c_irq_demux_vic_timer(unsigned int irq, struct irq_desc *desc) | 27 | static void s3c_irq_demux_vic_timer(unsigned int irq, struct irq_desc *desc) |
| 26 | { | 28 | { |
| 29 | struct irq_chip *chip = irq_get_chip(irq); | ||
| 30 | chained_irq_enter(chip, desc); | ||
| 27 | generic_handle_irq((int)desc->irq_data.handler_data); | 31 | generic_handle_irq((int)desc->irq_data.handler_data); |
| 32 | chained_irq_exit(chip, desc); | ||
| 28 | } | 33 | } |
| 29 | 34 | ||
| 30 | /* We assume the IRQ_TIMER0..IRQ_TIMER4 range is continuous. */ | 35 | /* We assume the IRQ_TIMER0..IRQ_TIMER4 range is continuous. */ |
diff --git a/arch/arm/tools/mach-types b/arch/arm/tools/mach-types index fff68d0d521b..62cc8f981171 100644 --- a/arch/arm/tools/mach-types +++ b/arch/arm/tools/mach-types | |||
| @@ -351,7 +351,7 @@ centro MACH_CENTRO CENTRO 1944 | |||
| 351 | nokia_rx51 MACH_NOKIA_RX51 NOKIA_RX51 1955 | 351 | nokia_rx51 MACH_NOKIA_RX51 NOKIA_RX51 1955 |
| 352 | omap_zoom2 MACH_OMAP_ZOOM2 OMAP_ZOOM2 1967 | 352 | omap_zoom2 MACH_OMAP_ZOOM2 OMAP_ZOOM2 1967 |
| 353 | cpuat9260 MACH_CPUAT9260 CPUAT9260 1973 | 353 | cpuat9260 MACH_CPUAT9260 CPUAT9260 1973 |
| 354 | eukrea_cpuimx27 MACH_CPUIMX27 CPUIMX27 1975 | 354 | eukrea_cpuimx27 MACH_EUKREA_CPUIMX27 EUKREA_CPUIMX27 1975 |
| 355 | acs5k MACH_ACS5K ACS5K 1982 | 355 | acs5k MACH_ACS5K ACS5K 1982 |
| 356 | snapper_9260 MACH_SNAPPER_9260 SNAPPER_9260 1987 | 356 | snapper_9260 MACH_SNAPPER_9260 SNAPPER_9260 1987 |
| 357 | dsm320 MACH_DSM320 DSM320 1988 | 357 | dsm320 MACH_DSM320 DSM320 1988 |
| @@ -476,8 +476,8 @@ cns3420vb MACH_CNS3420VB CNS3420VB 2776 | |||
| 476 | omap4_panda MACH_OMAP4_PANDA OMAP4_PANDA 2791 | 476 | omap4_panda MACH_OMAP4_PANDA OMAP4_PANDA 2791 |
| 477 | ti8168evm MACH_TI8168EVM TI8168EVM 2800 | 477 | ti8168evm MACH_TI8168EVM TI8168EVM 2800 |
| 478 | teton_bga MACH_TETON_BGA TETON_BGA 2816 | 478 | teton_bga MACH_TETON_BGA TETON_BGA 2816 |
| 479 | eukrea_cpuimx25sd MACH_EUKREA_CPUIMX25 EUKREA_CPUIMX25 2820 | 479 | eukrea_cpuimx25sd MACH_EUKREA_CPUIMX25SD EUKREA_CPUIMX25SD 2820 |
| 480 | eukrea_cpuimx35sd MACH_EUKREA_CPUIMX35 EUKREA_CPUIMX35 2821 | 480 | eukrea_cpuimx35sd MACH_EUKREA_CPUIMX35SD EUKREA_CPUIMX35SD 2821 |
| 481 | eukrea_cpuimx51sd MACH_EUKREA_CPUIMX51SD EUKREA_CPUIMX51SD 2822 | 481 | eukrea_cpuimx51sd MACH_EUKREA_CPUIMX51SD EUKREA_CPUIMX51SD 2822 |
| 482 | eukrea_cpuimx51 MACH_EUKREA_CPUIMX51 EUKREA_CPUIMX51 2823 | 482 | eukrea_cpuimx51 MACH_EUKREA_CPUIMX51 EUKREA_CPUIMX51 2823 |
| 483 | smdkc210 MACH_SMDKC210 SMDKC210 2838 | 483 | smdkc210 MACH_SMDKC210 SMDKC210 2838 |
diff --git a/arch/parisc/kernel/syscall_table.S b/arch/parisc/kernel/syscall_table.S index e66366fd2abc..3735abd7f8f6 100644 --- a/arch/parisc/kernel/syscall_table.S +++ b/arch/parisc/kernel/syscall_table.S | |||
| @@ -259,7 +259,7 @@ | |||
| 259 | ENTRY_SAME(ni_syscall) /* query_module */ | 259 | ENTRY_SAME(ni_syscall) /* query_module */ |
| 260 | ENTRY_SAME(poll) | 260 | ENTRY_SAME(poll) |
| 261 | /* structs contain pointers and an in_addr... */ | 261 | /* structs contain pointers and an in_addr... */ |
| 262 | ENTRY_COMP(nfsservctl) | 262 | ENTRY_SAME(ni_syscall) /* was nfsservctl */ |
| 263 | ENTRY_SAME(setresgid) /* 170 */ | 263 | ENTRY_SAME(setresgid) /* 170 */ |
| 264 | ENTRY_SAME(getresgid) | 264 | ENTRY_SAME(getresgid) |
| 265 | ENTRY_SAME(prctl) | 265 | ENTRY_SAME(prctl) |
diff --git a/arch/powerpc/boot/dts/p1023rds.dts b/arch/powerpc/boot/dts/p1023rds.dts index bfa96aa8f2ca..d9b776740a67 100644 --- a/arch/powerpc/boot/dts/p1023rds.dts +++ b/arch/powerpc/boot/dts/p1023rds.dts | |||
| @@ -387,7 +387,7 @@ | |||
| 387 | #size-cells = <1>; | 387 | #size-cells = <1>; |
| 388 | compatible = "cfi-flash"; | 388 | compatible = "cfi-flash"; |
| 389 | reg = <0x0 0x0 0x02000000>; | 389 | reg = <0x0 0x0 0x02000000>; |
| 390 | bank-width = <1>; | 390 | bank-width = <2>; |
| 391 | device-width = <1>; | 391 | device-width = <1>; |
| 392 | partition@0 { | 392 | partition@0 { |
| 393 | label = "ramdisk"; | 393 | label = "ramdisk"; |
diff --git a/arch/powerpc/configs/85xx/p1023rds_defconfig b/arch/powerpc/configs/85xx/p1023rds_defconfig index 980ff8f61fd4..3ff5a81c709f 100644 --- a/arch/powerpc/configs/85xx/p1023rds_defconfig +++ b/arch/powerpc/configs/85xx/p1023rds_defconfig | |||
| @@ -171,3 +171,4 @@ CONFIG_CRYPTO_SHA256=y | |||
| 171 | CONFIG_CRYPTO_SHA512=y | 171 | CONFIG_CRYPTO_SHA512=y |
| 172 | CONFIG_CRYPTO_AES=y | 172 | CONFIG_CRYPTO_AES=y |
| 173 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 173 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
| 174 | CONFIG_CRYPTO_DEV_FSL_CAAM=y | ||
diff --git a/arch/powerpc/configs/corenet32_smp_defconfig b/arch/powerpc/configs/corenet32_smp_defconfig index 10562a5c65b9..4311d02a3bfd 100644 --- a/arch/powerpc/configs/corenet32_smp_defconfig +++ b/arch/powerpc/configs/corenet32_smp_defconfig | |||
| @@ -185,3 +185,4 @@ CONFIG_CRYPTO_SHA256=y | |||
| 185 | CONFIG_CRYPTO_SHA512=y | 185 | CONFIG_CRYPTO_SHA512=y |
| 186 | CONFIG_CRYPTO_AES=y | 186 | CONFIG_CRYPTO_AES=y |
| 187 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 187 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
| 188 | CONFIG_CRYPTO_DEV_FSL_CAAM=y | ||
diff --git a/arch/powerpc/configs/corenet64_smp_defconfig b/arch/powerpc/configs/corenet64_smp_defconfig index d32283555b53..c92c204a204b 100644 --- a/arch/powerpc/configs/corenet64_smp_defconfig +++ b/arch/powerpc/configs/corenet64_smp_defconfig | |||
| @@ -100,5 +100,8 @@ CONFIG_DEBUG_INFO=y | |||
| 100 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 100 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
| 101 | CONFIG_VIRQ_DEBUG=y | 101 | CONFIG_VIRQ_DEBUG=y |
| 102 | CONFIG_CRYPTO_PCBC=m | 102 | CONFIG_CRYPTO_PCBC=m |
| 103 | CONFIG_CRYPTO_SHA256=y | ||
| 104 | CONFIG_CRYPTO_SHA512=y | ||
| 105 | CONFIG_CRYPTO_AES=y | ||
| 103 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 106 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
| 104 | CONFIG_CRYPTO_DEV_TALITOS=y | 107 | CONFIG_CRYPTO_DEV_FSL_CAAM=y |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index fcd85d2c72dc..a3467bfb7671 100644 --- a/arch/powerpc/configs/mpc85xx_defconfig +++ b/arch/powerpc/configs/mpc85xx_defconfig | |||
| @@ -139,6 +139,7 @@ CONFIG_SND=y | |||
| 139 | CONFIG_SND_INTEL8X0=y | 139 | CONFIG_SND_INTEL8X0=y |
| 140 | # CONFIG_SND_PPC is not set | 140 | # CONFIG_SND_PPC is not set |
| 141 | # CONFIG_SND_USB is not set | 141 | # CONFIG_SND_USB is not set |
| 142 | CONFIG_SND_SOC=y | ||
| 142 | CONFIG_HID_A4TECH=y | 143 | CONFIG_HID_A4TECH=y |
| 143 | CONFIG_HID_APPLE=y | 144 | CONFIG_HID_APPLE=y |
| 144 | CONFIG_HID_BELKIN=y | 145 | CONFIG_HID_BELKIN=y |
diff --git a/arch/powerpc/configs/mpc85xx_smp_defconfig b/arch/powerpc/configs/mpc85xx_smp_defconfig index 908c941fc24c..9693f6ed3da0 100644 --- a/arch/powerpc/configs/mpc85xx_smp_defconfig +++ b/arch/powerpc/configs/mpc85xx_smp_defconfig | |||
| @@ -140,6 +140,7 @@ CONFIG_SND=y | |||
| 140 | CONFIG_SND_INTEL8X0=y | 140 | CONFIG_SND_INTEL8X0=y |
| 141 | # CONFIG_SND_PPC is not set | 141 | # CONFIG_SND_PPC is not set |
| 142 | # CONFIG_SND_USB is not set | 142 | # CONFIG_SND_USB is not set |
| 143 | CONFIG_SND_SOC=y | ||
| 143 | CONFIG_HID_A4TECH=y | 144 | CONFIG_HID_A4TECH=y |
| 144 | CONFIG_HID_APPLE=y | 145 | CONFIG_HID_APPLE=y |
| 145 | CONFIG_HID_BELKIN=y | 146 | CONFIG_HID_BELKIN=y |
diff --git a/arch/powerpc/include/asm/systbl.h b/arch/powerpc/include/asm/systbl.h index f6736b7da463..fa0d27a400de 100644 --- a/arch/powerpc/include/asm/systbl.h +++ b/arch/powerpc/include/asm/systbl.h | |||
| @@ -171,7 +171,7 @@ SYSCALL_SPU(setresuid) | |||
| 171 | SYSCALL_SPU(getresuid) | 171 | SYSCALL_SPU(getresuid) |
| 172 | SYSCALL(ni_syscall) | 172 | SYSCALL(ni_syscall) |
| 173 | SYSCALL_SPU(poll) | 173 | SYSCALL_SPU(poll) |
| 174 | COMPAT_SYS(nfsservctl) | 174 | SYSCALL(ni_syscall) |
| 175 | SYSCALL_SPU(setresgid) | 175 | SYSCALL_SPU(setresgid) |
| 176 | SYSCALL_SPU(getresgid) | 176 | SYSCALL_SPU(getresgid) |
| 177 | COMPAT_SYS_SPU(prctl) | 177 | COMPAT_SYS_SPU(prctl) |
diff --git a/arch/sh/include/asm/ptrace.h b/arch/sh/include/asm/ptrace.h index b97baf81a87b..2d3679b2447f 100644 --- a/arch/sh/include/asm/ptrace.h +++ b/arch/sh/include/asm/ptrace.h | |||
| @@ -123,7 +123,7 @@ static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs, | |||
| 123 | struct perf_event; | 123 | struct perf_event; |
| 124 | struct perf_sample_data; | 124 | struct perf_sample_data; |
| 125 | 125 | ||
| 126 | extern void ptrace_triggered(struct perf_event *bp, int nmi, | 126 | extern void ptrace_triggered(struct perf_event *bp, |
| 127 | struct perf_sample_data *data, struct pt_regs *regs); | 127 | struct perf_sample_data *data, struct pt_regs *regs); |
| 128 | 128 | ||
| 129 | #define task_pt_regs(task) \ | 129 | #define task_pt_regs(task) \ |
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7757.c b/arch/sh/kernel/cpu/sh4a/setup-sh7757.c index e915deafac89..05559295d2ca 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7757.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7757.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/serial_sci.h> | 15 | #include <linux/serial_sci.h> |
| 16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
| 17 | #include <linux/mm.h> | 17 | #include <linux/mm.h> |
| 18 | #include <linux/dma-mapping.h> | ||
| 18 | #include <linux/sh_timer.h> | 19 | #include <linux/sh_timer.h> |
| 19 | #include <linux/sh_dma.h> | 20 | #include <linux/sh_dma.h> |
| 20 | 21 | ||
diff --git a/arch/sh/kernel/idle.c b/arch/sh/kernel/idle.c index 32114e0941ae..db4ecd731a00 100644 --- a/arch/sh/kernel/idle.c +++ b/arch/sh/kernel/idle.c | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | #include <linux/atomic.h> | 22 | #include <linux/atomic.h> |
| 23 | #include <asm/smp.h> | 23 | #include <asm/smp.h> |
| 24 | 24 | ||
| 25 | static void (*pm_idle)(void); | 25 | void (*pm_idle)(void); |
| 26 | 26 | ||
| 27 | static int hlt_counter; | 27 | static int hlt_counter; |
| 28 | 28 | ||
diff --git a/arch/sh/kernel/traps_32.c b/arch/sh/kernel/traps_32.c index d9006f8ffc14..7bbef95c9d1b 100644 --- a/arch/sh/kernel/traps_32.c +++ b/arch/sh/kernel/traps_32.c | |||
| @@ -316,6 +316,35 @@ static int handle_unaligned_ins(insn_size_t instruction, struct pt_regs *regs, | |||
| 316 | break; | 316 | break; |
| 317 | } | 317 | } |
| 318 | break; | 318 | break; |
| 319 | |||
| 320 | case 9: /* mov.w @(disp,PC),Rn */ | ||
| 321 | srcu = (unsigned char __user *)regs->pc; | ||
| 322 | srcu += 4; | ||
| 323 | srcu += (instruction & 0x00FF) << 1; | ||
| 324 | dst = (unsigned char *)rn; | ||
| 325 | *(unsigned long *)dst = 0; | ||
| 326 | |||
| 327 | #if !defined(__LITTLE_ENDIAN__) | ||
| 328 | dst += 2; | ||
| 329 | #endif | ||
| 330 | |||
| 331 | if (ma->from(dst, srcu, 2)) | ||
| 332 | goto fetch_fault; | ||
| 333 | sign_extend(2, dst); | ||
| 334 | ret = 0; | ||
| 335 | break; | ||
| 336 | |||
| 337 | case 0xd: /* mov.l @(disp,PC),Rn */ | ||
| 338 | srcu = (unsigned char __user *)(regs->pc & ~0x3); | ||
| 339 | srcu += 4; | ||
| 340 | srcu += (instruction & 0x00FF) << 2; | ||
| 341 | dst = (unsigned char *)rn; | ||
| 342 | *(unsigned long *)dst = 0; | ||
| 343 | |||
| 344 | if (ma->from(dst, srcu, 4)) | ||
| 345 | goto fetch_fault; | ||
| 346 | ret = 0; | ||
| 347 | break; | ||
| 319 | } | 348 | } |
| 320 | return ret; | 349 | return ret; |
| 321 | 350 | ||
| @@ -466,6 +495,7 @@ int handle_unaligned_access(insn_size_t instruction, struct pt_regs *regs, | |||
| 466 | case 0x0500: /* mov.w @(disp,Rm),R0 */ | 495 | case 0x0500: /* mov.w @(disp,Rm),R0 */ |
| 467 | goto simple; | 496 | goto simple; |
| 468 | case 0x0B00: /* bf lab - no delayslot*/ | 497 | case 0x0B00: /* bf lab - no delayslot*/ |
| 498 | ret = 0; | ||
| 469 | break; | 499 | break; |
| 470 | case 0x0F00: /* bf/s lab */ | 500 | case 0x0F00: /* bf/s lab */ |
| 471 | ret = handle_delayslot(regs, instruction, ma); | 501 | ret = handle_delayslot(regs, instruction, ma); |
| @@ -479,6 +509,7 @@ int handle_unaligned_access(insn_size_t instruction, struct pt_regs *regs, | |||
| 479 | } | 509 | } |
| 480 | break; | 510 | break; |
| 481 | case 0x0900: /* bt lab - no delayslot */ | 511 | case 0x0900: /* bt lab - no delayslot */ |
| 512 | ret = 0; | ||
| 482 | break; | 513 | break; |
| 483 | case 0x0D00: /* bt/s lab */ | 514 | case 0x0D00: /* bt/s lab */ |
| 484 | ret = handle_delayslot(regs, instruction, ma); | 515 | ret = handle_delayslot(regs, instruction, ma); |
| @@ -494,6 +525,9 @@ int handle_unaligned_access(insn_size_t instruction, struct pt_regs *regs, | |||
| 494 | } | 525 | } |
| 495 | break; | 526 | break; |
| 496 | 527 | ||
| 528 | case 0x9000: /* mov.w @(disp,Rm),Rn */ | ||
| 529 | goto simple; | ||
| 530 | |||
| 497 | case 0xA000: /* bra label */ | 531 | case 0xA000: /* bra label */ |
| 498 | ret = handle_delayslot(regs, instruction, ma); | 532 | ret = handle_delayslot(regs, instruction, ma); |
| 499 | if (ret==0) | 533 | if (ret==0) |
| @@ -507,6 +541,9 @@ int handle_unaligned_access(insn_size_t instruction, struct pt_regs *regs, | |||
| 507 | regs->pc += SH_PC_12BIT_OFFSET(instruction); | 541 | regs->pc += SH_PC_12BIT_OFFSET(instruction); |
| 508 | } | 542 | } |
| 509 | break; | 543 | break; |
| 544 | |||
| 545 | case 0xD000: /* mov.l @(disp,Rm),Rn */ | ||
| 546 | goto simple; | ||
| 510 | } | 547 | } |
| 511 | return ret; | 548 | return ret; |
| 512 | 549 | ||
diff --git a/arch/sparc/kernel/irq.h b/arch/sparc/kernel/irq.h index 100b9c204e78..42851122bbd9 100644 --- a/arch/sparc/kernel/irq.h +++ b/arch/sparc/kernel/irq.h | |||
| @@ -88,7 +88,7 @@ BTFIXUPDEF_CALL(void, set_irq_udt, int) | |||
| 88 | #define set_irq_udt(cpu) BTFIXUP_CALL(set_irq_udt)(cpu) | 88 | #define set_irq_udt(cpu) BTFIXUP_CALL(set_irq_udt)(cpu) |
| 89 | 89 | ||
| 90 | /* All SUN4D IPIs are sent on this IRQ, may be shared with hard IRQs */ | 90 | /* All SUN4D IPIs are sent on this IRQ, may be shared with hard IRQs */ |
| 91 | #define SUN4D_IPI_IRQ 14 | 91 | #define SUN4D_IPI_IRQ 13 |
| 92 | 92 | ||
| 93 | extern void sun4d_ipi_interrupt(void); | 93 | extern void sun4d_ipi_interrupt(void); |
| 94 | 94 | ||
diff --git a/arch/sparc/kernel/setup_64.c b/arch/sparc/kernel/setup_64.c index 3e9daea1653d..3c5bb784214f 100644 --- a/arch/sparc/kernel/setup_64.c +++ b/arch/sparc/kernel/setup_64.c | |||
| @@ -440,8 +440,14 @@ static void __init init_sparc64_elf_hwcap(void) | |||
| 440 | cap |= AV_SPARC_VIS; | 440 | cap |= AV_SPARC_VIS; |
| 441 | if (tlb_type == cheetah || tlb_type == cheetah_plus) | 441 | if (tlb_type == cheetah || tlb_type == cheetah_plus) |
| 442 | cap |= AV_SPARC_VIS | AV_SPARC_VIS2; | 442 | cap |= AV_SPARC_VIS | AV_SPARC_VIS2; |
| 443 | if (tlb_type == cheetah_plus) | 443 | if (tlb_type == cheetah_plus) { |
| 444 | cap |= AV_SPARC_POPC; | 444 | unsigned long impl, ver; |
| 445 | |||
| 446 | __asm__ __volatile__("rdpr %%ver, %0" : "=r" (ver)); | ||
| 447 | impl = ((ver >> 32) & 0xffff); | ||
| 448 | if (impl == PANTHER_IMPL) | ||
| 449 | cap |= AV_SPARC_POPC; | ||
| 450 | } | ||
| 445 | if (tlb_type == hypervisor) { | 451 | if (tlb_type == hypervisor) { |
| 446 | if (sun4v_chip_type == SUN4V_CHIP_NIAGARA1) | 452 | if (sun4v_chip_type == SUN4V_CHIP_NIAGARA1) |
| 447 | cap |= AV_SPARC_ASI_BLK_INIT; | 453 | cap |= AV_SPARC_ASI_BLK_INIT; |
diff --git a/arch/sparc/kernel/systbls_64.S b/arch/sparc/kernel/systbls_64.S index c9296ab0b1f4..edbec45d4688 100644 --- a/arch/sparc/kernel/systbls_64.S +++ b/arch/sparc/kernel/systbls_64.S | |||
| @@ -68,7 +68,7 @@ sys_call_table32: | |||
| 68 | .word compat_sys_fstatfs64, sys_llseek, sys_mlock, sys_munlock, sys32_mlockall | 68 | .word compat_sys_fstatfs64, sys_llseek, sys_mlock, sys_munlock, sys32_mlockall |
| 69 | /*240*/ .word sys_munlockall, sys32_sched_setparam, sys32_sched_getparam, sys32_sched_setscheduler, sys32_sched_getscheduler | 69 | /*240*/ .word sys_munlockall, sys32_sched_setparam, sys32_sched_getparam, sys32_sched_setscheduler, sys32_sched_getscheduler |
| 70 | .word sys_sched_yield, sys32_sched_get_priority_max, sys32_sched_get_priority_min, sys32_sched_rr_get_interval, compat_sys_nanosleep | 70 | .word sys_sched_yield, sys32_sched_get_priority_max, sys32_sched_get_priority_min, sys32_sched_rr_get_interval, compat_sys_nanosleep |
| 71 | /*250*/ .word sys_mremap, compat_sys_sysctl, sys32_getsid, sys_fdatasync, sys32_nfsservctl | 71 | /*250*/ .word sys_mremap, compat_sys_sysctl, sys32_getsid, sys_fdatasync, sys_nis_syscall |
| 72 | .word sys32_sync_file_range, compat_sys_clock_settime, compat_sys_clock_gettime, compat_sys_clock_getres, sys32_clock_nanosleep | 72 | .word sys32_sync_file_range, compat_sys_clock_settime, compat_sys_clock_gettime, compat_sys_clock_getres, sys32_clock_nanosleep |
| 73 | /*260*/ .word compat_sys_sched_getaffinity, compat_sys_sched_setaffinity, sys32_timer_settime, compat_sys_timer_gettime, sys_timer_getoverrun | 73 | /*260*/ .word compat_sys_sched_getaffinity, compat_sys_sched_setaffinity, sys32_timer_settime, compat_sys_timer_gettime, sys_timer_getoverrun |
| 74 | .word sys_timer_delete, compat_sys_timer_create, sys_ni_syscall, compat_sys_io_setup, sys_io_destroy | 74 | .word sys_timer_delete, compat_sys_timer_create, sys_ni_syscall, compat_sys_io_setup, sys_io_destroy |
diff --git a/drivers/bcma/main.c b/drivers/bcma/main.c index 873e2e4ac55f..73b7b1a18fab 100644 --- a/drivers/bcma/main.c +++ b/drivers/bcma/main.c | |||
| @@ -15,6 +15,7 @@ MODULE_LICENSE("GPL"); | |||
| 15 | static int bcma_bus_match(struct device *dev, struct device_driver *drv); | 15 | static int bcma_bus_match(struct device *dev, struct device_driver *drv); |
| 16 | static int bcma_device_probe(struct device *dev); | 16 | static int bcma_device_probe(struct device *dev); |
| 17 | static int bcma_device_remove(struct device *dev); | 17 | static int bcma_device_remove(struct device *dev); |
| 18 | static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env); | ||
| 18 | 19 | ||
| 19 | static ssize_t manuf_show(struct device *dev, struct device_attribute *attr, char *buf) | 20 | static ssize_t manuf_show(struct device *dev, struct device_attribute *attr, char *buf) |
| 20 | { | 21 | { |
| @@ -49,6 +50,7 @@ static struct bus_type bcma_bus_type = { | |||
| 49 | .match = bcma_bus_match, | 50 | .match = bcma_bus_match, |
| 50 | .probe = bcma_device_probe, | 51 | .probe = bcma_device_probe, |
| 51 | .remove = bcma_device_remove, | 52 | .remove = bcma_device_remove, |
| 53 | .uevent = bcma_device_uevent, | ||
| 52 | .dev_attrs = bcma_device_attrs, | 54 | .dev_attrs = bcma_device_attrs, |
| 53 | }; | 55 | }; |
| 54 | 56 | ||
| @@ -227,6 +229,16 @@ static int bcma_device_remove(struct device *dev) | |||
| 227 | return 0; | 229 | return 0; |
| 228 | } | 230 | } |
| 229 | 231 | ||
| 232 | static int bcma_device_uevent(struct device *dev, struct kobj_uevent_env *env) | ||
| 233 | { | ||
| 234 | struct bcma_device *core = container_of(dev, struct bcma_device, dev); | ||
| 235 | |||
| 236 | return add_uevent_var(env, | ||
| 237 | "MODALIAS=bcma:m%04Xid%04Xrev%02Xcl%02X", | ||
| 238 | core->id.manuf, core->id.id, | ||
| 239 | core->id.rev, core->id.class); | ||
| 240 | } | ||
| 241 | |||
| 230 | static int __init bcma_modinit(void) | 242 | static int __init bcma_modinit(void) |
| 231 | { | 243 | { |
| 232 | int err; | 244 | int err; |
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c index a5854735bb2e..db7cb8111fbe 100644 --- a/drivers/bluetooth/ath3k.c +++ b/drivers/bluetooth/ath3k.c | |||
| @@ -63,6 +63,7 @@ static struct usb_device_id ath3k_table[] = { | |||
| 63 | /* Atheros AR3011 with sflash firmware*/ | 63 | /* Atheros AR3011 with sflash firmware*/ |
| 64 | { USB_DEVICE(0x0CF3, 0x3002) }, | 64 | { USB_DEVICE(0x0CF3, 0x3002) }, |
| 65 | { USB_DEVICE(0x13d3, 0x3304) }, | 65 | { USB_DEVICE(0x13d3, 0x3304) }, |
| 66 | { USB_DEVICE(0x0930, 0x0215) }, | ||
| 66 | 67 | ||
| 67 | /* Atheros AR9285 Malbec with sflash firmware */ | 68 | /* Atheros AR9285 Malbec with sflash firmware */ |
| 68 | { USB_DEVICE(0x03F0, 0x311D) }, | 69 | { USB_DEVICE(0x03F0, 0x311D) }, |
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 91d13a9e8c65..3ef476070baf 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
| @@ -106,6 +106,7 @@ static struct usb_device_id blacklist_table[] = { | |||
| 106 | /* Atheros 3011 with sflash firmware */ | 106 | /* Atheros 3011 with sflash firmware */ |
| 107 | { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE }, | 107 | { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE }, |
| 108 | { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE }, | 108 | { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE }, |
| 109 | { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE }, | ||
| 109 | 110 | ||
| 110 | /* Atheros AR9285 Malbec with sflash firmware */ | 111 | /* Atheros AR9285 Malbec with sflash firmware */ |
| 111 | { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE }, | 112 | { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE }, |
| @@ -256,7 +257,9 @@ static void btusb_intr_complete(struct urb *urb) | |||
| 256 | 257 | ||
| 257 | err = usb_submit_urb(urb, GFP_ATOMIC); | 258 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 258 | if (err < 0) { | 259 | if (err < 0) { |
| 259 | if (err != -EPERM) | 260 | /* -EPERM: urb is being killed; |
| 261 | * -ENODEV: device got disconnected */ | ||
| 262 | if (err != -EPERM && err != -ENODEV) | ||
| 260 | BT_ERR("%s urb %p failed to resubmit (%d)", | 263 | BT_ERR("%s urb %p failed to resubmit (%d)", |
| 261 | hdev->name, urb, -err); | 264 | hdev->name, urb, -err); |
| 262 | usb_unanchor_urb(urb); | 265 | usb_unanchor_urb(urb); |
| @@ -341,7 +344,9 @@ static void btusb_bulk_complete(struct urb *urb) | |||
| 341 | 344 | ||
| 342 | err = usb_submit_urb(urb, GFP_ATOMIC); | 345 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 343 | if (err < 0) { | 346 | if (err < 0) { |
| 344 | if (err != -EPERM) | 347 | /* -EPERM: urb is being killed; |
| 348 | * -ENODEV: device got disconnected */ | ||
| 349 | if (err != -EPERM && err != -ENODEV) | ||
| 345 | BT_ERR("%s urb %p failed to resubmit (%d)", | 350 | BT_ERR("%s urb %p failed to resubmit (%d)", |
| 346 | hdev->name, urb, -err); | 351 | hdev->name, urb, -err); |
| 347 | usb_unanchor_urb(urb); | 352 | usb_unanchor_urb(urb); |
| @@ -431,7 +436,9 @@ static void btusb_isoc_complete(struct urb *urb) | |||
| 431 | 436 | ||
| 432 | err = usb_submit_urb(urb, GFP_ATOMIC); | 437 | err = usb_submit_urb(urb, GFP_ATOMIC); |
| 433 | if (err < 0) { | 438 | if (err < 0) { |
| 434 | if (err != -EPERM) | 439 | /* -EPERM: urb is being killed; |
| 440 | * -ENODEV: device got disconnected */ | ||
| 441 | if (err != -EPERM && err != -ENODEV) | ||
| 435 | BT_ERR("%s urb %p failed to resubmit (%d)", | 442 | BT_ERR("%s urb %p failed to resubmit (%d)", |
| 436 | hdev->name, urb, -err); | 443 | hdev->name, urb, -err); |
| 437 | usb_unanchor_urb(urb); | 444 | usb_unanchor_urb(urb); |
diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index dc7c033ef587..32a77becc098 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/clk.h> | 26 | #include <linux/clk.h> |
| 27 | #include <linux/irq.h> | 27 | #include <linux/irq.h> |
| 28 | #include <linux/err.h> | 28 | #include <linux/err.h> |
| 29 | #include <linux/delay.h> | ||
| 29 | #include <linux/clocksource.h> | 30 | #include <linux/clocksource.h> |
| 30 | #include <linux/clockchips.h> | 31 | #include <linux/clockchips.h> |
| 31 | #include <linux/sh_timer.h> | 32 | #include <linux/sh_timer.h> |
| @@ -150,13 +151,13 @@ static void sh_cmt_start_stop_ch(struct sh_cmt_priv *p, int start) | |||
| 150 | 151 | ||
| 151 | static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate) | 152 | static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate) |
| 152 | { | 153 | { |
| 153 | int ret; | 154 | int k, ret; |
| 154 | 155 | ||
| 155 | /* enable clock */ | 156 | /* enable clock */ |
| 156 | ret = clk_enable(p->clk); | 157 | ret = clk_enable(p->clk); |
| 157 | if (ret) { | 158 | if (ret) { |
| 158 | dev_err(&p->pdev->dev, "cannot enable clock\n"); | 159 | dev_err(&p->pdev->dev, "cannot enable clock\n"); |
| 159 | return ret; | 160 | goto err0; |
| 160 | } | 161 | } |
| 161 | 162 | ||
| 162 | /* make sure channel is disabled */ | 163 | /* make sure channel is disabled */ |
| @@ -174,9 +175,38 @@ static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate) | |||
| 174 | sh_cmt_write(p, CMCOR, 0xffffffff); | 175 | sh_cmt_write(p, CMCOR, 0xffffffff); |
| 175 | sh_cmt_write(p, CMCNT, 0); | 176 | sh_cmt_write(p, CMCNT, 0); |
| 176 | 177 | ||
| 178 | /* | ||
| 179 | * According to the sh73a0 user's manual, as CMCNT can be operated | ||
| 180 | * only by the RCLK (Pseudo 32 KHz), there's one restriction on | ||
| 181 | * modifying CMCNT register; two RCLK cycles are necessary before | ||
| 182 | * this register is either read or any modification of the value | ||
| 183 | * it holds is reflected in the LSI's actual operation. | ||
| 184 | * | ||
| 185 | * While at it, we're supposed to clear out the CMCNT as of this | ||
| 186 | * moment, so make sure it's processed properly here. This will | ||
| 187 | * take RCLKx2 at maximum. | ||
| 188 | */ | ||
| 189 | for (k = 0; k < 100; k++) { | ||
| 190 | if (!sh_cmt_read(p, CMCNT)) | ||
| 191 | break; | ||
| 192 | udelay(1); | ||
| 193 | } | ||
| 194 | |||
| 195 | if (sh_cmt_read(p, CMCNT)) { | ||
| 196 | dev_err(&p->pdev->dev, "cannot clear CMCNT\n"); | ||
| 197 | ret = -ETIMEDOUT; | ||
| 198 | goto err1; | ||
| 199 | } | ||
| 200 | |||
| 177 | /* enable channel */ | 201 | /* enable channel */ |
| 178 | sh_cmt_start_stop_ch(p, 1); | 202 | sh_cmt_start_stop_ch(p, 1); |
| 179 | return 0; | 203 | return 0; |
| 204 | err1: | ||
| 205 | /* stop clock */ | ||
| 206 | clk_disable(p->clk); | ||
| 207 | |||
| 208 | err0: | ||
| 209 | return ret; | ||
| 180 | } | 210 | } |
| 181 | 211 | ||
| 182 | static void sh_cmt_disable(struct sh_cmt_priv *p) | 212 | static void sh_cmt_disable(struct sh_cmt_priv *p) |
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index 82db18506662..fe738f05309b 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c | |||
| @@ -499,6 +499,7 @@ void drm_connector_cleanup(struct drm_connector *connector) | |||
| 499 | mutex_lock(&dev->mode_config.mutex); | 499 | mutex_lock(&dev->mode_config.mutex); |
| 500 | drm_mode_object_put(dev, &connector->base); | 500 | drm_mode_object_put(dev, &connector->base); |
| 501 | list_del(&connector->head); | 501 | list_del(&connector->head); |
| 502 | dev->mode_config.num_connector--; | ||
| 502 | mutex_unlock(&dev->mode_config.mutex); | 503 | mutex_unlock(&dev->mode_config.mutex); |
| 503 | } | 504 | } |
| 504 | EXPORT_SYMBOL(drm_connector_cleanup); | 505 | EXPORT_SYMBOL(drm_connector_cleanup); |
| @@ -529,6 +530,7 @@ void drm_encoder_cleanup(struct drm_encoder *encoder) | |||
| 529 | mutex_lock(&dev->mode_config.mutex); | 530 | mutex_lock(&dev->mode_config.mutex); |
| 530 | drm_mode_object_put(dev, &encoder->base); | 531 | drm_mode_object_put(dev, &encoder->base); |
| 531 | list_del(&encoder->head); | 532 | list_del(&encoder->head); |
| 533 | dev->mode_config.num_encoder--; | ||
| 532 | mutex_unlock(&dev->mode_config.mutex); | 534 | mutex_unlock(&dev->mode_config.mutex); |
| 533 | } | 535 | } |
| 534 | EXPORT_SYMBOL(drm_encoder_cleanup); | 536 | EXPORT_SYMBOL(drm_encoder_cleanup); |
diff --git a/drivers/gpu/drm/radeon/evergreen.c b/drivers/gpu/drm/radeon/evergreen.c index fb5fa0898868..dc0a5b56c81a 100644 --- a/drivers/gpu/drm/radeon/evergreen.c +++ b/drivers/gpu/drm/radeon/evergreen.c | |||
| @@ -41,6 +41,31 @@ static void evergreen_gpu_init(struct radeon_device *rdev); | |||
| 41 | void evergreen_fini(struct radeon_device *rdev); | 41 | void evergreen_fini(struct radeon_device *rdev); |
| 42 | static void evergreen_pcie_gen2_enable(struct radeon_device *rdev); | 42 | static void evergreen_pcie_gen2_enable(struct radeon_device *rdev); |
| 43 | 43 | ||
| 44 | void evergreen_fix_pci_max_read_req_size(struct radeon_device *rdev) | ||
| 45 | { | ||
| 46 | u16 ctl, v; | ||
| 47 | int cap, err; | ||
| 48 | |||
| 49 | cap = pci_pcie_cap(rdev->pdev); | ||
| 50 | if (!cap) | ||
| 51 | return; | ||
| 52 | |||
| 53 | err = pci_read_config_word(rdev->pdev, cap + PCI_EXP_DEVCTL, &ctl); | ||
| 54 | if (err) | ||
| 55 | return; | ||
| 56 | |||
| 57 | v = (ctl & PCI_EXP_DEVCTL_READRQ) >> 12; | ||
| 58 | |||
| 59 | /* if bios or OS sets MAX_READ_REQUEST_SIZE to an invalid value, fix it | ||
| 60 | * to avoid hangs or perfomance issues | ||
| 61 | */ | ||
| 62 | if ((v == 0) || (v == 6) || (v == 7)) { | ||
| 63 | ctl &= ~PCI_EXP_DEVCTL_READRQ; | ||
| 64 | ctl |= (2 << 12); | ||
| 65 | pci_write_config_word(rdev->pdev, cap + PCI_EXP_DEVCTL, ctl); | ||
| 66 | } | ||
| 67 | } | ||
| 68 | |||
| 44 | void evergreen_pre_page_flip(struct radeon_device *rdev, int crtc) | 69 | void evergreen_pre_page_flip(struct radeon_device *rdev, int crtc) |
| 45 | { | 70 | { |
| 46 | /* enable the pflip int */ | 71 | /* enable the pflip int */ |
| @@ -1357,6 +1382,7 @@ int evergreen_cp_resume(struct radeon_device *rdev) | |||
| 1357 | SOFT_RESET_PA | | 1382 | SOFT_RESET_PA | |
| 1358 | SOFT_RESET_SH | | 1383 | SOFT_RESET_SH | |
| 1359 | SOFT_RESET_VGT | | 1384 | SOFT_RESET_VGT | |
| 1385 | SOFT_RESET_SPI | | ||
| 1360 | SOFT_RESET_SX)); | 1386 | SOFT_RESET_SX)); |
| 1361 | RREG32(GRBM_SOFT_RESET); | 1387 | RREG32(GRBM_SOFT_RESET); |
| 1362 | mdelay(15); | 1388 | mdelay(15); |
| @@ -1862,6 +1888,8 @@ static void evergreen_gpu_init(struct radeon_device *rdev) | |||
| 1862 | 1888 | ||
| 1863 | WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff)); | 1889 | WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff)); |
| 1864 | 1890 | ||
| 1891 | evergreen_fix_pci_max_read_req_size(rdev); | ||
| 1892 | |||
| 1865 | cc_gc_shader_pipe_config = RREG32(CC_GC_SHADER_PIPE_CONFIG) & ~2; | 1893 | cc_gc_shader_pipe_config = RREG32(CC_GC_SHADER_PIPE_CONFIG) & ~2; |
| 1866 | 1894 | ||
| 1867 | cc_gc_shader_pipe_config |= | 1895 | cc_gc_shader_pipe_config |= |
diff --git a/drivers/gpu/drm/radeon/ni.c b/drivers/gpu/drm/radeon/ni.c index 44c4750f4518..cbf57d75d925 100644 --- a/drivers/gpu/drm/radeon/ni.c +++ b/drivers/gpu/drm/radeon/ni.c | |||
| @@ -39,6 +39,7 @@ extern int evergreen_mc_wait_for_idle(struct radeon_device *rdev); | |||
| 39 | extern void evergreen_mc_program(struct radeon_device *rdev); | 39 | extern void evergreen_mc_program(struct radeon_device *rdev); |
| 40 | extern void evergreen_irq_suspend(struct radeon_device *rdev); | 40 | extern void evergreen_irq_suspend(struct radeon_device *rdev); |
| 41 | extern int evergreen_mc_init(struct radeon_device *rdev); | 41 | extern int evergreen_mc_init(struct radeon_device *rdev); |
| 42 | extern void evergreen_fix_pci_max_read_req_size(struct radeon_device *rdev); | ||
| 42 | 43 | ||
| 43 | #define EVERGREEN_PFP_UCODE_SIZE 1120 | 44 | #define EVERGREEN_PFP_UCODE_SIZE 1120 |
| 44 | #define EVERGREEN_PM4_UCODE_SIZE 1376 | 45 | #define EVERGREEN_PM4_UCODE_SIZE 1376 |
| @@ -669,6 +670,8 @@ static void cayman_gpu_init(struct radeon_device *rdev) | |||
| 669 | 670 | ||
| 670 | WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff)); | 671 | WREG32(GRBM_CNTL, GRBM_READ_TIMEOUT(0xff)); |
| 671 | 672 | ||
| 673 | evergreen_fix_pci_max_read_req_size(rdev); | ||
| 674 | |||
| 672 | mc_shared_chmap = RREG32(MC_SHARED_CHMAP); | 675 | mc_shared_chmap = RREG32(MC_SHARED_CHMAP); |
| 673 | mc_arb_ramcfg = RREG32(MC_ARB_RAMCFG); | 676 | mc_arb_ramcfg = RREG32(MC_ARB_RAMCFG); |
| 674 | 677 | ||
| @@ -1159,6 +1162,7 @@ int cayman_cp_resume(struct radeon_device *rdev) | |||
| 1159 | SOFT_RESET_PA | | 1162 | SOFT_RESET_PA | |
| 1160 | SOFT_RESET_SH | | 1163 | SOFT_RESET_SH | |
| 1161 | SOFT_RESET_VGT | | 1164 | SOFT_RESET_VGT | |
| 1165 | SOFT_RESET_SPI | | ||
| 1162 | SOFT_RESET_SX)); | 1166 | SOFT_RESET_SX)); |
| 1163 | RREG32(GRBM_SOFT_RESET); | 1167 | RREG32(GRBM_SOFT_RESET); |
| 1164 | mdelay(15); | 1168 | mdelay(15); |
diff --git a/drivers/gpu/drm/radeon/radeon_clocks.c b/drivers/gpu/drm/radeon/radeon_clocks.c index dcd0863e31ae..b6e18c8db9f5 100644 --- a/drivers/gpu/drm/radeon/radeon_clocks.c +++ b/drivers/gpu/drm/radeon/radeon_clocks.c | |||
| @@ -219,6 +219,9 @@ void radeon_get_clock_info(struct drm_device *dev) | |||
| 219 | } else { | 219 | } else { |
| 220 | DRM_INFO("Using generic clock info\n"); | 220 | DRM_INFO("Using generic clock info\n"); |
| 221 | 221 | ||
| 222 | /* may need to be per card */ | ||
| 223 | rdev->clock.max_pixel_clock = 35000; | ||
| 224 | |||
| 222 | if (rdev->flags & RADEON_IS_IGP) { | 225 | if (rdev->flags & RADEON_IS_IGP) { |
| 223 | p1pll->reference_freq = 1432; | 226 | p1pll->reference_freq = 1432; |
| 224 | p2pll->reference_freq = 1432; | 227 | p2pll->reference_freq = 1432; |
diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c index e0138b674aca..63675241c7ff 100644 --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c | |||
| @@ -3298,6 +3298,14 @@ void radeon_combios_asic_init(struct drm_device *dev) | |||
| 3298 | rdev->pdev->subsystem_device == 0x30a4) | 3298 | rdev->pdev->subsystem_device == 0x30a4) |
| 3299 | return; | 3299 | return; |
| 3300 | 3300 | ||
| 3301 | /* quirk for rs4xx Compaq Presario V5245EU laptop to make it resume | ||
| 3302 | * - it hangs on resume inside the dynclk 1 table. | ||
| 3303 | */ | ||
| 3304 | if (rdev->family == CHIP_RS480 && | ||
| 3305 | rdev->pdev->subsystem_vendor == 0x103c && | ||
| 3306 | rdev->pdev->subsystem_device == 0x30ae) | ||
| 3307 | return; | ||
| 3308 | |||
| 3301 | /* DYN CLK 1 */ | 3309 | /* DYN CLK 1 */ |
| 3302 | table = combios_get_table_offset(dev, COMBIOS_DYN_CLK_1_TABLE); | 3310 | table = combios_get_table_offset(dev, COMBIOS_DYN_CLK_1_TABLE); |
| 3303 | if (table) | 3311 | if (table) |
diff --git a/drivers/md/linear.h b/drivers/md/linear.h index 0ce29b61605a..2f2da05b2ce9 100644 --- a/drivers/md/linear.h +++ b/drivers/md/linear.h | |||
| @@ -10,9 +10,9 @@ typedef struct dev_info dev_info_t; | |||
| 10 | 10 | ||
| 11 | struct linear_private_data | 11 | struct linear_private_data |
| 12 | { | 12 | { |
| 13 | struct rcu_head rcu; | ||
| 13 | sector_t array_sectors; | 14 | sector_t array_sectors; |
| 14 | dev_info_t disks[0]; | 15 | dev_info_t disks[0]; |
| 15 | struct rcu_head rcu; | ||
| 16 | }; | 16 | }; |
| 17 | 17 | ||
| 18 | 18 | ||
diff --git a/drivers/md/md.c b/drivers/md/md.c index 8e221a20f5d9..3742ce8b0acf 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
| @@ -848,7 +848,7 @@ void md_super_write(mddev_t *mddev, mdk_rdev_t *rdev, | |||
| 848 | bio->bi_end_io = super_written; | 848 | bio->bi_end_io = super_written; |
| 849 | 849 | ||
| 850 | atomic_inc(&mddev->pending_writes); | 850 | atomic_inc(&mddev->pending_writes); |
| 851 | submit_bio(REQ_WRITE | REQ_SYNC | REQ_FLUSH | REQ_FUA, bio); | 851 | submit_bio(WRITE_FLUSH_FUA, bio); |
| 852 | } | 852 | } |
| 853 | 853 | ||
| 854 | void md_super_wait(mddev_t *mddev) | 854 | void md_super_wait(mddev_t *mddev) |
| @@ -1738,6 +1738,11 @@ static void super_1_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
| 1738 | sb->level = cpu_to_le32(mddev->level); | 1738 | sb->level = cpu_to_le32(mddev->level); |
| 1739 | sb->layout = cpu_to_le32(mddev->layout); | 1739 | sb->layout = cpu_to_le32(mddev->layout); |
| 1740 | 1740 | ||
| 1741 | if (test_bit(WriteMostly, &rdev->flags)) | ||
| 1742 | sb->devflags |= WriteMostly1; | ||
| 1743 | else | ||
| 1744 | sb->devflags &= ~WriteMostly1; | ||
| 1745 | |||
| 1741 | if (mddev->bitmap && mddev->bitmap_info.file == NULL) { | 1746 | if (mddev->bitmap && mddev->bitmap_info.file == NULL) { |
| 1742 | sb->bitmap_offset = cpu_to_le32((__u32)mddev->bitmap_info.offset); | 1747 | sb->bitmap_offset = cpu_to_le32((__u32)mddev->bitmap_info.offset); |
| 1743 | sb->feature_map = cpu_to_le32(MD_FEATURE_BITMAP_OFFSET); | 1748 | sb->feature_map = cpu_to_le32(MD_FEATURE_BITMAP_OFFSET); |
| @@ -2561,7 +2566,10 @@ state_store(mdk_rdev_t *rdev, const char *buf, size_t len) | |||
| 2561 | int err = -EINVAL; | 2566 | int err = -EINVAL; |
| 2562 | if (cmd_match(buf, "faulty") && rdev->mddev->pers) { | 2567 | if (cmd_match(buf, "faulty") && rdev->mddev->pers) { |
| 2563 | md_error(rdev->mddev, rdev); | 2568 | md_error(rdev->mddev, rdev); |
| 2564 | err = 0; | 2569 | if (test_bit(Faulty, &rdev->flags)) |
| 2570 | err = 0; | ||
| 2571 | else | ||
| 2572 | err = -EBUSY; | ||
| 2565 | } else if (cmd_match(buf, "remove")) { | 2573 | } else if (cmd_match(buf, "remove")) { |
| 2566 | if (rdev->raid_disk >= 0) | 2574 | if (rdev->raid_disk >= 0) |
| 2567 | err = -EBUSY; | 2575 | err = -EBUSY; |
| @@ -2584,7 +2592,7 @@ state_store(mdk_rdev_t *rdev, const char *buf, size_t len) | |||
| 2584 | err = 0; | 2592 | err = 0; |
| 2585 | } else if (cmd_match(buf, "-blocked")) { | 2593 | } else if (cmd_match(buf, "-blocked")) { |
| 2586 | if (!test_bit(Faulty, &rdev->flags) && | 2594 | if (!test_bit(Faulty, &rdev->flags) && |
| 2587 | test_bit(BlockedBadBlocks, &rdev->flags)) { | 2595 | rdev->badblocks.unacked_exist) { |
| 2588 | /* metadata handler doesn't understand badblocks, | 2596 | /* metadata handler doesn't understand badblocks, |
| 2589 | * so we need to fail the device | 2597 | * so we need to fail the device |
| 2590 | */ | 2598 | */ |
| @@ -5983,6 +5991,8 @@ static int set_disk_faulty(mddev_t *mddev, dev_t dev) | |||
| 5983 | return -ENODEV; | 5991 | return -ENODEV; |
| 5984 | 5992 | ||
| 5985 | md_error(mddev, rdev); | 5993 | md_error(mddev, rdev); |
| 5994 | if (!test_bit(Faulty, &rdev->flags)) | ||
| 5995 | return -EBUSY; | ||
| 5986 | return 0; | 5996 | return 0; |
| 5987 | } | 5997 | } |
| 5988 | 5998 | ||
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index dbae459fb02d..43709fa6b6df 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
| @@ -3336,7 +3336,7 @@ static void handle_stripe(struct stripe_head *sh) | |||
| 3336 | 3336 | ||
| 3337 | finish: | 3337 | finish: |
| 3338 | /* wait for this device to become unblocked */ | 3338 | /* wait for this device to become unblocked */ |
| 3339 | if (unlikely(s.blocked_rdev)) | 3339 | if (conf->mddev->external && unlikely(s.blocked_rdev)) |
| 3340 | md_wait_for_blocked_rdev(s.blocked_rdev, conf->mddev); | 3340 | md_wait_for_blocked_rdev(s.blocked_rdev, conf->mddev); |
| 3341 | 3341 | ||
| 3342 | if (s.handle_bad_blocks) | 3342 | if (s.handle_bad_blocks) |
diff --git a/drivers/net/can/ti_hecc.c b/drivers/net/can/ti_hecc.c index f7bbde9eb2cb..a81249246ece 100644 --- a/drivers/net/can/ti_hecc.c +++ b/drivers/net/can/ti_hecc.c | |||
| @@ -503,9 +503,9 @@ static netdev_tx_t ti_hecc_xmit(struct sk_buff *skb, struct net_device *ndev) | |||
| 503 | spin_unlock_irqrestore(&priv->mbx_lock, flags); | 503 | spin_unlock_irqrestore(&priv->mbx_lock, flags); |
| 504 | 504 | ||
| 505 | /* Prepare mailbox for transmission */ | 505 | /* Prepare mailbox for transmission */ |
| 506 | data = cf->can_dlc | (get_tx_head_prio(priv) << 8); | ||
| 506 | if (cf->can_id & CAN_RTR_FLAG) /* Remote transmission request */ | 507 | if (cf->can_id & CAN_RTR_FLAG) /* Remote transmission request */ |
| 507 | data |= HECC_CANMCF_RTR; | 508 | data |= HECC_CANMCF_RTR; |
| 508 | data |= get_tx_head_prio(priv) << 8; | ||
| 509 | hecc_write_mbx(priv, mbxno, HECC_CANMCF, data); | 509 | hecc_write_mbx(priv, mbxno, HECC_CANMCF, data); |
| 510 | 510 | ||
| 511 | if (cf->can_id & CAN_EFF_FLAG) /* Extended frame format */ | 511 | if (cf->can_id & CAN_EFF_FLAG) /* Extended frame format */ |
| @@ -923,6 +923,7 @@ static int ti_hecc_probe(struct platform_device *pdev) | |||
| 923 | priv->can.do_get_state = ti_hecc_get_state; | 923 | priv->can.do_get_state = ti_hecc_get_state; |
| 924 | priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; | 924 | priv->can.ctrlmode_supported = CAN_CTRLMODE_3_SAMPLES; |
| 925 | 925 | ||
| 926 | spin_lock_init(&priv->mbx_lock); | ||
| 926 | ndev->irq = irq->start; | 927 | ndev->irq = irq->start; |
| 927 | ndev->flags |= IFF_ECHO; | 928 | ndev->flags |= IFF_ECHO; |
| 928 | platform_set_drvdata(pdev, ndev); | 929 | platform_set_drvdata(pdev, ndev); |
diff --git a/drivers/net/cassini.c b/drivers/net/cassini.c index 646c86bcc545..fdb7a1756409 100644 --- a/drivers/net/cassini.c +++ b/drivers/net/cassini.c | |||
| @@ -2452,14 +2452,13 @@ static irqreturn_t cas_interruptN(int irq, void *dev_id) | |||
| 2452 | struct net_device *dev = dev_id; | 2452 | struct net_device *dev = dev_id; |
| 2453 | struct cas *cp = netdev_priv(dev); | 2453 | struct cas *cp = netdev_priv(dev); |
| 2454 | unsigned long flags; | 2454 | unsigned long flags; |
| 2455 | int ring; | 2455 | int ring = (irq == cp->pci_irq_INTC) ? 2 : 3; |
| 2456 | u32 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(ring)); | 2456 | u32 status = readl(cp->regs + REG_PLUS_INTRN_STATUS(ring)); |
| 2457 | 2457 | ||
| 2458 | /* check for shared irq */ | 2458 | /* check for shared irq */ |
| 2459 | if (status == 0) | 2459 | if (status == 0) |
| 2460 | return IRQ_NONE; | 2460 | return IRQ_NONE; |
| 2461 | 2461 | ||
| 2462 | ring = (irq == cp->pci_irq_INTC) ? 2 : 3; | ||
| 2463 | spin_lock_irqsave(&cp->lock, flags); | 2462 | spin_lock_irqsave(&cp->lock, flags); |
| 2464 | if (status & INTR_RX_DONE_ALT) { /* handle rx separately */ | 2463 | if (status & INTR_RX_DONE_ALT) { /* handle rx separately */ |
| 2465 | #ifdef USE_NAPI | 2464 | #ifdef USE_NAPI |
diff --git a/drivers/net/ibmveth.c b/drivers/net/ibmveth.c index ba99af05bf62..3e6679269400 100644 --- a/drivers/net/ibmveth.c +++ b/drivers/net/ibmveth.c | |||
| @@ -395,7 +395,7 @@ static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *ada | |||
| 395 | } | 395 | } |
| 396 | 396 | ||
| 397 | /* recycle the current buffer on the rx queue */ | 397 | /* recycle the current buffer on the rx queue */ |
| 398 | static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter) | 398 | static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter) |
| 399 | { | 399 | { |
| 400 | u32 q_index = adapter->rx_queue.index; | 400 | u32 q_index = adapter->rx_queue.index; |
| 401 | u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator; | 401 | u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator; |
| @@ -403,6 +403,7 @@ static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter) | |||
| 403 | unsigned int index = correlator & 0xffffffffUL; | 403 | unsigned int index = correlator & 0xffffffffUL; |
| 404 | union ibmveth_buf_desc desc; | 404 | union ibmveth_buf_desc desc; |
| 405 | unsigned long lpar_rc; | 405 | unsigned long lpar_rc; |
| 406 | int ret = 1; | ||
| 406 | 407 | ||
| 407 | BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS); | 408 | BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS); |
| 408 | BUG_ON(index >= adapter->rx_buff_pool[pool].size); | 409 | BUG_ON(index >= adapter->rx_buff_pool[pool].size); |
| @@ -410,7 +411,7 @@ static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter) | |||
| 410 | if (!adapter->rx_buff_pool[pool].active) { | 411 | if (!adapter->rx_buff_pool[pool].active) { |
| 411 | ibmveth_rxq_harvest_buffer(adapter); | 412 | ibmveth_rxq_harvest_buffer(adapter); |
| 412 | ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]); | 413 | ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]); |
| 413 | return; | 414 | goto out; |
| 414 | } | 415 | } |
| 415 | 416 | ||
| 416 | desc.fields.flags_len = IBMVETH_BUF_VALID | | 417 | desc.fields.flags_len = IBMVETH_BUF_VALID | |
| @@ -423,12 +424,16 @@ static void ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter) | |||
| 423 | netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed " | 424 | netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed " |
| 424 | "during recycle rc=%ld", lpar_rc); | 425 | "during recycle rc=%ld", lpar_rc); |
| 425 | ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator); | 426 | ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator); |
| 427 | ret = 0; | ||
| 426 | } | 428 | } |
| 427 | 429 | ||
| 428 | if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) { | 430 | if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) { |
| 429 | adapter->rx_queue.index = 0; | 431 | adapter->rx_queue.index = 0; |
| 430 | adapter->rx_queue.toggle = !adapter->rx_queue.toggle; | 432 | adapter->rx_queue.toggle = !adapter->rx_queue.toggle; |
| 431 | } | 433 | } |
| 434 | |||
| 435 | out: | ||
| 436 | return ret; | ||
| 432 | } | 437 | } |
| 433 | 438 | ||
| 434 | static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter) | 439 | static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter) |
| @@ -1084,8 +1089,9 @@ restart_poll: | |||
| 1084 | if (rx_flush) | 1089 | if (rx_flush) |
| 1085 | ibmveth_flush_buffer(skb->data, | 1090 | ibmveth_flush_buffer(skb->data, |
| 1086 | length + offset); | 1091 | length + offset); |
| 1092 | if (!ibmveth_rxq_recycle_buffer(adapter)) | ||
| 1093 | kfree_skb(skb); | ||
| 1087 | skb = new_skb; | 1094 | skb = new_skb; |
| 1088 | ibmveth_rxq_recycle_buffer(adapter); | ||
| 1089 | } else { | 1095 | } else { |
| 1090 | ibmveth_rxq_harvest_buffer(adapter); | 1096 | ibmveth_rxq_harvest_buffer(adapter); |
| 1091 | skb_reserve(skb, offset); | 1097 | skb_reserve(skb, offset); |
diff --git a/drivers/net/phy/national.c b/drivers/net/phy/national.c index 0620ba963508..04bb8fcc0cb5 100644 --- a/drivers/net/phy/national.c +++ b/drivers/net/phy/national.c | |||
| @@ -25,8 +25,9 @@ | |||
| 25 | /* DP83865 phy identifier values */ | 25 | /* DP83865 phy identifier values */ |
| 26 | #define DP83865_PHY_ID 0x20005c7a | 26 | #define DP83865_PHY_ID 0x20005c7a |
| 27 | 27 | ||
| 28 | #define DP83865_INT_MASK_REG 0x15 | 28 | #define DP83865_INT_STATUS 0x14 |
| 29 | #define DP83865_INT_MASK_STATUS 0x14 | 29 | #define DP83865_INT_MASK 0x15 |
| 30 | #define DP83865_INT_CLEAR 0x17 | ||
| 30 | 31 | ||
| 31 | #define DP83865_INT_REMOTE_FAULT 0x0008 | 32 | #define DP83865_INT_REMOTE_FAULT 0x0008 |
| 32 | #define DP83865_INT_ANE_COMPLETED 0x0010 | 33 | #define DP83865_INT_ANE_COMPLETED 0x0010 |
| @@ -68,21 +69,25 @@ static int ns_config_intr(struct phy_device *phydev) | |||
| 68 | int err; | 69 | int err; |
| 69 | 70 | ||
| 70 | if (phydev->interrupts == PHY_INTERRUPT_ENABLED) | 71 | if (phydev->interrupts == PHY_INTERRUPT_ENABLED) |
| 71 | err = phy_write(phydev, DP83865_INT_MASK_REG, | 72 | err = phy_write(phydev, DP83865_INT_MASK, |
| 72 | DP83865_INT_MASK_DEFAULT); | 73 | DP83865_INT_MASK_DEFAULT); |
| 73 | else | 74 | else |
| 74 | err = phy_write(phydev, DP83865_INT_MASK_REG, 0); | 75 | err = phy_write(phydev, DP83865_INT_MASK, 0); |
| 75 | 76 | ||
| 76 | return err; | 77 | return err; |
| 77 | } | 78 | } |
| 78 | 79 | ||
| 79 | static int ns_ack_interrupt(struct phy_device *phydev) | 80 | static int ns_ack_interrupt(struct phy_device *phydev) |
| 80 | { | 81 | { |
| 81 | int ret = phy_read(phydev, DP83865_INT_MASK_STATUS); | 82 | int ret = phy_read(phydev, DP83865_INT_STATUS); |
| 82 | if (ret < 0) | 83 | if (ret < 0) |
| 83 | return ret; | 84 | return ret; |
| 84 | 85 | ||
| 85 | return 0; | 86 | /* Clear the interrupt status bit by writing a “1” |
| 87 | * to the corresponding bit in INT_CLEAR (2:0 are reserved) */ | ||
| 88 | ret = phy_write(phydev, DP83865_INT_CLEAR, ret & ~0x7); | ||
| 89 | |||
| 90 | return ret; | ||
| 86 | } | 91 | } |
| 87 | 92 | ||
| 88 | static void ns_giga_speed_fallback(struct phy_device *phydev, int mode) | 93 | static void ns_giga_speed_fallback(struct phy_device *phydev, int mode) |
diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index 190f619e4215..1c1666e99106 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/phy.h> | 31 | #include <linux/phy.h> |
| 32 | #include <linux/cache.h> | 32 | #include <linux/cache.h> |
| 33 | #include <linux/io.h> | 33 | #include <linux/io.h> |
| 34 | #include <linux/interrupt.h> | ||
| 34 | #include <linux/pm_runtime.h> | 35 | #include <linux/pm_runtime.h> |
| 35 | #include <linux/slab.h> | 36 | #include <linux/slab.h> |
| 36 | #include <linux/ethtool.h> | 37 | #include <linux/ethtool.h> |
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c index c34bef1bf2b0..1b9400371eaf 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | |||
| @@ -69,7 +69,7 @@ static int ar9003_hw_power_interpolate(int32_t x, | |||
| 69 | static const struct ar9300_eeprom ar9300_default = { | 69 | static const struct ar9300_eeprom ar9300_default = { |
| 70 | .eepromVersion = 2, | 70 | .eepromVersion = 2, |
| 71 | .templateVersion = 2, | 71 | .templateVersion = 2, |
| 72 | .macAddr = {1, 2, 3, 4, 5, 6}, | 72 | .macAddr = {0, 2, 3, 4, 5, 6}, |
| 73 | .custData = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | 73 | .custData = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 74 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, | 74 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, |
| 75 | .baseEepHeader = { | 75 | .baseEepHeader = { |
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 9098aaad97a9..6530694a59ae 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
| @@ -2283,7 +2283,11 @@ static void ath9k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class) | |||
| 2283 | 2283 | ||
| 2284 | mutex_lock(&sc->mutex); | 2284 | mutex_lock(&sc->mutex); |
| 2285 | ah->coverage_class = coverage_class; | 2285 | ah->coverage_class = coverage_class; |
| 2286 | |||
| 2287 | ath9k_ps_wakeup(sc); | ||
| 2286 | ath9k_hw_init_global_settings(ah); | 2288 | ath9k_hw_init_global_settings(ah); |
| 2289 | ath9k_ps_restore(sc); | ||
| 2290 | |||
| 2287 | mutex_unlock(&sc->mutex); | 2291 | mutex_unlock(&sc->mutex); |
| 2288 | } | 2292 | } |
| 2289 | 2293 | ||
diff --git a/drivers/net/wireless/ath/carl9170/main.c b/drivers/net/wireless/ath/carl9170/main.c index 0122930b14c7..0474e6638d21 100644 --- a/drivers/net/wireless/ath/carl9170/main.c +++ b/drivers/net/wireless/ath/carl9170/main.c | |||
| @@ -1066,8 +1066,10 @@ static int carl9170_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, | |||
| 1066 | * the high througput speed in 802.11n networks. | 1066 | * the high througput speed in 802.11n networks. |
| 1067 | */ | 1067 | */ |
| 1068 | 1068 | ||
| 1069 | if (!is_main_vif(ar, vif)) | 1069 | if (!is_main_vif(ar, vif)) { |
| 1070 | mutex_lock(&ar->mutex); | ||
| 1070 | goto err_softw; | 1071 | goto err_softw; |
| 1072 | } | ||
| 1071 | 1073 | ||
| 1072 | /* | 1074 | /* |
| 1073 | * While the hardware supports *catch-all* key, for offloading | 1075 | * While the hardware supports *catch-all* key, for offloading |
diff --git a/drivers/net/wireless/rt2x00/rt2x00usb.c b/drivers/net/wireless/rt2x00/rt2x00usb.c index 7fbb55c9da82..1e31050dafc9 100644 --- a/drivers/net/wireless/rt2x00/rt2x00usb.c +++ b/drivers/net/wireless/rt2x00/rt2x00usb.c | |||
| @@ -871,18 +871,8 @@ int rt2x00usb_suspend(struct usb_interface *usb_intf, pm_message_t state) | |||
| 871 | { | 871 | { |
| 872 | struct ieee80211_hw *hw = usb_get_intfdata(usb_intf); | 872 | struct ieee80211_hw *hw = usb_get_intfdata(usb_intf); |
| 873 | struct rt2x00_dev *rt2x00dev = hw->priv; | 873 | struct rt2x00_dev *rt2x00dev = hw->priv; |
| 874 | int retval; | ||
| 875 | |||
| 876 | retval = rt2x00lib_suspend(rt2x00dev, state); | ||
| 877 | if (retval) | ||
| 878 | return retval; | ||
| 879 | 874 | ||
| 880 | /* | 875 | return rt2x00lib_suspend(rt2x00dev, state); |
| 881 | * Decrease usbdev refcount. | ||
| 882 | */ | ||
| 883 | usb_put_dev(interface_to_usbdev(usb_intf)); | ||
| 884 | |||
| 885 | return 0; | ||
| 886 | } | 876 | } |
| 887 | EXPORT_SYMBOL_GPL(rt2x00usb_suspend); | 877 | EXPORT_SYMBOL_GPL(rt2x00usb_suspend); |
| 888 | 878 | ||
| @@ -891,8 +881,6 @@ int rt2x00usb_resume(struct usb_interface *usb_intf) | |||
| 891 | struct ieee80211_hw *hw = usb_get_intfdata(usb_intf); | 881 | struct ieee80211_hw *hw = usb_get_intfdata(usb_intf); |
| 892 | struct rt2x00_dev *rt2x00dev = hw->priv; | 882 | struct rt2x00_dev *rt2x00dev = hw->priv; |
| 893 | 883 | ||
| 894 | usb_get_dev(interface_to_usbdev(usb_intf)); | ||
| 895 | |||
| 896 | return rt2x00lib_resume(rt2x00dev); | 884 | return rt2x00lib_resume(rt2x00dev); |
| 897 | } | 885 | } |
| 898 | EXPORT_SYMBOL_GPL(rt2x00usb_resume); | 886 | EXPORT_SYMBOL_GPL(rt2x00usb_resume); |
diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index e58c22d21e39..b70ae40ad660 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c | |||
| @@ -4283,6 +4283,7 @@ int wl1271_init_ieee80211(struct wl1271 *wl) | |||
| 4283 | wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | | 4283 | wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
| 4284 | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP); | 4284 | BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP); |
| 4285 | wl->hw->wiphy->max_scan_ssids = 1; | 4285 | wl->hw->wiphy->max_scan_ssids = 1; |
| 4286 | wl->hw->wiphy->max_sched_scan_ssids = 1; | ||
| 4286 | /* | 4287 | /* |
| 4287 | * Maximum length of elements in scanning probe request templates | 4288 | * Maximum length of elements in scanning probe request templates |
| 4288 | * should be the maximum length possible for a template, without | 4289 | * should be the maximum length possible for a template, without |
diff --git a/drivers/net/wireless/wl12xx/sdio.c b/drivers/net/wireless/wl12xx/sdio.c index 5cf18c2c23f0..fb1fd5af75ea 100644 --- a/drivers/net/wireless/wl12xx/sdio.c +++ b/drivers/net/wireless/wl12xx/sdio.c | |||
| @@ -164,7 +164,7 @@ static int wl1271_sdio_power_on(struct wl1271 *wl) | |||
| 164 | /* If enabled, tell runtime PM not to power off the card */ | 164 | /* If enabled, tell runtime PM not to power off the card */ |
| 165 | if (pm_runtime_enabled(&func->dev)) { | 165 | if (pm_runtime_enabled(&func->dev)) { |
| 166 | ret = pm_runtime_get_sync(&func->dev); | 166 | ret = pm_runtime_get_sync(&func->dev); |
| 167 | if (ret) | 167 | if (ret < 0) |
| 168 | goto out; | 168 | goto out; |
| 169 | } else { | 169 | } else { |
| 170 | /* Runtime PM is disabled: power up the card manually */ | 170 | /* Runtime PM is disabled: power up the card manually */ |
diff --git a/drivers/net/wireless/wl12xx/testmode.c b/drivers/net/wireless/wl12xx/testmode.c index 88add68bd9ac..4ae8effaee22 100644 --- a/drivers/net/wireless/wl12xx/testmode.c +++ b/drivers/net/wireless/wl12xx/testmode.c | |||
| @@ -36,7 +36,6 @@ enum wl1271_tm_commands { | |||
| 36 | WL1271_TM_CMD_TEST, | 36 | WL1271_TM_CMD_TEST, |
| 37 | WL1271_TM_CMD_INTERROGATE, | 37 | WL1271_TM_CMD_INTERROGATE, |
| 38 | WL1271_TM_CMD_CONFIGURE, | 38 | WL1271_TM_CMD_CONFIGURE, |
| 39 | WL1271_TM_CMD_NVS_PUSH, | ||
| 40 | WL1271_TM_CMD_SET_PLT_MODE, | 39 | WL1271_TM_CMD_SET_PLT_MODE, |
| 41 | WL1271_TM_CMD_RECOVER, | 40 | WL1271_TM_CMD_RECOVER, |
| 42 | 41 | ||
| @@ -190,48 +189,6 @@ static int wl1271_tm_cmd_configure(struct wl1271 *wl, struct nlattr *tb[]) | |||
| 190 | return 0; | 189 | return 0; |
| 191 | } | 190 | } |
| 192 | 191 | ||
| 193 | static int wl1271_tm_cmd_nvs_push(struct wl1271 *wl, struct nlattr *tb[]) | ||
| 194 | { | ||
| 195 | int ret = 0; | ||
| 196 | size_t len; | ||
| 197 | void *buf; | ||
| 198 | |||
| 199 | wl1271_debug(DEBUG_TESTMODE, "testmode cmd nvs push"); | ||
| 200 | |||
| 201 | if (!tb[WL1271_TM_ATTR_DATA]) | ||
| 202 | return -EINVAL; | ||
| 203 | |||
| 204 | buf = nla_data(tb[WL1271_TM_ATTR_DATA]); | ||
| 205 | len = nla_len(tb[WL1271_TM_ATTR_DATA]); | ||
| 206 | |||
| 207 | mutex_lock(&wl->mutex); | ||
| 208 | |||
| 209 | kfree(wl->nvs); | ||
| 210 | |||
| 211 | if ((wl->chip.id == CHIP_ID_1283_PG20) && | ||
| 212 | (len != sizeof(struct wl128x_nvs_file))) | ||
| 213 | return -EINVAL; | ||
| 214 | else if (len != sizeof(struct wl1271_nvs_file)) | ||
| 215 | return -EINVAL; | ||
| 216 | |||
| 217 | wl->nvs = kzalloc(len, GFP_KERNEL); | ||
| 218 | if (!wl->nvs) { | ||
| 219 | wl1271_error("could not allocate memory for the nvs file"); | ||
| 220 | ret = -ENOMEM; | ||
| 221 | goto out; | ||
| 222 | } | ||
| 223 | |||
| 224 | memcpy(wl->nvs, buf, len); | ||
| 225 | wl->nvs_len = len; | ||
| 226 | |||
| 227 | wl1271_debug(DEBUG_TESTMODE, "testmode pushed nvs"); | ||
| 228 | |||
| 229 | out: | ||
| 230 | mutex_unlock(&wl->mutex); | ||
| 231 | |||
| 232 | return ret; | ||
| 233 | } | ||
| 234 | |||
| 235 | static int wl1271_tm_cmd_set_plt_mode(struct wl1271 *wl, struct nlattr *tb[]) | 192 | static int wl1271_tm_cmd_set_plt_mode(struct wl1271 *wl, struct nlattr *tb[]) |
| 236 | { | 193 | { |
| 237 | u32 val; | 194 | u32 val; |
| @@ -288,8 +245,6 @@ int wl1271_tm_cmd(struct ieee80211_hw *hw, void *data, int len) | |||
| 288 | return wl1271_tm_cmd_interrogate(wl, tb); | 245 | return wl1271_tm_cmd_interrogate(wl, tb); |
| 289 | case WL1271_TM_CMD_CONFIGURE: | 246 | case WL1271_TM_CMD_CONFIGURE: |
| 290 | return wl1271_tm_cmd_configure(wl, tb); | 247 | return wl1271_tm_cmd_configure(wl, tb); |
| 291 | case WL1271_TM_CMD_NVS_PUSH: | ||
| 292 | return wl1271_tm_cmd_nvs_push(wl, tb); | ||
| 293 | case WL1271_TM_CMD_SET_PLT_MODE: | 248 | case WL1271_TM_CMD_SET_PLT_MODE: |
| 294 | return wl1271_tm_cmd_set_plt_mode(wl, tb); | 249 | return wl1271_tm_cmd_set_plt_mode(wl, tb); |
| 295 | case WL1271_TM_CMD_RECOVER: | 250 | case WL1271_TM_CMD_RECOVER: |
diff --git a/drivers/sh/intc/chip.c b/drivers/sh/intc/chip.c index f33e2dd97934..33b2ed451e09 100644 --- a/drivers/sh/intc/chip.c +++ b/drivers/sh/intc/chip.c | |||
| @@ -186,6 +186,9 @@ static unsigned char intc_irq_sense_table[IRQ_TYPE_SENSE_MASK + 1] = { | |||
| 186 | !defined(CONFIG_CPU_SUBTYPE_SH7709) | 186 | !defined(CONFIG_CPU_SUBTYPE_SH7709) |
| 187 | [IRQ_TYPE_LEVEL_HIGH] = VALID(3), | 187 | [IRQ_TYPE_LEVEL_HIGH] = VALID(3), |
| 188 | #endif | 188 | #endif |
| 189 | #if defined(CONFIG_ARCH_SH7372) | ||
| 190 | [IRQ_TYPE_EDGE_BOTH] = VALID(4), | ||
| 191 | #endif | ||
| 189 | }; | 192 | }; |
| 190 | 193 | ||
| 191 | static int intc_set_type(struct irq_data *data, unsigned int type) | 194 | static int intc_set_type(struct irq_data *data, unsigned int type) |
diff --git a/drivers/tty/serial/sh-sci.c b/drivers/tty/serial/sh-sci.c index a9414facda47..5ea6ec3442e6 100644 --- a/drivers/tty/serial/sh-sci.c +++ b/drivers/tty/serial/sh-sci.c | |||
| @@ -47,6 +47,7 @@ | |||
| 47 | #include <linux/ctype.h> | 47 | #include <linux/ctype.h> |
| 48 | #include <linux/err.h> | 48 | #include <linux/err.h> |
| 49 | #include <linux/dmaengine.h> | 49 | #include <linux/dmaengine.h> |
| 50 | #include <linux/dma-mapping.h> | ||
| 50 | #include <linux/scatterlist.h> | 51 | #include <linux/scatterlist.h> |
| 51 | #include <linux/slab.h> | 52 | #include <linux/slab.h> |
| 52 | 53 | ||
| @@ -95,6 +96,12 @@ struct sci_port { | |||
| 95 | #endif | 96 | #endif |
| 96 | 97 | ||
| 97 | struct notifier_block freq_transition; | 98 | struct notifier_block freq_transition; |
| 99 | |||
| 100 | #ifdef CONFIG_SERIAL_SH_SCI_CONSOLE | ||
| 101 | unsigned short saved_smr; | ||
| 102 | unsigned short saved_fcr; | ||
| 103 | unsigned char saved_brr; | ||
| 104 | #endif | ||
| 98 | }; | 105 | }; |
| 99 | 106 | ||
| 100 | /* Function prototypes */ | 107 | /* Function prototypes */ |
| @@ -1076,7 +1083,7 @@ static unsigned int sci_get_mctrl(struct uart_port *port) | |||
| 1076 | /* This routine is used for getting signals of: DTR, DCD, DSR, RI, | 1083 | /* This routine is used for getting signals of: DTR, DCD, DSR, RI, |
| 1077 | and CTS/RTS */ | 1084 | and CTS/RTS */ |
| 1078 | 1085 | ||
| 1079 | return TIOCM_DTR | TIOCM_RTS | TIOCM_DSR; | 1086 | return TIOCM_DTR | TIOCM_RTS | TIOCM_CTS | TIOCM_DSR; |
| 1080 | } | 1087 | } |
| 1081 | 1088 | ||
| 1082 | #ifdef CONFIG_SERIAL_SH_SCI_DMA | 1089 | #ifdef CONFIG_SERIAL_SH_SCI_DMA |
| @@ -1633,11 +1640,25 @@ static unsigned int sci_scbrr_calc(unsigned int algo_id, unsigned int bps, | |||
| 1633 | return ((freq + 16 * bps) / (32 * bps) - 1); | 1640 | return ((freq + 16 * bps) / (32 * bps) - 1); |
| 1634 | } | 1641 | } |
| 1635 | 1642 | ||
| 1643 | static void sci_reset(struct uart_port *port) | ||
| 1644 | { | ||
| 1645 | unsigned int status; | ||
| 1646 | |||
| 1647 | do { | ||
| 1648 | status = sci_in(port, SCxSR); | ||
| 1649 | } while (!(status & SCxSR_TEND(port))); | ||
| 1650 | |||
| 1651 | sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */ | ||
| 1652 | |||
| 1653 | if (port->type != PORT_SCI) | ||
| 1654 | sci_out(port, SCFCR, SCFCR_RFRST | SCFCR_TFRST); | ||
| 1655 | } | ||
| 1656 | |||
| 1636 | static void sci_set_termios(struct uart_port *port, struct ktermios *termios, | 1657 | static void sci_set_termios(struct uart_port *port, struct ktermios *termios, |
| 1637 | struct ktermios *old) | 1658 | struct ktermios *old) |
| 1638 | { | 1659 | { |
| 1639 | struct sci_port *s = to_sci_port(port); | 1660 | struct sci_port *s = to_sci_port(port); |
| 1640 | unsigned int status, baud, smr_val, max_baud; | 1661 | unsigned int baud, smr_val, max_baud; |
| 1641 | int t = -1; | 1662 | int t = -1; |
| 1642 | u16 scfcr = 0; | 1663 | u16 scfcr = 0; |
| 1643 | 1664 | ||
| @@ -1657,14 +1678,7 @@ static void sci_set_termios(struct uart_port *port, struct ktermios *termios, | |||
| 1657 | 1678 | ||
| 1658 | sci_port_enable(s); | 1679 | sci_port_enable(s); |
| 1659 | 1680 | ||
| 1660 | do { | 1681 | sci_reset(port); |
| 1661 | status = sci_in(port, SCxSR); | ||
| 1662 | } while (!(status & SCxSR_TEND(port))); | ||
| 1663 | |||
| 1664 | sci_out(port, SCSCR, 0x00); /* TE=0, RE=0, CKE1=0 */ | ||
| 1665 | |||
| 1666 | if (port->type != PORT_SCI) | ||
| 1667 | sci_out(port, SCFCR, scfcr | SCFCR_RFRST | SCFCR_TFRST); | ||
| 1668 | 1682 | ||
| 1669 | smr_val = sci_in(port, SCSMR) & 3; | 1683 | smr_val = sci_in(port, SCSMR) & 3; |
| 1670 | 1684 | ||
| @@ -2037,7 +2051,8 @@ static int __devinit serial_console_setup(struct console *co, char *options) | |||
| 2037 | if (options) | 2051 | if (options) |
| 2038 | uart_parse_options(options, &baud, &parity, &bits, &flow); | 2052 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
| 2039 | 2053 | ||
| 2040 | /* TODO: disable clock */ | 2054 | sci_port_disable(sci_port); |
| 2055 | |||
| 2041 | return uart_set_options(port, co, baud, parity, bits, flow); | 2056 | return uart_set_options(port, co, baud, parity, bits, flow); |
| 2042 | } | 2057 | } |
| 2043 | 2058 | ||
| @@ -2080,6 +2095,36 @@ static int __devinit sci_probe_earlyprintk(struct platform_device *pdev) | |||
| 2080 | return 0; | 2095 | return 0; |
| 2081 | } | 2096 | } |
| 2082 | 2097 | ||
| 2098 | #define uart_console(port) ((port)->cons->index == (port)->line) | ||
| 2099 | |||
| 2100 | static int sci_runtime_suspend(struct device *dev) | ||
| 2101 | { | ||
| 2102 | struct sci_port *sci_port = dev_get_drvdata(dev); | ||
| 2103 | struct uart_port *port = &sci_port->port; | ||
| 2104 | |||
| 2105 | if (uart_console(port)) { | ||
| 2106 | sci_port->saved_smr = sci_in(port, SCSMR); | ||
| 2107 | sci_port->saved_brr = sci_in(port, SCBRR); | ||
| 2108 | sci_port->saved_fcr = sci_in(port, SCFCR); | ||
| 2109 | } | ||
| 2110 | return 0; | ||
| 2111 | } | ||
| 2112 | |||
| 2113 | static int sci_runtime_resume(struct device *dev) | ||
| 2114 | { | ||
| 2115 | struct sci_port *sci_port = dev_get_drvdata(dev); | ||
| 2116 | struct uart_port *port = &sci_port->port; | ||
| 2117 | |||
| 2118 | if (uart_console(port)) { | ||
| 2119 | sci_reset(port); | ||
| 2120 | sci_out(port, SCSMR, sci_port->saved_smr); | ||
| 2121 | sci_out(port, SCBRR, sci_port->saved_brr); | ||
| 2122 | sci_out(port, SCFCR, sci_port->saved_fcr); | ||
| 2123 | sci_out(port, SCSCR, sci_port->cfg->scscr); | ||
| 2124 | } | ||
| 2125 | return 0; | ||
| 2126 | } | ||
| 2127 | |||
| 2083 | #define SCI_CONSOLE (&serial_console) | 2128 | #define SCI_CONSOLE (&serial_console) |
| 2084 | 2129 | ||
| 2085 | #else | 2130 | #else |
| @@ -2089,6 +2134,8 @@ static inline int __devinit sci_probe_earlyprintk(struct platform_device *pdev) | |||
| 2089 | } | 2134 | } |
| 2090 | 2135 | ||
| 2091 | #define SCI_CONSOLE NULL | 2136 | #define SCI_CONSOLE NULL |
| 2137 | #define sci_runtime_suspend NULL | ||
| 2138 | #define sci_runtime_resume NULL | ||
| 2092 | 2139 | ||
| 2093 | #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */ | 2140 | #endif /* CONFIG_SERIAL_SH_SCI_CONSOLE */ |
| 2094 | 2141 | ||
| @@ -2204,6 +2251,8 @@ static int sci_resume(struct device *dev) | |||
| 2204 | } | 2251 | } |
| 2205 | 2252 | ||
| 2206 | static const struct dev_pm_ops sci_dev_pm_ops = { | 2253 | static const struct dev_pm_ops sci_dev_pm_ops = { |
| 2254 | .runtime_suspend = sci_runtime_suspend, | ||
| 2255 | .runtime_resume = sci_runtime_resume, | ||
| 2207 | .suspend = sci_suspend, | 2256 | .suspend = sci_suspend, |
| 2208 | .resume = sci_resume, | 2257 | .resume = sci_resume, |
| 2209 | }; | 2258 | }; |
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index e717dfd2f2b4..b7d7bd0f066e 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h | |||
| @@ -175,6 +175,7 @@ struct mpage_da_data { | |||
| 175 | */ | 175 | */ |
| 176 | #define EXT4_IO_END_UNWRITTEN 0x0001 | 176 | #define EXT4_IO_END_UNWRITTEN 0x0001 |
| 177 | #define EXT4_IO_END_ERROR 0x0002 | 177 | #define EXT4_IO_END_ERROR 0x0002 |
| 178 | #define EXT4_IO_END_QUEUED 0x0004 | ||
| 178 | 179 | ||
| 179 | struct ext4_io_page { | 180 | struct ext4_io_page { |
| 180 | struct page *p_page; | 181 | struct page *p_page; |
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index c4da98a959ae..18d2558b7624 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
| @@ -121,9 +121,6 @@ void ext4_evict_inode(struct inode *inode) | |||
| 121 | 121 | ||
| 122 | trace_ext4_evict_inode(inode); | 122 | trace_ext4_evict_inode(inode); |
| 123 | 123 | ||
| 124 | mutex_lock(&inode->i_mutex); | ||
| 125 | ext4_flush_completed_IO(inode); | ||
| 126 | mutex_unlock(&inode->i_mutex); | ||
| 127 | ext4_ioend_wait(inode); | 124 | ext4_ioend_wait(inode); |
| 128 | 125 | ||
| 129 | if (inode->i_nlink) { | 126 | if (inode->i_nlink) { |
diff --git a/fs/ext4/page-io.c b/fs/ext4/page-io.c index 78839af7ce29..92f38ee13f8a 100644 --- a/fs/ext4/page-io.c +++ b/fs/ext4/page-io.c | |||
| @@ -142,7 +142,23 @@ static void ext4_end_io_work(struct work_struct *work) | |||
| 142 | unsigned long flags; | 142 | unsigned long flags; |
| 143 | int ret; | 143 | int ret; |
| 144 | 144 | ||
| 145 | mutex_lock(&inode->i_mutex); | 145 | if (!mutex_trylock(&inode->i_mutex)) { |
| 146 | /* | ||
| 147 | * Requeue the work instead of waiting so that the work | ||
| 148 | * items queued after this can be processed. | ||
| 149 | */ | ||
| 150 | queue_work(EXT4_SB(inode->i_sb)->dio_unwritten_wq, &io->work); | ||
| 151 | /* | ||
| 152 | * To prevent the ext4-dio-unwritten thread from keeping | ||
| 153 | * requeueing end_io requests and occupying cpu for too long, | ||
| 154 | * yield the cpu if it sees an end_io request that has already | ||
| 155 | * been requeued. | ||
| 156 | */ | ||
| 157 | if (io->flag & EXT4_IO_END_QUEUED) | ||
| 158 | yield(); | ||
| 159 | io->flag |= EXT4_IO_END_QUEUED; | ||
| 160 | return; | ||
| 161 | } | ||
| 146 | ret = ext4_end_io_nolock(io); | 162 | ret = ext4_end_io_nolock(io); |
| 147 | if (ret < 0) { | 163 | if (ret < 0) { |
| 148 | mutex_unlock(&inode->i_mutex); | 164 | mutex_unlock(&inode->i_mutex); |
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c index b9c172b3fbbe..673704fab748 100644 --- a/fs/xfs/xfs_iops.c +++ b/fs/xfs/xfs_iops.c | |||
| @@ -70,9 +70,8 @@ xfs_synchronize_times( | |||
| 70 | } | 70 | } |
| 71 | 71 | ||
| 72 | /* | 72 | /* |
| 73 | * If the linux inode is valid, mark it dirty. | 73 | * If the linux inode is valid, mark it dirty, else mark the dirty state |
| 74 | * Used when committing a dirty inode into a transaction so that | 74 | * in the XFS inode to make sure we pick it up when reclaiming the inode. |
| 75 | * the inode will get written back by the linux code | ||
| 76 | */ | 75 | */ |
| 77 | void | 76 | void |
| 78 | xfs_mark_inode_dirty_sync( | 77 | xfs_mark_inode_dirty_sync( |
| @@ -82,6 +81,10 @@ xfs_mark_inode_dirty_sync( | |||
| 82 | 81 | ||
| 83 | if (!(inode->i_state & (I_WILL_FREE|I_FREEING))) | 82 | if (!(inode->i_state & (I_WILL_FREE|I_FREEING))) |
| 84 | mark_inode_dirty_sync(inode); | 83 | mark_inode_dirty_sync(inode); |
| 84 | else { | ||
| 85 | barrier(); | ||
| 86 | ip->i_update_core = 1; | ||
| 87 | } | ||
| 85 | } | 88 | } |
| 86 | 89 | ||
| 87 | void | 90 | void |
| @@ -92,6 +95,11 @@ xfs_mark_inode_dirty( | |||
| 92 | 95 | ||
| 93 | if (!(inode->i_state & (I_WILL_FREE|I_FREEING))) | 96 | if (!(inode->i_state & (I_WILL_FREE|I_FREEING))) |
| 94 | mark_inode_dirty(inode); | 97 | mark_inode_dirty(inode); |
| 98 | else { | ||
| 99 | barrier(); | ||
| 100 | ip->i_update_core = 1; | ||
| 101 | } | ||
| 102 | |||
| 95 | } | 103 | } |
| 96 | 104 | ||
| 97 | /* | 105 | /* |
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 9a72dda58bd0..2366c54cc4fa 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c | |||
| @@ -356,6 +356,8 @@ xfs_parseargs( | |||
| 356 | mp->m_flags |= XFS_MOUNT_DELAYLOG; | 356 | mp->m_flags |= XFS_MOUNT_DELAYLOG; |
| 357 | } else if (!strcmp(this_char, MNTOPT_NODELAYLOG)) { | 357 | } else if (!strcmp(this_char, MNTOPT_NODELAYLOG)) { |
| 358 | mp->m_flags &= ~XFS_MOUNT_DELAYLOG; | 358 | mp->m_flags &= ~XFS_MOUNT_DELAYLOG; |
| 359 | xfs_warn(mp, | ||
| 360 | "nodelaylog is deprecated and will be removed in Linux 3.3"); | ||
| 359 | } else if (!strcmp(this_char, MNTOPT_DISCARD)) { | 361 | } else if (!strcmp(this_char, MNTOPT_DISCARD)) { |
| 360 | mp->m_flags |= XFS_MOUNT_DISCARD; | 362 | mp->m_flags |= XFS_MOUNT_DISCARD; |
| 361 | } else if (!strcmp(this_char, MNTOPT_NODISCARD)) { | 363 | } else if (!strcmp(this_char, MNTOPT_NODISCARD)) { |
| @@ -877,33 +879,17 @@ xfs_log_inode( | |||
| 877 | struct xfs_trans *tp; | 879 | struct xfs_trans *tp; |
| 878 | int error; | 880 | int error; |
| 879 | 881 | ||
| 880 | xfs_iunlock(ip, XFS_ILOCK_SHARED); | ||
| 881 | tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS); | 882 | tp = xfs_trans_alloc(mp, XFS_TRANS_FSYNC_TS); |
| 882 | error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0); | 883 | error = xfs_trans_reserve(tp, 0, XFS_FSYNC_TS_LOG_RES(mp), 0, 0, 0); |
| 883 | |||
| 884 | if (error) { | 884 | if (error) { |
| 885 | xfs_trans_cancel(tp, 0); | 885 | xfs_trans_cancel(tp, 0); |
| 886 | /* we need to return with the lock hold shared */ | ||
| 887 | xfs_ilock(ip, XFS_ILOCK_SHARED); | ||
| 888 | return error; | 886 | return error; |
| 889 | } | 887 | } |
| 890 | 888 | ||
| 891 | xfs_ilock(ip, XFS_ILOCK_EXCL); | 889 | xfs_ilock(ip, XFS_ILOCK_EXCL); |
| 892 | 890 | xfs_trans_ijoin_ref(tp, ip, XFS_ILOCK_EXCL); | |
| 893 | /* | ||
| 894 | * Note - it's possible that we might have pushed ourselves out of the | ||
| 895 | * way during trans_reserve which would flush the inode. But there's | ||
| 896 | * no guarantee that the inode buffer has actually gone out yet (it's | ||
| 897 | * delwri). Plus the buffer could be pinned anyway if it's part of | ||
| 898 | * an inode in another recent transaction. So we play it safe and | ||
| 899 | * fire off the transaction anyway. | ||
| 900 | */ | ||
| 901 | xfs_trans_ijoin(tp, ip); | ||
| 902 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); | 891 | xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE); |
| 903 | error = xfs_trans_commit(tp, 0); | 892 | return xfs_trans_commit(tp, 0); |
| 904 | xfs_ilock_demote(ip, XFS_ILOCK_EXCL); | ||
| 905 | |||
| 906 | return error; | ||
| 907 | } | 893 | } |
| 908 | 894 | ||
| 909 | STATIC int | 895 | STATIC int |
| @@ -918,7 +904,9 @@ xfs_fs_write_inode( | |||
| 918 | trace_xfs_write_inode(ip); | 904 | trace_xfs_write_inode(ip); |
| 919 | 905 | ||
| 920 | if (XFS_FORCED_SHUTDOWN(mp)) | 906 | if (XFS_FORCED_SHUTDOWN(mp)) |
| 921 | return XFS_ERROR(EIO); | 907 | return -XFS_ERROR(EIO); |
| 908 | if (!ip->i_update_core) | ||
| 909 | return 0; | ||
| 922 | 910 | ||
| 923 | if (wbc->sync_mode == WB_SYNC_ALL) { | 911 | if (wbc->sync_mode == WB_SYNC_ALL) { |
| 924 | /* | 912 | /* |
| @@ -929,12 +917,10 @@ xfs_fs_write_inode( | |||
| 929 | * of synchronous log foces dramatically. | 917 | * of synchronous log foces dramatically. |
| 930 | */ | 918 | */ |
| 931 | xfs_ioend_wait(ip); | 919 | xfs_ioend_wait(ip); |
| 932 | xfs_ilock(ip, XFS_ILOCK_SHARED); | 920 | error = xfs_log_inode(ip); |
| 933 | if (ip->i_update_core) { | 921 | if (error) |
| 934 | error = xfs_log_inode(ip); | 922 | goto out; |
| 935 | if (error) | 923 | return 0; |
| 936 | goto out_unlock; | ||
| 937 | } | ||
| 938 | } else { | 924 | } else { |
| 939 | /* | 925 | /* |
| 940 | * We make this non-blocking if the inode is contended, return | 926 | * We make this non-blocking if the inode is contended, return |
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index d17f47fc9e31..408ae4882d22 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
| @@ -1865,6 +1865,9 @@ struct wiphy { | |||
| 1865 | * you need use set_wiphy_dev() (see below) */ | 1865 | * you need use set_wiphy_dev() (see below) */ |
| 1866 | struct device dev; | 1866 | struct device dev; |
| 1867 | 1867 | ||
| 1868 | /* protects ->resume, ->suspend sysfs callbacks against unregister hw */ | ||
| 1869 | bool registered; | ||
| 1870 | |||
| 1868 | /* dir in debugfs: ieee80211/<wiphyname> */ | 1871 | /* dir in debugfs: ieee80211/<wiphyname> */ |
| 1869 | struct dentry *debugfsdir; | 1872 | struct dentry *debugfsdir; |
| 1870 | 1873 | ||
diff --git a/lib/Makefile b/lib/Makefile index d5d175c8a6ca..3f5bc6d903e0 100644 --- a/lib/Makefile +++ b/lib/Makefile | |||
| @@ -12,7 +12,7 @@ lib-y := ctype.o string.o vsprintf.o cmdline.o \ | |||
| 12 | idr.o int_sqrt.o extable.o prio_tree.o \ | 12 | idr.o int_sqrt.o extable.o prio_tree.o \ |
| 13 | sha1.o md5.o irq_regs.o reciprocal_div.o argv_split.o \ | 13 | sha1.o md5.o irq_regs.o reciprocal_div.o argv_split.o \ |
| 14 | proportions.o prio_heap.o ratelimit.o show_mem.o \ | 14 | proportions.o prio_heap.o ratelimit.o show_mem.o \ |
| 15 | is_single_threaded.o plist.o decompress.o find_next_bit.o | 15 | is_single_threaded.o plist.o decompress.o |
| 16 | 16 | ||
| 17 | lib-$(CONFIG_MMU) += ioremap.o | 17 | lib-$(CONFIG_MMU) += ioremap.o |
| 18 | lib-$(CONFIG_SMP) += cpumask.o | 18 | lib-$(CONFIG_SMP) += cpumask.o |
| @@ -22,7 +22,7 @@ lib-y += kobject.o kref.o klist.o | |||
| 22 | obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ | 22 | obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ |
| 23 | bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \ | 23 | bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \ |
| 24 | string_helpers.o gcd.o lcm.o list_sort.o uuid.o flex_array.o \ | 24 | string_helpers.o gcd.o lcm.o list_sort.o uuid.o flex_array.o \ |
| 25 | bsearch.o find_last_bit.o | 25 | bsearch.o find_last_bit.o find_next_bit.o |
| 26 | obj-y += kstrtox.o | 26 | obj-y += kstrtox.o |
| 27 | obj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o | 27 | obj-$(CONFIG_TEST_KSTRTOX) += test-kstrtox.o |
| 28 | 28 | ||
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c index 8add9b499912..117e0d161780 100644 --- a/net/bluetooth/af_bluetooth.c +++ b/net/bluetooth/af_bluetooth.c | |||
| @@ -494,9 +494,8 @@ int bt_sock_wait_state(struct sock *sk, int state, unsigned long timeo) | |||
| 494 | BT_DBG("sk %p", sk); | 494 | BT_DBG("sk %p", sk); |
| 495 | 495 | ||
| 496 | add_wait_queue(sk_sleep(sk), &wait); | 496 | add_wait_queue(sk_sleep(sk), &wait); |
| 497 | set_current_state(TASK_INTERRUPTIBLE); | ||
| 497 | while (sk->sk_state != state) { | 498 | while (sk->sk_state != state) { |
| 498 | set_current_state(TASK_INTERRUPTIBLE); | ||
| 499 | |||
| 500 | if (!timeo) { | 499 | if (!timeo) { |
| 501 | err = -EINPROGRESS; | 500 | err = -EINPROGRESS; |
| 502 | break; | 501 | break; |
| @@ -510,12 +509,13 @@ int bt_sock_wait_state(struct sock *sk, int state, unsigned long timeo) | |||
| 510 | release_sock(sk); | 509 | release_sock(sk); |
| 511 | timeo = schedule_timeout(timeo); | 510 | timeo = schedule_timeout(timeo); |
| 512 | lock_sock(sk); | 511 | lock_sock(sk); |
| 512 | set_current_state(TASK_INTERRUPTIBLE); | ||
| 513 | 513 | ||
| 514 | err = sock_error(sk); | 514 | err = sock_error(sk); |
| 515 | if (err) | 515 | if (err) |
| 516 | break; | 516 | break; |
| 517 | } | 517 | } |
| 518 | set_current_state(TASK_RUNNING); | 518 | __set_current_state(TASK_RUNNING); |
| 519 | remove_wait_queue(sk_sleep(sk), &wait); | 519 | remove_wait_queue(sk_sleep(sk), &wait); |
| 520 | return err; | 520 | return err; |
| 521 | } | 521 | } |
diff --git a/net/bluetooth/bnep/bnep.h b/net/bluetooth/bnep/bnep.h index 8e6c06158f8e..e7ee5314f39a 100644 --- a/net/bluetooth/bnep/bnep.h +++ b/net/bluetooth/bnep/bnep.h | |||
| @@ -155,6 +155,7 @@ struct bnep_session { | |||
| 155 | unsigned int role; | 155 | unsigned int role; |
| 156 | unsigned long state; | 156 | unsigned long state; |
| 157 | unsigned long flags; | 157 | unsigned long flags; |
| 158 | atomic_t terminate; | ||
| 158 | struct task_struct *task; | 159 | struct task_struct *task; |
| 159 | 160 | ||
| 160 | struct ethhdr eh; | 161 | struct ethhdr eh; |
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c index ca39fcf010ce..d9edfe8bf9d6 100644 --- a/net/bluetooth/bnep/core.c +++ b/net/bluetooth/bnep/core.c | |||
| @@ -484,9 +484,11 @@ static int bnep_session(void *arg) | |||
| 484 | 484 | ||
| 485 | init_waitqueue_entry(&wait, current); | 485 | init_waitqueue_entry(&wait, current); |
| 486 | add_wait_queue(sk_sleep(sk), &wait); | 486 | add_wait_queue(sk_sleep(sk), &wait); |
| 487 | while (!kthread_should_stop()) { | 487 | while (1) { |
| 488 | set_current_state(TASK_INTERRUPTIBLE); | 488 | set_current_state(TASK_INTERRUPTIBLE); |
| 489 | 489 | ||
| 490 | if (atomic_read(&s->terminate)) | ||
| 491 | break; | ||
| 490 | /* RX */ | 492 | /* RX */ |
| 491 | while ((skb = skb_dequeue(&sk->sk_receive_queue))) { | 493 | while ((skb = skb_dequeue(&sk->sk_receive_queue))) { |
| 492 | skb_orphan(skb); | 494 | skb_orphan(skb); |
| @@ -504,7 +506,7 @@ static int bnep_session(void *arg) | |||
| 504 | 506 | ||
| 505 | schedule(); | 507 | schedule(); |
| 506 | } | 508 | } |
| 507 | set_current_state(TASK_RUNNING); | 509 | __set_current_state(TASK_RUNNING); |
| 508 | remove_wait_queue(sk_sleep(sk), &wait); | 510 | remove_wait_queue(sk_sleep(sk), &wait); |
| 509 | 511 | ||
| 510 | /* Cleanup session */ | 512 | /* Cleanup session */ |
| @@ -640,9 +642,10 @@ int bnep_del_connection(struct bnep_conndel_req *req) | |||
| 640 | down_read(&bnep_session_sem); | 642 | down_read(&bnep_session_sem); |
| 641 | 643 | ||
| 642 | s = __bnep_get_session(req->dst); | 644 | s = __bnep_get_session(req->dst); |
| 643 | if (s) | 645 | if (s) { |
| 644 | kthread_stop(s->task); | 646 | atomic_inc(&s->terminate); |
| 645 | else | 647 | wake_up_process(s->task); |
| 648 | } else | ||
| 646 | err = -ENOENT; | 649 | err = -ENOENT; |
| 647 | 650 | ||
| 648 | up_read(&bnep_session_sem); | 651 | up_read(&bnep_session_sem); |
diff --git a/net/bluetooth/cmtp/capi.c b/net/bluetooth/cmtp/capi.c index 040f67b12978..50f0d135eb8f 100644 --- a/net/bluetooth/cmtp/capi.c +++ b/net/bluetooth/cmtp/capi.c | |||
| @@ -386,7 +386,8 @@ static void cmtp_reset_ctr(struct capi_ctr *ctrl) | |||
| 386 | 386 | ||
| 387 | capi_ctr_down(ctrl); | 387 | capi_ctr_down(ctrl); |
| 388 | 388 | ||
| 389 | kthread_stop(session->task); | 389 | atomic_inc(&session->terminate); |
| 390 | wake_up_process(session->task); | ||
| 390 | } | 391 | } |
| 391 | 392 | ||
| 392 | static void cmtp_register_appl(struct capi_ctr *ctrl, __u16 appl, capi_register_params *rp) | 393 | static void cmtp_register_appl(struct capi_ctr *ctrl, __u16 appl, capi_register_params *rp) |
diff --git a/net/bluetooth/cmtp/cmtp.h b/net/bluetooth/cmtp/cmtp.h index db43b54ac9af..c32638dddbf9 100644 --- a/net/bluetooth/cmtp/cmtp.h +++ b/net/bluetooth/cmtp/cmtp.h | |||
| @@ -81,6 +81,7 @@ struct cmtp_session { | |||
| 81 | 81 | ||
| 82 | char name[BTNAMSIZ]; | 82 | char name[BTNAMSIZ]; |
| 83 | 83 | ||
| 84 | atomic_t terminate; | ||
| 84 | struct task_struct *task; | 85 | struct task_struct *task; |
| 85 | 86 | ||
| 86 | wait_queue_head_t wait; | 87 | wait_queue_head_t wait; |
diff --git a/net/bluetooth/cmtp/core.c b/net/bluetooth/cmtp/core.c index c5b11af908be..521baa4fe835 100644 --- a/net/bluetooth/cmtp/core.c +++ b/net/bluetooth/cmtp/core.c | |||
| @@ -292,9 +292,11 @@ static int cmtp_session(void *arg) | |||
| 292 | 292 | ||
| 293 | init_waitqueue_entry(&wait, current); | 293 | init_waitqueue_entry(&wait, current); |
| 294 | add_wait_queue(sk_sleep(sk), &wait); | 294 | add_wait_queue(sk_sleep(sk), &wait); |
| 295 | while (!kthread_should_stop()) { | 295 | while (1) { |
| 296 | set_current_state(TASK_INTERRUPTIBLE); | 296 | set_current_state(TASK_INTERRUPTIBLE); |
| 297 | 297 | ||
| 298 | if (atomic_read(&session->terminate)) | ||
| 299 | break; | ||
| 298 | if (sk->sk_state != BT_CONNECTED) | 300 | if (sk->sk_state != BT_CONNECTED) |
| 299 | break; | 301 | break; |
| 300 | 302 | ||
| @@ -307,7 +309,7 @@ static int cmtp_session(void *arg) | |||
| 307 | 309 | ||
| 308 | schedule(); | 310 | schedule(); |
| 309 | } | 311 | } |
| 310 | set_current_state(TASK_RUNNING); | 312 | __set_current_state(TASK_RUNNING); |
| 311 | remove_wait_queue(sk_sleep(sk), &wait); | 313 | remove_wait_queue(sk_sleep(sk), &wait); |
| 312 | 314 | ||
| 313 | down_write(&cmtp_session_sem); | 315 | down_write(&cmtp_session_sem); |
| @@ -380,16 +382,17 @@ int cmtp_add_connection(struct cmtp_connadd_req *req, struct socket *sock) | |||
| 380 | 382 | ||
| 381 | if (!(session->flags & (1 << CMTP_LOOPBACK))) { | 383 | if (!(session->flags & (1 << CMTP_LOOPBACK))) { |
| 382 | err = cmtp_attach_device(session); | 384 | err = cmtp_attach_device(session); |
| 383 | if (err < 0) | 385 | if (err < 0) { |
| 384 | goto detach; | 386 | atomic_inc(&session->terminate); |
| 387 | wake_up_process(session->task); | ||
| 388 | up_write(&cmtp_session_sem); | ||
| 389 | return err; | ||
| 390 | } | ||
| 385 | } | 391 | } |
| 386 | 392 | ||
| 387 | up_write(&cmtp_session_sem); | 393 | up_write(&cmtp_session_sem); |
| 388 | return 0; | 394 | return 0; |
| 389 | 395 | ||
| 390 | detach: | ||
| 391 | cmtp_detach_device(session); | ||
| 392 | |||
| 393 | unlink: | 396 | unlink: |
| 394 | __cmtp_unlink_session(session); | 397 | __cmtp_unlink_session(session); |
| 395 | 398 | ||
| @@ -414,7 +417,8 @@ int cmtp_del_connection(struct cmtp_conndel_req *req) | |||
| 414 | skb_queue_purge(&session->transmit); | 417 | skb_queue_purge(&session->transmit); |
| 415 | 418 | ||
| 416 | /* Stop session thread */ | 419 | /* Stop session thread */ |
| 417 | kthread_stop(session->task); | 420 | atomic_inc(&session->terminate); |
| 421 | wake_up_process(session->task); | ||
| 418 | } else | 422 | } else |
| 419 | err = -ENOENT; | 423 | err = -ENOENT; |
| 420 | 424 | ||
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index ec0bc3f60f2e..56943add45cc 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c | |||
| @@ -1209,7 +1209,6 @@ static void hci_cmd_timer(unsigned long arg) | |||
| 1209 | 1209 | ||
| 1210 | BT_ERR("%s command tx timeout", hdev->name); | 1210 | BT_ERR("%s command tx timeout", hdev->name); |
| 1211 | atomic_set(&hdev->cmd_cnt, 1); | 1211 | atomic_set(&hdev->cmd_cnt, 1); |
| 1212 | clear_bit(HCI_RESET, &hdev->flags); | ||
| 1213 | tasklet_schedule(&hdev->cmd_task); | 1212 | tasklet_schedule(&hdev->cmd_task); |
| 1214 | } | 1213 | } |
| 1215 | 1214 | ||
| @@ -1327,7 +1326,7 @@ int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr) | |||
| 1327 | 1326 | ||
| 1328 | entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL); | 1327 | entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL); |
| 1329 | if (!entry) { | 1328 | if (!entry) { |
| 1330 | return -ENOMEM; | 1329 | err = -ENOMEM; |
| 1331 | goto err; | 1330 | goto err; |
| 1332 | } | 1331 | } |
| 1333 | 1332 | ||
| @@ -2408,7 +2407,10 @@ static void hci_cmd_task(unsigned long arg) | |||
| 2408 | if (hdev->sent_cmd) { | 2407 | if (hdev->sent_cmd) { |
| 2409 | atomic_dec(&hdev->cmd_cnt); | 2408 | atomic_dec(&hdev->cmd_cnt); |
| 2410 | hci_send_frame(skb); | 2409 | hci_send_frame(skb); |
| 2411 | mod_timer(&hdev->cmd_timer, | 2410 | if (test_bit(HCI_RESET, &hdev->flags)) |
| 2411 | del_timer(&hdev->cmd_timer); | ||
| 2412 | else | ||
| 2413 | mod_timer(&hdev->cmd_timer, | ||
| 2412 | jiffies + msecs_to_jiffies(HCI_CMD_TIMEOUT)); | 2414 | jiffies + msecs_to_jiffies(HCI_CMD_TIMEOUT)); |
| 2413 | } else { | 2415 | } else { |
| 2414 | skb_queue_head(&hdev->cmd_q, skb); | 2416 | skb_queue_head(&hdev->cmd_q, skb); |
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c index 43b4c2deb7cc..fb68f344c34a 100644 --- a/net/bluetooth/hidp/core.c +++ b/net/bluetooth/hidp/core.c | |||
| @@ -764,6 +764,7 @@ static int hidp_session(void *arg) | |||
| 764 | 764 | ||
| 765 | up_write(&hidp_session_sem); | 765 | up_write(&hidp_session_sem); |
| 766 | 766 | ||
| 767 | kfree(session->rd_data); | ||
| 767 | kfree(session); | 768 | kfree(session); |
| 768 | return 0; | 769 | return 0; |
| 769 | } | 770 | } |
| @@ -841,7 +842,8 @@ static int hidp_setup_input(struct hidp_session *session, | |||
| 841 | 842 | ||
| 842 | err = input_register_device(input); | 843 | err = input_register_device(input); |
| 843 | if (err < 0) { | 844 | if (err < 0) { |
| 844 | hci_conn_put_device(session->conn); | 845 | input_free_device(input); |
| 846 | session->input = NULL; | ||
| 845 | return err; | 847 | return err; |
| 846 | } | 848 | } |
| 847 | 849 | ||
| @@ -1044,8 +1046,12 @@ int hidp_add_connection(struct hidp_connadd_req *req, struct socket *ctrl_sock, | |||
| 1044 | } | 1046 | } |
| 1045 | 1047 | ||
| 1046 | err = hid_add_device(session->hid); | 1048 | err = hid_add_device(session->hid); |
| 1047 | if (err < 0) | 1049 | if (err < 0) { |
| 1048 | goto err_add_device; | 1050 | atomic_inc(&session->terminate); |
| 1051 | wake_up_process(session->task); | ||
| 1052 | up_write(&hidp_session_sem); | ||
| 1053 | return err; | ||
| 1054 | } | ||
| 1049 | 1055 | ||
| 1050 | if (session->input) { | 1056 | if (session->input) { |
| 1051 | hidp_send_ctrl_message(session, | 1057 | hidp_send_ctrl_message(session, |
| @@ -1059,12 +1065,6 @@ int hidp_add_connection(struct hidp_connadd_req *req, struct socket *ctrl_sock, | |||
| 1059 | up_write(&hidp_session_sem); | 1065 | up_write(&hidp_session_sem); |
| 1060 | return 0; | 1066 | return 0; |
| 1061 | 1067 | ||
| 1062 | err_add_device: | ||
| 1063 | hid_destroy_device(session->hid); | ||
| 1064 | session->hid = NULL; | ||
| 1065 | atomic_inc(&session->terminate); | ||
| 1066 | wake_up_process(session->task); | ||
| 1067 | |||
| 1068 | unlink: | 1068 | unlink: |
| 1069 | hidp_del_timer(session); | 1069 | hidp_del_timer(session); |
| 1070 | 1070 | ||
| @@ -1090,7 +1090,6 @@ purge: | |||
| 1090 | failed: | 1090 | failed: |
| 1091 | up_write(&hidp_session_sem); | 1091 | up_write(&hidp_session_sem); |
| 1092 | 1092 | ||
| 1093 | input_free_device(session->input); | ||
| 1094 | kfree(session); | 1093 | kfree(session); |
| 1095 | return err; | 1094 | return err; |
| 1096 | } | 1095 | } |
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 3204ba8a701c..b3bdb482bbe6 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c | |||
| @@ -1159,9 +1159,8 @@ int __l2cap_wait_ack(struct sock *sk) | |||
| 1159 | int timeo = HZ/5; | 1159 | int timeo = HZ/5; |
| 1160 | 1160 | ||
| 1161 | add_wait_queue(sk_sleep(sk), &wait); | 1161 | add_wait_queue(sk_sleep(sk), &wait); |
| 1162 | while ((chan->unacked_frames > 0 && chan->conn)) { | 1162 | set_current_state(TASK_INTERRUPTIBLE); |
| 1163 | set_current_state(TASK_INTERRUPTIBLE); | 1163 | while (chan->unacked_frames > 0 && chan->conn) { |
| 1164 | |||
| 1165 | if (!timeo) | 1164 | if (!timeo) |
| 1166 | timeo = HZ/5; | 1165 | timeo = HZ/5; |
| 1167 | 1166 | ||
| @@ -1173,6 +1172,7 @@ int __l2cap_wait_ack(struct sock *sk) | |||
| 1173 | release_sock(sk); | 1172 | release_sock(sk); |
| 1174 | timeo = schedule_timeout(timeo); | 1173 | timeo = schedule_timeout(timeo); |
| 1175 | lock_sock(sk); | 1174 | lock_sock(sk); |
| 1175 | set_current_state(TASK_INTERRUPTIBLE); | ||
| 1176 | 1176 | ||
| 1177 | err = sock_error(sk); | 1177 | err = sock_error(sk); |
| 1178 | if (err) | 1178 | if (err) |
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index 5c36b3e8739c..61f1f623091d 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c | |||
| @@ -235,30 +235,26 @@ static int l2cap_sock_accept(struct socket *sock, struct socket *newsock, int fl | |||
| 235 | 235 | ||
| 236 | lock_sock_nested(sk, SINGLE_DEPTH_NESTING); | 236 | lock_sock_nested(sk, SINGLE_DEPTH_NESTING); |
| 237 | 237 | ||
| 238 | if (sk->sk_state != BT_LISTEN) { | ||
| 239 | err = -EBADFD; | ||
| 240 | goto done; | ||
| 241 | } | ||
| 242 | |||
| 243 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); | 238 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); |
| 244 | 239 | ||
| 245 | BT_DBG("sk %p timeo %ld", sk, timeo); | 240 | BT_DBG("sk %p timeo %ld", sk, timeo); |
| 246 | 241 | ||
| 247 | /* Wait for an incoming connection. (wake-one). */ | 242 | /* Wait for an incoming connection. (wake-one). */ |
| 248 | add_wait_queue_exclusive(sk_sleep(sk), &wait); | 243 | add_wait_queue_exclusive(sk_sleep(sk), &wait); |
| 249 | while (!(nsk = bt_accept_dequeue(sk, newsock))) { | 244 | while (1) { |
| 250 | set_current_state(TASK_INTERRUPTIBLE); | 245 | set_current_state(TASK_INTERRUPTIBLE); |
| 251 | if (!timeo) { | 246 | |
| 252 | err = -EAGAIN; | 247 | if (sk->sk_state != BT_LISTEN) { |
| 248 | err = -EBADFD; | ||
| 253 | break; | 249 | break; |
| 254 | } | 250 | } |
| 255 | 251 | ||
| 256 | release_sock(sk); | 252 | nsk = bt_accept_dequeue(sk, newsock); |
| 257 | timeo = schedule_timeout(timeo); | 253 | if (nsk) |
| 258 | lock_sock_nested(sk, SINGLE_DEPTH_NESTING); | 254 | break; |
| 259 | 255 | ||
| 260 | if (sk->sk_state != BT_LISTEN) { | 256 | if (!timeo) { |
| 261 | err = -EBADFD; | 257 | err = -EAGAIN; |
| 262 | break; | 258 | break; |
| 263 | } | 259 | } |
| 264 | 260 | ||
| @@ -266,8 +262,12 @@ static int l2cap_sock_accept(struct socket *sock, struct socket *newsock, int fl | |||
| 266 | err = sock_intr_errno(timeo); | 262 | err = sock_intr_errno(timeo); |
| 267 | break; | 263 | break; |
| 268 | } | 264 | } |
| 265 | |||
| 266 | release_sock(sk); | ||
| 267 | timeo = schedule_timeout(timeo); | ||
| 268 | lock_sock_nested(sk, SINGLE_DEPTH_NESTING); | ||
| 269 | } | 269 | } |
| 270 | set_current_state(TASK_RUNNING); | 270 | __set_current_state(TASK_RUNNING); |
| 271 | remove_wait_queue(sk_sleep(sk), &wait); | 271 | remove_wait_queue(sk_sleep(sk), &wait); |
| 272 | 272 | ||
| 273 | if (err) | 273 | if (err) |
| @@ -993,7 +993,7 @@ static struct sock *l2cap_sock_alloc(struct net *net, struct socket *sock, int p | |||
| 993 | INIT_LIST_HEAD(&bt_sk(sk)->accept_q); | 993 | INIT_LIST_HEAD(&bt_sk(sk)->accept_q); |
| 994 | 994 | ||
| 995 | sk->sk_destruct = l2cap_sock_destruct; | 995 | sk->sk_destruct = l2cap_sock_destruct; |
| 996 | sk->sk_sndtimeo = msecs_to_jiffies(L2CAP_CONN_TIMEOUT); | 996 | sk->sk_sndtimeo = L2CAP_CONN_TIMEOUT; |
| 997 | 997 | ||
| 998 | sock_reset_flag(sk, SOCK_ZAPPED); | 998 | sock_reset_flag(sk, SOCK_ZAPPED); |
| 999 | 999 | ||
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index 5759bb7054f7..5ba3f6df665c 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c | |||
| @@ -62,7 +62,6 @@ static DEFINE_MUTEX(rfcomm_mutex); | |||
| 62 | #define rfcomm_lock() mutex_lock(&rfcomm_mutex) | 62 | #define rfcomm_lock() mutex_lock(&rfcomm_mutex) |
| 63 | #define rfcomm_unlock() mutex_unlock(&rfcomm_mutex) | 63 | #define rfcomm_unlock() mutex_unlock(&rfcomm_mutex) |
| 64 | 64 | ||
| 65 | static unsigned long rfcomm_event; | ||
| 66 | 65 | ||
| 67 | static LIST_HEAD(session_list); | 66 | static LIST_HEAD(session_list); |
| 68 | 67 | ||
| @@ -120,7 +119,6 @@ static inline void rfcomm_schedule(void) | |||
| 120 | { | 119 | { |
| 121 | if (!rfcomm_thread) | 120 | if (!rfcomm_thread) |
| 122 | return; | 121 | return; |
| 123 | set_bit(RFCOMM_SCHED_WAKEUP, &rfcomm_event); | ||
| 124 | wake_up_process(rfcomm_thread); | 122 | wake_up_process(rfcomm_thread); |
| 125 | } | 123 | } |
| 126 | 124 | ||
| @@ -2038,19 +2036,18 @@ static int rfcomm_run(void *unused) | |||
| 2038 | 2036 | ||
| 2039 | rfcomm_add_listener(BDADDR_ANY); | 2037 | rfcomm_add_listener(BDADDR_ANY); |
| 2040 | 2038 | ||
| 2041 | while (!kthread_should_stop()) { | 2039 | while (1) { |
| 2042 | set_current_state(TASK_INTERRUPTIBLE); | 2040 | set_current_state(TASK_INTERRUPTIBLE); |
| 2043 | if (!test_bit(RFCOMM_SCHED_WAKEUP, &rfcomm_event)) { | 2041 | |
| 2044 | /* No pending events. Let's sleep. | 2042 | if (kthread_should_stop()) |
| 2045 | * Incoming connections and data will wake us up. */ | 2043 | break; |
| 2046 | schedule(); | ||
| 2047 | } | ||
| 2048 | set_current_state(TASK_RUNNING); | ||
| 2049 | 2044 | ||
| 2050 | /* Process stuff */ | 2045 | /* Process stuff */ |
| 2051 | clear_bit(RFCOMM_SCHED_WAKEUP, &rfcomm_event); | ||
| 2052 | rfcomm_process_sessions(); | 2046 | rfcomm_process_sessions(); |
| 2047 | |||
| 2048 | schedule(); | ||
| 2053 | } | 2049 | } |
| 2050 | __set_current_state(TASK_RUNNING); | ||
| 2054 | 2051 | ||
| 2055 | rfcomm_kill_listener(); | 2052 | rfcomm_kill_listener(); |
| 2056 | 2053 | ||
diff --git a/net/bluetooth/rfcomm/sock.c b/net/bluetooth/rfcomm/sock.c index 8f01e6b11a70..482722bbc7a0 100644 --- a/net/bluetooth/rfcomm/sock.c +++ b/net/bluetooth/rfcomm/sock.c | |||
| @@ -485,11 +485,6 @@ static int rfcomm_sock_accept(struct socket *sock, struct socket *newsock, int f | |||
| 485 | 485 | ||
| 486 | lock_sock(sk); | 486 | lock_sock(sk); |
| 487 | 487 | ||
| 488 | if (sk->sk_state != BT_LISTEN) { | ||
| 489 | err = -EBADFD; | ||
| 490 | goto done; | ||
| 491 | } | ||
| 492 | |||
| 493 | if (sk->sk_type != SOCK_STREAM) { | 488 | if (sk->sk_type != SOCK_STREAM) { |
| 494 | err = -EINVAL; | 489 | err = -EINVAL; |
| 495 | goto done; | 490 | goto done; |
| @@ -501,19 +496,20 @@ static int rfcomm_sock_accept(struct socket *sock, struct socket *newsock, int f | |||
| 501 | 496 | ||
| 502 | /* Wait for an incoming connection. (wake-one). */ | 497 | /* Wait for an incoming connection. (wake-one). */ |
| 503 | add_wait_queue_exclusive(sk_sleep(sk), &wait); | 498 | add_wait_queue_exclusive(sk_sleep(sk), &wait); |
| 504 | while (!(nsk = bt_accept_dequeue(sk, newsock))) { | 499 | while (1) { |
| 505 | set_current_state(TASK_INTERRUPTIBLE); | 500 | set_current_state(TASK_INTERRUPTIBLE); |
| 506 | if (!timeo) { | 501 | |
| 507 | err = -EAGAIN; | 502 | if (sk->sk_state != BT_LISTEN) { |
| 503 | err = -EBADFD; | ||
| 508 | break; | 504 | break; |
| 509 | } | 505 | } |
| 510 | 506 | ||
| 511 | release_sock(sk); | 507 | nsk = bt_accept_dequeue(sk, newsock); |
| 512 | timeo = schedule_timeout(timeo); | 508 | if (nsk) |
| 513 | lock_sock(sk); | 509 | break; |
| 514 | 510 | ||
| 515 | if (sk->sk_state != BT_LISTEN) { | 511 | if (!timeo) { |
| 516 | err = -EBADFD; | 512 | err = -EAGAIN; |
| 517 | break; | 513 | break; |
| 518 | } | 514 | } |
| 519 | 515 | ||
| @@ -521,8 +517,12 @@ static int rfcomm_sock_accept(struct socket *sock, struct socket *newsock, int f | |||
| 521 | err = sock_intr_errno(timeo); | 517 | err = sock_intr_errno(timeo); |
| 522 | break; | 518 | break; |
| 523 | } | 519 | } |
| 520 | |||
| 521 | release_sock(sk); | ||
| 522 | timeo = schedule_timeout(timeo); | ||
| 523 | lock_sock(sk); | ||
| 524 | } | 524 | } |
| 525 | set_current_state(TASK_RUNNING); | 525 | __set_current_state(TASK_RUNNING); |
| 526 | remove_wait_queue(sk_sleep(sk), &wait); | 526 | remove_wait_queue(sk_sleep(sk), &wait); |
| 527 | 527 | ||
| 528 | if (err) | 528 | if (err) |
diff --git a/net/bluetooth/sco.c b/net/bluetooth/sco.c index 4c3621b5e0aa..8270f05e3f1f 100644 --- a/net/bluetooth/sco.c +++ b/net/bluetooth/sco.c | |||
| @@ -564,30 +564,26 @@ static int sco_sock_accept(struct socket *sock, struct socket *newsock, int flag | |||
| 564 | 564 | ||
| 565 | lock_sock(sk); | 565 | lock_sock(sk); |
| 566 | 566 | ||
| 567 | if (sk->sk_state != BT_LISTEN) { | ||
| 568 | err = -EBADFD; | ||
| 569 | goto done; | ||
| 570 | } | ||
| 571 | |||
| 572 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); | 567 | timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK); |
| 573 | 568 | ||
| 574 | BT_DBG("sk %p timeo %ld", sk, timeo); | 569 | BT_DBG("sk %p timeo %ld", sk, timeo); |
| 575 | 570 | ||
| 576 | /* Wait for an incoming connection. (wake-one). */ | 571 | /* Wait for an incoming connection. (wake-one). */ |
| 577 | add_wait_queue_exclusive(sk_sleep(sk), &wait); | 572 | add_wait_queue_exclusive(sk_sleep(sk), &wait); |
| 578 | while (!(ch = bt_accept_dequeue(sk, newsock))) { | 573 | while (1) { |
| 579 | set_current_state(TASK_INTERRUPTIBLE); | 574 | set_current_state(TASK_INTERRUPTIBLE); |
| 580 | if (!timeo) { | 575 | |
| 581 | err = -EAGAIN; | 576 | if (sk->sk_state != BT_LISTEN) { |
| 577 | err = -EBADFD; | ||
| 582 | break; | 578 | break; |
| 583 | } | 579 | } |
| 584 | 580 | ||
| 585 | release_sock(sk); | 581 | ch = bt_accept_dequeue(sk, newsock); |
| 586 | timeo = schedule_timeout(timeo); | 582 | if (ch) |
| 587 | lock_sock(sk); | 583 | break; |
| 588 | 584 | ||
| 589 | if (sk->sk_state != BT_LISTEN) { | 585 | if (!timeo) { |
| 590 | err = -EBADFD; | 586 | err = -EAGAIN; |
| 591 | break; | 587 | break; |
| 592 | } | 588 | } |
| 593 | 589 | ||
| @@ -595,8 +591,12 @@ static int sco_sock_accept(struct socket *sock, struct socket *newsock, int flag | |||
| 595 | err = sock_intr_errno(timeo); | 591 | err = sock_intr_errno(timeo); |
| 596 | break; | 592 | break; |
| 597 | } | 593 | } |
| 594 | |||
| 595 | release_sock(sk); | ||
| 596 | timeo = schedule_timeout(timeo); | ||
| 597 | lock_sock(sk); | ||
| 598 | } | 598 | } |
| 599 | set_current_state(TASK_RUNNING); | 599 | __set_current_state(TASK_RUNNING); |
| 600 | remove_wait_queue(sk_sleep(sk), &wait); | 600 | remove_wait_queue(sk_sleep(sk), &wait); |
| 601 | 601 | ||
| 602 | if (err) | 602 | if (err) |
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index 2d85ca7111d3..995cbe0ac0b2 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c | |||
| @@ -1456,7 +1456,7 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br, | |||
| 1456 | { | 1456 | { |
| 1457 | struct sk_buff *skb2; | 1457 | struct sk_buff *skb2; |
| 1458 | const struct ipv6hdr *ip6h; | 1458 | const struct ipv6hdr *ip6h; |
| 1459 | struct icmp6hdr *icmp6h; | 1459 | u8 icmp6_type; |
| 1460 | u8 nexthdr; | 1460 | u8 nexthdr; |
| 1461 | unsigned len; | 1461 | unsigned len; |
| 1462 | int offset; | 1462 | int offset; |
| @@ -1502,9 +1502,9 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br, | |||
| 1502 | __skb_pull(skb2, offset); | 1502 | __skb_pull(skb2, offset); |
| 1503 | skb_reset_transport_header(skb2); | 1503 | skb_reset_transport_header(skb2); |
| 1504 | 1504 | ||
| 1505 | icmp6h = icmp6_hdr(skb2); | 1505 | icmp6_type = icmp6_hdr(skb2)->icmp6_type; |
| 1506 | 1506 | ||
| 1507 | switch (icmp6h->icmp6_type) { | 1507 | switch (icmp6_type) { |
| 1508 | case ICMPV6_MGM_QUERY: | 1508 | case ICMPV6_MGM_QUERY: |
| 1509 | case ICMPV6_MGM_REPORT: | 1509 | case ICMPV6_MGM_REPORT: |
| 1510 | case ICMPV6_MGM_REDUCTION: | 1510 | case ICMPV6_MGM_REDUCTION: |
| @@ -1520,16 +1520,23 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br, | |||
| 1520 | err = pskb_trim_rcsum(skb2, len); | 1520 | err = pskb_trim_rcsum(skb2, len); |
| 1521 | if (err) | 1521 | if (err) |
| 1522 | goto out; | 1522 | goto out; |
| 1523 | err = -EINVAL; | ||
| 1523 | } | 1524 | } |
| 1524 | 1525 | ||
| 1526 | ip6h = ipv6_hdr(skb2); | ||
| 1527 | |||
| 1525 | switch (skb2->ip_summed) { | 1528 | switch (skb2->ip_summed) { |
| 1526 | case CHECKSUM_COMPLETE: | 1529 | case CHECKSUM_COMPLETE: |
| 1527 | if (!csum_fold(skb2->csum)) | 1530 | if (!csum_ipv6_magic(&ip6h->saddr, &ip6h->daddr, skb2->len, |
| 1531 | IPPROTO_ICMPV6, skb2->csum)) | ||
| 1528 | break; | 1532 | break; |
| 1529 | /*FALLTHROUGH*/ | 1533 | /*FALLTHROUGH*/ |
| 1530 | case CHECKSUM_NONE: | 1534 | case CHECKSUM_NONE: |
| 1531 | skb2->csum = 0; | 1535 | skb2->csum = ~csum_unfold(csum_ipv6_magic(&ip6h->saddr, |
| 1532 | if (skb_checksum_complete(skb2)) | 1536 | &ip6h->daddr, |
| 1537 | skb2->len, | ||
| 1538 | IPPROTO_ICMPV6, 0)); | ||
| 1539 | if (__skb_checksum_complete(skb2)) | ||
| 1533 | goto out; | 1540 | goto out; |
| 1534 | } | 1541 | } |
| 1535 | 1542 | ||
| @@ -1537,7 +1544,7 @@ static int br_multicast_ipv6_rcv(struct net_bridge *br, | |||
| 1537 | 1544 | ||
| 1538 | BR_INPUT_SKB_CB(skb)->igmp = 1; | 1545 | BR_INPUT_SKB_CB(skb)->igmp = 1; |
| 1539 | 1546 | ||
| 1540 | switch (icmp6h->icmp6_type) { | 1547 | switch (icmp6_type) { |
| 1541 | case ICMPV6_MGM_REPORT: | 1548 | case ICMPV6_MGM_REPORT: |
| 1542 | { | 1549 | { |
| 1543 | struct mld_msg *mld; | 1550 | struct mld_msg *mld; |
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 8fab9b0bb203..1334d7e56f02 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c | |||
| @@ -1319,11 +1319,15 @@ static void neigh_proxy_process(unsigned long arg) | |||
| 1319 | 1319 | ||
| 1320 | if (tdif <= 0) { | 1320 | if (tdif <= 0) { |
| 1321 | struct net_device *dev = skb->dev; | 1321 | struct net_device *dev = skb->dev; |
| 1322 | |||
| 1322 | __skb_unlink(skb, &tbl->proxy_queue); | 1323 | __skb_unlink(skb, &tbl->proxy_queue); |
| 1323 | if (tbl->proxy_redo && netif_running(dev)) | 1324 | if (tbl->proxy_redo && netif_running(dev)) { |
| 1325 | rcu_read_lock(); | ||
| 1324 | tbl->proxy_redo(skb); | 1326 | tbl->proxy_redo(skb); |
| 1325 | else | 1327 | rcu_read_unlock(); |
| 1328 | } else { | ||
| 1326 | kfree_skb(skb); | 1329 | kfree_skb(skb); |
| 1330 | } | ||
| 1327 | 1331 | ||
| 1328 | dev_put(dev); | 1332 | dev_put(dev); |
| 1329 | } else if (!sched_next || tdif < sched_next) | 1333 | } else if (!sched_next || tdif < sched_next) |
diff --git a/net/core/netpoll.c b/net/core/netpoll.c index adf84dd8c7b5..52622517e0d8 100644 --- a/net/core/netpoll.c +++ b/net/core/netpoll.c | |||
| @@ -558,13 +558,14 @@ int __netpoll_rx(struct sk_buff *skb) | |||
| 558 | if (skb_shared(skb)) | 558 | if (skb_shared(skb)) |
| 559 | goto out; | 559 | goto out; |
| 560 | 560 | ||
| 561 | iph = (struct iphdr *)skb->data; | ||
| 562 | if (!pskb_may_pull(skb, sizeof(struct iphdr))) | 561 | if (!pskb_may_pull(skb, sizeof(struct iphdr))) |
| 563 | goto out; | 562 | goto out; |
| 563 | iph = (struct iphdr *)skb->data; | ||
| 564 | if (iph->ihl < 5 || iph->version != 4) | 564 | if (iph->ihl < 5 || iph->version != 4) |
| 565 | goto out; | 565 | goto out; |
| 566 | if (!pskb_may_pull(skb, iph->ihl*4)) | 566 | if (!pskb_may_pull(skb, iph->ihl*4)) |
| 567 | goto out; | 567 | goto out; |
| 568 | iph = (struct iphdr *)skb->data; | ||
| 568 | if (ip_fast_csum((u8 *)iph, iph->ihl) != 0) | 569 | if (ip_fast_csum((u8 *)iph, iph->ihl) != 0) |
| 569 | goto out; | 570 | goto out; |
| 570 | 571 | ||
| @@ -579,6 +580,7 @@ int __netpoll_rx(struct sk_buff *skb) | |||
| 579 | if (pskb_trim_rcsum(skb, len)) | 580 | if (pskb_trim_rcsum(skb, len)) |
| 580 | goto out; | 581 | goto out; |
| 581 | 582 | ||
| 583 | iph = (struct iphdr *)skb->data; | ||
| 582 | if (iph->protocol != IPPROTO_UDP) | 584 | if (iph->protocol != IPPROTO_UDP) |
| 583 | goto out; | 585 | goto out; |
| 584 | 586 | ||
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c index 283c0a26e03f..d577199eabd5 100644 --- a/net/ipv4/igmp.c +++ b/net/ipv4/igmp.c | |||
| @@ -767,7 +767,7 @@ static int igmp_xmarksources(struct ip_mc_list *pmc, int nsrcs, __be32 *srcs) | |||
| 767 | break; | 767 | break; |
| 768 | for (i=0; i<nsrcs; i++) { | 768 | for (i=0; i<nsrcs; i++) { |
| 769 | /* skip inactive filters */ | 769 | /* skip inactive filters */ |
| 770 | if (pmc->sfcount[MCAST_INCLUDE] || | 770 | if (psf->sf_count[MCAST_INCLUDE] || |
| 771 | pmc->sfcount[MCAST_EXCLUDE] != | 771 | pmc->sfcount[MCAST_EXCLUDE] != |
| 772 | psf->sf_count[MCAST_EXCLUDE]) | 772 | psf->sf_count[MCAST_EXCLUDE]) |
| 773 | continue; | 773 | continue; |
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index 3e6ebcdb4779..ee7839f4d6e3 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c | |||
| @@ -1059,7 +1059,7 @@ static int mld_xmarksources(struct ifmcaddr6 *pmc, int nsrcs, | |||
| 1059 | break; | 1059 | break; |
| 1060 | for (i=0; i<nsrcs; i++) { | 1060 | for (i=0; i<nsrcs; i++) { |
| 1061 | /* skip inactive filters */ | 1061 | /* skip inactive filters */ |
| 1062 | if (pmc->mca_sfcount[MCAST_INCLUDE] || | 1062 | if (psf->sf_count[MCAST_INCLUDE] || |
| 1063 | pmc->mca_sfcount[MCAST_EXCLUDE] != | 1063 | pmc->mca_sfcount[MCAST_EXCLUDE] != |
| 1064 | psf->sf_count[MCAST_EXCLUDE]) | 1064 | psf->sf_count[MCAST_EXCLUDE]) |
| 1065 | continue; | 1065 | continue; |
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index 866f269183cf..acb44230b251 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c | |||
| @@ -1012,7 +1012,6 @@ void ieee80211_unregister_hw(struct ieee80211_hw *hw) | |||
| 1012 | cancel_work_sync(&local->reconfig_filter); | 1012 | cancel_work_sync(&local->reconfig_filter); |
| 1013 | 1013 | ||
| 1014 | ieee80211_clear_tx_pending(local); | 1014 | ieee80211_clear_tx_pending(local); |
| 1015 | sta_info_stop(local); | ||
| 1016 | rate_control_deinitialize(local); | 1015 | rate_control_deinitialize(local); |
| 1017 | 1016 | ||
| 1018 | if (skb_queue_len(&local->skb_queue) || | 1017 | if (skb_queue_len(&local->skb_queue) || |
| @@ -1024,6 +1023,7 @@ void ieee80211_unregister_hw(struct ieee80211_hw *hw) | |||
| 1024 | 1023 | ||
| 1025 | destroy_workqueue(local->workqueue); | 1024 | destroy_workqueue(local->workqueue); |
| 1026 | wiphy_unregister(local->hw.wiphy); | 1025 | wiphy_unregister(local->hw.wiphy); |
| 1026 | sta_info_stop(local); | ||
| 1027 | ieee80211_wep_free(local); | 1027 | ieee80211_wep_free(local); |
| 1028 | ieee80211_led_exit(local); | 1028 | ieee80211_led_exit(local); |
| 1029 | kfree(local->int_scan_req); | 1029 | kfree(local->int_scan_req); |
diff --git a/net/socket.c b/net/socket.c index 24a77400b65e..ffe92ca32f2a 100644 --- a/net/socket.c +++ b/net/socket.c | |||
| @@ -1965,8 +1965,9 @@ static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg, | |||
| 1965 | * used_address->name_len is initialized to UINT_MAX so that the first | 1965 | * used_address->name_len is initialized to UINT_MAX so that the first |
| 1966 | * destination address never matches. | 1966 | * destination address never matches. |
| 1967 | */ | 1967 | */ |
| 1968 | if (used_address && used_address->name_len == msg_sys->msg_namelen && | 1968 | if (used_address && msg_sys->msg_name && |
| 1969 | !memcmp(&used_address->name, msg->msg_name, | 1969 | used_address->name_len == msg_sys->msg_namelen && |
| 1970 | !memcmp(&used_address->name, msg_sys->msg_name, | ||
| 1970 | used_address->name_len)) { | 1971 | used_address->name_len)) { |
| 1971 | err = sock_sendmsg_nosec(sock, msg_sys, total_len); | 1972 | err = sock_sendmsg_nosec(sock, msg_sys, total_len); |
| 1972 | goto out_freectl; | 1973 | goto out_freectl; |
| @@ -1978,8 +1979,9 @@ static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg, | |||
| 1978 | */ | 1979 | */ |
| 1979 | if (used_address && err >= 0) { | 1980 | if (used_address && err >= 0) { |
| 1980 | used_address->name_len = msg_sys->msg_namelen; | 1981 | used_address->name_len = msg_sys->msg_namelen; |
| 1981 | memcpy(&used_address->name, msg->msg_name, | 1982 | if (msg_sys->msg_name) |
| 1982 | used_address->name_len); | 1983 | memcpy(&used_address->name, msg_sys->msg_name, |
| 1984 | used_address->name_len); | ||
| 1983 | } | 1985 | } |
| 1984 | 1986 | ||
| 1985 | out_freectl: | 1987 | out_freectl: |
diff --git a/net/wireless/core.c b/net/wireless/core.c index 645437cfc464..c14865172da7 100644 --- a/net/wireless/core.c +++ b/net/wireless/core.c | |||
| @@ -616,6 +616,9 @@ int wiphy_register(struct wiphy *wiphy) | |||
| 616 | if (res) | 616 | if (res) |
| 617 | goto out_rm_dev; | 617 | goto out_rm_dev; |
| 618 | 618 | ||
| 619 | rtnl_lock(); | ||
| 620 | rdev->wiphy.registered = true; | ||
| 621 | rtnl_unlock(); | ||
| 619 | return 0; | 622 | return 0; |
| 620 | 623 | ||
| 621 | out_rm_dev: | 624 | out_rm_dev: |
| @@ -647,6 +650,10 @@ void wiphy_unregister(struct wiphy *wiphy) | |||
| 647 | { | 650 | { |
| 648 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); | 651 | struct cfg80211_registered_device *rdev = wiphy_to_dev(wiphy); |
| 649 | 652 | ||
| 653 | rtnl_lock(); | ||
| 654 | rdev->wiphy.registered = false; | ||
| 655 | rtnl_unlock(); | ||
| 656 | |||
| 650 | rfkill_unregister(rdev->rfkill); | 657 | rfkill_unregister(rdev->rfkill); |
| 651 | 658 | ||
| 652 | /* protect the device list */ | 659 | /* protect the device list */ |
diff --git a/net/wireless/sysfs.c b/net/wireless/sysfs.c index c6e4ca6a7d2e..ff574597a854 100644 --- a/net/wireless/sysfs.c +++ b/net/wireless/sysfs.c | |||
| @@ -93,7 +93,8 @@ static int wiphy_suspend(struct device *dev, pm_message_t state) | |||
| 93 | 93 | ||
| 94 | if (rdev->ops->suspend) { | 94 | if (rdev->ops->suspend) { |
| 95 | rtnl_lock(); | 95 | rtnl_lock(); |
| 96 | ret = rdev->ops->suspend(&rdev->wiphy, rdev->wowlan); | 96 | if (rdev->wiphy.registered) |
| 97 | ret = rdev->ops->suspend(&rdev->wiphy, rdev->wowlan); | ||
| 97 | rtnl_unlock(); | 98 | rtnl_unlock(); |
| 98 | } | 99 | } |
| 99 | 100 | ||
| @@ -112,7 +113,8 @@ static int wiphy_resume(struct device *dev) | |||
| 112 | 113 | ||
| 113 | if (rdev->ops->resume) { | 114 | if (rdev->ops->resume) { |
| 114 | rtnl_lock(); | 115 | rtnl_lock(); |
| 115 | ret = rdev->ops->resume(&rdev->wiphy); | 116 | if (rdev->wiphy.registered) |
| 117 | ret = rdev->ops->resume(&rdev->wiphy); | ||
| 116 | rtnl_unlock(); | 118 | rtnl_unlock(); |
| 117 | } | 119 | } |
| 118 | 120 | ||
diff --git a/tools/perf/arch/arm/util/dwarf-regs.c b/tools/perf/arch/arm/util/dwarf-regs.c index fff6450c8c99..e8d5c551c69c 100644 --- a/tools/perf/arch/arm/util/dwarf-regs.c +++ b/tools/perf/arch/arm/util/dwarf-regs.c | |||
| @@ -8,7 +8,10 @@ | |||
| 8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #include <stdlib.h> | ||
| 12 | #ifndef __UCLIBC__ | ||
| 11 | #include <libio.h> | 13 | #include <libio.h> |
| 14 | #endif | ||
| 12 | #include <dwarf-regs.h> | 15 | #include <dwarf-regs.h> |
| 13 | 16 | ||
| 14 | struct pt_regs_dwarfnum { | 17 | struct pt_regs_dwarfnum { |
