summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mvebu/mvebu-soc-id.c
diff options
context:
space:
mode:
authorThomas Petazzoni2014-05-05 17:05:23 +0200
committerJason Cooper2014-05-08 18:40:13 +0200
commit73c3c79137f05de2ffcfec3469e4110e40dd1522 (patch)
tree65cba4cbef09c385eb241bb23756025e567d5df7 /arch/arm/mach-mvebu/mvebu-soc-id.c
parentARM: mvebu: fix thermal quirk SoC revision check (diff)
downloadkernel-qcow2-linux-73c3c79137f05de2ffcfec3469e4110e40dd1522.tar.gz
kernel-qcow2-linux-73c3c79137f05de2ffcfec3469e4110e40dd1522.tar.xz
kernel-qcow2-linux-73c3c79137f05de2ffcfec3469e4110e40dd1522.zip
ARM: mvebu: initialize mvebu-soc-id earlier
Currently, the mvebu-soc-id logic is initialized through a core_initcall(). However, we will soon need to know the SoC revision before booting secondary CPUs, because a workaround affects Armada 375 Z1 steppings, but should not be applied on Armada 375 A0 steppings. Unfortunately, core_initcall() are called way too late compared to the SMP initialization. Therefore, the mvebu-soc-id initialization is move to an early_initcall(), which is called before the SMP initialization. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Link: https://lkml.kernel.org/r/1399302326-6917-3-git-send-email-thomas.petazzoni@free-electrons.com Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-mvebu/mvebu-soc-id.c')
-rw-r--r--arch/arm/mach-mvebu/mvebu-soc-id.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mvebu/mvebu-soc-id.c b/arch/arm/mach-mvebu/mvebu-soc-id.c
index 874a7504818e..e9119a99a5f3 100644
--- a/arch/arm/mach-mvebu/mvebu-soc-id.c
+++ b/arch/arm/mach-mvebu/mvebu-soc-id.c
@@ -118,7 +118,7 @@ clk_err:
return ret;
}
-core_initcall(mvebu_soc_id_init);
+early_initcall(mvebu_soc_id_init);
static int __init mvebu_soc_device(void)
{