From patchwork Thu Jul 26 11:48:57 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 10545649 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8E45714E2 for ; Thu, 26 Jul 2018 11:48:55 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7E61F2B0A7 for ; Thu, 26 Jul 2018 11:48:55 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7237F2B0B1; Thu, 26 Jul 2018 11:48:55 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F35E92B0A7 for ; Thu, 26 Jul 2018 11:48:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729385AbeGZNFV (ORCPT ); Thu, 26 Jul 2018 09:05:21 -0400 Received: from mga07.intel.com ([134.134.136.100]:16193 "EHLO mga07.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729152AbeGZNFV (ORCPT ); Thu, 26 Jul 2018 09:05:21 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Jul 2018 04:48:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.51,404,1526367600"; d="scan'208";a="57324969" Received: from black.fi.intel.com ([10.237.72.28]) by fmsmga007.fm.intel.com with ESMTP; 26 Jul 2018 04:48:49 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id C85A0B7; Thu, 26 Jul 2018 14:48:57 +0300 (EEST) From: Andy Shevchenko To: Felipe Balbi , linux-usb@vger.kernel.org, Greg Kroah-Hartman Cc: Andy Shevchenko Subject: [PATCH v3 2/2] usb: dwc3: pci: Intel Merrifield can be host Date: Thu, 26 Jul 2018 14:48:57 +0300 Message-Id: <20180726114857.86036-2-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180726114857.86036-1-andriy.shevchenko@linux.intel.com> References: <20180726114857.86036-1-andriy.shevchenko@linux.intel.com> Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On Intel Edison board the OTG function is enabled, thus, USB can switch to the host mode. Allow that by changing dr_mode property to "otg" for Intel Merrifield. Signed-off-by: Andy Shevchenko --- drivers/usb/dwc3/dwc3-pci.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c index cc4db9a06505..88b800ab6419 100644 --- a/drivers/usb/dwc3/dwc3-pci.c +++ b/drivers/usb/dwc3/dwc3-pci.c @@ -107,6 +107,12 @@ static const struct property_entry dwc3_pci_intel_properties[] = { {} }; +static const struct property_entry dwc3_pci_mrfld_properties[] = { + PROPERTY_ENTRY_STRING("dr_mode", "otg"), + PROPERTY_ENTRY_BOOL("linux,sysdev_is_parent"), + {} +}; + static const struct property_entry dwc3_pci_amd_properties[] = { PROPERTY_ENTRY_BOOL("snps,has-lpm-erratum"), PROPERTY_ENTRY_U8("snps,lpm-nyet-threshold", 0xf), @@ -293,7 +299,7 @@ static void dwc3_pci_remove(struct pci_dev *pci) static const struct pci_device_id dwc3_pci_id_table[] = { DWC3_PCI_DEV(INTEL, INTEL_BSW, dwc3_pci_intel_properties), DWC3_PCI_DEV(INTEL, INTEL_BYT, dwc3_pci_intel_properties), - DWC3_PCI_DEV(INTEL, INTEL_MRFLD, dwc3_pci_intel_properties), + DWC3_PCI_DEV(INTEL, INTEL_MRFLD, dwc3_pci_mrfld_properties), DWC3_PCI_DEV(INTEL, INTEL_SPTLP, dwc3_pci_intel_properties), DWC3_PCI_DEV(INTEL, INTEL_SPTH, dwc3_pci_intel_properties), DWC3_PCI_DEV(INTEL, INTEL_BXT, dwc3_pci_intel_properties),