Message ID | 1453581610-23179-14-git-send-email-hpoussin@reactos.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sat, Jan 23, 2016 at 09:40:10PM +0100, Hervé Poussineau wrote:
> We currently don't emulate the I2C bus provided by CUDA.
The MOL source has the comment /* this reply is important on B&W G3 */ in
the CUDA_COMBINED_FORMAT_IIC case (differentiating it from the general 0x2
error case); any idea if that's relevant? (0x5 is an SRQ error? I guess it
would also be nice to add constants for all these magic numbers.)
- Alyssa
diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c index d1a7ae2..80eea1b 100644 --- a/hw/misc/macio/cuda.c +++ b/hw/misc/macio/cuda.c @@ -731,29 +731,6 @@ static void cuda_receive_packet(CUDAState *s, } } - switch(data[0]) { - case CUDA_COMBINED_FORMAT_IIC: - obuf[0] = ERROR_PACKET; - obuf[1] = 0x5; - obuf[2] = CUDA_PACKET; - obuf[3] = data[0]; - cuda_send_packet_to_host(s, obuf, 4); - return; - case CUDA_GET_SET_IIC: - if (len == 4) { - cuda_send_packet_to_host(s, obuf, 3); - } else { - obuf[0] = ERROR_PACKET; - obuf[1] = 0x2; - obuf[2] = CUDA_PACKET; - obuf[3] = data[0]; - cuda_send_packet_to_host(s, obuf, 4); - } - return; - default: - break; - } - qemu_log_mask(LOG_GUEST_ERROR, "CUDA: unknown command 0x%02x\n", data[0]); obuf[0] = ERROR_PACKET; obuf[1] = 0x2; /* unknown command */
We currently don't emulate the I2C bus provided by CUDA. Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> --- hw/misc/macio/cuda.c | 23 ----------------------- 1 file changed, 23 deletions(-)