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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, 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 D5DE4C43603 for ; Wed, 18 Dec 2019 02:42:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B654021835 for ; Wed, 18 Dec 2019 02:42:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726616AbfLRCmu (ORCPT ); Tue, 17 Dec 2019 21:42:50 -0500 Received: from mail-sh.amlogic.com ([58.32.228.43]:34131 "EHLO mail-sh.amlogic.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726387AbfLRCmu (ORCPT ); Tue, 17 Dec 2019 21:42:50 -0500 Received: from droid10.amlogic.com (10.18.11.213) by mail-sh.amlogic.com (10.18.11.5) with Microsoft SMTP Server id 15.1.1591.10; Wed, 18 Dec 2019 10:43:23 +0800 From: Hanjie Lin To: Jerome Brunet , Neil Armstrong , Rob Herring , Greg Kroah-Hartman , Felipe Balbi , Kevin Hilman CC: Hanjie Lin , , , , , Carlo Caione , Michael Turquette , Stephen Boyd , Martin Blumenstingl , Liang Yang , Jianxin Pan , Qiufang Dai , Jian Hu , Victor Wan , Yue Wang , Xingyu Chen Subject: [PATCH v2 0/6] arm64: meson: Add support for USB on Amlogic A1 Date: Wed, 18 Dec 2019 10:42:18 +0800 Message-ID: <1576636944-196192-1-git-send-email-hanjie.lin@amlogic.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.18.11.213] Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This patchset adds support for USB on Amlogic A1 SoCs. This patchset is composed with : - bindings of the PHY - bindings of the USB Control Glue - PHY Driver - USB Control Glue driver - dts of the PHY - dts of the USB Controller The Amlogic A1 USB Complex is composed of : - 1 DWC3 USB controller for USB2 Host functionality - 1 USB2 PHY for USB2 Host functionality The USB Control Glue setups the clocks and the reset about DWC3 USB controller, and binds to the USB2 PHY. It also configures the 8bit UTMI interfaces for the USB2 PHY, including setting USB2 phy mode. The USB2 PHY driver initializes the phy analog settings, phy PLL setup and phy tuning. This patchset is based on A1 clock/power domain/reset series at [0]. Changes since v1:[1] - integrate glue and phy drivers into g12a's [0] https://patchwork.kernel.org/project/linux-amlogic/list/?series=185477 https://patchwork.kernel.org/project/linux-amlogic/list/?series=180055 https://patchwork.kernel.org/project/linux-amlogic/list/?series=189643 [1] : https://lore.kernel.org/linux-amlogic/1574405757-76184-1-git-send-email-hanjie.lin@amlogic.com/ Hanjie Lin (6): dt-bindings: phy: Add Amlogic A1 USB2 PHY Bindings dt-bindings: usb: dwc3: Add the Amlogic A1 Family DWC3 Glue Bindings phy: amlogic: Add Amlogic A1 USB2 PHY Driver usb: dwc3: Add Amlogic A1 DWC3 glue arm64: dts: meson: a1: Enable USB2 PHY arm64: dts: meson: a1: Enable DWC3 controller .../bindings/phy/amlogic,meson-a1-usb2-phy.yaml | 55 +++++++++++ .../bindings/usb/amlogic,meson-g12a-usb-ctrl.yaml | 32 +++++++ arch/arm64/boot/dts/amlogic/meson-a1.dtsi | 44 +++++++++ drivers/phy/amlogic/phy-meson-g12a-usb2.c | 102 +++++++++++++++------ drivers/usb/dwc3/dwc3-meson-g12a.c | 69 ++++++++++---- 5 files changed, 254 insertions(+), 48 deletions(-) create mode 100644 Documentation/devicetree/bindings/phy/amlogic,meson-a1-usb2-phy.yaml -- 2.7.4