All of lore.kernel.org
 help / color / mirror / Atom feed
* ATA_16 support on mptsas
@ 2008-06-23 16:00 Krzysztof Błaszkowski
  2008-06-23 19:40 ` Moore, Eric
  0 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Błaszkowski @ 2008-06-23 16:00 UTC (permalink / raw)
  To: jgarzik; +Cc: linux-ide, DL-MPTFusionLinux

Hello,

I found that any HDIO_DRIVE_CMD ioctl on sata drive connected through mpsas 
and backplane will fail. Basically the scsi_host_template structure is 
missing ioctl callback. after adding it and temporary tweaking domain_device 
structure associated to scsi_device (rphy only) i reached a point where 
ata_scsi_ioctl returns EIO and this why i need some clue on a way of adding 
such support similar way to aic94 where it has been done.

I found also that mptsas leaves domain_device rather uninitialized. the 
example is rphy but there more fields i don't know if they are revelant to 
proper processing of HDIO_DRIVE_CMD.
i need additional references on libata design, call flow and structures 
relationship.

probably it would be the best to design mptsas from scratch using libsas but 
this seems to me as huge work although if i was guided i would probably 
complete this.


I tried another approach where i used SG_IO ioctl and prepared ATA_16 cdb 
(just like libata does) but this failed on mptsas connected drives too 
altough this way works on drives connected to ICH6.

Regards,
Krzysztof Blaszkowski


^ permalink raw reply	[flat|nested] 7+ messages in thread
* RE: ATA_16 support on mptsas
@ 2008-06-23 22:09 Richard Scobie
  0 siblings, 0 replies; 7+ messages in thread
From: Richard Scobie @ 2008-06-23 22:09 UTC (permalink / raw)
  To: linux-ide

Eric Moore wrote:

 > The SG tools will work with mpt fusion if your passing the ATA_12
 > (opcode=0xA1) and ATA_16 (opcode=0x85).   This is implemented in
 > fusion firmware.  If your failing, then your probably having old
 > firmware.  I suggest that you upgrading by going to the download
 > site located here: http://www.lsi.com/cm/DownloadSearch.do?locale=EN.
 > Ken Stewart is from support, he should be able to assist you with
 > upgrading the firmware if you encounter any problems.

Hi Eric,

I have already logged a bug with Fedora, but can you think of anything 
that would have changed between 2.6.25.4 and 2.6.25.6 that would have 
broken this?

I have just updated from 2.6.25.4-30.fc9.x86_64 to 
2.6.25.6-55.fc9.x86_64 and smartmontools now causes LSISAS1068E 
controller resets, where it was working perfectly before:

mptscsih: ioc0: attempting task abort! (sc=ffff81023d0c6b40)
sd 4:0:0:0: [sdc] CDB: ATA command pass through(16): 85 08 0e 00 00 00 
01 00 00
00 00 00 00 00 ec 00
mptbase: ioc0: LogInfo(0x31140000): Originator={PL}, Code={IO Executed},
SubCode(0x0000)
mptscsih: ioc0: task abort: SUCCESS (sc=ffff81023d0c6b40)
mptscsih: ioc0: attempting task abort! (sc=ffff81023d0c6b40)
sd 4:0:0:0: [sdc] CDB: Test Unit Ready: 00 00 00 00 00 00
mptbase: ioc0: LogInfo(0x31130000): Originator={PL}, Code={IO Not Yet 
Executed},
SubCode(0x0000)
mptscsih: ioc0: task abort: SUCCESS (sc=ffff81023d0c6b40)
mptscsih: ioc0: attempting target reset! (sc=ffff81023d0c6b40)
sd 4:0:0:0: [sdc] CDB: ATA command pass through(16): 85 08 0e 00 00 00 
01 00 00
00 00 00 00 00 ec 00
mptscsih: ioc0: target reset: SUCCESS (sc=ffff81023d0c6b40)
mptscsih: ioc0: attempting task abort! (sc=ffff81023d0c6b40)
sd 4:0:0:0: [sdc] CDB: Test Unit Ready: 00 00 00 00 00 00
mptbase: ioc0: LogInfo(0x31130000): Originator={PL}, Code={IO Not Yet 
Executed},
SubCode(0x0000)
mptscsih: ioc0: task abort: SUCCESS (sc=ffff81023d0c6b40)
mptscsih: ioc0: attempting bus reset! (sc=ffff81023d0c6b40)
sd 4:0:0:0: [sdc] CDB: ATA command pass through(16): 85 08 0e 00 00 00 
01 00 00
00 00 00 00 00 ec 00
mptscsih: ioc0: bus reset: SUCCESS (sc=ffff81023d0c6b40)
mptscsih: ioc0: attempting task abort! (sc=ffff81023d0c6b40)
sd 4:0:0:0: [sdc] CDB: Test Unit Ready: 00 00 00 00 00 00
mptbase: ioc0: LogInfo(0x31130000): Originator={PL}, Code={IO Not Yet 
Executed},
SubCode(0x0000)
mptscsih: ioc0: task abort: SUCCESS (sc=ffff81023d0c6b40)
mptscsih: ioc0: attempting host reset! (sc=ffff81023d0c6b40)
mptbase: ioc0: Initiating recovery
mptscsih: ioc0: host reset: SUCCESS (sc=ffff81023d0c6b40)
sd 4:0:0:0: Device offlined - not ready after error recovery
program smartd is using a deprecated SCSI ioctl, please convert it to SG_IO

smartd.conf entries are in the form:

/dev/sdc -d sat,16 -a -I 194 -s L/../../1/01

and all drives behind the controller do the same.

Regards,

Richard

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-06-27 17:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-23 16:00 ATA_16 support on mptsas Krzysztof Błaszkowski
2008-06-23 19:40 ` Moore, Eric
2008-06-27  9:02   ` Krzysztof Błaszkowski
2008-06-27 14:24   ` Krzysztof Błaszkowski
2008-06-27 15:07     ` Moore, Eric
2008-06-27 17:14       ` Krzysztof Błaszkowski
  -- strict thread matches above, loose matches on Subject: below --
2008-06-23 22:09 Richard Scobie

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.