]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
gpio: brcmstb: correct hwirq to bank map
authorDoug Berger <opendmb@gmail.com>
Tue, 27 Jan 2026 21:46:54 +0000 (13:46 -0800)
committerBartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Wed, 28 Jan 2026 09:14:50 +0000 (10:14 +0100)
The brcmstb_gpio_hwirq_to_bank() function was designed to
accommodate the downward numbering of dynamic GPIOs by
traversing the bank list in the reverse order. However, the
dynamic numbering has changed to increment upward which can
produce an incorrect mapping.

The function is modified to no longer assume an ordering of
the list to accommodate either option.

Fixes: 7b61212f2a07 ("gpiolib: Get rid of ARCH_NR_GPIOS")
Signed-off-by: Doug Berger <opendmb@gmail.com>
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
Reviewed-by: Linus Walleij <linusw@kernel.org>
Link: https://patch.msgid.link/20260127214656.447333-2-florian.fainelli@broadcom.com
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
drivers/gpio/gpio-brcmstb.c

index af9287ff5dc43e80b8934af70a370348c6c38a8f..2352d099709c2b409c48cf450fa4e799af4c89d2 100644 (file)
@@ -301,12 +301,10 @@ static struct brcmstb_gpio_bank *brcmstb_gpio_hwirq_to_bank(
                struct brcmstb_gpio_priv *priv, irq_hw_number_t hwirq)
 {
        struct brcmstb_gpio_bank *bank;
-       int i = 0;
 
-       /* banks are in descending order */
-       list_for_each_entry_reverse(bank, &priv->bank_list, node) {
-               i += bank->chip.gc.ngpio;
-               if (hwirq < i)
+       list_for_each_entry(bank, &priv->bank_list, node) {
+               if (hwirq >= bank->chip.gc.offset &&
+                   hwirq < (bank->chip.gc.offset + bank->chip.gc.ngpio))
                        return bank;
        }
        return NULL;