linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Input: cyttsp5 - fix power control issue on wakeup
@ 2025-04-22 18:43 Hugo Villeneuve
  2025-04-22 18:50 ` Hugo Villeneuve
  0 siblings, 1 reply; 3+ messages in thread
From: Hugo Villeneuve @ 2025-04-22 18:43 UTC (permalink / raw)
  To: Linus Walleij, Dmitry Torokhov, Maximilian Weigand,
	Alistair Francis
  Cc: hugo, Mikael Gonella-Bolduc, stable, Hugo Villeneuve, linux-input,
	linux-kernel

From: Mikael Gonella-Bolduc <mgonellabolduc@dimonoff.com>

The power control function ignores the "on" argument when setting the
report ID, and thus is always sending HID_POWER_SLEEP. This causes a
problem when trying to wakeup.

Fix by sending the state variable, which contains the proper HID_POWER_ON or
HID_POWER_SLEEP based on the "on" argument.

Fixes: 3c98b8dbdced ("Input: cyttsp5 - implement proper sleep and wakeup procedures")
Cc: stable@vger.kernel.org
Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
---
 drivers/input/touchscreen/cyttsp5.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/touchscreen/cyttsp5.c b/drivers/input/touchscreen/cyttsp5.c
index eafe5a9b89648..86edcacb4ab3e 100644
--- a/drivers/input/touchscreen/cyttsp5.c
+++ b/drivers/input/touchscreen/cyttsp5.c
@@ -580,7 +580,7 @@ static int cyttsp5_power_control(struct cyttsp5 *ts, bool on)
 	int rc;
 
 	SET_CMD_REPORT_TYPE(cmd[0], 0);
-	SET_CMD_REPORT_ID(cmd[0], HID_POWER_SLEEP);
+	SET_CMD_REPORT_ID(cmd[0], state);
 	SET_CMD_OPCODE(cmd[1], HID_CMD_SET_POWER);
 
 	rc = cyttsp5_write(ts, HID_COMMAND_REG, cmd, sizeof(cmd));

base-commit: 7adf8b1afc14832de099f9e178f08f91dc0dd6d0
-- 
2.39.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Input: cyttsp5 - fix power control issue on wakeup
  2025-04-22 18:43 [PATCH] Input: cyttsp5 - fix power control issue on wakeup Hugo Villeneuve
@ 2025-04-22 18:50 ` Hugo Villeneuve
  2025-04-23  6:12   ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Hugo Villeneuve @ 2025-04-22 18:50 UTC (permalink / raw)
  To: Hugo Villeneuve
  Cc: Linus Walleij, Dmitry Torokhov, Maximilian Weigand,
	Alistair Francis, Mikael Gonella-Bolduc, stable, Hugo Villeneuve,
	linux-input, linux-kernel

On Tue, 22 Apr 2025 14:43:24 -0400
Hugo Villeneuve <hugo@hugovil.com> wrote:

> From: Mikael Gonella-Bolduc <mgonellabolduc@dimonoff.com>
> 
> The power control function ignores the "on" argument when setting the
> report ID, and thus is always sending HID_POWER_SLEEP. This causes a
> problem when trying to wakeup.
> 
> Fix by sending the state variable, which contains the proper HID_POWER_ON or
> HID_POWER_SLEEP based on the "on" argument.
> 
> Fixes: 3c98b8dbdced ("Input: cyttsp5 - implement proper sleep and wakeup procedures")
> Cc: stable@vger.kernel.org
> Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>

I inadvertently removed Mikael SOB tag, I can re-add it if a V2 is
needed.

Hugo.


> ---
>  drivers/input/touchscreen/cyttsp5.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/input/touchscreen/cyttsp5.c b/drivers/input/touchscreen/cyttsp5.c
> index eafe5a9b89648..86edcacb4ab3e 100644
> --- a/drivers/input/touchscreen/cyttsp5.c
> +++ b/drivers/input/touchscreen/cyttsp5.c
> @@ -580,7 +580,7 @@ static int cyttsp5_power_control(struct cyttsp5 *ts, bool on)
>  	int rc;
>  
>  	SET_CMD_REPORT_TYPE(cmd[0], 0);
> -	SET_CMD_REPORT_ID(cmd[0], HID_POWER_SLEEP);
> +	SET_CMD_REPORT_ID(cmd[0], state);
>  	SET_CMD_OPCODE(cmd[1], HID_CMD_SET_POWER);
>  
>  	rc = cyttsp5_write(ts, HID_COMMAND_REG, cmd, sizeof(cmd));
> 
> base-commit: 7adf8b1afc14832de099f9e178f08f91dc0dd6d0
> -- 
> 2.39.5
> 
> 


-- 
Hugo Villeneuve

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Input: cyttsp5 - fix power control issue on wakeup
  2025-04-22 18:50 ` Hugo Villeneuve
@ 2025-04-23  6:12   ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2025-04-23  6:12 UTC (permalink / raw)
  To: Hugo Villeneuve
  Cc: Linus Walleij, Dmitry Torokhov, Maximilian Weigand,
	Alistair Francis, Mikael Gonella-Bolduc, stable, Hugo Villeneuve,
	linux-input, linux-kernel

On Tue, Apr 22, 2025 at 02:50:26PM -0400, Hugo Villeneuve wrote:
> On Tue, 22 Apr 2025 14:43:24 -0400
> Hugo Villeneuve <hugo@hugovil.com> wrote:
> 
> > From: Mikael Gonella-Bolduc <mgonellabolduc@dimonoff.com>
> > 
> > The power control function ignores the "on" argument when setting the
> > report ID, and thus is always sending HID_POWER_SLEEP. This causes a
> > problem when trying to wakeup.
> > 
> > Fix by sending the state variable, which contains the proper HID_POWER_ON or
> > HID_POWER_SLEEP based on the "on" argument.
> > 
> > Fixes: 3c98b8dbdced ("Input: cyttsp5 - implement proper sleep and wakeup procedures")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Hugo Villeneuve <hvilleneuve@dimonoff.com>
> 
> I inadvertently removed Mikael SOB tag, I can re-add it if a V2 is
> needed.

You can't remove it, please add it back.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-23  6:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-22 18:43 [PATCH] Input: cyttsp5 - fix power control issue on wakeup Hugo Villeneuve
2025-04-22 18:50 ` Hugo Villeneuve
2025-04-23  6:12   ` Greg KH

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).