2 * Parallel SCSI (SPI) transport specific attributes exported to sysfs.
4 * Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
5 * Copyright (c) 2004, 2005 James Bottomley <James.Bottomley@SteelEye.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/ctype.h>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/workqueue.h>
25 #include <linux/blkdev.h>
26 #include <linux/mutex.h>
27 #include <linux/sysfs.h>
28 #include <scsi/scsi.h>
29 #include "scsi_priv.h"
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_cmnd.h>
33 #include <scsi/scsi_eh.h>
34 #include <scsi/scsi_transport.h>
35 #include <scsi/scsi_transport_spi.h>
37 #define SPI_NUM_ATTRS 14 /* increase this if you add attributes */
38 #define SPI_OTHER_ATTRS 1 /* Increase this if you add "always
40 #define SPI_HOST_ATTRS 1
42 #define SPI_MAX_ECHO_BUFFER_SIZE 4096
45 #define DV_TIMEOUT (10*HZ)
46 #define DV_RETRIES 3 /* should only need at most
49 /* Our blacklist flags */
51 SPI_BLIST_NOIUS
= 0x1,
54 /* blacklist table, modelled on scsi_devinfo.c */
59 } spi_static_device_list
[] __initdata
= {
60 {"HP", "Ultrium 3-SCSI", SPI_BLIST_NOIUS
},
61 {"IBM", "ULTRIUM-TD3", SPI_BLIST_NOIUS
},
65 /* Private data accessors (keep these out of the header file) */
66 #define spi_dv_in_progress(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_in_progress)
67 #define spi_dv_mutex(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_mutex)
70 struct scsi_transport_template t
;
71 struct spi_function_template
*f
;
74 #define to_spi_internal(tmpl) container_of(tmpl, struct spi_internal, t)
76 static const int ppr_to_ps
[] = {
77 /* The PPR values 0-6 are reserved, fill them in when
78 * the committee defines them */
93 /* The PPR values at which you calculate the period in ns by multiplying
95 #define SPI_STATIC_PPR 0x0c
97 static int sprint_frac(char *dest
, int value
, int denom
)
99 int frac
= value
% denom
;
100 int result
= sprintf(dest
, "%d", value
/ denom
);
104 dest
[result
++] = '.';
108 sprintf(dest
+ result
, "%d", frac
/ denom
);
113 dest
[result
++] = '\0';
117 static int spi_execute(struct scsi_device
*sdev
, const void *cmd
,
118 enum dma_data_direction dir
,
119 void *buffer
, unsigned bufflen
,
120 struct scsi_sense_hdr
*sshdr
)
123 unsigned char sense
[SCSI_SENSE_BUFFERSIZE
];
125 for(i
= 0; i
< DV_RETRIES
; i
++) {
126 result
= scsi_execute(sdev
, cmd
, dir
, buffer
, bufflen
,
127 sense
, DV_TIMEOUT
, /* retries */ 1,
129 REQ_FAILFAST_TRANSPORT
|
132 if (driver_byte(result
) & DRIVER_SENSE
) {
133 struct scsi_sense_hdr sshdr_tmp
;
137 if (scsi_normalize_sense(sense
, SCSI_SENSE_BUFFERSIZE
,
139 && sshdr
->sense_key
== UNIT_ATTENTION
)
148 enum spi_signal_type value
;
151 { SPI_SIGNAL_UNKNOWN
, "unknown" },
152 { SPI_SIGNAL_SE
, "SE" },
153 { SPI_SIGNAL_LVD
, "LVD" },
154 { SPI_SIGNAL_HVD
, "HVD" },
157 static inline const char *spi_signal_to_string(enum spi_signal_type type
)
161 for (i
= 0; i
< ARRAY_SIZE(signal_types
); i
++) {
162 if (type
== signal_types
[i
].value
)
163 return signal_types
[i
].name
;
167 static inline enum spi_signal_type
spi_signal_to_value(const char *name
)
171 for (i
= 0; i
< ARRAY_SIZE(signal_types
); i
++) {
172 len
= strlen(signal_types
[i
].name
);
173 if (strncmp(name
, signal_types
[i
].name
, len
) == 0 &&
174 (name
[len
] == '\n' || name
[len
] == '\0'))
175 return signal_types
[i
].value
;
177 return SPI_SIGNAL_UNKNOWN
;
180 static int spi_host_setup(struct transport_container
*tc
, struct device
*dev
,
183 struct Scsi_Host
*shost
= dev_to_shost(dev
);
185 spi_signalling(shost
) = SPI_SIGNAL_UNKNOWN
;
190 static int spi_host_configure(struct transport_container
*tc
,
192 struct device
*cdev
);
194 static DECLARE_TRANSPORT_CLASS(spi_host_class
,
200 static int spi_host_match(struct attribute_container
*cont
,
203 struct Scsi_Host
*shost
;
205 if (!scsi_is_host_device(dev
))
208 shost
= dev_to_shost(dev
);
209 if (!shost
->transportt
|| shost
->transportt
->host_attrs
.ac
.class
210 != &spi_host_class
.class)
213 return &shost
->transportt
->host_attrs
.ac
== cont
;
216 static int spi_target_configure(struct transport_container
*tc
,
218 struct device
*cdev
);
220 static int spi_device_configure(struct transport_container
*tc
,
224 struct scsi_device
*sdev
= to_scsi_device(dev
);
225 struct scsi_target
*starget
= sdev
->sdev_target
;
226 unsigned bflags
= scsi_get_device_flags_keyed(sdev
, &sdev
->inquiry
[8],
230 /* Populate the target capability fields with the values
231 * gleaned from the device inquiry */
233 spi_support_sync(starget
) = scsi_device_sync(sdev
);
234 spi_support_wide(starget
) = scsi_device_wide(sdev
);
235 spi_support_dt(starget
) = scsi_device_dt(sdev
);
236 spi_support_dt_only(starget
) = scsi_device_dt_only(sdev
);
237 spi_support_ius(starget
) = scsi_device_ius(sdev
);
238 if (bflags
& SPI_BLIST_NOIUS
) {
239 dev_info(dev
, "Information Units disabled by blacklist\n");
240 spi_support_ius(starget
) = 0;
242 spi_support_qas(starget
) = scsi_device_qas(sdev
);
247 static int spi_setup_transport_attrs(struct transport_container
*tc
,
251 struct scsi_target
*starget
= to_scsi_target(dev
);
253 spi_period(starget
) = -1; /* illegal value */
254 spi_min_period(starget
) = 0;
255 spi_offset(starget
) = 0; /* async */
256 spi_max_offset(starget
) = 255;
257 spi_width(starget
) = 0; /* narrow */
258 spi_max_width(starget
) = 1;
259 spi_iu(starget
) = 0; /* no IU */
260 spi_max_iu(starget
) = 1;
261 spi_dt(starget
) = 0; /* ST */
262 spi_qas(starget
) = 0;
263 spi_max_qas(starget
) = 1;
264 spi_wr_flow(starget
) = 0;
265 spi_rd_strm(starget
) = 0;
266 spi_rti(starget
) = 0;
267 spi_pcomp_en(starget
) = 0;
268 spi_hold_mcs(starget
) = 0;
269 spi_dv_pending(starget
) = 0;
270 spi_dv_in_progress(starget
) = 0;
271 spi_initial_dv(starget
) = 0;
272 mutex_init(&spi_dv_mutex(starget
));
277 #define spi_transport_show_simple(field, format_string) \
280 show_spi_transport_##field(struct device *dev, \
281 struct device_attribute *attr, char *buf) \
283 struct scsi_target *starget = transport_class_to_starget(dev); \
284 struct spi_transport_attrs *tp; \
286 tp = (struct spi_transport_attrs *)&starget->starget_data; \
287 return snprintf(buf, 20, format_string, tp->field); \
290 #define spi_transport_store_simple(field, format_string) \
293 store_spi_transport_##field(struct device *dev, \
294 struct device_attribute *attr, \
295 const char *buf, size_t count) \
298 struct scsi_target *starget = transport_class_to_starget(dev); \
299 struct spi_transport_attrs *tp; \
301 tp = (struct spi_transport_attrs *)&starget->starget_data; \
302 val = simple_strtoul(buf, NULL, 0); \
307 #define spi_transport_show_function(field, format_string) \
310 show_spi_transport_##field(struct device *dev, \
311 struct device_attribute *attr, char *buf) \
313 struct scsi_target *starget = transport_class_to_starget(dev); \
314 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
315 struct spi_transport_attrs *tp; \
316 struct spi_internal *i = to_spi_internal(shost->transportt); \
317 tp = (struct spi_transport_attrs *)&starget->starget_data; \
318 if (i->f->get_##field) \
319 i->f->get_##field(starget); \
320 return snprintf(buf, 20, format_string, tp->field); \
323 #define spi_transport_store_function(field, format_string) \
325 store_spi_transport_##field(struct device *dev, \
326 struct device_attribute *attr, \
327 const char *buf, size_t count) \
330 struct scsi_target *starget = transport_class_to_starget(dev); \
331 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
332 struct spi_internal *i = to_spi_internal(shost->transportt); \
334 if (!i->f->set_##field) \
336 val = simple_strtoul(buf, NULL, 0); \
337 i->f->set_##field(starget, val); \
341 #define spi_transport_store_max(field, format_string) \
343 store_spi_transport_##field(struct device *dev, \
344 struct device_attribute *attr, \
345 const char *buf, size_t count) \
348 struct scsi_target *starget = transport_class_to_starget(dev); \
349 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
350 struct spi_internal *i = to_spi_internal(shost->transportt); \
351 struct spi_transport_attrs *tp \
352 = (struct spi_transport_attrs *)&starget->starget_data; \
354 if (i->f->set_##field) \
356 val = simple_strtoul(buf, NULL, 0); \
357 if (val > tp->max_##field) \
358 val = tp->max_##field; \
359 i->f->set_##field(starget, val); \
363 #define spi_transport_rd_attr(field, format_string) \
364 spi_transport_show_function(field, format_string) \
365 spi_transport_store_function(field, format_string) \
366 static DEVICE_ATTR(field, S_IRUGO, \
367 show_spi_transport_##field, \
368 store_spi_transport_##field);
370 #define spi_transport_simple_attr(field, format_string) \
371 spi_transport_show_simple(field, format_string) \
372 spi_transport_store_simple(field, format_string) \
373 static DEVICE_ATTR(field, S_IRUGO, \
374 show_spi_transport_##field, \
375 store_spi_transport_##field);
377 #define spi_transport_max_attr(field, format_string) \
378 spi_transport_show_function(field, format_string) \
379 spi_transport_store_max(field, format_string) \
380 spi_transport_simple_attr(max_##field, format_string) \
381 static DEVICE_ATTR(field, S_IRUGO, \
382 show_spi_transport_##field, \
383 store_spi_transport_##field);
385 /* The Parallel SCSI Tranport Attributes: */
386 spi_transport_max_attr(offset
, "%d\n");
387 spi_transport_max_attr(width
, "%d\n");
388 spi_transport_max_attr(iu
, "%d\n");
389 spi_transport_rd_attr(dt
, "%d\n");
390 spi_transport_max_attr(qas
, "%d\n");
391 spi_transport_rd_attr(wr_flow
, "%d\n");
392 spi_transport_rd_attr(rd_strm
, "%d\n");
393 spi_transport_rd_attr(rti
, "%d\n");
394 spi_transport_rd_attr(pcomp_en
, "%d\n");
395 spi_transport_rd_attr(hold_mcs
, "%d\n");
397 /* we only care about the first child device that's a real SCSI device
398 * so we return 1 to terminate the iteration when we find it */
399 static int child_iter(struct device
*dev
, void *data
)
401 if (!scsi_is_sdev_device(dev
))
404 spi_dv_device(to_scsi_device(dev
));
409 store_spi_revalidate(struct device
*dev
, struct device_attribute
*attr
,
410 const char *buf
, size_t count
)
412 struct scsi_target
*starget
= transport_class_to_starget(dev
);
414 device_for_each_child(&starget
->dev
, NULL
, child_iter
);
417 static DEVICE_ATTR(revalidate
, S_IWUSR
, NULL
, store_spi_revalidate
);
419 /* Translate the period into ns according to the current spec
420 * for SDTR/PPR messages */
421 static int period_to_str(char *buf
, int period
)
425 if (period
< 0 || period
> 0xff) {
427 } else if (period
<= SPI_STATIC_PPR
) {
428 picosec
= ppr_to_ps
[period
];
430 picosec
= period
* 4000;
434 len
= sprintf(buf
, "reserved");
436 len
= sprint_frac(buf
, picosec
, 1000);
443 show_spi_transport_period_helper(char *buf
, int period
)
445 int len
= period_to_str(buf
, period
);
452 store_spi_transport_period_helper(struct device
*dev
, const char *buf
,
453 size_t count
, int *periodp
)
455 int j
, picosec
, period
= -1;
458 picosec
= simple_strtoul(buf
, &endp
, 10) * 1000;
465 picosec
+= (*endp
- '0') * mult
;
470 for (j
= 0; j
<= SPI_STATIC_PPR
; j
++) {
471 if (ppr_to_ps
[j
] < picosec
)
478 period
= picosec
/ 4000;
489 show_spi_transport_period(struct device
*dev
,
490 struct device_attribute
*attr
, char *buf
)
492 struct scsi_target
*starget
= transport_class_to_starget(dev
);
493 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
494 struct spi_internal
*i
= to_spi_internal(shost
->transportt
);
495 struct spi_transport_attrs
*tp
=
496 (struct spi_transport_attrs
*)&starget
->starget_data
;
498 if (i
->f
->get_period
)
499 i
->f
->get_period(starget
);
501 return show_spi_transport_period_helper(buf
, tp
->period
);
505 store_spi_transport_period(struct device
*cdev
, struct device_attribute
*attr
,
506 const char *buf
, size_t count
)
508 struct scsi_target
*starget
= transport_class_to_starget(cdev
);
509 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
510 struct spi_internal
*i
= to_spi_internal(shost
->transportt
);
511 struct spi_transport_attrs
*tp
=
512 (struct spi_transport_attrs
*)&starget
->starget_data
;
515 if (!i
->f
->set_period
)
518 retval
= store_spi_transport_period_helper(cdev
, buf
, count
, &period
);
520 if (period
< tp
->min_period
)
521 period
= tp
->min_period
;
523 i
->f
->set_period(starget
, period
);
528 static DEVICE_ATTR(period
, S_IRUGO
,
529 show_spi_transport_period
,
530 store_spi_transport_period
);
533 show_spi_transport_min_period(struct device
*cdev
,
534 struct device_attribute
*attr
, char *buf
)
536 struct scsi_target
*starget
= transport_class_to_starget(cdev
);
537 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
538 struct spi_internal
*i
= to_spi_internal(shost
->transportt
);
539 struct spi_transport_attrs
*tp
=
540 (struct spi_transport_attrs
*)&starget
->starget_data
;
542 if (!i
->f
->set_period
)
545 return show_spi_transport_period_helper(buf
, tp
->min_period
);
549 store_spi_transport_min_period(struct device
*cdev
,
550 struct device_attribute
*attr
,
551 const char *buf
, size_t count
)
553 struct scsi_target
*starget
= transport_class_to_starget(cdev
);
554 struct spi_transport_attrs
*tp
=
555 (struct spi_transport_attrs
*)&starget
->starget_data
;
557 return store_spi_transport_period_helper(cdev
, buf
, count
,
562 static DEVICE_ATTR(min_period
, S_IRUGO
,
563 show_spi_transport_min_period
,
564 store_spi_transport_min_period
);
567 static ssize_t
show_spi_host_signalling(struct device
*cdev
,
568 struct device_attribute
*attr
,
571 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
572 struct spi_internal
*i
= to_spi_internal(shost
->transportt
);
574 if (i
->f
->get_signalling
)
575 i
->f
->get_signalling(shost
);
577 return sprintf(buf
, "%s\n", spi_signal_to_string(spi_signalling(shost
)));
579 static ssize_t
store_spi_host_signalling(struct device
*dev
,
580 struct device_attribute
*attr
,
581 const char *buf
, size_t count
)
583 struct Scsi_Host
*shost
= transport_class_to_shost(dev
);
584 struct spi_internal
*i
= to_spi_internal(shost
->transportt
);
585 enum spi_signal_type type
= spi_signal_to_value(buf
);
587 if (!i
->f
->set_signalling
)
590 if (type
!= SPI_SIGNAL_UNKNOWN
)
591 i
->f
->set_signalling(shost
, type
);
595 static DEVICE_ATTR(signalling
, S_IRUGO
,
596 show_spi_host_signalling
,
597 store_spi_host_signalling
);
599 #define DV_SET(x, y) \
601 i->f->set_##x(sdev->sdev_target, y)
603 enum spi_compare_returns
{
606 SPI_COMPARE_SKIP_TEST
,
610 /* This is for read/write Domain Validation: If the device supports
611 * an echo buffer, we do read/write tests to it */
612 static enum spi_compare_returns
613 spi_dv_device_echo_buffer(struct scsi_device
*sdev
, u8
*buffer
,
614 u8
*ptr
, const int retries
)
616 int len
= ptr
- buffer
;
618 unsigned int pattern
= 0x0000ffff;
619 struct scsi_sense_hdr sshdr
;
621 const char spi_write_buffer
[] = {
622 WRITE_BUFFER
, 0x0a, 0, 0, 0, 0, 0, len
>> 8, len
& 0xff, 0
624 const char spi_read_buffer
[] = {
625 READ_BUFFER
, 0x0a, 0, 0, 0, 0, 0, len
>> 8, len
& 0xff, 0
628 /* set up the pattern buffer. Doesn't matter if we spill
629 * slightly beyond since that's where the read buffer is */
630 for (j
= 0; j
< len
; ) {
632 /* fill the buffer with counting (test a) */
633 for ( ; j
< min(len
, 32); j
++)
636 /* fill the buffer with alternating words of 0x0 and
638 for ( ; j
< min(len
, k
+ 32); j
+= 2) {
639 u16
*word
= (u16
*)&buffer
[j
];
641 *word
= (j
& 0x02) ? 0x0000 : 0xffff;
644 /* fill with crosstalk (alternating 0x5555 0xaaa)
646 for ( ; j
< min(len
, k
+ 32); j
+= 2) {
647 u16
*word
= (u16
*)&buffer
[j
];
649 *word
= (j
& 0x02) ? 0x5555 : 0xaaaa;
652 /* fill with shifting bits (test d) */
653 for ( ; j
< min(len
, k
+ 32); j
+= 4) {
654 u32
*word
= (unsigned int *)&buffer
[j
];
655 u32 roll
= (pattern
& 0x80000000) ? 1 : 0;
658 pattern
= (pattern
<< 1) | roll
;
660 /* don't bother with random data (test e) */
663 for (r
= 0; r
< retries
; r
++) {
664 result
= spi_execute(sdev
, spi_write_buffer
, DMA_TO_DEVICE
,
665 buffer
, len
, &sshdr
);
666 if(result
|| !scsi_device_online(sdev
)) {
668 scsi_device_set_state(sdev
, SDEV_QUIESCE
);
669 if (scsi_sense_valid(&sshdr
)
670 && sshdr
.sense_key
== ILLEGAL_REQUEST
671 /* INVALID FIELD IN CDB */
672 && sshdr
.asc
== 0x24 && sshdr
.ascq
== 0x00)
673 /* This would mean that the drive lied
674 * to us about supporting an echo
675 * buffer (unfortunately some Western
676 * Digital drives do precisely this)
678 return SPI_COMPARE_SKIP_TEST
;
681 sdev_printk(KERN_ERR
, sdev
, "Write Buffer failure %x\n", result
);
682 return SPI_COMPARE_FAILURE
;
686 spi_execute(sdev
, spi_read_buffer
, DMA_FROM_DEVICE
,
688 scsi_device_set_state(sdev
, SDEV_QUIESCE
);
690 if (memcmp(buffer
, ptr
, len
) != 0)
691 return SPI_COMPARE_FAILURE
;
693 return SPI_COMPARE_SUCCESS
;
696 /* This is for the simplest form of Domain Validation: a read test
697 * on the inquiry data from the device */
698 static enum spi_compare_returns
699 spi_dv_device_compare_inquiry(struct scsi_device
*sdev
, u8
*buffer
,
700 u8
*ptr
, const int retries
)
703 const int len
= sdev
->inquiry_len
;
704 const char spi_inquiry
[] = {
705 INQUIRY
, 0, 0, 0, len
, 0
708 for (r
= 0; r
< retries
; r
++) {
711 result
= spi_execute(sdev
, spi_inquiry
, DMA_FROM_DEVICE
,
714 if(result
|| !scsi_device_online(sdev
)) {
715 scsi_device_set_state(sdev
, SDEV_QUIESCE
);
716 return SPI_COMPARE_FAILURE
;
719 /* If we don't have the inquiry data already, the
720 * first read gets it */
727 if (memcmp(buffer
, ptr
, len
) != 0)
729 return SPI_COMPARE_FAILURE
;
731 return SPI_COMPARE_SUCCESS
;
734 static enum spi_compare_returns
735 spi_dv_retrain(struct scsi_device
*sdev
, u8
*buffer
, u8
*ptr
,
736 enum spi_compare_returns
737 (*compare_fn
)(struct scsi_device
*, u8
*, u8
*, int))
739 struct spi_internal
*i
= to_spi_internal(sdev
->host
->transportt
);
740 struct scsi_target
*starget
= sdev
->sdev_target
;
741 int period
= 0, prevperiod
= 0;
742 enum spi_compare_returns retval
;
747 retval
= compare_fn(sdev
, buffer
, ptr
, DV_LOOPS
);
749 if (retval
== SPI_COMPARE_SUCCESS
750 || retval
== SPI_COMPARE_SKIP_TEST
)
753 /* OK, retrain, fallback */
755 i
->f
->get_iu(starget
);
757 i
->f
->get_qas(starget
);
758 if (i
->f
->get_period
)
759 i
->f
->get_period(sdev
->sdev_target
);
761 /* Here's the fallback sequence; first try turning off
762 * IU, then QAS (if we can control them), then finally
763 * fall down the periods */
764 if (i
->f
->set_iu
&& spi_iu(starget
)) {
765 starget_printk(KERN_ERR
, starget
, "Domain Validation Disabing Information Units\n");
767 } else if (i
->f
->set_qas
&& spi_qas(starget
)) {
768 starget_printk(KERN_ERR
, starget
, "Domain Validation Disabing Quick Arbitration and Selection\n");
771 newperiod
= spi_period(starget
);
772 period
= newperiod
> period
? newperiod
: period
;
776 period
+= period
>> 1;
778 if (unlikely(period
> 0xff || period
== prevperiod
)) {
779 /* Total failure; set to async and return */
780 starget_printk(KERN_ERR
, starget
, "Domain Validation Failure, dropping back to Asynchronous\n");
782 return SPI_COMPARE_FAILURE
;
784 starget_printk(KERN_ERR
, starget
, "Domain Validation detected failure, dropping back\n");
785 DV_SET(period
, period
);
793 spi_dv_device_get_echo_buffer(struct scsi_device
*sdev
, u8
*buffer
)
797 /* first off do a test unit ready. This can error out
798 * because of reservations or some other reason. If it
799 * fails, the device won't let us write to the echo buffer
800 * so just return failure */
802 const char spi_test_unit_ready
[] = {
803 TEST_UNIT_READY
, 0, 0, 0, 0, 0
806 const char spi_read_buffer_descriptor
[] = {
807 READ_BUFFER
, 0x0b, 0, 0, 0, 0, 0, 0, 4, 0
811 /* We send a set of three TURs to clear any outstanding
812 * unit attention conditions if they exist (Otherwise the
813 * buffer tests won't be happy). If the TUR still fails
814 * (reservation conflict, device not ready, etc) just
815 * skip the write tests */
817 result
= spi_execute(sdev
, spi_test_unit_ready
, DMA_NONE
,
829 result
= spi_execute(sdev
, spi_read_buffer_descriptor
,
830 DMA_FROM_DEVICE
, buffer
, 4, NULL
);
833 /* Device has no echo buffer */
836 return buffer
[3] + ((buffer
[2] & 0x1f) << 8);
840 spi_dv_device_internal(struct scsi_device
*sdev
, u8
*buffer
)
842 struct spi_internal
*i
= to_spi_internal(sdev
->host
->transportt
);
843 struct scsi_target
*starget
= sdev
->sdev_target
;
844 struct Scsi_Host
*shost
= sdev
->host
;
845 int len
= sdev
->inquiry_len
;
846 int min_period
= spi_min_period(starget
);
847 int max_width
= spi_max_width(starget
);
848 /* first set us up for narrow async */
852 if (spi_dv_device_compare_inquiry(sdev
, buffer
, buffer
, DV_LOOPS
)
853 != SPI_COMPARE_SUCCESS
) {
854 starget_printk(KERN_ERR
, starget
, "Domain Validation Initial Inquiry Failed\n");
855 /* FIXME: should probably offline the device here? */
859 if (!spi_support_wide(starget
)) {
860 spi_max_width(starget
) = 0;
865 if (i
->f
->set_width
&& max_width
) {
866 i
->f
->set_width(starget
, 1);
868 if (spi_dv_device_compare_inquiry(sdev
, buffer
,
871 != SPI_COMPARE_SUCCESS
) {
872 starget_printk(KERN_ERR
, starget
, "Wide Transfers Fail\n");
873 i
->f
->set_width(starget
, 0);
874 /* Make sure we don't force wide back on by asking
875 * for a transfer period that requires it */
882 if (!i
->f
->set_period
)
885 /* device can't handle synchronous */
886 if (!spi_support_sync(starget
) && !spi_support_dt(starget
))
889 /* len == -1 is the signal that we need to ascertain the
890 * presence of an echo buffer before trying to use it. len ==
891 * 0 means we don't have an echo buffer */
896 /* now set up to the maximum */
897 DV_SET(offset
, spi_max_offset(starget
));
898 DV_SET(period
, min_period
);
900 /* try QAS requests; this should be harmless to set if the
901 * target supports it */
902 if (spi_support_qas(starget
) && spi_max_qas(starget
)) {
908 if (spi_support_ius(starget
) && spi_max_iu(starget
) &&
910 /* This u320 (or u640). Set IU transfers */
912 /* Then set the optional parameters */
922 /* now that we've done all this, actually check the bus
923 * signal type (if known). Some devices are stupid on
924 * a SE bus and still claim they can try LVD only settings */
925 if (i
->f
->get_signalling
)
926 i
->f
->get_signalling(shost
);
927 if (spi_signalling(shost
) == SPI_SIGNAL_SE
||
928 spi_signalling(shost
) == SPI_SIGNAL_HVD
||
929 !spi_support_dt(starget
)) {
934 /* set width last because it will pull all the other
935 * parameters down to required values */
936 DV_SET(width
, max_width
);
938 /* Do the read only INQUIRY tests */
939 spi_dv_retrain(sdev
, buffer
, buffer
+ sdev
->inquiry_len
,
940 spi_dv_device_compare_inquiry
);
941 /* See if we actually managed to negotiate and sustain DT */
943 i
->f
->get_dt(starget
);
945 /* see if the device has an echo buffer. If it does we can do
946 * the SPI pattern write tests. Because of some broken
947 * devices, we *only* try this on a device that has actually
950 if (len
== -1 && spi_dt(starget
))
951 len
= spi_dv_device_get_echo_buffer(sdev
, buffer
);
954 starget_printk(KERN_INFO
, starget
, "Domain Validation skipping write tests\n");
958 if (len
> SPI_MAX_ECHO_BUFFER_SIZE
) {
959 starget_printk(KERN_WARNING
, starget
, "Echo buffer size %d is too big, trimming to %d\n", len
, SPI_MAX_ECHO_BUFFER_SIZE
);
960 len
= SPI_MAX_ECHO_BUFFER_SIZE
;
963 if (spi_dv_retrain(sdev
, buffer
, buffer
+ len
,
964 spi_dv_device_echo_buffer
)
965 == SPI_COMPARE_SKIP_TEST
) {
966 /* OK, the stupid drive can't do a write echo buffer
967 * test after all, fall back to the read tests */
974 /** spi_dv_device - Do Domain Validation on the device
975 * @sdev: scsi device to validate
977 * Performs the domain validation on the given device in the
978 * current execution thread. Since DV operations may sleep,
979 * the current thread must have user context. Also no SCSI
980 * related locks that would deadlock I/O issued by the DV may
984 spi_dv_device(struct scsi_device
*sdev
)
986 struct scsi_target
*starget
= sdev
->sdev_target
;
988 const int len
= SPI_MAX_ECHO_BUFFER_SIZE
*2;
990 if (unlikely(scsi_device_get(sdev
)))
993 if (unlikely(spi_dv_in_progress(starget
)))
995 spi_dv_in_progress(starget
) = 1;
997 buffer
= kzalloc(len
, GFP_KERNEL
);
999 if (unlikely(!buffer
))
1002 /* We need to verify that the actual device will quiesce; the
1003 * later target quiesce is just a nice to have */
1004 if (unlikely(scsi_device_quiesce(sdev
)))
1007 scsi_target_quiesce(starget
);
1009 spi_dv_pending(starget
) = 1;
1010 mutex_lock(&spi_dv_mutex(starget
));
1012 starget_printk(KERN_INFO
, starget
, "Beginning Domain Validation\n");
1014 spi_dv_device_internal(sdev
, buffer
);
1016 starget_printk(KERN_INFO
, starget
, "Ending Domain Validation\n");
1018 mutex_unlock(&spi_dv_mutex(starget
));
1019 spi_dv_pending(starget
) = 0;
1021 scsi_target_resume(starget
);
1023 spi_initial_dv(starget
) = 1;
1028 spi_dv_in_progress(starget
) = 0;
1029 scsi_device_put(sdev
);
1031 EXPORT_SYMBOL(spi_dv_device
);
1033 struct work_queue_wrapper
{
1034 struct work_struct work
;
1035 struct scsi_device
*sdev
;
1039 spi_dv_device_work_wrapper(struct work_struct
*work
)
1041 struct work_queue_wrapper
*wqw
=
1042 container_of(work
, struct work_queue_wrapper
, work
);
1043 struct scsi_device
*sdev
= wqw
->sdev
;
1046 spi_dv_device(sdev
);
1047 spi_dv_pending(sdev
->sdev_target
) = 0;
1048 scsi_device_put(sdev
);
1053 * spi_schedule_dv_device - schedule domain validation to occur on the device
1054 * @sdev: The device to validate
1056 * Identical to spi_dv_device() above, except that the DV will be
1057 * scheduled to occur in a workqueue later. All memory allocations
1058 * are atomic, so may be called from any context including those holding
1062 spi_schedule_dv_device(struct scsi_device
*sdev
)
1064 struct work_queue_wrapper
*wqw
=
1065 kmalloc(sizeof(struct work_queue_wrapper
), GFP_ATOMIC
);
1070 if (unlikely(spi_dv_pending(sdev
->sdev_target
))) {
1074 /* Set pending early (dv_device doesn't check it, only sets it) */
1075 spi_dv_pending(sdev
->sdev_target
) = 1;
1076 if (unlikely(scsi_device_get(sdev
))) {
1078 spi_dv_pending(sdev
->sdev_target
) = 0;
1082 INIT_WORK(&wqw
->work
, spi_dv_device_work_wrapper
);
1085 schedule_work(&wqw
->work
);
1087 EXPORT_SYMBOL(spi_schedule_dv_device
);
1090 * spi_display_xfer_agreement - Print the current target transfer agreement
1091 * @starget: The target for which to display the agreement
1093 * Each SPI port is required to maintain a transfer agreement for each
1094 * other port on the bus. This function prints a one-line summary of
1095 * the current agreement; more detailed information is available in sysfs.
1097 void spi_display_xfer_agreement(struct scsi_target
*starget
)
1099 struct spi_transport_attrs
*tp
;
1100 tp
= (struct spi_transport_attrs
*)&starget
->starget_data
;
1102 if (tp
->offset
> 0 && tp
->period
> 0) {
1103 unsigned int picosec
, kb100
;
1104 char *scsi
= "FAST-?";
1107 if (tp
->period
<= SPI_STATIC_PPR
) {
1108 picosec
= ppr_to_ps
[tp
->period
];
1109 switch (tp
->period
) {
1110 case 7: scsi
= "FAST-320"; break;
1111 case 8: scsi
= "FAST-160"; break;
1112 case 9: scsi
= "FAST-80"; break;
1114 case 11: scsi
= "FAST-40"; break;
1115 case 12: scsi
= "FAST-20"; break;
1118 picosec
= tp
->period
* 4000;
1119 if (tp
->period
< 25)
1121 else if (tp
->period
< 50)
1127 kb100
= (10000000 + picosec
/ 2) / picosec
;
1130 sprint_frac(tmp
, picosec
, 1000);
1132 dev_info(&starget
->dev
,
1133 "%s %sSCSI %d.%d MB/s %s%s%s%s%s%s%s%s (%s ns, offset %d)\n",
1134 scsi
, tp
->width
? "WIDE " : "", kb100
/10, kb100
% 10,
1135 tp
->dt
? "DT" : "ST",
1136 tp
->iu
? " IU" : "",
1137 tp
->qas
? " QAS" : "",
1138 tp
->rd_strm
? " RDSTRM" : "",
1139 tp
->rti
? " RTI" : "",
1140 tp
->wr_flow
? " WRFLOW" : "",
1141 tp
->pcomp_en
? " PCOMP" : "",
1142 tp
->hold_mcs
? " HMCS" : "",
1145 dev_info(&starget
->dev
, "%sasynchronous\n",
1146 tp
->width
? "wide " : "");
1149 EXPORT_SYMBOL(spi_display_xfer_agreement
);
1151 int spi_populate_width_msg(unsigned char *msg
, int width
)
1153 msg
[0] = EXTENDED_MESSAGE
;
1155 msg
[2] = EXTENDED_WDTR
;
1159 EXPORT_SYMBOL_GPL(spi_populate_width_msg
);
1161 int spi_populate_sync_msg(unsigned char *msg
, int period
, int offset
)
1163 msg
[0] = EXTENDED_MESSAGE
;
1165 msg
[2] = EXTENDED_SDTR
;
1170 EXPORT_SYMBOL_GPL(spi_populate_sync_msg
);
1172 int spi_populate_ppr_msg(unsigned char *msg
, int period
, int offset
,
1173 int width
, int options
)
1175 msg
[0] = EXTENDED_MESSAGE
;
1177 msg
[2] = EXTENDED_PPR
;
1185 EXPORT_SYMBOL_GPL(spi_populate_ppr_msg
);
1187 #ifdef CONFIG_SCSI_CONSTANTS
1188 static const char * const one_byte_msgs
[] = {
1189 /* 0x00 */ "Task Complete", NULL
/* Extended Message */, "Save Pointers",
1190 /* 0x03 */ "Restore Pointers", "Disconnect", "Initiator Error",
1191 /* 0x06 */ "Abort Task Set", "Message Reject", "Nop", "Message Parity Error",
1192 /* 0x0a */ "Linked Command Complete", "Linked Command Complete w/flag",
1193 /* 0x0c */ "Target Reset", "Abort Task", "Clear Task Set",
1194 /* 0x0f */ "Initiate Recovery", "Release Recovery",
1195 /* 0x11 */ "Terminate Process", "Continue Task", "Target Transfer Disable",
1196 /* 0x14 */ NULL
, NULL
, "Clear ACA", "LUN Reset"
1199 static const char * const two_byte_msgs
[] = {
1200 /* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag",
1201 /* 0x23 */ "Ignore Wide Residue", "ACA"
1204 static const char * const extended_msgs
[] = {
1205 /* 0x00 */ "Modify Data Pointer", "Synchronous Data Transfer Request",
1206 /* 0x02 */ "SCSI-I Extended Identify", "Wide Data Transfer Request",
1207 /* 0x04 */ "Parallel Protocol Request", "Modify Bidirectional Data Pointer"
1210 static void print_nego(const unsigned char *msg
, int per
, int off
, int width
)
1214 period_to_str(buf
, msg
[per
]);
1215 printk("period = %s ns ", buf
);
1219 printk("offset = %d ", msg
[off
]);
1221 printk("width = %d ", 8 << msg
[width
]);
1224 static void print_ptr(const unsigned char *msg
, int msb
, const char *desc
)
1226 int ptr
= (msg
[msb
] << 24) | (msg
[msb
+1] << 16) | (msg
[msb
+2] << 8) |
1228 printk("%s = %d ", desc
, ptr
);
1231 int spi_print_msg(const unsigned char *msg
)
1234 if (msg
[0] == EXTENDED_MESSAGE
) {
1238 if (msg
[2] < ARRAY_SIZE(extended_msgs
))
1239 printk ("%s ", extended_msgs
[msg
[2]]);
1241 printk ("Extended Message, reserved code (0x%02x) ",
1244 case EXTENDED_MODIFY_DATA_POINTER
:
1245 print_ptr(msg
, 3, "pointer");
1248 print_nego(msg
, 3, 4, 0);
1251 print_nego(msg
, 0, 0, 3);
1254 print_nego(msg
, 3, 5, 6);
1256 case EXTENDED_MODIFY_BIDI_DATA_PTR
:
1257 print_ptr(msg
, 3, "out");
1258 print_ptr(msg
, 7, "in");
1261 for (i
= 2; i
< len
; ++i
)
1262 printk("%02x ", msg
[i
]);
1265 } else if (msg
[0] & 0x80) {
1266 printk("Identify disconnect %sallowed %s %d ",
1267 (msg
[0] & 0x40) ? "" : "not ",
1268 (msg
[0] & 0x20) ? "target routine" : "lun",
1270 /* Normal One byte */
1271 } else if (msg
[0] < 0x1f) {
1272 if (msg
[0] < ARRAY_SIZE(one_byte_msgs
) && one_byte_msgs
[msg
[0]])
1273 printk("%s ", one_byte_msgs
[msg
[0]]);
1275 printk("reserved (%02x) ", msg
[0]);
1276 } else if (msg
[0] == 0x55) {
1277 printk("QAS Request ");
1279 } else if (msg
[0] <= 0x2f) {
1280 if ((msg
[0] - 0x20) < ARRAY_SIZE(two_byte_msgs
))
1281 printk("%s %02x ", two_byte_msgs
[msg
[0] - 0x20],
1284 printk("reserved two byte (%02x %02x) ",
1288 printk("reserved ");
1291 EXPORT_SYMBOL(spi_print_msg
);
1293 #else /* ifndef CONFIG_SCSI_CONSTANTS */
1295 int spi_print_msg(const unsigned char *msg
)
1299 if (msg
[0] == EXTENDED_MESSAGE
) {
1303 for (i
= 0; i
< len
; ++i
)
1304 printk("%02x ", msg
[i
]);
1306 } else if (msg
[0] & 0x80) {
1307 printk("%02x ", msg
[0]);
1308 /* Normal One byte */
1309 } else if ((msg
[0] < 0x1f) || (msg
[0] == 0x55)) {
1310 printk("%02x ", msg
[0]);
1312 } else if (msg
[0] <= 0x2f) {
1313 printk("%02x %02x", msg
[0], msg
[1]);
1316 printk("%02x ", msg
[0]);
1319 EXPORT_SYMBOL(spi_print_msg
);
1320 #endif /* ! CONFIG_SCSI_CONSTANTS */
1322 static int spi_device_match(struct attribute_container
*cont
,
1325 struct scsi_device
*sdev
;
1326 struct Scsi_Host
*shost
;
1327 struct spi_internal
*i
;
1329 if (!scsi_is_sdev_device(dev
))
1332 sdev
= to_scsi_device(dev
);
1334 if (!shost
->transportt
|| shost
->transportt
->host_attrs
.ac
.class
1335 != &spi_host_class
.class)
1337 /* Note: this class has no device attributes, so it has
1338 * no per-HBA allocation and thus we don't need to distinguish
1339 * the attribute containers for the device */
1340 i
= to_spi_internal(shost
->transportt
);
1341 if (i
->f
->deny_binding
&& i
->f
->deny_binding(sdev
->sdev_target
))
1346 static int spi_target_match(struct attribute_container
*cont
,
1349 struct Scsi_Host
*shost
;
1350 struct scsi_target
*starget
;
1351 struct spi_internal
*i
;
1353 if (!scsi_is_target_device(dev
))
1356 shost
= dev_to_shost(dev
->parent
);
1357 if (!shost
->transportt
|| shost
->transportt
->host_attrs
.ac
.class
1358 != &spi_host_class
.class)
1361 i
= to_spi_internal(shost
->transportt
);
1362 starget
= to_scsi_target(dev
);
1364 if (i
->f
->deny_binding
&& i
->f
->deny_binding(starget
))
1367 return &i
->t
.target_attrs
.ac
== cont
;
1370 static DECLARE_TRANSPORT_CLASS(spi_transport_class
,
1372 spi_setup_transport_attrs
,
1374 spi_target_configure
);
1376 static DECLARE_ANON_TRANSPORT_CLASS(spi_device_class
,
1378 spi_device_configure
);
1380 static struct attribute
*host_attributes
[] = {
1381 &dev_attr_signalling
.attr
,
1385 static struct attribute_group host_attribute_group
= {
1386 .attrs
= host_attributes
,
1389 static int spi_host_configure(struct transport_container
*tc
,
1391 struct device
*cdev
)
1393 struct kobject
*kobj
= &cdev
->kobj
;
1394 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
1395 struct spi_internal
*si
= to_spi_internal(shost
->transportt
);
1396 struct attribute
*attr
= &dev_attr_signalling
.attr
;
1399 if (si
->f
->set_signalling
)
1400 rc
= sysfs_chmod_file(kobj
, attr
, attr
->mode
| S_IWUSR
);
1405 /* returns true if we should be showing the variable. Also
1406 * overloads the return by setting 1<<1 if the attribute should
1408 #define TARGET_ATTRIBUTE_HELPER(name) \
1409 (si->f->show_##name ? S_IRUGO : 0) | \
1410 (si->f->set_##name ? S_IWUSR : 0)
1412 static mode_t
target_attribute_is_visible(struct kobject
*kobj
,
1413 struct attribute
*attr
, int i
)
1415 struct device
*cdev
= container_of(kobj
, struct device
, kobj
);
1416 struct scsi_target
*starget
= transport_class_to_starget(cdev
);
1417 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
1418 struct spi_internal
*si
= to_spi_internal(shost
->transportt
);
1420 if (attr
== &dev_attr_period
.attr
&&
1421 spi_support_sync(starget
))
1422 return TARGET_ATTRIBUTE_HELPER(period
);
1423 else if (attr
== &dev_attr_min_period
.attr
&&
1424 spi_support_sync(starget
))
1425 return TARGET_ATTRIBUTE_HELPER(period
);
1426 else if (attr
== &dev_attr_offset
.attr
&&
1427 spi_support_sync(starget
))
1428 return TARGET_ATTRIBUTE_HELPER(offset
);
1429 else if (attr
== &dev_attr_max_offset
.attr
&&
1430 spi_support_sync(starget
))
1431 return TARGET_ATTRIBUTE_HELPER(offset
);
1432 else if (attr
== &dev_attr_width
.attr
&&
1433 spi_support_wide(starget
))
1434 return TARGET_ATTRIBUTE_HELPER(width
);
1435 else if (attr
== &dev_attr_max_width
.attr
&&
1436 spi_support_wide(starget
))
1437 return TARGET_ATTRIBUTE_HELPER(width
);
1438 else if (attr
== &dev_attr_iu
.attr
&&
1439 spi_support_ius(starget
))
1440 return TARGET_ATTRIBUTE_HELPER(iu
);
1441 else if (attr
== &dev_attr_max_iu
.attr
&&
1442 spi_support_ius(starget
))
1443 return TARGET_ATTRIBUTE_HELPER(iu
);
1444 else if (attr
== &dev_attr_dt
.attr
&&
1445 spi_support_dt(starget
))
1446 return TARGET_ATTRIBUTE_HELPER(dt
);
1447 else if (attr
== &dev_attr_qas
.attr
&&
1448 spi_support_qas(starget
))
1449 return TARGET_ATTRIBUTE_HELPER(qas
);
1450 else if (attr
== &dev_attr_max_qas
.attr
&&
1451 spi_support_qas(starget
))
1452 return TARGET_ATTRIBUTE_HELPER(qas
);
1453 else if (attr
== &dev_attr_wr_flow
.attr
&&
1454 spi_support_ius(starget
))
1455 return TARGET_ATTRIBUTE_HELPER(wr_flow
);
1456 else if (attr
== &dev_attr_rd_strm
.attr
&&
1457 spi_support_ius(starget
))
1458 return TARGET_ATTRIBUTE_HELPER(rd_strm
);
1459 else if (attr
== &dev_attr_rti
.attr
&&
1460 spi_support_ius(starget
))
1461 return TARGET_ATTRIBUTE_HELPER(rti
);
1462 else if (attr
== &dev_attr_pcomp_en
.attr
&&
1463 spi_support_ius(starget
))
1464 return TARGET_ATTRIBUTE_HELPER(pcomp_en
);
1465 else if (attr
== &dev_attr_hold_mcs
.attr
&&
1466 spi_support_ius(starget
))
1467 return TARGET_ATTRIBUTE_HELPER(hold_mcs
);
1468 else if (attr
== &dev_attr_revalidate
.attr
)
1474 static struct attribute
*target_attributes
[] = {
1475 &dev_attr_period
.attr
,
1476 &dev_attr_min_period
.attr
,
1477 &dev_attr_offset
.attr
,
1478 &dev_attr_max_offset
.attr
,
1479 &dev_attr_width
.attr
,
1480 &dev_attr_max_width
.attr
,
1482 &dev_attr_max_iu
.attr
,
1485 &dev_attr_max_qas
.attr
,
1486 &dev_attr_wr_flow
.attr
,
1487 &dev_attr_rd_strm
.attr
,
1489 &dev_attr_pcomp_en
.attr
,
1490 &dev_attr_hold_mcs
.attr
,
1491 &dev_attr_revalidate
.attr
,
1495 static struct attribute_group target_attribute_group
= {
1496 .attrs
= target_attributes
,
1497 .is_visible
= target_attribute_is_visible
,
1500 static int spi_target_configure(struct transport_container
*tc
,
1502 struct device
*cdev
)
1504 struct kobject
*kobj
= &cdev
->kobj
;
1506 /* force an update based on parameters read from the device */
1507 sysfs_update_group(kobj
, &target_attribute_group
);
1512 struct scsi_transport_template
*
1513 spi_attach_transport(struct spi_function_template
*ft
)
1515 struct spi_internal
*i
= kzalloc(sizeof(struct spi_internal
),
1521 i
->t
.target_attrs
.ac
.class = &spi_transport_class
.class;
1522 i
->t
.target_attrs
.ac
.grp
= &target_attribute_group
;
1523 i
->t
.target_attrs
.ac
.match
= spi_target_match
;
1524 transport_container_register(&i
->t
.target_attrs
);
1525 i
->t
.target_size
= sizeof(struct spi_transport_attrs
);
1526 i
->t
.host_attrs
.ac
.class = &spi_host_class
.class;
1527 i
->t
.host_attrs
.ac
.grp
= &host_attribute_group
;
1528 i
->t
.host_attrs
.ac
.match
= spi_host_match
;
1529 transport_container_register(&i
->t
.host_attrs
);
1530 i
->t
.host_size
= sizeof(struct spi_host_attrs
);
1535 EXPORT_SYMBOL(spi_attach_transport
);
1537 void spi_release_transport(struct scsi_transport_template
*t
)
1539 struct spi_internal
*i
= to_spi_internal(t
);
1541 transport_container_unregister(&i
->t
.target_attrs
);
1542 transport_container_unregister(&i
->t
.host_attrs
);
1546 EXPORT_SYMBOL(spi_release_transport
);
1548 static __init
int spi_transport_init(void)
1550 int error
= scsi_dev_info_add_list(SCSI_DEVINFO_SPI
,
1551 "SCSI Parallel Transport Class");
1555 for (i
= 0; spi_static_device_list
[i
].vendor
; i
++)
1556 scsi_dev_info_list_add_keyed(1, /* compatible */
1557 spi_static_device_list
[i
].vendor
,
1558 spi_static_device_list
[i
].model
,
1560 spi_static_device_list
[i
].flags
,
1564 error
= transport_class_register(&spi_transport_class
);
1567 error
= anon_transport_class_register(&spi_device_class
);
1568 return transport_class_register(&spi_host_class
);
1571 static void __exit
spi_transport_exit(void)
1573 transport_class_unregister(&spi_transport_class
);
1574 anon_transport_class_unregister(&spi_device_class
);
1575 transport_class_unregister(&spi_host_class
);
1576 scsi_dev_info_remove_list(SCSI_DEVINFO_SPI
);
1579 MODULE_AUTHOR("Martin Hicks");
1580 MODULE_DESCRIPTION("SPI Transport Attributes");
1581 MODULE_LICENSE("GPL");
1583 module_init(spi_transport_init
);
1584 module_exit(spi_transport_exit
);