linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [BISECTED REGRESSION] Broken USB/GPIO on OMAP1 OSK
@ 2020-11-28 23:51 Aaro Koskinen
  2020-11-29 11:57 ` Aaro Koskinen
  0 siblings, 1 reply; 3+ messages in thread
From: Aaro Koskinen @ 2020-11-28 23:51 UTC (permalink / raw)
  To: Linus Walleij, Tony Lindgren, Alan Stern; +Cc: linux-omap, linux-kernel

Hi,

I tried to upgrade my OMAP1 OSK board to v5.9, but the rootfs cannot
be accessed anymore due to broken USB. It fails to probe with the
following logs:

[    9.219940] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
[    9.250366] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
[    9.731445] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
[   10.342102] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
[   10.966430] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring

Bisected to:

commit 15d157e874437e381643c37a10922388d6e55b29
Author: Linus Walleij <linus.walleij@linaro.org>
Date:   Mon Jul 20 15:55:24 2020 +0200

    usb: ohci-omap: Convert to use GPIO descriptors

I suspect one of the issues is the name "i2c-tps65010" vs "tps65010":

# cat /sys/devices/platform/omap_i2c.1/i2c-1/i2c-tps65010/gpio/gpiochip208/label
tps65010

However changing that in the lookup table still doesn't help much; I got rid
of the "deferring" message but the USB still doesn't work. So far the only
workaround I have is to revert the whole commit.

A.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [BISECTED REGRESSION] Broken USB/GPIO on OMAP1 OSK
  2020-11-28 23:51 [BISECTED REGRESSION] Broken USB/GPIO on OMAP1 OSK Aaro Koskinen
@ 2020-11-29 11:57 ` Aaro Koskinen
  2020-11-30  8:15   ` Linus Walleij
  0 siblings, 1 reply; 3+ messages in thread
From: Aaro Koskinen @ 2020-11-29 11:57 UTC (permalink / raw)
  To: Linus Walleij, Tony Lindgren, Alan Stern; +Cc: linux-omap, linux-kernel

Hi,

On Sun, Nov 29, 2020 at 01:51:54AM +0200, Aaro Koskinen wrote:
> I tried to upgrade my OMAP1 OSK board to v5.9, but the rootfs cannot
> be accessed anymore due to broken USB. It fails to probe with the
> following logs:
> 
> [    9.219940] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> [    9.250366] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> [    9.731445] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> [   10.342102] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> [   10.966430] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> 
> Bisected to:
> 
> commit 15d157e874437e381643c37a10922388d6e55b29
> Author: Linus Walleij <linus.walleij@linaro.org>
> Date:   Mon Jul 20 15:55:24 2020 +0200
> 
>     usb: ohci-omap: Convert to use GPIO descriptors
> 
> I suspect one of the issues is the name "i2c-tps65010" vs "tps65010":
> 
> # cat /sys/devices/platform/omap_i2c.1/i2c-1/i2c-tps65010/gpio/gpiochip208/label
> tps65010
> 
> However changing that in the lookup table still doesn't help much; I got rid
> of the "deferring" message but the USB still doesn't work. So far the only
> workaround I have is to revert the whole commit.

GPIO numbering goes wrong... It's now trying to poke GPIO2.

Also gpiod_set_value_cansleep() probably should be used as tps65010
can sleep.

A.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [BISECTED REGRESSION] Broken USB/GPIO on OMAP1 OSK
  2020-11-29 11:57 ` Aaro Koskinen
@ 2020-11-30  8:15   ` Linus Walleij
  0 siblings, 0 replies; 3+ messages in thread
From: Linus Walleij @ 2020-11-30  8:15 UTC (permalink / raw)
  To: Aaro Koskinen; +Cc: Tony Lindgren, Alan Stern, Linux-OMAP, linux-kernel

On Sun, Nov 29, 2020 at 12:57 PM Aaro Koskinen <aaro.koskinen@iki.fi> wrote:
> On Sun, Nov 29, 2020 at 01:51:54AM +0200, Aaro Koskinen wrote:

> > I tried to upgrade my OMAP1 OSK board to v5.9, but the rootfs cannot
> > be accessed anymore due to broken USB. It fails to probe with the
> > following logs:
> >
> > [    9.219940] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> > [    9.250366] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> > [    9.731445] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> > [   10.342102] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> > [   10.966430] ohci ohci: cannot find GPIO chip i2c-tps65010, deferring
> >
> > Bisected to:
> >
> > commit 15d157e874437e381643c37a10922388d6e55b29
> > Author: Linus Walleij <linus.walleij@linaro.org>
> > Date:   Mon Jul 20 15:55:24 2020 +0200
> >
> >     usb: ohci-omap: Convert to use GPIO descriptors
> >
> > I suspect one of the issues is the name "i2c-tps65010" vs "tps65010":
> >
> > # cat /sys/devices/platform/omap_i2c.1/i2c-1/i2c-tps65010/gpio/gpiochip208/label
> > tps65010
> >
> > However changing that in the lookup table still doesn't help much; I got rid
> > of the "deferring" message but the USB still doesn't work. So far the only
> > workaround I have is to revert the whole commit.
>
> GPIO numbering goes wrong... It's now trying to poke GPIO2.

Hm the old code looked like this:

#define GPIO1  1

tps65010_set_gpio_out_value(GPIO1, LOW);

And I missed that the code inside the tps65010 driver subtracts 1 from
the passed parameter and the standard gpiolib accessors add 1 before
calling the same function. I missed this.

> Also gpiod_set_value_cansleep() probably should be used as tps65010
> can sleep.

OK I'll send a combined patch fixing all issues (I hope).

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-30  8:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-28 23:51 [BISECTED REGRESSION] Broken USB/GPIO on OMAP1 OSK Aaro Koskinen
2020-11-29 11:57 ` Aaro Koskinen
2020-11-30  8:15   ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).