All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ladislav Michl <ladis@linux-mips.org>
To: Keerthy <j-keerthy@ti.com>
Cc: daniel.lezcano@linaro.org, tony@atomide.com,
	aaro.koskinen@iki.fi, thierry.reding@gmail.com,
	grygorii.strashko@ti.com, linux-omap@vger.kernel.org,
	robh+dt@kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-pwm@vger.kernel.org, sebastian.reichel@collabora.co.uk,
	linux-kernel@vger.kernel.org, t-kristo@ti.com
Subject: Re: [PATCH v6 10/10] clocksource: timer-dm: Check prescaler value
Date: Sun, 7 Jan 2018 20:26:33 +0100	[thread overview]
Message-ID: <20180107192633.GA19198@lenoch> (raw)
In-Reply-To: <f743a25e-d29e-8693-f2c6-87d2f648d613@ti.com>

On Sun, Jan 07, 2018 at 09:26:44PM +0530, Keerthy wrote:
> On 1/5/2018 4:17 AM, Ladislav Michl wrote:
> > On Tue, Jan 02, 2018 at 03:39:59PM +0530, Keerthy wrote:
> > > From: Ladislav Michl <ladis@linux-mips.org>
> > > 
> > > Invalid prescaler value is silently ignored. Fix that
> > > by returning -EINVAL in such case. As invalid value
> > > disabled use of the prescaler, use -1 explicitely for
> > > that purpose.
> > > 
> > > Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> > > ---
> > >   drivers/clocksource/timer-dm.c | 3 +++
> > >   1 file changed, 3 insertions(+)
> > > 
> > > diff --git a/drivers/clocksource/timer-dm.c b/drivers/clocksource/timer-dm.c
> > > index 60db173..01a9cb0 100644
> > > --- a/drivers/clocksource/timer-dm.c
> > > +++ b/drivers/clocksource/timer-dm.c
> > > @@ -672,6 +672,9 @@ int omap_dm_timer_set_prescaler(struct omap_dm_timer *timer, int prescaler)
> > >   	if (prescaler >= 0x00 && prescaler <= 0x07) {
> > >   		l |= OMAP_TIMER_CTRL_PRE;
> > >   		l |= prescaler << 2;
> > > +	} else {
> > > +		if (prescaler != -1)
> > > +			return -EINVAL;
> > 
> > Argh... This is actually wrong, as it leaves timer enabled.
> > I suggest simply dropping this patch and I'll rethink whole
> > approach a bit later (and better).
> 
> Okay. I hope the rest 9 patches work well for you.

Yes. I rebased event capture patches on top of this serie (based on
linux-next) and will post them during next week for review. Fixed
patch will be included (note, it is not really needed for your serie
as noone is calling this function).

> > 
> > >   	}
> > >   	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
> > 
> > Sorry for the noise,
> > 	ladis
> > 

WARNING: multiple messages have this Message-ID (diff)
From: ladis@linux-mips.org (Ladislav Michl)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 10/10] clocksource: timer-dm: Check prescaler value
Date: Sun, 7 Jan 2018 20:26:33 +0100	[thread overview]
Message-ID: <20180107192633.GA19198@lenoch> (raw)
In-Reply-To: <f743a25e-d29e-8693-f2c6-87d2f648d613@ti.com>

On Sun, Jan 07, 2018 at 09:26:44PM +0530, Keerthy wrote:
> On 1/5/2018 4:17 AM, Ladislav Michl wrote:
> > On Tue, Jan 02, 2018 at 03:39:59PM +0530, Keerthy wrote:
> > > From: Ladislav Michl <ladis@linux-mips.org>
> > > 
> > > Invalid prescaler value is silently ignored. Fix that
> > > by returning -EINVAL in such case. As invalid value
> > > disabled use of the prescaler, use -1 explicitely for
> > > that purpose.
> > > 
> > > Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> > > ---
> > >   drivers/clocksource/timer-dm.c | 3 +++
> > >   1 file changed, 3 insertions(+)
> > > 
> > > diff --git a/drivers/clocksource/timer-dm.c b/drivers/clocksource/timer-dm.c
> > > index 60db173..01a9cb0 100644
> > > --- a/drivers/clocksource/timer-dm.c
> > > +++ b/drivers/clocksource/timer-dm.c
> > > @@ -672,6 +672,9 @@ int omap_dm_timer_set_prescaler(struct omap_dm_timer *timer, int prescaler)
> > >   	if (prescaler >= 0x00 && prescaler <= 0x07) {
> > >   		l |= OMAP_TIMER_CTRL_PRE;
> > >   		l |= prescaler << 2;
> > > +	} else {
> > > +		if (prescaler != -1)
> > > +			return -EINVAL;
> > 
> > Argh... This is actually wrong, as it leaves timer enabled.
> > I suggest simply dropping this patch and I'll rethink whole
> > approach a bit later (and better).
> 
> Okay. I hope the rest 9 patches work well for you.

Yes. I rebased event capture patches on top of this serie (based on
linux-next) and will post them during next week for review. Fixed
patch will be included (note, it is not really needed for your serie
as noone is calling this function).

> > 
> > >   	}
> > >   	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
> > 
> > Sorry for the noise,
> > 	ladis
> > 

  reply	other threads:[~2018-01-07 19:26 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-02 10:09 [PATCH v6 00/10] omap: dmtimer: Move driver out of plat-omap Keerthy
2018-01-02 10:09 ` Keerthy
2018-01-02 10:09 ` Keerthy
2018-01-02 10:09 ` [PATCH v6 01/10] clocksource: dmtimer: Remove all the exports Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 02/10] arm: omap: timer: Wrap the inline functions under OMAP2PLUS define Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 03/10] arm: omap: Move dmtimer.h out of plat-omap Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 04/10] arm: OMAP: Move dmtimer driver out of plat-omap to drivers under clocksource Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 05/10] dmtimer: Add timer ops to the platform data structure Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 06/10] clocksource: dmtimer: Populate the timer ops to the pdata Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 07/10] clocksource: timer-dm: Hook device platform data if not already assigned Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 08/10] pwm: pwm-omap-dmtimer: Adapt driver to utilize dmtimer pdata ops Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-08  8:44   ` Claudiu Beznea
2018-01-08  8:44     ` Claudiu Beznea
2018-01-08  8:44     ` Claudiu Beznea
2018-01-08 14:33     ` Keerthy
2018-01-08 14:33       ` Keerthy
2018-01-08 14:33       ` Keerthy
2018-01-08 14:44       ` Neil Armstrong
2018-01-08 14:44         ` Neil Armstrong
2018-01-08 14:47         ` Claudiu Beznea
2018-01-08 14:47           ` Claudiu Beznea
2018-01-08 14:47           ` Claudiu Beznea
2018-01-08 16:24           ` Keerthy
2018-01-08 16:24             ` Keerthy
2018-01-08 16:24             ` Keerthy
2018-01-02 10:09 ` [PATCH v6 09/10] arm: omap: pdata-quirks: Remove unused timer pdata Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09 ` [PATCH v6 10/10] clocksource: timer-dm: Check prescaler value Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-02 10:09   ` Keerthy
2018-01-04 22:47   ` Ladislav Michl
2018-01-04 22:47     ` Ladislav Michl
2018-01-07 15:56     ` Keerthy
2018-01-07 15:56       ` Keerthy
2018-01-07 15:56       ` Keerthy
2018-01-07 19:26       ` Ladislav Michl [this message]
2018-01-07 19:26         ` Ladislav Michl
2018-01-07 15:59 ` [PATCH v6 00/10] omap: dmtimer: Move driver out of plat-omap Keerthy
2018-01-07 15:59   ` Keerthy
2018-01-07 15:59   ` Keerthy

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=20180107192633.GA19198@lenoch \
    --to=ladis@linux-mips.org \
    --cc=aaro.koskinen@iki.fi \
    --cc=daniel.lezcano@linaro.org \
    --cc=grygorii.strashko@ti.com \
    --cc=j-keerthy@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-pwm@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=sebastian.reichel@collabora.co.uk \
    --cc=t-kristo@ti.com \
    --cc=thierry.reding@gmail.com \
    --cc=tony@atomide.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.