# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/net/fsl,enetc.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: The NIC functionality of NXP NETC description: The NIC functionality in NETC is known as EtherNET Controller (ENETC). ENETC supports virtualization/isolation based on PCIe Single Root IO Virtualization (SR-IOV), advanced QoS with 8 traffic classes and 4 drop resilience levels, and a full range of TSN standards and NIC offload capabilities maintainers: - Frank Li - Vladimir Oltean - Wei Fang - Claudiu Manoil properties: compatible: items: - enum: - pci1957,e100 - const: fsl,enetc reg: maxItems: 1 mdio: $ref: mdio.yaml unevaluatedProperties: false description: Optional child node for ENETC instance, otherwise use NETC EMDIO. required: - compatible - reg allOf: - $ref: /schemas/pci/pci-device.yaml - $ref: ethernet-controller.yaml unevaluatedProperties: false examples: - | pcie { #address-cells = <3>; #size-cells = <2>; ethernet@0,0 { compatible = "pci1957,e100", "fsl,enetc"; reg = <0x000000 0 0 0 0>; phy-handle = <&sgmii_phy0>; phy-connection-type = "sgmii"; mdio { #address-cells = <1>; #size-cells = <0>; phy@2 { reg = <0x2>; }; }; }; };