pinctrl: lynxpoint: Move ownership check to IRQ chip
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 25 Nov 2019 17:28:14 +0000 (19:28 +0200)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 13 Dec 2019 14:48:48 +0000 (16:48 +0200)
There is nothing wrong with requesting pin that owned by ACPI.
The only difference is how interrupt status will be reflected.
It means that in ACPI mode we may not use pin as GPIO-backed IRQ.

Taking above into consideration, move the check from GPIO to IRQ chip
callback.

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
drivers/pinctrl/intel/pinctrl-lynxpoint.c

index 19e8f8f..ddb201e 100644 (file)
@@ -118,12 +118,6 @@ static int lp_gpio_request(struct gpio_chip *chip, unsigned int offset)
 
        pm_runtime_get(lg->dev); /* should we put if failed */
 
-       /* Fail if BIOS reserved pin for ACPI use */
-       if (lp_gpio_acpi_use(lg, offset)) {
-               dev_err(lg->dev, "gpio %d reserved for ACPI\n", offset);
-               return -EBUSY;
-       }
-
        /*
         * Reconfigure pin to GPIO mode if needed and issue a warning,
         * since we expect firmware to configure it properly.
@@ -280,6 +274,12 @@ static int lp_irq_set_type(struct irq_data *d, unsigned int type)
        if (hwirq >= lg->chip.ngpio)
                return -EINVAL;
 
+       /* Fail if BIOS reserved pin for ACPI use */
+       if (lp_gpio_acpi_use(lg, hwirq)) {
+               dev_err(lg->dev, "pin %u can't be used as IRQ\n", hwirq);
+               return -EBUSY;
+       }
+
        raw_spin_lock_irqsave(&lg->lock, flags);
        value = ioread32(reg);