]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/scsi_transport_spi.c
[SCSI] sysfs: add filter function to groups
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / scsi_transport_spi.c
CommitLineData
1da177e4
LT
1/*
2 * Parallel SCSI (SPI) transport specific attributes exported to sysfs.
3 *
4 * Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
5 * Copyright (c) 2004, 2005 James Bottomley <James.Bottomley@SteelEye.com>
6 *
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.
11 *
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.
16 *
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
20 */
21#include <linux/ctype.h>
22#include <linux/init.h>
23#include <linux/module.h>
24#include <linux/workqueue.h>
949bf797 25#include <linux/blkdev.h>
d158d261 26#include <linux/mutex.h>
1da177e4
LT
27#include <scsi/scsi.h>
28#include "scsi_priv.h"
29#include <scsi/scsi_device.h>
30#include <scsi/scsi_host.h>
33aa687d 31#include <scsi/scsi_cmnd.h>
1da177e4
LT
32#include <scsi/scsi_eh.h>
33#include <scsi/scsi_transport.h>
34#include <scsi/scsi_transport_spi.h>
35
d872ebe4 36#define SPI_NUM_ATTRS 14 /* increase this if you add attributes */
1da177e4
LT
37#define SPI_OTHER_ATTRS 1 /* Increase this if you add "always
38 * on" attributes */
39#define SPI_HOST_ATTRS 1
40
41#define SPI_MAX_ECHO_BUFFER_SIZE 4096
42
949bf797
JB
43#define DV_LOOPS 3
44#define DV_TIMEOUT (10*HZ)
45#define DV_RETRIES 3 /* should only need at most
46 * two cc/ua clears */
47
1da177e4 48/* Private data accessors (keep these out of the header file) */
dfdc58ba 49#define spi_dv_in_progress(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_in_progress)
d158d261 50#define spi_dv_mutex(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_mutex)
1da177e4
LT
51
52struct spi_internal {
53 struct scsi_transport_template t;
54 struct spi_function_template *f;
55 /* The actual attributes */
56 struct class_device_attribute private_attrs[SPI_NUM_ATTRS];
57 /* The array of null terminated pointers to attributes
58 * needed by scsi_sysfs.c */
59 struct class_device_attribute *attrs[SPI_NUM_ATTRS + SPI_OTHER_ATTRS + 1];
60 struct class_device_attribute private_host_attrs[SPI_HOST_ATTRS];
61 struct class_device_attribute *host_attrs[SPI_HOST_ATTRS + 1];
62};
63
64#define to_spi_internal(tmpl) container_of(tmpl, struct spi_internal, t)
65
66static const int ppr_to_ps[] = {
67 /* The PPR values 0-6 are reserved, fill them in when
68 * the committee defines them */
69 -1, /* 0x00 */
70 -1, /* 0x01 */
71 -1, /* 0x02 */
72 -1, /* 0x03 */
73 -1, /* 0x04 */
74 -1, /* 0x05 */
75 -1, /* 0x06 */
76 3125, /* 0x07 */
77 6250, /* 0x08 */
78 12500, /* 0x09 */
79 25000, /* 0x0a */
80 30300, /* 0x0b */
81 50000, /* 0x0c */
82};
83/* The PPR values at which you calculate the period in ns by multiplying
84 * by 4 */
85#define SPI_STATIC_PPR 0x0c
86
87static int sprint_frac(char *dest, int value, int denom)
88{
89 int frac = value % denom;
90 int result = sprintf(dest, "%d", value / denom);
91
92 if (frac == 0)
93 return result;
94 dest[result++] = '.';
95
96 do {
97 denom /= 10;
98 sprintf(dest + result, "%d", frac / denom);
99 result++;
100 frac %= denom;
101 } while (frac);
102
103 dest[result++] = '\0';
104 return result;
105}
106
33aa687d
JB
107static int spi_execute(struct scsi_device *sdev, const void *cmd,
108 enum dma_data_direction dir,
109 void *buffer, unsigned bufflen,
110 struct scsi_sense_hdr *sshdr)
949bf797 111{
33aa687d
JB
112 int i, result;
113 unsigned char sense[SCSI_SENSE_BUFFERSIZE];
949bf797
JB
114
115 for(i = 0; i < DV_RETRIES; i++) {
33aa687d
JB
116 result = scsi_execute(sdev, cmd, dir, buffer, bufflen,
117 sense, DV_TIMEOUT, /* retries */ 1,
118 REQ_FAILFAST);
119 if (result & DRIVER_SENSE) {
120 struct scsi_sense_hdr sshdr_tmp;
121 if (!sshdr)
122 sshdr = &sshdr_tmp;
123
4ed381ee 124 if (scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE,
33aa687d
JB
125 sshdr)
126 && sshdr->sense_key == UNIT_ATTENTION)
949bf797
JB
127 continue;
128 }
129 break;
130 }
33aa687d 131 return result;
949bf797
JB
132}
133
1da177e4
LT
134static struct {
135 enum spi_signal_type value;
136 char *name;
137} signal_types[] = {
138 { SPI_SIGNAL_UNKNOWN, "unknown" },
139 { SPI_SIGNAL_SE, "SE" },
140 { SPI_SIGNAL_LVD, "LVD" },
141 { SPI_SIGNAL_HVD, "HVD" },
142};
143
144static inline const char *spi_signal_to_string(enum spi_signal_type type)
145{
146 int i;
147
6391a113 148 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
1da177e4
LT
149 if (type == signal_types[i].value)
150 return signal_types[i].name;
151 }
152 return NULL;
153}
154static inline enum spi_signal_type spi_signal_to_value(const char *name)
155{
156 int i, len;
157
6391a113 158 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
1da177e4
LT
159 len = strlen(signal_types[i].name);
160 if (strncmp(name, signal_types[i].name, len) == 0 &&
161 (name[len] == '\n' || name[len] == '\0'))
162 return signal_types[i].value;
163 }
164 return SPI_SIGNAL_UNKNOWN;
165}
166
d0a7e574
JB
167static int spi_host_setup(struct transport_container *tc, struct device *dev,
168 struct class_device *cdev)
1da177e4
LT
169{
170 struct Scsi_Host *shost = dev_to_shost(dev);
171
172 spi_signalling(shost) = SPI_SIGNAL_UNKNOWN;
173
174 return 0;
175}
176
177static DECLARE_TRANSPORT_CLASS(spi_host_class,
178 "spi_host",
179 spi_host_setup,
180 NULL,
181 NULL);
182
183static int spi_host_match(struct attribute_container *cont,
184 struct device *dev)
185{
186 struct Scsi_Host *shost;
187 struct spi_internal *i;
188
189 if (!scsi_is_host_device(dev))
190 return 0;
191
192 shost = dev_to_shost(dev);
193 if (!shost->transportt || shost->transportt->host_attrs.ac.class
194 != &spi_host_class.class)
195 return 0;
196
197 i = to_spi_internal(shost->transportt);
198
199 return &i->t.host_attrs.ac == cont;
200}
201
d0a7e574
JB
202static int spi_device_configure(struct transport_container *tc,
203 struct device *dev,
204 struct class_device *cdev)
1da177e4
LT
205{
206 struct scsi_device *sdev = to_scsi_device(dev);
207 struct scsi_target *starget = sdev->sdev_target;
208
209 /* Populate the target capability fields with the values
210 * gleaned from the device inquiry */
211
212 spi_support_sync(starget) = scsi_device_sync(sdev);
213 spi_support_wide(starget) = scsi_device_wide(sdev);
214 spi_support_dt(starget) = scsi_device_dt(sdev);
215 spi_support_dt_only(starget) = scsi_device_dt_only(sdev);
216 spi_support_ius(starget) = scsi_device_ius(sdev);
217 spi_support_qas(starget) = scsi_device_qas(sdev);
218
219 return 0;
220}
221
d0a7e574
JB
222static int spi_setup_transport_attrs(struct transport_container *tc,
223 struct device *dev,
224 struct class_device *cdev)
1da177e4
LT
225{
226 struct scsi_target *starget = to_scsi_target(dev);
227
228 spi_period(starget) = -1; /* illegal value */
62a86129 229 spi_min_period(starget) = 0;
1da177e4 230 spi_offset(starget) = 0; /* async */
62a86129 231 spi_max_offset(starget) = 255;
1da177e4 232 spi_width(starget) = 0; /* narrow */
62a86129 233 spi_max_width(starget) = 1;
1da177e4
LT
234 spi_iu(starget) = 0; /* no IU */
235 spi_dt(starget) = 0; /* ST */
236 spi_qas(starget) = 0;
237 spi_wr_flow(starget) = 0;
238 spi_rd_strm(starget) = 0;
239 spi_rti(starget) = 0;
240 spi_pcomp_en(starget) = 0;
d872ebe4 241 spi_hold_mcs(starget) = 0;
1da177e4 242 spi_dv_pending(starget) = 0;
dfdc58ba 243 spi_dv_in_progress(starget) = 0;
1da177e4 244 spi_initial_dv(starget) = 0;
d158d261 245 mutex_init(&spi_dv_mutex(starget));
1da177e4
LT
246
247 return 0;
248}
249
62a86129
JB
250#define spi_transport_show_simple(field, format_string) \
251 \
252static ssize_t \
253show_spi_transport_##field(struct class_device *cdev, char *buf) \
254{ \
255 struct scsi_target *starget = transport_class_to_starget(cdev); \
256 struct spi_transport_attrs *tp; \
257 \
258 tp = (struct spi_transport_attrs *)&starget->starget_data; \
259 return snprintf(buf, 20, format_string, tp->field); \
260}
261
262#define spi_transport_store_simple(field, format_string) \
263 \
264static ssize_t \
265store_spi_transport_##field(struct class_device *cdev, const char *buf, \
266 size_t count) \
267{ \
268 int val; \
269 struct scsi_target *starget = transport_class_to_starget(cdev); \
270 struct spi_transport_attrs *tp; \
271 \
272 tp = (struct spi_transport_attrs *)&starget->starget_data; \
273 val = simple_strtoul(buf, NULL, 0); \
274 tp->field = val; \
275 return count; \
276}
277
1da177e4
LT
278#define spi_transport_show_function(field, format_string) \
279 \
280static ssize_t \
281show_spi_transport_##field(struct class_device *cdev, char *buf) \
282{ \
283 struct scsi_target *starget = transport_class_to_starget(cdev); \
284 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
285 struct spi_transport_attrs *tp; \
286 struct spi_internal *i = to_spi_internal(shost->transportt); \
287 tp = (struct spi_transport_attrs *)&starget->starget_data; \
288 if (i->f->get_##field) \
289 i->f->get_##field(starget); \
290 return snprintf(buf, 20, format_string, tp->field); \
291}
292
293#define spi_transport_store_function(field, format_string) \
294static ssize_t \
295store_spi_transport_##field(struct class_device *cdev, const char *buf, \
296 size_t count) \
297{ \
298 int val; \
299 struct scsi_target *starget = transport_class_to_starget(cdev); \
300 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
301 struct spi_internal *i = to_spi_internal(shost->transportt); \
302 \
303 val = simple_strtoul(buf, NULL, 0); \
62a86129
JB
304 i->f->set_##field(starget, val); \
305 return count; \
306}
307
308#define spi_transport_store_max(field, format_string) \
309static ssize_t \
310store_spi_transport_##field(struct class_device *cdev, const char *buf, \
311 size_t count) \
312{ \
313 int val; \
314 struct scsi_target *starget = transport_class_to_starget(cdev); \
315 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
316 struct spi_internal *i = to_spi_internal(shost->transportt); \
317 struct spi_transport_attrs *tp \
318 = (struct spi_transport_attrs *)&starget->starget_data; \
319 \
320 val = simple_strtoul(buf, NULL, 0); \
321 if (val > tp->max_##field) \
322 val = tp->max_##field; \
1da177e4
LT
323 i->f->set_##field(starget, val); \
324 return count; \
325}
326
327#define spi_transport_rd_attr(field, format_string) \
328 spi_transport_show_function(field, format_string) \
329 spi_transport_store_function(field, format_string) \
330static CLASS_DEVICE_ATTR(field, S_IRUGO | S_IWUSR, \
331 show_spi_transport_##field, \
332 store_spi_transport_##field);
333
62a86129
JB
334#define spi_transport_simple_attr(field, format_string) \
335 spi_transport_show_simple(field, format_string) \
336 spi_transport_store_simple(field, format_string) \
337static CLASS_DEVICE_ATTR(field, S_IRUGO | S_IWUSR, \
338 show_spi_transport_##field, \
339 store_spi_transport_##field);
340
341#define spi_transport_max_attr(field, format_string) \
342 spi_transport_show_function(field, format_string) \
343 spi_transport_store_max(field, format_string) \
344 spi_transport_simple_attr(max_##field, format_string) \
345static CLASS_DEVICE_ATTR(field, S_IRUGO | S_IWUSR, \
346 show_spi_transport_##field, \
347 store_spi_transport_##field);
348
1da177e4 349/* The Parallel SCSI Tranport Attributes: */
62a86129
JB
350spi_transport_max_attr(offset, "%d\n");
351spi_transport_max_attr(width, "%d\n");
1da177e4
LT
352spi_transport_rd_attr(iu, "%d\n");
353spi_transport_rd_attr(dt, "%d\n");
354spi_transport_rd_attr(qas, "%d\n");
355spi_transport_rd_attr(wr_flow, "%d\n");
356spi_transport_rd_attr(rd_strm, "%d\n");
357spi_transport_rd_attr(rti, "%d\n");
358spi_transport_rd_attr(pcomp_en, "%d\n");
d872ebe4 359spi_transport_rd_attr(hold_mcs, "%d\n");
1da177e4 360
9a881f16
GKH
361/* we only care about the first child device so we return 1 */
362static int child_iter(struct device *dev, void *data)
363{
364 struct scsi_device *sdev = to_scsi_device(dev);
365
366 spi_dv_device(sdev);
367 return 1;
368}
369
1da177e4
LT
370static ssize_t
371store_spi_revalidate(struct class_device *cdev, const char *buf, size_t count)
372{
373 struct scsi_target *starget = transport_class_to_starget(cdev);
374
9a881f16 375 device_for_each_child(&starget->dev, NULL, child_iter);
1da177e4
LT
376 return count;
377}
378static CLASS_DEVICE_ATTR(revalidate, S_IWUSR, NULL, store_spi_revalidate);
379
380/* Translate the period into ns according to the current spec
381 * for SDTR/PPR messages */
ef72582e 382static int period_to_str(char *buf, int period)
1da177e4 383{
1da177e4 384 int len, picosec;
1da177e4 385
62a86129 386 if (period < 0 || period > 0xff) {
1da177e4 387 picosec = -1;
62a86129
JB
388 } else if (period <= SPI_STATIC_PPR) {
389 picosec = ppr_to_ps[period];
1da177e4 390 } else {
62a86129 391 picosec = period * 4000;
1da177e4
LT
392 }
393
394 if (picosec == -1) {
395 len = sprintf(buf, "reserved");
396 } else {
397 len = sprint_frac(buf, picosec, 1000);
398 }
399
ef72582e
MW
400 return len;
401}
402
403static ssize_t
ea697e45 404show_spi_transport_period_helper(char *buf, int period)
ef72582e
MW
405{
406 int len = period_to_str(buf, period);
1da177e4
LT
407 buf[len++] = '\n';
408 buf[len] = '\0';
409 return len;
410}
411
412static ssize_t
62a86129
JB
413store_spi_transport_period_helper(struct class_device *cdev, const char *buf,
414 size_t count, int *periodp)
1da177e4 415{
1da177e4
LT
416 int j, picosec, period = -1;
417 char *endp;
418
419 picosec = simple_strtoul(buf, &endp, 10) * 1000;
420 if (*endp == '.') {
421 int mult = 100;
422 do {
423 endp++;
424 if (!isdigit(*endp))
425 break;
426 picosec += (*endp - '0') * mult;
427 mult /= 10;
428 } while (mult > 0);
429 }
430
431 for (j = 0; j <= SPI_STATIC_PPR; j++) {
432 if (ppr_to_ps[j] < picosec)
433 continue;
434 period = j;
435 break;
436 }
437
438 if (period == -1)
439 period = picosec / 4000;
440
441 if (period > 0xff)
442 period = 0xff;
443
62a86129 444 *periodp = period;
1da177e4
LT
445
446 return count;
447}
448
62a86129
JB
449static ssize_t
450show_spi_transport_period(struct class_device *cdev, char *buf)
451{
452 struct scsi_target *starget = transport_class_to_starget(cdev);
453 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
454 struct spi_internal *i = to_spi_internal(shost->transportt);
455 struct spi_transport_attrs *tp =
456 (struct spi_transport_attrs *)&starget->starget_data;
457
458 if (i->f->get_period)
459 i->f->get_period(starget);
460
ea697e45 461 return show_spi_transport_period_helper(buf, tp->period);
62a86129
JB
462}
463
464static ssize_t
465store_spi_transport_period(struct class_device *cdev, const char *buf,
466 size_t count)
467{
468 struct scsi_target *starget = transport_class_to_starget(cdev);
469 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
470 struct spi_internal *i = to_spi_internal(shost->transportt);
471 struct spi_transport_attrs *tp =
472 (struct spi_transport_attrs *)&starget->starget_data;
473 int period, retval;
474
475 retval = store_spi_transport_period_helper(cdev, buf, count, &period);
476
477 if (period < tp->min_period)
478 period = tp->min_period;
479
480 i->f->set_period(starget, period);
481
482 return retval;
483}
484
1da177e4
LT
485static CLASS_DEVICE_ATTR(period, S_IRUGO | S_IWUSR,
486 show_spi_transport_period,
487 store_spi_transport_period);
488
62a86129
JB
489static ssize_t
490show_spi_transport_min_period(struct class_device *cdev, char *buf)
491{
492 struct scsi_target *starget = transport_class_to_starget(cdev);
493 struct spi_transport_attrs *tp =
494 (struct spi_transport_attrs *)&starget->starget_data;
495
ea697e45 496 return show_spi_transport_period_helper(buf, tp->min_period);
62a86129
JB
497}
498
499static ssize_t
500store_spi_transport_min_period(struct class_device *cdev, const char *buf,
501 size_t count)
502{
503 struct scsi_target *starget = transport_class_to_starget(cdev);
504 struct spi_transport_attrs *tp =
505 (struct spi_transport_attrs *)&starget->starget_data;
506
507 return store_spi_transport_period_helper(cdev, buf, count,
508 &tp->min_period);
509}
510
511
512static CLASS_DEVICE_ATTR(min_period, S_IRUGO | S_IWUSR,
513 show_spi_transport_min_period,
514 store_spi_transport_min_period);
515
516
1da177e4
LT
517static ssize_t show_spi_host_signalling(struct class_device *cdev, char *buf)
518{
519 struct Scsi_Host *shost = transport_class_to_shost(cdev);
520 struct spi_internal *i = to_spi_internal(shost->transportt);
521
522 if (i->f->get_signalling)
523 i->f->get_signalling(shost);
524
525 return sprintf(buf, "%s\n", spi_signal_to_string(spi_signalling(shost)));
526}
527static ssize_t store_spi_host_signalling(struct class_device *cdev,
528 const char *buf, size_t count)
529{
530 struct Scsi_Host *shost = transport_class_to_shost(cdev);
531 struct spi_internal *i = to_spi_internal(shost->transportt);
532 enum spi_signal_type type = spi_signal_to_value(buf);
533
534 if (type != SPI_SIGNAL_UNKNOWN)
535 i->f->set_signalling(shost, type);
536
537 return count;
538}
539static CLASS_DEVICE_ATTR(signalling, S_IRUGO | S_IWUSR,
540 show_spi_host_signalling,
541 store_spi_host_signalling);
542
543#define DV_SET(x, y) \
544 if(i->f->set_##x) \
545 i->f->set_##x(sdev->sdev_target, y)
546
1da177e4
LT
547enum spi_compare_returns {
548 SPI_COMPARE_SUCCESS,
549 SPI_COMPARE_FAILURE,
550 SPI_COMPARE_SKIP_TEST,
551};
552
553
554/* This is for read/write Domain Validation: If the device supports
555 * an echo buffer, we do read/write tests to it */
556static enum spi_compare_returns
33aa687d 557spi_dv_device_echo_buffer(struct scsi_device *sdev, u8 *buffer,
1da177e4
LT
558 u8 *ptr, const int retries)
559{
1da177e4 560 int len = ptr - buffer;
33aa687d 561 int j, k, r, result;
1da177e4 562 unsigned int pattern = 0x0000ffff;
33aa687d 563 struct scsi_sense_hdr sshdr;
1da177e4
LT
564
565 const char spi_write_buffer[] = {
566 WRITE_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
567 };
568 const char spi_read_buffer[] = {
569 READ_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
570 };
571
572 /* set up the pattern buffer. Doesn't matter if we spill
573 * slightly beyond since that's where the read buffer is */
574 for (j = 0; j < len; ) {
575
576 /* fill the buffer with counting (test a) */
577 for ( ; j < min(len, 32); j++)
578 buffer[j] = j;
579 k = j;
580 /* fill the buffer with alternating words of 0x0 and
581 * 0xffff (test b) */
582 for ( ; j < min(len, k + 32); j += 2) {
583 u16 *word = (u16 *)&buffer[j];
584
585 *word = (j & 0x02) ? 0x0000 : 0xffff;
586 }
587 k = j;
588 /* fill with crosstalk (alternating 0x5555 0xaaa)
589 * (test c) */
590 for ( ; j < min(len, k + 32); j += 2) {
591 u16 *word = (u16 *)&buffer[j];
592
593 *word = (j & 0x02) ? 0x5555 : 0xaaaa;
594 }
595 k = j;
596 /* fill with shifting bits (test d) */
597 for ( ; j < min(len, k + 32); j += 4) {
598 u32 *word = (unsigned int *)&buffer[j];
599 u32 roll = (pattern & 0x80000000) ? 1 : 0;
600
601 *word = pattern;
602 pattern = (pattern << 1) | roll;
603 }
604 /* don't bother with random data (test e) */
605 }
606
607 for (r = 0; r < retries; r++) {
33aa687d
JB
608 result = spi_execute(sdev, spi_write_buffer, DMA_TO_DEVICE,
609 buffer, len, &sshdr);
610 if(result || !scsi_device_online(sdev)) {
1da177e4
LT
611
612 scsi_device_set_state(sdev, SDEV_QUIESCE);
33aa687d 613 if (scsi_sense_valid(&sshdr)
1da177e4
LT
614 && sshdr.sense_key == ILLEGAL_REQUEST
615 /* INVALID FIELD IN CDB */
616 && sshdr.asc == 0x24 && sshdr.ascq == 0x00)
617 /* This would mean that the drive lied
618 * to us about supporting an echo
619 * buffer (unfortunately some Western
620 * Digital drives do precisely this)
621 */
622 return SPI_COMPARE_SKIP_TEST;
623
624
9ccfc756 625 sdev_printk(KERN_ERR, sdev, "Write Buffer failure %x\n", result);
1da177e4
LT
626 return SPI_COMPARE_FAILURE;
627 }
628
629 memset(ptr, 0, len);
33aa687d
JB
630 spi_execute(sdev, spi_read_buffer, DMA_FROM_DEVICE,
631 ptr, len, NULL);
1da177e4
LT
632 scsi_device_set_state(sdev, SDEV_QUIESCE);
633
634 if (memcmp(buffer, ptr, len) != 0)
635 return SPI_COMPARE_FAILURE;
636 }
637 return SPI_COMPARE_SUCCESS;
638}
639
640/* This is for the simplest form of Domain Validation: a read test
641 * on the inquiry data from the device */
642static enum spi_compare_returns
33aa687d 643spi_dv_device_compare_inquiry(struct scsi_device *sdev, u8 *buffer,
1da177e4
LT
644 u8 *ptr, const int retries)
645{
33aa687d
JB
646 int r, result;
647 const int len = sdev->inquiry_len;
1da177e4
LT
648 const char spi_inquiry[] = {
649 INQUIRY, 0, 0, 0, len, 0
650 };
651
652 for (r = 0; r < retries; r++) {
1da177e4
LT
653 memset(ptr, 0, len);
654
33aa687d
JB
655 result = spi_execute(sdev, spi_inquiry, DMA_FROM_DEVICE,
656 ptr, len, NULL);
1da177e4 657
33aa687d 658 if(result || !scsi_device_online(sdev)) {
1da177e4
LT
659 scsi_device_set_state(sdev, SDEV_QUIESCE);
660 return SPI_COMPARE_FAILURE;
661 }
662
663 /* If we don't have the inquiry data already, the
664 * first read gets it */
665 if (ptr == buffer) {
666 ptr += len;
667 --r;
668 continue;
669 }
670
671 if (memcmp(buffer, ptr, len) != 0)
672 /* failure */
673 return SPI_COMPARE_FAILURE;
674 }
675 return SPI_COMPARE_SUCCESS;
676}
677
678static enum spi_compare_returns
33aa687d 679spi_dv_retrain(struct scsi_device *sdev, u8 *buffer, u8 *ptr,
1da177e4 680 enum spi_compare_returns
33aa687d 681 (*compare_fn)(struct scsi_device *, u8 *, u8 *, int))
1da177e4 682{
33aa687d 683 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
9a8bc9b8 684 struct scsi_target *starget = sdev->sdev_target;
1da177e4
LT
685 int period = 0, prevperiod = 0;
686 enum spi_compare_returns retval;
687
688
689 for (;;) {
690 int newperiod;
33aa687d 691 retval = compare_fn(sdev, buffer, ptr, DV_LOOPS);
1da177e4
LT
692
693 if (retval == SPI_COMPARE_SUCCESS
694 || retval == SPI_COMPARE_SKIP_TEST)
695 break;
696
697 /* OK, retrain, fallback */
9a8bc9b8
JB
698 if (i->f->get_iu)
699 i->f->get_iu(starget);
700 if (i->f->get_qas)
701 i->f->get_qas(starget);
1da177e4
LT
702 if (i->f->get_period)
703 i->f->get_period(sdev->sdev_target);
9a8bc9b8
JB
704
705 /* Here's the fallback sequence; first try turning off
706 * IU, then QAS (if we can control them), then finally
707 * fall down the periods */
708 if (i->f->set_iu && spi_iu(starget)) {
9ccfc756 709 starget_printk(KERN_ERR, starget, "Domain Validation Disabing Information Units\n");
9a8bc9b8
JB
710 DV_SET(iu, 0);
711 } else if (i->f->set_qas && spi_qas(starget)) {
9ccfc756 712 starget_printk(KERN_ERR, starget, "Domain Validation Disabing Quick Arbitration and Selection\n");
9a8bc9b8
JB
713 DV_SET(qas, 0);
714 } else {
715 newperiod = spi_period(starget);
716 period = newperiod > period ? newperiod : period;
717 if (period < 0x0d)
718 period++;
719 else
720 period += period >> 1;
721
722 if (unlikely(period > 0xff || period == prevperiod)) {
723 /* Total failure; set to async and return */
9ccfc756 724 starget_printk(KERN_ERR, starget, "Domain Validation Failure, dropping back to Asynchronous\n");
9a8bc9b8
JB
725 DV_SET(offset, 0);
726 return SPI_COMPARE_FAILURE;
727 }
9ccfc756 728 starget_printk(KERN_ERR, starget, "Domain Validation detected failure, dropping back\n");
9a8bc9b8
JB
729 DV_SET(period, period);
730 prevperiod = period;
1da177e4 731 }
1da177e4
LT
732 }
733 return retval;
734}
735
736static int
33aa687d 737spi_dv_device_get_echo_buffer(struct scsi_device *sdev, u8 *buffer)
1da177e4 738{
33aa687d 739 int l, result;
1da177e4
LT
740
741 /* first off do a test unit ready. This can error out
742 * because of reservations or some other reason. If it
743 * fails, the device won't let us write to the echo buffer
744 * so just return failure */
745
746 const char spi_test_unit_ready[] = {
747 TEST_UNIT_READY, 0, 0, 0, 0, 0
748 };
749
750 const char spi_read_buffer_descriptor[] = {
751 READ_BUFFER, 0x0b, 0, 0, 0, 0, 0, 0, 4, 0
752 };
753
754
1da177e4
LT
755 /* We send a set of three TURs to clear any outstanding
756 * unit attention conditions if they exist (Otherwise the
757 * buffer tests won't be happy). If the TUR still fails
758 * (reservation conflict, device not ready, etc) just
759 * skip the write tests */
760 for (l = 0; ; l++) {
33aa687d
JB
761 result = spi_execute(sdev, spi_test_unit_ready, DMA_NONE,
762 NULL, 0, NULL);
1da177e4 763
33aa687d 764 if(result) {
1da177e4
LT
765 if(l >= 3)
766 return 0;
767 } else {
768 /* TUR succeeded */
769 break;
770 }
771 }
772
33aa687d
JB
773 result = spi_execute(sdev, spi_read_buffer_descriptor,
774 DMA_FROM_DEVICE, buffer, 4, NULL);
1da177e4 775
33aa687d 776 if (result)
1da177e4
LT
777 /* Device has no echo buffer */
778 return 0;
779
780 return buffer[3] + ((buffer[2] & 0x1f) << 8);
781}
782
783static void
33aa687d 784spi_dv_device_internal(struct scsi_device *sdev, u8 *buffer)
1da177e4 785{
33aa687d 786 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
62a86129 787 struct scsi_target *starget = sdev->sdev_target;
60eef257 788 struct Scsi_Host *shost = sdev->host;
1da177e4 789 int len = sdev->inquiry_len;
2302827c
JB
790 int min_period = spi_min_period(starget);
791 int max_width = spi_max_width(starget);
1da177e4
LT
792 /* first set us up for narrow async */
793 DV_SET(offset, 0);
794 DV_SET(width, 0);
2302827c 795
33aa687d 796 if (spi_dv_device_compare_inquiry(sdev, buffer, buffer, DV_LOOPS)
1da177e4 797 != SPI_COMPARE_SUCCESS) {
9ccfc756 798 starget_printk(KERN_ERR, starget, "Domain Validation Initial Inquiry Failed\n");
1da177e4
LT
799 /* FIXME: should probably offline the device here? */
800 return;
801 }
802
2302827c
JB
803 if (!scsi_device_wide(sdev)) {
804 spi_max_width(starget) = 0;
805 max_width = 0;
806 }
807
1da177e4 808 /* test width */
2302827c 809 if (i->f->set_width && max_width) {
9a8bc9b8 810 i->f->set_width(starget, 1);
62a86129 811
33aa687d 812 if (spi_dv_device_compare_inquiry(sdev, buffer,
1da177e4
LT
813 buffer + len,
814 DV_LOOPS)
815 != SPI_COMPARE_SUCCESS) {
9ccfc756 816 starget_printk(KERN_ERR, starget, "Wide Transfers Fail\n");
9a8bc9b8 817 i->f->set_width(starget, 0);
2302827c
JB
818 /* Make sure we don't force wide back on by asking
819 * for a transfer period that requires it */
820 max_width = 0;
821 if (min_period < 10)
822 min_period = 10;
1da177e4
LT
823 }
824 }
825
826 if (!i->f->set_period)
827 return;
828
829 /* device can't handle synchronous */
eb1dd68b 830 if (!scsi_device_sync(sdev) && !scsi_device_dt(sdev))
1da177e4
LT
831 return;
832
349cd7cf
JB
833 /* len == -1 is the signal that we need to ascertain the
834 * presence of an echo buffer before trying to use it. len ==
835 * 0 means we don't have an echo buffer */
836 len = -1;
1da177e4
LT
837
838 retry:
839
840 /* now set up to the maximum */
62a86129 841 DV_SET(offset, spi_max_offset(starget));
2302827c
JB
842 DV_SET(period, min_period);
843
9a8bc9b8
JB
844 /* try QAS requests; this should be harmless to set if the
845 * target supports it */
dfdc58ba 846 if (scsi_device_qas(sdev)) {
eb1dd68b 847 DV_SET(qas, 1);
dfdc58ba
JB
848 } else {
849 DV_SET(qas, 0);
850 }
851
2302827c 852 if (scsi_device_ius(sdev) && min_period < 9) {
dfdc58ba 853 /* This u320 (or u640). Set IU transfers */
eb1dd68b 854 DV_SET(iu, 1);
dfdc58ba 855 /* Then set the optional parameters */
9a8bc9b8
JB
856 DV_SET(rd_strm, 1);
857 DV_SET(wr_flow, 1);
858 DV_SET(rti, 1);
2302827c 859 if (min_period == 8)
9a8bc9b8 860 DV_SET(pcomp_en, 1);
dfdc58ba
JB
861 } else {
862 DV_SET(iu, 0);
9a8bc9b8 863 }
dfdc58ba 864
60eef257
JB
865 /* now that we've done all this, actually check the bus
866 * signal type (if known). Some devices are stupid on
867 * a SE bus and still claim they can try LVD only settings */
868 if (i->f->get_signalling)
869 i->f->get_signalling(shost);
870 if (spi_signalling(shost) == SPI_SIGNAL_SE ||
dfdc58ba
JB
871 spi_signalling(shost) == SPI_SIGNAL_HVD ||
872 !scsi_device_dt(sdev)) {
60eef257 873 DV_SET(dt, 0);
dfdc58ba
JB
874 } else {
875 DV_SET(dt, 1);
876 }
2302827c
JB
877 /* set width last because it will pull all the other
878 * parameters down to required values */
879 DV_SET(width, max_width);
880
349cd7cf
JB
881 /* Do the read only INQUIRY tests */
882 spi_dv_retrain(sdev, buffer, buffer + sdev->inquiry_len,
883 spi_dv_device_compare_inquiry);
884 /* See if we actually managed to negotiate and sustain DT */
885 if (i->f->get_dt)
886 i->f->get_dt(starget);
887
888 /* see if the device has an echo buffer. If it does we can do
889 * the SPI pattern write tests. Because of some broken
890 * devices, we *only* try this on a device that has actually
891 * negotiated DT */
892
893 if (len == -1 && spi_dt(starget))
894 len = spi_dv_device_get_echo_buffer(sdev, buffer);
1da177e4 895
349cd7cf 896 if (len <= 0) {
9ccfc756 897 starget_printk(KERN_INFO, starget, "Domain Validation skipping write tests\n");
1da177e4
LT
898 return;
899 }
900
901 if (len > SPI_MAX_ECHO_BUFFER_SIZE) {
9ccfc756 902 starget_printk(KERN_WARNING, starget, "Echo buffer size %d is too big, trimming to %d\n", len, SPI_MAX_ECHO_BUFFER_SIZE);
1da177e4
LT
903 len = SPI_MAX_ECHO_BUFFER_SIZE;
904 }
905
33aa687d 906 if (spi_dv_retrain(sdev, buffer, buffer + len,
1da177e4
LT
907 spi_dv_device_echo_buffer)
908 == SPI_COMPARE_SKIP_TEST) {
909 /* OK, the stupid drive can't do a write echo buffer
910 * test after all, fall back to the read tests */
911 len = 0;
912 goto retry;
913 }
914}
915
916
917/** spi_dv_device - Do Domain Validation on the device
918 * @sdev: scsi device to validate
919 *
920 * Performs the domain validation on the given device in the
921 * current execution thread. Since DV operations may sleep,
922 * the current thread must have user context. Also no SCSI
923 * related locks that would deadlock I/O issued by the DV may
924 * be held.
925 */
926void
927spi_dv_device(struct scsi_device *sdev)
928{
1da177e4
LT
929 struct scsi_target *starget = sdev->sdev_target;
930 u8 *buffer;
931 const int len = SPI_MAX_ECHO_BUFFER_SIZE*2;
932
1da177e4 933 if (unlikely(scsi_device_get(sdev)))
33aa687d 934 return;
1da177e4 935
dfdc58ba
JB
936 if (unlikely(spi_dv_in_progress(starget)))
937 return;
938 spi_dv_in_progress(starget) = 1;
939
24669f75 940 buffer = kzalloc(len, GFP_KERNEL);
1da177e4
LT
941
942 if (unlikely(!buffer))
943 goto out_put;
944
1da177e4
LT
945 /* We need to verify that the actual device will quiesce; the
946 * later target quiesce is just a nice to have */
947 if (unlikely(scsi_device_quiesce(sdev)))
948 goto out_free;
949
950 scsi_target_quiesce(starget);
951
952 spi_dv_pending(starget) = 1;
d158d261 953 mutex_lock(&spi_dv_mutex(starget));
1da177e4 954
9ccfc756 955 starget_printk(KERN_INFO, starget, "Beginning Domain Validation\n");
1da177e4 956
33aa687d 957 spi_dv_device_internal(sdev, buffer);
1da177e4 958
9ccfc756 959 starget_printk(KERN_INFO, starget, "Ending Domain Validation\n");
1da177e4 960
d158d261 961 mutex_unlock(&spi_dv_mutex(starget));
1da177e4
LT
962 spi_dv_pending(starget) = 0;
963
964 scsi_target_resume(starget);
965
966 spi_initial_dv(starget) = 1;
967
968 out_free:
969 kfree(buffer);
970 out_put:
dfdc58ba 971 spi_dv_in_progress(starget) = 0;
1da177e4 972 scsi_device_put(sdev);
1da177e4
LT
973}
974EXPORT_SYMBOL(spi_dv_device);
975
976struct work_queue_wrapper {
977 struct work_struct work;
978 struct scsi_device *sdev;
979};
980
981static void
c4028958 982spi_dv_device_work_wrapper(struct work_struct *work)
1da177e4 983{
c4028958
DH
984 struct work_queue_wrapper *wqw =
985 container_of(work, struct work_queue_wrapper, work);
1da177e4
LT
986 struct scsi_device *sdev = wqw->sdev;
987
988 kfree(wqw);
989 spi_dv_device(sdev);
990 spi_dv_pending(sdev->sdev_target) = 0;
991 scsi_device_put(sdev);
992}
993
994
995/**
996 * spi_schedule_dv_device - schedule domain validation to occur on the device
997 * @sdev: The device to validate
998 *
999 * Identical to spi_dv_device() above, except that the DV will be
1000 * scheduled to occur in a workqueue later. All memory allocations
1001 * are atomic, so may be called from any context including those holding
1002 * SCSI locks.
1003 */
1004void
1005spi_schedule_dv_device(struct scsi_device *sdev)
1006{
1007 struct work_queue_wrapper *wqw =
1008 kmalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC);
1009
1010 if (unlikely(!wqw))
1011 return;
1012
1013 if (unlikely(spi_dv_pending(sdev->sdev_target))) {
1014 kfree(wqw);
1015 return;
1016 }
1017 /* Set pending early (dv_device doesn't check it, only sets it) */
1018 spi_dv_pending(sdev->sdev_target) = 1;
1019 if (unlikely(scsi_device_get(sdev))) {
1020 kfree(wqw);
1021 spi_dv_pending(sdev->sdev_target) = 0;
1022 return;
1023 }
1024
c4028958 1025 INIT_WORK(&wqw->work, spi_dv_device_work_wrapper);
1da177e4
LT
1026 wqw->sdev = sdev;
1027
1028 schedule_work(&wqw->work);
1029}
1030EXPORT_SYMBOL(spi_schedule_dv_device);
1031
1032/**
1033 * spi_display_xfer_agreement - Print the current target transfer agreement
1034 * @starget: The target for which to display the agreement
1035 *
1036 * Each SPI port is required to maintain a transfer agreement for each
1037 * other port on the bus. This function prints a one-line summary of
1038 * the current agreement; more detailed information is available in sysfs.
1039 */
1040void spi_display_xfer_agreement(struct scsi_target *starget)
1041{
1042 struct spi_transport_attrs *tp;
1043 tp = (struct spi_transport_attrs *)&starget->starget_data;
1044
1045 if (tp->offset > 0 && tp->period > 0) {
1046 unsigned int picosec, kb100;
1047 char *scsi = "FAST-?";
1048 char tmp[8];
1049
1050 if (tp->period <= SPI_STATIC_PPR) {
1051 picosec = ppr_to_ps[tp->period];
1052 switch (tp->period) {
1053 case 7: scsi = "FAST-320"; break;
1054 case 8: scsi = "FAST-160"; break;
1055 case 9: scsi = "FAST-80"; break;
1056 case 10:
1057 case 11: scsi = "FAST-40"; break;
1058 case 12: scsi = "FAST-20"; break;
1059 }
1060 } else {
1061 picosec = tp->period * 4000;
1062 if (tp->period < 25)
1063 scsi = "FAST-20";
1064 else if (tp->period < 50)
1065 scsi = "FAST-10";
1066 else
1067 scsi = "FAST-5";
1068 }
1069
1070 kb100 = (10000000 + picosec / 2) / picosec;
1071 if (tp->width)
1072 kb100 *= 2;
1073 sprint_frac(tmp, picosec, 1000);
1074
1075 dev_info(&starget->dev,
d872ebe4
JB
1076 "%s %sSCSI %d.%d MB/s %s%s%s%s%s%s%s%s (%s ns, offset %d)\n",
1077 scsi, tp->width ? "WIDE " : "", kb100/10, kb100 % 10,
1078 tp->dt ? "DT" : "ST",
1079 tp->iu ? " IU" : "",
1080 tp->qas ? " QAS" : "",
1081 tp->rd_strm ? " RDSTRM" : "",
1082 tp->rti ? " RTI" : "",
1083 tp->wr_flow ? " WRFLOW" : "",
1084 tp->pcomp_en ? " PCOMP" : "",
1085 tp->hold_mcs ? " HMCS" : "",
1086 tmp, tp->offset);
1da177e4 1087 } else {
493ff4ee 1088 dev_info(&starget->dev, "%sasynchronous\n",
1da177e4
LT
1089 tp->width ? "wide " : "");
1090 }
1091}
1092EXPORT_SYMBOL(spi_display_xfer_agreement);
1093
6ea3c0b2
MW
1094int spi_populate_width_msg(unsigned char *msg, int width)
1095{
1096 msg[0] = EXTENDED_MESSAGE;
1097 msg[1] = 2;
1098 msg[2] = EXTENDED_WDTR;
1099 msg[3] = width;
1100 return 4;
1101}
38e14f89 1102EXPORT_SYMBOL_GPL(spi_populate_width_msg);
6ea3c0b2
MW
1103
1104int spi_populate_sync_msg(unsigned char *msg, int period, int offset)
1105{
1106 msg[0] = EXTENDED_MESSAGE;
1107 msg[1] = 3;
1108 msg[2] = EXTENDED_SDTR;
1109 msg[3] = period;
1110 msg[4] = offset;
1111 return 5;
1112}
38e14f89 1113EXPORT_SYMBOL_GPL(spi_populate_sync_msg);
6ea3c0b2
MW
1114
1115int spi_populate_ppr_msg(unsigned char *msg, int period, int offset,
1116 int width, int options)
1117{
1118 msg[0] = EXTENDED_MESSAGE;
1119 msg[1] = 6;
1120 msg[2] = EXTENDED_PPR;
1121 msg[3] = period;
1122 msg[4] = 0;
1123 msg[5] = offset;
1124 msg[6] = width;
1125 msg[7] = options;
1126 return 8;
1127}
38e14f89 1128EXPORT_SYMBOL_GPL(spi_populate_ppr_msg);
6ea3c0b2 1129
410ca5c7
MW
1130#ifdef CONFIG_SCSI_CONSTANTS
1131static const char * const one_byte_msgs[] = {
72df0ebf 1132/* 0x00 */ "Task Complete", NULL /* Extended Message */, "Save Pointers",
410ca5c7 1133/* 0x03 */ "Restore Pointers", "Disconnect", "Initiator Error",
72df0ebf 1134/* 0x06 */ "Abort Task Set", "Message Reject", "Nop", "Message Parity Error",
410ca5c7 1135/* 0x0a */ "Linked Command Complete", "Linked Command Complete w/flag",
72df0ebf
MW
1136/* 0x0c */ "Target Reset", "Abort Task", "Clear Task Set",
1137/* 0x0f */ "Initiate Recovery", "Release Recovery",
1138/* 0x11 */ "Terminate Process", "Continue Task", "Target Transfer Disable",
1139/* 0x14 */ NULL, NULL, "Clear ACA", "LUN Reset"
410ca5c7 1140};
410ca5c7
MW
1141
1142static const char * const two_byte_msgs[] = {
47972153 1143/* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag",
72df0ebf 1144/* 0x23 */ "Ignore Wide Residue", "ACA"
410ca5c7 1145};
410ca5c7
MW
1146
1147static const char * const extended_msgs[] = {
1148/* 0x00 */ "Modify Data Pointer", "Synchronous Data Transfer Request",
ef72582e 1149/* 0x02 */ "SCSI-I Extended Identify", "Wide Data Transfer Request",
fc25307d 1150/* 0x04 */ "Parallel Protocol Request", "Modify Bidirectional Data Pointer"
410ca5c7 1151};
410ca5c7 1152
bdd70f2c 1153static void print_nego(const unsigned char *msg, int per, int off, int width)
ef72582e
MW
1154{
1155 if (per) {
1156 char buf[20];
1157 period_to_str(buf, msg[per]);
1158 printk("period = %s ns ", buf);
1159 }
1160
1161 if (off)
1162 printk("offset = %d ", msg[off]);
1163 if (width)
1164 printk("width = %d ", 8 << msg[width]);
1165}
410ca5c7 1166
fc25307d
MW
1167static void print_ptr(const unsigned char *msg, int msb, const char *desc)
1168{
1169 int ptr = (msg[msb] << 24) | (msg[msb+1] << 16) | (msg[msb+2] << 8) |
1170 msg[msb+3];
1171 printk("%s = %d ", desc, ptr);
1172}
1173
1abfd370 1174int spi_print_msg(const unsigned char *msg)
410ca5c7 1175{
72df0ebf 1176 int len = 1, i;
410ca5c7 1177 if (msg[0] == EXTENDED_MESSAGE) {
fc25307d
MW
1178 len = 2 + msg[1];
1179 if (len == 2)
1180 len += 256;
b32aaffc 1181 if (msg[2] < ARRAY_SIZE(extended_msgs))
410ca5c7
MW
1182 printk ("%s ", extended_msgs[msg[2]]);
1183 else
1184 printk ("Extended Message, reserved code (0x%02x) ",
1185 (int) msg[2]);
1186 switch (msg[2]) {
1187 case EXTENDED_MODIFY_DATA_POINTER:
fc25307d 1188 print_ptr(msg, 3, "pointer");
410ca5c7
MW
1189 break;
1190 case EXTENDED_SDTR:
ef72582e 1191 print_nego(msg, 3, 4, 0);
410ca5c7
MW
1192 break;
1193 case EXTENDED_WDTR:
ef72582e
MW
1194 print_nego(msg, 0, 0, 3);
1195 break;
1196 case EXTENDED_PPR:
1197 print_nego(msg, 3, 5, 6);
410ca5c7 1198 break;
fc25307d
MW
1199 case EXTENDED_MODIFY_BIDI_DATA_PTR:
1200 print_ptr(msg, 3, "out");
1201 print_ptr(msg, 7, "in");
1202 break;
410ca5c7
MW
1203 default:
1204 for (i = 2; i < len; ++i)
1205 printk("%02x ", msg[i]);
1206 }
1207 /* Identify */
1208 } else if (msg[0] & 0x80) {
1209 printk("Identify disconnect %sallowed %s %d ",
1210 (msg[0] & 0x40) ? "" : "not ",
1211 (msg[0] & 0x20) ? "target routine" : "lun",
1212 msg[0] & 0x7);
410ca5c7
MW
1213 /* Normal One byte */
1214 } else if (msg[0] < 0x1f) {
72df0ebf 1215 if (msg[0] < ARRAY_SIZE(one_byte_msgs) && one_byte_msgs[msg[0]])
e24d873d 1216 printk("%s ", one_byte_msgs[msg[0]]);
410ca5c7
MW
1217 else
1218 printk("reserved (%02x) ", msg[0]);
72df0ebf
MW
1219 } else if (msg[0] == 0x55) {
1220 printk("QAS Request ");
410ca5c7
MW
1221 /* Two byte */
1222 } else if (msg[0] <= 0x2f) {
b32aaffc 1223 if ((msg[0] - 0x20) < ARRAY_SIZE(two_byte_msgs))
410ca5c7
MW
1224 printk("%s %02x ", two_byte_msgs[msg[0] - 0x20],
1225 msg[1]);
1226 else
1227 printk("reserved two byte (%02x %02x) ",
1228 msg[0], msg[1]);
1229 len = 2;
1230 } else
e24d873d 1231 printk("reserved ");
410ca5c7
MW
1232 return len;
1233}
1abfd370 1234EXPORT_SYMBOL(spi_print_msg);
410ca5c7
MW
1235
1236#else /* ifndef CONFIG_SCSI_CONSTANTS */
1237
1abfd370 1238int spi_print_msg(const unsigned char *msg)
410ca5c7 1239{
72df0ebf 1240 int len = 1, i;
410ca5c7
MW
1241
1242 if (msg[0] == EXTENDED_MESSAGE) {
fc25307d
MW
1243 len = 2 + msg[1];
1244 if (len == 2)
1245 len += 256;
410ca5c7
MW
1246 for (i = 0; i < len; ++i)
1247 printk("%02x ", msg[i]);
1248 /* Identify */
1249 } else if (msg[0] & 0x80) {
1250 printk("%02x ", msg[0]);
410ca5c7 1251 /* Normal One byte */
597705aa 1252 } else if ((msg[0] < 0x1f) || (msg[0] == 0x55)) {
410ca5c7 1253 printk("%02x ", msg[0]);
410ca5c7
MW
1254 /* Two byte */
1255 } else if (msg[0] <= 0x2f) {
1256 printk("%02x %02x", msg[0], msg[1]);
1257 len = 2;
1258 } else
1259 printk("%02x ", msg[0]);
1260 return len;
1261}
1abfd370 1262EXPORT_SYMBOL(spi_print_msg);
410ca5c7
MW
1263#endif /* ! CONFIG_SCSI_CONSTANTS */
1264
1da177e4
LT
1265#define SETUP_ATTRIBUTE(field) \
1266 i->private_attrs[count] = class_device_attr_##field; \
1267 if (!i->f->set_##field) { \
1268 i->private_attrs[count].attr.mode = S_IRUGO; \
1269 i->private_attrs[count].store = NULL; \
1270 } \
1271 i->attrs[count] = &i->private_attrs[count]; \
1272 if (i->f->show_##field) \
1273 count++
1274
62a86129
JB
1275#define SETUP_RELATED_ATTRIBUTE(field, rel_field) \
1276 i->private_attrs[count] = class_device_attr_##field; \
1277 if (!i->f->set_##rel_field) { \
1278 i->private_attrs[count].attr.mode = S_IRUGO; \
1279 i->private_attrs[count].store = NULL; \
1280 } \
1281 i->attrs[count] = &i->private_attrs[count]; \
1282 if (i->f->show_##rel_field) \
1283 count++
1284
1da177e4
LT
1285#define SETUP_HOST_ATTRIBUTE(field) \
1286 i->private_host_attrs[count] = class_device_attr_##field; \
1287 if (!i->f->set_##field) { \
1288 i->private_host_attrs[count].attr.mode = S_IRUGO; \
1289 i->private_host_attrs[count].store = NULL; \
1290 } \
1291 i->host_attrs[count] = &i->private_host_attrs[count]; \
1292 count++
1293
1294static int spi_device_match(struct attribute_container *cont,
1295 struct device *dev)
1296{
1297 struct scsi_device *sdev;
1298 struct Scsi_Host *shost;
10c1b889 1299 struct spi_internal *i;
1da177e4
LT
1300
1301 if (!scsi_is_sdev_device(dev))
1302 return 0;
1303
1304 sdev = to_scsi_device(dev);
1305 shost = sdev->host;
1306 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1307 != &spi_host_class.class)
1308 return 0;
1309 /* Note: this class has no device attributes, so it has
1310 * no per-HBA allocation and thus we don't need to distinguish
1311 * the attribute containers for the device */
10c1b889
JB
1312 i = to_spi_internal(shost->transportt);
1313 if (i->f->deny_binding && i->f->deny_binding(sdev->sdev_target))
1314 return 0;
1da177e4
LT
1315 return 1;
1316}
1317
1318static int spi_target_match(struct attribute_container *cont,
1319 struct device *dev)
1320{
1321 struct Scsi_Host *shost;
10c1b889 1322 struct scsi_target *starget;
1da177e4
LT
1323 struct spi_internal *i;
1324
1325 if (!scsi_is_target_device(dev))
1326 return 0;
1327
1328 shost = dev_to_shost(dev->parent);
1329 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1330 != &spi_host_class.class)
1331 return 0;
1332
1333 i = to_spi_internal(shost->transportt);
10c1b889
JB
1334 starget = to_scsi_target(dev);
1335
1336 if (i->f->deny_binding && i->f->deny_binding(starget))
1337 return 0;
1338
1da177e4
LT
1339 return &i->t.target_attrs.ac == cont;
1340}
1341
1342static DECLARE_TRANSPORT_CLASS(spi_transport_class,
1343 "spi_transport",
1344 spi_setup_transport_attrs,
1345 NULL,
1346 NULL);
1347
1348static DECLARE_ANON_TRANSPORT_CLASS(spi_device_class,
1349 spi_device_match,
1350 spi_device_configure);
1351
1352struct scsi_transport_template *
1353spi_attach_transport(struct spi_function_template *ft)
1354{
1da177e4 1355 int count = 0;
24669f75
JS
1356 struct spi_internal *i = kzalloc(sizeof(struct spi_internal),
1357 GFP_KERNEL);
1358
1da177e4
LT
1359 if (unlikely(!i))
1360 return NULL;
1361
1da177e4
LT
1362 i->t.target_attrs.ac.class = &spi_transport_class.class;
1363 i->t.target_attrs.ac.attrs = &i->attrs[0];
1364 i->t.target_attrs.ac.match = spi_target_match;
1365 transport_container_register(&i->t.target_attrs);
1366 i->t.target_size = sizeof(struct spi_transport_attrs);
1367 i->t.host_attrs.ac.class = &spi_host_class.class;
1368 i->t.host_attrs.ac.attrs = &i->host_attrs[0];
1369 i->t.host_attrs.ac.match = spi_host_match;
1370 transport_container_register(&i->t.host_attrs);
1371 i->t.host_size = sizeof(struct spi_host_attrs);
1372 i->f = ft;
1373
1374 SETUP_ATTRIBUTE(period);
62a86129 1375 SETUP_RELATED_ATTRIBUTE(min_period, period);
1da177e4 1376 SETUP_ATTRIBUTE(offset);
62a86129 1377 SETUP_RELATED_ATTRIBUTE(max_offset, offset);
1da177e4 1378 SETUP_ATTRIBUTE(width);
62a86129 1379 SETUP_RELATED_ATTRIBUTE(max_width, width);
1da177e4
LT
1380 SETUP_ATTRIBUTE(iu);
1381 SETUP_ATTRIBUTE(dt);
1382 SETUP_ATTRIBUTE(qas);
1383 SETUP_ATTRIBUTE(wr_flow);
1384 SETUP_ATTRIBUTE(rd_strm);
1385 SETUP_ATTRIBUTE(rti);
1386 SETUP_ATTRIBUTE(pcomp_en);
d872ebe4 1387 SETUP_ATTRIBUTE(hold_mcs);
1da177e4
LT
1388
1389 /* if you add an attribute but forget to increase SPI_NUM_ATTRS
1390 * this bug will trigger */
1391 BUG_ON(count > SPI_NUM_ATTRS);
1392
1393 i->attrs[count++] = &class_device_attr_revalidate;
1394
1395 i->attrs[count] = NULL;
1396
1397 count = 0;
1398 SETUP_HOST_ATTRIBUTE(signalling);
1399
1400 BUG_ON(count > SPI_HOST_ATTRS);
1401
1402 i->host_attrs[count] = NULL;
1403
1404 return &i->t;
1405}
1406EXPORT_SYMBOL(spi_attach_transport);
1407
1408void spi_release_transport(struct scsi_transport_template *t)
1409{
1410 struct spi_internal *i = to_spi_internal(t);
1411
1412 transport_container_unregister(&i->t.target_attrs);
1413 transport_container_unregister(&i->t.host_attrs);
1414
1415 kfree(i);
1416}
1417EXPORT_SYMBOL(spi_release_transport);
1418
1419static __init int spi_transport_init(void)
1420{
1421 int error = transport_class_register(&spi_transport_class);
1422 if (error)
1423 return error;
1424 error = anon_transport_class_register(&spi_device_class);
1425 return transport_class_register(&spi_host_class);
1426}
1427
1428static void __exit spi_transport_exit(void)
1429{
1430 transport_class_unregister(&spi_transport_class);
1431 anon_transport_class_unregister(&spi_device_class);
1432 transport_class_unregister(&spi_host_class);
1433}
1434
1435MODULE_AUTHOR("Martin Hicks");
1436MODULE_DESCRIPTION("SPI Transport Attributes");
1437MODULE_LICENSE("GPL");
1438
1439module_init(spi_transport_init);
1440module_exit(spi_transport_exit);