From: Rob Herring <robh@kernel.org>
To: Richard Zhu <hongxing.zhu@nxp.com>
Cc: l.stach@pengutronix.de, marcel.ziswiler@toradex.com,
tharvey@gateworks.com, kishon@ti.com, vkoul@kernel.org,
galak@kernel.crashing.org, shawnguo@kernel.org,
linux-phy@lists.infradead.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, kernel@pengutronix.de,
linux-imx@nxp.com
Subject: Re: [PATCH v5 2/8] dt-bindings: phy: Add imx8 pcie phy driver support
Date: Tue, 2 Nov 2021 11:40:42 -0500 [thread overview]
Message-ID: <YYFqCptm9m7Onbrv@robh.at.kernel.org> (raw)
In-Reply-To: <1635820355-27009-3-git-send-email-hongxing.zhu@nxp.com>
On Tue, Nov 02, 2021 at 10:32:29AM +0800, Richard Zhu wrote:
> Add dt-binding for the standalone i.MX8 PCIe PHY driver.
>
> Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com>
> Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> Reviewed-by: Tim Harvey <tharvey@gateworks.com>
> Tested-by: Tim Harvey <tharvey@gateworks.com>
> ---
> .../bindings/phy/fsl,imx8-pcie-phy.yaml | 95 +++++++++++++++++++
> 1 file changed, 95 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/phy/fsl,imx8-pcie-phy.yaml
>
> diff --git a/Documentation/devicetree/bindings/phy/fsl,imx8-pcie-phy.yaml b/Documentation/devicetree/bindings/phy/fsl,imx8-pcie-phy.yaml
> new file mode 100644
> index 000000000000..b9f89e343b0b
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/phy/fsl,imx8-pcie-phy.yaml
> @@ -0,0 +1,95 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/phy/fsl,imx8-pcie-phy.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Freescale i.MX8 SoC series PCIe PHY Device Tree Bindings
> +
> +maintainers:
> + - Richard Zhu <hongxing.zhu@nxp.com>
> +
> +properties:
> + "#phy-cells":
> + const: 0
> +
> + compatible:
> + enum:
> + - fsl,imx8mm-pcie-phy
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + items:
> + - description: PHY module clock
The description doesn't really add much. Just 'maxItems: 1'.
> +
> + clock-names:
> + items:
> + - const: ref
> +
> + resets:
> + items:
> + - description: Phandles to PCIe-related reset lines exposed by SRC
> + IP block.
More than 1 phandle? The schema says only 1. Again, for only 1, you can
use just 'maxItems: 1'.
> +
> + reset-names:
> + items:
> + - const: pciephy
> +
> + fsl,refclk-pad-mode:
> + description: |
> + Specifies the mode of the refclk pad used. It can be UNUSED(PHY
> + refclock is derived from SoC internal source), INPUT(PHY refclock
> + is provided externally via the refclk pad) or OUTPUT(PHY refclock
> + is derived from SoC internal source and provided on the refclk pad).
> + Refer include/dt-bindings/phy/phy-imx8-pcie.h for the constants
> + to be used.
> + $ref: /schemas/types.yaml#/definitions/uint32
> + enum: [ 0, 1, 2 ]
> +
> + fsl,tx-deemph-gen1:
> + description: Gen1 De-emphasis value (optional required).
Optional or required?
> + $ref: /schemas/types.yaml#/definitions/uint32
> + default: 0
> +
> + fsl,tx-deemph-gen2:
> + description: Gen2 De-emphasis value (optional required).
> + $ref: /schemas/types.yaml#/definitions/uint32
> + default: 0
> +
> + fsl,clkreq-unsupported:
> + type: boolean
> + description: A boolean property indicating the CLKREQ# signal is
> + not supported in the board design (optional)
> +
> +required:
> + - "#phy-cells"
> + - compatible
> + - reg
> + - clocks
> + - clock-names
> + - fsl,refclk-pad-mode
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/imx8mm-clock.h>
> + #include <dt-bindings/phy/phy-imx8-pcie.h>
> + #include <dt-bindings/reset/imx8mq-reset.h>
> +
> + pcie_phy: pcie-phy@32f00000 {
> + compatible = "fsl,imx8mm-pcie-phy";
> + reg = <0x32f00000 0x10000>;
> + clocks = <&clk IMX8MM_CLK_PCIE1_PHY>;
> + clock-names = "ref";
> + assigned-clocks = <&clk IMX8MM_CLK_PCIE1_PHY>;
> + assigned-clock-rates = <100000000>;
> + assigned-clock-parents = <&clk IMX8MM_SYS_PLL2_100M>;
> + resets = <&src IMX8MQ_RESET_PCIEPHY>;
> + reset-names = "pciephy";
> + fsl,refclk-pad-mode = <IMX8_PCIE_REFCLK_PAD_INPUT>;
> + #phy-cells = <0>;
> + };
> +...
> --
> 2.25.1
>
>
next prev parent reply other threads:[~2021-11-02 16:40 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-02 2:32 [PATCH v5 0/8] Add the imx8m pcie phy driver and imx8mm pcie support Richard Zhu
2021-11-02 2:32 ` [PATCH v5 1/8] dt-bindings: phy: phy-imx8-pcie: Add binding for the pad modes of imx8 pcie phy Richard Zhu
2021-11-02 16:36 ` Rob Herring
2021-11-02 2:32 ` [PATCH v5 2/8] dt-bindings: phy: Add imx8 pcie phy driver support Richard Zhu
2021-11-02 16:40 ` Rob Herring [this message]
2021-11-03 2:07 ` Richard Zhu
2021-11-02 2:32 ` [PATCH v5 3/8] dt-bindings: imx6q-pcie: Add PHY phandles and name properties Richard Zhu
2021-11-02 16:41 ` Rob Herring
2021-11-02 2:32 ` [PATCH v5 4/8] arm64: dts: imx8mm: Add the pcie phy support Richard Zhu
2021-11-02 2:32 ` [PATCH v5 5/8] phy: freescale: pcie: Initialize the imx8 pcie standalone phy driver Richard Zhu
2021-11-02 2:32 ` [PATCH v5 6/8] arm64: dts: imx8mm: Add the pcie support Richard Zhu
2021-11-02 2:32 ` [PATCH v5 7/8] arm64: dts: imx8mm-evk: Add the pcie support on imx8mm evk board Richard Zhu
2021-11-02 2:32 ` [PATCH v5 8/8] PCI: imx: Add the imx8mm pcie support Richard Zhu
2021-11-15 22:56 ` [PATCH v5 0/8] Add the imx8m pcie phy driver and " Tim Harvey
2021-11-16 1:40 ` Hongxing Zhu
2021-11-17 3:38 ` Hongxing Zhu
2021-11-17 18:02 ` Tim Harvey
2021-11-18 1:23 ` Hongxing Zhu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YYFqCptm9m7Onbrv@robh.at.kernel.org \
--to=robh@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=galak@kernel.crashing.org \
--cc=hongxing.zhu@nxp.com \
--cc=kernel@pengutronix.de \
--cc=kishon@ti.com \
--cc=l.stach@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-phy@lists.infradead.org \
--cc=marcel.ziswiler@toradex.com \
--cc=shawnguo@kernel.org \
--cc=tharvey@gateworks.com \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).