From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.codeaurora.org by pdx-caf-mail.web.codeaurora.org (Dovecot) with LMTP id Nnx+MlJIGVtPRwAAmS7hNA ; Thu, 07 Jun 2018 14:59:47 +0000 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 313C3608BA; Thu, 7 Jun 2018 14:59:47 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on pdx-caf-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, FREEMAIL_FROM,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by smtp.codeaurora.org (Postfix) with ESMTP id C3162601C3; Thu, 7 Jun 2018 14:59:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org C3162601C3 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=fail (p=none dis=none) header.from=gmail.com Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935741AbeFGO7p (ORCPT + 25 others); Thu, 7 Jun 2018 10:59:45 -0400 Received: from 212.199.177.27.static.012.net.il ([212.199.177.27]:33475 "EHLO herzl.nuvoton.co.il" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S935721AbeFGO7m (ORCPT ); Thu, 7 Jun 2018 10:59:42 -0400 Received: from taln60.nuvoton.co.il (ntil-fw [212.199.177.25]) by herzl.nuvoton.co.il (8.13.8/8.13.8) with ESMTP id w57EwNmR019457; Thu, 7 Jun 2018 17:58:24 +0300 Received: by taln60.nuvoton.co.il (Postfix, from userid 8441) id 9F2DE62FF0; Thu, 7 Jun 2018 17:58:23 +0300 (IDT) From: avifishman70@gmail.com To: gregkh@linuxfoundation.org, stern@rowland.harvard.edu Cc: avifishman70@gmail.com, tmaimon77@gmail.com, venture@google.com, yuenn@google.com, brendanhiggins@google.com, mathias.nyman@linux.intel.com, bjorn.andersson@linaro.org, jhogan@kernel.org, albeu@free.fr, chunfeng.yun@mediatek.com, tony@atomide.com, baolu.lu@linux.intel.com, elder@linaro.org, digetx@gmail.com, kstewart@linuxfoundation.org, hdegoede@redhat.com, linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, openbmc@lists.ozlabs.org, robh+dt@kernel.org, mark.rutland@arm.com, devicetree@vger.kernel.org, Avi Fishman Subject: [PATCH v4 0/3] USB host: Add USB ehci support for nuvoton npcm7xx Date: Thu, 7 Jun 2018 17:58:18 +0300 Message-Id: <20180607145821.322979-1-avifishman70@gmail.com> X-Mailer: git-send-email 2.14.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Avi Fishman Changes since version 3: - Follow Rob Herring comments to change dt-bindings commit subject Changes since version 2: - Follow Sergei Shtylyov comments to rename the node name in in device tree documentation Changes since version 1: - Follow Rob Herring comments in device tree documentation - minor log error fix in ehci-npcm7xx.c This patch adds support for ehci controller for the Nuvoton npcm7xx platform. Most of the code was taken from ehci-spear.c + specific initialization code Avi Fishman (3): USB host: Add USB ehci support for nuvoton npcm7xx platform dt-bindings: usb: new ehci-npcm7xx dt MAINTAINERS: add subfolders for nuvoton *npcm* .../devicetree/bindings/usb/npcm7xx-usb.txt | 17 ++ MAINTAINERS | 3 + drivers/usb/host/Kconfig | 8 + drivers/usb/host/Makefile | 1 + drivers/usb/host/ehci-npcm7xx.c | 212 +++++++++++++++++++++ 5 files changed, 241 insertions(+) create mode 100644 Documentation/devicetree/bindings/usb/npcm7xx-usb.txt create mode 100644 drivers/usb/host/ehci-npcm7xx.c -- 2.14.1