From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: "Kim, HeungJun" <riverful.kim@samsung.com>
Cc: linux-input@vger.kernel.org, kyungmin.park@samsung.com
Subject: Re: [PATCH 1/3] input: keyboard: MCS5080: support suspend/resume.
Date: Mon, 15 Nov 2010 00:32:35 -0800 [thread overview]
Message-ID: <20101115083235.GA11594@core.coreip.homeip.net> (raw)
In-Reply-To: <4CE0B7B1.6060404@samsung.com>
Hi Kim,
On Mon, Nov 15, 2010 at 01:31:45PM +0900, Kim, HeungJun wrote:
> This patch supports suspend/resume functions for mcs5080 touchkey
> driver.
>
> Signed-off-by: Heungjun Kim <riverful.kim@samsung.com>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> drivers/input/keyboard/mcs_touchkey.c | 41 +++++++++++++++++++++++++++++++++
> include/linux/i2c/mcs.h | 1 +
> 2 files changed, 42 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/input/keyboard/mcs_touchkey.c b/drivers/input/keyboard/mcs_touchkey.c
> index 63b849d..06385f5 100644
> --- a/drivers/input/keyboard/mcs_touchkey.c
> +++ b/drivers/input/keyboard/mcs_touchkey.c
> @@ -45,6 +45,8 @@ struct mcs_touchkey_chip {
> };
>
> struct mcs_touchkey_data {
> + void (*poweron)(int);
int (*poweron)(bool);
The method must be able to signal errors.
> +
> struct i2c_client *client;
> struct input_dev *input_dev;
> struct mcs_touchkey_chip chip;
> @@ -168,6 +170,8 @@ static int __devinit mcs_touchkey_probe(struct i2c_client *client,
>
> if (pdata->cfg_pin)
> pdata->cfg_pin();
> + if (pdata->poweron)
> + data->poweron = pdata->poweron;
>
> error = request_threaded_irq(client->irq, NULL, mcs_touchkey_interrupt,
> IRQF_TRIGGER_FALLING, client->dev.driver->name, data);
> @@ -202,6 +206,41 @@ static int __devexit mcs_touchkey_remove(struct i2c_client *client)
> return 0;
> }
>
> +#ifdef CONFIG_PM
> +static int mcs_touchkey_suspend(struct i2c_client *client, pm_message_t mesg)
Newer code should use dev_pm_ops please.
`
> +{
> + struct mcs_touchkey_data *data = i2c_get_clientdata(client);
> +
> + /* Disable the work */
> + disable_irq(client->irq);
> +
> + /* Don't I2C operation since we don't know I2C bus is dead already */
? I am not quite sure what you are trying to say here...
> +
> + /* Finally turn off the power */
> + if (data->poweron)
> + data->poweron(0);
> +
> + return 0;
> +}
> +
> +static int mcs_touchkey_resume(struct i2c_client *client)
> +{
> + struct mcs_touchkey_data *data = i2c_get_clientdata(client);
> +
> + /* Enable the device first */
> + if (data->poweron)
> + data->poweron(1);
> +
> + /* Enable irq again */
> + enable_irq(client->irq);
> +
> + return 0;
> +}
> +#else
> +#define mcs_touchkey_suspend NULL
> +#define mcs_touchkey_resume NULL
> +#endif
> +
> static const struct i2c_device_id mcs_touchkey_id[] = {
> { "mcs5000_touchkey", MCS5000_TOUCHKEY },
> { "mcs5080_touchkey", MCS5080_TOUCHKEY },
> @@ -216,6 +255,8 @@ static struct i2c_driver mcs_touchkey_driver = {
> },
> .probe = mcs_touchkey_probe,
> .remove = __devexit_p(mcs_touchkey_remove),
> + .suspend = mcs_touchkey_suspend,
> + .resume = mcs_touchkey_resume,
> .id_table = mcs_touchkey_id,
> };
>
> diff --git a/include/linux/i2c/mcs.h b/include/linux/i2c/mcs.h
> index 725ae7c..c4a3869 100644
> --- a/include/linux/i2c/mcs.h
> +++ b/include/linux/i2c/mcs.h
> @@ -18,6 +18,7 @@
> #define MCS_KEY_CODE(v) ((v) & 0xffff)
>
> struct mcs_platform_data {
> + void (*poweron)(int);
> void (*cfg_pin)(void);
>
> /* touchscreen */
> --
> 1.7.0.4
Shouldn't you call poweron() at driver bind and unbind time (if you do not want to
supply open() and close() methods which wold be the best option)?
Thanks.
--
Dmitry
next prev parent reply other threads:[~2010-11-15 8:32 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-15 4:31 [PATCH 1/3] input: keyboard: MCS5080: support suspend/resume Kim, HeungJun
2010-11-15 5:43 ` Datta, Shubhrajyoti
2010-11-15 8:21 ` Kim, HeungJun
2010-11-15 8:32 ` Dmitry Torokhov [this message]
2010-11-18 2:54 ` Kim, HeungJun
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20101115083235.GA11594@core.coreip.homeip.net \
--to=dmitry.torokhov@gmail.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-input@vger.kernel.org \
--cc=riverful.kim@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox