All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Osipenko <digetx@gmail.com>
To: Peter Crosthwaite <crosthwaitepeter@gmail.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-arm <qemu-arm@nongnu.org>,
	QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-arm] [PATCH v11 7/7] arm_mptimer: Convert to use ptimer
Date: Tue, 26 Jan 2016 23:29:43 +0300	[thread overview]
Message-ID: <56A7D737.8090401@gmail.com> (raw)
In-Reply-To: <56A4E6E9.2010103@gmail.com>

24.01.2016 17:59, Dmitry Osipenko пишет:
> Hello Peter,
>
> 24.01.2016 08:25, Peter Crosthwaite пишет:
>
> [snip]
>
>>> +        timerblock_run(tb->timer, control, (value != 0) && (control & 1));
>>>           break;
>>>       case 8: /* Control.  */
>>> -        old = tb->control;
>>> -        tb->control = value;
>>> -        if (value & 1) {
>>> -            if ((old & 1) && (tb->count != 0)) {
>>> -                /* Do nothing if timer is ticking right now.  */
>>> -                break;
>>> +        if ((value & 1) && (control & 3) != (value & 3)) {
>>> +            uint64_t count = (value & 0xff00) ? 1 :
>>> ptimer_get_count(tb->timer);
>>> +            if ((count == 0) && (value & 2)) {
>>> +                timerblock_set_count(tb->timer, value, &count);
>>
>> This looks like a weird corner-case, what does it do exactly? I can't
>> follow it so it needs a comment :)
>>
>
> It does the following:
>
> mode     | prescaler | reload if counter == 0 | tick immediately if counter == 0
> --------------------------------------------------------------------------------
> oneshot         == 0               0                         0
> oneshot      != 0               0                         1
> periodic     == 0               1                         0
> periodic     != 0               0                         1
>
> If writing control register with prescaler = 0, then for one-shot timer with
> counter == 0 or periodic timer with load = counter == 0 this is NOP. Will add a
> comment.
>
> Thanks for review!
>

Just realized that I missed timer re-run on prescaler change. So it was a good 
question! =)

-- 
Dmitry

WARNING: multiple messages have this Message-ID (diff)
From: Dmitry Osipenko <digetx@gmail.com>
To: Peter Crosthwaite <crosthwaitepeter@gmail.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-arm <qemu-arm@nongnu.org>,
	QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v11 7/7] arm_mptimer: Convert to use ptimer
Date: Tue, 26 Jan 2016 23:29:43 +0300	[thread overview]
Message-ID: <56A7D737.8090401@gmail.com> (raw)
In-Reply-To: <56A4E6E9.2010103@gmail.com>

24.01.2016 17:59, Dmitry Osipenko пишет:
> Hello Peter,
>
> 24.01.2016 08:25, Peter Crosthwaite пишет:
>
> [snip]
>
>>> +        timerblock_run(tb->timer, control, (value != 0) && (control & 1));
>>>           break;
>>>       case 8: /* Control.  */
>>> -        old = tb->control;
>>> -        tb->control = value;
>>> -        if (value & 1) {
>>> -            if ((old & 1) && (tb->count != 0)) {
>>> -                /* Do nothing if timer is ticking right now.  */
>>> -                break;
>>> +        if ((value & 1) && (control & 3) != (value & 3)) {
>>> +            uint64_t count = (value & 0xff00) ? 1 :
>>> ptimer_get_count(tb->timer);
>>> +            if ((count == 0) && (value & 2)) {
>>> +                timerblock_set_count(tb->timer, value, &count);
>>
>> This looks like a weird corner-case, what does it do exactly? I can't
>> follow it so it needs a comment :)
>>
>
> It does the following:
>
> mode     | prescaler | reload if counter == 0 | tick immediately if counter == 0
> --------------------------------------------------------------------------------
> oneshot         == 0               0                         0
> oneshot      != 0               0                         1
> periodic     == 0               1                         0
> periodic     != 0               0                         1
>
> If writing control register with prescaler = 0, then for one-shot timer with
> counter == 0 or periodic timer with load = counter == 0 this is NOP. Will add a
> comment.
>
> Thanks for review!
>

Just realized that I missed timer re-run on prescaler change. So it was a good 
question! =)

-- 
Dmitry

  reply	other threads:[~2016-01-26 20:30 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-21 19:03 [Qemu-arm] [PATCH v11 0/7] PTimer fixes/features and ARM MPTimer conversion Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] " Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 1/7] hw/ptimer: Fix issues caused by the adjusted timer limit value Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 2/7] hw/ptimer: Perform counter wrap around if timer already expired Dmitry Osipenko
2016-01-24  5:29   ` Peter Crosthwaite
2016-01-25 19:43     ` Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 3/7] hw/ptimer: Update .delta on period/freq change Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 4/7] hw/ptimer: Support "on the fly" timer mode switch Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 5/7] hw/ptimer: Introduce ptimer_get_limit Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 6/7] hw/ptimer: Legalize running with delta = load = 0 and abort on period = 0 Dmitry Osipenko
2016-01-24  4:28   ` [Qemu-arm] " Peter Crosthwaite
2016-01-24  4:28     ` [Qemu-devel] " Peter Crosthwaite
2016-01-24 15:02     ` [Qemu-arm] " Dmitry Osipenko
2016-01-24 15:02       ` [Qemu-devel] " Dmitry Osipenko
2016-01-21 19:03 ` [Qemu-devel] [PATCH v11 7/7] arm_mptimer: Convert to use ptimer Dmitry Osipenko
2016-01-24  5:25   ` [Qemu-arm] " Peter Crosthwaite
2016-01-24  5:25     ` [Qemu-devel] " Peter Crosthwaite
2016-01-24 14:59     ` [Qemu-arm] " Dmitry Osipenko
2016-01-24 14:59       ` [Qemu-devel] " Dmitry Osipenko
2016-01-26 20:29       ` Dmitry Osipenko [this message]
2016-01-26 20:29         ` Dmitry Osipenko

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=56A7D737.8090401@gmail.com \
    --to=digetx@gmail.com \
    --cc=crosthwaitepeter@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.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.