All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <f4bug@amsat.org>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>,
	qemu-devel@nongnu.org, lvivier@redhat.com
Subject: Re: [Qemu-devel] [PATCH 04/10] cuda: introduce CUDAState parameter to get_counter()
Date: Mon, 5 Feb 2018 16:44:38 -0300	[thread overview]
Message-ID: <d87b3731-f630-53e2-4f97-d10bb73cc969@amsat.org> (raw)
In-Reply-To: <20180203103727.26457-5-mark.cave-ayland@ilande.co.uk>

[-- Attachment #1: Type: text/plain, Size: 2045 bytes --]

On 02/03/2018 07:37 AM, Mark Cave-Ayland wrote:
> This will be required shortly and also happens to match nicely with the
> corresponding signature for set_counter().
> 
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>

Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> ---
>  hw/misc/macio/cuda.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
> index ba14dbeacd..f036e8d7e1 100644
> --- a/hw/misc/macio/cuda.c
> +++ b/hw/misc/macio/cuda.c
> @@ -150,7 +150,7 @@ static uint64_t get_tb(uint64_t time, uint64_t freq)
>      return muldiv64(time, freq, NANOSECONDS_PER_SECOND);
>  }
>  
> -static unsigned int get_counter(CUDATimer *ti)
> +static unsigned int get_counter(CUDAState *s, CUDATimer *ti)
>  {
>      int64_t d;
>      unsigned int counter;
> @@ -295,12 +295,12 @@ static uint64_t cuda_read(void *opaque, hwaddr addr, unsigned size)
>          val = s->dira;
>          break;
>      case CUDA_REG_T1CL:
> -        val = get_counter(&s->timers[0]) & 0xff;
> +        val = get_counter(s, &s->timers[0]) & 0xff;
>          s->ifr &= ~T1_INT;
>          cuda_update_irq(s);
>          break;
>      case CUDA_REG_T1CH:
> -        val = get_counter(&s->timers[0]) >> 8;
> +        val = get_counter(s, &s->timers[0]) >> 8;
>          cuda_update_irq(s);
>          break;
>      case CUDA_REG_T1LL:
> @@ -311,12 +311,12 @@ static uint64_t cuda_read(void *opaque, hwaddr addr, unsigned size)
>          val = (s->timers[0].latch >> 8) & 0xff;
>          break;
>      case CUDA_REG_T2CL:
> -        val = get_counter(&s->timers[1]) & 0xff;
> +        val = get_counter(s, &s->timers[1]) & 0xff;
>          s->ifr &= ~T2_INT;
>          cuda_update_irq(s);
>          break;
>      case CUDA_REG_T2CH:
> -        val = get_counter(&s->timers[1]) >> 8;
> +        val = get_counter(s, &s->timers[1]) >> 8;
>          break;
>      case CUDA_REG_SR:
>          val = s->sr;
> 


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2018-02-05 19:44 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-03 10:37 [Qemu-devel] [PATCH 00/10] cuda: various fixes, and move 6522 to separate device Mark Cave-Ayland
2018-02-03 10:37 ` [Qemu-devel] [PATCH 01/10] cuda: do not use old_mmio accesses Mark Cave-Ayland
2018-02-05 14:17   ` Laurent Vivier
2018-02-06 21:40     ` Mark Cave-Ayland
2018-02-03 10:37 ` [Qemu-devel] [PATCH 02/10] cuda: don't allow writes to port output pins Mark Cave-Ayland
2018-02-05 14:27   ` Laurent Vivier
2018-02-05 19:53   ` Philippe Mathieu-Daudé
2018-02-03 10:37 ` [Qemu-devel] [PATCH 03/10] cuda: don't call cuda_update() when writing to ACR register Mark Cave-Ayland
2018-02-03 10:37 ` [Qemu-devel] [PATCH 04/10] cuda: introduce CUDAState parameter to get_counter() Mark Cave-Ayland
2018-02-05 19:44   ` Philippe Mathieu-Daudé [this message]
2018-02-03 10:37 ` [Qemu-devel] [PATCH 05/10] cuda: rename frequency property to tb_frequency Mark Cave-Ayland
2018-02-05 19:45   ` Philippe Mathieu-Daudé
2018-02-03 10:37 ` [Qemu-devel] [PATCH 06/10] cuda: minor cosmetic tidy-ups to get_next_irq_time() Mark Cave-Ayland
2018-02-05 19:39   ` Philippe Mathieu-Daudé
2018-02-03 10:37 ` [Qemu-devel] [PATCH 07/10] cuda: set timer 1 frequency property to CUDA_TIMER_FREQ Mark Cave-Ayland
2018-02-03 10:37 ` [Qemu-devel] [PATCH 08/10] cuda: factor out timebase-derived counter value and load time Mark Cave-Ayland
2018-02-05 19:44   ` Philippe Mathieu-Daudé
2018-02-06 21:44     ` Mark Cave-Ayland
2018-02-03 10:37 ` [Qemu-devel] [PATCH 09/10] misc: introduce new mos6522 VIA device and enable it for ppc builds Mark Cave-Ayland
2018-02-03 10:37 ` [Qemu-devel] [PATCH 10/10] cuda: convert to use the shared mos6522 device Mark Cave-Ayland
2018-02-03 11:11 ` [Qemu-devel] [PATCH 00/10] cuda: various fixes, and move 6522 to separate device no-reply
2018-02-03 11:14   ` Mark Cave-Ayland

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=d87b3731-f630-53e2-4f97-d10bb73cc969@amsat.org \
    --to=f4bug@amsat.org \
    --cc=lvivier@redhat.com \
    --cc=mark.cave-ayland@ilande.co.uk \
    --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.