From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7086FC433E2 for ; Thu, 10 Sep 2020 05:54:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 178062075B for ; Thu, 10 Sep 2020 05:54:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1599717299; bh=cPpGIaPhlkZ9mhUTZGuqUk5ZYn/m7WTcl+uGX4hsYYk=; h=From:To:Cc:Subject:Date:List-ID:From; b=Qzc7nLHnU0yglqtvEARnC1MoIhflz/a86YPxzIX8FvflX9ozrViunMMXM1p/lU4ag osZdsNFhhy97FJ48x+t1CRS9/J5EwM2xcIx4JkFKBQgXhYWD8LpM1gjU5AR+Lg0U3I UwZCAP5ak/cNVTs9uzXFzQRvOQug5sNLc9H10PUg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729529AbgIJFyz (ORCPT ); Thu, 10 Sep 2020 01:54:55 -0400 Received: from mail.kernel.org ([198.145.29.99]:40892 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726079AbgIJFwr (ORCPT ); Thu, 10 Sep 2020 01:52:47 -0400 Received: from mail.kernel.org (ip5f5ad5ac.dynamic.kabel-deutschland.de [95.90.213.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 72D8920B1F; Thu, 10 Sep 2020 05:52:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1599717166; bh=cPpGIaPhlkZ9mhUTZGuqUk5ZYn/m7WTcl+uGX4hsYYk=; h=From:To:Cc:Subject:Date:From; b=X7VlLZFvuaXg+r/uKOE563Jo6oEbIu4KoWXNloJIa7xv3ZIVyoaphepMbsNIVFfJD mDiHZgCBbUwaXawjTyF2FTLMD9HdCIhh2FPt3+VyMWUm8fP7xmvaRPRA+fgeEH520n vnoFmT4qmaDcbIV0ICEh68f08d6ST5yDXeY4rK3g= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kGFVj-00E1Ye-Jr; Thu, 10 Sep 2020 07:52:43 +0200 From: Mauro Carvalho Chehab To: Greg Kroah-Hartman Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , John Stultz , Manivannan Sadhasivam , "David S. Miller" , Kishon Vijay Abraham I , Krzysztof Kozlowski , Rob Herring , Rob Herring , Vinod Koul , Yu Chen , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 0/8] Add PHY USB3 drivers for Hikey 970 Date: Thu, 10 Sep 2020 07:52:33 +0200 Message-Id: X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch series add the PHY layer needed in order to support the USB functionality on Hikey 970 boards. v3: - split a namespace patch on two (one with code changes and another one with dt-bindings changes); - placed just the PHY driver on this series. Another series will add the USB HUB driver and the DTS changes required to enable USB support for this board. Mauro Carvalho Chehab (6): phy: hisilicon: phy-hi3670-usb3: use a consistent namespace dts: phy: phy-hi3670-usb3.txt: use a consistent namespace phy: hisilicon: phy-hi3670-usb3: fix coding style phy: hisilicon: phy-hi3670-usb3: change some DT properties dt-bindings: phy: convert phy-kirin970-usb3.txt to yaml MAINTAINERS: add myself as maintainer for Kirin 970 USB PHY Yu Chen (2): phy: hisilicon: add USB physical layer for Kirin 3670 phy: hisilicon: phy-hi3670-usb3: fix some issues at the init code .../bindings/phy/hisilicon,hi3670-usb3.yaml | 72 ++ MAINTAINERS | 9 +- drivers/phy/hisilicon/Kconfig | 10 + drivers/phy/hisilicon/Makefile | 1 + drivers/phy/hisilicon/phy-hi3670-usb3.c | 671 ++++++++++++++++++ 5 files changed, 762 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml create mode 100644 drivers/phy/hisilicon/phy-hi3670-usb3.c -- 2.26.2