From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Thu, 23 Jul 2015 07:56:57 +0200 Subject: [U-Boot] [PATCH 02/15][v3] imx: usb: ehci-mx7 add usb driver for i.MX7D In-Reply-To: <1437603862-2228-1-git-send-email-aalonso@freescale.com> References: <1437603862-2228-1-git-send-email-aalonso@freescale.com> Message-ID: <201507230756.58021.marex@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thursday, July 23, 2015 at 12:24:22 AM, Adrian Alonso wrote: > * Add support for usb driver for i.MX7D SoC Please drop this asterisk, it's pointless. > Signed-off-by: Adrian Alonso > Signed-off-by: Ye.Li > Signed-off-by: Peng Fan > --- > Changes for V2: Resend > Changes for V3: > - Integrate review obserbations > - Add comments for fucntions board_ehci_hcd_init/board_ehci_power > > drivers/usb/host/Makefile | 1 + > drivers/usb/host/ehci-mx7.c | 112 > ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 113 > insertions(+) > create mode 100644 drivers/usb/host/ehci-mx7.c > > diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile > index 4d35d3e..7267160 100644 > --- a/drivers/usb/host/Makefile > +++ b/drivers/usb/host/Makefile > @@ -36,6 +36,7 @@ obj-$(CONFIG_USB_EHCI_MXC) += ehci-mxc.o > obj-$(CONFIG_USB_EHCI_MXS) += ehci-mxs.o > obj-$(CONFIG_USB_EHCI_MX5) += ehci-mx5.o > obj-$(CONFIG_USB_EHCI_MX6) += ehci-mx6.o > +obj-$(CONFIG_USB_EHCI_MX7) += ehci-mx7.o > obj-$(CONFIG_USB_EHCI_OMAP) += ehci-omap.o > obj-$(CONFIG_USB_EHCI_PPC4XX) += ehci-ppc4xx.o > obj-$(CONFIG_USB_EHCI_MARVELL) += ehci-marvell.o > diff --git a/drivers/usb/host/ehci-mx7.c b/drivers/usb/host/ehci-mx7.c > new file mode 100644 > index 0000000..40aed07 > --- /dev/null > +++ b/drivers/usb/host/ehci-mx7.c > @@ -0,0 +1,112 @@ > +/* > + * Copyright (c) 2009 Daniel Mack > + * Copyright (C) 2010-2015 Freescale Semiconductor, Inc. > + * > + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +#include "ehci.h" > + > +#define USB_NC_OFFSET 0x200 > + > +#define UCTRL_PM (1 << 9) /* OTG Power Mask */ > +#define UCTRL_OVER_CUR_POL (1 << 8) /* OTG Polarity of Overcurrent */ > +#define UCTRL_OVER_CUR_DIS (1 << 7) /* Disable OTG Overcurrent Detection > */ + > +/* USBCMD */ > +#define UCMD_RUN_STOP (1 << 0) /* controller run/stop */ > +#define UCMD_RESET (1 << 1) /* controller reset */ > + > +/* Base address for this IP block is 0x02184800 */ > +struct usbnc_regs { > + u32 ctrl1; > + u32 ctrl2; > + u32 reserve1[11]; > + u32 phy_ctrl2; > + u32 reserve2[6]; > + u32 adp_cfg1; > + u32 reserve3; > + u32 adp_status; > +}; > + > +static void usb_oc_config(int index) > +{ > + struct usbnc_regs *usbnc = (struct usbnc_regs *)(USB_BASE_ADDR + > + (0x10000 * index) + USB_NC_OFFSET); > + void __iomem *ctrl = (void __iomem *)(&usbnc->ctrl1); > + > + setbits_le32(ctrl, UCTRL_OVER_CUR_POL); > + setbits_le32(ctrl, UCTRL_OVER_CUR_DIS | UCTRL_PM); > +} > + > +/* This is not valid kerneldoc, see documentation here: https://www.kernel.org/doc/Documentation/kernel-doc-nano-HOWTO.txt > + * board_ehci_hcd_init - set usb vbus voltage > + * Setup iomux pad to setup supply vbus voltage for usb otg port. > + * Machine board file overrides board_ehci_hcd_init > + * @port: usb otg port > + * > + */ Other than that, it's cool. Can you please re-send it in-reply-to to the original series ? Thanks! Best regards, Marek Vasut