diff mbox

[U-Boot] gpio: pca953x: Fix register reading past 8th GPIO

Message ID 1463990096-2977-1-git-send-email-mario.six@gdsys.cc
State Accepted
Commit fc76b698736efa9d52e06aa09c03dc8ef10fd581
Delegated to: Simon Glass
Headers show

Commit Message

Mario Six May 23, 2016, 7:54 a.m. UTC
A bug in the pca953x driver prevents correct reading of GPIO input
values beyond the 8th GPIO; all values are reported as zero. Setting of
GPIO output values is not affected.

This patch fixes the reading behavior.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
---
 drivers/gpio/pca953x_gpio.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Peng Fan May 23, 2016, 9:15 a.m. UTC | #1
Hi Mario,

On Mon, May 23, 2016 at 09:54:56AM +0200, Mario Six wrote:
>A bug in the pca953x driver prevents correct reading of GPIO input
>values beyond the 8th GPIO; all values are reported as zero. Setting of
>GPIO output values is not affected.
>
>This patch fixes the reading behavior.
>
>Signed-off-by: Mario Six <mario.six@gdsys.cc>

Reviewed-by: Peng Fan <van.freenix@gmail.com>

Regards,
Peng.

>---
> drivers/gpio/pca953x_gpio.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/gpio/pca953x_gpio.c b/drivers/gpio/pca953x_gpio.c
>index 987d10e..3cbfa09 100644
>--- a/drivers/gpio/pca953x_gpio.c
>+++ b/drivers/gpio/pca953x_gpio.c
>@@ -145,11 +145,13 @@ static int pca953x_get_value(struct udevice *dev, unsigned offset)
> 	int ret;
> 	u8 val = 0;
> 
>+	int off = offset % BANK_SZ;
>+
> 	ret = pca953x_read_single(dev, PCA953X_INPUT, &val, offset);
> 	if (ret)
> 		return ret;
> 
>-	return (val >> offset) & 0x1;
>+	return (val >> off) & 0x1;
> }
> 
> static int pca953x_set_value(struct udevice *dev, unsigned offset,
>-- 
>2.7.0.GIT
>
Simon Glass June 8, 2016, 2:43 a.m. UTC | #2
On 23 May 2016 at 02:15, Peng Fan <van.freenix@gmail.com> wrote:
> Hi Mario,
>
> On Mon, May 23, 2016 at 09:54:56AM +0200, Mario Six wrote:
>>A bug in the pca953x driver prevents correct reading of GPIO input
>>values beyond the 8th GPIO; all values are reported as zero. Setting of
>>GPIO output values is not affected.
>>
>>This patch fixes the reading behavior.
>>
>>Signed-off-by: Mario Six <mario.six@gdsys.cc>
>
> Reviewed-by: Peng Fan <van.freenix@gmail.com>

Acked-by: Simon Glass <sjg@chromium.org>
Simon Glass June 9, 2016, 7:20 p.m. UTC | #3
On 7 June 2016 at 20:43, Simon Glass <sjg@chromium.org> wrote:
> On 23 May 2016 at 02:15, Peng Fan <van.freenix@gmail.com> wrote:
>> Hi Mario,
>>
>> On Mon, May 23, 2016 at 09:54:56AM +0200, Mario Six wrote:
>>>A bug in the pca953x driver prevents correct reading of GPIO input
>>>values beyond the 8th GPIO; all values are reported as zero. Setting of
>>>GPIO output values is not affected.
>>>
>>>This patch fixes the reading behavior.
>>>
>>>Signed-off-by: Mario Six <mario.six@gdsys.cc>
>>
>> Reviewed-by: Peng Fan <van.freenix@gmail.com>
>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
diff mbox

Patch

diff --git a/drivers/gpio/pca953x_gpio.c b/drivers/gpio/pca953x_gpio.c
index 987d10e..3cbfa09 100644
--- a/drivers/gpio/pca953x_gpio.c
+++ b/drivers/gpio/pca953x_gpio.c
@@ -145,11 +145,13 @@  static int pca953x_get_value(struct udevice *dev, unsigned offset)
 	int ret;
 	u8 val = 0;
 
+	int off = offset % BANK_SZ;
+
 	ret = pca953x_read_single(dev, PCA953X_INPUT, &val, offset);
 	if (ret)
 		return ret;
 
-	return (val >> offset) & 0x1;
+	return (val >> off) & 0x1;
 }
 
 static int pca953x_set_value(struct udevice *dev, unsigned offset,