* [PATCH 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible
@ 2025-05-19 16:53 Fabio Estevam
2025-05-19 16:53 ` [PATCH 2/2] ARM: configs: at91_dt_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
2025-06-07 11:10 ` [PATCH 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-05-19 16:53 UTC (permalink / raw)
To: nicolas.ferre
Cc: alexandre.belloni, claudiu.beznea, robh, krzk+dt, conor+dt,
devicetree, linux-arm-kernel, 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>
---
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 2/2] ARM: configs: at91_dt_defconfig: Select CONFIG_WILC1000_SDIO
2025-05-19 16:53 [PATCH 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Fabio Estevam
@ 2025-05-19 16:53 ` Fabio Estevam
2025-06-07 11:13 ` Claudiu Beznea
2025-06-07 11:10 ` [PATCH 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-05-19 16:53 UTC (permalink / raw)
To: nicolas.ferre
Cc: alexandre.belloni, claudiu.beznea, robh, krzk+dt, conor+dt,
devicetree, linux-arm-kernel, 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>
---
arch/arm/configs/at91_dt_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/at91_dt_defconfig b/arch/arm/configs/at91_dt_defconfig
index ff13e1ecf4bb..d195aa31976a 100644
--- a/arch/arm/configs/at91_dt_defconfig
+++ b/arch/arm/configs/at91_dt_defconfig
@@ -87,6 +87,7 @@ CONFIG_LIBERTAS_SPI=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 2/2] ARM: configs: at91_dt_defconfig: Select CONFIG_WILC1000_SDIO
2025-05-19 16:53 ` [PATCH 2/2] ARM: configs: at91_dt_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
@ 2025-06-07 11:13 ` Claudiu Beznea
0 siblings, 0 replies; 4+ messages in thread
From: Claudiu Beznea @ 2025-06-07 11:13 UTC (permalink / raw)
To: Fabio Estevam, nicolas.ferre
Cc: alexandre.belloni, robh, krzk+dt, conor+dt, devicetree,
linux-arm-kernel, Fabio Estevam
Hi, Fabio,
On 19.05.2025 19:53, 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.
at91-sama5d27_wlsom1 has a SAMA5D2 type of chip. This is built with
arch/arm/configs/sama5_defconfig.
Thank you,
Claudiu
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
> arch/arm/configs/at91_dt_defconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/configs/at91_dt_defconfig b/arch/arm/configs/at91_dt_defconfig
> index ff13e1ecf4bb..d195aa31976a 100644
> --- a/arch/arm/configs/at91_dt_defconfig
> +++ b/arch/arm/configs/at91_dt_defconfig
> @@ -87,6 +87,7 @@ CONFIG_LIBERTAS_SPI=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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible
2025-05-19 16:53 [PATCH 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Fabio Estevam
2025-05-19 16:53 ` [PATCH 2/2] ARM: configs: at91_dt_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
@ 2025-06-07 11:10 ` Claudiu Beznea
1 sibling, 0 replies; 4+ messages in thread
From: Claudiu Beznea @ 2025-06-07 11:10 UTC (permalink / raw)
To: Fabio Estevam, nicolas.ferre
Cc: alexandre.belloni, robh, krzk+dt, conor+dt, devicetree,
linux-arm-kernel, Fabio Estevam
On 19.05.2025 19:53, 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>
> ---
> 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>;
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-06-07 11:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-19 16:53 [PATCH 1/2] ARM: dts: at91-sama5d27_wlsom1: Improve the Wifi compatible Fabio Estevam
2025-05-19 16:53 ` [PATCH 2/2] ARM: configs: at91_dt_defconfig: Select CONFIG_WILC1000_SDIO Fabio Estevam
2025-06-07 11:13 ` Claudiu Beznea
2025-06-07 11:10 ` [PATCH 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).