public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Marco Felsch <m.felsch@pengutronix.de>
To: Fabio Estevam <festevam@gmail.com>
Cc: robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org,
	conor+dt@kernel.org, shawnguo@kernel.org, kernel@pengutronix.de,
	linux-imx@nxp.com, marex@denx.de, frieder.schrempf@kontron.de,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 3/3] arm64: dts: freescale: Add DEBIX SOM A and SOM A I/O Board support
Date: Fri, 14 Jul 2023 16:38:26 +0200	[thread overview]
Message-ID: <20230714143826.p3blstr5dpsgr46j@pengutronix.de> (raw)
In-Reply-To: <CAOMZO5C21f9+ByLVHMaK9wHcCSF3R9W1c1ZCfirx7TuX=786Rw@mail.gmail.com>

Hi Fabio,

On 23-07-04, Fabio Estevam wrote:
> Hi Marco,
> 
> On Tue, Jul 4, 2023 at 3:41 PM Marco Felsch <m.felsch@pengutronix.de> wrote:
> 
> > +&fec {
> > +       pinctrl-names = "default";
> > +       pinctrl-0 = <&pinctrl_fec>;
> > +       phy-mode = "rgmii-id";
> > +       phy-handle = <&ethphy1>;
> > +       fsl,magic-packet;
> > +       phy-reset-gpios = <&gpio4 19 GPIO_ACTIVE_LOW>;
> > +       phy-reset-duration = <10>;
> > +       phy-reset-post-delay = <150>;
> 
> These properties are deprecated. Please move them under the mdio node.

right

> > +               /*
> > +                * Since USB1 is binded to peripheral mode we need to ensure
> 
> s/binded/bound

sure

> > +/* µSD Card */
> > +&usdhc2 {
> > +       pinctrl-names = "default", "state_100mhz", "state_200mhz";
> > +       pinctrl-0 = <&pinctrl_usdhc2>;
> > +       pinctrl-1 = <&pinctrl_usdhc2_100mhz>;
> > +       pinctrl-2 = <&pinctrl_usdhc2_200mhz>;
> > +       vmmc-supply = <&reg_usdhc2_vmmc>;
> > +       bus-width = <4>;
> > +       disable-wp;
> > +       no-sdio;
> > +       no-mmc;
> > +
> 
> No need for this blank line.

I added the blank lines for a better separation, but I can drop these.

> > +       assigned-clocks = <&clk IMX8MP_CLK_USDHC2>;
> > +       assigned-clock-rates = <400000000>;
> > +
> 
> Ditto.
> 
> > +
> > +       pmic@25 {
> > +               compatible = "nxp,pca9450c";
> > +               reg = <0x25>;
> > +               pinctrl-names = "default";
> > +               pinctrl-0 = <&pinctrl_pmic>;
> > +
> > +               interrupt-parent = <&gpio1>;
> > +               interrupts = <3 GPIO_ACTIVE_LOW>;
> > +
> > +               regulators {
> > +                       buck1: BUCK1 {
> > +                               regulator-name = "BUCK1";
> > +                               regulator-min-microvolt = <600000>;
> > +                               regulator-max-microvolt = <2187500>;
> > +                               regulator-boot-on;
> > +                               regulator-always-on;
> > +                               regulator-ramp-delay = <3125>;
> > +                       };
> > +
> > +                       buck2: BUCK2 {
> > +                               regulator-name = "BUCK2";
> > +                               regulator-min-microvolt = <600000>;
> > +                               regulator-max-microvolt = <2187500>;
> > +                               regulator-boot-on;
> > +                               regulator-always-on;
> > +                               regulator-ramp-delay = <3125>;
> > +                               nxp,dvs-run-voltage = <950000>;
> > +                               nxp,dvs-standby-voltage = <850000>;
> > +                       };
> > +
> > +                       buck4: BUCK4{
> 
> Missing space after BUCK4.

yes.

> > +                               regulator-name = "BUCK4";
> > +                               regulator-min-microvolt = <600000>;
> > +                               regulator-max-microvolt = <3400000>;
> > +                               regulator-boot-on;
> > +                               regulator-always-on;
> > +                       };
> > +
> > +                       buck5: BUCK5{
> 
> Ditto.

yes.

> > +&usdhc3 {
> > +       pinctrl-names = "default", "state_100mhz", "state_200mhz";
> > +       pinctrl-0 = <&pinctrl_usdhc3>;
> > +       pinctrl-1 = <&pinctrl_usdhc3_100mhz>;
> > +       pinctrl-2 = <&pinctrl_usdhc3_200mhz>;
> > +       bus-width = <8>;
> > +       non-removable;
> > +
> 
> No need for this blank line.
> 
> 
> > +       assigned-clocks = <&clk IMX8MP_CLK_USDHC3>;
> > +       assigned-clock-rates = <400000000>;
> > +
> 
> Ditto.

Removed these as well. Thanks for your review :)

Regards,
  Marco

  reply	other threads:[~2023-07-14 14:38 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-04 18:41 [PATCH 1/3] dt-bindings: arm: fsl: fix DEBIX binding Marco Felsch
2023-07-04 18:41 ` [PATCH 2/3] dt-bindings: arm: Add Polyhex DEBIX SOM A based boards Marco Felsch
2023-07-05  6:35   ` Krzysztof Kozlowski
2023-07-04 18:41 ` [PATCH 3/3] arm64: dts: freescale: Add DEBIX SOM A and SOM A I/O Board support Marco Felsch
2023-07-04 20:24   ` Fabio Estevam
2023-07-14 14:38     ` Marco Felsch [this message]
2023-07-05  6:37   ` Krzysztof Kozlowski
2023-07-14 14:40     ` Marco Felsch
2023-07-05  6:35 ` [PATCH 1/3] dt-bindings: arm: fsl: fix DEBIX binding Krzysztof Kozlowski
2023-07-05  8:28   ` Marco Felsch
2023-07-05  9:15     ` Krzysztof Kozlowski
2023-07-05  9:28   ` Ahmad Fatoum
2023-07-05  9:37     ` Krzysztof Kozlowski
2023-07-14 15:16       ` Marco Felsch

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=20230714143826.p3blstr5dpsgr46j@pengutronix.de \
    --to=m.felsch@pengutronix.de \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=frieder.schrempf@kontron.de \
    --cc=kernel@pengutronix.de \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marex@denx.de \
    --cc=robh+dt@kernel.org \
    --cc=shawnguo@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