From patchwork Wed Aug 1 10:49:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Crispin X-Patchwork-Id: 10552139 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D328414E2 for ; Wed, 1 Aug 2018 10:50:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C31602ACD5 for ; Wed, 1 Aug 2018 10:50:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B79D12AE05; Wed, 1 Aug 2018 10:50:18 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6A1602ACD5 for ; Wed, 1 Aug 2018 10:50:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388689AbeHAMfH (ORCPT ); Wed, 1 Aug 2018 08:35:07 -0400 Received: from nbd.name ([46.4.11.11]:55686 "EHLO nbd.name" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387462AbeHAMfH (ORCPT ); Wed, 1 Aug 2018 08:35:07 -0400 From: John Crispin To: Alban Bedel , Kate Stewart , Greg Kroah-Hartman Cc: linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, John Crispin Subject: [PATCH V2 0/3] phy: qcom-ipq4019-usb: add new driver Date: Wed, 1 Aug 2018 12:49:38 +0200 Message-Id: <20180801104941.29432-1-john@phrozen.org> X-Mailer: git-send-email 2.11.0 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This series adds a PHY driver for the Qualcomm Dakota SoC Changes V1->V2 * fix the compat string inside the binding doc * fix up the reset names inside the binding doc * reflect the above changes in the driver and dts/i files John Crispin (3): dt-bindings: phy-qcom-ipq4019-usb: add binding document phy: qcom-ipq4019-usb: add driver for QCOM/IPQ4019 qcom: ipq4019: add USB devicetree nodes .../bindings/phy/phy-qcom-ipq4019-usb.txt | 21 +++ arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 20 +++ arch/arm/boot/dts/qcom-ipq4019.dtsi | 76 ++++++++ drivers/phy/qualcomm/Kconfig | 7 + drivers/phy/qualcomm/Makefile | 1 + drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c | 193 +++++++++++++++++++++ 6 files changed, 318 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/phy-qcom-ipq4019-usb.txt create mode 100644 drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c