From: "Zubair Lutfullah :" <zubair.lutfullah@gmail.com>
To: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Cc: Zubair Lutfullah: zubair.lutfullah@gmail.com,
Lee Jones <lee.jones@linaro.org>,
Samuel Ortiz <sameo@linux.intel.com>,
Jonathan Cameron <jic23@kernel.org>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
Felipe Balbi <balbi@ti.com>,
linux-iio@vger.kernel.org, linux-input@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 5/5] mfd: input: iio: ti_amm335x: Rework TSC/ADC synchronization
Date: Fri, 20 Dec 2013 08:36:35 +0500 [thread overview]
Message-ID: <20131220033634.GB2596@gmail.com> (raw)
In-Reply-To: <52B3FC6C.1070105@linutronix.de>
On Fri, Dec 20, 2013 at 09:14:36AM +0100, Sebastian Andrzej Siewior wrote:
> On 12/19/2013 08:01 PM, Zubair Lutfullah : wrote:
> >> The continues-read mode remains unchanged.
> >
> > For one-shot reading from ADC, the TSC is 'disabled' for that moment.
> > Ok. But for continuous mode, reading from ADC disables TSC for that long time?
>
> No, the continuous mode remains unchanged. That means while you
> enable/disable the continuous mode the TSC isn't halted / stopped and
> so TSC remains functional the whole time.
I see
>
> > If it doesn't disable the TSC, does that mean that this fix would
> > correct the one-shot read. But the continuous mode is still prone to the
> > FSM hanging up?
>
> This is correct. I didn't get around to look closer at the continuous
> mode. Ideally we would also disable it and add the ADC steps to the TSC
> steps. Then I am not sure what happens (or should happen) after the
> TSC event. We don't have much options except adding the TSC back to it.
> But as I said, I didn't have much time to investigate that.
> I believe the crucial part is when we update the SE register while the
> HW is in progress and this leads to the lockup.
Indeed, due to the separation of TSC/ADC drivers, getting
them both to work simultaneously without fault is tricky.
I'll try and set up my work-bench and test this over the weekend.
> >> diff --git a/drivers/iio/adc/ti_am335x_adc.c b/drivers/iio/adc/ti_am335x_adc.c
> > ...
> >> @@ -329,34 +347,43 @@ static int tiadc_read_raw(struct iio_dev *indio_dev,
> >> unsigned int fifo1count, read, stepid;
> >> bool found = false;
> >> u32 step_en;
> >> - unsigned long timeout = jiffies + usecs_to_jiffies
> >> - (IDLE_TIMEOUT * adc_dev->channels);
> >> + unsigned long timeout;
> >>
> >> if (iio_buffer_enabled(indio_dev))
> >> return -EBUSY;
> >>
> >> - step_en = get_adc_step_mask(adc_dev);
> >> + step_en = get_adc_chan_step_mask(adc_dev, chan);
> >> + if (!step_en)
> >> + return -EINVAL;
> >> +
> >> + fifo1count = tiadc_readl(adc_dev, REG_FIFO1CNT);
> >> + while (fifo1count--)
> >> + tiadc_readl(adc_dev, REG_FIFO1);
> >> +
> > Would this flush be needed ideally?
>
> Ideally, no. Ideally (and this is what happens during my testing) is
> that the FIFO was empty and so fifo1count is 0. No reads from the FIFO.
>
> In the unlikely event that we timed out later there might be something
> in the FIFO (but shouldn't since we gave it enough time to fill it). So
> for that case we purge it because in the loop later we wait for one
> item in the FIFO which would be true immediately.
>
Ok.
Thanks
Zubair
next prev parent reply other threads:[~2013-12-20 3:36 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-19 15:28 am335x: IIO/ADC fixes if used together with TSC, v2 Sebastian Andrzej Siewior
2013-12-19 15:28 ` Sebastian Andrzej Siewior
2013-12-19 15:28 ` [PATCH 1/5] iio: ti_am335x_adc: Adjust the closing bracket in tiadc_read_raw() Sebastian Andrzej Siewior
2013-12-22 16:55 ` Jonathan Cameron
2014-01-06 9:36 ` Lee Jones
2014-01-06 9:36 ` Lee Jones
2013-12-19 15:28 ` [PATCH 2/5] mfd: ti_am335x_tscadc: Make am335x_tsc_se_update() local Sebastian Andrzej Siewior
2013-12-19 17:16 ` Lee Jones
2013-12-19 17:16 ` Lee Jones
2013-12-19 15:28 ` [PATCH 3/5] mfd: ti_am335x_tscadc: Don't read back REG_SE Sebastian Andrzej Siewior
[not found] ` <1387466911-3732-4-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-12-22 17:46 ` Jonathan Cameron
2013-12-22 17:46 ` Jonathan Cameron
2014-01-06 9:35 ` Lee Jones
2014-01-06 9:35 ` Lee Jones
2014-01-06 18:10 ` Dmitry Torokhov
2013-12-19 15:28 ` [PATCH 4/5] mfd: ti_am335x: Drop am335x_tsc_se_update() from resume path Sebastian Andrzej Siewior
2013-12-22 17:48 ` Jonathan Cameron
2013-12-19 15:28 ` [PATCH 5/5] mfd: input: iio: ti_amm335x: Rework TSC/ADC synchronization Sebastian Andrzej Siewior
2013-12-19 17:18 ` Lee Jones
2013-12-19 17:18 ` Lee Jones
2013-12-19 18:53 ` Sebastian Andrzej Siewior
[not found] ` <1387466911-3732-6-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2013-12-19 19:01 ` Zubair Lutfullah :
2013-12-19 19:01 ` Zubair Lutfullah :
2013-12-20 8:14 ` Sebastian Andrzej Siewior
2013-12-20 3:36 ` Zubair Lutfullah : [this message]
2013-12-20 8:55 ` Sebastian Andrzej Siewior
2013-12-20 4:52 ` Zubair Lutfullah :
2013-12-22 18:03 ` Jonathan Cameron
[not found] ` <1387466911-3732-1-git-send-email-bigeasy-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
2014-01-07 8:54 ` am335x: IIO/ADC fixes if used together with TSC, v2 Lee Jones
2014-01-07 8:54 ` Lee Jones
2014-01-08 8:03 ` Dmitry Torokhov
2014-01-08 8:03 ` Dmitry Torokhov
[not found] ` <20140108080359.GA16527-WlK9ik9hQGAhIp7JRqBPierSzoNAToWh@public.gmane.org>
2014-01-08 8:08 ` Lee Jones
2014-01-08 8:08 ` Lee Jones
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=20131220033634.GB2596@gmail.com \
--to=zubair.lutfullah@gmail.com \
--cc=balbi@ti.com \
--cc=bigeasy@linutronix.de \
--cc=dmitry.torokhov@gmail.com \
--cc=jic23@kernel.org \
--cc=lee.jones@linaro.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sameo@linux.intel.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 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.