* scsi Target card and scsi Initiator card
@ 2004-10-06 10:43 Nikhil Dharashivkar
[not found] ` <4163DDC6.3030102@vlnb.net>
0 siblings, 1 reply; 5+ messages in thread
From: Nikhil Dharashivkar @ 2004-10-06 10:43 UTC (permalink / raw)
To: linux-scsi
hi all,
I want to know how target card is exposed to the intiator.
How connectivity is done between both cards. How luns are exposed from
target mode card to initiator card.
How communication is done when there is one target mode card and multiple
initiator cards.
Thanks,
Nikhil.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: scsi Target card and scsi Initiator card
[not found] ` <4163DDC6.3030102@vlnb.net>
@ 2004-10-07 5:44 ` Nikhil Dharashivkar
2004-10-07 6:07 ` NucleoDyne Systems, Inc.
2004-10-07 7:38 ` Vladislav Bolkhovitin
0 siblings, 2 replies; 5+ messages in thread
From: Nikhil Dharashivkar @ 2004-10-07 5:44 UTC (permalink / raw)
To: Vladislav Bolkhovitin
Hi,
Actually our setup of hardware is : There is one board . On that we
have one target mode card (LSI) and more than one initiator cards.
First thing I have to do is I should able to export all LUNS or
target devices connected to initiator card through this target mode card.
For that how should i think to develop software layer . Is there
already implemeted code ?
---- Original Message -----
From: "Vladislav Bolkhovitin" <vst@vlnb.net>
To: "Nikhil Dharashivkar" <dharashivkar.nikhil@spsoftindia.com>
Sent: Wednesday, October 06, 2004 5:27 PM
Subject: Re: scsi Target card and scsi Initiator card
> Nikhil,
>
> Everything is done according to appropriate SCSI standards, like Fibre
> Channel or iSCSI. Try to find their description, for example, on
> http://www.t10.org.
>
> Best regards,
> Vlad
>
> Nikhil Dharashivkar wrote:
> > hi all,
> > I want to know how target card is exposed to the intiator.
> > How connectivity is done between both cards. How luns are exposed from
> > target mode card to initiator card.
> > How communication is done when there is one target mode card and
multiple
> > initiator cards.
> >
> >
> > Thanks,
> > Nikhil.
> >
> > -
> > 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] 5+ messages in thread
* Re: scsi Target card and scsi Initiator card
2004-10-07 5:44 ` Nikhil Dharashivkar
@ 2004-10-07 6:07 ` NucleoDyne Systems, Inc.
2004-10-07 7:38 ` Vladislav Bolkhovitin
1 sibling, 0 replies; 5+ messages in thread
From: NucleoDyne Systems, Inc. @ 2004-10-07 6:07 UTC (permalink / raw)
To: Nikhil Dharashivkar; +Cc: linux-kernel
Hi,
Is your configuration as described below?
server-----scsi cable ---- target port ---initiator(s)----devices
There is an easy solution. You may develop a kernel module
that will accept the packets from the target card and forward them
to the initiator. There are a few calls in linux to submit a request
to an initiator. You may look at scsi_do_request() call.
I guess I can not disclose more in details as I have signed a NDA.
A single LSI card (at least a fusion MPT) can be programmed so that it
responds in the SELECTION phase for multiple target devices. That is
the same card can raise the BUSY signal for different target ids
and responds to a selection. This way you can present multiple targets
behind your initiator through your target mode port on the board.
Please feel free to contact me if you need additional help.
Kallol
--
--
NucleoDyne Corporation
nucleon@nucleodyne.com
www.nucleodyne.com
408-718-8164
On Wed, 2004-10-06 at 22:44, Nikhil Dharashivkar wrote:
> Hi,
> Actually our setup of hardware is : There is one board . On that we
> have one target mode card (LSI) and more than one initiator cards.
> First thing I have to do is I should able to export all LUNS or
> target devices connected to initiator card through this target mode card.
> For that how should i think to develop software layer . Is there
> already implemeted code ?
>
>
> ---- Original Message -----
> From: "Vladislav Bolkhovitin" <vst@vlnb.net>
> To: "Nikhil Dharashivkar" <dharashivkar.nikhil@spsoftindia.com>
> Sent: Wednesday, October 06, 2004 5:27 PM
> Subject: Re: scsi Target card and scsi Initiator card
>
>
> > Nikhil,
> >
> > Everything is done according to appropriate SCSI standards, like Fibre
> > Channel or iSCSI. Try to find their description, for example, on
> > http://www.t10.org.
> >
> > Best regards,
> > Vlad
> >
> > Nikhil Dharashivkar wrote:
> > > hi all,
> > > I want to know how target card is exposed to the intiator.
> > > How connectivity is done between both cards. How luns are exposed from
> > > target mode card to initiator card.
> > > How communication is done when there is one target mode card and
> multiple
> > > initiator cards.
> > >
> > >
> > > Thanks,
> > > Nikhil.
> > >
> > > -
> > > 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
> > >
> > >
>
> -
> 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] 5+ messages in thread
* Re: scsi Target card and scsi Initiator card
2004-10-07 5:44 ` Nikhil Dharashivkar
2004-10-07 6:07 ` NucleoDyne Systems, Inc.
@ 2004-10-07 7:38 ` Vladislav Bolkhovitin
2004-10-11 5:37 ` Nikhil Dharashivkar
1 sibling, 1 reply; 5+ messages in thread
From: Vladislav Bolkhovitin @ 2004-10-07 7:38 UTC (permalink / raw)
To: Nikhil Dharashivkar; +Cc: linux-scsi
Nikhil Dharashivkar wrote:
> Hi,
> Actually our setup of hardware is : There is one board . On that we
> have one target mode card (LSI) and more than one initiator cards.
> First thing I have to do is I should able to export all LUNS or
> target devices connected to initiator card through this target mode card.
> For that how should i think to develop software layer . Is there
> already implemeted code ?
Take a look on SCSI target mid-level (SCST) on
http://scst.sourceforge.net. You just need to develop small target
add-on to the LSI's initiator driver as it was done for Qlogic cards.
Vlad
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: scsi Target card and scsi Initiator card
2004-10-07 7:38 ` Vladislav Bolkhovitin
@ 2004-10-11 5:37 ` Nikhil Dharashivkar
0 siblings, 0 replies; 5+ messages in thread
From: Nikhil Dharashivkar @ 2004-10-11 5:37 UTC (permalink / raw)
To: Vladislav Bolkhovitin; +Cc: linux-scsi
Hi ....
I have gone thr' documents that discribe Target Emulator or that type
of software layer.
I have LSI22320-R with LSI1030 and LSI1030T (Two Cards). I also have
driver Tekram (Initiator Card).
Now I joind Tekram and LSI card with external scsi cable. Connection was
done and disk also exposed from LSI Card to Tekram.
Basically LSI card that i have contains Inititator/Target mode firmware.
So What i want to do , to make LSI card to run in only Target Mode. For
that , Can i write a kernel module that can read incomming scsi
commands from any initiator card (here Tekram) to the LSI card. and that
module will invoke the firware on the LSI card intead directly by commnads ?
What i think here that i have to do low level i..e card level programming to
get these scsi commands , is it possible / feasible ?
Regrads,
Nikhil.
----- Original Message -----
From: "Vladislav Bolkhovitin" <vst@vlnb.net>
To: "Nikhil Dharashivkar" <dharashivkar.nikhil@spsoftindia.com>
Cc: <linux-scsi@vger.kernel.org>
Sent: Thursday, October 07, 2004 1:08 PM
Subject: Re: scsi Target card and scsi Initiator card
> Nikhil Dharashivkar wrote:
> > Hi,
> > Actually our setup of hardware is : There is one board . On that we
> > have one target mode card (LSI) and more than one initiator cards.
> > First thing I have to do is I should able to export all LUNS or
> > target devices connected to initiator card through this target mode
card.
> > For that how should i think to develop software layer . Is there
> > already implemeted code ?
>
> Take a look on SCSI target mid-level (SCST) on
> http://scst.sourceforge.net. You just need to develop small target
> add-on to the LSI's initiator driver as it was done for Qlogic cards.
>
> Vlad
> -
> 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] 5+ messages in thread
end of thread, other threads:[~2004-10-11 5:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-06 10:43 scsi Target card and scsi Initiator card Nikhil Dharashivkar
[not found] ` <4163DDC6.3030102@vlnb.net>
2004-10-07 5:44 ` Nikhil Dharashivkar
2004-10-07 6:07 ` NucleoDyne Systems, Inc.
2004-10-07 7:38 ` Vladislav Bolkhovitin
2004-10-11 5:37 ` Nikhil Dharashivkar
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.