devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/1] Add MCP23S08 pinctrl support
@ 2024-06-11  8:42 Christophe Roullier
  2024-06-11  8:42 ` [PATCH v2 1/1] ARM: multi_v7_defconfig: " Christophe Roullier
  2024-06-27 12:42 ` [PATCH v2 0/1] " Alexandre TORGUE
  0 siblings, 2 replies; 4+ messages in thread
From: Christophe Roullier @ 2024-06-11  8:42 UTC (permalink / raw)
  To: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Maxime Coquelin,
	Alexandre Torgue, Richard Cochran, Jose Abreu, Liam Girdwood,
	Mark Brown, Christophe Roullier, Marek Vasut
  Cc: netdev, devicetree, linux-stm32, linux-arm-kernel, linux-kernel

Enable MCP23S08 pinctrl support

V2: - Remark from Krzysztof (Change built-in to module)

Christophe Roullier (1):
  ARM: multi_v7_defconfig: Add MCP23S08 pinctrl support

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


base-commit: bb678f01804ccaa861b012b2b9426d69673d8a84
-- 
2.25.1


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

* [PATCH v2 1/1] ARM: multi_v7_defconfig: Add MCP23S08 pinctrl support
  2024-06-11  8:42 [PATCH v2 0/1] Add MCP23S08 pinctrl support Christophe Roullier
@ 2024-06-11  8:42 ` Christophe Roullier
  2024-06-11  8:44   ` Krzysztof Kozlowski
  2024-06-27 12:42 ` [PATCH v2 0/1] " Alexandre TORGUE
  1 sibling, 1 reply; 4+ messages in thread
From: Christophe Roullier @ 2024-06-11  8:42 UTC (permalink / raw)
  To: David S . Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Rob Herring, Krzysztof Kozlowski, Conor Dooley, Maxime Coquelin,
	Alexandre Torgue, Richard Cochran, Jose Abreu, Liam Girdwood,
	Mark Brown, Christophe Roullier, Marek Vasut
  Cc: netdev, devicetree, linux-stm32, linux-arm-kernel, linux-kernel

Enable MCP23S08 I/O expanders to manage Ethernet PHY
reset in STM32MP135F-DK board.

Signed-off-by: Christophe Roullier <christophe.roullier@foss.st.com>
---
 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 86bf057ac3663..62734530a3d6b 100644
--- a/arch/arm/configs/multi_v7_defconfig
+++ b/arch/arm/configs/multi_v7_defconfig
@@ -469,6 +469,7 @@ CONFIG_SPI_XILINX=y
 CONFIG_SPI_SPIDEV=y
 CONFIG_SPMI=y
 CONFIG_PINCTRL_AS3722=y
+CONFIG_PINCTRL_MCP23S08=m
 CONFIG_PINCTRL_MICROCHIP_SGPIO=y
 CONFIG_PINCTRL_OCELOT=y
 CONFIG_PINCTRL_PALMAS=y
-- 
2.25.1


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

* Re: [PATCH v2 1/1] ARM: multi_v7_defconfig: Add MCP23S08 pinctrl support
  2024-06-11  8:42 ` [PATCH v2 1/1] ARM: multi_v7_defconfig: " Christophe Roullier
@ 2024-06-11  8:44   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2024-06-11  8:44 UTC (permalink / raw)
  To: Christophe Roullier, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Maxime Coquelin, Alexandre Torgue, Richard Cochran,
	Jose Abreu, Liam Girdwood, Mark Brown, Marek Vasut
  Cc: netdev, devicetree, linux-stm32, linux-arm-kernel, linux-kernel

On 11/06/2024 10:42, Christophe Roullier wrote:
> Enable MCP23S08 I/O expanders to manage Ethernet PHY
> reset in STM32MP135F-DK board.
> 
> Signed-off-by: Christophe Roullier <christophe.roullier@foss.st.com>
> ---
>  arch/arm/configs/multi_v7_defconfig | 1 +
>  1 file changed, 1 insertion(+)
> 

Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH v2 0/1] Add MCP23S08 pinctrl support
  2024-06-11  8:42 [PATCH v2 0/1] Add MCP23S08 pinctrl support Christophe Roullier
  2024-06-11  8:42 ` [PATCH v2 1/1] ARM: multi_v7_defconfig: " Christophe Roullier
@ 2024-06-27 12:42 ` Alexandre TORGUE
  1 sibling, 0 replies; 4+ messages in thread
From: Alexandre TORGUE @ 2024-06-27 12:42 UTC (permalink / raw)
  To: Christophe Roullier, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, Maxime Coquelin, Richard Cochran, Jose Abreu,
	Liam Girdwood, Mark Brown, Marek Vasut
  Cc: netdev, devicetree, linux-stm32, linux-arm-kernel, linux-kernel



On 6/11/24 10:42, Christophe Roullier wrote:
> Enable MCP23S08 pinctrl support
> 
> V2: - Remark from Krzysztof (Change built-in to module)
> 
> Christophe Roullier (1):
>    ARM: multi_v7_defconfig: Add MCP23S08 pinctrl support
> 
>   arch/arm/configs/multi_v7_defconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> 
> base-commit: bb678f01804ccaa861b012b2b9426d69673d8a84

Applied on stm32-next.

Thanks
Alex

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

end of thread, other threads:[~2024-06-27 12:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11  8:42 [PATCH v2 0/1] Add MCP23S08 pinctrl support Christophe Roullier
2024-06-11  8:42 ` [PATCH v2 1/1] ARM: multi_v7_defconfig: " Christophe Roullier
2024-06-11  8:44   ` Krzysztof Kozlowski
2024-06-27 12:42 ` [PATCH v2 0/1] " Alexandre TORGUE

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).