* [Qemu-devel] [6688] lsi: add ISTAT1 register read (Ryan Harper)
@ 2009-03-05 19:01 Anthony Liguori
0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2009-03-05 19:01 UTC (permalink / raw)
To: qemu-devel
Revision: 6688
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6688
Author: aliguori
Date: 2009-03-05 19:01:21 +0000 (Thu, 05 Mar 2009)
Log Message:
-----------
lsi: add ISTAT1 register read (Ryan Harper)
SLES10 SP2 installer complains when probing a scsi disk and exits qemu
when failing to read one of the registers.
lsi_scsi: error: readb 0x15
--
Ryan Harper
Software Engineer; Linux Technology Center
IBM Corp., Austin, Tx
ryanh@us.ibm.com
diffstat output:
lsi53c895a.c | 2 ++
1 files changed, 2 insertions(+)
Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
---
Subject: [PATCH] lsi: add ISTAT1 register read
From: Ryan Harper <ryanh@us.ibm.com>
Cc: kvm@vger.kernel.org
SLES10 SP2 installer complains when probing a scsi disk and exits qemu when
failing to read one of the registers.
lsi_scsi: error: readb 0x15
Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Modified Paths:
--------------
trunk/hw/lsi53c895a.c
Modified: trunk/hw/lsi53c895a.c
===================================================================
--- trunk/hw/lsi53c895a.c 2009-03-05 18:52:51 UTC (rev 6687)
+++ trunk/hw/lsi53c895a.c 2009-03-05 19:01:21 UTC (rev 6688)
@@ -1369,6 +1369,8 @@
CASE_GET_REG32(dsa, 0x10)
case 0x14: /* ISTAT0 */
return s->istat0;
+ case 0x15: /* ISTAT1 */
+ return s->istat1;
case 0x16: /* MBOX0 */
return s->mbox0;
case 0x17: /* MBOX1 */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-03-05 19:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-05 19:01 [Qemu-devel] [6688] lsi: add ISTAT1 register read (Ryan Harper) Anthony Liguori
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).