[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [PATCH 09/13] cuda: port SET_POWER_MESSAGES command to ne
From: |
David Gibson |
Subject: |
Re: [Qemu-ppc] [PATCH 09/13] cuda: port SET_POWER_MESSAGES command to new framework |
Date: |
Mon, 25 Jan 2016 10:26:18 +1100 |
User-agent: |
Mutt/1.5.24 (2015-08-30) |
On Sat, Jan 23, 2016 at 09:40:06PM +0100, Hervé Poussineau wrote:
> Signed-off-by: Hervé Poussineau <address@hidden>
Revieed-by: David Gibson <address@hidden>
> ---
> hw/misc/macio/cuda.c | 19 ++++++++++++++++---
> 1 file changed, 16 insertions(+), 3 deletions(-)
>
> diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
> index 294e8fb..64a3e79 100644
> --- a/hw/misc/macio/cuda.c
> +++ b/hw/misc/macio/cuda.c
> @@ -639,6 +639,20 @@ static bool cuda_cmd_set_file_server_flag(CUDAState *s,
> return true;
> }
>
> +static bool cuda_cmd_set_power_message(CUDAState *s,
> + const uint8_t *in_data, int in_len,
> + uint8_t *out_data, int *out_len)
> +{
> + if (in_len != 1) {
> + return false;
> + }
> +
> + qemu_log_mask(LOG_UNIMP,
> + "CUDA: unimplemented command SET_POWER_MESSAGE %d\n",
> + in_data[0]);
> + return true;
> +}
> +
> static const CudaCommand handlers[] = {
> { CUDA_AUTOPOLL, "AUTOPOLL", cuda_cmd_autopoll },
> { CUDA_SET_AUTO_RATE, "SET_AUTO_RATE", cuda_cmd_set_autorate },
> @@ -647,6 +661,8 @@ static const CudaCommand handlers[] = {
> { CUDA_RESET_SYSTEM, "RESET_SYSTEM", cuda_cmd_reset_system },
> { CUDA_FILE_SERVER_FLAG, "FILE_SERVER_FLAG",
> cuda_cmd_set_file_server_flag },
> + { CUDA_SET_POWER_MESSAGES, "SET_POWER_MESSAGES",
> + cuda_cmd_set_power_message },
> };
>
> static void cuda_receive_packet(CUDAState *s,
> @@ -694,9 +710,6 @@ static void cuda_receive_packet(CUDAState *s,
> obuf[6] = ti;
> cuda_send_packet_to_host(s, obuf, 7);
> return;
> - case CUDA_SET_POWER_MESSAGES:
> - cuda_send_packet_to_host(s, obuf, 3);
> - return;
> case CUDA_COMBINED_FORMAT_IIC:
> obuf[0] = ERROR_PACKET;
> obuf[1] = 0x5;
--
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
signature.asc
Description: PGP signature
- Re: [Qemu-ppc] [PATCH 02/13] cuda: reject unknown commands, (continued)
- [Qemu-ppc] [PATCH 08/13] cuda: port FILE_SERVER_FLAG command to new framework, Hervé Poussineau, 2016/01/23
- [Qemu-ppc] [PATCH 09/13] cuda: port SET_POWER_MESSAGES command to new framework, Hervé Poussineau, 2016/01/23
- Re: [Qemu-ppc] [PATCH 09/13] cuda: port SET_POWER_MESSAGES command to new framework,
David Gibson <=
- [Qemu-ppc] [PATCH 10/13] cuda: port GET_TIME command to new framework, Hervé Poussineau, 2016/01/23
- [Qemu-ppc] [PATCH 13/13] cuda: remove CUDA_GET_SET_IIC/CUDA_COMBINED_FORMAT_IIC commands, Hervé Poussineau, 2016/01/23
- [Qemu-ppc] [PATCH 11/13] cuda: port SET_TIME command to new framework, Hervé Poussineau, 2016/01/23
- Re: [Qemu-ppc] [PATCH 00/13] cuda: misc fixes and cleanups, David Gibson, 2016/01/24
- Re: [Qemu-ppc] [PATCH 00/13] cuda: misc fixes and cleanups, Alyssa Milburn, 2016/01/25