All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH PULL 0/2] Two patches for next cycle, v6.1
@ 2022-09-26 10:43 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 10:43 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Alim Akhtar, Russell King,
	Kukjin Kim, Tomasz Figa, Kyungmin Park, Sylwester Nawrocki,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel,
	Olof Johansson, Arnd Bergmann, arm, soc

Hi Arnd and Olof,

I got two remaining patches for v6.1 - DTS and ARM/mach code.

Best regards,
Krzysztof

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

* [PATCH PULL 0/2] Two patches for next cycle, v6.1
@ 2022-09-26 10:43 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 10:43 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Alim Akhtar, Russell King,
	Kukjin Kim, Tomasz Figa, Kyungmin Park, Sylwester Nawrocki,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel,
	Olof Johansson, Arnd Bergmann, arm, soc

Hi Arnd and Olof,

I got two remaining patches for v6.1 - DTS and ARM/mach code.

Best regards,
Krzysztof

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH PULL 1/2] ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family
  2022-09-26 10:43 ` Krzysztof Kozlowski
@ 2022-09-26 10:43   ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 10:43 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Alim Akhtar, Russell King,
	Kukjin Kim, Tomasz Figa, Kyungmin Park, Sylwester Nawrocki,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel,
	Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Dmitry Torokhov, Linus Walleij, Krzysztof Kozlowski

From: Dmitry Torokhov <dmitry.torokhov@gmail.com>

According to s5k6a3 driver code, the reset line for the chip appears to
be active low. This also matches the typical polarity of reset lines in
general. Let's fix it up as having correct polarity in DTS is important
when the driver will be switched over to gpiod API.

Fixes: b4fec64758ab ("ARM: dts: Add camera device nodes for Exynos4412 TRATS2 board")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220913164104.203957-1-dmitry.torokhov@gmail.com
---
 arch/arm/boot/dts/exynos4412-midas.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/exynos4412-midas.dtsi b/arch/arm/boot/dts/exynos4412-midas.dtsi
index b967397a46c5..8e1c19a8ad06 100644
--- a/arch/arm/boot/dts/exynos4412-midas.dtsi
+++ b/arch/arm/boot/dts/exynos4412-midas.dtsi
@@ -586,7 +586,7 @@ image-sensor@10 {
 		clocks = <&camera 1>;
 		clock-names = "extclk";
 		samsung,camclk-out = <1>;
-		gpios = <&gpm1 6 GPIO_ACTIVE_HIGH>;
+		gpios = <&gpm1 6 GPIO_ACTIVE_LOW>;
 
 		port {
 			is_s5k6a3_ep: endpoint {
-- 
2.34.1


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

* [PATCH PULL 1/2] ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family
@ 2022-09-26 10:43   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 10:43 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Alim Akhtar, Russell King,
	Kukjin Kim, Tomasz Figa, Kyungmin Park, Sylwester Nawrocki,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel,
	Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Dmitry Torokhov, Linus Walleij, Krzysztof Kozlowski

From: Dmitry Torokhov <dmitry.torokhov@gmail.com>

According to s5k6a3 driver code, the reset line for the chip appears to
be active low. This also matches the typical polarity of reset lines in
general. Let's fix it up as having correct polarity in DTS is important
when the driver will be switched over to gpiod API.

Fixes: b4fec64758ab ("ARM: dts: Add camera device nodes for Exynos4412 TRATS2 board")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220913164104.203957-1-dmitry.torokhov@gmail.com
---
 arch/arm/boot/dts/exynos4412-midas.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/exynos4412-midas.dtsi b/arch/arm/boot/dts/exynos4412-midas.dtsi
index b967397a46c5..8e1c19a8ad06 100644
--- a/arch/arm/boot/dts/exynos4412-midas.dtsi
+++ b/arch/arm/boot/dts/exynos4412-midas.dtsi
@@ -586,7 +586,7 @@ image-sensor@10 {
 		clocks = <&camera 1>;
 		clock-names = "extclk";
 		samsung,camclk-out = <1>;
-		gpios = <&gpm1 6 GPIO_ACTIVE_HIGH>;
+		gpios = <&gpm1 6 GPIO_ACTIVE_LOW>;
 
 		port {
 			is_s5k6a3_ep: endpoint {
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH PULL 2/2] ARM: s3c: remove orphan declarations from arch/arm/mach-s3c/devs.h
  2022-09-26 10:43 ` Krzysztof Kozlowski
@ 2022-09-26 10:43   ` Krzysztof Kozlowski
  -1 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 10:43 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Alim Akhtar, Russell King,
	Kukjin Kim, Tomasz Figa, Kyungmin Park, Sylwester Nawrocki,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel,
	Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Gaosheng Cui, Mark Brown, Krzysztof Kozlowski

From: Gaosheng Cui <cuigaosheng1@huawei.com>

s3c64xx_device_spi1 and s3c64xx_device_spi2 were removed by
commit f1ba938e4f98 ("spi: s3c64xx: Delete unused boardfile
helpers"), so remove the declaration, too.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Reviewed-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220914034615.1240860-3-cuigaosheng1@huawei.com
---
 arch/arm/mach-s3c/devs.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm/mach-s3c/devs.h b/arch/arm/mach-s3c/devs.h
index 02b0c5750572..991b9b2006a1 100644
--- a/arch/arm/mach-s3c/devs.h
+++ b/arch/arm/mach-s3c/devs.h
@@ -33,8 +33,6 @@ extern struct platform_device s3c64xx_device_onenand1;
 extern struct platform_device s3c64xx_device_pcm0;
 extern struct platform_device s3c64xx_device_pcm1;
 extern struct platform_device s3c64xx_device_spi0;
-extern struct platform_device s3c64xx_device_spi1;
-extern struct platform_device s3c64xx_device_spi2;
 
 extern struct platform_device s3c_device_adc;
 extern struct platform_device s3c_device_cfcon;
-- 
2.34.1


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

* [PATCH PULL 2/2] ARM: s3c: remove orphan declarations from arch/arm/mach-s3c/devs.h
@ 2022-09-26 10:43   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 7+ messages in thread
From: Krzysztof Kozlowski @ 2022-09-26 10:43 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Alim Akhtar, Russell King,
	Kukjin Kim, Tomasz Figa, Kyungmin Park, Sylwester Nawrocki,
	devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel,
	Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Gaosheng Cui, Mark Brown, Krzysztof Kozlowski

From: Gaosheng Cui <cuigaosheng1@huawei.com>

s3c64xx_device_spi1 and s3c64xx_device_spi2 were removed by
commit f1ba938e4f98 ("spi: s3c64xx: Delete unused boardfile
helpers"), so remove the declaration, too.

Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Reviewed-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220914034615.1240860-3-cuigaosheng1@huawei.com
---
 arch/arm/mach-s3c/devs.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm/mach-s3c/devs.h b/arch/arm/mach-s3c/devs.h
index 02b0c5750572..991b9b2006a1 100644
--- a/arch/arm/mach-s3c/devs.h
+++ b/arch/arm/mach-s3c/devs.h
@@ -33,8 +33,6 @@ extern struct platform_device s3c64xx_device_onenand1;
 extern struct platform_device s3c64xx_device_pcm0;
 extern struct platform_device s3c64xx_device_pcm1;
 extern struct platform_device s3c64xx_device_spi0;
-extern struct platform_device s3c64xx_device_spi1;
-extern struct platform_device s3c64xx_device_spi2;
 
 extern struct platform_device s3c_device_adc;
 extern struct platform_device s3c_device_cfcon;
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH PULL 0/2] Two patches for next cycle, v6.1
  2022-09-26 10:43 ` Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  (?)
@ 2022-09-28 21:00 ` patchwork-bot+linux-soc
  -1 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+linux-soc @ 2022-09-28 21:00 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: soc

Hello:

This series was applied to soc/soc.git (for-next)
by Arnd Bergmann <arnd@arndb.de>:

On Mon, 26 Sep 2022 12:43:52 +0200 you wrote:
> Hi Arnd and Olof,
> 
> I got two remaining patches for v6.1 - DTS and ARM/mach code.
> 
> Best regards,
> Krzysztof

Here is the summary with links:
  - [PULL,1/2] ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family
    https://git.kernel.org/soc/soc/c/3ba2d4bb9592
  - [PULL,2/2] ARM: s3c: remove orphan declarations from arch/arm/mach-s3c/devs.h
    https://git.kernel.org/soc/soc/c/c1ce7edcb69b

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

end of thread, other threads:[~2022-09-28 21:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-26 10:43 [PATCH PULL 0/2] Two patches for next cycle, v6.1 Krzysztof Kozlowski
2022-09-26 10:43 ` Krzysztof Kozlowski
2022-09-26 10:43 ` [PATCH PULL 1/2] ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family Krzysztof Kozlowski
2022-09-26 10:43   ` Krzysztof Kozlowski
2022-09-26 10:43 ` [PATCH PULL 2/2] ARM: s3c: remove orphan declarations from arch/arm/mach-s3c/devs.h Krzysztof Kozlowski
2022-09-26 10:43   ` Krzysztof Kozlowski
2022-09-28 21:00 ` [PATCH PULL 0/2] Two patches for next cycle, v6.1 patchwork-bot+linux-soc

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.