From patchwork Sun Apr 29 14:57:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: stigge@antcom.de X-Patchwork-Id: 155742 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B40E7B6EE6 for ; Mon, 30 Apr 2012 00:59:02 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SOVYq-0004MD-Fs; Sun, 29 Apr 2012 14:57:16 +0000 Received: from [2a01:4f8:101:2a4:0:bc28:b2d8:8] (helo=chuck.antcom.de) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1SOVYn-0004LX-Ek for linux-arm-kernel@lists.infradead.org; Sun, 29 Apr 2012 14:57:14 +0000 Received: from [IPv6:2001:a60:f0c7:1:ad70:8a80:bd6b:d5b2] (unknown [IPv6:2001:a60:f0c7:1:ad70:8a80:bd6b:d5b2]) by chuck.antcom.de (Postfix) with ESMTPSA id F2970720096; Sun, 29 Apr 2012 14:57:07 +0000 (UTC) Message-ID: <4F9D56C2.2050307@antcom.de> Date: Sun, 29 Apr 2012 16:57:06 +0200 From: Roland Stigge Organization: ANTCOM Open Source Research and Development User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:10.0.3) Gecko/20120329 Icedove/10.0.3 MIME-Version: 1.0 To: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, kevin.wells@nxp.com, srinivas.bakki@nxp.com, stern@rowland.harvard.edu, linux-arm-kernel@lists.infradead.org, arnd@arndb.de, grant.likely@secretlab.ca, rob.herring@calxeda.com, devicetree-discuss@lists.ozlabs.org Subject: [GIT PULL] USB: LPC32xx device tree related OHCI and UDC patch series X-Enigmail-Version: 1.4 X-Spam-Note: CRM114 invocation failed X-Spam-Score: -1.1 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.1 points) pts rule name description ---- ---------------------- -------------------------------------------------- -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] 0.8 RDNS_NONE Delivered to internal network by a host with no rDNS 0.0 TVD_SUBJ_NUM_OBFU_MINFP TVD_SUBJ_NUM_OBFU_MINFP X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org Hi, this is the pull request for the just re-posted series of LPC32xx related USB patches (just ported onto current usb.git's usb-next). Thanks in advance, Roland The following changes since commit 4212cd74ca6f0c42f5a0065797dd1c310a485ad8: USB: usb-skeleton.c: remove err() usage (2012-04-27 11:24:45 -0700) are available in the git repository at: git://git.antcom.de/linux-2.6.git ohci-nxp for you to fetch changes up to 5fc7346be73e695bb976d7bea2a421f1c443fa6c: USB: ohci-nxp: Use isp1301 driver (2012-04-29 15:27:20 +0200) ---------------------------------------------------------------- Roland Stigge (5): ohci-nxp: Driver cleanup ohci-nxp: Device tree support USB: Add driver for NXP ISP1301 USB transceiver USB: gadget driver for LPC32xx USB: ohci-nxp: Use isp1301 driver Documentation/devicetree/bindings/usb/isp1301.txt | 25 + .../devicetree/bindings/usb/lpc32xx-udc.txt | 28 + Documentation/devicetree/bindings/usb/ohci-nxp.txt | 24 + drivers/usb/Kconfig | 2 + drivers/usb/Makefile | 1 + drivers/usb/gadget/Kconfig | 11 + drivers/usb/gadget/Makefile | 1 + drivers/usb/gadget/gadget_chips.h | 3 + drivers/usb/gadget/lpc32xx_udc.c | 3538 ++++++++++++++++++++ drivers/usb/host/Kconfig | 1 + drivers/usb/host/ohci-nxp.c | 165 +- drivers/usb/phy/Kconfig | 17 + drivers/usb/phy/Makefile | 7 + drivers/usb/phy/isp1301.c | 77 + include/linux/usb/isp1301.h | 80 + 15 files changed, 3861 insertions(+), 119 deletions(-) create mode 100644 Documentation/devicetree/bindings/usb/isp1301.txt create mode 100644 Documentation/devicetree/bindings/usb/lpc32xx-udc.txt create mode 100644 Documentation/devicetree/bindings/usb/ohci-nxp.txt create mode 100644 drivers/usb/gadget/lpc32xx_udc.c create mode 100644 drivers/usb/phy/Kconfig create mode 100644 drivers/usb/phy/Makefile create mode 100644 drivers/usb/phy/isp1301.c create mode 100644 include/linux/usb/isp1301.h