Skip to content

Commit 01e7ba6

Browse files
nunojsagregkh
authored andcommitted
Input: adp5589-keys - fix adp5589_gpio_get_value()
commit c684771 upstream. The adp5589 seems to have the same behavior as similar devices as explained in commit 910a9f5 ("Input: adp5588-keys - get value from data out when dir is out"). Basically, when the gpio is set as output we need to get the value from ADP5589_GPO_DATA_OUT_A register instead of ADP5589_GPI_STATUS_A. Fixes: 9d2e173 ("Input: ADP5589 - new driver for I2C Keypad Decoder and I/O Expander") Signed-off-by: Nuno Sa <nuno.sa@analog.com> Link: https://lore.kernel.org/r/20241001-b4-dev-adp5589-fw-conversion-v1-2-fca0149dfc47@analog.com Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 34e304c commit 01e7ba6

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

drivers/input/keyboard/adp5589-keys.c

+10-3
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,17 @@ static int adp5589_gpio_get_value(struct gpio_chip *chip, unsigned off)
391391
struct adp5589_kpad *kpad = gpiochip_get_data(chip);
392392
unsigned int bank = kpad->var->bank(kpad->gpiomap[off]);
393393
unsigned int bit = kpad->var->bit(kpad->gpiomap[off]);
394+
int val;
394395

395-
return !!(adp5589_read(kpad->client,
396-
kpad->var->reg(ADP5589_GPI_STATUS_A) + bank) &
397-
bit);
396+
mutex_lock(&kpad->gpio_lock);
397+
if (kpad->dir[bank] & bit)
398+
val = kpad->dat_out[bank];
399+
else
400+
val = adp5589_read(kpad->client,
401+
kpad->var->reg(ADP5589_GPI_STATUS_A) + bank);
402+
mutex_unlock(&kpad->gpio_lock);
403+
404+
return !!(val & bit);
398405
}
399406

400407
static void adp5589_gpio_set_value(struct gpio_chip *chip,

0 commit comments

Comments
 (0)