From patchwork Thu Nov 22 13:23:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 1785361 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 3A791E0194 for ; Thu, 22 Nov 2012 18:57:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753232Ab2KVS5W (ORCPT ); Thu, 22 Nov 2012 13:57:22 -0500 Received: from mail-wg0-f44.google.com ([74.125.82.44]:47990 "EHLO mail-wg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753139Ab2KVS5V (ORCPT ); Thu, 22 Nov 2012 13:57:21 -0500 Received: by mail-wg0-f44.google.com with SMTP id dr13so133369wgb.1 for ; Thu, 22 Nov 2012 10:57:20 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=x8I8NIabuFUX0Omow23y3LlzPYyVttZN99P/YIyYmkk=; b=hwnK8fMQmUvz4q/HC2LwO2brqmOiElV/mXojXxbv81O4e4vWSZEpu5SqRKxkI8VKHL GsVmpTFAED1fyetpoehZtIqIe4sYJWtWtHU/uSYOBQFjJykyNi+tZzF019yZ/L9+XUGV FxwbTg6/Nmex9Hq2kp8aZQxkf7QSxRZgs91PDKBjMnhNmiI5mSD5ZrLxhbnsolmC3jCk Cuyo1IA+oeFkEwiyZLKHx0JQlk2xdpEIvDk6Qk/Lig/3rwxt1HZcuPviN3LA4IMwVOPq yAXz9/8AGDjAsPhs+lqADCXC3E5R0XUXEwrpsaLyA+wf5vKtBDXZh+Fy4WPdO4p6m5Do Ct6w== Received: by 10.216.210.142 with SMTP id u14mr221007weo.105.1353590623943; Thu, 22 Nov 2012 05:23:43 -0800 (PST) Received: from localhost.localdomain (cpc1-aztw13-0-0-cust473.18-1.cable.virginmedia.com. [77.102.241.218]) by mx.google.com with ESMTPS id bz12sm4507489wib.5.2012.11.22.05.23.42 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Nov 2012 05:23:43 -0800 (PST) From: Lee Jones To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: arnd@arndb.de, linus.walleij@stericsson.com, Jonas Aaberg , Dmitry Torokhov , linux-input@vger.kernel.org, Lee Jones , Philippe Langlais Subject: [PATCH 2/2] input: gpio-keys: Add runtime support Date: Thu, 22 Nov 2012 13:23:37 +0000 Message-Id: <1353590617-11466-2-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1353590617-11466-1-git-send-email-lee.jones@linaro.org> References: <1353590617-11466-1-git-send-email-lee.jones@linaro.org> X-Gm-Message-State: ALoCoQkS5IcklFfnHfLSCEq3DsEvD8MsdzgNF7BHZ/QQnSpuNB6TJoonaR6KWx8nmq6W0i3cl1Rk Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org From: Jonas Aaberg Cc: Dmitry Torokhov Cc: linux-input@vger.kernel.org Signed-off-by: Lee Jones Signed-off-by: Jonas Aaberg Signed-off-by: Philippe Langlais Reviewed-by: Bengt Jonsson --- drivers/input/keyboard/gpio_keys.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index 2cf6757..cff548c 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c @@ -29,6 +29,7 @@ #include #include #include +#include struct gpio_button_data { const struct gpio_keys_button *button; @@ -533,6 +534,7 @@ static int gpio_keys_open(struct input_dev *input) struct gpio_keys_drvdata *ddata = input_get_drvdata(input); const struct gpio_keys_platform_data *pdata = ddata->pdata; + pm_runtime_get_sync(input->dev.parent); ddata->enabled = true; return pdata->enable ? pdata->enable(input->dev.parent) : 0; @@ -547,6 +549,8 @@ static void gpio_keys_close(struct input_dev *input) if (pdata->disable) pdata->disable(input->dev.parent); + + pm_runtime_put(input->dev.parent); } /* @@ -708,6 +712,8 @@ static int __devinit gpio_keys_probe(struct platform_device *pdev) input->id.product = 0x0001; input->id.version = 0x0100; + pm_runtime_enable(&pdev->dev); + /* Enable auto repeat feature of Linux input subsystem */ if (pdata->rep) __set_bit(EV_REP, input->evbit); @@ -773,6 +779,8 @@ static int __devexit gpio_keys_remove(struct platform_device *pdev) struct input_dev *input = ddata->input; int i; + pm_runtime_disable(&pdev->dev); + sysfs_remove_group(&pdev->dev.kobj, &gpio_keys_attr_group); device_init_wakeup(&pdev->dev, 0); @@ -805,8 +813,8 @@ static int gpio_keys_suspend(struct device *dev) } } else { ddata->enable_after_suspend = ddata->enabled; - if (ddata->enabled) - gpio_keys_close(ddata->input); + if (ddata->enabled && ddata->disable) + ddata->disable(dev); } return 0; @@ -826,8 +834,9 @@ static int gpio_keys_resume(struct device *dev) gpio_keys_gpio_report_event(bdata); } - if (!device_may_wakeup(dev) && ddata->enable_after_suspend) - gpio_keys_open(ddata->input); + if (!device_may_wakeup(dev) && ddata->enable_after_suspend + && ddata->enable) + ddata->enable(dev); input_sync(ddata->input);