From patchwork Mon Jan 27 19:32:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Marko X-Patchwork-Id: 11353175 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id E6C7E112B for ; Mon, 27 Jan 2020 19:33:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BA5FF24681 for ; Mon, 27 Jan 2020 19:33:29 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=sartura-hr.20150623.gappssmtp.com header.i=@sartura-hr.20150623.gappssmtp.com header.b="SaOCai35" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726443AbgA0Td3 (ORCPT ); Mon, 27 Jan 2020 14:33:29 -0500 Received: from mail-wr1-f67.google.com ([209.85.221.67]:41578 "EHLO mail-wr1-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725938AbgA0Td3 (ORCPT ); Mon, 27 Jan 2020 14:33:29 -0500 Received: by mail-wr1-f67.google.com with SMTP id c9so12909018wrw.8 for ; Mon, 27 Jan 2020 11:33:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sartura-hr.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Ur1xElH2a3KjCXwt5yMSaZ0mU4+2qf1O6RR8Y+YILRA=; b=SaOCai35YyJqZx66q8+dYnvNFHbi6P0uazgnvAUFnNMAv0/+HnMLLBCVDXASnIyvvP OqlNO1SD/awTxexg7hYdHhEvj/aeIXcR53Bxc3I57U8aCShZ3aFFTrvC1/Rk0v9tphHL 1pDhC3uqkaQ9A4G/dq0MdlG4BmSg0YfhQVMepPsURWXEm5wg24iG6WYKSmsWunng6Z8m ylEavYUGbgbC0vDyEuhSMRVVdMJYqol6my3ib1D0UfSvD+a/ZqFq+b6kOASCjo9iucwN qNXaPwF/umty8RW0gSHY+UkD2ZXmAdBd/14cjSzNvpOyLLYC7/f6uZPJ9u4z3XVkeg3t 00AA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Ur1xElH2a3KjCXwt5yMSaZ0mU4+2qf1O6RR8Y+YILRA=; b=BXxhx4AOfQpPljeFlhF5keyr6zfK6kCSQoaJ1tJIdv0VUabpf93kuFZ9pfNFbSukh2 faoLOUy51+L58CY9+VSeKt3Wt9zABj9DadpCJxCd+cF0zkXl33bohISuSYWB2uqghBqz o6YXzv5T7VQoPkpL30HetHf/JkbgfE9WN2XqrxR+1ov7aFxEa3Rh1Qca2IicTQSRgAsM ovvHGN5VrwpSDpkGMZngtMYzzgJfvCFu9Xpfk8PFb5A0ZTDbtd5JP+GdcZdz0Di0LLyE pSFVegP9gVYyAmRACggVGrl7bkemkbyBNVCQLpCQaafaWXdPvaHiHzMUkoCl6L+SOP3n wNPg== X-Gm-Message-State: APjAAAVoomA+A2oEAN3LSLLjPaLmyueHJwp6XoGSpTrGAq3dM1pieUuA jmDUKewfeqODsmXei+HFlJOwzzEDJQJG0A== X-Google-Smtp-Source: APXvYqy4945PNmEto2PtoO6wzyGnfls1eEjQUM0L2di3wLY1EFQ5IM88HKNnQ/a7Ra7DYEa7OTvkig== X-Received: by 2002:adf:ee88:: with SMTP id b8mr25011881wro.249.1580153606551; Mon, 27 Jan 2020 11:33:26 -0800 (PST) Received: from localhost.localdomain ([188.252.202.167]) by smtp.googlemail.com with ESMTPSA id c15sm21895211wrt.1.2020.01.27.11.33.25 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jan 2020 11:33:25 -0800 (PST) From: Robert Marko To: john@phrozen.org, agross@kernel.org, linux-arm-msm@vger.kernel.org Cc: Robert Marko , Luka Perkov Subject: [PATCH v2 1/3] phy: add driver for Qualcomm IPQ40xx USB PHY Date: Mon, 27 Jan 2020 20:32:29 +0100 Message-Id: <20200127193230.1539233-1-robert.marko@sartura.hr> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org From: John Crispin Add a driver to setup the USB phy on Qualcom Dakota SoCs. The driver sets up HS and SS phys. In case of HS some magic values need to be written to magic offsets. These were taken from the SDK driver. Signed-off-by: John Crispin Signed-off-by: Robert Marko Cc: Luka Perkov --- Changes from v1 to v2: * Remove magic writes as they are not needed drivers/phy/qualcomm/Kconfig | 7 + drivers/phy/qualcomm/Makefile | 1 + drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c | 152 ++++++++++++++++++++ 3 files changed, 160 insertions(+) create mode 100644 drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c diff --git a/drivers/phy/qualcomm/Kconfig b/drivers/phy/qualcomm/Kconfig index e46824da29f6..964bd5d784d2 100644 --- a/drivers/phy/qualcomm/Kconfig +++ b/drivers/phy/qualcomm/Kconfig @@ -18,6 +18,13 @@ config PHY_QCOM_APQ8064_SATA depends on OF select GENERIC_PHY +config PHY_QCOM_IPQ4019_USB + tristate "Qualcomm IPQ4019 USB PHY module" + depends on OF && ARCH_QCOM + select GENERIC_PHY + help + Support for the USB PHY on QCOM IPQ4019/Dakota chipsets. + config PHY_QCOM_IPQ806X_SATA tristate "Qualcomm IPQ806x SATA SerDes/PHY driver" depends on ARCH_QCOM diff --git a/drivers/phy/qualcomm/Makefile b/drivers/phy/qualcomm/Makefile index 283251d6a5d9..8afe6c4f5178 100644 --- a/drivers/phy/qualcomm/Makefile +++ b/drivers/phy/qualcomm/Makefile @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 obj-$(CONFIG_PHY_ATH79_USB) += phy-ath79-usb.o obj-$(CONFIG_PHY_QCOM_APQ8064_SATA) += phy-qcom-apq8064-sata.o +obj-$(CONFIG_PHY_QCOM_IPQ4019_USB) += phy-qcom-ipq4019-usb.o obj-$(CONFIG_PHY_QCOM_IPQ806X_SATA) += phy-qcom-ipq806x-sata.o obj-$(CONFIG_PHY_QCOM_PCIE2) += phy-qcom-pcie2.o obj-$(CONFIG_PHY_QCOM_QMP) += phy-qcom-qmp.o diff --git a/drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c b/drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c new file mode 100644 index 000000000000..7efebae6b6fd --- /dev/null +++ b/drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c @@ -0,0 +1,152 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* + * Copyright (C) 2018 John Crispin + * + * Based on code from + * Allwinner Technology Co., Ltd. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +struct ipq4019_usb_phy { + struct device *dev; + struct phy *phy; + void __iomem *base; + struct reset_control *por_rst; + struct reset_control *srif_rst; +}; + +static int ipq4019_ss_phy_power_off(struct phy *_phy) +{ + struct ipq4019_usb_phy *phy = phy_get_drvdata(_phy); + + reset_control_assert(phy->por_rst); + msleep(10); + + return 0; +} + +static int ipq4019_ss_phy_power_on(struct phy *_phy) +{ + struct ipq4019_usb_phy *phy = phy_get_drvdata(_phy); + + ipq4019_ss_phy_power_off(_phy); + + reset_control_deassert(phy->por_rst); + + return 0; +} + +static struct phy_ops ipq4019_usb_ss_phy_ops = { + .power_on = ipq4019_ss_phy_power_on, + .power_off = ipq4019_ss_phy_power_off, +}; + +static int ipq4019_hs_phy_power_off(struct phy *_phy) +{ + struct ipq4019_usb_phy *phy = phy_get_drvdata(_phy); + + reset_control_assert(phy->por_rst); + msleep(10); + + reset_control_assert(phy->srif_rst); + msleep(10); + + return 0; +} + +static int ipq4019_hs_phy_power_on(struct phy *_phy) +{ + struct ipq4019_usb_phy *phy = phy_get_drvdata(_phy); + + ipq4019_hs_phy_power_off(_phy); + + reset_control_deassert(phy->srif_rst); + msleep(10); + + reset_control_deassert(phy->por_rst); + + return 0; +} + +static struct phy_ops ipq4019_usb_hs_phy_ops = { + .power_on = ipq4019_hs_phy_power_on, + .power_off = ipq4019_hs_phy_power_off, +}; + +static const struct of_device_id ipq4019_usb_phy_of_match[] = { + { .compatible = "qcom,usb-hs-ipq4019-phy", .data = &ipq4019_usb_hs_phy_ops}, + { .compatible = "qcom,usb-ss-ipq4019-phy", .data = &ipq4019_usb_ss_phy_ops}, + { }, +}; +MODULE_DEVICE_TABLE(of, ipq4019_usb_phy_of_match); + +static int ipq4019_usb_phy_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct resource *res; + struct phy_provider *phy_provider; + struct ipq4019_usb_phy *phy; + const struct of_device_id *match; + + match = of_match_device(ipq4019_usb_phy_of_match, &pdev->dev); + if (!match) + return -ENODEV; + + phy = devm_kzalloc(dev, sizeof(*phy), GFP_KERNEL); + if (!phy) + return -ENOMEM; + + phy->dev = &pdev->dev; + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + phy->base = devm_ioremap_resource(&pdev->dev, res); + if (IS_ERR(phy->base)) { + dev_err(dev, "failed to remap register memory\n"); + return PTR_ERR(phy->base); + } + + phy->por_rst = devm_reset_control_get(phy->dev, "por_rst"); + if (IS_ERR(phy->por_rst)) { + if (PTR_ERR(phy->por_rst) != -EPROBE_DEFER) + dev_err(dev, "POR reset is missing\n"); + return PTR_ERR(phy->por_rst); + } + + phy->srif_rst = devm_reset_control_get_optional(phy->dev, "srif_rst"); + if (IS_ERR(phy->srif_rst)) + return PTR_ERR(phy->srif_rst); + + phy->phy = devm_phy_create(dev, NULL, match->data); + if (IS_ERR(phy->phy)) { + dev_err(dev, "failed to create PHY\n"); + return PTR_ERR(phy->phy); + } + phy_set_drvdata(phy->phy, phy); + + phy_provider = devm_of_phy_provider_register(dev, of_phy_simple_xlate); + + return PTR_ERR_OR_ZERO(phy_provider); +} + +static struct platform_driver ipq4019_usb_phy_driver = { + .probe = ipq4019_usb_phy_probe, + .driver = { + .of_match_table = ipq4019_usb_phy_of_match, + .name = "ipq4019-usb-phy", + } +}; +module_platform_driver(ipq4019_usb_phy_driver); + +MODULE_DESCRIPTION("QCOM/IPQ4019 USB phy driver"); +MODULE_AUTHOR("John Crispin "); +MODULE_LICENSE("GPL v2"); From patchwork Mon Jan 27 19:32:31 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Marko X-Patchwork-Id: 11353177 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 46FE3112B for ; Mon, 27 Jan 2020 19:33:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2516D24681 for ; Mon, 27 Jan 2020 19:33:41 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=sartura-hr.20150623.gappssmtp.com header.i=@sartura-hr.20150623.gappssmtp.com header.b="y7pYBP6m" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725938AbgA0Tdk (ORCPT ); Mon, 27 Jan 2020 14:33:40 -0500 Received: from mail-wr1-f65.google.com ([209.85.221.65]:38188 "EHLO mail-wr1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725893AbgA0Tdk (ORCPT ); Mon, 27 Jan 2020 14:33:40 -0500 Received: by mail-wr1-f65.google.com with SMTP id y17so12912717wrh.5 for ; Mon, 27 Jan 2020 11:33:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sartura-hr.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=n+X3gDNQCPJKis4fY2ahlPVwAEpWtIPaMVSozOCGWpU=; b=y7pYBP6m6yVO/fF4JCujCP3wp9d3WDz0iYI/PqTiwDI1GSBAEeotf/LjCjKpaV8pXP 4zbtGanFZMY5rWQoUKKFTaySrm7T42+GyhVKH4I8NJTMcO7jYJONDQkmsvlF3BZkhiZv 6+j/UKQFleKH0nDli/45Nl2Vl+PJA8Rg6aSCAz+t9A0mnCtq14PcWBgk/R9fAfT3F2S9 8ZDyA08bkeRPc66baUpZAGqmPtWb+6JvSSo3ZXUl99GDuuS8E1R2IowActzxs7OQ5i3N m/Nv7ZE7WyAqBMZlEieVwSqGUW/qtsrDkNZ2ya5HwA0FKreaD0mmrmgivFyyhpkKJoU+ 6mZA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=n+X3gDNQCPJKis4fY2ahlPVwAEpWtIPaMVSozOCGWpU=; b=uNZikOT7XECXf+zmQ4TOGvGlGcn47NbSTLDlaZaznro7xbov/4c/FU6RDlDhdEPYmw TjbvHVgJfsbKd3rMh2heibjKUbgCa8H8v1T09S0WTBKfuwwu3uP3LnyHQEEigenbYjUK +XXopfh5EF2g1iqm1aCbpu7O3HfB4u1z/C31nwFOd6CjvA7u5N9cN2vsqld7qxoZvS86 bcGAbFRFofpOyhdea1gmSu5X0hRzUiggUQUX4JElsCbpPnhXUing2624oC7WZdXbtqof MSXkUyjJX4xm86Xy9GpEVzQrw5L0G51aOuIWyYG4yjOb4XtYHYEobbiJn//GxdPudUEP G5ag== X-Gm-Message-State: APjAAAWzUs4iS+HfJeyTH8vfAIPHc07EckwDIZn2/g/4sLhy35Oq/UFp Y5vLuxc4RYzaxR6GuBAOy+vrqQ== X-Google-Smtp-Source: APXvYqxLauRhMYtTFly5d9T2s3leG8xk6KXANDCqytuyVd6kDzn6cGlGxYWErqZkMv+1uVAAkvyP/A== X-Received: by 2002:a5d:428c:: with SMTP id k12mr25066000wrq.57.1580153618347; Mon, 27 Jan 2020 11:33:38 -0800 (PST) Received: from localhost.localdomain ([188.252.202.167]) by smtp.googlemail.com with ESMTPSA id c15sm21895211wrt.1.2020.01.27.11.33.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jan 2020 11:33:37 -0800 (PST) From: Robert Marko To: john@phrozen.org, agross@kernel.org, linux-arm-msm@vger.kernel.org Cc: Robert Marko , Luka Perkov Subject: [PATCH v2 2/3] dt-bindings: phy-qcom-ipq4019-usb: add binding document Date: Mon, 27 Jan 2020 20:32:31 +0100 Message-Id: <20200127193230.1539233-2-robert.marko@sartura.hr> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200127193230.1539233-1-robert.marko@sartura.hr> References: <20200127193230.1539233-1-robert.marko@sartura.hr> MIME-Version: 1.0 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org This patch adds the binding documentation for the HS/SS USB PHY found inside Qualcom Dakota SoCs. Signed-off-by: John Crispin Signed-off-by: Robert Marko Cc: Luka Perkov --- .../bindings/phy/qcom-usb-ipq4019-phy.yaml | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml diff --git a/Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml b/Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml new file mode 100644 index 000000000000..6473731b07a1 --- /dev/null +++ b/Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml @@ -0,0 +1,45 @@ +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) +%YAML 1.2 +--- +$id: "http://devicetree.org/schemas/phy/qcom-usb-ipq4019-phy.yaml#" +$schema: "http://devicetree.org/meta-schemas/core.yaml#" + +title: Qualcom IPQ40xx Dakota HS/SS USB PHY + +properties: + compatible: + enum: + - qcom,usb-ss-ipq4019-phy + - qcom,usb-hs-ipq4019-phy + + reg: + maxItems: 1 + + resets: + maxItems: 2 + + reset-names: + items: + - const: por_rst + - const: srif_rst + + "#phy-cells": + const: 0 + +required: + - compatible + - reg + - resets + - reset-names + - "#phy-cells" + +examples: + - | + hsphy@a8000 { + compatible = "qcom,usb-hs-ipq4019-phy"; + phy-cells = <0>; + reg = <0xa8000 0x40>; + resets = <&gcc USB2_HSPHY_POR_ARES>, + <&gcc USB2_HSPHY_S_ARES>; + reset-names = "por_rst", "srif_rst"; + }; From patchwork Mon Jan 27 19:32:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Marko X-Patchwork-Id: 11353179 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id EF91892A for ; Mon, 27 Jan 2020 19:33:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CCC3724682 for ; Mon, 27 Jan 2020 19:33:51 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=sartura-hr.20150623.gappssmtp.com header.i=@sartura-hr.20150623.gappssmtp.com header.b="wAio5wG9" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725955AbgA0Tdv (ORCPT ); Mon, 27 Jan 2020 14:33:51 -0500 Received: from mail-wm1-f67.google.com ([209.85.128.67]:36558 "EHLO mail-wm1-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725893AbgA0Tdv (ORCPT ); Mon, 27 Jan 2020 14:33:51 -0500 Received: by mail-wm1-f67.google.com with SMTP id p17so8338786wma.1 for ; Mon, 27 Jan 2020 11:33:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sartura-hr.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=2FYYv2CkjElFAYjDohnfSrEmf3CiiM23ViUusDP3kSQ=; b=wAio5wG9i21Smr/evuoOJw68w1Jcre1OYoBpokBTMEUo2+cZhYJNmiH0efklmr8prg UMW0c3WY1hrV2D8VTWnfW3rtc2j0W4pqyMVkZLxii/2/wBSvbfbVwEMDsVhLU5HWGfGk 5FdDOESAIdOADVHeI8+3mwNiXlYKxzmL1qWKRP6UGYjRKtpedyWvwpMt5s2b/Hn3LGVl RYCvhbAOZ+EgTlKiJHxJ48FQ88+09eQ7qGOAXalsFgg43eK4q2Yyt0ytkZnKB9IMcvsm ePH6w+CBld8hr++KscrNUL7i95et9vlr68l4DZj8DJn37swlqLj5yEJUiWEtlrmQ75zw 5ZkA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=2FYYv2CkjElFAYjDohnfSrEmf3CiiM23ViUusDP3kSQ=; b=icnpv2awGZVZ5OPjX4+DfO2LE258WDccirT27VeLa0hzHIEg+nqP1gkhKAXwLUooSw B1T9lYldovbs4SnS77mn8nL3Uy+x2ZP48tfvpdi1jUTJW4YQS3gxuMJCRMteCqpcW7Kj 3nXgplU+SR30tYeOUVXrhxefAAccJGowKei9wekYViAihQ84visxBwRtzJj/io8DFsQz xrRcSKv6UeCJEGpX7NzmTPCn192TDANWPG1sHzR/gtRSu29Ve0OB2F2H4dQPaSXQLJp0 WIZDV3AnXwF6Eejxb6QqQvotIv1xvgguAXw0QSfp53nvMp1OKIEMUrc4rynReHPLVqiP MslA== X-Gm-Message-State: APjAAAXpIhaw+G/l2j7ASIcF5q3GYqC25ClGm1rFnVQOTDVQ25JbkUO6 Gt8ABRUYfZBWIt07P2CTEEDdGL/7o5aC3A== X-Google-Smtp-Source: APXvYqy20sy5WbBGen0Yojvg47+eb31eKDkNS63MJruij6e16HKZwoAfu9C8cirqyX0thsTUWeAO9g== X-Received: by 2002:a7b:cb0a:: with SMTP id u10mr187817wmj.165.1580153629569; Mon, 27 Jan 2020 11:33:49 -0800 (PST) Received: from localhost.localdomain ([188.252.202.167]) by smtp.googlemail.com with ESMTPSA id c15sm21895211wrt.1.2020.01.27.11.33.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jan 2020 11:33:49 -0800 (PST) From: Robert Marko To: john@phrozen.org, agross@kernel.org, linux-arm-msm@vger.kernel.org Cc: Robert Marko , Luka Perkov Subject: [PATCH v2 3/3] ARM: dts: qcom: ipq4019: add USB devicetree nodes Date: Mon, 27 Jan 2020 20:32:33 +0100 Message-Id: <20200127193230.1539233-3-robert.marko@sartura.hr> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200127193230.1539233-1-robert.marko@sartura.hr> References: <20200127193230.1539233-1-robert.marko@sartura.hr> MIME-Version: 1.0 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org From: John Crispin Since we now have driver for the USB PHY, lets add the necessary nodes to DTSI. Signed-off-by: John Crispin Tested-by: Robert Marko Cc: Luka Perkov --- arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 20 +++++ arch/arm/boot/dts/qcom-ipq4019.dtsi | 74 +++++++++++++++++++ 2 files changed, 94 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi b/arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi index 418f9a022336..2ee5f05d5a43 100644 --- a/arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi +++ b/arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi @@ -109,5 +109,25 @@ wifi@a800000 { status = "ok"; }; + + usb3_ss_phy: ssphy@9a000 { + status = "ok"; + }; + + usb3_hs_phy: hsphy@a6000 { + status = "ok"; + }; + + usb3: usb3@8af8800 { + status = "ok"; + }; + + usb2_hs_phy: hsphy@a8000 { + status = "ok"; + }; + + usb2: usb2@60f8800 { + status = "ok"; + }; }; }; diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom-ipq4019.dtsi index b6e5203a210b..18e9c639514c 100644 --- a/arch/arm/boot/dts/qcom-ipq4019.dtsi +++ b/arch/arm/boot/dts/qcom-ipq4019.dtsi @@ -564,5 +564,79 @@ "legacy"; status = "disabled"; }; + + usb3_ss_phy: ssphy@9a000 { + compatible = "qcom,usb-ss-ipq4019-phy"; + #phy-cells = <0>; + reg = <0x9a000 0x800>; + reg-names = "phy_base"; + resets = <&gcc USB3_UNIPHY_PHY_ARES>; + reset-names = "por_rst"; + status = "disabled"; + }; + + usb3_hs_phy: hsphy@a6000 { + compatible = "qcom,usb-hs-ipq4019-phy"; + #phy-cells = <0>; + reg = <0xa6000 0x40>; + reg-names = "phy_base"; + resets = <&gcc USB3_HSPHY_POR_ARES>, <&gcc USB3_HSPHY_S_ARES>; + reset-names = "por_rst", "srif_rst"; + status = "disabled"; + }; + + usb3@8af8800 { + compatible = "qcom,dwc3"; + reg = <0x8af8800 0x100>; + #address-cells = <1>; + #size-cells = <1>; + clocks = <&gcc GCC_USB3_MASTER_CLK>, + <&gcc GCC_USB3_SLEEP_CLK>, + <&gcc GCC_USB3_MOCK_UTMI_CLK>; + clock-names = "master", "sleep", "mock_utmi"; + ranges; + status = "disabled"; + + dwc3@8a00000 { + compatible = "snps,dwc3"; + reg = <0x8a00000 0xf8000>; + interrupts = ; + phys = <&usb3_hs_phy>, <&usb3_ss_phy>; + phy-names = "usb2-phy", "usb3-phy"; + dr_mode = "host"; + }; + }; + + usb2_hs_phy: hsphy@a8000 { + compatible = "qcom,usb-hs-ipq4019-phy"; + #phy-cells = <0>; + reg = <0xa8000 0x40>; + reg-names = "phy_base"; + resets = <&gcc USB2_HSPHY_POR_ARES>, <&gcc USB2_HSPHY_S_ARES>; + reset-names = "por_rst", "srif_rst"; + status = "disabled"; + }; + + usb2@60f8800 { + compatible = "qcom,dwc3"; + reg = <0x60f8800 0x100>; + #address-cells = <1>; + #size-cells = <1>; + clocks = <&gcc GCC_USB2_MASTER_CLK>, + <&gcc GCC_USB2_SLEEP_CLK>, + <&gcc GCC_USB2_MOCK_UTMI_CLK>; + clock-names = "master", "sleep", "mock_utmi"; + ranges; + status = "disabled"; + + dwc3@6000000 { + compatible = "snps,dwc3"; + reg = <0x6000000 0xf8000>; + interrupts = ; + phys = <&usb2_hs_phy>; + phy-names = "usb2-phy"; + dr_mode = "host"; + }; + }; }; };