hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
* Broadcom NS2 PCIe PHY binding document
 
Required bus properties:
- reg: MDIO Bus number for the MDIO interface
- #address-cells: must be 1
- #size-cells: must be 0
 
Required PHY properties:
- compatible: should be "brcm,ns2-pcie-phy"
- reg: MDIO Phy ID for the MDIO interface
- #phy-cells: must be 0
 
This is a child bus node of "brcm,mdio-mux-iproc" node.
 
Example:
 
mdio@0 {
   reg = <0x0>;
   #address-cells = <1>;
   #size-cells = <0>;
 
   pci_phy0: pci-phy@0 {
       compatible = "brcm,ns2-pcie-phy";
       reg = <0x0>;
       #phy-cells = <0>;
   };
};