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=-10.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=ham 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 5D512C43461 for ; Thu, 17 Sep 2020 10:42:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0D07A2074B for ; Thu, 17 Sep 2020 10:42:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600339370; bh=9k9zMYoo7wLOALaUaUO6kuKmP2XcikxIb3HqIINf7VU=; h=From:To:Cc:Subject:Date:List-ID:From; b=qBArrW7fklPQpDH2YEaCAtUU94zYZAhT7z44X8auWGcEPg7iYVs74iBV8jYctOpEI IwXHoiydqUinjTziF7rwj5z5fI2vjgh/CecLzUzfnPBSQI2Odtz2YgWLOG/BxQHI1N /FBaPhoY+T2HyqsAhJwkmBaqPXJazxpOWBAQoeGI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726579AbgIQKmr (ORCPT ); Thu, 17 Sep 2020 06:42:47 -0400 Received: from mail.kernel.org ([198.145.29.99]:53430 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726410AbgIQKmX (ORCPT ); Thu, 17 Sep 2020 06:42:23 -0400 Received: from mail.kernel.org (ip5f5ad5d2.dynamic.kabel-deutschland.de [95.90.213.210]) (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 F366021974; Thu, 17 Sep 2020 10:42:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600339342; bh=9k9zMYoo7wLOALaUaUO6kuKmP2XcikxIb3HqIINf7VU=; h=From:To:Cc:Subject:Date:From; b=EPQGk1AIsg3Z+pONCVNoO3iIhe2T4DJKru8TzuTb3Co84VOHkjZEJXzucW8M+Mn9d U7ciA6959RmEk6fLE+x9AHEOlh7NFu32eO1smz8ctXlb8JCmP5hEjtF4ZeLTc8p+ej AfHtKHfAAm7e08Js6/NWjwlW2g5X+/zJsDSUcTrI= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kIrMp-005WZQ-J9; Thu, 17 Sep 2020 12:42:19 +0200 From: Mauro Carvalho Chehab To: Greg KH Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , John Stultz , Manivannan Sadhasivam , Vinod Koul , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: [PATCH v4 0/8] Add a staging driver for Hikey 970 PHY laywer Date: Thu, 17 Sep 2020 12:42:04 +0200 Message-Id: X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Greg, This series add the phy layer needed for the USB stack to work on Hikey 970. The main difference against v3 is that I'm sending this one via staging. In order for this phy to actually work properly, we still need to apply one quirk patch at dwc3, which fixes some issues with USB HID driver. I'm working with Felipe and Rob in order to add the quirk on an approach that would be acceptable for both DT and dwc3 maintainers. Due to that, I'm not sending the final patch that adds the the needed dt bindings for this board. Thanks! Mauro Mauro Carvalho Chehab (6): staging: hikey9xx: add build for the Kirin 970 PHY driver staging: hikey9xx: phy-hi3670-usb3: use a consistent namespace staging: hikey9xx: phy-hi3670-usb3.txt: use a consistent namespace staging: hikey9xx: phy-hi3670-usb3: fix coding style staging: hikey9xx: phy-hi3670-usb3: change some DT properties staging: hikey9xx: convert phy-kirin970-usb3.txt to yaml Yu Chen (2): staging: hikey9xx: add USB physical layer for Kirin 3670 staging: hikey9xx: phy-hi3670-usb3: fix some issues at the init code drivers/staging/hikey9xx/Kconfig | 11 + drivers/staging/hikey9xx/Makefile | 2 + drivers/staging/hikey9xx/phy-hi3670-usb3.c | 671 ++++++++++++++++++ drivers/staging/hikey9xx/phy-hi3670-usb3.yaml | 72 ++ 4 files changed, 756 insertions(+) create mode 100644 drivers/staging/hikey9xx/phy-hi3670-usb3.c create mode 100644 drivers/staging/hikey9xx/phy-hi3670-usb3.yaml -- 2.26.2