From patchwork Tue Nov 12 13:52:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Srinivas KANDAGATLA X-Patchwork-Id: 3172521 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.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 641A2C045B for ; Tue, 12 Nov 2013 13:55:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 25D64204F6 for ; Tue, 12 Nov 2013 13:55:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EE959204E4 for ; Tue, 12 Nov 2013 13:55:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754516Ab3KLNz3 (ORCPT ); Tue, 12 Nov 2013 08:55:29 -0500 Received: from eu1sys200aog110.obsmtp.com ([207.126.144.129]:45407 "EHLO eu1sys200aog110.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753801Ab3KLNyT (ORCPT ); Tue, 12 Nov 2013 08:54:19 -0500 Received: from beta.dmz-eu.st.com ([164.129.1.35]) (using TLSv1) by eu1sys200aob110.postini.com ([207.126.147.11]) with SMTP ID DSNKUoIy4ugyB3QZOg5eEkbXf+Y84reMNLlF@postini.com; Tue, 12 Nov 2013 13:54:18 UTC Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 4362BFE; Tue, 12 Nov 2013 13:53:06 +0000 (GMT) Received: from Webmail-eu.st.com (Safex1hubcas24.st.com [10.75.90.94]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 6D177542D; Tue, 12 Nov 2013 13:40:14 +0000 (GMT) Received: from localhost (10.65.51.59) by webmail-ga.st.com (10.75.90.48) with Microsoft SMTP Server (TLS) id 14.3.123.3; Tue, 12 Nov 2013 14:53:37 +0100 From: To: , Cc: Rob Herring , Pawel Moll , Mark Rutland , Stephen Warren , Ian Campbell , Rob Landley , Russell King , Srinivas Kandagatla , Stuart Menefy , Pavel Machek , "Rafael J. Wysocki" , Len Brown , , Greg Kroah-Hartman , Giuseppe Cavallaro , Grant Likely , , , , , Subject: [PATCH RFC 07/10] PM / wakeup : Introduce device_child_may_wakeup Date: Tue, 12 Nov 2013 13:52:57 +0000 Message-ID: <1384264377-7609-1-git-send-email-srinivas.kandagatla@st.com> X-Mailer: git-send-email 1.7.6.5 In-Reply-To: <1384264311-7308-1-git-send-email-srinivas.kandagatla@st.com> References: <1384264311-7308-1-git-send-email-srinivas.kandagatla@st.com> MIME-Version: 1.0 X-Originating-IP: [10.65.51.59] 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.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 From: Srinivas Kandagatla This patch introduces device_child_may_wakeup function, which will be useful for wrapper or SoC level driver power management code. Without this patch each driver has to write this same code to get the functionality. Signed-off-by: Srinivas Kandagatla --- drivers/base/power/wakeup.c | 23 +++++++++++++++++++++++ include/linux/pm_wakeup.h | 1 + 2 files changed, 24 insertions(+), 0 deletions(-) diff --git a/drivers/base/power/wakeup.c b/drivers/base/power/wakeup.c index 2d56f41..270f000 100644 --- a/drivers/base/power/wakeup.c +++ b/drivers/base/power/wakeup.c @@ -342,6 +342,29 @@ int device_set_wakeup_enable(struct device *dev, bool enable) } EXPORT_SYMBOL_GPL(device_set_wakeup_enable); +/* callback for device_child_may_wakeup */ +static int __device_child_may_wakeup(struct device *dev, void *c) +{ + return device_may_wakeup(dev); +} + +/** + * device_child_may_wakeup - Check if any of the child devices are wakeup + * sources. + * @dev: parent device to handle. + * + * Function to check if any of the children of a given parent are wakeup + * sources. + * + * This function will return true if any one of the children of given parent + * are wakeup sources, else it returns false. + */ +bool device_child_may_wakeup(struct device *parent) +{ + return device_for_each_child(parent, NULL, __device_child_may_wakeup); +} +EXPORT_SYMBOL_GPL(device_child_may_wakeup); + /* * The functions below use the observation that each wakeup event starts a * period in which the system should not be suspended. The moment this period diff --git a/include/linux/pm_wakeup.h b/include/linux/pm_wakeup.h index a0f7080..b376584 100644 --- a/include/linux/pm_wakeup.h +++ b/include/linux/pm_wakeup.h @@ -93,6 +93,7 @@ extern int device_wakeup_disable(struct device *dev); extern void device_set_wakeup_capable(struct device *dev, bool capable); extern int device_init_wakeup(struct device *dev, bool val); extern int device_set_wakeup_enable(struct device *dev, bool enable); +bool device_child_may_wakeup(struct device *parent); extern void __pm_stay_awake(struct wakeup_source *ws); extern void pm_stay_awake(struct device *dev); extern void __pm_relax(struct wakeup_source *ws);