ARM: MX3: fix CPU revision number detection
authorDaniel Mack <daniel@caiaq.de>
Sat, 21 Nov 2009 19:17:18 +0000 (20:17 +0100)
committerSascha Hauer <s.hauer@pengutronix.de>
Mon, 23 Nov 2009 10:51:18 +0000 (11:51 +0100)
commit52939c03e53b151848da9e83fd839bddfda29e78
tree01ac7de1d40e608ec5323f93dd9cec711ae1f4f4
parent2cc326833f616ee49f73be94d4bf0ab1bc9a72d9
ARM: MX3: fix CPU revision number detection

The macro mx31_revision() used to take the global variable system_rev to
determine the CPU revision number. However, this number is expected to
be set by the bootloader and is usually zero (at least on my MX31 based
boards here). More than that, it is usually taken to identify the
board's revision, not the CPU's.

Fix that by reading the the CPU's SREV register instead.

Right now, mx31_read_cpu_rev() is called from mx31_clocks_init() which
is admittedly not a good place for it. However, we need to enable the
IIM clock first, and the clock code also has conditional code that
depends on mx31_revision() returning the right thing.

Signed-off-by: Daniel Mack <daniel@caiaq.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/mach-mx3/Makefile
arch/arm/mach-mx3/clock.c
arch/arm/mach-mx3/cpu.c [new file with mode: 0644]
arch/arm/plat-mxc/include/mach/mx3x.h