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 <asm/semaphore.h>
27 #include <scsi/scsi.h>
28 #include "scsi_priv.h"
29 #include <scsi/scsi_device.h>
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_request.h>
32 #include <scsi/scsi_eh.h>
33 #include <scsi/scsi_transport.h>
34 #include <scsi/scsi_transport_spi.h>
36 #define SPI_PRINTK(x, l, f, a...) dev_printk(l, &(x)->dev, f , ##a)
38 #define SPI_NUM_ATTRS 13 /* increase this if you add attributes */
39 #define SPI_OTHER_ATTRS 1 /* Increase this if you add "always
41 #define SPI_HOST_ATTRS 1
43 #define SPI_MAX_ECHO_BUFFER_SIZE 4096
46 #define DV_TIMEOUT (10*HZ)
47 #define DV_RETRIES 3 /* should only need at most
50 /* Private data accessors (keep these out of the header file) */
51 #define spi_dv_pending(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_pending)
52 #define spi_dv_sem(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_sem)
55 struct scsi_transport_template t;
56 struct spi_function_template *f;
57 /* The actual attributes */
58 struct class_device_attribute private_attrs[SPI_NUM_ATTRS];
59 /* The array of null terminated pointers to attributes
60 * needed by scsi_sysfs.c */
61 struct class_device_attribute *attrs[SPI_NUM_ATTRS + SPI_OTHER_ATTRS + 1];
62 struct class_device_attribute private_host_attrs[SPI_HOST_ATTRS];
63 struct class_device_attribute *host_attrs[SPI_HOST_ATTRS + 1];
66 #define to_spi_internal(tmpl) container_of(tmpl, struct spi_internal, t)
68 static const int ppr_to_ps[] = {
69 /* The PPR values 0-6 are reserved, fill them in when
70 * the committee defines them */
85 /* The PPR values at which you calculate the period in ns by multiplying
87 #define SPI_STATIC_PPR 0x0c
89 static int sprint_frac(char *dest, int value, int denom)
91 int frac = value % denom;
92 int result = sprintf(dest, "%d", value / denom);
100 sprintf(dest + result, "%d", frac / denom);
105 dest[result++] = '\0';
109 /* Modification of scsi_wait_req that will clear UNIT ATTENTION conditions
110 * resulting from (likely) bus and device resets */
111 static void spi_wait_req(struct scsi_request *sreq, const void *cmd,
112 void *buffer, unsigned bufflen)
116 for(i = 0; i < DV_RETRIES; i++) {
117 sreq->sr_request->flags |= REQ_FAILFAST;
119 scsi_wait_req(sreq, cmd, buffer, bufflen,
120 DV_TIMEOUT, /* retries */ 1);
121 if (sreq->sr_result & DRIVER_SENSE) {
122 struct scsi_sense_hdr sshdr;
124 if (scsi_request_normalize_sense(sreq, &sshdr)
125 && sshdr.sense_key == UNIT_ATTENTION)
133 enum spi_signal_type value;
136 { SPI_SIGNAL_UNKNOWN, "unknown" },
137 { SPI_SIGNAL_SE, "SE" },
138 { SPI_SIGNAL_LVD, "LVD" },
139 { SPI_SIGNAL_HVD, "HVD" },
142 static inline const char *spi_signal_to_string(enum spi_signal_type type)
146 for (i = 0; i < sizeof(signal_types)/sizeof(signal_types[0]); i++) {
147 if (type == signal_types[i].value)
148 return signal_types[i].name;
152 static inline enum spi_signal_type spi_signal_to_value(const char *name)
156 for (i = 0; i < sizeof(signal_types)/sizeof(signal_types[0]); i++) {
157 len = strlen(signal_types[i].name);
158 if (strncmp(name, signal_types[i].name, len) == 0 &&
159 (name[len] == '\n' || name[len] == '\0'))
160 return signal_types[i].value;
162 return SPI_SIGNAL_UNKNOWN;
165 static int spi_host_setup(struct device *dev)
167 struct Scsi_Host *shost = dev_to_shost(dev);
169 spi_signalling(shost) = SPI_SIGNAL_UNKNOWN;
174 static DECLARE_TRANSPORT_CLASS(spi_host_class,
180 static int spi_host_match(struct attribute_container *cont,
183 struct Scsi_Host *shost;
184 struct spi_internal *i;
186 if (!scsi_is_host_device(dev))
189 shost = dev_to_shost(dev);
190 if (!shost->transportt || shost->transportt->host_attrs.ac.class
191 != &spi_host_class.class)
194 i = to_spi_internal(shost->transportt);
196 return &i->t.host_attrs.ac == cont;
199 static int spi_device_configure(struct device *dev)
201 struct scsi_device *sdev = to_scsi_device(dev);
202 struct scsi_target *starget = sdev->sdev_target;
204 /* Populate the target capability fields with the values
205 * gleaned from the device inquiry */
207 spi_support_sync(starget) = scsi_device_sync(sdev);
208 spi_support_wide(starget) = scsi_device_wide(sdev);
209 spi_support_dt(starget) = scsi_device_dt(sdev);
210 spi_support_dt_only(starget) = scsi_device_dt_only(sdev);
211 spi_support_ius(starget) = scsi_device_ius(sdev);
212 spi_support_qas(starget) = scsi_device_qas(sdev);
217 static int spi_setup_transport_attrs(struct device *dev)
219 struct scsi_target *starget = to_scsi_target(dev);
221 spi_period(starget) = -1; /* illegal value */
222 spi_min_period(starget) = 0;
223 spi_offset(starget) = 0; /* async */
224 spi_max_offset(starget) = 255;
225 spi_width(starget) = 0; /* narrow */
226 spi_max_width(starget) = 1;
227 spi_iu(starget) = 0; /* no IU */
228 spi_dt(starget) = 0; /* ST */
229 spi_qas(starget) = 0;
230 spi_wr_flow(starget) = 0;
231 spi_rd_strm(starget) = 0;
232 spi_rti(starget) = 0;
233 spi_pcomp_en(starget) = 0;
234 spi_dv_pending(starget) = 0;
235 spi_initial_dv(starget) = 0;
236 init_MUTEX(&spi_dv_sem(starget));
241 #define spi_transport_show_simple(field, format_string) \
244 show_spi_transport_##field(struct class_device *cdev, char *buf) \
246 struct scsi_target *starget = transport_class_to_starget(cdev); \
247 struct spi_transport_attrs *tp; \
249 tp = (struct spi_transport_attrs *)&starget->starget_data; \
250 return snprintf(buf, 20, format_string, tp->field); \
253 #define spi_transport_store_simple(field, format_string) \
256 store_spi_transport_##field(struct class_device *cdev, const char *buf, \
260 struct scsi_target *starget = transport_class_to_starget(cdev); \
261 struct spi_transport_attrs *tp; \
263 tp = (struct spi_transport_attrs *)&starget->starget_data; \
264 val = simple_strtoul(buf, NULL, 0); \
269 #define spi_transport_show_function(field, format_string) \
272 show_spi_transport_##field(struct class_device *cdev, char *buf) \
274 struct scsi_target *starget = transport_class_to_starget(cdev); \
275 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
276 struct spi_transport_attrs *tp; \
277 struct spi_internal *i = to_spi_internal(shost->transportt); \
278 tp = (struct spi_transport_attrs *)&starget->starget_data; \
279 if (i->f->get_##field) \
280 i->f->get_##field(starget); \
281 return snprintf(buf, 20, format_string, tp->field); \
284 #define spi_transport_store_function(field, format_string) \
286 store_spi_transport_##field(struct class_device *cdev, const char *buf, \
290 struct scsi_target *starget = transport_class_to_starget(cdev); \
291 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
292 struct spi_internal *i = to_spi_internal(shost->transportt); \
294 val = simple_strtoul(buf, NULL, 0); \
295 i->f->set_##field(starget, val); \
299 #define spi_transport_store_max(field, format_string) \
301 store_spi_transport_##field(struct class_device *cdev, const char *buf, \
305 struct scsi_target *starget = transport_class_to_starget(cdev); \
306 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
307 struct spi_internal *i = to_spi_internal(shost->transportt); \
308 struct spi_transport_attrs *tp \
309 = (struct spi_transport_attrs *)&starget->starget_data; \
311 val = simple_strtoul(buf, NULL, 0); \
312 if (val > tp->max_##field) \
313 val = tp->max_##field; \
314 i->f->set_##field(starget, val); \
318 #define spi_transport_rd_attr(field, format_string) \
319 spi_transport_show_function(field, format_string) \
320 spi_transport_store_function(field, format_string) \
321 static CLASS_DEVICE_ATTR(field, S_IRUGO | S_IWUSR, \
322 show_spi_transport_##field, \
323 store_spi_transport_##field);
325 #define spi_transport_simple_attr(field, format_string) \
326 spi_transport_show_simple(field, format_string) \
327 spi_transport_store_simple(field, format_string) \
328 static CLASS_DEVICE_ATTR(field, S_IRUGO | S_IWUSR, \
329 show_spi_transport_##field, \
330 store_spi_transport_##field);
332 #define spi_transport_max_attr(field, format_string) \
333 spi_transport_show_function(field, format_string) \
334 spi_transport_store_max(field, format_string) \
335 spi_transport_simple_attr(max_##field, format_string) \
336 static CLASS_DEVICE_ATTR(field, S_IRUGO | S_IWUSR, \
337 show_spi_transport_##field, \
338 store_spi_transport_##field);
340 /* The Parallel SCSI Tranport Attributes: */
341 spi_transport_max_attr(offset, "%d\n");
342 spi_transport_max_attr(width, "%d\n");
343 spi_transport_rd_attr(iu, "%d\n");
344 spi_transport_rd_attr(dt, "%d\n");
345 spi_transport_rd_attr(qas, "%d\n");
346 spi_transport_rd_attr(wr_flow, "%d\n");
347 spi_transport_rd_attr(rd_strm, "%d\n");
348 spi_transport_rd_attr(rti, "%d\n");
349 spi_transport_rd_attr(pcomp_en, "%d\n");
352 store_spi_revalidate(struct class_device *cdev, const char *buf, size_t count)
354 struct scsi_target *starget = transport_class_to_starget(cdev);
356 /* FIXME: we're relying on an awful lot of device internals
357 * here. We really need a function to get the first available
359 struct device *dev = container_of(starget->dev.children.next, struct device, node);
360 struct scsi_device *sdev = to_scsi_device(dev);
364 static CLASS_DEVICE_ATTR(revalidate, S_IWUSR, NULL, store_spi_revalidate);
366 /* Translate the period into ns according to the current spec
367 * for SDTR/PPR messages */
369 show_spi_transport_period_helper(struct class_device *cdev, char *buf,
374 if (period < 0 || period > 0xff) {
376 } else if (period <= SPI_STATIC_PPR) {
377 picosec = ppr_to_ps[period];
379 picosec = period * 4000;
383 len = sprintf(buf, "reserved");
385 len = sprint_frac(buf, picosec, 1000);
394 store_spi_transport_period_helper(struct class_device *cdev, const char *buf,
395 size_t count, int *periodp)
397 int j, picosec, period = -1;
400 picosec = simple_strtoul(buf, &endp, 10) * 1000;
407 picosec += (*endp - '0') * mult;
412 for (j = 0; j <= SPI_STATIC_PPR; j++) {
413 if (ppr_to_ps[j] < picosec)
420 period = picosec / 4000;
431 show_spi_transport_period(struct class_device *cdev, char *buf)
433 struct scsi_target *starget = transport_class_to_starget(cdev);
434 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
435 struct spi_internal *i = to_spi_internal(shost->transportt);
436 struct spi_transport_attrs *tp =
437 (struct spi_transport_attrs *)&starget->starget_data;
439 if (i->f->get_period)
440 i->f->get_period(starget);
442 return show_spi_transport_period_helper(cdev, buf, tp->period);
446 store_spi_transport_period(struct class_device *cdev, const char *buf,
449 struct scsi_target *starget = transport_class_to_starget(cdev);
450 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
451 struct spi_internal *i = to_spi_internal(shost->transportt);
452 struct spi_transport_attrs *tp =
453 (struct spi_transport_attrs *)&starget->starget_data;
456 retval = store_spi_transport_period_helper(cdev, buf, count, &period);
458 if (period < tp->min_period)
459 period = tp->min_period;
461 i->f->set_period(starget, period);
466 static CLASS_DEVICE_ATTR(period, S_IRUGO | S_IWUSR,
467 show_spi_transport_period,
468 store_spi_transport_period);
471 show_spi_transport_min_period(struct class_device *cdev, char *buf)
473 struct scsi_target *starget = transport_class_to_starget(cdev);
474 struct spi_transport_attrs *tp =
475 (struct spi_transport_attrs *)&starget->starget_data;
477 return show_spi_transport_period_helper(cdev, buf, tp->min_period);
481 store_spi_transport_min_period(struct class_device *cdev, const char *buf,
484 struct scsi_target *starget = transport_class_to_starget(cdev);
485 struct spi_transport_attrs *tp =
486 (struct spi_transport_attrs *)&starget->starget_data;
488 return store_spi_transport_period_helper(cdev, buf, count,
493 static CLASS_DEVICE_ATTR(min_period, S_IRUGO | S_IWUSR,
494 show_spi_transport_min_period,
495 store_spi_transport_min_period);
498 static ssize_t show_spi_host_signalling(struct class_device *cdev, char *buf)
500 struct Scsi_Host *shost = transport_class_to_shost(cdev);
501 struct spi_internal *i = to_spi_internal(shost->transportt);
503 if (i->f->get_signalling)
504 i->f->get_signalling(shost);
506 return sprintf(buf, "%s\n", spi_signal_to_string(spi_signalling(shost)));
508 static ssize_t store_spi_host_signalling(struct class_device *cdev,
509 const char *buf, size_t count)
511 struct Scsi_Host *shost = transport_class_to_shost(cdev);
512 struct spi_internal *i = to_spi_internal(shost->transportt);
513 enum spi_signal_type type = spi_signal_to_value(buf);
515 if (type != SPI_SIGNAL_UNKNOWN)
516 i->f->set_signalling(shost, type);
520 static CLASS_DEVICE_ATTR(signalling, S_IRUGO | S_IWUSR,
521 show_spi_host_signalling,
522 store_spi_host_signalling);
524 #define DV_SET(x, y) \
526 i->f->set_##x(sdev->sdev_target, y)
528 enum spi_compare_returns {
531 SPI_COMPARE_SKIP_TEST,
535 /* This is for read/write Domain Validation: If the device supports
536 * an echo buffer, we do read/write tests to it */
537 static enum spi_compare_returns
538 spi_dv_device_echo_buffer(struct scsi_request *sreq, u8 *buffer,
539 u8 *ptr, const int retries)
541 struct scsi_device *sdev = sreq->sr_device;
542 int len = ptr - buffer;
544 unsigned int pattern = 0x0000ffff;
546 const char spi_write_buffer[] = {
547 WRITE_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
549 const char spi_read_buffer[] = {
550 READ_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
553 /* set up the pattern buffer. Doesn't matter if we spill
554 * slightly beyond since that's where the read buffer is */
555 for (j = 0; j < len; ) {
557 /* fill the buffer with counting (test a) */
558 for ( ; j < min(len, 32); j++)
561 /* fill the buffer with alternating words of 0x0 and
563 for ( ; j < min(len, k + 32); j += 2) {
564 u16 *word = (u16 *)&buffer[j];
566 *word = (j & 0x02) ? 0x0000 : 0xffff;
569 /* fill with crosstalk (alternating 0x5555 0xaaa)
571 for ( ; j < min(len, k + 32); j += 2) {
572 u16 *word = (u16 *)&buffer[j];
574 *word = (j & 0x02) ? 0x5555 : 0xaaaa;
577 /* fill with shifting bits (test d) */
578 for ( ; j < min(len, k + 32); j += 4) {
579 u32 *word = (unsigned int *)&buffer[j];
580 u32 roll = (pattern & 0x80000000) ? 1 : 0;
583 pattern = (pattern << 1) | roll;
585 /* don't bother with random data (test e) */
588 for (r = 0; r < retries; r++) {
589 sreq->sr_cmd_len = 0; /* wait_req to fill in */
590 sreq->sr_data_direction = DMA_TO_DEVICE;
591 spi_wait_req(sreq, spi_write_buffer, buffer, len);
592 if(sreq->sr_result || !scsi_device_online(sdev)) {
593 struct scsi_sense_hdr sshdr;
595 scsi_device_set_state(sdev, SDEV_QUIESCE);
596 if (scsi_request_normalize_sense(sreq, &sshdr)
597 && sshdr.sense_key == ILLEGAL_REQUEST
598 /* INVALID FIELD IN CDB */
599 && sshdr.asc == 0x24 && sshdr.ascq == 0x00)
600 /* This would mean that the drive lied
601 * to us about supporting an echo
602 * buffer (unfortunately some Western
603 * Digital drives do precisely this)
605 return SPI_COMPARE_SKIP_TEST;
608 SPI_PRINTK(sdev->sdev_target, KERN_ERR, "Write Buffer failure %x\n", sreq->sr_result);
609 return SPI_COMPARE_FAILURE;
613 sreq->sr_cmd_len = 0; /* wait_req to fill in */
614 sreq->sr_data_direction = DMA_FROM_DEVICE;
615 spi_wait_req(sreq, spi_read_buffer, ptr, len);
616 scsi_device_set_state(sdev, SDEV_QUIESCE);
618 if (memcmp(buffer, ptr, len) != 0)
619 return SPI_COMPARE_FAILURE;
621 return SPI_COMPARE_SUCCESS;
624 /* This is for the simplest form of Domain Validation: a read test
625 * on the inquiry data from the device */
626 static enum spi_compare_returns
627 spi_dv_device_compare_inquiry(struct scsi_request *sreq, u8 *buffer,
628 u8 *ptr, const int retries)
631 const int len = sreq->sr_device->inquiry_len;
632 struct scsi_device *sdev = sreq->sr_device;
633 const char spi_inquiry[] = {
634 INQUIRY, 0, 0, 0, len, 0
637 for (r = 0; r < retries; r++) {
638 sreq->sr_cmd_len = 0; /* wait_req to fill in */
639 sreq->sr_data_direction = DMA_FROM_DEVICE;
643 spi_wait_req(sreq, spi_inquiry, ptr, len);
645 if(sreq->sr_result || !scsi_device_online(sdev)) {
646 scsi_device_set_state(sdev, SDEV_QUIESCE);
647 return SPI_COMPARE_FAILURE;
650 /* If we don't have the inquiry data already, the
651 * first read gets it */
658 if (memcmp(buffer, ptr, len) != 0)
660 return SPI_COMPARE_FAILURE;
662 return SPI_COMPARE_SUCCESS;
665 static enum spi_compare_returns
666 spi_dv_retrain(struct scsi_request *sreq, u8 *buffer, u8 *ptr,
667 enum spi_compare_returns
668 (*compare_fn)(struct scsi_request *, u8 *, u8 *, int))
670 struct spi_internal *i = to_spi_internal(sreq->sr_host->transportt);
671 struct scsi_device *sdev = sreq->sr_device;
672 struct scsi_target *starget = sdev->sdev_target;
673 int period = 0, prevperiod = 0;
674 enum spi_compare_returns retval;
679 retval = compare_fn(sreq, buffer, ptr, DV_LOOPS);
681 if (retval == SPI_COMPARE_SUCCESS
682 || retval == SPI_COMPARE_SKIP_TEST)
685 /* OK, retrain, fallback */
687 i->f->get_iu(starget);
689 i->f->get_qas(starget);
690 if (i->f->get_period)
691 i->f->get_period(sdev->sdev_target);
693 /* Here's the fallback sequence; first try turning off
694 * IU, then QAS (if we can control them), then finally
695 * fall down the periods */
696 if (i->f->set_iu && spi_iu(starget)) {
697 SPI_PRINTK(starget, KERN_ERR, "Domain Validation Disabing Information Units\n");
699 } else if (i->f->set_qas && spi_qas(starget)) {
700 SPI_PRINTK(starget, KERN_ERR, "Domain Validation Disabing Quick Arbitration and Selection\n");
703 newperiod = spi_period(starget);
704 period = newperiod > period ? newperiod : period;
708 period += period >> 1;
710 if (unlikely(period > 0xff || period == prevperiod)) {
711 /* Total failure; set to async and return */
712 SPI_PRINTK(starget, KERN_ERR, "Domain Validation Failure, dropping back to Asynchronous\n");
714 return SPI_COMPARE_FAILURE;
716 SPI_PRINTK(starget, KERN_ERR, "Domain Validation detected failure, dropping back\n");
717 DV_SET(period, period);
725 spi_dv_device_get_echo_buffer(struct scsi_request *sreq, u8 *buffer)
729 /* first off do a test unit ready. This can error out
730 * because of reservations or some other reason. If it
731 * fails, the device won't let us write to the echo buffer
732 * so just return failure */
734 const char spi_test_unit_ready[] = {
735 TEST_UNIT_READY, 0, 0, 0, 0, 0
738 const char spi_read_buffer_descriptor[] = {
739 READ_BUFFER, 0x0b, 0, 0, 0, 0, 0, 0, 4, 0
743 sreq->sr_cmd_len = 0;
744 sreq->sr_data_direction = DMA_NONE;
746 /* We send a set of three TURs to clear any outstanding
747 * unit attention conditions if they exist (Otherwise the
748 * buffer tests won't be happy). If the TUR still fails
749 * (reservation conflict, device not ready, etc) just
750 * skip the write tests */
752 spi_wait_req(sreq, spi_test_unit_ready, NULL, 0);
754 if(sreq->sr_result) {
763 sreq->sr_cmd_len = 0;
764 sreq->sr_data_direction = DMA_FROM_DEVICE;
766 spi_wait_req(sreq, spi_read_buffer_descriptor, buffer, 4);
769 /* Device has no echo buffer */
772 return buffer[3] + ((buffer[2] & 0x1f) << 8);
776 spi_dv_device_internal(struct scsi_request *sreq, u8 *buffer)
778 struct spi_internal *i = to_spi_internal(sreq->sr_host->transportt);
779 struct scsi_device *sdev = sreq->sr_device;
780 struct scsi_target *starget = sdev->sdev_target;
781 int len = sdev->inquiry_len;
782 /* first set us up for narrow async */
786 if (spi_dv_device_compare_inquiry(sreq, buffer, buffer, DV_LOOPS)
787 != SPI_COMPARE_SUCCESS) {
788 SPI_PRINTK(starget, KERN_ERR, "Domain Validation Initial Inquiry Failed\n");
789 /* FIXME: should probably offline the device here? */
794 if (i->f->set_width && spi_max_width(starget) && sdev->wdtr) {
795 i->f->set_width(starget, 1);
797 if (spi_dv_device_compare_inquiry(sreq, buffer,
800 != SPI_COMPARE_SUCCESS) {
801 SPI_PRINTK(starget, KERN_ERR, "Wide Transfers Fail\n");
802 i->f->set_width(starget, 0);
806 if (!i->f->set_period)
809 /* device can't handle synchronous */
810 if (!sdev->ppr && !sdev->sdtr)
813 /* see if the device has an echo buffer. If it does we can
814 * do the SPI pattern write tests */
818 len = spi_dv_device_get_echo_buffer(sreq, buffer);
822 /* now set up to the maximum */
823 DV_SET(offset, spi_max_offset(starget));
824 DV_SET(period, spi_min_period(starget));
825 /* try QAS requests; this should be harmless to set if the
826 * target supports it */
828 /* Also try IU transfers */
830 if (spi_min_period(starget) < 9) {
831 /* This u320 (or u640). Ignore the coupled parameters
832 * like DT and IU, but set the optional ones */
836 if (spi_min_period(starget) == 8)
841 SPI_PRINTK(starget, KERN_INFO, "Domain Validation skipping write tests\n");
842 spi_dv_retrain(sreq, buffer, buffer + len,
843 spi_dv_device_compare_inquiry);
847 if (len > SPI_MAX_ECHO_BUFFER_SIZE) {
848 SPI_PRINTK(starget, KERN_WARNING, "Echo buffer size %d is too big, trimming to %d\n", len, SPI_MAX_ECHO_BUFFER_SIZE);
849 len = SPI_MAX_ECHO_BUFFER_SIZE;
852 if (spi_dv_retrain(sreq, buffer, buffer + len,
853 spi_dv_device_echo_buffer)
854 == SPI_COMPARE_SKIP_TEST) {
855 /* OK, the stupid drive can't do a write echo buffer
856 * test after all, fall back to the read tests */
863 /** spi_dv_device - Do Domain Validation on the device
864 * @sdev: scsi device to validate
866 * Performs the domain validation on the given device in the
867 * current execution thread. Since DV operations may sleep,
868 * the current thread must have user context. Also no SCSI
869 * related locks that would deadlock I/O issued by the DV may
873 spi_dv_device(struct scsi_device *sdev)
875 struct scsi_request *sreq = scsi_allocate_request(sdev, GFP_KERNEL);
876 struct scsi_target *starget = sdev->sdev_target;
878 const int len = SPI_MAX_ECHO_BUFFER_SIZE*2;
883 if (unlikely(scsi_device_get(sdev)))
886 buffer = kmalloc(len, GFP_KERNEL);
888 if (unlikely(!buffer))
891 memset(buffer, 0, len);
893 /* We need to verify that the actual device will quiesce; the
894 * later target quiesce is just a nice to have */
895 if (unlikely(scsi_device_quiesce(sdev)))
898 scsi_target_quiesce(starget);
900 spi_dv_pending(starget) = 1;
901 down(&spi_dv_sem(starget));
903 SPI_PRINTK(starget, KERN_INFO, "Beginning Domain Validation\n");
905 spi_dv_device_internal(sreq, buffer);
907 SPI_PRINTK(starget, KERN_INFO, "Ending Domain Validation\n");
909 up(&spi_dv_sem(starget));
910 spi_dv_pending(starget) = 0;
912 scsi_target_resume(starget);
914 spi_initial_dv(starget) = 1;
919 scsi_device_put(sdev);
921 scsi_release_request(sreq);
923 EXPORT_SYMBOL(spi_dv_device);
925 struct work_queue_wrapper {
926 struct work_struct work;
927 struct scsi_device *sdev;
931 spi_dv_device_work_wrapper(void *data)
933 struct work_queue_wrapper *wqw = (struct work_queue_wrapper *)data;
934 struct scsi_device *sdev = wqw->sdev;
938 spi_dv_pending(sdev->sdev_target) = 0;
939 scsi_device_put(sdev);
944 * spi_schedule_dv_device - schedule domain validation to occur on the device
945 * @sdev: The device to validate
947 * Identical to spi_dv_device() above, except that the DV will be
948 * scheduled to occur in a workqueue later. All memory allocations
949 * are atomic, so may be called from any context including those holding
953 spi_schedule_dv_device(struct scsi_device *sdev)
955 struct work_queue_wrapper *wqw =
956 kmalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC);
961 if (unlikely(spi_dv_pending(sdev->sdev_target))) {
965 /* Set pending early (dv_device doesn't check it, only sets it) */
966 spi_dv_pending(sdev->sdev_target) = 1;
967 if (unlikely(scsi_device_get(sdev))) {
969 spi_dv_pending(sdev->sdev_target) = 0;
973 INIT_WORK(&wqw->work, spi_dv_device_work_wrapper, wqw);
976 schedule_work(&wqw->work);
978 EXPORT_SYMBOL(spi_schedule_dv_device);
981 * spi_display_xfer_agreement - Print the current target transfer agreement
982 * @starget: The target for which to display the agreement
984 * Each SPI port is required to maintain a transfer agreement for each
985 * other port on the bus. This function prints a one-line summary of
986 * the current agreement; more detailed information is available in sysfs.
988 void spi_display_xfer_agreement(struct scsi_target *starget)
990 struct spi_transport_attrs *tp;
991 tp = (struct spi_transport_attrs *)&starget->starget_data;
993 if (tp->offset > 0 && tp->period > 0) {
994 unsigned int picosec, kb100;
995 char *scsi = "FAST-?";
998 if (tp->period <= SPI_STATIC_PPR) {
999 picosec = ppr_to_ps[tp->period];
1000 switch (tp->period) {
1001 case 7: scsi = "FAST-320"; break;
1002 case 8: scsi = "FAST-160"; break;
1003 case 9: scsi = "FAST-80"; break;
1005 case 11: scsi = "FAST-40"; break;
1006 case 12: scsi = "FAST-20"; break;
1009 picosec = tp->period * 4000;
1010 if (tp->period < 25)
1012 else if (tp->period < 50)
1018 kb100 = (10000000 + picosec / 2) / picosec;
1021 sprint_frac(tmp, picosec, 1000);
1023 dev_info(&starget->dev,
1024 "%s %sSCSI %d.%d MB/s %s%s%s (%s ns, offset %d)\n",
1025 scsi, tp->width ? "WIDE " : "", kb100/10, kb100 % 10,
1026 tp->dt ? "DT" : "ST", tp->iu ? " IU" : "",
1027 tp->qas ? " QAS" : "", tmp, tp->offset);
1029 dev_info(&starget->dev, "%sasynchronous.\n",
1030 tp->width ? "wide " : "");
1033 EXPORT_SYMBOL(spi_display_xfer_agreement);
1035 #define SETUP_ATTRIBUTE(field) \
1036 i->private_attrs[count] = class_device_attr_##field; \
1037 if (!i->f->set_##field) { \
1038 i->private_attrs[count].attr.mode = S_IRUGO; \
1039 i->private_attrs[count].store = NULL; \
1041 i->attrs[count] = &i->private_attrs[count]; \
1042 if (i->f->show_##field) \
1045 #define SETUP_RELATED_ATTRIBUTE(field, rel_field) \
1046 i->private_attrs[count] = class_device_attr_##field; \
1047 if (!i->f->set_##rel_field) { \
1048 i->private_attrs[count].attr.mode = S_IRUGO; \
1049 i->private_attrs[count].store = NULL; \
1051 i->attrs[count] = &i->private_attrs[count]; \
1052 if (i->f->show_##rel_field) \
1055 #define SETUP_HOST_ATTRIBUTE(field) \
1056 i->private_host_attrs[count] = class_device_attr_##field; \
1057 if (!i->f->set_##field) { \
1058 i->private_host_attrs[count].attr.mode = S_IRUGO; \
1059 i->private_host_attrs[count].store = NULL; \
1061 i->host_attrs[count] = &i->private_host_attrs[count]; \
1064 static int spi_device_match(struct attribute_container *cont,
1067 struct scsi_device *sdev;
1068 struct Scsi_Host *shost;
1070 if (!scsi_is_sdev_device(dev))
1073 sdev = to_scsi_device(dev);
1075 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1076 != &spi_host_class.class)
1078 /* Note: this class has no device attributes, so it has
1079 * no per-HBA allocation and thus we don't need to distinguish
1080 * the attribute containers for the device */
1084 static int spi_target_match(struct attribute_container *cont,
1087 struct Scsi_Host *shost;
1088 struct spi_internal *i;
1090 if (!scsi_is_target_device(dev))
1093 shost = dev_to_shost(dev->parent);
1094 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1095 != &spi_host_class.class)
1098 i = to_spi_internal(shost->transportt);
1100 return &i->t.target_attrs.ac == cont;
1103 static DECLARE_TRANSPORT_CLASS(spi_transport_class,
1105 spi_setup_transport_attrs,
1109 static DECLARE_ANON_TRANSPORT_CLASS(spi_device_class,
1111 spi_device_configure);
1113 struct scsi_transport_template *
1114 spi_attach_transport(struct spi_function_template *ft)
1116 struct spi_internal *i = kmalloc(sizeof(struct spi_internal),
1122 memset(i, 0, sizeof(struct spi_internal));
1125 i->t.target_attrs.ac.class = &spi_transport_class.class;
1126 i->t.target_attrs.ac.attrs = &i->attrs[0];
1127 i->t.target_attrs.ac.match = spi_target_match;
1128 transport_container_register(&i->t.target_attrs);
1129 i->t.target_size = sizeof(struct spi_transport_attrs);
1130 i->t.host_attrs.ac.class = &spi_host_class.class;
1131 i->t.host_attrs.ac.attrs = &i->host_attrs[0];
1132 i->t.host_attrs.ac.match = spi_host_match;
1133 transport_container_register(&i->t.host_attrs);
1134 i->t.host_size = sizeof(struct spi_host_attrs);
1137 SETUP_ATTRIBUTE(period);
1138 SETUP_RELATED_ATTRIBUTE(min_period, period);
1139 SETUP_ATTRIBUTE(offset);
1140 SETUP_RELATED_ATTRIBUTE(max_offset, offset);
1141 SETUP_ATTRIBUTE(width);
1142 SETUP_RELATED_ATTRIBUTE(max_width, width);
1143 SETUP_ATTRIBUTE(iu);
1144 SETUP_ATTRIBUTE(dt);
1145 SETUP_ATTRIBUTE(qas);
1146 SETUP_ATTRIBUTE(wr_flow);
1147 SETUP_ATTRIBUTE(rd_strm);
1148 SETUP_ATTRIBUTE(rti);
1149 SETUP_ATTRIBUTE(pcomp_en);
1151 /* if you add an attribute but forget to increase SPI_NUM_ATTRS
1152 * this bug will trigger */
1153 BUG_ON(count > SPI_NUM_ATTRS);
1155 i->attrs[count++] = &class_device_attr_revalidate;
1157 i->attrs[count] = NULL;
1160 SETUP_HOST_ATTRIBUTE(signalling);
1162 BUG_ON(count > SPI_HOST_ATTRS);
1164 i->host_attrs[count] = NULL;
1168 EXPORT_SYMBOL(spi_attach_transport);
1170 void spi_release_transport(struct scsi_transport_template *t)
1172 struct spi_internal *i = to_spi_internal(t);
1174 transport_container_unregister(&i->t.target_attrs);
1175 transport_container_unregister(&i->t.host_attrs);
1179 EXPORT_SYMBOL(spi_release_transport);
1181 static __init int spi_transport_init(void)
1183 int error = transport_class_register(&spi_transport_class);
1186 error = anon_transport_class_register(&spi_device_class);
1187 return transport_class_register(&spi_host_class);
1190 static void __exit spi_transport_exit(void)
1192 transport_class_unregister(&spi_transport_class);
1193 anon_transport_class_unregister(&spi_device_class);
1194 transport_class_unregister(&spi_host_class);
1197 MODULE_AUTHOR("Martin Hicks");
1198 MODULE_DESCRIPTION("SPI Transport Attributes");
1199 MODULE_LICENSE("GPL");
1201 module_init(spi_transport_init);
1202 module_exit(spi_transport_exit);