mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
dcb59a1306
Firstly the FEC can now use the regulator reg_eth_vio from imx6qdl-dhcom-som.dtsi instead of defining its own. Secondly the &fec node is moved to the more generic SoM device tree file, because it can be used by multiple boards. Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Philip Oberfichtner <pro@denx.de>
27 lines
416 B
Text
27 lines
416 B
Text
// SPDX-License-Identifier: (GPL-2.0+)
|
|
/*
|
|
* Copyright (C) 2020 Harald Seiler <hws@denx.de>
|
|
* Copyright (C) 2022 Philip Oberfichtner <pro@denx.de>
|
|
*/
|
|
|
|
/ {
|
|
aliases {
|
|
eeprom0 = &eeprom0;
|
|
};
|
|
};
|
|
|
|
&fec {
|
|
phy-reset-duration = <1>;
|
|
phy-reset-post-delay = <10>;
|
|
phy-supply = <®_eth_vio>;
|
|
};
|
|
|
|
&i2c3 {
|
|
eeprom0: eeprom@50 {
|
|
};
|
|
};
|
|
|
|
®_usb_otg_vbus {
|
|
gpio = <&gpio3 31 GPIO_ACTIVE_HIGH>;
|
|
enable-active-high;
|
|
};
|