* [PATCH 0/2] add the Amlogic Meson PCIe phy driver. @ 2018-08-14 6:12 Hanjie Lin 2018-08-14 6:12 ` [PATCH 1/2] dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller Hanjie Lin 0 siblings, 1 reply; 4+ messages in thread From: Hanjie Lin @ 2018-08-14 6:12 UTC (permalink / raw) To: Kishon Vijay Abraham I Cc: Rob Herring, Hanjie Lin, devicetree, Kevin Hilman, shawn.lin, linux-kernel, linux-pci, Carlo Caione, linux-amlogic, linux-arm-kernel This patcheset add the driver and dt-bindings for the Meson-PCIE-PHY controller. Yue Wang (2): dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller PCI: meson: add the Amlogic Meson PCIe phy driver .../bindings/phy/amlogic,meson-pcie-phy.txt | 31 ++++ drivers/phy/amlogic/Kconfig | 8 ++ drivers/phy/amlogic/Makefile | 1 + drivers/phy/amlogic/phy-meson-axg-pcie.c | 160 +++++++++++++++++++++ 4 files changed, 200 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt create mode 100644 drivers/phy/amlogic/phy-meson-axg-pcie.c -- 2.7.4 ^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller 2018-08-14 6:12 [PATCH 0/2] add the Amlogic Meson PCIe phy driver Hanjie Lin @ 2018-08-14 6:12 ` Hanjie Lin 2018-08-14 22:50 ` Rob Herring 0 siblings, 1 reply; 4+ messages in thread From: Hanjie Lin @ 2018-08-14 6:12 UTC (permalink / raw) To: Kishon Vijay Abraham I Cc: Yue Wang, Hanjie Lin, linux-kernel, linux-amlogic, linux-pci, linux-arm-kernel, Kevin Hilman, Carlo Caione, Rob Herring, shawn.lin, devicetree From: Yue Wang <yue.wang@amlogic.com> The Meson-PCIE-PHY controller supports the 5-Gbps data rate of the PCI Express Gen 2 specification and is backwardcompatible with the 2.5-Gbps Gen 1.1 specification with only inferred idle detection supported on AMLOGIC SoCs. Signed-off-by: Hanjie Lin <hanjie.lin@amlogic.com> Signed-off-by: Yue Wang <yue.wang@amlogic.com> --- .../bindings/phy/amlogic,meson-pcie-phy.txt | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt diff --git a/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt b/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt new file mode 100644 index 0000000..db99085 --- /dev/null +++ b/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt @@ -0,0 +1,31 @@ +* Amlogic Meson AXG PCIE PHY binding + +Required properties: +- compatible: Should be + - "amlogic,axg-pcie-phy" +- #phys-cells: must be 0 (see phy-bindings.txt in this directory) +- reg: The base address and length of the registers +- resets: phandle to the reset lines +- reset-names: must contain "phy" and "peripheral" + - "port_a" Port A reset + - "port_b" Port B reset + - "phy" PHY reset + - "apb" APB reset +Optional properties: +- phy-supply: see phy-bindings.txt in this directory + +Example: + pcie_phy: pcie-phy@ff644000 { + #phy-cells = <0>; + compatible = "amlogic,axg-pcie-phy"; + reg = <0x0 0xff644000 0x0 0x2000>; + resets = <&reset RESET_PCIE_A>, + <&reset RESET_PCIE_B>, + <&reset RESET_PCIE_PHY>, + <&reset RESET_PCIE_APB>; + reset-names = + "port_a", + "port_b", + "phy", + "apb"; + }; -- 2.7.4 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller 2018-08-14 6:12 ` [PATCH 1/2] dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller Hanjie Lin @ 2018-08-14 22:50 ` Rob Herring 2018-08-16 3:01 ` Hanjie Lin 0 siblings, 1 reply; 4+ messages in thread From: Rob Herring @ 2018-08-14 22:50 UTC (permalink / raw) To: Hanjie Lin Cc: Kishon Vijay Abraham I, Yue Wang, linux-kernel, linux-amlogic, linux-pci, linux-arm-kernel, Kevin Hilman, Carlo Caione, shawn.lin, devicetree On Tue, Aug 14, 2018 at 02:12:13AM -0400, Hanjie Lin wrote: > From: Yue Wang <yue.wang@amlogic.com> Subject should be "dt-bindings: phy: ..." > The Meson-PCIE-PHY controller supports the 5-Gbps data rate > of the PCI Express Gen 2 specification and is backwardcompatible space ^ > with the 2.5-Gbps Gen 1.1 specification with only > inferred idle detection supported on AMLOGIC SoCs. AMLOGIC or Amlogic? > > Signed-off-by: Hanjie Lin <hanjie.lin@amlogic.com> > Signed-off-by: Yue Wang <yue.wang@amlogic.com> > --- > .../bindings/phy/amlogic,meson-pcie-phy.txt | 31 ++++++++++++++++++++++ > 1 file changed, 31 insertions(+) > create mode 100644 Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt > > diff --git a/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt b/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt > new file mode 100644 > index 0000000..db99085 > --- /dev/null > +++ b/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt > @@ -0,0 +1,31 @@ > +* Amlogic Meson AXG PCIE PHY binding > + > +Required properties: > +- compatible: Should be > + - "amlogic,axg-pcie-phy" > +- #phys-cells: must be 0 (see phy-bindings.txt in this directory) You don't need to distinguish port A and B? > +- reg: The base address and length of the registers > +- resets: phandle to the reset lines > +- reset-names: must contain "phy" and "peripheral" > + - "port_a" Port A reset > + - "port_b" Port B reset > + - "phy" PHY reset > + - "apb" APB reset > +Optional properties: > +- phy-supply: see phy-bindings.txt in this directory > + > +Example: > + pcie_phy: pcie-phy@ff644000 { > + #phy-cells = <0>; > + compatible = "amlogic,axg-pcie-phy"; > + reg = <0x0 0xff644000 0x0 0x2000>; > + resets = <&reset RESET_PCIE_A>, > + <&reset RESET_PCIE_B>, > + <&reset RESET_PCIE_PHY>, > + <&reset RESET_PCIE_APB>; > + reset-names = > + "port_a", > + "port_b", > + "phy", > + "apb"; > + }; > -- > 2.7.4 > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller 2018-08-14 22:50 ` Rob Herring @ 2018-08-16 3:01 ` Hanjie Lin 0 siblings, 0 replies; 4+ messages in thread From: Hanjie Lin @ 2018-08-16 3:01 UTC (permalink / raw) To: Rob Herring Cc: Kishon Vijay Abraham I, Yue Wang, linux-kernel, linux-amlogic, linux-pci, linux-arm-kernel, Kevin Hilman, Carlo Caione, shawn.lin, devicetree On 2018/8/15 6:50, Rob Herring wrote: > On Tue, Aug 14, 2018 at 02:12:13AM -0400, Hanjie Lin wrote: >> From: Yue Wang <yue.wang@amlogic.com> > > Subject should be "dt-bindings: phy: ..." > >> The Meson-PCIE-PHY controller supports the 5-Gbps data rate >> of the PCI Express Gen 2 specification and is backwardcompatible > > space yes, I will fix ^ > >> with the 2.5-Gbps Gen 1.1 specification with only >> inferred idle detection supported on AMLOGIC SoCs. > > AMLOGIC or Amlogic? > yes, we will stick to 'Amlogic' >> >> Signed-off-by: Hanjie Lin <hanjie.lin@amlogic.com> >> Signed-off-by: Yue Wang <yue.wang@amlogic.com> >> --- >> .../bindings/phy/amlogic,meson-pcie-phy.txt | 31 ++++++++++++++++++++++ >> 1 file changed, 31 insertions(+) >> create mode 100644 Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt >> >> diff --git a/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt b/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt >> new file mode 100644 >> index 0000000..db99085 >> --- /dev/null >> +++ b/Documentation/devicetree/bindings/phy/amlogic,meson-pcie-phy.txt >> @@ -0,0 +1,31 @@ >> +* Amlogic Meson AXG PCIE PHY binding >> + >> +Required properties: >> +- compatible: Should be >> + - "amlogic,axg-pcie-phy" >> +- #phys-cells: must be 0 (see phy-bindings.txt in this directory) > > You don't need to distinguish port A and B? No, we don't. Theoretically there is only one phy in the chip, and we have distinguished ports by reset lines. Thanks for all corrections and suggestions. > >> +- reg: The base address and length of the registers >> +- resets: phandle to the reset lines >> +- reset-names: must contain "phy" and "peripheral" >> + - "port_a" Port A reset >> + - "port_b" Port B reset >> + - "phy" PHY reset >> + - "apb" APB reset >> +Optional properties: >> +- phy-supply: see phy-bindings.txt in this directory >> + >> +Example: >> + pcie_phy: pcie-phy@ff644000 { >> + #phy-cells = <0>; >> + compatible = "amlogic,axg-pcie-phy"; >> + reg = <0x0 0xff644000 0x0 0x2000>; >> + resets = <&reset RESET_PCIE_A>, >> + <&reset RESET_PCIE_B>, >> + <&reset RESET_PCIE_PHY>, >> + <&reset RESET_PCIE_APB>; >> + reset-names = >> + "port_a", >> + "port_b", >> + "phy", >> + "apb"; >> + }; >> -- >> 2.7.4 >> > > . > ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-08-16 3:01 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-08-14 6:12 [PATCH 0/2] add the Amlogic Meson PCIe phy driver Hanjie Lin 2018-08-14 6:12 ` [PATCH 1/2] dt-bindings: PCI: meson: add DT bindings for Amlogic Meson PCIe Phy controller Hanjie Lin 2018-08-14 22:50 ` Rob Herring 2018-08-16 3:01 ` Hanjie Lin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).