From: Lee Jones <lee.jones@linaro.org>
To: Sean Cross <xobs@kosagi.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>,
linux-kernel@vger.kernel.org, bunnie@kosagi.com
Subject: Re: [PATCH] mfd: stmpe: add OF support for irq-over-gpio
Date: Fri, 29 Aug 2014 12:20:27 +0100 [thread overview]
Message-ID: <20140829112027.GK24579@lee--X1> (raw)
In-Reply-To: <1408440288-27323-1-git-send-email-xobs@kosagi.com>
On Tue, 19 Aug 2014, Sean Cross wrote:
> When using the STMPE610 or STMPE811 as a platform device, the platform data
> struct allows for irq_over_gpio to be set. This patch allows for using a
> GPIO as an IRQ source when using device tree by specifying an irq-gpio
> property.
>
> Signed-off-by: Sean Cross <xobs@kosagi.com>
> ---
> Documentation/devicetree/bindings/mfd/stmpe.txt | 1 +
> drivers/mfd/stmpe.c | 7 ++++++-
> 2 files changed, 7 insertions(+), 1 deletion(-)
See: Documentation/devicetree/bindings/submitting-patches.txt
- You need to break this up into two patches
- You need to CC the DT folks.
> diff --git a/Documentation/devicetree/bindings/mfd/stmpe.txt b/Documentation/devicetree/bindings/mfd/stmpe.txt
> index 56edb55..3fb68bf 100644
> --- a/Documentation/devicetree/bindings/mfd/stmpe.txt
> +++ b/Documentation/devicetree/bindings/mfd/stmpe.txt
> @@ -13,6 +13,7 @@ Optional properties:
> - interrupt-parent : Specifies which IRQ controller we're connected to
> - wakeup-source : Marks the input device as wakable
> - st,autosleep-timeout : Valid entries (ms); 4, 16, 32, 64, 128, 256, 512 and 1024
> + - irq-gpio : If present, which GPIO to use for event IRQ
>
> Example:
>
> diff --git a/drivers/mfd/stmpe.c b/drivers/mfd/stmpe.c
> index 3b6bfa7..4c42b05 100644
> --- a/drivers/mfd/stmpe.c
> +++ b/drivers/mfd/stmpe.c
> @@ -1122,7 +1122,12 @@ static void stmpe_of_probe(struct stmpe_platform_data *pdata,
> if (pdata->id < 0)
> pdata->id = -1;
>
> - pdata->irq_trigger = IRQF_TRIGGER_NONE;
> + pdata->irq_gpio = of_get_named_gpio_flags(np, "irq-gpio", 0,
> + &pdata->irq_trigger);
> + if (gpio_is_valid(pdata->irq_gpio))
> + pdata->irq_over_gpio = 1;
> + else
> + pdata->irq_trigger = IRQF_TRIGGER_NONE;
>
> of_property_read_u32(np, "st,autosleep-timeout",
> &pdata->autosleep_timeout);
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
prev parent reply other threads:[~2014-08-29 11:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-19 9:24 Sean Cross
2014-08-29 11:20 ` Lee Jones [this message]
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=20140829112027.GK24579@lee--X1 \
--to=lee.jones@linaro.org \
--cc=bunnie@kosagi.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sameo@linux.intel.com \
--cc=xobs@kosagi.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®