All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] cdrom fixes
@ 2005-11-05 19:18 Volker Ruppert
  0 siblings, 0 replies; only message in thread
From: Volker Ruppert @ 2005-11-05 19:18 UTC (permalink / raw)
  To: Qemu Devel

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

Hi all,

I tried to run the dos utility CDT in Qemu, but it always reported "no CD in 
drive" when a CD was present. I have created a patch to make the TOC command 
work in CDT. I still don't know how to fix the UPC/EAN stuff.
The patch fixes the "mode sense" command and adds a partial implementation of 
"read subchannel".

--
Bye

Volker

[-- Attachment #2: patch.qemu --]
[-- Type: text/x-diff, Size: 1516 bytes --]

diff -urN /home/volker/qemu/hw/ide.c ./hw/ide.c
--- /home/volker/qemu/hw/ide.c	2005-08-06 11:32:01.000000000 +0200
+++ ./hw/ide.c	2005-11-05 20:10:56.752773808 +0100
@@ -1191,7 +1191,11 @@
                     break;
                 case 0x2a:
                     cpu_to_ube16(&buf[0], 28 + 6);
-                    buf[2] = 0x70;
+                    if (bdrv_is_inserted(s->bs)) {
+                      buf[2] = 0x12;
+                    } else {
+                      buf[2] = 0x70;
+                    }
                     buf[3] = 0;
                     buf[4] = 0;
                     buf[5] = 0;
@@ -1433,6 +1437,24 @@
         padstr8(buf + 32, 4, QEMU_VERSION);
         ide_atapi_cmd_reply(s, 36, max_len);
         break;
+    case GPCMD_READ_SUBCHANNEL:
+        if (!bdrv_is_inserted(s->bs)) {
+            ide_atapi_cmd_error(s, SENSE_NOT_READY, 
+                                ASC_MEDIUM_NOT_PRESENT);
+            break;
+        }
+        if (packet[2] & 0x40) { /* SubQ not supported */
+          ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST, 
+                              ASC_INV_FIELD_IN_CMD_PACKET);
+            break;
+        }
+        max_len = ube16_to_cpu(packet + 7);
+        buf[0] = 0x00;
+        buf[1] = 0x00; /* audio not supported */
+        buf[2] = 0x00;
+        buf[3] = 0x00;
+        ide_atapi_cmd_reply(s, 4, max_len);
+        break;
     default:
         ide_atapi_cmd_error(s, SENSE_ILLEGAL_REQUEST, 
                             ASC_ILLEGAL_OPCODE);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-11-05 19:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-05 19:18 [Qemu-devel] [PATCH] cdrom fixes Volker Ruppert

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.