[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 19/26] cuda: port FILE_SERVER_FLAG command to new frame
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 19/26] cuda: port FILE_SERVER_FLAG command to new framework |
Date: |
Thu, 18 Feb 2016 15:18:40 +1100 |
From: Hervé Poussineau <address@hidden>
This command tells if computer should automatically wake-up after a power loss.
Reviewed-by: David Gibson <address@hidden>
Signed-off-by: Hervé Poussineau <address@hidden>
Reviewed-by: Mark Cave-Ayland <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/misc/macio/cuda.c | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
index ca11fc8..4ddec34 100644
--- a/hw/misc/macio/cuda.c
+++ b/hw/misc/macio/cuda.c
@@ -626,12 +626,28 @@ static bool cuda_cmd_reset_system(CUDAState *s,
return true;
}
+static bool cuda_cmd_set_file_server_flag(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 FILE_SERVER_FLAG %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 },
{ CUDA_SET_DEVICE_LIST, "SET_DEVICE_LIST", cuda_cmd_set_device_list },
{ CUDA_POWERDOWN, "POWERDOWN", cuda_cmd_powerdown },
{ CUDA_RESET_SYSTEM, "RESET_SYSTEM", cuda_cmd_reset_system },
+ { CUDA_FILE_SERVER_FLAG, "FILE_SERVER_FLAG",
+ cuda_cmd_set_file_server_flag },
};
static void cuda_receive_packet(CUDAState *s,
@@ -679,7 +695,6 @@ static void cuda_receive_packet(CUDAState *s,
obuf[6] = ti;
cuda_send_packet_to_host(s, obuf, 7);
return;
- case CUDA_FILE_SERVER_FLAG:
case CUDA_SET_POWER_MESSAGES:
cuda_send_packet_to_host(s, obuf, 3);
return;
--
2.5.0
- [Qemu-ppc] [PULL 00/26] ppc-for-2.6 queue 20160218, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 09/26] hw/ppc/spapr: Add h_set_sprg0 hypercall, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 07/26] target-ppc: Remove hack for ppc_hash64_load_hpte*() with HV KVM, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 08/26] migration: ensure htab_save_first completes after timeout, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 13/26] cuda: move unknown commands reject out of switch, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 19/26] cuda: port FILE_SERVER_FLAG command to new framework,
David Gibson <=
- [Qemu-ppc] [PULL 15/26] cuda: port SET_AUTO_RATE command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 01/26] hw: fix some debug message format strings, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 05/26] pseries: Add helper to calculate recommended hash page table size, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 10/26] hw/ppc/spapr: Implement h_set_dabr, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 23/26] cuda: remove GET_6805_ADDR command, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 03/26] target-ppc: Include missing MMU models for SDR1 in info registers, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 17/26] cuda: port POWERDOWN command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 16/26] cuda: port SET_DEVICE_LIST command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 12/26] cuda: add a framework to handle commands, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 25/26] pseries: Include missing pseries-2.5 compat properties in pseries-2.4, David Gibson, 2016/02/17