Skip to content

Commit

Permalink
thinkpad_acpi: Factor out get/set adaptive kbd mode
Browse files Browse the repository at this point in the history
Move the getting/setting of the adaptive keyboard mode to separate
functions, so that we can reuse them later through sysfs attributes.

Signed-off-by: Bastien Nocera <hadess@hadess.net>
Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
  • Loading branch information
Bastien Nocera authored and Darren Hart committed Mar 3, 2015
1 parent f23a5bc commit f74587f
Showing 1 changed file with 38 additions and 23 deletions.
61 changes: 38 additions & 23 deletions drivers/platform/x86/thinkpad_acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -3483,6 +3483,32 @@ static const int adaptive_keyboard_modes[] = {
static bool adaptive_keyboard_mode_is_saved;
static int adaptive_keyboard_prev_mode;

static int adaptive_keyboard_get_mode(void)
{
int mode = 0;

if (!acpi_evalf(hkey_handle, &mode, "GTRW", "dd", 0)) {
pr_err("Cannot read adaptive keyboard mode\n");
return -EIO;
}

return mode;
}

static int adaptive_keyboard_set_mode(int new_mode)
{
if (new_mode < 0 ||
new_mode > LAYFLAT_MODE)
return -EINVAL;

if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
pr_err("Cannot set adaptive keyboard mode\n");
return -EIO;
}

return 0;
}

static int adaptive_keyboard_get_next_mode(int mode)
{
size_t i;
Expand Down Expand Up @@ -3512,39 +3538,28 @@ static bool adaptive_keyboard_hotkey_notify_hotkey(unsigned int scancode)
new_mode = adaptive_keyboard_prev_mode;
adaptive_keyboard_mode_is_saved = false;
} else {
if (!acpi_evalf(
hkey_handle, &current_mode,
"GTRW", "dd", 0)) {
pr_err("Cannot read adaptive keyboard mode\n");
current_mode = adaptive_keyboard_get_mode();
if (current_mode < 0)
return false;
} else {
new_mode = adaptive_keyboard_get_next_mode(
current_mode);
}
new_mode = adaptive_keyboard_get_next_mode(
current_mode);
}

if (!acpi_evalf(hkey_handle, NULL, "STRW", "vd", new_mode)) {
pr_err("Cannot set adaptive keyboard mode\n");
if (adaptive_keyboard_set_mode(new_mode) < 0)
return false;
}

return true;

case DFR_SHOW_QUICKVIEW_ROW:
if (!acpi_evalf(hkey_handle,
&adaptive_keyboard_prev_mode,
"GTRW", "dd", 0)) {
pr_err("Cannot read adaptive keyboard mode\n");
current_mode = adaptive_keyboard_get_mode();
if (current_mode < 0)
return false;
} else {
adaptive_keyboard_mode_is_saved = true;

if (!acpi_evalf(hkey_handle,
NULL, "STRW", "vd", FUNCTION_MODE)) {
pr_err("Cannot set adaptive keyboard mode\n");
return false;
}
}
adaptive_keyboard_prev_mode = current_mode;
adaptive_keyboard_mode_is_saved = true;

if (adaptive_keyboard_set_mode (FUNCTION_MODE) < 0)
return false;
return true;

default:
Expand Down

0 comments on commit f74587f

Please sign in to comment.