ARM: imx: do not bring up unavailable cores
authorShawn Guo <shawn.guo@linaro.org>
Tue, 2 Apr 2013 08:37:21 +0000 (16:37 +0800)
committerShawn Guo <shawn.guo@linaro.org>
Fri, 12 Apr 2013 11:28:15 +0000 (19:28 +0800)
commitdc13ba2950acdd7ca64de3a8addcf85ada8ee908
treea7e50cd75002c22889aa0e9dddfaf282c4cb00e0
parent3c03a2fed63881abf5ecb5596625157ecfc9e4eb
ARM: imx: do not bring up unavailable cores

The i.MX6 Quad can be fused as i.MX6 Dual chip, and similarly i.MX6
DualLite can be fused as i.MX6 Solo.  The actual number of available
cores can be found out from SCU.

Since we do not reflect the fusing thing in device tree, the function
arm_dt_init_cpu_maps() will always call set_cpu_possible(true) for 4
cores on i.MX6 Quad/Dual and 2 cores for i.MX6 DualLite/Solo.  This
causes failures when kernel tries to bring those unavailable cores
online.  For example, the following failure message will be seen when
booting an i.MX6 Solo chip.

  CPU1: failed to come online

Though kernel will still boot fine, the message is somehow annoying.
Let's get rid of it by calling set_cpu_possible(false) on those
unavailable cores.

While at it, the set_cpu_possible(true) for available cores is removed,
since it's already been done in arm_dt_init_cpu_maps().

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
arch/arm/mach-imx/platsmp.c
This page took 0.042732 seconds and 5 git commands to generate.