* [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi
@ 2025-07-29 18:58 Peter Robinson
2025-07-29 19:10 ` Dragan Simic
0 siblings, 1 reply; 5+ messages in thread
From: Peter Robinson @ 2025-07-29 18:58 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heiko Stuebner,
Dragan Simic, Geert Uytterhoeven, devicetree, linux-arm-kernel,
linux-rockchip
Cc: Peter Robinson
Update the WiFi configuration to include the wake-up
pin and add an ethernet alias to allow assignment of
a mac-address from the firmware.
Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
---
.../boot/dts/rockchip/rk3399-pinebook-pro.dts | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
index 5a8551d9ffe47..05c48cb09df6f 100644
--- a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
+++ b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
@@ -19,6 +19,7 @@ / {
chassis-type = "laptop";
aliases {
+ ethernet0 = &brcmf;
mmc0 = &sdio0;
mmc1 = &sdmmc;
mmc2 = &sdhci;
@@ -883,6 +884,12 @@ vcc5v0_host_en_pin: vcc5v0-host-en-pin {
};
};
+ wifi {
+ wifi_host_wake_l: wifi-host-wake-l {
+ rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
+ };
+ };
+
wireless-bluetooth {
bt_wake_pin: bt-wake-pin {
rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
@@ -940,7 +947,19 @@ &sdio0 {
pinctrl-names = "default";
pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
sd-uhs-sdr104;
+ #address-cells = <1>;
+ #size-cells = <0>;
status = "okay";
+
+ brcmf: wifi@1 {
+ reg = <1>;
+ compatible = "brcm,bcm4329-fmac";
+ interrupt-parent = <&gpio0>;
+ interrupts = <RK_PA3 IRQ_TYPE_LEVEL_HIGH>;
+ interrupt-names = "host-wake";
+ pinctrl-names = "default";
+ pinctrl-0 = <&wifi_host_wake_l>;
+ };
};
&sdhci {
--
2.50.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi
2025-07-29 18:58 [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi Peter Robinson
@ 2025-07-29 19:10 ` Dragan Simic
2025-07-29 19:24 ` Dragan Simic
2025-07-29 20:09 ` Peter Robinson
0 siblings, 2 replies; 5+ messages in thread
From: Dragan Simic @ 2025-07-29 19:10 UTC (permalink / raw)
To: Peter Robinson
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heiko Stuebner,
Geert Uytterhoeven, devicetree, linux-arm-kernel, linux-rockchip
Hello Peter,
On 2025-07-29 20:58, Peter Robinson wrote:
> Update the WiFi configuration to include the wake-up
> pin and add an ethernet alias to allow assignment of
> a mac-address from the firmware.
>
> Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
> ---
> .../boot/dts/rockchip/rk3399-pinebook-pro.dts | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> index 5a8551d9ffe47..05c48cb09df6f 100644
> --- a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> +++ b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> @@ -19,6 +19,7 @@ / {
> chassis-type = "laptop";
>
> aliases {
> + ethernet0 = &brcmf;
I'm sorry, but this alias isn't acceptable. In a few words, this
simply isn't an Ethernet interface.
We're already stretching a bit the dynamic nature of, well, everything
with the aliases in the Rockchip DT files, and an alias like this one
would be stretching the whole thing beyond the breaking point.
> mmc0 = &sdio0;
> mmc1 = &sdmmc;
> mmc2 = &sdhci;
> @@ -883,6 +884,12 @@ vcc5v0_host_en_pin: vcc5v0-host-en-pin {
> };
> };
>
> + wifi {
> + wifi_host_wake_l: wifi-host-wake-l {
> + rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
> + };
> + };
> +
> wireless-bluetooth {
> bt_wake_pin: bt-wake-pin {
> rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
> @@ -940,7 +947,19 @@ &sdio0 {
> pinctrl-names = "default";
> pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
> sd-uhs-sdr104;
> + #address-cells = <1>;
> + #size-cells = <0>;
> status = "okay";
> +
> + brcmf: wifi@1 {
> + reg = <1>;
> + compatible = "brcm,bcm4329-fmac";
> + interrupt-parent = <&gpio0>;
> + interrupts = <RK_PA3 IRQ_TYPE_LEVEL_HIGH>;
> + interrupt-names = "host-wake";
> + pinctrl-names = "default";
> + pinctrl-0 = <&wifi_host_wake_l>;
> + };
> };
>
> &sdhci {
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi
2025-07-29 19:10 ` Dragan Simic
@ 2025-07-29 19:24 ` Dragan Simic
2025-07-29 20:09 ` Peter Robinson
1 sibling, 0 replies; 5+ messages in thread
From: Dragan Simic @ 2025-07-29 19:24 UTC (permalink / raw)
To: Peter Robinson
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heiko Stuebner,
Geert Uytterhoeven, devicetree, linux-arm-kernel, linux-rockchip
On 2025-07-29 21:10, Dragan Simic wrote:
> Hello Peter,
Sorry, somehow I managed to forget suggesting that the patch
summary should be made a bit more self-descriptive. At the same
time, including "Pinebook Pro:" as one of the summary prefixes
isn't common, so perhaps this would be a good candidate for the
revised patch summary:
arm64: dts: rockchip: Describe WiFi wake-up pin for the Pinebook Pro
Obviously, this applies to your PinePhone Pro patch [1] as well.
As a nitpick, please note that the second "p" in "PinePhone" is
actually an uppercase "P".
[1]
https://lore.kernel.org/linux-rockchip/20250729190712.145817-1-pbrobinson@gmail.com/T/#u
> On 2025-07-29 20:58, Peter Robinson wrote:
>> Update the WiFi configuration to include the wake-up
>> pin and add an ethernet alias to allow assignment of
>> a mac-address from the firmware.
>>
>> Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
>> ---
>> .../boot/dts/rockchip/rk3399-pinebook-pro.dts | 19
>> +++++++++++++++++++
>> 1 file changed, 19 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> index 5a8551d9ffe47..05c48cb09df6f 100644
>> --- a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> +++ b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> @@ -19,6 +19,7 @@ / {
>> chassis-type = "laptop";
>>
>> aliases {
>> + ethernet0 = &brcmf;
>
> I'm sorry, but this alias isn't acceptable. In a few words, this
> simply isn't an Ethernet interface.
>
> We're already stretching a bit the dynamic nature of, well, everything
> with the aliases in the Rockchip DT files, and an alias like this one
> would be stretching the whole thing beyond the breaking point.
>
>> mmc0 = &sdio0;
>> mmc1 = &sdmmc;
>> mmc2 = &sdhci;
>> @@ -883,6 +884,12 @@ vcc5v0_host_en_pin: vcc5v0-host-en-pin {
>> };
>> };
>>
>> + wifi {
>> + wifi_host_wake_l: wifi-host-wake-l {
>> + rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
>> + };
>> + };
>> +
>> wireless-bluetooth {
>> bt_wake_pin: bt-wake-pin {
>> rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
>> @@ -940,7 +947,19 @@ &sdio0 {
>> pinctrl-names = "default";
>> pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
>> sd-uhs-sdr104;
>> + #address-cells = <1>;
>> + #size-cells = <0>;
>> status = "okay";
>> +
>> + brcmf: wifi@1 {
>> + reg = <1>;
>> + compatible = "brcm,bcm4329-fmac";
>> + interrupt-parent = <&gpio0>;
>> + interrupts = <RK_PA3 IRQ_TYPE_LEVEL_HIGH>;
>> + interrupt-names = "host-wake";
>> + pinctrl-names = "default";
>> + pinctrl-0 = <&wifi_host_wake_l>;
>> + };
>> };
>>
>> &sdhci {
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi
2025-07-29 19:10 ` Dragan Simic
2025-07-29 19:24 ` Dragan Simic
@ 2025-07-29 20:09 ` Peter Robinson
2025-07-29 20:44 ` Dragan Simic
1 sibling, 1 reply; 5+ messages in thread
From: Peter Robinson @ 2025-07-29 20:09 UTC (permalink / raw)
To: Dragan Simic
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heiko Stuebner,
Geert Uytterhoeven, devicetree, linux-arm-kernel, linux-rockchip
Hi Dragan,
> On 2025-07-29 20:58, Peter Robinson wrote:
> > Update the WiFi configuration to include the wake-up
> > pin and add an ethernet alias to allow assignment of
> > a mac-address from the firmware.
> >
> > Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
> > ---
> > .../boot/dts/rockchip/rk3399-pinebook-pro.dts | 19 +++++++++++++++++++
> > 1 file changed, 19 insertions(+)
> >
> > diff --git a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> > b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> > index 5a8551d9ffe47..05c48cb09df6f 100644
> > --- a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> > +++ b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
> > @@ -19,6 +19,7 @@ / {
> > chassis-type = "laptop";
> >
> > aliases {
> > + ethernet0 = &brcmf;
>
> I'm sorry, but this alias isn't acceptable. In a few words, this
> simply isn't an Ethernet interface.
Can you explain why? It's a wireless ethernet interface with a MAC
address, there's other example in the kernel doing this so there's
already a precedent, can you explain how else to do this or give me an
example?
> We're already stretching a bit the dynamic nature of, well, everything
> with the aliases in the Rockchip DT files, and an alias like this one
> would be stretching the whole thing beyond the breaking point.
Why? If you look through DT outside of rockchip there's even more
stretching and I don't see how using this goes beyond breaking, I
think this is a bit of an exaggeration. Rather than saying no how
about explaining an alternative solution?
> > mmc0 = &sdio0;
> > mmc1 = &sdmmc;
> > mmc2 = &sdhci;
> > @@ -883,6 +884,12 @@ vcc5v0_host_en_pin: vcc5v0-host-en-pin {
> > };
> > };
> >
> > + wifi {
> > + wifi_host_wake_l: wifi-host-wake-l {
> > + rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
> > + };
> > + };
> > +
> > wireless-bluetooth {
> > bt_wake_pin: bt-wake-pin {
> > rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
> > @@ -940,7 +947,19 @@ &sdio0 {
> > pinctrl-names = "default";
> > pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
> > sd-uhs-sdr104;
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > status = "okay";
> > +
> > + brcmf: wifi@1 {
> > + reg = <1>;
> > + compatible = "brcm,bcm4329-fmac";
> > + interrupt-parent = <&gpio0>;
> > + interrupts = <RK_PA3 IRQ_TYPE_LEVEL_HIGH>;
> > + interrupt-names = "host-wake";
> > + pinctrl-names = "default";
> > + pinctrl-0 = <&wifi_host_wake_l>;
> > + };
> > };
> >
> > &sdhci {
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi
2025-07-29 20:09 ` Peter Robinson
@ 2025-07-29 20:44 ` Dragan Simic
0 siblings, 0 replies; 5+ messages in thread
From: Dragan Simic @ 2025-07-29 20:44 UTC (permalink / raw)
To: Peter Robinson
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Heiko Stuebner,
Geert Uytterhoeven, devicetree, linux-arm-kernel, linux-rockchip
Hello Peter,
On 2025-07-29 22:09, Peter Robinson wrote:
>> On 2025-07-29 20:58, Peter Robinson wrote:
>> > Update the WiFi configuration to include the wake-up
>> > pin and add an ethernet alias to allow assignment of
>> > a mac-address from the firmware.
>> >
>> > Signed-off-by: Peter Robinson <pbrobinson@gmail.com>
>> > ---
>> > .../boot/dts/rockchip/rk3399-pinebook-pro.dts | 19 +++++++++++++++++++
>> > 1 file changed, 19 insertions(+)
>> >
>> > diff --git a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> > b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> > index 5a8551d9ffe47..05c48cb09df6f 100644
>> > --- a/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> > +++ b/arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
>> > @@ -19,6 +19,7 @@ / {
>> > chassis-type = "laptop";
>> >
>> > aliases {
>> > + ethernet0 = &brcmf;
>>
>> I'm sorry, but this alias isn't acceptable. In a few words, this
>> simply isn't an Ethernet interface.
>
> Can you explain why? It's a wireless ethernet interface with a MAC
> address, there's other example in the kernel doing this so there's
> already a precedent, can you explain how else to do this or give me an
> example?
Strictly speaking, there's no such thing as Wireless Ethernet
interface. Yes, WiFi interfaces do produce frames that, from the
drivers' perspective, look very much like wired Ethernet frames,
but WiFi technically isn't just "Ethernet over radio waves". Truth
be told, WiFi used to be called that in its early days, perhaps
to make it more appealing, but the distinction became clear rather
soon. It's somewhat similar to how tunneling protocols may produce
Ethernet frames, but they're still called tunnel interfaces.
I'm not aware of an already existing example of a WiFi interface
that's aliased as ethernetX. Could you, please, be more precise?
Anyway, the correct way should be to use a wifi0 alias here, which
is already used in a few places in arch/arm64/boot/dts/qcom, for
example. I'm not sure will a wifi0 alias work "automagically", but
if there are some issues preventing it from working as expected,
fixing those issues would be the right thing to do.
>> We're already stretching a bit the dynamic nature of, well, everything
>> with the aliases in the Rockchip DT files, and an alias like this one
>> would be stretching the whole thing beyond the breaking point.
>
> Why? If you look through DT outside of rockchip there's even more
> stretching and I don't see how using this goes beyond breaking, I
> think this is a bit of an exaggeration. Rather than saying no how
> about explaining an alternative solution?
Sorry, I wasn't clear enough in this part of my response. To clarify
it a bit, I referred to stretching it beyond breaking by adding a
technically incorrect alias.
Please see above for a technically correct alternative approach.
>> > mmc0 = &sdio0;
>> > mmc1 = &sdmmc;
>> > mmc2 = &sdhci;
>> > @@ -883,6 +884,12 @@ vcc5v0_host_en_pin: vcc5v0-host-en-pin {
>> > };
>> > };
>> >
>> > + wifi {
>> > + wifi_host_wake_l: wifi-host-wake-l {
>> > + rockchip,pins = <0 RK_PA3 RK_FUNC_GPIO &pcfg_pull_none>;
>> > + };
>> > + };
>> > +
>> > wireless-bluetooth {
>> > bt_wake_pin: bt-wake-pin {
>> > rockchip,pins = <2 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
>> > @@ -940,7 +947,19 @@ &sdio0 {
>> > pinctrl-names = "default";
>> > pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk>;
>> > sd-uhs-sdr104;
>> > + #address-cells = <1>;
>> > + #size-cells = <0>;
>> > status = "okay";
>> > +
>> > + brcmf: wifi@1 {
>> > + reg = <1>;
>> > + compatible = "brcm,bcm4329-fmac";
>> > + interrupt-parent = <&gpio0>;
>> > + interrupts = <RK_PA3 IRQ_TYPE_LEVEL_HIGH>;
>> > + interrupt-names = "host-wake";
>> > + pinctrl-names = "default";
>> > + pinctrl-0 = <&wifi_host_wake_l>;
>> > + };
>> > };
>> >
>> > &sdhci {
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-07-29 20:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-29 18:58 [PATCH] arm64: dts: rockchip: Pinebook Pro: Update WiFi Peter Robinson
2025-07-29 19:10 ` Dragan Simic
2025-07-29 19:24 ` Dragan Simic
2025-07-29 20:09 ` Peter Robinson
2025-07-29 20:44 ` Dragan Simic
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox