[RFC PATCH v1 2/5] misc: tda8026: Add NXP TDA8026 PHY driver
From: Sebastian Reichel <hidden>
Date: 2014-01-07 11:46:05
Also in:
linux-devicetree, linux-omap, lkml
From: Sebastian Reichel <hidden>
Date: 2014-01-07 11:46:05
Also in:
linux-devicetree, linux-omap, lkml
On Tue, Jan 07, 2014 at 12:06:37PM +0530, Satish Patel wrote:
quoted
quoted
+ if (pdata->irq == 0) { + /* look for the field irq-gpio in DT */ + irq_gpio = of_get_named_gpio(np, "irq-gpio", 0); + if (!gpio_is_valid(irq_gpio)) { + dev_err(dev, "Failed to get irq gpio,\n"); + return -EIO; + }This is horrible. If the gpio controller can act as an irq controllerNo it's not true. Let me clarify the signal flow, Pins => GPIO => GPIO BANK => Interrupt controller => CPU/MPU
This is done automatically if you use the gpio controller as
interrupt source (here with GPIO line 22 as example):
device-tree-node {
interrupts-extended = <&gpio1 22>;
};
alternatively, but then the irqs from the normal irq controller
can't be used:
device-tree-node {
interrupt-parent = <&gpio1>;
interrupts = <22>;
};
-- Sebastian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20140107/bc4b2c23/attachment.sig>