1# Copyright (c) 2023 Analog Devices Inc. 2# SPDX-License-Identifier: Apache-2.0 3 4description: | 5 ADIN1110 standalone 10BASE-T1L Ethernet controller with SPI interface. 6 7 An example: 8 9 adin1110: adin1110@0 { 10 compatible = "adi,adin1110"; 11 reg = <0x0>; 12 spi-max-frequency = <25000000>; 13 int-gpios = <&gpioe 12 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; 14 reset-gpios = <&gpioe 8 GPIO_ACTIVE_LOW>; 15 port1 { 16 local-mac-address = [ CA 2F B7 10 23 63 ]; 17 }; 18 mdio: mdio { 19 compatible = "adi,adin2111-mdio"; 20 status = "okay"; 21 #address-cells = <1>; 22 #size-cells = <0>; 23 ethernet-phy@1 { 24 reg = <0x1>; 25 compatible = "adi,adin2111-phy"; 26 status = "okay"; 27 }; 28 }; 29 }; 30 31compatible: "adi,adin1110" 32 33include: adi,adin2111.yaml 34