Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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