public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
To: Jun Nie <jun.nie@linaro.org>
Cc: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org,
	linux-kernel@vger.kernel.org, robh+dt@kernel.org,
	krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org,
	sven@svenpeter.dev, shawn.guo@linaro.org,
	bryan.odonoghue@linaro.org
Subject: Re: [PATCH 2/2] usb: typec: tipd: Support wakeup
Date: Thu, 5 Jan 2023 13:49:08 +0200	[thread overview]
Message-ID: <Y7a5NFMAxhuD4qEr@kuha.fi.intel.com> (raw)
In-Reply-To: <20230105075058.924680-2-jun.nie@linaro.org>

On Thu, Jan 05, 2023 at 03:50:58PM +0800, Jun Nie wrote:
> Enable wakeup when pluging or unpluging USB cable. It is up to other
> components to hold system in active mode, such as display, so that
> user can receive the notification.
> 
> Signed-off-by: Jun Nie <jun.nie@linaro.org>

Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>

> ---
>  drivers/usb/typec/tipd/core.c | 38 +++++++++++++++++++++++++++++++++++
>  1 file changed, 38 insertions(+)
> 
> diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c
> index 46a4d8b128f0..485b90c13078 100644
> --- a/drivers/usb/typec/tipd/core.c
> +++ b/drivers/usb/typec/tipd/core.c
> @@ -95,6 +95,7 @@ struct tps6598x {
>  	struct power_supply_desc psy_desc;
>  	enum power_supply_usb_type usb_type;
>  
> +	int wakeup;
>  	u16 pwr_status;
>  };
>  
> @@ -846,6 +847,12 @@ static int tps6598x_probe(struct i2c_client *client)
>  	i2c_set_clientdata(client, tps);
>  	fwnode_handle_put(fwnode);
>  
> +	tps->wakeup = device_property_read_bool(tps->dev, "wakeup-source");
> +	if (tps->wakeup) {
> +		device_init_wakeup(&client->dev, true);
> +		enable_irq_wake(client->irq);
> +	}
> +
>  	return 0;
>  
>  err_disconnect:
> @@ -870,6 +877,36 @@ static void tps6598x_remove(struct i2c_client *client)
>  	usb_role_switch_put(tps->role_sw);
>  }
>  
> +static int __maybe_unused tps6598x_suspend(struct device *dev)
> +{
> +	struct i2c_client *client = to_i2c_client(dev);
> +	struct tps6598x *tps = i2c_get_clientdata(client);
> +
> +	if (tps->wakeup) {
> +		disable_irq(client->irq);
> +		enable_irq_wake(client->irq);
> +	}
> +
> +	return 0;
> +}
> +
> +static int __maybe_unused tps6598x_resume(struct device *dev)
> +{
> +	struct i2c_client *client = to_i2c_client(dev);
> +	struct tps6598x *tps = i2c_get_clientdata(client);
> +
> +	if (tps->wakeup) {
> +		disable_irq_wake(client->irq);
> +		enable_irq(client->irq);
> +	}
> +
> +	return 0;
> +}
> +
> +static const struct dev_pm_ops tps6598x_pm_ops = {
> +	SET_SYSTEM_SLEEP_PM_OPS(tps6598x_suspend, tps6598x_resume)
> +};
> +
>  static const struct of_device_id tps6598x_of_match[] = {
>  	{ .compatible = "ti,tps6598x", },
>  	{ .compatible = "apple,cd321x", },
> @@ -886,6 +923,7 @@ MODULE_DEVICE_TABLE(i2c, tps6598x_id);
>  static struct i2c_driver tps6598x_i2c_driver = {
>  	.driver = {
>  		.name = "tps6598x",
> +		.pm = &tps6598x_pm_ops,
>  		.of_match_table = tps6598x_of_match,
>  	},
>  	.probe_new = tps6598x_probe,
> -- 
> 2.34.1

thanks,

-- 
heikki

  parent reply	other threads:[~2023-01-05 11:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-05  7:50 [PATCH 1/2] dt-bindings: usb: tps6598x: Add wakeup property Jun Nie
2023-01-05  7:50 ` [PATCH 2/2] usb: typec: tipd: Support wakeup Jun Nie
2023-01-05 11:05   ` Bryan O'Donoghue
2023-01-06  1:45     ` Jun Nie
2023-01-05 11:49   ` Heikki Krogerus [this message]
2023-01-05 10:56 ` [PATCH 1/2] dt-bindings: usb: tps6598x: Add wakeup property Bryan O'Donoghue
2023-01-06  9:19 ` Krzysztof Kozlowski

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=Y7a5NFMAxhuD4qEr@kuha.fi.intel.com \
    --to=heikki.krogerus@linux.intel.com \
    --cc=bryan.odonoghue@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jun.nie@linaro.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=shawn.guo@linaro.org \
    --cc=sven@svenpeter.dev \
    /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