mirror of https://gitee.com/openkylin/linux.git
gpio: xlp: Pass irqchip when adding gpiochip
We need to convert all old gpio irqchips to pass the irqchip setup along when adding the gpio_chip. For more info see drivers/gpio/TODO. For chained irqchips this is a pretty straight-forward conversion. Cc: Jayachandran C <jnair@caviumnetworks.com> Cc: Kamlakant Patel <kamlakant.patel@broadcom.com> Cc: Thierry Reding <treding@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20190809135119.6946-1-linus.walleij@linaro.org Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
fe8cf20d29
commit
c7e66e48c0
|
@ -290,6 +290,7 @@ MODULE_DEVICE_TABLE(of, xlp_gpio_of_ids);
|
||||||
static int xlp_gpio_probe(struct platform_device *pdev)
|
static int xlp_gpio_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct gpio_chip *gc;
|
struct gpio_chip *gc;
|
||||||
|
struct gpio_irq_chip *girq;
|
||||||
struct xlp_gpio_priv *priv;
|
struct xlp_gpio_priv *priv;
|
||||||
void __iomem *gpio_base;
|
void __iomem *gpio_base;
|
||||||
int irq_base, irq, err;
|
int irq_base, irq, err;
|
||||||
|
@ -395,27 +396,27 @@ static int xlp_gpio_probe(struct platform_device *pdev)
|
||||||
irq_base = 0;
|
irq_base = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
girq = &gc->irq;
|
||||||
|
girq->chip = &xlp_gpio_irq_chip;
|
||||||
|
girq->parent_handler = xlp_gpio_generic_handler;
|
||||||
|
girq->num_parents = 1;
|
||||||
|
girq->parents = devm_kcalloc(&pdev->dev, 1,
|
||||||
|
sizeof(*girq->parents),
|
||||||
|
GFP_KERNEL);
|
||||||
|
if (!girq->parents)
|
||||||
|
return -ENOMEM;
|
||||||
|
girq->parents[0] = irq;
|
||||||
|
girq->first = irq_base;
|
||||||
|
girq->default_type = IRQ_TYPE_NONE;
|
||||||
|
girq->handler = handle_level_irq;
|
||||||
|
|
||||||
err = gpiochip_add_data(gc, priv);
|
err = gpiochip_add_data(gc, priv);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
err = gpiochip_irqchip_add(gc, &xlp_gpio_irq_chip, irq_base,
|
|
||||||
handle_level_irq, IRQ_TYPE_NONE);
|
|
||||||
if (err) {
|
|
||||||
dev_err(&pdev->dev, "Could not connect irqchip to gpiochip!\n");
|
|
||||||
goto out_gpio_remove;
|
|
||||||
}
|
|
||||||
|
|
||||||
gpiochip_set_chained_irqchip(gc, &xlp_gpio_irq_chip, irq,
|
|
||||||
xlp_gpio_generic_handler);
|
|
||||||
|
|
||||||
dev_info(&pdev->dev, "registered %d GPIOs\n", gc->ngpio);
|
dev_info(&pdev->dev, "registered %d GPIOs\n", gc->ngpio);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_gpio_remove:
|
|
||||||
gpiochip_remove(gc);
|
|
||||||
return err;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI
|
#ifdef CONFIG_ACPI
|
||||||
|
|
Loading…
Reference in New Issue