Harald Seiler | 15df6b3 | 2020-04-15 20:04:53 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: (GPL-2.0+) |
2 | /* | ||||
3 | * Copyright (C) 2020 Harald Seiler <hws@denx.de> | ||||
4 | */ | ||||
5 | |||||
6 | / { | ||||
7 | fec_vio: regulator-fec { | ||||
8 | compatible = "regulator-fixed"; | ||||
9 | |||||
10 | regulator-name = "fec-vio"; | ||||
11 | gpio = <&gpio1 7 GPIO_ACTIVE_LOW>; | ||||
12 | }; | ||||
13 | }; | ||||
14 | |||||
15 | &fec { | ||||
16 | phy-reset-gpios = <&gpio5 0 GPIO_ACTIVE_LOW>; | ||||
17 | phy-reset-duration = <1>; | ||||
18 | phy-reset-post-delay = <10>; | ||||
19 | |||||
20 | phy-supply = <&fec_vio>; | ||||
21 | }; |