From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] USB: ehci-atmel: add usb_clk for transition to CCF
Date: Mon, 4 Nov 2013 14:54:07 +0100 [thread overview]
Message-ID: <5277A6FF.5050404@atmel.com> (raw)
In-Reply-To: <1382124411-29023-1-git-send-email-b.brezillon@overkiz.com>
On 18/10/2013 21:26, Boris BREZILLON :
> The AT91 PMC (Power Management Controller) provides a USB clock used by
> the different USB controllers (ehci, ohci and udc).
> The atmel-ehci driver must configure the usb clock rate to 48Mhz in order
> to get a fully functionnal USB host controller.
> This configuration was formely done in mach-at91/clock.c, but will be
> bypassed when moving to common clk framework.
>
> This patch adds support for usb clock retrieval and configuration only if
> CCF is enabled (CONFIG_COMMON_CLK).
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Greg, as this patch is already in your tree, it is only for the record.
I have tested it and it works now.
Thanks Boris, bye.
> ---
> drivers/usb/host/ehci-atmel.c | 16 +++++++++++++++-
> 1 file changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/host/ehci-atmel.c b/drivers/usb/host/ehci-atmel.c
> index 3b645ff..f417526 100644
> --- a/drivers/usb/host/ehci-atmel.c
> +++ b/drivers/usb/host/ehci-atmel.c
> @@ -30,13 +30,17 @@ static const char hcd_name[] = "ehci-atmel";
> static struct hc_driver __read_mostly ehci_atmel_hc_driver;
>
> /* interface and function clocks */
> -static struct clk *iclk, *fclk;
> +static struct clk *iclk, *fclk, *uclk;
> static int clocked;
>
> /*-------------------------------------------------------------------------*/
>
> static void atmel_start_clock(void)
> {
> + if (IS_ENABLED(CONFIG_COMMON_CLK)) {
> + clk_set_rate(uclk, 48000000);
> + clk_prepare_enable(uclk);
> + }
> clk_prepare_enable(iclk);
> clk_prepare_enable(fclk);
> clocked = 1;
> @@ -46,6 +50,8 @@ static void atmel_stop_clock(void)
> {
> clk_disable_unprepare(fclk);
> clk_disable_unprepare(iclk);
> + if (IS_ENABLED(CONFIG_COMMON_CLK))
> + clk_disable_unprepare(uclk);
> clocked = 0;
> }
>
> @@ -130,6 +136,14 @@ static int ehci_atmel_drv_probe(struct platform_device *pdev)
> retval = -ENOENT;
> goto fail_request_resource;
> }
> + if (IS_ENABLED(CONFIG_COMMON_CLK)) {
> + uclk = devm_clk_get(&pdev->dev, "usb_clk");
> + if (IS_ERR(uclk)) {
> + dev_err(&pdev->dev, "failed to get uclk\n");
> + retval = PTR_ERR(uclk);
> + goto fail_request_resource;
> + }
> + }
>
> ehci = hcd_to_ehci(hcd);
> /* registers start at offset 0x0 */
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Boris BREZILLON <b.brezillon@overkiz.com>,
Alan Stern <stern@rowland.harvard.edu>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: <linux-usb@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH] USB: ehci-atmel: add usb_clk for transition to CCF
Date: Mon, 4 Nov 2013 14:54:07 +0100 [thread overview]
Message-ID: <5277A6FF.5050404@atmel.com> (raw)
In-Reply-To: <1382124411-29023-1-git-send-email-b.brezillon@overkiz.com>
On 18/10/2013 21:26, Boris BREZILLON :
> The AT91 PMC (Power Management Controller) provides a USB clock used by
> the different USB controllers (ehci, ohci and udc).
> The atmel-ehci driver must configure the usb clock rate to 48Mhz in order
> to get a fully functionnal USB host controller.
> This configuration was formely done in mach-at91/clock.c, but will be
> bypassed when moving to common clk framework.
>
> This patch adds support for usb clock retrieval and configuration only if
> CCF is enabled (CONFIG_COMMON_CLK).
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Greg, as this patch is already in your tree, it is only for the record.
I have tested it and it works now.
Thanks Boris, bye.
> ---
> drivers/usb/host/ehci-atmel.c | 16 +++++++++++++++-
> 1 file changed, 15 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/usb/host/ehci-atmel.c b/drivers/usb/host/ehci-atmel.c
> index 3b645ff..f417526 100644
> --- a/drivers/usb/host/ehci-atmel.c
> +++ b/drivers/usb/host/ehci-atmel.c
> @@ -30,13 +30,17 @@ static const char hcd_name[] = "ehci-atmel";
> static struct hc_driver __read_mostly ehci_atmel_hc_driver;
>
> /* interface and function clocks */
> -static struct clk *iclk, *fclk;
> +static struct clk *iclk, *fclk, *uclk;
> static int clocked;
>
> /*-------------------------------------------------------------------------*/
>
> static void atmel_start_clock(void)
> {
> + if (IS_ENABLED(CONFIG_COMMON_CLK)) {
> + clk_set_rate(uclk, 48000000);
> + clk_prepare_enable(uclk);
> + }
> clk_prepare_enable(iclk);
> clk_prepare_enable(fclk);
> clocked = 1;
> @@ -46,6 +50,8 @@ static void atmel_stop_clock(void)
> {
> clk_disable_unprepare(fclk);
> clk_disable_unprepare(iclk);
> + if (IS_ENABLED(CONFIG_COMMON_CLK))
> + clk_disable_unprepare(uclk);
> clocked = 0;
> }
>
> @@ -130,6 +136,14 @@ static int ehci_atmel_drv_probe(struct platform_device *pdev)
> retval = -ENOENT;
> goto fail_request_resource;
> }
> + if (IS_ENABLED(CONFIG_COMMON_CLK)) {
> + uclk = devm_clk_get(&pdev->dev, "usb_clk");
> + if (IS_ERR(uclk)) {
> + dev_err(&pdev->dev, "failed to get uclk\n");
> + retval = PTR_ERR(uclk);
> + goto fail_request_resource;
> + }
> + }
>
> ehci = hcd_to_ehci(hcd);
> /* registers start at offset 0x0 */
>
--
Nicolas Ferre
next prev parent reply other threads:[~2013-11-04 13:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-18 19:26 [PATCH] USB: ehci-atmel: add usb_clk for transition to CCF Boris BREZILLON
2013-10-18 19:26 ` Boris BREZILLON
2013-10-18 19:30 ` boris brezillon
2013-10-18 19:30 ` boris brezillon
2013-11-04 13:54 ` Nicolas Ferre [this message]
2013-11-04 13:54 ` Nicolas Ferre
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=5277A6FF.5050404@atmel.com \
--to=nicolas.ferre@atmel.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.