From: nsekhar@ti.com (Sekhar Nori)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 4/6] ARM: davinci: da850: add DT node for eth0.
Date: Sun, 3 Feb 2013 17:33:11 +0530 [thread overview]
Message-ID: <510E51FF.8090005@ti.com> (raw)
In-Reply-To: <1359380879-26306-5-git-send-email-prabhakar.lad@ti.com>
On 1/28/2013 7:17 PM, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad@ti.com>
>
> Add eth0 device tree node information and pinmux for mii to da850 by
> providing interrupt details and local mac address of eth0.
>
> Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
> Cc: linux-arm-kernel at lists.infradead.org
> Cc: linux-kernel at vger.kernel.org
> Cc: davinci-linux-open-source at linux.davincidsp.com
> Cc: netdev at vger.kernel.org
> Cc: devicetree-discuss at lists.ozlabs.org
> Cc: Sekhar Nori <nsekhar@ti.com>
> Cc: Heiko Schocher <hs@denx.de>
> ---
> arch/arm/boot/dts/da850-evm.dts | 5 +++++
> arch/arm/boot/dts/da850.dtsi | 35 +++++++++++++++++++++++++++++++++++
> 2 files changed, 40 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/da850-evm.dts b/arch/arm/boot/dts/da850-evm.dts
> index a319491..19aa2b3 100644
> --- a/arch/arm/boot/dts/da850-evm.dts
> +++ b/arch/arm/boot/dts/da850-evm.dts
> @@ -30,6 +30,11 @@
> mdio: davinci_mdio at 1e24000 {
> status = "okay";
> };
> + eth0: emac at 1e20000 {
> + status = "okay";
> + pinctrl-names = "default";
> + pinctrl-0 = <&mii_pins>;
> + };
> };
> nand_cs3 at 62000000 {
> status = "okay";
> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
> index ba28f2d..76905f3 100644
> --- a/arch/arm/boot/dts/da850.dtsi
> +++ b/arch/arm/boot/dts/da850.dtsi
> @@ -56,6 +56,26 @@
> 0x30 0x01100000 0x0ff00000
> >;
> };
> + mii_pins: pinmux_mii_pins {
> + pinctrl-single,bits = <
> + /*
> + * MII_TXEN, MII_TXCLK, MII_COL
> + * MII_TXD_3, MII_TXD_2, MII_TXD_1
> + * MII_TXD_0
> + */
> + 0x8 0x88888880 0xfffffff0
> + /*
> + * MII_RXER, MII_CRS, MII_RXCLK
> + * MII_RXDV, MII_RXD_3, MII_RXD_2
> + * MII_RXD_1, MII_RXD_0
> + */
> + 0xc 0x88888888 0xffffffff
> + /* MDIO_CLK, MDIO_D */
You call this mii_pins, but include mdio pins in there as well. Can you
separate them out? Then some board which uses rmii can simply reuse the
entry.
> + 0x10 0x00222288 0x00ffffff
> + /* GPIO2_6 */
> + 0x18 0x00000080 0x000000f0
This is SoC specific pin list. Such board specific pins should not make
it here.
> + >;
> + };
> };
> serial0: serial at 1c42000 {
> compatible = "ns16550a";
> @@ -88,6 +108,21 @@
> reg = <0x224000 0x1000>;
> bus_freq = <2200000>;
> };
> + eth0: emac at 1e20000 {
> + compatible = "ti,davinci-dm6467-emac";
> + reg = <0x220000 0x4000>;
> + ti,davinci-ctrl-reg-offset = <0x3000>;
> + ti,davinci-ctrl-mod-reg-offset = <0x2000>;
> + ti,davinci-ctrl-ram-offset = <0>;
> + ti,davinci-ctrl-ram-size = <0x2000>;
> + local-mac-address = [ 00 00 00 00 00 00 ];
> + interrupts = <33
> + 34
> + 35
> + 36
> + >;
> + phy-handle = <&mdio>;
I doubt this is required. This property is to pass a handle to the phy,
not mdio bus.
Thanks,
Sekhar
WARNING: multiple messages have this Message-ID (diff)
From: Sekhar Nori <nsekhar@ti.com>
To: Prabhakar Lad <prabhakar.csengg@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org,
davinci-linux-open-source@linux.davincidsp.com,
linux-kernel@vger.kernel.org, netdev@vger.kernel.org,
devicetree-discuss@lists.ozlabs.org, Heiko Schocher <hs@denx.de>,
"Lad, Prabhakar" <prabhakar.lad@ti.com>
Subject: Re: [PATCH v2 4/6] ARM: davinci: da850: add DT node for eth0.
Date: Sun, 3 Feb 2013 17:33:11 +0530 [thread overview]
Message-ID: <510E51FF.8090005@ti.com> (raw)
In-Reply-To: <1359380879-26306-5-git-send-email-prabhakar.lad@ti.com>
On 1/28/2013 7:17 PM, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad@ti.com>
>
> Add eth0 device tree node information and pinmux for mii to da850 by
> providing interrupt details and local mac address of eth0.
>
> Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-kernel@vger.kernel.org
> Cc: davinci-linux-open-source@linux.davincidsp.com
> Cc: netdev@vger.kernel.org
> Cc: devicetree-discuss@lists.ozlabs.org
> Cc: Sekhar Nori <nsekhar@ti.com>
> Cc: Heiko Schocher <hs@denx.de>
> ---
> arch/arm/boot/dts/da850-evm.dts | 5 +++++
> arch/arm/boot/dts/da850.dtsi | 35 +++++++++++++++++++++++++++++++++++
> 2 files changed, 40 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/da850-evm.dts b/arch/arm/boot/dts/da850-evm.dts
> index a319491..19aa2b3 100644
> --- a/arch/arm/boot/dts/da850-evm.dts
> +++ b/arch/arm/boot/dts/da850-evm.dts
> @@ -30,6 +30,11 @@
> mdio: davinci_mdio@1e24000 {
> status = "okay";
> };
> + eth0: emac@1e20000 {
> + status = "okay";
> + pinctrl-names = "default";
> + pinctrl-0 = <&mii_pins>;
> + };
> };
> nand_cs3@62000000 {
> status = "okay";
> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
> index ba28f2d..76905f3 100644
> --- a/arch/arm/boot/dts/da850.dtsi
> +++ b/arch/arm/boot/dts/da850.dtsi
> @@ -56,6 +56,26 @@
> 0x30 0x01100000 0x0ff00000
> >;
> };
> + mii_pins: pinmux_mii_pins {
> + pinctrl-single,bits = <
> + /*
> + * MII_TXEN, MII_TXCLK, MII_COL
> + * MII_TXD_3, MII_TXD_2, MII_TXD_1
> + * MII_TXD_0
> + */
> + 0x8 0x88888880 0xfffffff0
> + /*
> + * MII_RXER, MII_CRS, MII_RXCLK
> + * MII_RXDV, MII_RXD_3, MII_RXD_2
> + * MII_RXD_1, MII_RXD_0
> + */
> + 0xc 0x88888888 0xffffffff
> + /* MDIO_CLK, MDIO_D */
You call this mii_pins, but include mdio pins in there as well. Can you
separate them out? Then some board which uses rmii can simply reuse the
entry.
> + 0x10 0x00222288 0x00ffffff
> + /* GPIO2_6 */
> + 0x18 0x00000080 0x000000f0
This is SoC specific pin list. Such board specific pins should not make
it here.
> + >;
> + };
> };
> serial0: serial@1c42000 {
> compatible = "ns16550a";
> @@ -88,6 +108,21 @@
> reg = <0x224000 0x1000>;
> bus_freq = <2200000>;
> };
> + eth0: emac@1e20000 {
> + compatible = "ti,davinci-dm6467-emac";
> + reg = <0x220000 0x4000>;
> + ti,davinci-ctrl-reg-offset = <0x3000>;
> + ti,davinci-ctrl-mod-reg-offset = <0x2000>;
> + ti,davinci-ctrl-ram-offset = <0>;
> + ti,davinci-ctrl-ram-size = <0x2000>;
> + local-mac-address = [ 00 00 00 00 00 00 ];
> + interrupts = <33
> + 34
> + 35
> + 36
> + >;
> + phy-handle = <&mdio>;
I doubt this is required. This property is to pass a handle to the phy,
not mdio bus.
Thanks,
Sekhar
WARNING: multiple messages have this Message-ID (diff)
From: Sekhar Nori <nsekhar@ti.com>
To: Prabhakar Lad <prabhakar.csengg@gmail.com>
Cc: <linux-arm-kernel@lists.infradead.org>,
<davinci-linux-open-source@linux.davincidsp.com>,
<linux-kernel@vger.kernel.org>, <netdev@vger.kernel.org>,
<devicetree-discuss@lists.ozlabs.org>,
Heiko Schocher <hs@denx.de>,
"Lad, Prabhakar" <prabhakar.lad@ti.com>
Subject: Re: [PATCH v2 4/6] ARM: davinci: da850: add DT node for eth0.
Date: Sun, 3 Feb 2013 17:33:11 +0530 [thread overview]
Message-ID: <510E51FF.8090005@ti.com> (raw)
In-Reply-To: <1359380879-26306-5-git-send-email-prabhakar.lad@ti.com>
On 1/28/2013 7:17 PM, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad@ti.com>
>
> Add eth0 device tree node information and pinmux for mii to da850 by
> providing interrupt details and local mac address of eth0.
>
> Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-kernel@vger.kernel.org
> Cc: davinci-linux-open-source@linux.davincidsp.com
> Cc: netdev@vger.kernel.org
> Cc: devicetree-discuss@lists.ozlabs.org
> Cc: Sekhar Nori <nsekhar@ti.com>
> Cc: Heiko Schocher <hs@denx.de>
> ---
> arch/arm/boot/dts/da850-evm.dts | 5 +++++
> arch/arm/boot/dts/da850.dtsi | 35 +++++++++++++++++++++++++++++++++++
> 2 files changed, 40 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/da850-evm.dts b/arch/arm/boot/dts/da850-evm.dts
> index a319491..19aa2b3 100644
> --- a/arch/arm/boot/dts/da850-evm.dts
> +++ b/arch/arm/boot/dts/da850-evm.dts
> @@ -30,6 +30,11 @@
> mdio: davinci_mdio@1e24000 {
> status = "okay";
> };
> + eth0: emac@1e20000 {
> + status = "okay";
> + pinctrl-names = "default";
> + pinctrl-0 = <&mii_pins>;
> + };
> };
> nand_cs3@62000000 {
> status = "okay";
> diff --git a/arch/arm/boot/dts/da850.dtsi b/arch/arm/boot/dts/da850.dtsi
> index ba28f2d..76905f3 100644
> --- a/arch/arm/boot/dts/da850.dtsi
> +++ b/arch/arm/boot/dts/da850.dtsi
> @@ -56,6 +56,26 @@
> 0x30 0x01100000 0x0ff00000
> >;
> };
> + mii_pins: pinmux_mii_pins {
> + pinctrl-single,bits = <
> + /*
> + * MII_TXEN, MII_TXCLK, MII_COL
> + * MII_TXD_3, MII_TXD_2, MII_TXD_1
> + * MII_TXD_0
> + */
> + 0x8 0x88888880 0xfffffff0
> + /*
> + * MII_RXER, MII_CRS, MII_RXCLK
> + * MII_RXDV, MII_RXD_3, MII_RXD_2
> + * MII_RXD_1, MII_RXD_0
> + */
> + 0xc 0x88888888 0xffffffff
> + /* MDIO_CLK, MDIO_D */
You call this mii_pins, but include mdio pins in there as well. Can you
separate them out? Then some board which uses rmii can simply reuse the
entry.
> + 0x10 0x00222288 0x00ffffff
> + /* GPIO2_6 */
> + 0x18 0x00000080 0x000000f0
This is SoC specific pin list. Such board specific pins should not make
it here.
> + >;
> + };
> };
> serial0: serial@1c42000 {
> compatible = "ns16550a";
> @@ -88,6 +108,21 @@
> reg = <0x224000 0x1000>;
> bus_freq = <2200000>;
> };
> + eth0: emac@1e20000 {
> + compatible = "ti,davinci-dm6467-emac";
> + reg = <0x220000 0x4000>;
> + ti,davinci-ctrl-reg-offset = <0x3000>;
> + ti,davinci-ctrl-mod-reg-offset = <0x2000>;
> + ti,davinci-ctrl-ram-offset = <0>;
> + ti,davinci-ctrl-ram-size = <0x2000>;
> + local-mac-address = [ 00 00 00 00 00 00 ];
> + interrupts = <33
> + 34
> + 35
> + 36
> + >;
> + phy-handle = <&mdio>;
I doubt this is required. This property is to pass a handle to the phy,
not mdio bus.
Thanks,
Sekhar
next prev parent reply other threads:[~2013-02-03 12:03 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-28 13:47 [PATCH v2 0/6] ARM: davinci: da850: add ethernet driver DT support Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-01-28 13:47 ` [PATCH v2 1/6] ARM: davinci: da850: fix clock lookup for mdio device Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-02-03 11:14 ` Sekhar Nori
2013-02-03 11:14 ` Sekhar Nori
2013-02-03 11:14 ` Sekhar Nori
2013-02-03 11:38 ` Prabhakar Lad
2013-02-03 11:38 ` Prabhakar Lad
2013-02-03 11:38 ` Prabhakar Lad
2013-01-28 13:47 ` [PATCH v2 2/6] ARM: davinci: da850: add DT node " Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-02-03 11:53 ` Sekhar Nori
2013-02-03 11:53 ` Sekhar Nori
2013-02-03 11:53 ` Sekhar Nori
2013-02-03 12:17 ` Prabhakar Lad
2013-02-03 12:17 ` Prabhakar Lad
2013-02-03 12:17 ` Prabhakar Lad
2013-01-28 13:47 ` [PATCH v2 3/6] ARM: davinci: da850: add OF_DEV_AUXDATA entry for mdio Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-01-28 13:47 ` [PATCH v2 4/6] ARM: davinci: da850: add DT node for eth0 Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-02-03 12:03 ` Sekhar Nori [this message]
2013-02-03 12:03 ` Sekhar Nori
2013-02-03 12:03 ` Sekhar Nori
2013-02-04 5:07 ` Prabhakar Lad
2013-02-04 5:07 ` Prabhakar Lad
2013-02-04 17:50 ` Sekhar Nori
2013-02-04 17:50 ` Sekhar Nori
2013-02-04 17:50 ` Sekhar Nori
2013-03-08 9:45 ` Prabhakar Lad
2013-03-08 9:45 ` Prabhakar Lad
2013-03-08 9:51 ` Sekhar Nori
2013-03-08 9:51 ` Sekhar Nori
2013-03-08 9:51 ` Sekhar Nori
2013-01-28 13:47 ` [PATCH v2 5/6] ARM: davinci: da850: add OF_DEV_AUXDATA entry " Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-01-28 13:47 ` [PATCH v2 6/6] ARM: davinci: da850: configure system configuration chip(CFGCHIP3) for emac Prabhakar Lad
2013-01-28 13:47 ` Prabhakar Lad
2013-02-03 12:45 ` Sekhar Nori
2013-02-03 12:45 ` Sekhar Nori
2013-02-03 12:45 ` Sekhar Nori
2013-02-04 5:03 ` Prabhakar Lad
2013-02-04 5:03 ` Prabhakar Lad
2013-03-08 13:28 ` Prabhakar Lad
2013-03-08 13:28 ` Prabhakar Lad
2013-03-08 13:28 ` Prabhakar Lad
2013-02-04 5:28 ` Sekhar Nori
2013-02-04 5:28 ` Sekhar Nori
2013-02-04 5:28 ` Sekhar Nori
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=510E51FF.8090005@ti.com \
--to=nsekhar@ti.com \
--cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.