From patchwork Sat Sep 12 13:50:45 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Reimar_D=C3=B6ffinger?= X-Patchwork-Id: 33526 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 bilbo.ozlabs.org (Postfix) with ESMTPS id A586DB7B5F for ; Sat, 12 Sep 2009 23:51:34 +1000 (EST) Received: from localhost ([127.0.0.1]:54743 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmT0k-0005C0-Pl for incoming@patchwork.ozlabs.org; Sat, 12 Sep 2009 09:51:30 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MmT0C-0005AO-0X for qemu-devel@nongnu.org; Sat, 12 Sep 2009 09:50:56 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MmT07-00058q-Dm for qemu-devel@nongnu.org; Sat, 12 Sep 2009 09:50:55 -0400 Received: from [199.232.76.173] (port=49682 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MmT07-00058j-2z for qemu-devel@nongnu.org; Sat, 12 Sep 2009 09:50:51 -0400 Received: from mail.gmx.net ([213.165.64.20]:49533) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1MmT06-0001pz-Fu for qemu-devel@nongnu.org; Sat, 12 Sep 2009 09:50:50 -0400 Received: (qmail invoked by alias); 12 Sep 2009 13:50:48 -0000 Received: from p5B134C78.dip.t-dialin.net (EHLO localhost) [91.19.76.120] by mail.gmx.net (mp062) with SMTP; 12 Sep 2009 15:50:48 +0200 X-Authenticated: #11956158 X-Provags-ID: V01U2FsdGVkX1+GL5FVd4KGJ5LXiGkjFyeh/xSIxYT9c3CRjLt9tA dBj5uabiF49Umb Date: Sat, 12 Sep 2009 15:50:45 +0200 From: Reimar =?iso-8859-1?Q?D=F6ffinger?= To: qemu-devel@nongnu.org Message-ID: <20090912135045.GA15004@1und1.de> Mail-Followup-To: qemu-devel@nongnu.org MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) X-Y-GMX-Trusted: 0 X-FuHaFi: 0.53 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH] Implement the trivial diagnose CU and RU abort commands. These are necessary to make the device work with OpenSolaris 0609 (111b). 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 Signed-off-by: Reimar Döffinger --- hw/eepro100.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/hw/eepro100.c b/hw/eepro100.c index 2099459..7c951c0 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -771,6 +771,10 @@ static void eepro100_cu_command(EEPRO100State * s, uint8_t val) /* Starting with offset 8, the command contains * 64 dwords microcode which we just ignore here. */ break; + case CmdDiagnose: + logout("diagnose\n"); + status = 0; // make sure error flag is not set + break; default: missing("undefined command"); } @@ -864,6 +868,9 @@ static void eepro100_ru_command(EEPRO100State * s, uint8_t val) } set_ru_state(s, ru_ready); break; + case RX_ABORT: + set_ru_state(s, ru_idle); + break; case RX_ADDR_LOAD: /* Load RU base. */ logout("val=0x%02x (RU base address)\n", val);