From: Jonathan Cameron <jic23@kernel.org>
To: Fabrice Gasnier <fabrice.gasnier@st.com>,
linux@armlinux.org.uk, robh+dt@kernel.org,
linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: linux-iio@vger.kernel.org, mark.rutland@arm.com,
mcoquelin.stm32@gmail.com, alexandre.torgue@st.com,
lars@metafoo.de, knaack.h@gmx.de, pmeerw@pmeerw.net,
benjamin.gaignard@linaro.org, benjamin.gaignard@st.com,
linus.walleij@linaro.org
Subject: Re: [PATCH v3 2/6] iio: trigger: add OF support
Date: Sun, 5 Mar 2017 12:11:20 +0000 [thread overview]
Message-ID: <4584aa2d-8cab-9708-4cfa-a1f1ed4f02b8@kernel.org> (raw)
In-Reply-To: <1488300679-3259-3-git-send-email-fabrice.gasnier@st.com>
On 28/02/17 16:51, Fabrice Gasnier wrote:
> Provide OF support. Device drivers can get IIO triggers from dt.
> Introduce IIO trigger specifiers, so there are:
> - IIO trigger providers, e.g. dt nodes designated with
> #io-trigger-cells=<num of cells>
> - IIO trigger consumers, e.g. phandles listed in io-triggers = <...>.
> Those can be identified by names by using 'io-trigger-names'.
>
> Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
Subject to binding discussion this looks fine to me.
Jonathan
> ---
> drivers/iio/industrialio-trigger.c | 100 +++++++++++++++++++++++++++++++++++++
> include/linux/iio/trigger.h | 4 ++
> 2 files changed, 104 insertions(+)
>
> diff --git a/drivers/iio/industrialio-trigger.c b/drivers/iio/industrialio-trigger.c
> index 978e1592..00ee3a7 100644
> --- a/drivers/iio/industrialio-trigger.c
> +++ b/drivers/iio/industrialio-trigger.c
> @@ -768,3 +768,103 @@ int iio_triggered_buffer_predisable(struct iio_dev *indio_dev)
> indio_dev->pollfunc);
> }
> EXPORT_SYMBOL(iio_triggered_buffer_predisable);
> +
> +#ifdef CONFIG_OF
> +static int iio_trig_node_match(struct device *dev, void *data)
> +{
> + return dev->of_node == data && dev->type == &iio_trig_type;
> +}
> +
> +static struct iio_trigger *__of_iio_trig_get(struct device_node *np, int index)
> +{
> + struct of_phandle_args trigspec;
> + struct device *dev;
> + int err;
> +
> + err = of_parse_phandle_with_args(np, "io-triggers",
> + "#io-trigger-cells",
> + index, &trigspec);
> + if (err)
> + return ERR_PTR(err);
> +
> + dev = bus_find_device(&iio_bus_type, NULL, trigspec.np,
> + iio_trig_node_match);
> + of_node_put(trigspec.np);
> + if (!dev)
> + return ERR_PTR(-EPROBE_DEFER);
> +
> + return to_iio_trigger(dev);
> +}
> +
> +static struct iio_trigger *__of_iio_trig_get_by_name(struct device_node *np,
> + const char *name)
> +{
> + struct iio_trigger *trig;
> + int index = 0;
> +
> + if (!np)
> + return ERR_PTR(-EINVAL);
> + if (name)
> + index = of_property_match_string(np, "io-trigger-names", name);
> + if (index < 0)
> + return ERR_PTR(index);
> + trig = __of_iio_trig_get(np, index);
> + if (!IS_ERR(trig) || PTR_ERR(trig) == -EPROBE_DEFER)
> + return trig;
> +
> + if (name && index >= 0)
> + pr_err("ERROR: could not get IIO trigger %s:%s(%i)\n",
> + np->full_name, name ? name : "", index);
> +
> + return ERR_PTR(-ENOENT);
> +}
> +#else /* CONFIG_OF */
> +static inline struct iio_trigger *
> +__of_iio_trig_get_by_name(struct device_node *np, const char *name)
> +{
> + return ERR_PTR(-ENOENT);
> +}
> +#endif
> +
> +struct iio_trigger *iio_trigger_get_by_name(struct device *dev,
> + const char *name)
> +{
> + struct iio_trigger *trig;
> +
> + if (!dev)
> + return ERR_PTR(-EINVAL);
> +
> + trig = __of_iio_trig_get_by_name(dev->of_node, name);
> + if (!IS_ERR(trig))
> + return iio_trigger_get(trig);
> +
> + return trig;
> +}
> +EXPORT_SYMBOL_GPL(iio_trigger_get_by_name);
> +
> +static void devm_iio_trigger_put(struct device *dev, void *res)
> +{
> + iio_trigger_put(*(struct iio_trigger **)res);
> +}
> +
> +struct iio_trigger *devm_iio_trigger_get_by_name(struct device *dev,
> + const char *name)
> +{
> + struct iio_trigger **ptr, *trig;
> +
> + ptr = devres_alloc(devm_iio_trigger_put, sizeof(*ptr), GFP_KERNEL);
> + if (!ptr)
> + return ERR_PTR(-ENOMEM);
> +
> + trig = iio_trigger_get_by_name(dev, name);
> + if (IS_ERR(trig)) {
> + devres_free(ptr);
> + return trig;
> + }
> +
> + *ptr = trig;
> + devres_add(dev, ptr);
> +
> + return trig;
> +}
> +EXPORT_SYMBOL_GPL(devm_iio_trigger_get_by_name);
> diff --git a/include/linux/iio/trigger.h b/include/linux/iio/trigger.h
> index ea08302..1f1ec20 100644
> --- a/include/linux/iio/trigger.h
> +++ b/include/linux/iio/trigger.h
> @@ -173,6 +173,10 @@ void devm_iio_trigger_unregister(struct device *dev,
> int iio_trigger_validate_own_device(struct iio_trigger *trig,
> struct iio_dev *indio_dev);
>
> +struct iio_trigger *iio_trigger_get_by_name(struct device *dev,
> + const char *name);
> +struct iio_trigger *devm_iio_trigger_get_by_name(struct device *dev,
> + const char *name);
> #else
> struct iio_trigger;
> struct iio_trigger_ops;
>
next prev parent reply other threads:[~2017-03-05 12:20 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1488300679-3259-1-git-send-email-fabrice.gasnier@st.com>
2017-02-28 16:51 ` [PATCH v3 1/6] dt-bindings: iio: introduce trigger providers, consumers Fabrice Gasnier
2017-03-03 6:21 ` Rob Herring
2017-03-03 9:32 ` Fabrice Gasnier
2017-03-05 11:45 ` Jonathan Cameron
2017-03-05 11:43 ` Jonathan Cameron
2017-03-05 12:13 ` Jonathan Cameron
2017-03-15 19:25 ` Rob Herring
2017-03-17 15:59 ` Fabrice Gasnier
2017-03-19 22:58 ` Jonathan Cameron
2017-02-28 16:51 ` [PATCH v3 2/6] iio: trigger: add OF support Fabrice Gasnier
2017-03-05 12:11 ` Jonathan Cameron [this message]
2017-03-14 15:22 ` Linus Walleij
2017-02-28 16:51 ` [PATCH v3 3/6] dt-bindings: iio: document interrupt trigger support Fabrice Gasnier
2017-03-05 12:16 ` Jonathan Cameron
2017-03-15 19:29 ` Rob Herring
2017-02-28 16:51 ` [PATCH v3 4/6] iio: iio-interrupt-trigger: device-tree support Fabrice Gasnier
2017-03-05 12:18 ` Jonathan Cameron
2017-02-28 16:51 ` [PATCH v3 5/6] dt-bindings: iio: stm32-adc: add external interrupt trigger Fabrice Gasnier
2017-02-28 16:51 ` [PATCH v3 6/6] iio: adc: stm32: add support for EXTI trigger Fabrice Gasnier
2017-03-03 11:45 ` Lars-Peter Clausen
2017-03-03 13:00 ` Fabrice Gasnier
2017-03-03 15:46 ` Lars-Peter Clausen
2017-03-03 15:47 ` Lars-Peter Clausen
2017-03-05 12:21 ` Jonathan Cameron
2017-03-05 12:28 ` Jonathan Cameron
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=4584aa2d-8cab-9708-4cfa-a1f1ed4f02b8@kernel.org \
--to=jic23@kernel.org \
--cc=alexandre.torgue@st.com \
--cc=benjamin.gaignard@linaro.org \
--cc=benjamin.gaignard@st.com \
--cc=devicetree@vger.kernel.org \
--cc=fabrice.gasnier@st.com \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=mark.rutland@arm.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=pmeerw@pmeerw.net \
--cc=robh+dt@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome