Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1467620 > unrolled thread
| Started by | Bartosz Golaszewski <bgolaszewski@baylibre.com> |
|---|---|
| First post | 2016-08-22 15:30 +0200 |
| Last post | 2016-08-22 16:30 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] i2c: pca953x: fix a lockdep warning Bartosz Golaszewski <bgolaszewski@baylibre.com> - 2016-08-22 15:30 +0200
Re: [PATCH] i2c: pca953x: fix a lockdep warning Linus Walleij <linus.walleij@linaro.org> - 2016-08-22 16:10 +0200
Re: [PATCH] i2c: pca953x: fix a lockdep warning Bartosz Golaszewski <bgolaszewski@baylibre.com> - 2016-08-22 16:30 +0200
Re: [PATCH] i2c: pca953x: fix a lockdep warning Linus Walleij <linus.walleij@linaro.org> - 2016-08-22 16:30 +0200
| From | Bartosz Golaszewski <bgolaszewski@baylibre.com> |
|---|---|
| Date | 2016-08-22 15:30 +0200 |
| Subject | [PATCH] i2c: pca953x: fix a lockdep warning |
| Message-ID | <s8XsB-6Ph-1@gated-at.bofh.it> |
If an I2C GPIO multiplexer is driven by a GPIO provided by an expander
when there's a second expander using the same device driver on one of
the I2C bus segments, lockdep prints a deadlock warning when trying to
set the direction or the value of the GPIOs provided by the second
expander.
The below diagram presents the setup:
- - - - -
------- --------- Bus segment 1 | |
| | | |--------------- Devices
| | SCL/SDA | | | |
| Linux |-----------| I2C MUX | - - - - -
| | | | | Bus segment 2
| | | | |-------------------
------- | --------- |
| | - - - - -
------------ | MUX GPIO | |
| | | Devices
| GPIO | | | |
| Expander 1 |---- - - - - -
| | |
------------ | SCL/SDA
|
------------
| |
| GPIO |
| Expander 2 |
| |
------------
The reason for lockdep warning is that we take the chip->i2c_lock in
pca953x_gpio_set_value() or pca953x_gpio_direction_output() and then
come right back to pca953x_gpio_set_value() when the GPIO mux kicks
in. The locks actually protect different expanders, but lockdep
doesn't see this and says:
Possible unsafe locking scenario:
CPU0
----
lock(&chip->i2c_lock);
lock(&chip->i2c_lock);
*** DEADLOCK ***
May be due to missing lock nesting notation
To shut lockdep up, use mutex_lock_nested() and use the GPIO base
number as the subclass argument (it has the same type).
NOTE: this only fixes a specific issue we're experiencing with our
setup. The problem would probably occur as well with other I2C
expanders under similar circumstances. A proper fix would probably be
to implement a GPIO expander framework that would unduplicate common
code for all drivers.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
---
drivers/gpio/gpio-pca953x.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
index 02f2a56..9086079 100644
--- a/drivers/gpio/gpio-pca953x.c
+++ b/drivers/gpio/gpio-pca953x.c
@@ -329,7 +329,12 @@ static void pca953x_gpio_set_value(struct gpio_chip *gc, unsigned off, int val)
u8 reg_val;
int ret, offset = 0;
- mutex_lock(&chip->i2c_lock);
+ /*
+ * We're using mutex_lock_nested() here to avoid a lockdep warning
+ * when there are two pca953x expanders, of which one is used to
+ * control an i2c gpio mux.
+ */
+ mutex_lock_nested(&chip->i2c_lock, chip->gpio_start);
if (val)
reg_val = chip->reg_output[off / BANK_SZ]
| (1u << (off % BANK_SZ));
--
2.7.4
[toc] | [next] | [standalone]
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2016-08-22 16:10 +0200 |
| Message-ID | <s8Y5j-7jf-15@gated-at.bofh.it> |
| In reply to | #1467620 |
On Mon, Aug 22, 2016 at 3:29 PM, Bartosz Golaszewski <bgolaszewski@baylibre.com> wrote: The $SUBJECT of this patch should be something beginning with gpio: atleast. Apart from that it'd be nice to get review from the other people using the PCA953x driver, since it's rather complex. Yours, Linus Walleij
[toc] | [prev] | [next] | [standalone]
| From | Bartosz Golaszewski <bgolaszewski@baylibre.com> |
|---|---|
| Date | 2016-08-22 16:30 +0200 |
| Message-ID | <s8YoF-7rO-7@gated-at.bofh.it> |
| In reply to | #1467653 |
2016-08-22 16:06 GMT+02:00 Linus Walleij <linus.walleij@linaro.org>: > On Mon, Aug 22, 2016 at 3:29 PM, Bartosz Golaszewski > <bgolaszewski@baylibre.com> wrote: > > The $SUBJECT of this patch should be something beginning with > gpio: atleast. > Oops, it was supposed to be gpio, but I was working on i2c stuff and mixed it. I'll fix that in v2 after getting some reviews. Best regards, Bartosz Golaszewski > Apart from that it'd be nice to get review from the other people using > the PCA953x driver, since it's rather complex. > > Yours, > Linus Walleij
[toc] | [prev] | [next] | [standalone]
| From | Linus Walleij <linus.walleij@linaro.org> |
|---|---|
| Date | 2016-08-22 16:30 +0200 |
| Message-ID | <s8YoF-7rO-13@gated-at.bofh.it> |
| In reply to | #1467672 |
On Mon, Aug 22, 2016 at 4:15 PM, Bartosz Golaszewski <bgolaszewski@baylibre.com> wrote: > 2016-08-22 16:06 GMT+02:00 Linus Walleij <linus.walleij@linaro.org>: >> On Mon, Aug 22, 2016 at 3:29 PM, Bartosz Golaszewski >> <bgolaszewski@baylibre.com> wrote: >> >> The $SUBJECT of this patch should be something beginning with >> gpio: atleast. >> > > Oops, it was supposed to be gpio, but I was working on i2c stuff and > mixed it. I'll fix that in v2 after getting some reviews. OK! Pls include the people I added on the To: line when you repost. Yours, Linus Walleij
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web