From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, Markus Armbruster <armbru@redhat.com>
Subject: [Qemu-devel] [PATCH 03/10] atapi: implement READ DISC INFORMATION
Date: Tue, 12 Jun 2012 18:42:35 +0200 [thread overview]
Message-ID: <1339519362-18852-4-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1339519362-18852-1-git-send-email-pbonzini@redhat.com>
This command is not necessary for CD-ROM and DVD-ROM, but some versions of
udev trip on its absence.
Cc: Kevin Wolf <kwolf@redhat.com>
Cc: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
hw/ide/atapi.c | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/hw/ide/atapi.c b/hw/ide/atapi.c
index 5919cf5..f7f714c 100644
--- a/hw/ide/atapi.c
+++ b/hw/ide/atapi.c
@@ -956,6 +956,36 @@ static void cmd_read_cdvd_capacity(IDEState *s, uint8_t* buf)
ide_atapi_cmd_reply(s, 8, 8);
}
+static void cmd_read_disc_information(IDEState *s, uint8_t* buf)
+{
+ uint8_t type = buf[1] & 7;
+ uint32_t max_len = ube16_to_cpu(buf + 7);
+
+ /* Types 1/2 are only defined for Blu-Ray. */
+ if (type != 0) {
+ ide_atapi_cmd_error(s, ILLEGAL_REQUEST,
+ ASC_INV_FIELD_IN_CMD_PACKET);
+ return;
+ }
+
+ memset(buf, 0, 34);
+ buf[1] = 32;
+ buf[2] = 0xe; /* last session complete, disc finalized */
+ buf[3] = 1; /* first track on disc */
+ buf[4] = 1; /* # of sessions */
+ buf[5] = 1; /* first track of last session */
+ buf[6] = 1; /* last track of last session */
+ buf[7] = 0x20; /* unrestricted use */
+ buf[8] = 0x00; /* CD-ROM or DVD-ROM */
+ /* 9-10-11: most significant byte corresponding bytes 4-5-6 */
+ /* 12-23: not meaningful for CD-ROM or DVD-ROM */
+ /* 24-31: disc bar code */
+ /* 32: disc application code */
+ /* 33: number of OPC tables */
+
+ ide_atapi_cmd_reply(s, 34, max_len);
+}
+
static void cmd_read_dvd_structure(IDEState *s, uint8_t* buf)
{
int max_len;
@@ -1045,6 +1075,7 @@ static const struct {
[ 0x43 ] = { cmd_read_toc_pma_atip, CHECK_READY },
[ 0x46 ] = { cmd_get_configuration, ALLOW_UA },
[ 0x4a ] = { cmd_get_event_status_notification, ALLOW_UA },
+ [ 0x51 ] = { cmd_read_disc_information, CHECK_READY },
[ 0x5a ] = { cmd_mode_sense, /* (10) */ 0 },
[ 0xa8 ] = { cmd_read, /* (12) */ CHECK_READY },
[ 0xad ] = { cmd_read_dvd_structure, CHECK_READY },
--
1.7.10.2
next prev parent reply other threads:[~2012-06-12 16:43 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-12 16:42 [Qemu-devel] [PULL 00/10] SCSI updates for 2012-06-12 Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 01/10] scsi: simplify handling of the VPD page length field Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 02/10] scsi: add a qdev property for the disk's WWN Paolo Bonzini
2012-06-12 16:42 ` Paolo Bonzini [this message]
2012-06-12 16:42 ` [Qemu-devel] [PATCH 04/10] scsi-disk: implement READ DISC INFORMATION Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 05/10] ISCSI: Add SCSI passthrough via scsi-generic to libiscsi Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 06/10] ISCSI: force use of sg for SMC and SSC devices Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 07/10] megasas: Add header file Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 08/10] megasas: LSI Megaraid SAS HBA emulation Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 09/10] megasas: Add trace events Paolo Bonzini
2012-06-12 16:42 ` [Qemu-devel] [PATCH 10/10] virtio-scsi: do not crash on adding buffers to the event queue Paolo Bonzini
2012-06-20 13:11 ` [Qemu-devel] [PULL 00/10] SCSI updates for 2012-06-12 Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1339519362-18852-4-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).