Skip to content

Commit

Permalink
Input: silead - try firmware reload after unsuccessful resume
Browse files Browse the repository at this point in the history
A certain silead controller (Chip ID: 0x56810000) loses its firmware
after suspend, causing the resume to fail. This patch tries to load
the firmware, should a resume error occur and retries the resuming.

Signed-off-by: Julian Sax <[email protected]>
Acked-by: Hans de Goede <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
  • Loading branch information
brotfessor authored and dtor committed Oct 5, 2018
1 parent 20bbb31 commit dde2744
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions drivers/input/touchscreen/silead.c
Original file line number Diff line number Diff line change
Expand Up @@ -558,20 +558,33 @@ static int __maybe_unused silead_ts_suspend(struct device *dev)
static int __maybe_unused silead_ts_resume(struct device *dev)
{
struct i2c_client *client = to_i2c_client(dev);
bool second_try = false;
int error, status;

silead_ts_set_power(client, SILEAD_POWER_ON);

retry:
error = silead_ts_reset(client);
if (error)
return error;

if (second_try) {
error = silead_ts_load_fw(client);
if (error)
return error;
}

error = silead_ts_startup(client);
if (error)
return error;

status = silead_ts_get_status(client);
if (status != SILEAD_STATUS_OK) {
if (!second_try) {
second_try = true;
dev_dbg(dev, "Reloading firmware after unsuccessful resume\n");
goto retry;
}
dev_err(dev, "Resume error, status: 0x%02x\n", status);
return -ENODEV;
}
Expand Down

0 comments on commit dde2744

Please sign in to comment.