devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Shawn Guo <shawnguo@kernel.org>
To: Stefan Agner <stefan@agner.ch>
Cc: kernel@pengutronix.de, mark.rutland@arm.com,
	devicetree@vger.kernel.org, pawel.moll@arm.com,
	ijc+devicetree@hellion.org.uk, marcel.ziswiler@toradex.com,
	linux-kernel@vger.kernel.org, robh+dt@kernel.org,
	max.krummenacher@toradex.com, galak@codeaurora.org,
	fabio.estevam@nxp.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 3/3] ARM: dts: imx7: add Toradex Colibri iMX7S/iMX7D support
Date: Sun, 12 Jun 2016 10:31:00 +0800	[thread overview]
Message-ID: <20160612023100.GW20243@tiger> (raw)
In-Reply-To: <20160608023709.32090-4-stefan@agner.ch>

On Tue, Jun 07, 2016 at 07:37:09PM -0700, Stefan Agner wrote:
> +&lcdif {
> +	status = "okay";
> +	display = <&display0>;

Please put 'status' at the bottom of property list.

> +
> +	display0: lcd-display {
> +		bits-per-pixel = <16>;
> +		bus-width = <18>;
> +
> +		display-timings {
> +			native-mode = <&timing_vga>;
> +
> +			/* Standard VGA timing */
> +			timing_vga: 640x480 {
> +				clock-frequency = <25175000>;
> +				hactive = <640>;
> +				vactive = <480>;
> +				hback-porch = <40>;
> +				hfront-porch = <24>;
> +				vback-porch = <32>;
> +				vfront-porch = <11>;
> +				hsync-len = <96>;
> +				vsync-len = <2>;
> +				de-active = <1>;
> +				hsync-active = <0>;
> +				vsync-active = <0>;
> +				pixelclk-active = <0>;
> +			};
> +		};
> +	};
> +};

<snip>

> +&usdhc1 {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_usdhc1 &pinctrl_cd_usdhc1>;
> +	no-1-8-v;
> +	cd-gpios = <&gpio1 0 0>;

Use the macro in include/dt-bindings/gpio/gpio.h.

> +	enable-sdio-wakeup;

This is deprecated.  Please use wakeup-source instead.

> +	fsl,tuning-step = <2>;
> +	keep-power-in-suspend;
> +	status = "okay";
> +};

<snip>

> +&fec1 {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_enet1>;
> +	clocks = <&clks IMX7D_ENET_AXI_ROOT_CLK>,
> +		<&clks IMX7D_ENET_AXI_ROOT_CLK>,
> +		<&clks IMX7D_ENET1_TIME_ROOT_CLK>,
> +		<&clks IMX7D_PLL_ENET_MAIN_50M_CLK>;
> +	clock-names = "ipg", "ahb", "ptp", "enet_clk_ref";
> +

Drop this newline.

> +	assigned-clocks = <&clks IMX7D_ENET1_TIME_ROOT_SRC>,
> +			  <&clks IMX7D_ENET1_TIME_ROOT_CLK>;
> +	assigned-clock-parents = <&clks IMX7D_PLL_ENET_MAIN_100M_CLK>;
> +	assigned-clock-rates = <0>, <100000000>;
> +	phy-mode = "rmii";
> +	phy-supply = <&reg_LDO1>;
> +	fsl,magic-packet;
> +};

<snip>

> +&uart1 {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_uart1 &pinctrl_uart1_ctrl1 &pinctrl_uart1_ctrl2>;
> +	assigned-clocks = <&clks IMX7D_UART1_ROOT_SRC>;
> +	assigned-clock-parents = <&clks IMX7D_OSC_24M_CLK>;
> +	fsl,uart-has-rtscts;

Please use generic 'uart-has-rtscts' instead.

> +	fsl,dte-mode;
> +};
> +
> +&uart2 {
> +	pinctrl-names = "default";
> +	pinctrl-0 = <&pinctrl_uart2>;
> +	assigned-clocks = <&clks IMX7D_UART2_ROOT_SRC>;
> +	assigned-clock-parents = <&clks IMX7D_OSC_24M_CLK>;
> +	fsl,uart-has-rtscts;

Ditto

> +	fsl,dte-mode;
> +};

<snip>

> +/ {
> +	model = "Toradex Colibri iMX7D on Colibri Evaluation Board V3";
> +	compatible = "toradex,colibri_imx7d-eval", "toradex,colibri_imx7d", \

We always use hyphen than underscore in compatible string.

> +		     "fsl,imx7d";
> +
> +	reg_usb_otg2_vbus: regulator-usb-otg2-vbus {
> +		compatible = "regulator-fixed";
> +		pinctrl-names = "default";
> +		pinctrl-0 = <&pinctrl_usbotg2_reg>;
> +		regulator-name = "VCC_USB[1-4]";
> +		regulator-min-microvolt = <5000000>;
> +		regulator-max-microvolt = <5000000>;
> +		gpio = <&gpio4 7 GPIO_ACTIVE_LOW>;
> +	};
> +};
> +/ {
> +	model = "Toradex Colibri iMX7S on Colibri Evaluation Board V3";
> +	compatible = "toradex,colibri_imx7s-eval", "toradex,colibri_imx7s", \
> +		     "fsl,imx7s", "fsl,imx7d";

You may not want to have "fsl,imx7d" here.  Otherwise, the detection
between  imx7s and imx7d colibri-eval-v3 board will be difficult.

Shawn

> +};

  reply	other threads:[~2016-06-12  2:31 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-08  2:37 [PATCH 0/3] ARM: dts: imx7d: add i.MX 7Solo and Colibri iMX7S/D dts Stefan Agner
2016-06-08  2:37 ` [PATCH 1/3] ARM: dts: imx7d: create i.MX 7Solo base device tree Stefan Agner
     [not found]   ` <20160608023709.32090-2-stefan-XLVq0VzYD2Y@public.gmane.org>
2016-06-12  1:35     ` Shawn Guo
2016-06-19  4:20       ` Stefan Agner
     [not found]         ` <9d870fb1be40772a50f08d467df048dc-XLVq0VzYD2Y@public.gmane.org>
2016-06-21  3:20           ` Shawn Guo
2016-06-08  2:37 ` [PATCH 2/3] ARM: dts: imx7d: move input header into " Stefan Agner
     [not found]   ` <20160608023709.32090-3-stefan-XLVq0VzYD2Y@public.gmane.org>
2016-06-08  7:29     ` Igor Grinberg
2016-06-08  2:37 ` [PATCH 3/3] ARM: dts: imx7: add Toradex Colibri iMX7S/iMX7D support Stefan Agner
2016-06-12  2:31   ` Shawn Guo [this message]
2016-06-16  5:37     ` Stefan Agner
2016-06-16 10:44       ` Marcel Ziswiler

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=20160612023100.GW20243@tiger \
    --to=shawnguo@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=fabio.estevam@nxp.com \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcel.ziswiler@toradex.com \
    --cc=mark.rutland@arm.com \
    --cc=max.krummenacher@toradex.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=stefan@agner.ch \
    /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).