1// SPDX-License-Identifier: (GPL-2.0+)
2/*
3 * Copyright (C) 2020 Harald Seiler <hws@denx.de>
4 */
5
6#include "imx6qdl-dhcom-u-boot.dtsi"
7
8/ {
9	fec_vio: regulator-fec {
10		compatible = "regulator-fixed";
11
12		regulator-name = "fec-vio";
13		gpio = <&gpio1 7 GPIO_ACTIVE_LOW>;
14	};
15};
16
17&fec {
18	phy-reset-gpios = <&gpio5 0 GPIO_ACTIVE_LOW>;
19	phy-reset-duration = <1>;
20	phy-reset-post-delay = <10>;
21
22	phy-supply = <&fec_vio>;
23};
24