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=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 CC65AC2D0DB for ; Thu, 30 Jan 2020 18:53:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9BACF20702 for ; Thu, 30 Jan 2020 18:53:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580410435; bh=+hVBz+rTNdM2v3aHOM+5hI3+r8Hhw8ncMHzn2aRJbI4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=ZJUpF2Dx4zHj04dmJ/Z8vps2Jn6izbbYU1yZ2u7ZG8a3zhTnVAyCk/IYCBPomcSvj LQroaFxnSrMOGnFMSM3gGR8l1whO4tZGT33PsQakVLxjs2ko5GmeTjEfoHqlITuB7r IMLIZr9QqSCsU3xWRJmPb4lTlK2RojN2r1K9Uyz0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730108AbgA3SlL (ORCPT ); Thu, 30 Jan 2020 13:41:11 -0500 Received: from mail.kernel.org ([198.145.29.99]:48792 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730076AbgA3SlB (ORCPT ); Thu, 30 Jan 2020 13:41:01 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 65C9C205F4; Thu, 30 Jan 2020 18:41:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580409660; bh=+hVBz+rTNdM2v3aHOM+5hI3+r8Hhw8ncMHzn2aRJbI4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W/et+RMUCs6BW2EZ9JbRQ6F6fGeE1pyDdEyQZofCS2hY/t2MkniqzSPUjEBxleKt9 HLstM5nGarBmY/bbRb1rYvgxvYIPmvgmSBjB9G47uVp+41ZVwIRL4f2q5BxUyQjlGd MQl6DLQjuBu1dtG/qL3xvvDw7jPnrZdyBjJFd/f0= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Bin Liu , Felipe Balbi Subject: [PATCH 5.5 09/56] usb: dwc3: turn off VBUS when leaving host mode Date: Thu, 30 Jan 2020 19:38:26 +0100 Message-Id: <20200130183610.856071084@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200130183608.849023566@linuxfoundation.org> References: <20200130183608.849023566@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Bin Liu commit 09ed259fac621634d51cd986aa8d65f035662658 upstream. VBUS should be turned off when leaving the host mode. Set GCTL_PRTCAP to device mode in teardown to de-assert DRVVBUS pin to turn off VBUS power. Fixes: 5f94adfeed97 ("usb: dwc3: core: refactor mode initialization to its own function") Cc: stable@vger.kernel.org Signed-off-by: Bin Liu Signed-off-by: Felipe Balbi Signed-off-by: Greg Kroah-Hartman --- drivers/usb/dwc3/core.c | 3 +++ 1 file changed, 3 insertions(+) --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -1246,6 +1246,9 @@ static void dwc3_core_exit_mode(struct d /* do nothing */ break; } + + /* de-assert DRVVBUS for HOST and OTG mode */ + dwc3_set_prtcap(dwc, DWC3_GCTL_PRTCAP_DEVICE); } static void dwc3_get_properties(struct dwc3 *dwc)