qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 06/13] cuda.c: implement simple CUDA_GET_6805_AD


From: David Gibson
Subject: Re: [Qemu-devel] [PATCH 06/13] cuda.c: implement simple CUDA_GET_6805_ADDR command
Date: Wed, 4 Nov 2015 14:16:05 +1100
User-agent: Mutt/1.5.23 (2015-06-09)

On Fri, Oct 23, 2015 at 02:56:31PM +0100, Mark Cave-Ayland wrote:
> This simply returns an empty response with no error status.
> 
> Signed-off-by: Mark Cave-Ayland <address@hidden>

Assuming the previous changes are correct,

Reviewed-by: David Gibson <address@hidden>


> ---
>  hw/misc/macio/cuda.c |    3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
> index 88a0999..4fe901b 100644
> --- a/hw/misc/macio/cuda.c
> +++ b/hw/misc/macio/cuda.c
> @@ -499,6 +499,9 @@ static void cuda_receive_packet(CUDAState *s,
>          }
>          cuda_send_packet_to_host(s, obuf, 3);
>          break;
> +    case CUDA_GET_6805_ADDR:
> +        cuda_send_packet_to_host(s, obuf, 3);
> +        break;
>      case CUDA_SET_TIME:
>          ti = (((uint32_t)data[1]) << 24) + (((uint32_t)data[2]) << 16) + 
> (((uint32_t)data[3]) << 8) + data[4];
>          s->tick_offset = ti - (qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) / 
> get_ticks_per_sec());

-- 
David Gibson                    | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au  | minimalist, thank you.  NOT _the_ _other_
                                | _way_ _around_!
http://www.ozlabs.org/~dgibson

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]