Skip to content

Commit ebceec2

Browse files
nixyogimmind
authored andcommitted
arm64: dts: rockchip: Fix Wifi/Bluetooth on ROCK Pi 4 boards
This patch fixes an issue affecting the Wifi/Bluetooth connectivity on ROCK Pi 4 boards. Commit f471b1b ("arm64: dts: rockchip: Fix Bluetooth on ROCK Pi 4 boards") introduced a problem with the clock configuration. Specifically, the clock-names property of the sdio-pwrseq node was not updated to 'lpo', causing the driver to wait indefinitely for the wrong clock signal 'ext_clock' instead of the expected one 'lpo'. This prevented the proper initialization of Wifi/Bluetooth chip on ROCK Pi 4 boards. To address this, this patch updates the clock-names property of the sdio-pwrseq node to "lpo" to align with the changes made to the bluetooth node. This patch has been tested on ROCK Pi 4B. Fixes: f471b1b ("arm64: dts: rockchip: Fix Bluetooth on ROCK Pi 4 boards") Cc: [email protected] Signed-off-by: Yogesh Hegde <[email protected]> Link: https://lore.kernel.org/r/ZLbATQRjOl09aLAp@zephyrusG14 Signed-off-by: Heiko Stuebner <[email protected]>
1 parent f99a75f commit ebceec2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
sdio_pwrseq: sdio-pwrseq {
4646
compatible = "mmc-pwrseq-simple";
4747
clocks = <&rk808 1>;
48-
clock-names = "ext_clock";
48+
clock-names = "lpo";
4949
pinctrl-names = "default";
5050
pinctrl-0 = <&wifi_enable_h>;
5151
reset-gpios = <&gpio0 RK_PB2 GPIO_ACTIVE_LOW>;

0 commit comments

Comments
 (0)