]> asedeno.scripts.mit.edu Git - linux.git/commit
ARM: tegra: make device can run on UP
authorJoseph Lo <josephl@nvidia.com>
Fri, 4 Jan 2013 09:32:22 +0000 (17:32 +0800)
committerStephen Warren <swarren@nvidia.com>
Mon, 28 Jan 2013 18:14:06 +0000 (11:14 -0700)
commit9e32366fe51fea464adb21c244f372d55207e13c
tree2afe44644ee7d424bab09d1d30d640d42eb84e02
parent8c627fa6583a4894189a47a0bf868f7848b51748
ARM: tegra: make device can run on UP

The reset handler code is used for either UP or SMP. To make Tegra device
can compile for UP. It needs to be moved to another file that is not SMP
only. This is because the reset handler also be needed by CPU idle
"powered-down" mode. So we also need to put the reset handler init function
in non-SMP only and init them always.

And currently the implementation of the reset handler to know which CPU is
OK to bring up was identital with "cpu_present_mask". But the
"cpu_present_mask" did not initialize yet when the reset handler init
function was moved to init early function. We use the "cpu_possible_mask"
to replace "cpu_present_mask". Then it can work on both UP and SMP case.

Signed-off-by: Joseph Lo <josephl@nvidia.com>
[swarren: dropped the move of v7_invalidate_l1() from one file to another,
to avoid conflicts with Pavel's cleanup of this function, adjust Makefile
so each line only contains 1 file.]
Signed-off-by: Stephen Warren <swarren@nvidia.com>
arch/arm/mach-tegra/Makefile
arch/arm/mach-tegra/common.c
arch/arm/mach-tegra/headsmp.S
arch/arm/mach-tegra/platsmp.c
arch/arm/mach-tegra/reset-handler.S [new file with mode: 0644]
arch/arm/mach-tegra/reset.c