diff options
| author | INAGAKI Hiroshi | 2024-06-27 06:51:34 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-10-19 15:56:46 +0000 |
| commit | bffa206fd34cce7de31ddf2b8d997c2e42b83614 (patch) | |
| tree | 1ce0d77c3d2037af376d3c103eaca6d3b5762508 | |
| parent | 1043aa8ac29bdb4f88458031e873b793c80258a3 (diff) | |
| download | openwrt-bffa206fd34cce7de31ddf2b8d997c2e42b83614.tar.gz | |
ath79: add missing usb-phy-analog reset to usb phys for QCA955x
Add missing reset bits of USB phys on QCA955x SoCs to qca955x.dtsi to
handle them.
Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16297
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ath79/dts/qca955x.dtsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/ath79/dts/qca955x.dtsi b/target/linux/ath79/dts/qca955x.dtsi index c6cf83d4da..f8318b8f65 100644 --- a/target/linux/ath79/dts/qca955x.dtsi +++ b/target/linux/ath79/dts/qca955x.dtsi @@ -64,8 +64,8 @@ compatible ="qca,qca9550-usb-phy", "qca,ar7200-usb-phy"; reg = <0x18030000 4>, <0x18030004 4>; - reset-names = "usb-phy", "usb-suspend-override"; - resets = <&rst 4>, <&rst 3>; + reset-names = "usb-phy-analog", "usb-phy", "usb-suspend-override"; + resets = <&rst 11>, <&rst 4>, <&rst 3>; #phy-cells = <0>; @@ -76,8 +76,8 @@ compatible = "qca,qca9550-usb-phy", "qca,ar7200-usb-phy"; reg = <0x18030010 4>, <0x18030014 4>; - reset-names = "usb-phy", "usb-suspend-override"; - resets = <&rst2 4>, <&rst2 3>; + reset-names = "usb-phy-analog", "usb-phy", "usb-suspend-override"; + resets = <&rst2 11>, <&rst2 4>, <&rst2 3>; #phy-cells = <0>; |