]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
irqchip: renesas-intc-irqpin: DT binding for sense bitfield width
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Mon, 8 Apr 2013 08:08:40 +0000 (08:08 +0000)
committerSimon Horman <horms+renesas@verge.net.au>
Wed, 22 May 2013 12:55:40 +0000 (21:55 +0900)
Most Renesas irqpin controllers have 4-bit sense fields, however, some
have different widths. This patch adds a DT binding to optionally
specify such non-standard values.

Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt [new file with mode: 0644]
drivers/irqchip/irq-renesas-intc-irqpin.c

diff --git a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
new file mode 100644 (file)
index 0000000..c6f09b7
--- /dev/null
@@ -0,0 +1,13 @@
+DT bindings for the R-/SH-Mobile irqpin controller
+
+Required properties:
+
+- compatible: has to be "renesas,intc-irqpin"
+- #interrupt-cells: has to be <2>
+
+Optional properties:
+
+- any properties, listed in interrupts.txt in this directory, and any standard
+  resource allocation properties
+- sense-bitfield-width: width of a single sense bitfield in the SENSE register,
+  if different from the default 4 bits
index 5a68e5accec146856bdb86d0553a1691a9ec2d1a..4aca1b2bcc489dcf16d40dbc346649d1d89e42ad 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <linux/init.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/spinlock.h>
 #include <linux/interrupt.h>
@@ -349,6 +350,9 @@ static int intc_irqpin_probe(struct platform_device *pdev)
        /* deal with driver instance configuration */
        if (pdata)
                memcpy(&p->config, pdata, sizeof(*pdata));
+       else
+               of_property_read_u32(pdev->dev.of_node, "sense-bitfield-width",
+                                    &p->config.sense_bitfield_width);
        if (!p->config.sense_bitfield_width)
                p->config.sense_bitfield_width = 4; /* default to 4 bits */