From: nsekhar@ti.com (Sekhar Nori)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 1/6] ARM: davinci: da850: fix clock lookup for mdio device
Date: Sun, 3 Feb 2013 16:44:37 +0530 [thread overview]
Message-ID: <510E469D.9020807@ti.com> (raw)
In-Reply-To: <1359380879-26306-2-git-send-email-prabhakar.lad@ti.com>
On 1/28/2013 7:17 PM, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad@ti.com>
>
> This patch removes the clock alias for mdio device and adds a entry
> in clock lookup table, this entry can now be used by both DT and NON
> DT case.
>
> 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/mach-davinci/da850.c | 1 +
> arch/arm/mach-davinci/devices-da8xx.c | 8 ++------
> 2 files changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c
> index 86056ca..f74bfb6 100644
> --- a/arch/arm/mach-davinci/da850.c
> +++ b/arch/arm/mach-davinci/da850.c
> @@ -402,6 +402,7 @@ static struct clk_lookup da850_clks[] = {
> CLK(NULL, "arm", &arm_clk),
> CLK(NULL, "rmii", &rmii_clk),
> CLK("davinci_emac.1", NULL, &emac_clk),
> + CLK("davinci_mdio.0", "fck", &emac_clk),
> CLK("davinci-mcasp.0", NULL, &mcasp_clk),
> CLK("da8xx_lcdc.0", "fck", &lcdc_clk),
> CLK("davinci_mmc.0", NULL, &mmcsd0_clk),
> diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
> index 2d5502d..52faa05 100644
> --- a/arch/arm/mach-davinci/devices-da8xx.c
> +++ b/arch/arm/mach-davinci/devices-da8xx.c
> @@ -444,12 +444,8 @@ int __init da8xx_register_emac(void)
> ret = platform_device_register(&da8xx_mdio_device);
> if (ret < 0)
> return ret;
> - ret = platform_device_register(&da8xx_emac_device);
> - if (ret < 0)
> - return ret;
> - ret = clk_add_alias(NULL, dev_name(&da8xx_mdio_device.dev),
> - NULL, &da8xx_emac_device.dev);
> - return ret;
> +
> + return platform_device_register(&da8xx_emac_device);
You added the look-up only for DA850 which means after this patch da830
network will be broken. Did you test on DA830?
Thanks,
Sekhar
WARNING: multiple messages have this Message-ID (diff)
From: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
To: Prabhakar Lad <prabhakar.csengg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/@public.gmane.org,
netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, "Lad,
Prabhakar" <prabhakar.lad-l0cyMroinI0@public.gmane.org>,
Heiko Schocher <hs-ynQEQJNshbs@public.gmane.org>,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: Re: [PATCH v2 1/6] ARM: davinci: da850: fix clock lookup for mdio device
Date: Sun, 3 Feb 2013 16:44:37 +0530 [thread overview]
Message-ID: <510E469D.9020807@ti.com> (raw)
In-Reply-To: <1359380879-26306-2-git-send-email-prabhakar.lad-l0cyMroinI0@public.gmane.org>
On 1/28/2013 7:17 PM, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad-l0cyMroinI0@public.gmane.org>
>
> This patch removes the clock alias for mdio device and adds a entry
> in clock lookup table, this entry can now be used by both DT and NON
> DT case.
>
> Signed-off-by: Lad, Prabhakar <prabhakar.lad-l0cyMroinI0@public.gmane.org>
> Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
> Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Cc: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/@public.gmane.org
> Cc: netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
> Cc: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
> Cc: Heiko Schocher <hs-ynQEQJNshbs@public.gmane.org>
> ---
> arch/arm/mach-davinci/da850.c | 1 +
> arch/arm/mach-davinci/devices-da8xx.c | 8 ++------
> 2 files changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c
> index 86056ca..f74bfb6 100644
> --- a/arch/arm/mach-davinci/da850.c
> +++ b/arch/arm/mach-davinci/da850.c
> @@ -402,6 +402,7 @@ static struct clk_lookup da850_clks[] = {
> CLK(NULL, "arm", &arm_clk),
> CLK(NULL, "rmii", &rmii_clk),
> CLK("davinci_emac.1", NULL, &emac_clk),
> + CLK("davinci_mdio.0", "fck", &emac_clk),
> CLK("davinci-mcasp.0", NULL, &mcasp_clk),
> CLK("da8xx_lcdc.0", "fck", &lcdc_clk),
> CLK("davinci_mmc.0", NULL, &mmcsd0_clk),
> diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
> index 2d5502d..52faa05 100644
> --- a/arch/arm/mach-davinci/devices-da8xx.c
> +++ b/arch/arm/mach-davinci/devices-da8xx.c
> @@ -444,12 +444,8 @@ int __init da8xx_register_emac(void)
> ret = platform_device_register(&da8xx_mdio_device);
> if (ret < 0)
> return ret;
> - ret = platform_device_register(&da8xx_emac_device);
> - if (ret < 0)
> - return ret;
> - ret = clk_add_alias(NULL, dev_name(&da8xx_mdio_device.dev),
> - NULL, &da8xx_emac_device.dev);
> - return ret;
> +
> + return platform_device_register(&da8xx_emac_device);
You added the look-up only for DA850 which means after this patch da830
network will be broken. Did you test on DA830?
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 1/6] ARM: davinci: da850: fix clock lookup for mdio device
Date: Sun, 3 Feb 2013 16:44:37 +0530 [thread overview]
Message-ID: <510E469D.9020807@ti.com> (raw)
In-Reply-To: <1359380879-26306-2-git-send-email-prabhakar.lad@ti.com>
On 1/28/2013 7:17 PM, Prabhakar Lad wrote:
> From: Lad, Prabhakar <prabhakar.lad@ti.com>
>
> This patch removes the clock alias for mdio device and adds a entry
> in clock lookup table, this entry can now be used by both DT and NON
> DT case.
>
> 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/mach-davinci/da850.c | 1 +
> arch/arm/mach-davinci/devices-da8xx.c | 8 ++------
> 2 files changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c
> index 86056ca..f74bfb6 100644
> --- a/arch/arm/mach-davinci/da850.c
> +++ b/arch/arm/mach-davinci/da850.c
> @@ -402,6 +402,7 @@ static struct clk_lookup da850_clks[] = {
> CLK(NULL, "arm", &arm_clk),
> CLK(NULL, "rmii", &rmii_clk),
> CLK("davinci_emac.1", NULL, &emac_clk),
> + CLK("davinci_mdio.0", "fck", &emac_clk),
> CLK("davinci-mcasp.0", NULL, &mcasp_clk),
> CLK("da8xx_lcdc.0", "fck", &lcdc_clk),
> CLK("davinci_mmc.0", NULL, &mmcsd0_clk),
> diff --git a/arch/arm/mach-davinci/devices-da8xx.c b/arch/arm/mach-davinci/devices-da8xx.c
> index 2d5502d..52faa05 100644
> --- a/arch/arm/mach-davinci/devices-da8xx.c
> +++ b/arch/arm/mach-davinci/devices-da8xx.c
> @@ -444,12 +444,8 @@ int __init da8xx_register_emac(void)
> ret = platform_device_register(&da8xx_mdio_device);
> if (ret < 0)
> return ret;
> - ret = platform_device_register(&da8xx_emac_device);
> - if (ret < 0)
> - return ret;
> - ret = clk_add_alias(NULL, dev_name(&da8xx_mdio_device.dev),
> - NULL, &da8xx_emac_device.dev);
> - return ret;
> +
> + return platform_device_register(&da8xx_emac_device);
You added the look-up only for DA850 which means after this patch da830
network will be broken. Did you test on DA830?
Thanks,
Sekhar
next prev parent reply other threads:[~2013-02-03 11:14 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 [this message]
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
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=510E469D.9020807@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.