1# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2# Copyright 2018 Linaro Ltd. 3%YAML 1.2 4--- 5$id: "http://devicetree.org/schemas/net/intel,ixp4xx-ethernet.yaml#" 6$schema: "http://devicetree.org/meta-schemas/core.yaml#" 7 8title: Intel IXP4xx ethernet 9 10allOf: 11 - $ref: "ethernet-controller.yaml#" 12 13maintainers: 14 - Linus Walleij <linus.walleij@linaro.org> 15 16description: | 17 The Intel IXP4xx ethernet makes use of the IXP4xx NPE (Network 18 Processing Engine) and the IXP4xx Queue Manager to process 19 the ethernet frames. It can optionally contain an MDIO bus to 20 talk to PHYs. 21 22properties: 23 compatible: 24 const: intel,ixp4xx-ethernet 25 26 reg: 27 maxItems: 1 28 description: Ethernet MMIO address range 29 30 queue-rx: 31 $ref: '/schemas/types.yaml#/definitions/phandle-array' 32 maxItems: 1 33 description: phandle to the RX queue on the NPE 34 35 queue-txready: 36 $ref: '/schemas/types.yaml#/definitions/phandle-array' 37 maxItems: 1 38 description: phandle to the TX READY queue on the NPE 39 40 phy-mode: true 41 42 phy-handle: true 43 44 intel,npe-handle: 45 $ref: '/schemas/types.yaml#/definitions/phandle-array' 46 maxItems: 1 47 description: phandle to the NPE this ethernet instance is using 48 and the instance to use in the second cell 49 50 mdio: 51 type: object 52 $ref: "mdio.yaml#" 53 description: optional node for embedded MDIO controller 54 55required: 56 - compatible 57 - reg 58 - queue-rx 59 - queue-txready 60 - intel,npe-handle 61 62additionalProperties: false 63 64examples: 65 - | 66 npe: npe@c8006000 { 67 compatible = "intel,ixp4xx-network-processing-engine"; 68 reg = <0xc8006000 0x1000>, <0xc8007000 0x1000>, <0xc8008000 0x1000>; 69 }; 70 71 ethernet@c8009000 { 72 compatible = "intel,ixp4xx-ethernet"; 73 reg = <0xc8009000 0x1000>; 74 status = "disabled"; 75 queue-rx = <&qmgr 4>; 76 queue-txready = <&qmgr 21>; 77 intel,npe-handle = <&npe 1>; 78 phy-mode = "rgmii"; 79 phy-handle = <&phy1>; 80 }; 81 82 ethernet@c800c000 { 83 compatible = "intel,ixp4xx-ethernet"; 84 reg = <0xc800c000 0x1000>; 85 status = "disabled"; 86 queue-rx = <&qmgr 3>; 87 queue-txready = <&qmgr 20>; 88 intel,npe-handle = <&npe 2>; 89 phy-mode = "rgmii"; 90 phy-handle = <&phy2>; 91 92 mdio { 93 #address-cells = <1>; 94 #size-cells = <0>; 95 phy1: ethernet-phy@1 { 96 reg = <1>; 97 }; 98 phy2: ethernet-phy@2 { 99 reg = <2>; 100 }; 101 }; 102 }; 103