devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible
@ 2025-06-17 14:05 Fabio Estevam
  2025-06-17 14:05 ` [PATCH v2 2/2] ARM: configs: sama5_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
  2025-06-24  7:16 ` [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Claudiu Beznea
  0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2025-06-17 14:05 UTC (permalink / raw)
  To: claudiu.beznea
  Cc: linux-arm-kernel, nicolas.ferre, robh, krzk+dt, conor+dt,
	devicetree, Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

The at91-sama5d27_wlsom1 SoM has a WIL3000 Wifi SDIO device populated.

Improve the description of the Wifi compatible string by passing the
more specific "microchip,wilc3000" string. 

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
---
Changes since v1:
- Collected Reviewed-by tag.

 arch/arm/boot/dts/microchip/at91-sama5d27_wlsom1.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/microchip/at91-sama5d27_wlsom1.dtsi b/arch/arm/boot/dts/microchip/at91-sama5d27_wlsom1.dtsi
index ef11606a82b3..e35dd79beb16 100644
--- a/arch/arm/boot/dts/microchip/at91-sama5d27_wlsom1.dtsi
+++ b/arch/arm/boot/dts/microchip/at91-sama5d27_wlsom1.dtsi
@@ -385,7 +385,7 @@ &sdmmc1 {
 
 	wilc: wifi@0 {
 		reg = <0>;
-		compatible = "microchip,wilc1000";
+		compatible = "microchip,wilc3000", "microchip,wilc1000";
 		pinctrl-names = "default";
 		pinctrl-0 = <&pinctrl_wilc_default>;
 		clocks = <&pmc PMC_TYPE_SYSTEM 9>;
-- 
2.34.1


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

* [PATCH v2 2/2] ARM: configs: sama5_defconfig: Select CONFIG_WILC1000_SDIO
  2025-06-17 14:05 [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Fabio Estevam
@ 2025-06-17 14:05 ` Fabio Estevam
  2025-06-24  7:16   ` Claudiu Beznea
  2025-06-24  7:16 ` [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Claudiu Beznea
  1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2025-06-17 14:05 UTC (permalink / raw)
  To: claudiu.beznea
  Cc: linux-arm-kernel, nicolas.ferre, robh, krzk+dt, conor+dt,
	devicetree, Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

The at91-sama5d27_wlsom1 SoM has a WILC3000 Wifi chip populated, so select
the CONFIG_WILC1000_SDIO by default.

Signed-off-by: Fabio Estevam <festevam@denx.de>
---
Changes since v1:
- Make the change in the correct defconfig. (Claudiu)

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

diff --git a/arch/arm/configs/sama5_defconfig b/arch/arm/configs/sama5_defconfig
index e447329398d5..2cad045e1d8d 100644
--- a/arch/arm/configs/sama5_defconfig
+++ b/arch/arm/configs/sama5_defconfig
@@ -95,6 +95,7 @@ CONFIG_LIBERTAS_THINFIRM_USB=m
 CONFIG_MWIFIEX=m
 CONFIG_MWIFIEX_SDIO=m
 CONFIG_MWIFIEX_USB=m
+CONFIG_WILC1000_SDIO=m
 CONFIG_RT2X00=m
 CONFIG_RT2500USB=m
 CONFIG_RT73USB=m
-- 
2.34.1


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

* Re: [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible
  2025-06-17 14:05 [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Fabio Estevam
  2025-06-17 14:05 ` [PATCH v2 2/2] ARM: configs: sama5_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
@ 2025-06-24  7:16 ` Claudiu Beznea
  1 sibling, 0 replies; 4+ messages in thread
From: Claudiu Beznea @ 2025-06-24  7:16 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: linux-arm-kernel, nicolas.ferre, robh, krzk+dt, conor+dt,
	devicetree, Fabio Estevam



On 17.06.2025 17:05, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
> 
> The at91-sama5d27_wlsom1 SoM has a WIL3000 Wifi SDIO device populated.
> 
> Improve the description of the Wifi compatible string by passing the
> more specific "microchip,wilc3000" string. 
> 
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> Reviewed-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
Applied to at91-dt, thanks!

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

* Re: [PATCH v2 2/2] ARM: configs: sama5_defconfig: Select CONFIG_WILC1000_SDIO
  2025-06-17 14:05 ` [PATCH v2 2/2] ARM: configs: sama5_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
@ 2025-06-24  7:16   ` Claudiu Beznea
  0 siblings, 0 replies; 4+ messages in thread
From: Claudiu Beznea @ 2025-06-24  7:16 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: linux-arm-kernel, nicolas.ferre, robh, krzk+dt, conor+dt,
	devicetree, Fabio Estevam



On 17.06.2025 17:05, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
> 
> The at91-sama5d27_wlsom1 SoM has a WILC3000 Wifi chip populated, so select
> the CONFIG_WILC1000_SDIO by default.
> 
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied to at91-defconfig, thanks!

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

end of thread, other threads:[~2025-06-24  7:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-17 14:05 [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Fabio Estevam
2025-06-17 14:05 ` [PATCH v2 2/2] ARM: configs: sama5_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
2025-06-24  7:16   ` Claudiu Beznea
2025-06-24  7:16 ` [PATCH v2 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Claudiu Beznea

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