linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sebastian Reichel <sre@kernel.org>
To: Marek Czerski <ma.czerski@gmail.com>
Cc: linux-pm@vger.kernel.org
Subject: Re: [PATCH] power: reset: ltc2952: make trigger delay configurable
Date: Sat, 16 Jan 2021 16:04:13 +0100	[thread overview]
Message-ID: <20210116150413.gqsodziwjv6g6bvd@earth.universe> (raw)
In-Reply-To: <20201207222829.13676-1-ma.czerski@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3242 bytes --]

Hi,

On Mon, Dec 07, 2020 at 11:28:29PM +0100, Marek Czerski wrote:
> Make trigger delay configurable through device tree with
> trigger-delay-ms property.
> 
> Trigger delay is the time to wait before starting shutdown
> sequence after trigger line assertion.
> Trigger delay must take into account the OFFT time configured
> with the capacitor connected to OFFT pin of the LTC2952 chip.
> Basically, the higher the capacitance connected to OFFT pin,
> the larger trigger delay must be.
> 
> Signed-off-by: Marek Czerski <ma.czerski@gmail.com>
> ---
>  .../devicetree/bindings/power/reset/ltc2952-poweroff.txt  | 4 ++++
>  drivers/power/reset/ltc2952-poweroff.c                    | 8 ++++++++
>  2 files changed, 12 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/power/reset/ltc2952-poweroff.txt b/Documentation/devicetree/bindings/power/reset/ltc2952-poweroff.txt
> index cd2d7f58a..881f15a78 100644
> --- a/Documentation/devicetree/bindings/power/reset/ltc2952-poweroff.txt
> +++ b/Documentation/devicetree/bindings/power/reset/ltc2952-poweroff.txt

Please additionally Cc DT binding maintainer:

OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
M:	Rob Herring <robh+dt@kernel.org>
L:	devicetree@vger.kernel.org

> @@ -17,6 +17,9 @@ Optional properties:
>  			chip's trigger line. If this property is not set, the
>  			trigger function is ignored and the chip is kept alive
>  			until an explicit kill signal is received
> +- trigger-delay-ms	The number of milliseconds to wait after trigger line
> +			assertion before executing shut down procedure.
> +			The default is 2500ms.
>  
>  Example:
>  
> @@ -24,6 +27,7 @@ ltc2952 {
>  	compatible = "lltc,ltc2952";
>  
>  	trigger-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
> +        trigger-delay-ms = <2000>;

please use tab instead of spaces

>  	watchdog-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
>  	kill-gpios = <&gpio0 2 GPIO_ACTIVE_LOW>;
>  };
> diff --git a/drivers/power/reset/ltc2952-poweroff.c b/drivers/power/reset/ltc2952-poweroff.c
> index 318927938..243811541 100644
> --- a/drivers/power/reset/ltc2952-poweroff.c
> +++ b/drivers/power/reset/ltc2952-poweroff.c
> @@ -55,6 +55,7 @@
>  #include <linux/mod_devicetable.h>
>  #include <linux/gpio/consumer.h>
>  #include <linux/reboot.h>
> +#include <linux/of.h>
>  
>  struct ltc2952_poweroff {
>  	struct hrtimer timer_trigger;
> @@ -172,10 +173,17 @@ static void ltc2952_poweroff_default(struct ltc2952_poweroff *data)
>  static int ltc2952_poweroff_init(struct platform_device *pdev)
>  {
>  	int ret;
> +	u32 trigger_delay_ms;
>  	struct ltc2952_poweroff *data = platform_get_drvdata(pdev);
>  
>  	ltc2952_poweroff_default(data);
>  
> +	if (!of_property_read_u32(pdev->dev.of_node, "trigger-delay-ms",
> +				  &trigger_delay_ms)) {

please use device_property_read_u32() from <linux/property.h>.

> +		data->trigger_delay = ktime_set(trigger_delay_ms / MSEC_PER_SEC,
> +			(trigger_delay_ms % MSEC_PER_SEC) * NSEC_PER_MSEC);
> +	}
> +
>  	data->gpio_watchdog = devm_gpiod_get(&pdev->dev, "watchdog",
>  					     GPIOD_OUT_LOW);
>  	if (IS_ERR(data->gpio_watchdog)) {

Thanks and sorry for delayed response,

-- Sebastian

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2021-01-16 18:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07 22:28 [PATCH] power: reset: ltc2952: make trigger delay configurable Marek Czerski
2021-01-16 15:04 ` Sebastian Reichel [this message]
2021-02-03  6:55   ` Marek Czerski

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=20210116150413.gqsodziwjv6g6bvd@earth.universe \
    --to=sre@kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=ma.czerski@gmail.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;
as well as URLs for NNTP newsgroup(s).