From: Greg Kroah-Hartman Date: Mon, 29 Oct 2012 16:36:13 +0000 (-0700) Subject: 3.4-stable patches X-Git-Tag: v3.0.50~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2341c87ec03103816de5cf6e59ee1c859baf8c39;p=thirdparty%2Fkernel%2Fstable-queue.git 3.4-stable patches added patches: arm-at91-at91sam9g10-fix-soc-type-detection.patch arm-at91-i2c-change-id-to-let-i2c-gpio-work.patch arm-at91-tc-fix-typo-in-the-dt-document.patch arm-samsung-add-naming-of-s3c64xx-spi-devices.patch bcma-fix-unregistration-of-cores.patch bluetooth-smp-fix-setting-unknown-auth_req-bits.patch cpufreq-powernow-k8-remove-usage-of-smp_processor_id-in-preemptible-code.patch dmaengine-imx-dma-fix-missing-unlock-on-error-in-imxdma_xfer_desc.patch dmaengine-sirf-fix-a-typo-in-dma_prep_interleaved.patch dmaengine-sirf-fix-a-typo-in-moving-running-dma_desc-to-active-queue.patch freezer-exec-should-clear-pf_nofreeze-along-with-pf_kthread.patch mac80211-check-if-key-has-tkip-type-before-updating-iv.patch revert-ath9k_hw-updated-ar9003-tx-gain-table-for-5ghz.patch --- diff --git a/queue-3.4/arm-at91-at91sam9g10-fix-soc-type-detection.patch b/queue-3.4/arm-at91-at91sam9g10-fix-soc-type-detection.patch new file mode 100644 index 00000000000..5cb4517f5ef --- /dev/null +++ b/queue-3.4/arm-at91-at91sam9g10-fix-soc-type-detection.patch @@ -0,0 +1,54 @@ +From 3d9a0183dd3423353e9e363bcc261c1220d05f9f Mon Sep 17 00:00:00 2001 +From: Ivan Shugov +Date: Wed, 24 Oct 2012 11:02:44 +0200 +Subject: ARM: at91: at91sam9g10: fix SOC type detection + +From: Ivan Shugov + +commit 3d9a0183dd3423353e9e363bcc261c1220d05f9f upstream. + +Newer at91sam9g10 SoC revision can't be detected, so the kernel can't boot with +this kind of kernel panic: +"AT91: Impossible to detect the SOC type" + +CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177 +CPU: VIVT data cache, VIVT instruction cache +Machine: Atmel AT91SAM9G10-EK +Ignoring tag cmdline (using the default kernel command line) +bootconsole [earlycon0] enabled +Memory policy: ECC disabled, Data cache writeback +Kernel panic - not syncing: AT91: Impossible to detect the SOC type +[] (unwind_backtrace+0x0/0xe0) from [] (panic+0x78/0x1cc) +[] (panic+0x78/0x1cc) from [] (at91_map_io+0x90/0xc8) +[] (at91_map_io+0x90/0xc8) from [] (paging_init+0x564/0x6d0) +[] (paging_init+0x564/0x6d0) from [] (setup_arch+0x464/0x704) +[] (setup_arch+0x464/0x704) from [] (start_kernel+0x6c/0x2d4) +[] (start_kernel+0x6c/0x2d4) from [<20008040>] (0x20008040) + +The reason for this is that the Debug Unit Chip ID Register has changed between +Engineering Sample and definitive revision of the SoC. Changing the check of +cidr to socid will address the problem. We do not integrate this check to the +list just above because we also have to make sure that the extended id is +disregarded. + +Signed-off-by: Ivan Shugov +[nicolas.ferre@atmel.com: change commit message] +Signed-off-by: Nicolas Ferre +Acked-by: Jean-Christophe PLAGNIOL-VILLARD +Signed-off-by: Greg Kroah-Hartman + +--- + arch/arm/mach-at91/setup.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/arch/arm/mach-at91/setup.c ++++ b/arch/arm/mach-at91/setup.c +@@ -146,7 +146,7 @@ static void __init soc_detect(u32 dbgu_b + } + + /* at91sam9g10 */ +- if ((cidr & ~AT91_CIDR_EXT) == ARCH_ID_AT91SAM9G10) { ++ if ((socid & ~AT91_CIDR_EXT) == ARCH_ID_AT91SAM9G10) { + at91_soc_initdata.type = AT91_SOC_SAM9G10; + at91_boot_soc = at91sam9261_soc; + } diff --git a/queue-3.4/arm-at91-i2c-change-id-to-let-i2c-gpio-work.patch b/queue-3.4/arm-at91-i2c-change-id-to-let-i2c-gpio-work.patch new file mode 100644 index 00000000000..589b84b1f57 --- /dev/null +++ b/queue-3.4/arm-at91-i2c-change-id-to-let-i2c-gpio-work.patch @@ -0,0 +1,88 @@ +From 7840487cd6298f9f931103b558290d8d98d41c49 Mon Sep 17 00:00:00 2001 +From: Bo Shen +Date: Mon, 15 Oct 2012 17:30:27 +0800 +Subject: ARM: at91/i2c: change id to let i2c-gpio work + +From: Bo Shen + +commit 7840487cd6298f9f931103b558290d8d98d41c49 upstream. + +The i2c core driver will turn the platform device ID to busnum +When using platfrom device ID as -1, it means dynamically assigned +the busnum. When writing code, we need to make sure the busnum, +and call i2c_register_board_info(int busnum, ...) to register device +if using -1, we do not know the value of busnum + +In order to solve this issue, set the platform device ID as a fix number +Here using 0 to match the busnum used in i2c_regsiter_board_info() + +Signed-off-by: Bo Shen +Acked-by: Jean Delvare +Signed-off-by: Nicolas Ferre +Acked-by: Jean-Christophe PLAGNIOL-VILLARD +Acked-by: Ludovic Desroches +Signed-off-by: Greg Kroah-Hartman + +--- + arch/arm/mach-at91/at91rm9200_devices.c | 2 +- + arch/arm/mach-at91/at91sam9260_devices.c | 2 +- + arch/arm/mach-at91/at91sam9261_devices.c | 2 +- + arch/arm/mach-at91/at91sam9263_devices.c | 2 +- + arch/arm/mach-at91/at91sam9rl_devices.c | 2 +- + 5 files changed, 5 insertions(+), 5 deletions(-) + +--- a/arch/arm/mach-at91/at91rm9200_devices.c ++++ b/arch/arm/mach-at91/at91rm9200_devices.c +@@ -463,7 +463,7 @@ static struct i2c_gpio_platform_data pda + + static struct platform_device at91rm9200_twi_device = { + .name = "i2c-gpio", +- .id = -1, ++ .id = 0, + .dev.platform_data = &pdata, + }; + +--- a/arch/arm/mach-at91/at91sam9260_devices.c ++++ b/arch/arm/mach-at91/at91sam9260_devices.c +@@ -468,7 +468,7 @@ static struct i2c_gpio_platform_data pda + + static struct platform_device at91sam9260_twi_device = { + .name = "i2c-gpio", +- .id = -1, ++ .id = 0, + .dev.platform_data = &pdata, + }; + +--- a/arch/arm/mach-at91/at91sam9261_devices.c ++++ b/arch/arm/mach-at91/at91sam9261_devices.c +@@ -285,7 +285,7 @@ static struct i2c_gpio_platform_data pda + + static struct platform_device at91sam9261_twi_device = { + .name = "i2c-gpio", +- .id = -1, ++ .id = 0, + .dev.platform_data = &pdata, + }; + +--- a/arch/arm/mach-at91/at91sam9263_devices.c ++++ b/arch/arm/mach-at91/at91sam9263_devices.c +@@ -542,7 +542,7 @@ static struct i2c_gpio_platform_data pda + + static struct platform_device at91sam9263_twi_device = { + .name = "i2c-gpio", +- .id = -1, ++ .id = 0, + .dev.platform_data = &pdata, + }; + +--- a/arch/arm/mach-at91/at91sam9rl_devices.c ++++ b/arch/arm/mach-at91/at91sam9rl_devices.c +@@ -314,7 +314,7 @@ static struct i2c_gpio_platform_data pda + + static struct platform_device at91sam9rl_twi_device = { + .name = "i2c-gpio", +- .id = -1, ++ .id = 0, + .dev.platform_data = &pdata, + }; + diff --git a/queue-3.4/arm-at91-tc-fix-typo-in-the-dt-document.patch b/queue-3.4/arm-at91-tc-fix-typo-in-the-dt-document.patch new file mode 100644 index 00000000000..9217b81f92e --- /dev/null +++ b/queue-3.4/arm-at91-tc-fix-typo-in-the-dt-document.patch @@ -0,0 +1,29 @@ +From 11930c530f3edf81160e4962e363d579f5cdce7e Mon Sep 17 00:00:00 2001 +From: Josh Wu +Date: Fri, 14 Sep 2012 17:01:29 +0800 +Subject: ARM: at91/tc: fix typo in the DT document + +From: Josh Wu + +commit 11930c530f3edf81160e4962e363d579f5cdce7e upstream. + +Signed-off-by: Josh Wu +Signed-off-by: Nicolas Ferre +Acked-by: Jean-Christophe PLAGNIOL-VILLARD +Signed-off-by: Greg Kroah-Hartman + +--- + Documentation/devicetree/bindings/arm/atmel-at91.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/Documentation/devicetree/bindings/arm/atmel-at91.txt ++++ b/Documentation/devicetree/bindings/arm/atmel-at91.txt +@@ -8,7 +8,7 @@ PIT Timer required properties: + shared across all System Controller members. + + TC/TCLIB Timer required properties: +-- compatible: Should be "atmel,-pit". ++- compatible: Should be "atmel,-tcb". + can be "at91rm9200" or "at91sam9x5" + - reg: Should contain registers location and length + - interrupts: Should contain all interrupts for the TC block diff --git a/queue-3.4/arm-samsung-add-naming-of-s3c64xx-spi-devices.patch b/queue-3.4/arm-samsung-add-naming-of-s3c64xx-spi-devices.patch new file mode 100644 index 00000000000..554fd067046 --- /dev/null +++ b/queue-3.4/arm-samsung-add-naming-of-s3c64xx-spi-devices.patch @@ -0,0 +1,200 @@ +From 308b3afb97dc342e9c4f958d8b4c459ae0e22bd7 Mon Sep 17 00:00:00 2001 +From: Heiko Stuebner +Date: Wed, 17 Oct 2012 16:47:11 +0900 +Subject: ARM: SAMSUNG: Add naming of s3c64xx-spi devices + +From: Heiko Stuebner + +commit 308b3afb97dc342e9c4f958d8b4c459ae0e22bd7 upstream. + +Commit a5238e360b71 (spi: s3c64xx: move controller information into driver +data) introduced separate device names for the different subtypes of the +spi controller but forgot to set these in the relevant machines. + +To fix this introduce a s3c64xx_spi_setname function and populate all +Samsung arches with the correct names. The function resides in a new +header, as the s3c64xx-spi.h contains driver platform data and should +therefore at some later point move out of the Samsung include dir. + +Tested on a s3c2416-based machine. + +Signed-off-by: Heiko Stuebner +Reviewed-by: Sylwester Nawrocki +[s.nawrocki@samsung.com: tested on mach-exynos] +Tested-by: Sylwester Nawrocki +Signed-off-by: Kukjin Kim +Signed-off-by: Greg Kroah-Hartman + +--- + arch/arm/mach-exynos/common.c | 5 ++++ + arch/arm/mach-s3c24xx/s3c2416.c | 2 + + arch/arm/mach-s3c24xx/s3c2443.c | 4 +++ + arch/arm/mach-s5p64x0/common.c | 3 ++ + arch/arm/mach-s5pc100/common.c | 3 ++ + arch/arm/mach-s5pv210/common.c | 3 ++ + arch/arm/plat-samsung/include/plat/spi-core.h | 30 ++++++++++++++++++++++++++ + 7 files changed, 50 insertions(+) + +--- a/arch/arm/mach-exynos/common.c ++++ b/arch/arm/mach-exynos/common.c +@@ -44,6 +44,7 @@ + #include + #include + #include ++#include + #include + + #include "common.h" +@@ -338,6 +339,8 @@ static void __init exynos4_map_io(void) + + s5p_fb_setname(0, "exynos4-fb"); + s5p_hdmi_setname("exynos4-hdmi"); ++ ++ s3c64xx_spi_setname("exynos4210-spi"); + } + + static void __init exynos5_map_io(void) +@@ -358,6 +361,8 @@ static void __init exynos5_map_io(void) + s3c_i2c0_setname("s3c2440-i2c"); + s3c_i2c1_setname("s3c2440-i2c"); + s3c_i2c2_setname("s3c2440-i2c"); ++ ++ s3c64xx_spi_setname("exynos4210-spi"); + } + + static void __init exynos4_init_clocks(int xtal) +--- a/arch/arm/mach-s3c24xx/s3c2416.c ++++ b/arch/arm/mach-s3c24xx/s3c2416.c +@@ -61,6 +61,7 @@ + #include + #include + #include ++#include + + static struct map_desc s3c2416_iodesc[] __initdata = { + IODESC_ENT(WATCHDOG), +@@ -131,6 +132,7 @@ void __init s3c2416_map_io(void) + /* initialize device information early */ + s3c2416_default_sdhci0(); + s3c2416_default_sdhci1(); ++ s3c64xx_spi_setname("s3c2443-spi"); + + iotable_init(s3c2416_iodesc, ARRAY_SIZE(s3c2416_iodesc)); + } +--- a/arch/arm/mach-s3c24xx/s3c2443.c ++++ b/arch/arm/mach-s3c24xx/s3c2443.c +@@ -43,6 +43,7 @@ + #include + #include + #include ++#include + + static struct map_desc s3c2443_iodesc[] __initdata = { + IODESC_ENT(WATCHDOG), +@@ -100,6 +101,9 @@ void __init s3c2443_map_io(void) + s3c24xx_gpiocfg_default.set_pull = s3c2443_gpio_setpull; + s3c24xx_gpiocfg_default.get_pull = s3c2443_gpio_getpull; + ++ /* initialize device information early */ ++ s3c64xx_spi_setname("s3c2443-spi"); ++ + iotable_init(s3c2443_iodesc, ARRAY_SIZE(s3c2443_iodesc)); + } + +--- a/arch/arm/mach-s5p64x0/common.c ++++ b/arch/arm/mach-s5p64x0/common.c +@@ -44,6 +44,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -179,6 +180,7 @@ void __init s5p6440_map_io(void) + /* initialize any device information early */ + s3c_adc_setname("s3c64xx-adc"); + s3c_fb_setname("s5p64x0-fb"); ++ s3c64xx_spi_setname("s5p64x0-spi"); + + s5p64x0_default_sdhci0(); + s5p64x0_default_sdhci1(); +@@ -193,6 +195,7 @@ void __init s5p6450_map_io(void) + /* initialize any device information early */ + s3c_adc_setname("s3c64xx-adc"); + s3c_fb_setname("s5p64x0-fb"); ++ s3c64xx_spi_setname("s5p64x0-spi"); + + s5p64x0_default_sdhci0(); + s5p64x0_default_sdhci1(); +--- a/arch/arm/mach-s5pc100/common.c ++++ b/arch/arm/mach-s5pc100/common.c +@@ -45,6 +45,7 @@ + #include + #include + #include ++#include + #include + #include + +@@ -165,6 +166,8 @@ void __init s5pc100_map_io(void) + s3c_onenand_setname("s5pc100-onenand"); + s3c_fb_setname("s5pc100-fb"); + s3c_cfcon_setname("s5pc100-pata"); ++ ++ s3c64xx_spi_setname("s5pc100-spi"); + } + + void __init s5pc100_init_clocks(int xtal) +--- a/arch/arm/mach-s5pv210/common.c ++++ b/arch/arm/mach-s5pv210/common.c +@@ -43,6 +43,7 @@ + #include + #include + #include ++#include + #include + + #include "common.h" +@@ -196,6 +197,8 @@ void __init s5pv210_map_io(void) + + /* setup TV devices */ + s5p_hdmi_setname("s5pv210-hdmi"); ++ ++ s3c64xx_spi_setname("s5pv210-spi"); + } + + void __init s5pv210_init_clocks(int xtal) +--- /dev/null ++++ b/arch/arm/plat-samsung/include/plat/spi-core.h +@@ -0,0 +1,30 @@ ++/* ++ * Copyright (C) 2012 Heiko Stuebner ++ * ++ * This program is free software; you can redistribute it and/or modify ++ * it under the terms of the GNU General Public License version 2 as ++ * published by the Free Software Foundation. ++ */ ++ ++#ifndef __PLAT_S3C_SPI_CORE_H ++#define __PLAT_S3C_SPI_CORE_H ++ ++/* These functions are only for use with the core support code, such as ++ * the cpu specific initialisation code ++ */ ++ ++/* re-define device name depending on support. */ ++static inline void s3c64xx_spi_setname(char *name) ++{ ++#ifdef CONFIG_S3C64XX_DEV_SPI0 ++ s3c64xx_device_spi0.name = name; ++#endif ++#ifdef CONFIG_S3C64XX_DEV_SPI1 ++ s3c64xx_device_spi1.name = name; ++#endif ++#ifdef CONFIG_S3C64XX_DEV_SPI2 ++ s3c64xx_device_spi2.name = name; ++#endif ++} ++ ++#endif /* __PLAT_S3C_SPI_CORE_H */ diff --git a/queue-3.4/bcma-fix-unregistration-of-cores.patch b/queue-3.4/bcma-fix-unregistration-of-cores.patch new file mode 100644 index 00000000000..33f653dfc0a --- /dev/null +++ b/queue-3.4/bcma-fix-unregistration-of-cores.patch @@ -0,0 +1,37 @@ +From 1fffa905adffbf0d3767fc978ef09afb830275eb Mon Sep 17 00:00:00 2001 +From: Piotr Haber +Date: Thu, 11 Oct 2012 14:05:15 +0200 +Subject: bcma: fix unregistration of cores + +From: Piotr Haber + +commit 1fffa905adffbf0d3767fc978ef09afb830275eb upstream. + +When cores are unregistered, entries +need to be removed from cores list in a safe manner. + +Reported-by: Stanislaw Gruszka +Reviewed-by: Arend Van Spriel +Signed-off-by: Piotr Haber +Signed-off-by: John W. Linville +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/bcma/main.c | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +--- a/drivers/bcma/main.c ++++ b/drivers/bcma/main.c +@@ -131,9 +131,10 @@ static int bcma_register_cores(struct bc + + static void bcma_unregister_cores(struct bcma_bus *bus) + { +- struct bcma_device *core; ++ struct bcma_device *core, *tmp; + +- list_for_each_entry(core, &bus->cores, list) { ++ list_for_each_entry_safe(core, tmp, &bus->cores, list) { ++ list_del(&core->list); + if (core->dev_registered) + device_unregister(&core->dev); + } diff --git a/queue-3.4/bluetooth-smp-fix-setting-unknown-auth_req-bits.patch b/queue-3.4/bluetooth-smp-fix-setting-unknown-auth_req-bits.patch new file mode 100644 index 00000000000..27696a992eb --- /dev/null +++ b/queue-3.4/bluetooth-smp-fix-setting-unknown-auth_req-bits.patch @@ -0,0 +1,54 @@ +From 065a13e2cc665f6547dc7e8a9d6b6565badf940a Mon Sep 17 00:00:00 2001 +From: Johan Hedberg +Date: Thu, 11 Oct 2012 16:26:06 +0200 +Subject: Bluetooth: SMP: Fix setting unknown auth_req bits + +From: Johan Hedberg + +commit 065a13e2cc665f6547dc7e8a9d6b6565badf940a upstream. + +When sending a pairing request or response we should not just blindly +copy the value that the remote device sent. Instead we should at least +make sure to mask out any unknown bits. This is particularly critical +from the upcoming LE Secure Connections feature perspective as +incorrectly indicating support for it (by copying the remote value) +would cause a failure to pair with devices that support it. + +Signed-off-by: Johan Hedberg +Acked-by: Marcel Holtmann +Signed-off-by: Gustavo Padovan +Signed-off-by: Greg Kroah-Hartman + +--- + net/bluetooth/smp.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +--- a/net/bluetooth/smp.c ++++ b/net/bluetooth/smp.c +@@ -31,6 +31,8 @@ + + #define SMP_TIMEOUT msecs_to_jiffies(30000) + ++#define AUTH_REQ_MASK 0x07 ++ + static inline void swap128(u8 src[16], u8 dst[16]) + { + int i; +@@ -229,7 +231,7 @@ static void build_pairing_cmd(struct l2c + req->max_key_size = SMP_MAX_ENC_KEY_SIZE; + req->init_key_dist = 0; + req->resp_key_dist = dist_keys; +- req->auth_req = authreq; ++ req->auth_req = (authreq & AUTH_REQ_MASK); + return; + } + +@@ -238,7 +240,7 @@ static void build_pairing_cmd(struct l2c + rsp->max_key_size = SMP_MAX_ENC_KEY_SIZE; + rsp->init_key_dist = 0; + rsp->resp_key_dist = req->resp_key_dist & dist_keys; +- rsp->auth_req = authreq; ++ rsp->auth_req = (authreq & AUTH_REQ_MASK); + } + + static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size) diff --git a/queue-3.4/cpufreq-powernow-k8-remove-usage-of-smp_processor_id-in-preemptible-code.patch b/queue-3.4/cpufreq-powernow-k8-remove-usage-of-smp_processor_id-in-preemptible-code.patch new file mode 100644 index 00000000000..59359d4d63a --- /dev/null +++ b/queue-3.4/cpufreq-powernow-k8-remove-usage-of-smp_processor_id-in-preemptible-code.patch @@ -0,0 +1,60 @@ +From e4df1cbcc1f329e53a1fff7450b2229e0addff20 Mon Sep 17 00:00:00 2001 +From: Andreas Herrmann +Date: Tue, 23 Oct 2012 00:55:10 +0200 +Subject: cpufreq / powernow-k8: Remove usage of smp_processor_id() in preemptible code + +From: Andreas Herrmann + +commit e4df1cbcc1f329e53a1fff7450b2229e0addff20 upstream. + +Commit 6889125b8b4e09c5e53e6ecab3433bed1ce198c9 +(cpufreq/powernow-k8: workqueue user shouldn't migrate the kworker to another CPU) +causes powernow-k8 to trigger a preempt warning, e.g.: + + BUG: using smp_processor_id() in preemptible [00000000] code: cpufreq/3776 + caller is powernowk8_target+0x20/0x49 + Pid: 3776, comm: cpufreq Not tainted 3.6.0 #9 + Call Trace: + [] debug_smp_processor_id+0xc7/0xe0 + [] powernowk8_target+0x20/0x49 + [] __cpufreq_driver_target+0x82/0x8a + [] cpufreq_governor_performance+0x4e/0x54 + [] __cpufreq_governor+0x8c/0xc9 + [] __cpufreq_set_policy+0x1a9/0x21e + [] store_scaling_governor+0x16f/0x19b + [] ? cpufreq_update_policy+0x124/0x124 + [] ? _raw_spin_unlock_irqrestore+0x2c/0x49 + [] store+0x60/0x88 + [] sysfs_write_file+0xf4/0x130 + [] vfs_write+0xb5/0x151 + [] sys_write+0x4a/0x71 + [] system_call_fastpath+0x16/0x1b + +Fix this by by always using work_on_cpu(). + +Signed-off-by: Andreas Herrmann +Signed-off-by: Rafael J. Wysocki +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/cpufreq/powernow-k8.c | 9 +-------- + 1 file changed, 1 insertion(+), 8 deletions(-) + +--- a/drivers/cpufreq/powernow-k8.c ++++ b/drivers/cpufreq/powernow-k8.c +@@ -1223,14 +1223,7 @@ static int powernowk8_target(struct cpuf + struct powernowk8_target_arg pta = { .pol = pol, .targfreq = targfreq, + .relation = relation }; + +- /* +- * Must run on @pol->cpu. cpufreq core is responsible for ensuring +- * that we're bound to the current CPU and pol->cpu stays online. +- */ +- if (smp_processor_id() == pol->cpu) +- return powernowk8_target_fn(&pta); +- else +- return work_on_cpu(pol->cpu, powernowk8_target_fn, &pta); ++ return work_on_cpu(pol->cpu, powernowk8_target_fn, &pta); + } + + /* Driver entry point to verify the policy and range of frequencies */ diff --git a/queue-3.4/dmaengine-imx-dma-fix-missing-unlock-on-error-in-imxdma_xfer_desc.patch b/queue-3.4/dmaengine-imx-dma-fix-missing-unlock-on-error-in-imxdma_xfer_desc.patch new file mode 100644 index 00000000000..1b43ecffa98 --- /dev/null +++ b/queue-3.4/dmaengine-imx-dma-fix-missing-unlock-on-error-in-imxdma_xfer_desc.patch @@ -0,0 +1,34 @@ +From 720dfd250e48a8c7fd1b2b8645955413989c4ee0 Mon Sep 17 00:00:00 2001 +From: Wei Yongjun +Date: Sun, 21 Oct 2012 19:58:30 +0800 +Subject: dmaengine: imx-dma: fix missing unlock on error in imxdma_xfer_desc() + +From: Wei Yongjun + +commit 720dfd250e48a8c7fd1b2b8645955413989c4ee0 upstream. + +Add the missing unlock on the error handling path in function +imxdma_xfer_desc(). + +Signed-off-by: Wei Yongjun +Signed-off-by: Vinod Koul +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/dma/imx-dma.c | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +--- a/drivers/dma/imx-dma.c ++++ b/drivers/dma/imx-dma.c +@@ -473,8 +473,10 @@ static int imxdma_xfer_desc(struct imxdm + slot = i; + break; + } +- if (slot < 0) ++ if (slot < 0) { ++ spin_unlock_irqrestore(&imxdma->lock, flags); + return -EBUSY; ++ } + + imxdma->slots_2d[slot].xsr = d->x; + imxdma->slots_2d[slot].ysr = d->y; diff --git a/queue-3.4/dmaengine-sirf-fix-a-typo-in-dma_prep_interleaved.patch b/queue-3.4/dmaengine-sirf-fix-a-typo-in-dma_prep_interleaved.patch new file mode 100644 index 00000000000..1166041906a --- /dev/null +++ b/queue-3.4/dmaengine-sirf-fix-a-typo-in-dma_prep_interleaved.patch @@ -0,0 +1,31 @@ +From 5997e089e4c3a7f0958a8fb0a54ec2b5a6f06168 Mon Sep 17 00:00:00 2001 +From: Barry Song +Date: Thu, 27 Sep 2012 16:35:38 +0800 +Subject: dmaengine: sirf: fix a typo in dma_prep_interleaved + +From: Barry Song + +commit 5997e089e4c3a7f0958a8fb0a54ec2b5a6f06168 upstream. + +either DEV_TO_MEM or MEM_TO_DEV is supported, so change +OR to AND. + +Signed-off-by: Barry Song +Signed-off-by: Vinod Koul +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/dma/sirf-dma.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/drivers/dma/sirf-dma.c ++++ b/drivers/dma/sirf-dma.c +@@ -428,7 +428,7 @@ static struct dma_async_tx_descriptor *s + unsigned long iflags; + int ret; + +- if ((xt->dir != DMA_MEM_TO_DEV) || (xt->dir != DMA_DEV_TO_MEM)) { ++ if ((xt->dir != DMA_MEM_TO_DEV) && (xt->dir != DMA_DEV_TO_MEM)) { + ret = -EINVAL; + goto err_dir; + } diff --git a/queue-3.4/dmaengine-sirf-fix-a-typo-in-moving-running-dma_desc-to-active-queue.patch b/queue-3.4/dmaengine-sirf-fix-a-typo-in-moving-running-dma_desc-to-active-queue.patch new file mode 100644 index 00000000000..25b3f5c12cc --- /dev/null +++ b/queue-3.4/dmaengine-sirf-fix-a-typo-in-moving-running-dma_desc-to-active-queue.patch @@ -0,0 +1,34 @@ +From 26fd12209c08fe947be1828896ef4ffc5bd0e6df Mon Sep 17 00:00:00 2001 +From: Barry Song +Date: Thu, 27 Sep 2012 16:36:10 +0800 +Subject: dmaengine: sirf: fix a typo in moving running dma_desc to active queue + +From: Barry Song + +commit 26fd12209c08fe947be1828896ef4ffc5bd0e6df upstream. + +list_move_tail(&schan->queued, &schan->active) makes the list_empty(schan->queued) +undefined, we either should change it to: +list_move_tail(schan->queued.next, &schan->active) +or +list_move_tail(&sdesc->node, &schan->active) + +Signed-off-by: Barry Song +Signed-off-by: Vinod Koul +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/dma/sirf-dma.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/drivers/dma/sirf-dma.c ++++ b/drivers/dma/sirf-dma.c +@@ -109,7 +109,7 @@ static void sirfsoc_dma_execute(struct s + sdesc = list_first_entry(&schan->queued, struct sirfsoc_dma_desc, + node); + /* Move the first queued descriptor to active list */ +- list_move_tail(&schan->queued, &schan->active); ++ list_move_tail(&sdesc->node, &schan->active); + + /* Start the DMA transfer */ + writel_relaxed(sdesc->width, sdma->base + SIRFSOC_DMA_WIDTH_0 + diff --git a/queue-3.4/freezer-exec-should-clear-pf_nofreeze-along-with-pf_kthread.patch b/queue-3.4/freezer-exec-should-clear-pf_nofreeze-along-with-pf_kthread.patch new file mode 100644 index 00000000000..33fecae199c --- /dev/null +++ b/queue-3.4/freezer-exec-should-clear-pf_nofreeze-along-with-pf_kthread.patch @@ -0,0 +1,32 @@ +From b40a79591ca918e7b91b0d9b6abd5d00f2e88c19 Mon Sep 17 00:00:00 2001 +From: Oleg Nesterov +Date: Thu, 25 Oct 2012 22:28:12 +0200 +Subject: freezer: exec should clear PF_NOFREEZE along with PF_KTHREAD + +From: Oleg Nesterov + +commit b40a79591ca918e7b91b0d9b6abd5d00f2e88c19 upstream. + +flush_old_exec() clears PF_KTHREAD but forgets about PF_NOFREEZE. + +Signed-off-by: Oleg Nesterov +Acked-by: Tejun Heo +Signed-off-by: Rafael J. Wysocki +Signed-off-by: Greg Kroah-Hartman + +--- + fs/exec.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +--- a/fs/exec.c ++++ b/fs/exec.c +@@ -1114,7 +1114,8 @@ int flush_old_exec(struct linux_binprm * + bprm->mm = NULL; /* We're using it now */ + + set_fs(USER_DS); +- current->flags &= ~(PF_RANDOMIZE | PF_FORKNOEXEC | PF_KTHREAD); ++ current->flags &= ++ ~(PF_RANDOMIZE | PF_FORKNOEXEC | PF_KTHREAD | PF_NOFREEZE); + flush_thread(); + current->personality &= ~bprm->per_clear; + diff --git a/queue-3.4/mac80211-check-if-key-has-tkip-type-before-updating-iv.patch b/queue-3.4/mac80211-check-if-key-has-tkip-type-before-updating-iv.patch new file mode 100644 index 00000000000..321de268f43 --- /dev/null +++ b/queue-3.4/mac80211-check-if-key-has-tkip-type-before-updating-iv.patch @@ -0,0 +1,47 @@ +From 4045f72bcf3c293c7c5932ef001742d8bb5ded76 Mon Sep 17 00:00:00 2001 +From: Stanislaw Gruszka +Date: Tue, 2 Oct 2012 21:34:23 +0200 +Subject: mac80211: check if key has TKIP type before updating IV + +From: Stanislaw Gruszka + +commit 4045f72bcf3c293c7c5932ef001742d8bb5ded76 upstream. + +This patch fix corruption which can manifest itself by following crash +when switching on rfkill switch with rt2x00 driver: +https://bugzilla.redhat.com/attachment.cgi?id=615362 + +Pointer key->u.ccmp.tfm of group key get corrupted in: + +ieee80211_rx_h_michael_mic_verify(): + + /* update IV in key information to be able to detect replays */ + rx->key->u.tkip.rx[rx->security_idx].iv32 = rx->tkip_iv32; + rx->key->u.tkip.rx[rx->security_idx].iv16 = rx->tkip_iv16; + +because rt2x00 always set RX_FLAG_MMIC_STRIPPED, even if key is not TKIP. + +We already check type of the key in different path in +ieee80211_rx_h_michael_mic_verify() function, so adding additional +check here is reasonable. + +Signed-off-by: Stanislaw Gruszka +Signed-off-by: John W. Linville +Signed-off-by: Greg Kroah-Hartman + +--- + net/mac80211/wpa.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +--- a/net/mac80211/wpa.c ++++ b/net/mac80211/wpa.c +@@ -106,7 +106,8 @@ ieee80211_rx_h_michael_mic_verify(struct + if (status->flag & RX_FLAG_MMIC_ERROR) + goto mic_fail; + +- if (!(status->flag & RX_FLAG_IV_STRIPPED) && rx->key) ++ if (!(status->flag & RX_FLAG_IV_STRIPPED) && rx->key && ++ rx->key->conf.cipher == WLAN_CIPHER_SUITE_TKIP) + goto update_iv; + + return RX_CONTINUE; diff --git a/queue-3.4/revert-ath9k_hw-updated-ar9003-tx-gain-table-for-5ghz.patch b/queue-3.4/revert-ath9k_hw-updated-ar9003-tx-gain-table-for-5ghz.patch new file mode 100644 index 00000000000..4866cf66b9e --- /dev/null +++ b/queue-3.4/revert-ath9k_hw-updated-ar9003-tx-gain-table-for-5ghz.patch @@ -0,0 +1,215 @@ +From 73b26df5fa1a6245d6fc982362518b620bc7c2fe Mon Sep 17 00:00:00 2001 +From: Felix Fietkau +Date: Wed, 17 Oct 2012 13:50:43 +0200 +Subject: Revert "ath9k_hw: Updated AR9003 tx gain table for 5GHz" + +From: Felix Fietkau + +commit 73b26df5fa1a6245d6fc982362518b620bc7c2fe upstream. + +This reverts commit a240dc7b3c7463bd60cf0a9b2a90f52f78aae0fd. + +This commit is reducing tx power by at least 10 db on some devices, +e.g. the Buffalo WZR-HP-G450H. + +Signed-off-by: Felix Fietkau +Cc: rmanohar@qca.qualcomm.com +Signed-off-by: John W. Linville +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h | 164 +++++++++---------- + 1 file changed, 82 insertions(+), 82 deletions(-) + +--- a/drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h ++++ b/drivers/net/wireless/ath/ath9k/ar9003_2p2_initvals.h +@@ -533,107 +533,107 @@ static const u32 ar9300_2p2_baseband_cor + + static const u32 ar9300Modes_high_power_tx_gain_table_2p2[][5] = { + /* Addr 5G_HT20 5G_HT40 2G_HT40 2G_HT20 */ +- {0x0000a2dc, 0x000cfff0, 0x000cfff0, 0x03aaa352, 0x03aaa352}, +- {0x0000a2e0, 0x000f0000, 0x000f0000, 0x03ccc584, 0x03ccc584}, +- {0x0000a2e4, 0x03f00000, 0x03f00000, 0x03f0f800, 0x03f0f800}, ++ {0x0000a2dc, 0x00033800, 0x00033800, 0x03aaa352, 0x03aaa352}, ++ {0x0000a2e0, 0x0003c000, 0x0003c000, 0x03ccc584, 0x03ccc584}, ++ {0x0000a2e4, 0x03fc0000, 0x03fc0000, 0x03f0f800, 0x03f0f800}, + {0x0000a2e8, 0x00000000, 0x00000000, 0x03ff0000, 0x03ff0000}, + {0x0000a410, 0x000050d9, 0x000050d9, 0x000050d9, 0x000050d9}, + {0x0000a500, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, + {0x0000a504, 0x06000003, 0x06000003, 0x04000002, 0x04000002}, + {0x0000a508, 0x0a000020, 0x0a000020, 0x08000004, 0x08000004}, + {0x0000a50c, 0x10000023, 0x10000023, 0x0b000200, 0x0b000200}, +- {0x0000a510, 0x15000028, 0x15000028, 0x0f000202, 0x0f000202}, +- {0x0000a514, 0x1b00002b, 0x1b00002b, 0x12000400, 0x12000400}, +- {0x0000a518, 0x1f020028, 0x1f020028, 0x16000402, 0x16000402}, +- {0x0000a51c, 0x2502002b, 0x2502002b, 0x19000404, 0x19000404}, +- {0x0000a520, 0x2a04002a, 0x2a04002a, 0x1c000603, 0x1c000603}, +- {0x0000a524, 0x2e06002a, 0x2e06002a, 0x21000a02, 0x21000a02}, +- {0x0000a528, 0x3302202d, 0x3302202d, 0x25000a04, 0x25000a04}, +- {0x0000a52c, 0x3804202c, 0x3804202c, 0x28000a20, 0x28000a20}, +- {0x0000a530, 0x3c06202c, 0x3c06202c, 0x2c000e20, 0x2c000e20}, +- {0x0000a534, 0x4108202d, 0x4108202d, 0x30000e22, 0x30000e22}, +- {0x0000a538, 0x4506402d, 0x4506402d, 0x34000e24, 0x34000e24}, +- {0x0000a53c, 0x4906222d, 0x4906222d, 0x38001640, 0x38001640}, +- {0x0000a540, 0x4d062231, 0x4d062231, 0x3c001660, 0x3c001660}, +- {0x0000a544, 0x50082231, 0x50082231, 0x3f001861, 0x3f001861}, +- {0x0000a548, 0x5608422e, 0x5608422e, 0x43001a81, 0x43001a81}, +- {0x0000a54c, 0x5a08442e, 0x5a08442e, 0x47001a83, 0x47001a83}, +- {0x0000a550, 0x5e0a4431, 0x5e0a4431, 0x4a001c84, 0x4a001c84}, +- {0x0000a554, 0x640a4432, 0x640a4432, 0x4e001ce3, 0x4e001ce3}, +- {0x0000a558, 0x680a4434, 0x680a4434, 0x52001ce5, 0x52001ce5}, +- {0x0000a55c, 0x6c0a6434, 0x6c0a6434, 0x56001ce9, 0x56001ce9}, +- {0x0000a560, 0x6f0a6633, 0x6f0a6633, 0x5a001ceb, 0x5a001ceb}, +- {0x0000a564, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, +- {0x0000a568, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, +- {0x0000a56c, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, +- {0x0000a570, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, +- {0x0000a574, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, +- {0x0000a578, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, +- {0x0000a57c, 0x730c6634, 0x730c6634, 0x5d001eec, 0x5d001eec}, ++ {0x0000a510, 0x16000220, 0x16000220, 0x0f000202, 0x0f000202}, ++ {0x0000a514, 0x1c000223, 0x1c000223, 0x12000400, 0x12000400}, ++ {0x0000a518, 0x21002220, 0x21002220, 0x16000402, 0x16000402}, ++ {0x0000a51c, 0x27002223, 0x27002223, 0x19000404, 0x19000404}, ++ {0x0000a520, 0x2b022220, 0x2b022220, 0x1c000603, 0x1c000603}, ++ {0x0000a524, 0x2f022222, 0x2f022222, 0x21000a02, 0x21000a02}, ++ {0x0000a528, 0x34022225, 0x34022225, 0x25000a04, 0x25000a04}, ++ {0x0000a52c, 0x3a02222a, 0x3a02222a, 0x28000a20, 0x28000a20}, ++ {0x0000a530, 0x3e02222c, 0x3e02222c, 0x2c000e20, 0x2c000e20}, ++ {0x0000a534, 0x4202242a, 0x4202242a, 0x30000e22, 0x30000e22}, ++ {0x0000a538, 0x4702244a, 0x4702244a, 0x34000e24, 0x34000e24}, ++ {0x0000a53c, 0x4b02244c, 0x4b02244c, 0x38001640, 0x38001640}, ++ {0x0000a540, 0x4e02246c, 0x4e02246c, 0x3c001660, 0x3c001660}, ++ {0x0000a544, 0x52022470, 0x52022470, 0x3f001861, 0x3f001861}, ++ {0x0000a548, 0x55022490, 0x55022490, 0x43001a81, 0x43001a81}, ++ {0x0000a54c, 0x59022492, 0x59022492, 0x47001a83, 0x47001a83}, ++ {0x0000a550, 0x5d022692, 0x5d022692, 0x4a001c84, 0x4a001c84}, ++ {0x0000a554, 0x61022892, 0x61022892, 0x4e001ce3, 0x4e001ce3}, ++ {0x0000a558, 0x65024890, 0x65024890, 0x52001ce5, 0x52001ce5}, ++ {0x0000a55c, 0x69024892, 0x69024892, 0x56001ce9, 0x56001ce9}, ++ {0x0000a560, 0x6e024c92, 0x6e024c92, 0x5a001ceb, 0x5a001ceb}, ++ {0x0000a564, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, ++ {0x0000a568, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, ++ {0x0000a56c, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, ++ {0x0000a570, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, ++ {0x0000a574, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, ++ {0x0000a578, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, ++ {0x0000a57c, 0x74026e92, 0x74026e92, 0x5d001eec, 0x5d001eec}, + {0x0000a580, 0x00800000, 0x00800000, 0x00800000, 0x00800000}, + {0x0000a584, 0x06800003, 0x06800003, 0x04800002, 0x04800002}, + {0x0000a588, 0x0a800020, 0x0a800020, 0x08800004, 0x08800004}, + {0x0000a58c, 0x10800023, 0x10800023, 0x0b800200, 0x0b800200}, +- {0x0000a590, 0x15800028, 0x15800028, 0x0f800202, 0x0f800202}, +- {0x0000a594, 0x1b80002b, 0x1b80002b, 0x12800400, 0x12800400}, +- {0x0000a598, 0x1f820028, 0x1f820028, 0x16800402, 0x16800402}, +- {0x0000a59c, 0x2582002b, 0x2582002b, 0x19800404, 0x19800404}, +- {0x0000a5a0, 0x2a84002a, 0x2a84002a, 0x1c800603, 0x1c800603}, +- {0x0000a5a4, 0x2e86002a, 0x2e86002a, 0x21800a02, 0x21800a02}, +- {0x0000a5a8, 0x3382202d, 0x3382202d, 0x25800a04, 0x25800a04}, +- {0x0000a5ac, 0x3884202c, 0x3884202c, 0x28800a20, 0x28800a20}, +- {0x0000a5b0, 0x3c86202c, 0x3c86202c, 0x2c800e20, 0x2c800e20}, +- {0x0000a5b4, 0x4188202d, 0x4188202d, 0x30800e22, 0x30800e22}, +- {0x0000a5b8, 0x4586402d, 0x4586402d, 0x34800e24, 0x34800e24}, +- {0x0000a5bc, 0x4986222d, 0x4986222d, 0x38801640, 0x38801640}, +- {0x0000a5c0, 0x4d862231, 0x4d862231, 0x3c801660, 0x3c801660}, +- {0x0000a5c4, 0x50882231, 0x50882231, 0x3f801861, 0x3f801861}, +- {0x0000a5c8, 0x5688422e, 0x5688422e, 0x43801a81, 0x43801a81}, +- {0x0000a5cc, 0x5a88442e, 0x5a88442e, 0x47801a83, 0x47801a83}, +- {0x0000a5d0, 0x5e8a4431, 0x5e8a4431, 0x4a801c84, 0x4a801c84}, +- {0x0000a5d4, 0x648a4432, 0x648a4432, 0x4e801ce3, 0x4e801ce3}, +- {0x0000a5d8, 0x688a4434, 0x688a4434, 0x52801ce5, 0x52801ce5}, +- {0x0000a5dc, 0x6c8a6434, 0x6c8a6434, 0x56801ce9, 0x56801ce9}, +- {0x0000a5e0, 0x6f8a6633, 0x6f8a6633, 0x5a801ceb, 0x5a801ceb}, +- {0x0000a5e4, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, +- {0x0000a5e8, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, +- {0x0000a5ec, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, +- {0x0000a5f0, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, +- {0x0000a5f4, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, +- {0x0000a5f8, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, +- {0x0000a5fc, 0x738c6634, 0x738c6634, 0x5d801eec, 0x5d801eec}, ++ {0x0000a590, 0x16800220, 0x16800220, 0x0f800202, 0x0f800202}, ++ {0x0000a594, 0x1c800223, 0x1c800223, 0x12800400, 0x12800400}, ++ {0x0000a598, 0x21802220, 0x21802220, 0x16800402, 0x16800402}, ++ {0x0000a59c, 0x27802223, 0x27802223, 0x19800404, 0x19800404}, ++ {0x0000a5a0, 0x2b822220, 0x2b822220, 0x1c800603, 0x1c800603}, ++ {0x0000a5a4, 0x2f822222, 0x2f822222, 0x21800a02, 0x21800a02}, ++ {0x0000a5a8, 0x34822225, 0x34822225, 0x25800a04, 0x25800a04}, ++ {0x0000a5ac, 0x3a82222a, 0x3a82222a, 0x28800a20, 0x28800a20}, ++ {0x0000a5b0, 0x3e82222c, 0x3e82222c, 0x2c800e20, 0x2c800e20}, ++ {0x0000a5b4, 0x4282242a, 0x4282242a, 0x30800e22, 0x30800e22}, ++ {0x0000a5b8, 0x4782244a, 0x4782244a, 0x34800e24, 0x34800e24}, ++ {0x0000a5bc, 0x4b82244c, 0x4b82244c, 0x38801640, 0x38801640}, ++ {0x0000a5c0, 0x4e82246c, 0x4e82246c, 0x3c801660, 0x3c801660}, ++ {0x0000a5c4, 0x52822470, 0x52822470, 0x3f801861, 0x3f801861}, ++ {0x0000a5c8, 0x55822490, 0x55822490, 0x43801a81, 0x43801a81}, ++ {0x0000a5cc, 0x59822492, 0x59822492, 0x47801a83, 0x47801a83}, ++ {0x0000a5d0, 0x5d822692, 0x5d822692, 0x4a801c84, 0x4a801c84}, ++ {0x0000a5d4, 0x61822892, 0x61822892, 0x4e801ce3, 0x4e801ce3}, ++ {0x0000a5d8, 0x65824890, 0x65824890, 0x52801ce5, 0x52801ce5}, ++ {0x0000a5dc, 0x69824892, 0x69824892, 0x56801ce9, 0x56801ce9}, ++ {0x0000a5e0, 0x6e824c92, 0x6e824c92, 0x5a801ceb, 0x5a801ceb}, ++ {0x0000a5e4, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, ++ {0x0000a5e8, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, ++ {0x0000a5ec, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, ++ {0x0000a5f0, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, ++ {0x0000a5f4, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, ++ {0x0000a5f8, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, ++ {0x0000a5fc, 0x74826e92, 0x74826e92, 0x5d801eec, 0x5d801eec}, + {0x0000a600, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, + {0x0000a604, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, +- {0x0000a608, 0x01804601, 0x01804601, 0x00000000, 0x00000000}, +- {0x0000a60c, 0x01804601, 0x01804601, 0x00000000, 0x00000000}, +- {0x0000a610, 0x01804601, 0x01804601, 0x00000000, 0x00000000}, +- {0x0000a614, 0x01804601, 0x01804601, 0x01404000, 0x01404000}, +- {0x0000a618, 0x01804601, 0x01804601, 0x01404501, 0x01404501}, +- {0x0000a61c, 0x01804601, 0x01804601, 0x02008501, 0x02008501}, +- {0x0000a620, 0x03408d02, 0x03408d02, 0x0280ca03, 0x0280ca03}, +- {0x0000a624, 0x0300cc03, 0x0300cc03, 0x03010c04, 0x03010c04}, +- {0x0000a628, 0x03410d04, 0x03410d04, 0x04014c04, 0x04014c04}, +- {0x0000a62c, 0x03410d04, 0x03410d04, 0x04015005, 0x04015005}, +- {0x0000a630, 0x03410d04, 0x03410d04, 0x04015005, 0x04015005}, +- {0x0000a634, 0x03410d04, 0x03410d04, 0x04015005, 0x04015005}, +- {0x0000a638, 0x03410d04, 0x03410d04, 0x04015005, 0x04015005}, +- {0x0000a63c, 0x03410d04, 0x03410d04, 0x04015005, 0x04015005}, +- {0x0000b2dc, 0x000cfff0, 0x000cfff0, 0x03aaa352, 0x03aaa352}, +- {0x0000b2e0, 0x000f0000, 0x000f0000, 0x03ccc584, 0x03ccc584}, +- {0x0000b2e4, 0x03f00000, 0x03f00000, 0x03f0f800, 0x03f0f800}, ++ {0x0000a608, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, ++ {0x0000a60c, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, ++ {0x0000a610, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, ++ {0x0000a614, 0x02004000, 0x02004000, 0x01404000, 0x01404000}, ++ {0x0000a618, 0x02004801, 0x02004801, 0x01404501, 0x01404501}, ++ {0x0000a61c, 0x02808a02, 0x02808a02, 0x02008501, 0x02008501}, ++ {0x0000a620, 0x0380ce03, 0x0380ce03, 0x0280ca03, 0x0280ca03}, ++ {0x0000a624, 0x04411104, 0x04411104, 0x03010c04, 0x03010c04}, ++ {0x0000a628, 0x04411104, 0x04411104, 0x04014c04, 0x04014c04}, ++ {0x0000a62c, 0x04411104, 0x04411104, 0x04015005, 0x04015005}, ++ {0x0000a630, 0x04411104, 0x04411104, 0x04015005, 0x04015005}, ++ {0x0000a634, 0x04411104, 0x04411104, 0x04015005, 0x04015005}, ++ {0x0000a638, 0x04411104, 0x04411104, 0x04015005, 0x04015005}, ++ {0x0000a63c, 0x04411104, 0x04411104, 0x04015005, 0x04015005}, ++ {0x0000b2dc, 0x00033800, 0x00033800, 0x03aaa352, 0x03aaa352}, ++ {0x0000b2e0, 0x0003c000, 0x0003c000, 0x03ccc584, 0x03ccc584}, ++ {0x0000b2e4, 0x03fc0000, 0x03fc0000, 0x03f0f800, 0x03f0f800}, + {0x0000b2e8, 0x00000000, 0x00000000, 0x03ff0000, 0x03ff0000}, +- {0x0000c2dc, 0x000cfff0, 0x000cfff0, 0x03aaa352, 0x03aaa352}, +- {0x0000c2e0, 0x000f0000, 0x000f0000, 0x03ccc584, 0x03ccc584}, +- {0x0000c2e4, 0x03f00000, 0x03f00000, 0x03f0f800, 0x03f0f800}, ++ {0x0000c2dc, 0x00033800, 0x00033800, 0x03aaa352, 0x03aaa352}, ++ {0x0000c2e0, 0x0003c000, 0x0003c000, 0x03ccc584, 0x03ccc584}, ++ {0x0000c2e4, 0x03fc0000, 0x03fc0000, 0x03f0f800, 0x03f0f800}, + {0x0000c2e8, 0x00000000, 0x00000000, 0x03ff0000, 0x03ff0000}, + {0x00016044, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, +- {0x00016048, 0x61200001, 0x61200001, 0x66480001, 0x66480001}, ++ {0x00016048, 0x66480001, 0x66480001, 0x66480001, 0x66480001}, + {0x00016068, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, + {0x00016444, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, +- {0x00016448, 0x61200001, 0x61200001, 0x66480001, 0x66480001}, ++ {0x00016448, 0x66480001, 0x66480001, 0x66480001, 0x66480001}, + {0x00016468, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, + {0x00016844, 0x012492d4, 0x012492d4, 0x012492d4, 0x012492d4}, +- {0x00016848, 0x61200001, 0x61200001, 0x66480001, 0x66480001}, ++ {0x00016848, 0x66480001, 0x66480001, 0x66480001, 0x66480001}, + {0x00016868, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c, 0x6db6db6c}, + }; + diff --git a/queue-3.4/series b/queue-3.4/series index 645f55efb31..f363e800031 100644 --- a/queue-3.4/series +++ b/queue-3.4/series @@ -32,3 +32,16 @@ usb-mos7840-fix-port-device-leak-in-error-path.patch usb-mos7840-remove-null-urb-submission.patch usb-mos7840-remove-invalid-disconnect-handling.patch vhost-fix-mergeable-bufs-on-be-hosts.patch +arm-samsung-add-naming-of-s3c64xx-spi-devices.patch +arm-at91-tc-fix-typo-in-the-dt-document.patch +arm-at91-i2c-change-id-to-let-i2c-gpio-work.patch +arm-at91-at91sam9g10-fix-soc-type-detection.patch +mac80211-check-if-key-has-tkip-type-before-updating-iv.patch +bluetooth-smp-fix-setting-unknown-auth_req-bits.patch +freezer-exec-should-clear-pf_nofreeze-along-with-pf_kthread.patch +dmaengine-sirf-fix-a-typo-in-dma_prep_interleaved.patch +dmaengine-sirf-fix-a-typo-in-moving-running-dma_desc-to-active-queue.patch +dmaengine-imx-dma-fix-missing-unlock-on-error-in-imxdma_xfer_desc.patch +bcma-fix-unregistration-of-cores.patch +cpufreq-powernow-k8-remove-usage-of-smp_processor_id-in-preemptible-code.patch +revert-ath9k_hw-updated-ar9003-tx-gain-table-for-5ghz.patch