Hi, On Monday, August 26, 2013 09:14:42 AM Kukjin Kim wrote: > The following changes since commit ad81f0545ef01ea651886dddac4bef6cec930092: > > Linux 3.11-rc1 (2013-07-14 15:18:27 -0700) > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git > tags/samsung-mach-exynos > > for you to fetch changes up to f52616f4233d71d0fb00f06f86d046d18d2b7f3b: > > ARM: EXYNOS: always enable PM domains support for EXYNOS4X12 (2013-08-19 > 05:05:16 +0900) > > ---------------------------------------------------------------- > update mach-exynos > - enable ARCH_HAS_BANDGAP for exynos SoCs > - skip C1 cpuidle for exynos5440 because non-supporting > - always enable PM domains for exynos4x12 > > ---------------------------------------------------------------- > Amit Daniel Kachhap (2): > ARM: EXYNOS: enable ARCH_HAS_BANDGAP > ARM: EXYNOS: Skip C1 cpuidle state for exynos5440 The patch "ARM: EXYNOS: Skip C1 cpuidle state for exynos5440": --- a/arch/arm/mach-exynos/cpuidle.c +++ b/arch/arm/mach-exynos/cpuidle.c @@ -210,7 +210,7 @@ static int __init exynos4_init_cpuidle(void) device->cpu = cpu_id; /* Support IDLE only */ - if (cpu_id != 0) + if (soc_is_exynos5440() || cpu_id != 0) device->state_count = 1; ret = cpuidle_register_device(device); is incorrect as noted a month ago in: http://lists.infradead.org/pipermail/linux-arm-kernel/2013-July/186355.html [ Because of the deficiency in the core cpuidle core (device->state_count not being used by governors' code) only sysfs entries for C1 state will be disabled and EXYNOS cpuidle driver will still attempt to use C1 state. also non-working device->state_count is planned to be removed by: http://permalink.gmane.org/gmane.linux.power-management.general/37390 To disable C1 state on EXYNOS5440 something like: static int __init exynos4_init_cpuidle(void) { ... if (soc_is_exynos5440()) exynos4_idle_driver.state_count = 1; ... } should be done instead. Best regards, -- Bartlomiej Zolnierkiewicz Samsung R&D Institute Poland Samsung Electronics -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html