All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pantelis Antoniou <panto-wVdstyuyKrO8r51toPun2/C9HSW9iNxf@public.gmane.org>
To: Lars-Peter Clausen <lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
Cc: Sebastian Andrzej Siewior
	<bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>,
	Samuel Ortiz <sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
	Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>,
	linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-input-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Dmitry Torokhov
	<dmitry.torokhov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Jonathan Cameron <jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org>
Subject: Re: [PATCH 12/22] iio/ti_tscadc: Update with IIO map interface
Date: Mon, 10 Jun 2013 11:33:35 +0300	[thread overview]
Message-ID: <232886C6-415E-4C69-BE28-C402F1864D62@antoniou-consulting.com> (raw)
In-Reply-To: <51B58F39.7020405-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>

Hi Lars,

On Jun 10, 2013, at 11:32 AM, Lars-Peter Clausen wrote:

> On 06/10/2013 10:10 AM, Pantelis Antoniou wrote:
>> Hi Sebastian,
>> 
>> On Jun 10, 2013, at 10:40 AM, Sebastian Andrzej Siewior wrote:
>> 
>>> On 06/09/2013 06:41 PM, Lars-Peter Clausen wrote:
>>>> On 06/05/2013 06:24 PM, Sebastian Andrzej Siewior wrote:
>>>> [...]
>>>>> -	return indio_dev->num_channels;
>>>>> +	adc_dev->map = kcalloc(channels + 1, sizeof(struct iio_map),
>>>>> +			GFP_KERNEL);
>>>>> +	if (adc_dev->map == NULL)
>>>>> +		goto err_free_chan;
>>>>> +
>>>>> +	for (i = 0; i < channels; i++) {
>>>>> +		adc_dev->map[i].adc_channel_label =
>>>>> +			chan_array[i].datasheet_name;
>>>>> +		adc_dev->map[i].consumer_dev_name = "any";
>>>>> +		adc_dev->map[i].consumer_channel = chan_array[i].datasheet_name;
>>>>> +	}
>>>> 
>>>> This is not the way the IIO map interface is supposed to be used and I doubt it
>>>> will actually work at all. The map either needs to be provided by board code
>>>> with the proper consumer device and channel name filled in or in your case
>>>> where you use devicetree you don't need to provide a map at all since this will
>>>> all be handled by the generic IIO devicetree bindings. So I'd just drop this patch.
>>> 
>>> The channels are not described in the device tree. If so how would that
>>> be the case? Right now, I don't have any consumer. How do I test this
>>> easily if this is done correctly?
>>> If in doubt it will probably drop this until someone comes along who
>>> actually needs this.
>>> 
>> 
>> Please don't remove this immediately. We need the hardcoded names until
>> we use DT bindings that get a handle of the IIO channels.
>> 
>> I realize this is a temporary solution though until the driver is reworked
>> to use DT properly.
> 
> It's not a solution at all, since it simply won't work.
> 
> You have two options, either specify the mapping in your board code based on
> the consumers, or use devicetree to get a handle to device and channel. Btw.
> from the consumers side it won't matter which way is used, the same code will
> work with both, so there is no need to add DT support to the consumer.
> 

Well, when we did this initially there was no other way. I'll check out mainline
and see if it will work for our case. We're slowly working towards rebasing all
our stuff against mainline again.

> - Lars

WARNING: multiple messages have this Message-ID (diff)
From: Pantelis Antoniou <panto@antoniou-consulting.com>
To: Lars-Peter Clausen <lars@metafoo.de>
Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	Samuel Ortiz <sameo@linux.intel.com>, Felipe Balbi <balbi@ti.com>,
	linux-iio@vger.kernel.org, linux-input@vger.kernel.org,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Jonathan Cameron <jic23@cam.ac.uk>
Subject: Re: [PATCH 12/22] iio/ti_tscadc: Update with IIO map interface
Date: Mon, 10 Jun 2013 11:33:35 +0300	[thread overview]
Message-ID: <232886C6-415E-4C69-BE28-C402F1864D62@antoniou-consulting.com> (raw)
In-Reply-To: <51B58F39.7020405@metafoo.de>

Hi Lars,

On Jun 10, 2013, at 11:32 AM, Lars-Peter Clausen wrote:

> On 06/10/2013 10:10 AM, Pantelis Antoniou wrote:
>> Hi Sebastian,
>>=20
>> On Jun 10, 2013, at 10:40 AM, Sebastian Andrzej Siewior wrote:
>>=20
>>> On 06/09/2013 06:41 PM, Lars-Peter Clausen wrote:
>>>> On 06/05/2013 06:24 PM, Sebastian Andrzej Siewior wrote:
>>>> [...]
>>>>> -	return indio_dev->num_channels;
>>>>> +	adc_dev->map =3D kcalloc(channels + 1, sizeof(struct iio_map),
>>>>> +			GFP_KERNEL);
>>>>> +	if (adc_dev->map =3D=3D NULL)
>>>>> +		goto err_free_chan;
>>>>> +
>>>>> +	for (i =3D 0; i < channels; i++) {
>>>>> +		adc_dev->map[i].adc_channel_label =3D
>>>>> +			chan_array[i].datasheet_name;
>>>>> +		adc_dev->map[i].consumer_dev_name =3D "any";
>>>>> +		adc_dev->map[i].consumer_channel =3D =
chan_array[i].datasheet_name;
>>>>> +	}
>>>>=20
>>>> This is not the way the IIO map interface is supposed to be used =
and I doubt it
>>>> will actually work at all. The map either needs to be provided by =
board code
>>>> with the proper consumer device and channel name filled in or in =
your case
>>>> where you use devicetree you don't need to provide a map at all =
since this will
>>>> all be handled by the generic IIO devicetree bindings. So I'd just =
drop this patch.
>>>=20
>>> The channels are not described in the device tree. If so how would =
that
>>> be the case? Right now, I don't have any consumer. How do I test =
this
>>> easily if this is done correctly?
>>> If in doubt it will probably drop this until someone comes along who
>>> actually needs this.
>>>=20
>>=20
>> Please don't remove this immediately. We need the hardcoded names =
until
>> we use DT bindings that get a handle of the IIO channels.
>>=20
>> I realize this is a temporary solution though until the driver is =
reworked
>> to use DT properly.
>=20
> It's not a solution at all, since it simply won't work.
>=20
> You have two options, either specify the mapping in your board code =
based on
> the consumers, or use devicetree to get a handle to device and =
channel. Btw.
> from the consumers side it won't matter which way is used, the same =
code will
> work with both, so there is no need to add DT support to the consumer.
>=20

Well, when we did this initially there was no other way. I'll check out =
mainline
and see if it will work for our case. We're slowly working towards =
rebasing all
our stuff against mainline again.

> - Lars

  parent reply	other threads:[~2013-06-10  8:33 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-05 16:24 AM335x tsc & adc, dt + cleanup take 3 Sebastian Andrzej Siewior
2013-06-05 16:24 ` Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 03/22] input/ti_am33x_tsc: Step enable bits made configurable Sebastian Andrzej Siewior
2013-06-05 16:24   ` Sebastian Andrzej Siewior
     [not found] ` <1370449495-29981-1-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-06-05 16:24   ` [PATCH 01/22] mfd/ti_am335x_tscadc: remove regmap Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 02/22] mfd & input & iio/ti_am335x_adc: use one structure for ti_tscadc_dev Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 04/22] input/ti_am33x_tsc: Order of TSC wires, made configurable Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 06/22] input/ti_am33x_tsc: Add DT support Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 07/22] input/ti_am33x_tsc: remove platform_data support Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 08/22] iio/ti_am335x_adc: Add DT support Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 14/22] arm/am33xx: add TSC/ADC mfd device support Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 16/22] mfd & input/ti_am335x_tsc: rename device from tsc to TI-am335x-tsc Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 17/22] mfd & iio/ti_am335x_adc: rename device from tiadc to TI-am335x-adc Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
     [not found]     ` <1370449495-29981-18-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-06-08  9:19       ` Jonathan Cameron
2013-06-08  9:19         ` Jonathan Cameron
2013-06-05 16:24   ` [PATCH 18/22] input/ti_am335x_adc: use only FIFO0 and clean up a little Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 19/22] input/ti_am335x_tsc: ACK the HW_PEN irq in ISR Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 20/22] input/ti_am335x_tsc: return IRQ_NONE if there was no IRQ for us Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
2013-06-05 16:24   ` [PATCH 21/22] iio/ti_am335x_adc: Allow to specify input line Sebastian Andrzej Siewior
2013-06-05 16:24     ` Sebastian Andrzej Siewior
     [not found]     ` <1370449495-29981-22-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-06-08  9:24       ` Jonathan Cameron
2013-06-08  9:24         ` Jonathan Cameron
     [not found]         ` <51B2F85E.2080805-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2013-06-10  7:32           ` Sebastian Andrzej Siewior
2013-06-10  7:32             ` Sebastian Andrzej Siewior
2013-06-09 16:52       ` Lars-Peter Clausen
2013-06-09 16:52         ` Lars-Peter Clausen
     [not found]         ` <51B4B2CE.3020300-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
2013-06-11  7:55           ` Sebastian Andrzej Siewior
2013-06-11  7:55             ` Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 05/22] input/ti_am33x_tsc: remove unwanted fifo flush Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 09/22] iio/ti_am335x_adc: remove platform_data support Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 10/22] mfd/ti_am335x_tscadc: Add DT support Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 11/22] mfd/ti_am335x_tscadc: remove platform_data support Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 12/22] iio/ti_tscadc: Update with IIO map interface Sebastian Andrzej Siewior
     [not found]   ` <1370449495-29981-13-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-06-08  9:18     ` Jonathan Cameron
2013-06-08  9:18       ` Jonathan Cameron
2013-06-09 16:41     ` Lars-Peter Clausen
2013-06-09 16:41       ` Lars-Peter Clausen
2013-06-10  7:40       ` Sebastian Andrzej Siewior
     [not found]         ` <51B582D3.1050501-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-06-10  8:10           ` Pantelis Antoniou
2013-06-10  8:10             ` Pantelis Antoniou
2013-06-10  8:32             ` Lars-Peter Clausen
     [not found]               ` <51B58F39.7020405-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
2013-06-10  8:33                 ` Pantelis Antoniou [this message]
2013-06-10  8:33                   ` Pantelis Antoniou
2013-06-10  8:38           ` Lars-Peter Clausen
2013-06-10  8:38             ` Lars-Peter Clausen
     [not found]             ` <51B59071.9090908-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
2013-06-10  9:15               ` Sebastian Andrzej Siewior
2013-06-10  9:15                 ` Sebastian Andrzej Siewior
2013-06-10 16:27             ` Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 13/22] mfd/ti_tscadc: deal with partial activation Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 15/22] input & mfd: ti_am335x_tsc remove remaining platform data pieces Sebastian Andrzej Siewior
2013-06-05 16:24 ` [PATCH 22/22] iio/ti_am335x_adc: check if we found the value Sebastian Andrzej Siewior

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=232886C6-415E-4C69-BE28-C402F1864D62@antoniou-consulting.com \
    --to=panto-wvdstyuykro8r51topun2/c9hsw9inxf@public.gmane.org \
    --cc=balbi-l0cyMroinI0@public.gmane.org \
    --cc=bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org \
    --cc=dmitry.torokhov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=jic23-KWPb1pKIrIJaa/9Udqfwiw@public.gmane.org \
    --cc=lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org \
    --cc=linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-input-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.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.