From: Dirk Behme <dirk.behme@de.bosch.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] usb/ehci: Add USB support for the MX6Q
Date: Thu, 9 Feb 2012 08:24:15 +0100 [thread overview]
Message-ID: <4F33749F.8020401@de.bosch.com> (raw)
In-Reply-To: <1328714608-4888-2-git-send-email-wg@denx.de>
Hi Wolfgang,
On 08.02.2012 16:23, Wolfgang Grandegger wrote:
> Currently, only USB Host 1 is supported.
>
> Cc: Remy Bohmer <linux@bohmer.net>
> Signed-off-by: Wolfgang Grandegger <wg@denx.de>
> ---
> arch/arm/cpu/armv7/mx6/clock.c | 13 ++
> arch/arm/include/asm/arch-mx6/imx-regs.h | 3 +
> drivers/usb/host/Makefile | 1 +
> drivers/usb/host/ehci-mx6.c | 205 ++++++++++++++++++++++++++++++
> 4 files changed, 222 insertions(+), 0 deletions(-)
> create mode 100644 drivers/usb/host/ehci-mx6.c
>
> diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c
> index fa3a124..ef98563 100644
> --- a/arch/arm/cpu/armv7/mx6/clock.c
> +++ b/arch/arm/cpu/armv7/mx6/clock.c
> @@ -36,6 +36,19 @@ enum pll_clocks {
>
> struct imx_ccm_reg *imx_ccm = (struct imx_ccm_reg *)CCM_BASE_ADDR;
>
> +void enable_usboh3_clk(unsigned char enable)
> +{
> + u32 reg;
> +
> + reg = __raw_readl(&imx_ccm->CCGR6);
> + if (enable)
> + reg |= MXC_CCM_CCGR_CG_MASK << MXC_CCM_CCGR0_CG0_OFFSET;
> + else
> + reg &= ~(MXC_CCM_CCGR_CG_MASK << MXC_CCM_CCGR0_CG0_OFFSET);
> + __raw_writel(reg, &imx_ccm->CCGR6);
> +
> +}
> +
> static u32 decode_pll(enum pll_clocks pll, u32 infreq)
> {
> u32 div;
...
> diff --git a/drivers/usb/host/ehci-mx6.c b/drivers/usb/host/ehci-mx6.c
> new file mode 100644
> index 0000000..b7bf49d
> --- /dev/null
> +++ b/drivers/usb/host/ehci-mx6.c
...
> +int ehci_hcd_init(void)
> +{
> + struct usb_ehci *ehci;
> +
> + enable_usboh3_clk(1);
ehci-mx6.c: In function 'ehci_hcd_init':
ehci-mx6.c:171: warning: implicit declaration of function
'enable_usboh3_clk'
Best regards
Dirk
next prev parent reply other threads:[~2012-02-09 7:24 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-08 15:23 [U-Boot] [PATCH 0/2] usb/mx6q: USB EHCI support for MX6Q boards Wolfgang Grandegger
2012-02-08 15:23 ` [U-Boot] [PATCH 1/2] usb/ehci: Add USB support for the MX6Q Wolfgang Grandegger
2012-02-09 7:24 ` Dirk Behme [this message]
2012-02-08 15:23 ` [U-Boot] [PATCH 2/2] mx6qsabrelite: add and enable USB Host 1 support Wolfgang Grandegger
2012-02-08 15:50 ` Fabio Estevam
2012-02-09 7:18 ` Dirk Behme
2012-02-09 8:09 ` Wolfgang Grandegger
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=4F33749F.8020401@de.bosch.com \
--to=dirk.behme@de.bosch.com \
--cc=u-boot@lists.denx.de \
/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.