This is a note to let you know that I've just added the patch titled

    ARM: imx: enable emi_slow_gate clock for imx5

to the 3.5-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     arm-imx-enable-emi_slow_gate-clock-for-imx5.patch
and it can be found in the queue-3.5 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From 68b0562df90a76ba964423986b2472c7e791729a Mon Sep 17 00:00:00 2001
From: Shawn Guo <shawn....@linaro.org>
Date: Thu, 2 Aug 2012 22:28:49 +0800
Subject: ARM: imx: enable emi_slow_gate clock for imx5

From: Shawn Guo <shawn....@linaro.org>

commit 68b0562df90a76ba964423986b2472c7e791729a upstream.

The imx5 common clock migration causes a regression with smsc911x
driver on imx53-ard board, where a smsc lan9220 controller gets
connected on imx53 with EIM interface.  EIM needs clock emi_slow_gate
to be functional.  In the new imx5 clock driver, there is no use count
incremented for the clock by enabling it, so the framework closes the
clock at late init time and makes EIM stop working then.

Enable emi_slow_gate in clock driver initialization to fix the
regression.

Signed-off-by: Shawn Guo <shawn....@linaro.org>
Acked-by: Sascha Hauer <s.ha...@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org>

---
 arch/arm/mach-imx/clk-imx51-imx53.c |    1 +
 1 file changed, 1 insertion(+)

--- a/arch/arm/mach-imx/clk-imx51-imx53.c
+++ b/arch/arm/mach-imx/clk-imx51-imx53.c
@@ -293,6 +293,7 @@ static void __init mx5_clocks_common_ini
        clk_prepare_enable(clk[aips_tz2]); /* fec */
        clk_prepare_enable(clk[spba]);
        clk_prepare_enable(clk[emi_fast_gate]); /* fec */
+       clk_prepare_enable(clk[emi_slow_gate]); /* eim */
        clk_prepare_enable(clk[tmax1]);
        clk_prepare_enable(clk[tmax2]); /* esdhc2, fec */
        clk_prepare_enable(clk[tmax3]); /* esdhc1, esdhc4 */


Patches currently in stable-queue which might be from shawn....@linaro.org are

queue-3.5/arm-imx-enable-emi_slow_gate-clock-for-imx5.patch
queue-3.5/arm-7466-1-disable-interrupt-before-spinning-endlessly.patch
queue-3.5/arm-dts-imx53-ard-add-regulators-for-lan9220.patch
queue-3.5/arm-mxs-remove-mmap_min_addr-setting-from-mxs_defconfig.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to