]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ARM: i.MX35: enable MAX clock
authorSascha Hauer <s.hauer@pengutronix.de>
Tue, 26 Feb 2013 09:55:18 +0000 (10:55 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Apr 2013 19:51:11 +0000 (12:51 -0700)
commit1ed8d46cfb1af390003553d504d6ad38be31a443
treef53083f7a1cc503a63ac24b5086aede2d8cf2b51
parentcdbaff4e7c7d4730d37aa1da8c00b37bbbadbf23
ARM: i.MX35: enable MAX clock

commit 5dc2eb7da1e387e31ce54f54af580c6a6f512ca6 upstream.

The i.MX35 has two bits per clock gate which are decoded as follows:
      0b00 -> clock off
      0b01 -> clock is on in run mode, off in wait/doze
      0b10 -> clock is on in run/wait mode, off in doze
      0b11 -> clock is always on

The reset value for the MAX clock is 0b10.

The MAX clock is needed by the SoC, yet unused in the Kernel, so the
common clock framework will disable it during late init time. It will
only disable clocks though which it detects as being turned on. This
detection is made depending on the lower bit of the gate. If the reset
value has been altered by the bootloader to 0b11 the clock framework
will detect the clock as turned on, yet unused, hence it will turn it
off and the system locks up.

This patch turns the MAX clock on unconditionally making the Kernel
independent of the bootloader.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Lingzhu Xiang <lxiang@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/arm/mach-imx/clk-imx35.c