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 3D88FC33CB6 for ; Fri, 17 Jan 2020 00:22:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1BA9A24680 for ; Fri, 17 Jan 2020 00:22:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733089AbgAQAWI (ORCPT ); Thu, 16 Jan 2020 19:22:08 -0500 Received: from mail-sh.amlogic.com ([58.32.228.43]:52681 "EHLO mail-sh.amlogic.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728963AbgAQAWF (ORCPT ); Thu, 16 Jan 2020 19:22:05 -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; Fri, 17 Jan 2020 08:22:31 +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 v6 0/6] arm64: meson: Add support for USB on Amlogic A1 Date: Fri, 17 Jan 2020 08:21:38 +0800 Message-ID: <1579220504-110067-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 Changes since v2:[2] - modify amlogic,meson-g12a-usb-ctrl.yaml with dt_binding_check tool - phy/glue driver use of_device_get_match_data to distinguish A1 from G12A Changes since v3:[3] - fix bindings mistakes of the PHY according Rob's comments - fix bindings mistakes of the USB Control Glue according Rob's comments - phy driver add xtal_usb_phy clock which moved from glue driver - glue driver use otg_mode instead of soc_id to support otg function Changes since v4:[4] - phy driver revert reset-names changes - phy driver change clock name to "xtal" to consistent with g12a - glue driver add drvdata otg_switch_supported Changes since v5:[5] - integrate phy bindings into g12a - modify glue bindings format according to martin's advices - glue driver add dwc3_meson_g12a_otg_init() do otg related work - glue driver add clk_bulk_disable_unprepare() in remove [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 [2] : https://lore.kernel.org/linux-amlogic/1576636944-196192-1-git-send-email-hanjie.lin@amlogic.com [3] : https://lore.kernel.org/linux-amlogic/1577428606-69855-1-git-send-email-hanjie.lin@amlogic.com [4] : https://lore.kernel.org/linux-amlogic/1578537045-23260-1-git-send-email-hanjie.lin@amlogic.com [5] : https://lore.kernel.org/linux-amlogic/1578634957-54826-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-g12a-usb2-phy.yaml | 15 ++ .../bindings/usb/amlogic,meson-g12a-usb-ctrl.yaml | 38 ++++- arch/arm64/boot/dts/amlogic/meson-a1.dtsi | 44 ++++++ drivers/phy/amlogic/phy-meson-g12a-usb2.c | 85 ++++++---- drivers/usb/dwc3/dwc3-meson-g12a.c | 172 ++++++++++++++------- 5 files changed, 269 insertions(+), 85 deletions(-) -- 2.7.4 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=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,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 1EE63C33CAF for ; Fri, 17 Jan 2020 00:22:25 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E4F042073A for ; Fri, 17 Jan 2020 00:22:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="RgcSW9JH" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E4F042073A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=amlogic.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=RVyvaHzlyi3qkGX0n507L7ZhmByLD89UWY2Ob1wMOP4=; b=RgcSW9JHP9nRXQ hvsUu/VOdx2ncmt+TrwmRNRk31Li6wkO85Z1MuJbau62UnwXG1muezXrl8KQkFE5IN/kQ9gMRloRe QKkyLHezrkhh1MYkc3MDFhSXbcl64X1DZ9l3BDrOlrHQpRHjyEHdyTdhmbw4mXk4yF+nH4DwJjhjw oLd39c/ZOL1xwu4GgYGpIy3miHyidcvlPtGSFB6arHwQbtbPKVTN/t6Fa0KRIr2dfnHvVNNOu6iVU 3WqiH0pF2k7xmN+7cVM+akD27cFszDcixEhjrFLk3uOqzB99gBmXTLBUOVQgT4KHu2m8utROcFfxl DiLo4wflKUKF6wC5fthw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1isFP1-0001la-Uo; Fri, 17 Jan 2020 00:22:19 +0000 Received: from mail-sh.amlogic.com ([58.32.228.43]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1isFOy-0001kN-Rq; Fri, 17 Jan 2020 00:22:18 +0000 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; Fri, 17 Jan 2020 08:22:31 +0800 From: Hanjie Lin To: Jerome Brunet , Neil Armstrong , Rob Herring , Greg Kroah-Hartman , Felipe Balbi , Kevin Hilman Subject: [PATCH v6 0/6] arm64: meson: Add support for USB on Amlogic A1 Date: Fri, 17 Jan 2020 08:21:38 +0800 Message-ID: <1579220504-110067-1-git-send-email-hanjie.lin@amlogic.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.18.11.213] X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200116_162216_902385_FF1DA91D X-CRM114-Status: UNSURE ( 7.79 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Hanjie Lin , Victor Wan , Jianxin Pan , Stephen Boyd , Michael Turquette , linux-usb@vger.kernel.org, Yue Wang , Martin Blumenstingl , Liang Yang , Qiufang Dai , Xingyu Chen , Carlo Caione , linux-amlogic@lists.infradead.org, linux-arm-kernel@lists.infradead.org, Jian Hu Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.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 Changes since v2:[2] - modify amlogic,meson-g12a-usb-ctrl.yaml with dt_binding_check tool - phy/glue driver use of_device_get_match_data to distinguish A1 from G12A Changes since v3:[3] - fix bindings mistakes of the PHY according Rob's comments - fix bindings mistakes of the USB Control Glue according Rob's comments - phy driver add xtal_usb_phy clock which moved from glue driver - glue driver use otg_mode instead of soc_id to support otg function Changes since v4:[4] - phy driver revert reset-names changes - phy driver change clock name to "xtal" to consistent with g12a - glue driver add drvdata otg_switch_supported Changes since v5:[5] - integrate phy bindings into g12a - modify glue bindings format according to martin's advices - glue driver add dwc3_meson_g12a_otg_init() do otg related work - glue driver add clk_bulk_disable_unprepare() in remove [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 [2] : https://lore.kernel.org/linux-amlogic/1576636944-196192-1-git-send-email-hanjie.lin@amlogic.com [3] : https://lore.kernel.org/linux-amlogic/1577428606-69855-1-git-send-email-hanjie.lin@amlogic.com [4] : https://lore.kernel.org/linux-amlogic/1578537045-23260-1-git-send-email-hanjie.lin@amlogic.com [5] : https://lore.kernel.org/linux-amlogic/1578634957-54826-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-g12a-usb2-phy.yaml | 15 ++ .../bindings/usb/amlogic,meson-g12a-usb-ctrl.yaml | 38 ++++- arch/arm64/boot/dts/amlogic/meson-a1.dtsi | 44 ++++++ drivers/phy/amlogic/phy-meson-g12a-usb2.c | 85 ++++++---- drivers/usb/dwc3/dwc3-meson-g12a.c | 172 ++++++++++++++------- 5 files changed, 269 insertions(+), 85 deletions(-) -- 2.7.4 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,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 C0D0DC33CB6 for ; Fri, 17 Jan 2020 00:22:41 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8A47E2064C for ; Fri, 17 Jan 2020 00:22:41 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="uO2HZUwT" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8A47E2064C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=amlogic.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-amlogic-bounces+linux-amlogic=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=n5e/KNFs0l9Khb4t+DwQOq549eeOgeB00TpY+oViNb8=; b=uO2HZUwTWjBHRJ m359TkpqfEy0U+87x6tSSCDZYtMejNy/SSvlA108V6og1J/xY4hhkzP2RY8DxXCbOOAnPF9n+jdEq IxoQIriRc5qP0NExuzSUWUWnAyYL97amG6t5hTfvTZg2jpMFQbhkDt4QtiPGJJ3TL3aoCVU6fzCiG ONg1sCQUvm6iyPdwE5hSSeCW+Q8mgQFeNHrQp9RC24i4svpIfzKp1XB/2wJqqrGFZYCBHN5BrFLzC DQAxhC8SrKomHo/luEaYZ8NKvL7VMkYCaK9mCv34IsiwFzH20PuydNevsF4L2Z0gIikNmhFChUDEe AQJ/L9Wz4E5mHW7r7IfA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1isFPH-0001zM-Gs; Fri, 17 Jan 2020 00:22:35 +0000 Received: from mail-sh.amlogic.com ([58.32.228.43]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1isFOy-0001kN-Rq; Fri, 17 Jan 2020 00:22:18 +0000 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; Fri, 17 Jan 2020 08:22:31 +0800 From: Hanjie Lin To: Jerome Brunet , Neil Armstrong , Rob Herring , Greg Kroah-Hartman , Felipe Balbi , Kevin Hilman Subject: [PATCH v6 0/6] arm64: meson: Add support for USB on Amlogic A1 Date: Fri, 17 Jan 2020 08:21:38 +0800 Message-ID: <1579220504-110067-1-git-send-email-hanjie.lin@amlogic.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.18.11.213] X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200116_162216_902385_FF1DA91D X-CRM114-Status: UNSURE ( 7.79 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-amlogic@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Hanjie Lin , Victor Wan , Jianxin Pan , Stephen Boyd , Michael Turquette , linux-usb@vger.kernel.org, Yue Wang , Martin Blumenstingl , Liang Yang , Qiufang Dai , Xingyu Chen , Carlo Caione , linux-amlogic@lists.infradead.org, linux-arm-kernel@lists.infradead.org, Jian Hu Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-amlogic" Errors-To: linux-amlogic-bounces+linux-amlogic=archiver.kernel.org@lists.infradead.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 Changes since v2:[2] - modify amlogic,meson-g12a-usb-ctrl.yaml with dt_binding_check tool - phy/glue driver use of_device_get_match_data to distinguish A1 from G12A Changes since v3:[3] - fix bindings mistakes of the PHY according Rob's comments - fix bindings mistakes of the USB Control Glue according Rob's comments - phy driver add xtal_usb_phy clock which moved from glue driver - glue driver use otg_mode instead of soc_id to support otg function Changes since v4:[4] - phy driver revert reset-names changes - phy driver change clock name to "xtal" to consistent with g12a - glue driver add drvdata otg_switch_supported Changes since v5:[5] - integrate phy bindings into g12a - modify glue bindings format according to martin's advices - glue driver add dwc3_meson_g12a_otg_init() do otg related work - glue driver add clk_bulk_disable_unprepare() in remove [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 [2] : https://lore.kernel.org/linux-amlogic/1576636944-196192-1-git-send-email-hanjie.lin@amlogic.com [3] : https://lore.kernel.org/linux-amlogic/1577428606-69855-1-git-send-email-hanjie.lin@amlogic.com [4] : https://lore.kernel.org/linux-amlogic/1578537045-23260-1-git-send-email-hanjie.lin@amlogic.com [5] : https://lore.kernel.org/linux-amlogic/1578634957-54826-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-g12a-usb2-phy.yaml | 15 ++ .../bindings/usb/amlogic,meson-g12a-usb-ctrl.yaml | 38 ++++- arch/arm64/boot/dts/amlogic/meson-a1.dtsi | 44 ++++++ drivers/phy/amlogic/phy-meson-g12a-usb2.c | 85 ++++++---- drivers/usb/dwc3/dwc3-meson-g12a.c | 172 ++++++++++++++------- 5 files changed, 269 insertions(+), 85 deletions(-) -- 2.7.4 _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic