mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 18:28:55 +00:00
3789b6a92f
Commit0934dddc64
("arm: a37xx: Update DTS files to version from upstream Linux kernel") ported Linux's device-tree files for Armada 3720 SOCs. This broke USB port on Turris MOX, because in Linux' DTS the bus voltage supply is described as a `phy-supply` property of connector node, a mechanism that is not supported in U-Boot yet. For now, fix this by adding `vbus-supply` to usb3 node. Fixes:0934dddc64
("arm: a37xx: Update DTS files to version from upstream Linux kernel") Signed-off-by: Marek Behún <marek.behun@nic.cz> Reviewed-by: Stefan Roese <sr@denx.de>
27 lines
397 B
Text
27 lines
397 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* 2022 by Marek Behún <kabel@kernel.org>
|
|
*/
|
|
|
|
/ {
|
|
mdio {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
old_binding_phy1: ethernet-phy@1 {
|
|
reg = <1>;
|
|
};
|
|
};
|
|
};
|
|
|
|
ð0 {
|
|
pinctrl-0 = <&rgmii_pins>, <&smi_pins>;
|
|
/delete-property/ phy-handle;
|
|
phy = <&old_binding_phy1>;
|
|
};
|
|
|
|
/delete-node/ &mdio;
|
|
|
|
&usb3 {
|
|
vbus-supply = <&exp_usb3_vbus>;
|
|
};
|