From patchwork Thu Nov 18 03:27:50 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 72036 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 08666B71A1 for ; Thu, 18 Nov 2010 14:31:11 +1100 (EST) Received: from localhost ([127.0.0.1]:42472 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PIvDC-0005cc-PU for incoming@patchwork.ozlabs.org; Wed, 17 Nov 2010 22:31:02 -0500 Received: from [140.186.70.92] (port=43175 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PIvAG-0004Rc-Tl for qemu-devel@nongnu.org; Wed, 17 Nov 2010 22:28:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PIvAE-0006qv-FQ for qemu-devel@nongnu.org; Wed, 17 Nov 2010 22:28:00 -0500 Received: from cantor.suse.de ([195.135.220.2]:32799 helo=mx1.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PIvAE-0006qW-9z for qemu-devel@nongnu.org; Wed, 17 Nov 2010 22:27:58 -0500 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id D688093987; Thu, 18 Nov 2010 04:27:55 +0100 (CET) From: Alexander Graf To: QEMU-devel Developers Date: Thu, 18 Nov 2010 04:27:50 +0100 Message-Id: <1290050875-23848-6-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1290050875-23848-1-git-send-email-agraf@suse.de> References: <1290050875-23848-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 Cc: Joerg Roedel , Gerd Hoffmann , Stefan Hajnoczi , tj@kernel.org, Roland Elek , Sebastian Herbszt Subject: [Qemu-devel] [PATCH 05/10] ide: add ncq identify data for ahci sata drives X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Roland Elek I modified ide_identify() to include the zero-based queue length value in word 75, and set bit 8 in word 76 to signal NCQ support in the identify data for AHCI SATA drives. Signed-off-by: Roland Elek --- hw/ide/core.c | 7 +++++++ hw/ide/internal.h | 2 ++ 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/hw/ide/core.c b/hw/ide/core.c index 04190d2..073c038 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -147,6 +147,13 @@ static void ide_identify(IDEState *s) put_le16(p + 66, 120); put_le16(p + 67, 120); put_le16(p + 68, 120); + + if (s->ncq_queues) { + put_le16(p + 75, s->ncq_queues - 1); + /* NCQ supported */ + put_le16(p + 76, (1 << 8)); + } + put_le16(p + 80, 0xf0); /* ata3 -> ata6 supported */ put_le16(p + 81, 0x16); /* conforms to ata5 */ /* 14=NOP supported, 5=WCACHE supported, 0=SMART supported */ diff --git a/hw/ide/internal.h b/hw/ide/internal.h index 4bee636..1261eea 100644 --- a/hw/ide/internal.h +++ b/hw/ide/internal.h @@ -451,6 +451,8 @@ struct IDEState { int smart_errors; uint8_t smart_selftest_count; uint8_t *smart_selftest_data; + /* AHCI */ + int ncq_queues; }; /* This struct represents a device that uses an IDE bus, but requires