gpio: dwapb: Rework support for 1 interrupt per port A GPIO

Treat DT and ACPI the same as much as possible. Note that we can't use
platform_get_irq() to get the DT interrupts as they are in the port
sub-node and hence do not have an associated platform device.

This also fixes a problem introduced with error checking when calling
platform_get_irq().

Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Phil Edworthy 2018-05-23 09:52:44 +01:00 коммит произвёл Linus Walleij
Родитель aa1fdda8f7
Коммит da069d5d2b
1 изменённых файлов: 22 добавлений и 31 удалений

Просмотреть файл

@ -444,7 +444,7 @@ static void dwapb_configure_irqs(struct dwapb_gpio *gpio,
int i; int i;
for (i = 0; i < pp->ngpio; i++) { for (i = 0; i < pp->ngpio; i++) {
if (pp->irq[i]) if (pp->irq[i] >= 0)
irq_set_chained_handler_and_data(pp->irq[i], irq_set_chained_handler_and_data(pp->irq[i],
dwapb_irq_handler, gpio); dwapb_irq_handler, gpio);
} }
@ -562,7 +562,7 @@ dwapb_gpio_get_pdata(struct device *dev)
struct dwapb_platform_data *pdata; struct dwapb_platform_data *pdata;
struct dwapb_port_property *pp; struct dwapb_port_property *pp;
int nports; int nports;
int i; int i, j;
nports = device_get_child_node_count(dev); nports = device_get_child_node_count(dev);
if (nports == 0) if (nports == 0)
@ -580,6 +580,8 @@ dwapb_gpio_get_pdata(struct device *dev)
i = 0; i = 0;
device_for_each_child_node(dev, fwnode) { device_for_each_child_node(dev, fwnode) {
struct device_node *np = NULL;
pp = &pdata->properties[i++]; pp = &pdata->properties[i++];
pp->fwnode = fwnode; pp->fwnode = fwnode;
@ -599,46 +601,35 @@ dwapb_gpio_get_pdata(struct device *dev)
pp->ngpio = 32; pp->ngpio = 32;
} }
pp->irq_shared = false;
pp->gpio_base = -1;
/* /*
* Only port A can provide interrupts in all configurations of * Only port A can provide interrupts in all configurations of
* the IP. * the IP.
*/ */
if (dev->of_node && pp->idx == 0 && if (pp->idx != 0)
fwnode_property_read_bool(fwnode, continue;
if (dev->of_node && fwnode_property_read_bool(fwnode,
"interrupt-controller")) { "interrupt-controller")) {
struct device_node *np = to_of_node(fwnode); np = to_of_node(fwnode);
unsigned int j;
/*
* The IP has configuration options to allow a single
* combined interrupt or one per gpio. If one per gpio,
* some might not be used.
*/
for (j = 0; j < pp->ngpio; j++) {
int irq = of_irq_get(np, j);
if (irq < 0)
continue;
pp->irq[j] = irq;
pp->has_irq = true;
}
if (!pp->has_irq)
dev_warn(dev, "no irq for port%d\n", pp->idx);
} }
if (has_acpi_companion(dev) && pp->idx == 0) { for (j = 0; j < pp->ngpio; j++) {
unsigned int j; pp->irq[j] = -ENXIO;
for (j = 0; j < pp->ngpio; j++) { if (np)
pp->irq[j] = of_irq_get(np, j);
else if (has_acpi_companion(dev))
pp->irq[j] = platform_get_irq(to_platform_device(dev), j); pp->irq[j] = platform_get_irq(to_platform_device(dev), j);
if (pp->irq[j])
pp->has_irq = true; if (pp->irq[j] >= 0)
} pp->has_irq = true;
} }
pp->irq_shared = false; if (!pp->has_irq)
pp->gpio_base = -1; dev_warn(dev, "no irq for port%d\n", pp->idx);
} }
return pdata; return pdata;