0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/phy/brcm,ns2-pcie-phy.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: Broadcom NS2 PCIe PHY binding document
0008
0009 maintainers:
0010 - Ray Jui <ray.jui@broadcom.com>
0011 - Scott Branden <scott.branden@broadcom.com>
0012
0013 properties:
0014 compatible:
0015 const: brcm,ns2-pcie-phy
0016
0017 reg:
0018 maxItems: 1
0019
0020 "#phy-cells":
0021 const: 0
0022
0023 required:
0024 - compatible
0025 - reg
0026 - "#phy-cells"
0027
0028 additionalProperties: false
0029
0030 examples:
0031 - |
0032 mdio {
0033 #address-cells = <1>;
0034 #size-cells = <0>;
0035
0036 pci-phy@0 {
0037 compatible = "brcm,ns2-pcie-phy";
0038 reg = <0x0>;
0039 #phy-cells = <0>;
0040 };
0041 };