From: Simon Horman <horms@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] ARM: shmobile: irqpin: add a DT property to enable masking on parent
Date: Sat, 25 May 2013 00:39:50 +0000 [thread overview]
Message-ID: <20130525003950.GA4476@verge.net.au> (raw)
In-Reply-To: <Pine.LNX.4.64.1305241109530.1090@axis700.grange>
On Fri, May 24, 2013 at 11:13:03AM +0200, Guennadi Liakhovetski wrote:
> To disable spurious interrupts, that get triggered on certain hardware, the
> irqpin driver masks them on the parent interrupt controller. To specify
> such broken devices a .control_parent parameter can be provided in the
> platform data. In the DT case we need a property, to do the same.
>
> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> ---
>
> These two patches simply split the earlier "ARM: shmobile: irqpin: fix
> handling of spurious interrupts in DT case" patch into two parts.
> Otherwise no change.
Magnus,
could you please review this series?
>
> .../interrupt-controller/renesas,intc-irqpin.txt | 2 ++
> drivers/irqchip/irq-renesas-intc-irqpin.c | 7 +++++--
> 2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> index c6f09b7..152b10a 100644
> --- a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> +++ b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> @@ -11,3 +11,5 @@ Optional properties:
> resource allocation properties
> - sense-bitfield-width: width of a single sense bitfield in the SENSE register,
> if different from the default 4 bits
> +- control-parent: disable and enable interrupts on the parent interrupt
> + controller, needed for some broken implementations
> diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c
> index 4aca1b2..82cec63 100644
> --- a/drivers/irqchip/irq-renesas-intc-irqpin.c
> +++ b/drivers/irqchip/irq-renesas-intc-irqpin.c
> @@ -348,11 +348,14 @@ static int intc_irqpin_probe(struct platform_device *pdev)
> }
>
> /* deal with driver instance configuration */
> - if (pdata)
> + if (pdata) {
> memcpy(&p->config, pdata, sizeof(*pdata));
> - else
> + } else {
> of_property_read_u32(pdev->dev.of_node, "sense-bitfield-width",
> &p->config.sense_bitfield_width);
> + p->config.control_parent = of_property_read_bool(pdev->dev.of_node,
> + "control-parent");
> + }
> if (!p->config.sense_bitfield_width)
> p->config.sense_bitfield_width = 4; /* default to 4 bits */
>
> --
> 1.7.2.5
>
WARNING: multiple messages have this Message-ID (diff)
From: horms@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] ARM: shmobile: irqpin: add a DT property to enable masking on parent
Date: Sat, 25 May 2013 09:39:50 +0900 [thread overview]
Message-ID: <20130525003950.GA4476@verge.net.au> (raw)
In-Reply-To: <Pine.LNX.4.64.1305241109530.1090@axis700.grange>
On Fri, May 24, 2013 at 11:13:03AM +0200, Guennadi Liakhovetski wrote:
> To disable spurious interrupts, that get triggered on certain hardware, the
> irqpin driver masks them on the parent interrupt controller. To specify
> such broken devices a .control_parent parameter can be provided in the
> platform data. In the DT case we need a property, to do the same.
>
> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> ---
>
> These two patches simply split the earlier "ARM: shmobile: irqpin: fix
> handling of spurious interrupts in DT case" patch into two parts.
> Otherwise no change.
Magnus,
could you please review this series?
>
> .../interrupt-controller/renesas,intc-irqpin.txt | 2 ++
> drivers/irqchip/irq-renesas-intc-irqpin.c | 7 +++++--
> 2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> index c6f09b7..152b10a 100644
> --- a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> +++ b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> @@ -11,3 +11,5 @@ Optional properties:
> resource allocation properties
> - sense-bitfield-width: width of a single sense bitfield in the SENSE register,
> if different from the default 4 bits
> +- control-parent: disable and enable interrupts on the parent interrupt
> + controller, needed for some broken implementations
> diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c
> index 4aca1b2..82cec63 100644
> --- a/drivers/irqchip/irq-renesas-intc-irqpin.c
> +++ b/drivers/irqchip/irq-renesas-intc-irqpin.c
> @@ -348,11 +348,14 @@ static int intc_irqpin_probe(struct platform_device *pdev)
> }
>
> /* deal with driver instance configuration */
> - if (pdata)
> + if (pdata) {
> memcpy(&p->config, pdata, sizeof(*pdata));
> - else
> + } else {
> of_property_read_u32(pdev->dev.of_node, "sense-bitfield-width",
> &p->config.sense_bitfield_width);
> + p->config.control_parent = of_property_read_bool(pdev->dev.of_node,
> + "control-parent");
> + }
> if (!p->config.sense_bitfield_width)
> p->config.sense_bitfield_width = 4; /* default to 4 bits */
>
> --
> 1.7.2.5
>
WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@verge.net.au>
To: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Cc: linux-sh@vger.kernel.org, Magnus Damm <magnus.damm@gmail.com>,
linux-arm-kernel@lists.infradead.org,
devicetree-discuss@lists.ozlabs.org
Subject: Re: [PATCH 1/2] ARM: shmobile: irqpin: add a DT property to enable masking on parent
Date: Sat, 25 May 2013 09:39:50 +0900 [thread overview]
Message-ID: <20130525003950.GA4476@verge.net.au> (raw)
In-Reply-To: <Pine.LNX.4.64.1305241109530.1090@axis700.grange>
On Fri, May 24, 2013 at 11:13:03AM +0200, Guennadi Liakhovetski wrote:
> To disable spurious interrupts, that get triggered on certain hardware, the
> irqpin driver masks them on the parent interrupt controller. To specify
> such broken devices a .control_parent parameter can be provided in the
> platform data. In the DT case we need a property, to do the same.
>
> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> ---
>
> These two patches simply split the earlier "ARM: shmobile: irqpin: fix
> handling of spurious interrupts in DT case" patch into two parts.
> Otherwise no change.
Magnus,
could you please review this series?
>
> .../interrupt-controller/renesas,intc-irqpin.txt | 2 ++
> drivers/irqchip/irq-renesas-intc-irqpin.c | 7 +++++--
> 2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> index c6f09b7..152b10a 100644
> --- a/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> +++ b/Documentation/devicetree/bindings/interrupt-controller/renesas,intc-irqpin.txt
> @@ -11,3 +11,5 @@ Optional properties:
> resource allocation properties
> - sense-bitfield-width: width of a single sense bitfield in the SENSE register,
> if different from the default 4 bits
> +- control-parent: disable and enable interrupts on the parent interrupt
> + controller, needed for some broken implementations
> diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c
> index 4aca1b2..82cec63 100644
> --- a/drivers/irqchip/irq-renesas-intc-irqpin.c
> +++ b/drivers/irqchip/irq-renesas-intc-irqpin.c
> @@ -348,11 +348,14 @@ static int intc_irqpin_probe(struct platform_device *pdev)
> }
>
> /* deal with driver instance configuration */
> - if (pdata)
> + if (pdata) {
> memcpy(&p->config, pdata, sizeof(*pdata));
> - else
> + } else {
> of_property_read_u32(pdev->dev.of_node, "sense-bitfield-width",
> &p->config.sense_bitfield_width);
> + p->config.control_parent = of_property_read_bool(pdev->dev.of_node,
> + "control-parent");
> + }
> if (!p->config.sense_bitfield_width)
> p->config.sense_bitfield_width = 4; /* default to 4 bits */
>
> --
> 1.7.2.5
>
next prev parent reply other threads:[~2013-05-25 0:39 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-24 9:13 [PATCH 1/2] ARM: shmobile: irqpin: add a DT property to enable masking on parent Guennadi Liakhovetski
2013-05-24 9:13 ` Guennadi Liakhovetski
2013-05-24 9:13 ` Guennadi Liakhovetski
2013-05-24 9:13 ` [PATCH 2/2] ARM: shmobile: irqpin: map spurious interrupts in DT case Guennadi Liakhovetski
2013-05-24 9:13 ` Guennadi Liakhovetski
2013-05-24 9:13 ` Guennadi Liakhovetski
2013-05-31 12:21 ` Grant Likely
2013-05-31 12:21 ` Grant Likely
2013-05-31 12:21 ` Grant Likely
2013-05-25 0:39 ` Simon Horman [this message]
2013-05-25 0:39 ` [PATCH 1/2] ARM: shmobile: irqpin: add a DT property to enable masking on parent Simon Horman
2013-05-25 0:39 ` Simon Horman
2013-06-11 9:37 ` Magnus Damm
2013-06-11 9:37 ` Magnus Damm
2013-06-11 9:37 ` Magnus Damm
2013-06-12 8:38 ` Simon Horman
2013-06-12 8:38 ` Simon Horman
2013-06-12 8:38 ` Simon Horman
2013-06-18 7:41 ` Simon Horman
2013-06-18 7:41 ` Simon Horman
2013-06-18 7:41 ` Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130525003950.GA4476@verge.net.au \
--to=horms@verge.net.au \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.