Commit ecabe8cc132ae260ed241aa95c106f39b5391815

Authored by aliguori
1 parent b4171e4b

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>


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6688 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 0 deletions
hw/lsi53c895a.c
... ... @@ -1369,6 +1369,8 @@ static uint8_t lsi_reg_readb(LSIState *s, int offset)
1369 1369 CASE_GET_REG32(dsa, 0x10)
1370 1370 case 0x14: /* ISTAT0 */
1371 1371 return s->istat0;
  1372 + case 0x15: /* ISTAT1 */
  1373 + return s->istat1;
1372 1374 case 0x16: /* MBOX0 */
1373 1375 return s->mbox0;
1374 1376 case 0x17: /* MBOX1 */
... ...