lkml.org 
[lkml]   [2020]   [Mar]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/3] Input: atmel_mxt_ts - add idle power config
Date
We can save few tens of mW of power during runtime. Let's add a new idle
power config where we minimize the active time and maximize the idle time.

Then we can use the new idle setting based on runtime PM autosuspend in
the following patch.

Let's also start using enum mxt_power_cfg while at it.

Signed-off-by: Tony Lindgren <tony@atomide.com>
---
drivers/input/touchscreen/atmel_mxt_ts.c | 27 +++++++++++++++++++-----
1 file changed, 22 insertions(+), 5 deletions(-)

diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c
--- a/drivers/input/touchscreen/atmel_mxt_ts.c
+++ b/drivers/input/touchscreen/atmel_mxt_ts.c
@@ -97,8 +97,11 @@ struct t7_config {
u8 active;
} __packed;

-#define MXT_POWER_CFG_RUN 0
-#define MXT_POWER_CFG_DEEPSLEEP 1
+enum mxt_power_cfg {
+ MXT_POWER_CFG_RUN,
+ MXT_POWER_CFG_IDLE,
+ MXT_POWER_CFG_DEEPSLEEP,
+};

/* MXT_TOUCH_MULTI_T9 field */
#define MXT_T9_CTRL 0
@@ -2155,17 +2158,31 @@ static int mxt_initialize(struct mxt_data *data)
return 0;
}

-static int mxt_set_t7_power_cfg(struct mxt_data *data, u8 sleep)
+/*
+ * Note that active value 0 forces the controller to idle so 1 is the shortest
+ * active periiod with interrupts still working. Idle value of 255 blocks idle
+ * completely so 254 is the maximum idle time we can use.
+ */
+static int mxt_set_t7_power_cfg(struct mxt_data *data,
+ enum mxt_power_cfg config)
{
struct device *dev = &data->client->dev;
int error;
struct t7_config *new_config;
struct t7_config deepsleep = { .active = 0, .idle = 0 };
+ struct t7_config idle = { .active = 1, .idle = 254 };

- if (sleep == MXT_POWER_CFG_DEEPSLEEP)
+ switch (config) {
+ case MXT_POWER_CFG_IDLE:
+ new_config = &idle;
+ break;
+ case MXT_POWER_CFG_DEEPSLEEP:
new_config = &deepsleep;
- else
+ break;
+ default:
new_config = &data->t7_cfg;
+ break;
+ }

error = __mxt_write_reg(data->client, data->T7_address,
sizeof(data->t7_cfg), new_config);
--
2.25.1
\
 
 \ /
  Last update: 2020-03-19 00:10    [W:0.082 / U:0.608 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site