public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* RE: [SAS ANNOUNCEMENT] MPT Fusion driver 3.02.07.02 update
@ 2004-11-16  0:11 Moore, Eric Dean
  2004-11-16  0:42 ` Jeff Garzik
  2004-11-16 16:09 ` James Bottomley
  0 siblings, 2 replies; 8+ messages in thread
From: Moore, Eric Dean @ 2004-11-16  0:11 UTC (permalink / raw)
  To: James Bottomley; +Cc: SCSI Mailing List, Jeff Garzik, Jens Axboe

On Monday, November 15, 2004 3:51 PM, James Bottomley wrote:

> This isn't an exercise to expose all the layers in the 
> transport, merely
> to separate them out logically when it's useful to do so.  Thus, it
> would make sense to expose the link layer separately only if something
> other than a PHY were going to be using it.  If that's not the case,
> then link transport parameters can be safely stashed in the PHY layer.

I open to debate on this.  The link info is going to be providing properties
between two phys.

> Although really, the simplest way is a protocol to allow direct
> attachment of a remote PHY (sort of like a variant of the 
> scan interface
> under the scsi_host class).
> 

Would the "scan interface" be able to call the LLD drivers
with a SAS Address?  Here is our SMP passthru struct:

typedef struct _MSG_SMP_PASSTHROUGH_REQUEST
{
    U8                      PassthroughFlags;   /* 00h */
    U8                      PhysicalPort;       /* 01h */
    U8                      ChainOffset;        /* 02h */
    U8                      Function;           /* 03h */
    U16                     RequestDataLength;  /* 04h */
    U8                      ConnectionRate;     /* 06h */
    U8                      MsgFlags;           /* 07h */
    U32                     MsgContext;         /* 08h */
    U32                     Reserved1;          /* 0Ch */
    U64                     SASAddress;         /* 10h */
    U32                     Reserved2;          /* 18h */
    U32                     Reserved3;          /* 1Ch */
    SGE_SIMPLE_UNION        SGL;                /* 20h */
} MSG_SMP_PASSTHROUGH_REQUEST, MPI_POINTER PTR_MSG_SMP_PASSTHROUGH_REQUEST,
  SmpPassthroughRequest_t, MPI_POINTER pSmpPassthroughRequest_t;


> > (3) SATA Drives in SAS topology - STP/SATA Passthru 
> Protocal need to report
> > such
> > things as SMART DATA, Identify DATA, etc.   This is address 
> by target, bus,
> > channel.
> > How SATA/IDE info be made available to upper transport layers?
> 
> surely if we have a SATA device at the end (even if we reach the end
> point traversing a SAS domain) then you simply use SG_IO to transport
> the device native commands and the HBA does the correct thing for
> encapsulation.
> 

Our firmware does the SATA to SCSI translation.  Thus to the device driver
all devices in SAS domain look like SCSI devices.  Does SG_IO have
capability in sending a SATA/IDE Task Frame encapsulated in 
a FIS to a SCSI LLD?  I believe the SG_IO would end up calling 
the sh->queuecommand entry point via scsi mid layer. The input to
the LLD is struct scsi_cmnd, passing a SCSI cdb[16].  I don't see
a FIS in struct scsi_cmnd.  I guess if that is the plan, we would
need to add FIS in this structure, and the LLDs would need to differentiate
SATA from SCSI commands.

Here is our SATA/STP passthru struct:


typedef struct _MSG_SATA_PASSTHROUGH_REQUEST
{
    U8                      TargetID;           /* 00h */
    U8                      Bus;                /* 01h */
    U8                      ChainOffset;        /* 02h */
    U8                      Function;           /* 03h */
    U16                     PassthroughFlags;   /* 04h */
    U8                      ConnectionRate;     /* 06h */
    U8                      MsgFlags;           /* 07h */
    U32                     MsgContext;         /* 08h */
    U32                     Reserved1;          /* 0Ch */
    U32                     Reserved2;          /* 10h */
    U32                     Reserved3;          /* 14h */
    U32                     DataLength;         /* 18h */
    U8                      CommandFIS[20];     /* 1Ch */
    SGE_SIMPLE_UNION        SGL;                /* 30h */
} MSG_SATA_PASSTHROUGH_REQUEST, MPI_POINTER
PTR_MSG_SATA_PASSTHROUGH_REQUEST,
  SataPassthroughRequest_t, MPI_POINTER pSataPassthroughRequest_t; 

^ permalink raw reply	[flat|nested] 8+ messages in thread
* RE: [SAS ANNOUNCEMENT] MPT Fusion driver 3.02.07.02 update
@ 2004-11-15 22:15 Moore, Eric Dean
  2004-11-15 22:50 ` James Bottomley
  0 siblings, 1 reply; 8+ messages in thread
From: Moore, Eric Dean @ 2004-11-15 22:15 UTC (permalink / raw)
  To: James Bottomley, Moore, Eric Dean
  Cc: SCSI Mailing List, Jeff Garzik, Jens Axboe

Here are my concerns:

(1) In addition to PHY, there is a link layer. How about
a transport layer for that?  Some of the things we report
are { Current/Previous Negotiated Link Rate, Phy enable/disable, SATA OOB
complete,
Invalid Dword Count, Loss  Dword Sync Count, Phy Reset Problem Count }.

(2) Reporting PHYS that are not direct attached to HBA; e.g. SMP Protocal
for Exander Management.  This SMP passthru is addressed by the SAS Address. 
How can the SAS address be sent down to the LLDs?

(3) SATA Drives in SAS topology - STP/SATA Passthru Protocal need to report
such
things as SMART DATA, Identify DATA, etc.   This is address by target, bus,
channel.
How SATA/IDE info be made available to upper transport layers?

(4) Douglas concern on dual ported SAS drives in /dev/sg?? multipath eh?

Eric

Monday, November 15, 2004 11:01 AM, James Bottomley wrote:

> 
> 
> On Fri, 2004-11-12 at 17:15, Moore, Eric Dean wrote:
> > Highlights for this release:
> > 
> > In addition to SAS support =>
> > 
> 
> Actually, before we begin on a SAS implementation, I'd rather 
> like us to
> get the architecture and design correct.  Reading all the SAS and SATA
> documentation is still on my todo list.  However, this is my 
> brief take
> on the architecture:
> 
> SAS itself is a bit of a monster because the PHY layer characteristics
> are identical to those of SATA.  Therefore, it seems like we need two
> separate transport classes, one for the PHY layer which would control
> the PHY transport characteristics and would be shareable with SATA and
> one for SAS only which would cover a large swath of the SAS specific
> ioctls and the useful bits of CMSI.
> 
> As far as the controller and expander protocols to which Doug Gilbert
> has been referring, I really have no current idea how to do 
> them, but if
> anyone else does now would be a good time to say something.
> 
> So does the above look like an acceptable way to move 
> forward? (having a
> PHY transport class is going to mean changes in both SCSI and SATA and
> probably block as well, since this may ultimately not be a 
> SCSI specific
> transport class).
> 
> James
> 
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread
* [SAS ANNOUNCEMENT] MPT Fusion driver 3.02.07.02 update
@ 2004-11-12 23:15 Moore, Eric Dean
  2004-11-15 18:00 ` James Bottomley
  0 siblings, 1 reply; 8+ messages in thread
From: Moore, Eric Dean @ 2004-11-12 23:15 UTC (permalink / raw)
  To: linux-scsi

Highlights for this release:

In addition to SAS support =>

* Christoph's Requested Changes:

·	Changing how command line options are passed, 
passing the mptscsih string has been removed. Use modinfo
to see usage and description of the new parameters.
·	Removed IOCTL mptctl_hba_pciinfo 
·	Removed mptscsih_slave_destroy vdev != NULL check fixed 
by removing the DEVICE_NOT_THERE calling of same function.
. 	Replaced ioc_chip with bus_type.
. 	kill one MPTSCSIH_DBG_TIMEOUT in ->queuecommand
. 	removed TRUE/FALSE defines in mptctl.h

Please review, and send me your suggestions for other changes.


This patch applied against bk://linux-scsi.bkbits.net/scsi-misc-2.6
ftp://ftp.lsil.com/HostAdapterDrivers/linux/Fusion-MPT/2.6-kernel/3.02.07.02
/mptlinux-3.02.07.02.patch

Regards,
Eric Moore
LSI Logic Corporation
-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2004-11-16 16:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-16  0:11 [SAS ANNOUNCEMENT] MPT Fusion driver 3.02.07.02 update Moore, Eric Dean
2004-11-16  0:42 ` Jeff Garzik
2004-11-16 15:12   ` Luben Tuikov
2004-11-16 16:09 ` James Bottomley
  -- strict thread matches above, loose matches on Subject: below --
2004-11-15 22:15 Moore, Eric Dean
2004-11-15 22:50 ` James Bottomley
2004-11-12 23:15 Moore, Eric Dean
2004-11-15 18:00 ` James Bottomley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox