From patchwork Wed Sep 30 09:58:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomeu Vizoso X-Patchwork-Id: 7294881 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id BD771BEEA4 for ; Wed, 30 Sep 2015 09:59:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D025320650 for ; Wed, 30 Sep 2015 09:59:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id E34D5205E2 for ; Wed, 30 Sep 2015 09:59:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751989AbbI3J7R (ORCPT ); Wed, 30 Sep 2015 05:59:17 -0400 Received: from mail-wi0-f179.google.com ([209.85.212.179]:34800 "EHLO mail-wi0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932702AbbI3J65 (ORCPT ); Wed, 30 Sep 2015 05:58:57 -0400 Received: by wicfx3 with SMTP id fx3so188899315wic.1; Wed, 30 Sep 2015 02:58:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=MoxnHpcGm99Ux+ucP/k6JOinZXrvp3Px4l1vM5GAGbY=; b=fcZi6snwR/tpTrOabMGfCvarcvV/i7EI+fiXXlbHW0gzAiNpxYy9cF0v5M1xlyz0fN fDHRE6utzDZ/N/GMyqPXDkWVyRob9mMRVx/wFKmGUg/i7AKykTRnGGmFrukjLHyt4vmf X4XcPmsA1x1ZYRYAac9gCUOajfmKhCBBiMqvNgGKEkbGM1gmDyW7srQZufstdgXjcwSK 8PN0DbCg/f5wXaDJ+C8pjSzdpaqRDhjX0LKSQ3dkhlPoquvujRpwChE3AFv2ij8BK+oP LQ3tySlR4Qh3zIpjVoiLMMbGn9lbMedsQRnYpUbRkzfNRHxehcPcjt9G2iM2OI9i9GUa TbPA== X-Received: by 10.180.187.141 with SMTP id fs13mr32884346wic.13.1443607135003; Wed, 30 Sep 2015 02:58:55 -0700 (PDT) Received: from cizrna.lan ([109.72.12.238]) by smtp.gmail.com with ESMTPSA id s1sm16416377wik.16.2015.09.30.02.58.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 30 Sep 2015 02:58:54 -0700 (PDT) From: Tomeu Vizoso To: linux-pm@vger.kernel.org, Alan Stern , "Rafael J. Wysocki" , martyn.welch@collabora.co.uk Cc: Tomeu Vizoso , Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v7 2/2] USB / PM: Allow USB devices to remain runtime-suspended when sleeping Date: Wed, 30 Sep 2015 11:58:18 +0200 Message-Id: <1443607098-26666-3-git-send-email-tomeu.vizoso@collabora.com> X-Mailer: git-send-email 2.4.3 In-Reply-To: <1443607098-26666-1-git-send-email-tomeu.vizoso@collabora.com> References: <1443607098-26666-1-git-send-email-tomeu.vizoso@collabora.com> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID,T_RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Have dev_pm_ops.prepare return 1 for USB devices and ports so that USB devices can remain runtime-suspended when the system goes to a sleep state, if their wakeup state is correct and they have runtime PM enabled. Signed-off-by: Tomeu Vizoso --- drivers/usb/core/port.c | 6 ++++++ drivers/usb/core/usb.c | 11 ++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/drivers/usb/core/port.c b/drivers/usb/core/port.c index 210618319f10..f49707d73b5a 100644 --- a/drivers/usb/core/port.c +++ b/drivers/usb/core/port.c @@ -168,12 +168,18 @@ static int usb_port_runtime_suspend(struct device *dev) return retval; } + +static int usb_port_prepare(struct device *dev) +{ + return 1; +} #endif static const struct dev_pm_ops usb_port_pm_ops = { #ifdef CONFIG_PM .runtime_suspend = usb_port_runtime_suspend, .runtime_resume = usb_port_runtime_resume, + .prepare = usb_port_prepare, #endif }; diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c index 8d5b2f4113cd..cf4dde11db1c 100644 --- a/drivers/usb/core/usb.c +++ b/drivers/usb/core/usb.c @@ -316,7 +316,16 @@ static int usb_dev_uevent(struct device *dev, struct kobj_uevent_env *env) static int usb_dev_prepare(struct device *dev) { - return 0; /* Implement eventually? */ + struct usb_device *udev = to_usb_device(dev); + + if (!pm_runtime_enabled(dev)) + return 0; + + /* Return 0 if the current wakeup setting is wrong, otherwise 1 */ + if (udev->do_remote_wakeup != device_may_wakeup(dev)) + return 0; + + return 1; } static void usb_dev_complete(struct device *dev)