staging: mt7621-dts: add pci-phy related bindings to board's device tree
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Fri, 4 Jan 2019 07:08:23 +0000 (08:08 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Jan 2019 10:28:14 +0000 (11:28 +0100)
New driver for pci phy has been added, as well as. pci driver has been
changed to use kernel's generic PHY API. Add related PCI PHY bindings
accordly.

Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt7621-dts/mt7621.dtsi

index 1cec0879e825e26cca6a8bfbb3eaa37ab3c4e942..f0c51622eca12c3f19f0d324d287a63bf77ee5bc 100644 (file)
                reset-names = "pcie0", "pcie1", "pcie2";
                clocks = <&clkctrl 24 &clkctrl 25 &clkctrl 26>;
                clock-names = "pcie0", "pcie1", "pcie2";
+               phys = <&pcie0_port>, <&pcie1_port>, <&pcie2_port>;
+               phy-names = "pcie-phy0", "pcie-phy1", "pcie-phy2";
 
                pcie@0,0 {
                        reg = <0x0000 0 0 0 0>;
                        bus-range = <0x00 0xff>;
                };
        };
+
+       pcie0_phy: pcie-phy@1a149000 {
+               compatible = "mediatek,mt7621-pci-phy";
+               reg = <0x1a149000 0x0700>;
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               pcie0_port: pcie-phy@0 {
+                       reg = <0>;
+                       #phy-cells = <0>;
+               };
+
+               pcie1_port: pcie-phy@1 {
+                       reg = <1>;
+                       #phy-cells = <0>;
+               };
+       };
+
+       pcie1_phy: pcie-phy@1a14a000 {
+               compatible = "mediatek,mt7621-pci-phy";
+               reg = <0x1a14a000 0x0700>;
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               pcie2_port: pcie-phy@0 {
+                       reg = <0>;
+                       #phy-cells = <0>;
+               };
+       };
 };