diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2016-04-06 17:39:07 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-04-12 15:56:55 +0800 |
commit | acc98009b87a811f9f815650274a1044474cd167 (patch) | |
tree | b8d471438034086c2f976e9ec32a8138ba27016e /arch/arm/mach-imx/Kconfig | |
parent | f55532a0c0b8bb6148f4e07853b876ef73bc69ca (diff) | |
download | talos-obmc-linux-acc98009b87a811f9f815650274a1044474cd167.tar.gz talos-obmc-linux-acc98009b87a811f9f815650274a1044474cd167.zip |
ARM: imx: always use TWD on IMX6Q
There is no reason to limit the TWD to be used on SMP kernels only if the
hardware has it available.
On Wandboard i.MX6SOLO, running PREEMPT-RT and cyclictest I see as max
immediately after start in idle:
UP : ~90us
SMP: ~50us
UP + TWD: ~20us.
Based on this numbers I prefer the TWD over the slightly slower MXC
timer.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx/Kconfig')
-rw-r--r-- | arch/arm/mach-imx/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig index 8973fae25436..dd905b9602a0 100644 --- a/arch/arm/mach-imx/Kconfig +++ b/arch/arm/mach-imx/Kconfig @@ -526,7 +526,7 @@ config SOC_IMX6Q bool "i.MX6 Quad/DualLite support" select ARM_ERRATA_764369 if SMP select HAVE_ARM_SCU if SMP - select HAVE_ARM_TWD if SMP + select HAVE_ARM_TWD select PCI_DOMAINS if PCI select PINCTRL_IMX6Q select SOC_IMX6 |