linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: multi_v7_defconfig: fix failure setting CPU voltage by enabling dependent I2C controller
@ 2014-11-18 19:10 Tyler Baker
  2014-11-19  7:49 ` Kukjin Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Tyler Baker @ 2014-11-18 19:10 UTC (permalink / raw)
  To: linux-arm-kernel

This patch fixes a long standing issue introduced during the 3.16 merge window.
Shortly after the merge, exynos5250-based arndale boards began to produce the 
following errors:

kern.err kernel:  exynos-cpufreq exynos-cpufreq: failed to set cpu voltage
kern.err kernel:  cpufreq: __target_index: Failed to change cpu frequency: -22

Further analysis revealed that the S5M8767 voltage regulator used on the 
exynos5250-based arndale board utilizes the S3C2410 I2C controller. If the 
S3C2410 I2C controller driver is not enabled, the S5M8767 voltage regulator 
fails to probe. Therefore a dependency exists between these two drivers. 
In the exynos_defconfig both CONFIG_REGULATOR_S5M8767 and CONFIG_I2C_S3C2410 
options are enabled, and no errors are produced. However, in the 
multi_v7_defconfig only the CONFIG_REGULATOR_S5M8767 option is enabled and the 
errors are present. So let's enable the CONFIG_I2C_S3C2410 option in the 
multi_v7_defconfig to allow the S5M8767 voltage regulator to probe.

Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
---
This issue was reported [1]. I've also confirmed this fix on two different 
arndale boards.

[1] https://www.mail-archive.com/linux-samsung-soc at vger.kernel.org/msg38765.html

 arch/arm/configs/multi_v7_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
index 3487046..9d7a32f 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -217,6 +217,7 @@ CONFIG_I2C_CADENCE=y
 CONFIG_I2C_DESIGNWARE_PLATFORM=y
 CONFIG_I2C_EXYNOS5=y
 CONFIG_I2C_MV64XXX=y
+CONFIG_I2C_S3C2410=y
 CONFIG_I2C_SIRF=y
 CONFIG_I2C_TEGRA=y
 CONFIG_I2C_ST=y
-- 
2.1.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] ARM: multi_v7_defconfig: fix failure setting CPU voltage by enabling dependent I2C controller
  2014-11-18 19:10 [PATCH] ARM: multi_v7_defconfig: fix failure setting CPU voltage by enabling dependent I2C controller Tyler Baker
@ 2014-11-19  7:49 ` Kukjin Kim
  2014-11-19 17:40   ` Kevin Hilman
  0 siblings, 1 reply; 3+ messages in thread
From: Kukjin Kim @ 2014-11-19  7:49 UTC (permalink / raw)
  To: linux-arm-kernel

On 11/19/14 04:10, Tyler Baker wrote:

Hi,

+ Arnd, Olof and Kevin

> This patch fixes a long standing issue introduced during the 3.16 merge window.
> Shortly after the merge, exynos5250-based arndale boards began to produce the 
> following errors:
> 
> kern.err kernel:  exynos-cpufreq exynos-cpufreq: failed to set cpu voltage
> kern.err kernel:  cpufreq: __target_index: Failed to change cpu frequency: -22
> 
> Further analysis revealed that the S5M8767 voltage regulator used on the 
> exynos5250-based arndale board utilizes the S3C2410 I2C controller. If the 
> S3C2410 I2C controller driver is not enabled, the S5M8767 voltage regulator 
> fails to probe. Therefore a dependency exists between these two drivers. 
> In the exynos_defconfig both CONFIG_REGULATOR_S5M8767 and CONFIG_I2C_S3C2410 
> options are enabled, and no errors are produced. However, in the 
> multi_v7_defconfig only the CONFIG_REGULATOR_S5M8767 option is enabled and the 
> errors are present. So let's enable the CONFIG_I2C_S3C2410 option in the 
> multi_v7_defconfig to allow the S5M8767 voltage regulator to probe.
> 
> Signed-off-by: Tyler Baker <tyler.baker@linaro.org>

Acked-by: Kukjin Kim <kgene.kim@samsung.com>

Thanks,
Kukjin

> ---
> This issue was reported [1]. I've also confirmed this fix on two different 
> arndale boards.
> 
> [1] https://www.mail-archive.com/linux-samsung-soc at vger.kernel.org/msg38765.html
> 
>  arch/arm/configs/multi_v7_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig
> index 3487046..9d7a32f 100644
> --- a/arch/arm/configs/multi_v7_defconfig
> +++ b/arch/arm/configs/multi_v7_defconfig
> @@ -217,6 +217,7 @@ CONFIG_I2C_CADENCE=y
>  CONFIG_I2C_DESIGNWARE_PLATFORM=y
>  CONFIG_I2C_EXYNOS5=y
>  CONFIG_I2C_MV64XXX=y
> +CONFIG_I2C_S3C2410=y
>  CONFIG_I2C_SIRF=y
>  CONFIG_I2C_TEGRA=y
>  CONFIG_I2C_ST=y

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] ARM: multi_v7_defconfig: fix failure setting CPU voltage by enabling dependent I2C controller
  2014-11-19  7:49 ` Kukjin Kim
@ 2014-11-19 17:40   ` Kevin Hilman
  0 siblings, 0 replies; 3+ messages in thread
From: Kevin Hilman @ 2014-11-19 17:40 UTC (permalink / raw)
  To: linux-arm-kernel

Kukjin Kim <kgene.kim@samsung.com> writes:

> On 11/19/14 04:10, Tyler Baker wrote:
>
> Hi,
>
> + Arnd, Olof and Kevin
>
>> This patch fixes a long standing issue introduced during the 3.16 merge window.
>> Shortly after the merge, exynos5250-based arndale boards began to produce the 
>> following errors:
>> 
>> kern.err kernel:  exynos-cpufreq exynos-cpufreq: failed to set cpu voltage
>> kern.err kernel:  cpufreq: __target_index: Failed to change cpu frequency: -22
>> 
>> Further analysis revealed that the S5M8767 voltage regulator used on the 
>> exynos5250-based arndale board utilizes the S3C2410 I2C controller. If the 
>> S3C2410 I2C controller driver is not enabled, the S5M8767 voltage regulator 
>> fails to probe. Therefore a dependency exists between these two drivers. 
>> In the exynos_defconfig both CONFIG_REGULATOR_S5M8767 and CONFIG_I2C_S3C2410 
>> options are enabled, and no errors are produced. However, in the 
>> multi_v7_defconfig only the CONFIG_REGULATOR_S5M8767 option is enabled and the 
>> errors are present. So let's enable the CONFIG_I2C_S3C2410 option in the 
>> multi_v7_defconfig to allow the S5M8767 voltage regulator to probe.
>> 
>> Signed-off-by: Tyler Baker <tyler.baker@linaro.org>
>
> Acked-by: Kukjin Kim <kgene.kim@samsung.com>

Applied to arm-soc/fixes, which is merged into arm-soc/for-next.

Thanks,

Kevin

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-11-19 17:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-18 19:10 [PATCH] ARM: multi_v7_defconfig: fix failure setting CPU voltage by enabling dependent I2C controller Tyler Baker
2014-11-19  7:49 ` Kukjin Kim
2014-11-19 17:40   ` Kevin Hilman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).