linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
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: Thu, 4 Jan 2018 23:47:13 +0100	[thread overview]
Message-ID: <20180104224713.GA11557@lenoch> (raw)
In-Reply-To: <1514887799-24605-11-git-send-email-j-keerthy@ti.com>

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).

>  	}
>  	omap_dm_timer_write_reg(timer, OMAP_TIMER_CTRL_REG, l);
>  

Sorry for the noise,
	ladis

  reply	other threads:[~2018-01-04 22:47 UTC|newest]

Thread overview: 20+ 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 ` [PATCH v6 01/10] clocksource: dmtimer: Remove all the exports 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 ` [PATCH v6 03/10] arm: omap: Move dmtimer.h out of plat-omap 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 ` [PATCH v6 05/10] dmtimer: Add timer ops to the platform data structure 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 ` [PATCH v6 07/10] clocksource: timer-dm: Hook device platform data if not already assigned Keerthy
2018-01-02 10:09 ` [PATCH v6 08/10] pwm: pwm-omap-dmtimer: Adapt driver to utilize dmtimer pdata ops Keerthy
2018-01-08  8:44   ` Claudiu Beznea
2018-01-08 14:33     ` Keerthy
2018-01-08 14:44       ` Neil Armstrong
2018-01-08 14:47         ` Claudiu Beznea
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 ` [PATCH v6 10/10] clocksource: timer-dm: Check prescaler value Keerthy
2018-01-04 22:47   ` Ladislav Michl [this message]
2018-01-07 15:56     ` Keerthy
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

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=20180104224713.GA11557@lenoch \
    --to=ladis@linux-mips.org \
    --cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).