From patchwork Tue Dec 14 00:34:37 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 75445 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 E59C61007D1 for ; Tue, 14 Dec 2010 11:39:59 +1100 (EST) Received: from localhost ([127.0.0.1]:36502 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PSIva-0004dw-Ua for incoming@patchwork.ozlabs.org; Mon, 13 Dec 2010 19:39:39 -0500 Received: from [140.186.70.92] (port=50832 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PSIqu-0002Ue-6H for qemu-devel@nongnu.org; Mon, 13 Dec 2010 19:34:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PSIqt-0001cb-1Z for qemu-devel@nongnu.org; Mon, 13 Dec 2010 19:34:48 -0500 Received: from cantor2.suse.de ([195.135.220.15]:59798 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PSIqs-0001c8-Sa for qemu-devel@nongnu.org; Mon, 13 Dec 2010 19:34:47 -0500 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) by mx2.suse.de (Postfix) with ESMTP id 38A4C8A908; Tue, 14 Dec 2010 01:34:45 +0100 (CET) From: Alexander Graf To: QEMU-devel Developers Date: Tue, 14 Dec 2010 01:34:37 +0100 Message-Id: <1292286883-20157-6-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 In-Reply-To: <1292286883-20157-1-git-send-email-agraf@suse.de> References: <1292286883-20157-1-git-send-email-agraf@suse.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 Cc: Kevin Wolf , Joerg Roedel , Paul Brook , Blue Swirl , Gerd Hoffmann , Stefan Hajnoczi , tj@kernel.org, Roland Elek , Sebastian Herbszt Subject: [Qemu-devel] [PATCH 05/11] 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 04e463a..344b7b4 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -140,6 +140,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 aadb505..697c3b4 100644 --- a/hw/ide/internal.h +++ b/hw/ide/internal.h @@ -447,6 +447,8 @@ struct IDEState { int smart_errors; uint8_t smart_selftest_count; uint8_t *smart_selftest_data; + /* AHCI */ + int ncq_queues; }; struct IDEDMAOps {