blob: 319868f3f67430f5c7e493675d6c9abea2477294 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
James Bottomley949bf792005-05-01 18:58:15 -050025#include <linux/blkdev.h>
Jes Sorensend158d262006-01-13 16:05:44 -080026#include <linux/mutex.h>
Randy Dunlap9f9a73b2008-04-23 09:56:14 -070027#include <linux/sysfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <scsi/scsi.h>
30#include "scsi_priv.h"
31#include <scsi/scsi_device.h>
32#include <scsi/scsi_host.h>
James Bottomley33aa6872005-08-28 11:31:14 -050033#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <scsi/scsi_eh.h>
Christoph Hellwig50668632014-10-30 14:30:06 +010035#include <scsi/scsi_tcq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <scsi/scsi_transport.h>
37#include <scsi/scsi_transport_spi.h>
38
James Bottomleyd872ebe2005-08-03 15:43:52 -050039#define SPI_NUM_ATTRS 14 /* increase this if you add attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define SPI_OTHER_ATTRS 1 /* Increase this if you add "always
41 * on" attributes */
42#define SPI_HOST_ATTRS 1
43
44#define SPI_MAX_ECHO_BUFFER_SIZE 4096
45
James Bottomley949bf792005-05-01 18:58:15 -050046#define DV_LOOPS 3
47#define DV_TIMEOUT (10*HZ)
48#define DV_RETRIES 3 /* should only need at most
49 * two cc/ua clears */
50
James Bottomleya9e0edb2009-06-17 19:05:05 +000051/* Our blacklist flags */
52enum {
53 SPI_BLIST_NOIUS = 0x1,
54};
55
56/* blacklist table, modelled on scsi_devinfo.c */
57static struct {
58 char *vendor;
59 char *model;
60 unsigned flags;
61} spi_static_device_list[] __initdata = {
62 {"HP", "Ultrium 3-SCSI", SPI_BLIST_NOIUS },
63 {"IBM", "ULTRIUM-TD3", SPI_BLIST_NOIUS },
64 {NULL, NULL, 0}
65};
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/* Private data accessors (keep these out of the header file) */
James Bottomleydfdc58b2006-09-20 12:00:18 -040068#define spi_dv_in_progress(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_in_progress)
Jes Sorensend158d262006-01-13 16:05:44 -080069#define spi_dv_mutex(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71struct spi_internal {
72 struct scsi_transport_template t;
73 struct spi_function_template *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
76#define to_spi_internal(tmpl) container_of(tmpl, struct spi_internal, t)
77
78static const int ppr_to_ps[] = {
79 /* The PPR values 0-6 are reserved, fill them in when
80 * the committee defines them */
81 -1, /* 0x00 */
82 -1, /* 0x01 */
83 -1, /* 0x02 */
84 -1, /* 0x03 */
85 -1, /* 0x04 */
86 -1, /* 0x05 */
87 -1, /* 0x06 */
88 3125, /* 0x07 */
89 6250, /* 0x08 */
90 12500, /* 0x09 */
91 25000, /* 0x0a */
92 30300, /* 0x0b */
93 50000, /* 0x0c */
94};
95/* The PPR values at which you calculate the period in ns by multiplying
96 * by 4 */
97#define SPI_STATIC_PPR 0x0c
98
99static int sprint_frac(char *dest, int value, int denom)
100{
101 int frac = value % denom;
102 int result = sprintf(dest, "%d", value / denom);
103
104 if (frac == 0)
105 return result;
106 dest[result++] = '.';
107
108 do {
109 denom /= 10;
110 sprintf(dest + result, "%d", frac / denom);
111 result++;
112 frac %= denom;
113 } while (frac);
114
115 dest[result++] = '\0';
116 return result;
117}
118
James Bottomley33aa6872005-08-28 11:31:14 -0500119static int spi_execute(struct scsi_device *sdev, const void *cmd,
120 enum dma_data_direction dir,
121 void *buffer, unsigned bufflen,
122 struct scsi_sense_hdr *sshdr)
James Bottomley949bf792005-05-01 18:58:15 -0500123{
James Bottomley33aa6872005-08-28 11:31:14 -0500124 int i, result;
125 unsigned char sense[SCSI_SENSE_BUFFERSIZE];
James Bottomley949bf792005-05-01 18:58:15 -0500126
127 for(i = 0; i < DV_RETRIES; i++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500128 result = scsi_execute(sdev, cmd, dir, buffer, bufflen,
129 sense, DV_TIMEOUT, /* retries */ 1,
Mike Christie6000a362008-08-19 18:45:30 -0500130 REQ_FAILFAST_DEV |
131 REQ_FAILFAST_TRANSPORT |
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900132 REQ_FAILFAST_DRIVER,
133 NULL);
FUJITA Tomonori4d3fef92008-12-05 15:37:52 +0900134 if (driver_byte(result) & DRIVER_SENSE) {
James Bottomley33aa6872005-08-28 11:31:14 -0500135 struct scsi_sense_hdr sshdr_tmp;
136 if (!sshdr)
137 sshdr = &sshdr_tmp;
James Bottomley949bf792005-05-01 18:58:15 -0500138
James Bottomley4ed381e2006-12-11 09:47:06 -0600139 if (scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE,
James Bottomley33aa6872005-08-28 11:31:14 -0500140 sshdr)
141 && sshdr->sense_key == UNIT_ATTENTION)
James Bottomley949bf792005-05-01 18:58:15 -0500142 continue;
143 }
144 break;
145 }
James Bottomley33aa6872005-08-28 11:31:14 -0500146 return result;
James Bottomley949bf792005-05-01 18:58:15 -0500147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149static struct {
150 enum spi_signal_type value;
151 char *name;
152} signal_types[] = {
153 { SPI_SIGNAL_UNKNOWN, "unknown" },
154 { SPI_SIGNAL_SE, "SE" },
155 { SPI_SIGNAL_LVD, "LVD" },
156 { SPI_SIGNAL_HVD, "HVD" },
157};
158
159static inline const char *spi_signal_to_string(enum spi_signal_type type)
160{
161 int i;
162
Tobias Klauser6391a112006-06-08 22:23:48 -0700163 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (type == signal_types[i].value)
165 return signal_types[i].name;
166 }
167 return NULL;
168}
169static inline enum spi_signal_type spi_signal_to_value(const char *name)
170{
171 int i, len;
172
Tobias Klauser6391a112006-06-08 22:23:48 -0700173 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 len = strlen(signal_types[i].name);
175 if (strncmp(name, signal_types[i].name, len) == 0 &&
176 (name[len] == '\n' || name[len] == '\0'))
177 return signal_types[i].value;
178 }
179 return SPI_SIGNAL_UNKNOWN;
180}
181
James Bottomleyd0a7e572005-08-14 17:09:01 -0500182static int spi_host_setup(struct transport_container *tc, struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100183 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 struct Scsi_Host *shost = dev_to_shost(dev);
186
187 spi_signalling(shost) = SPI_SIGNAL_UNKNOWN;
188
189 return 0;
190}
191
James Bottomley9b161a42008-01-05 10:18:27 -0600192static int spi_host_configure(struct transport_container *tc,
193 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100194 struct device *cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static DECLARE_TRANSPORT_CLASS(spi_host_class,
197 "spi_host",
198 spi_host_setup,
199 NULL,
James Bottomley9b161a42008-01-05 10:18:27 -0600200 spi_host_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202static int spi_host_match(struct attribute_container *cont,
203 struct device *dev)
204{
205 struct Scsi_Host *shost;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 if (!scsi_is_host_device(dev))
208 return 0;
209
210 shost = dev_to_shost(dev);
211 if (!shost->transportt || shost->transportt->host_attrs.ac.class
212 != &spi_host_class.class)
213 return 0;
214
James Bottomley9b161a42008-01-05 10:18:27 -0600215 return &shost->transportt->host_attrs.ac == cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
James Bottomley9b161a42008-01-05 10:18:27 -0600218static int spi_target_configure(struct transport_container *tc,
219 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100220 struct device *cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600221
James Bottomleyd0a7e572005-08-14 17:09:01 -0500222static int spi_device_configure(struct transport_container *tc,
223 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100224 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct scsi_device *sdev = to_scsi_device(dev);
227 struct scsi_target *starget = sdev->sdev_target;
James Bottomleya9e0edb2009-06-17 19:05:05 +0000228 unsigned bflags = scsi_get_device_flags_keyed(sdev, &sdev->inquiry[8],
229 &sdev->inquiry[16],
230 SCSI_DEVINFO_SPI);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /* Populate the target capability fields with the values
233 * gleaned from the device inquiry */
234
235 spi_support_sync(starget) = scsi_device_sync(sdev);
236 spi_support_wide(starget) = scsi_device_wide(sdev);
237 spi_support_dt(starget) = scsi_device_dt(sdev);
238 spi_support_dt_only(starget) = scsi_device_dt_only(sdev);
239 spi_support_ius(starget) = scsi_device_ius(sdev);
James Bottomleya9e0edb2009-06-17 19:05:05 +0000240 if (bflags & SPI_BLIST_NOIUS) {
241 dev_info(dev, "Information Units disabled by blacklist\n");
242 spi_support_ius(starget) = 0;
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 spi_support_qas(starget) = scsi_device_qas(sdev);
245
246 return 0;
247}
248
James Bottomleyd0a7e572005-08-14 17:09:01 -0500249static int spi_setup_transport_attrs(struct transport_container *tc,
250 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100251 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
253 struct scsi_target *starget = to_scsi_target(dev);
254
255 spi_period(starget) = -1; /* illegal value */
James Bottomley 62a86122005-05-06 18:05:20 -0500256 spi_min_period(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 spi_offset(starget) = 0; /* async */
James Bottomley 62a86122005-05-06 18:05:20 -0500258 spi_max_offset(starget) = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 spi_width(starget) = 0; /* narrow */
James Bottomley 62a86122005-05-06 18:05:20 -0500260 spi_max_width(starget) = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spi_iu(starget) = 0; /* no IU */
James Bottomleyea443192009-06-13 12:19:05 -0500262 spi_max_iu(starget) = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 spi_dt(starget) = 0; /* ST */
264 spi_qas(starget) = 0;
James Bottomleyea443192009-06-13 12:19:05 -0500265 spi_max_qas(starget) = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 spi_wr_flow(starget) = 0;
267 spi_rd_strm(starget) = 0;
268 spi_rti(starget) = 0;
269 spi_pcomp_en(starget) = 0;
James Bottomleyd872ebe2005-08-03 15:43:52 -0500270 spi_hold_mcs(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 spi_dv_pending(starget) = 0;
James Bottomleydfdc58b2006-09-20 12:00:18 -0400272 spi_dv_in_progress(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 spi_initial_dv(starget) = 0;
Jes Sorensend158d262006-01-13 16:05:44 -0800274 mutex_init(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 return 0;
277}
278
James Bottomley 62a86122005-05-06 18:05:20 -0500279#define spi_transport_show_simple(field, format_string) \
280 \
281static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100282show_spi_transport_##field(struct device *dev, \
283 struct device_attribute *attr, char *buf) \
James Bottomley 62a86122005-05-06 18:05:20 -0500284{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100285 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500286 struct spi_transport_attrs *tp; \
287 \
288 tp = (struct spi_transport_attrs *)&starget->starget_data; \
289 return snprintf(buf, 20, format_string, tp->field); \
290}
291
292#define spi_transport_store_simple(field, format_string) \
293 \
294static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100295store_spi_transport_##field(struct device *dev, \
296 struct device_attribute *attr, \
297 const char *buf, size_t count) \
James Bottomley 62a86122005-05-06 18:05:20 -0500298{ \
299 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100300 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500301 struct spi_transport_attrs *tp; \
302 \
303 tp = (struct spi_transport_attrs *)&starget->starget_data; \
304 val = simple_strtoul(buf, NULL, 0); \
305 tp->field = val; \
306 return count; \
307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#define spi_transport_show_function(field, format_string) \
310 \
311static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100312show_spi_transport_##field(struct device *dev, \
313 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100315 struct scsi_target *starget = transport_class_to_starget(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
317 struct spi_transport_attrs *tp; \
318 struct spi_internal *i = to_spi_internal(shost->transportt); \
319 tp = (struct spi_transport_attrs *)&starget->starget_data; \
320 if (i->f->get_##field) \
321 i->f->get_##field(starget); \
322 return snprintf(buf, 20, format_string, tp->field); \
323}
324
325#define spi_transport_store_function(field, format_string) \
326static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100327store_spi_transport_##field(struct device *dev, \
328 struct device_attribute *attr, \
329 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{ \
331 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100332 struct scsi_target *starget = transport_class_to_starget(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
334 struct spi_internal *i = to_spi_internal(shost->transportt); \
335 \
James Bottomley9b161a42008-01-05 10:18:27 -0600336 if (!i->f->set_##field) \
337 return -EINVAL; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 val = simple_strtoul(buf, NULL, 0); \
James Bottomley9b161a42008-01-05 10:18:27 -0600339 i->f->set_##field(starget, val); \
James Bottomley 62a86122005-05-06 18:05:20 -0500340 return count; \
341}
342
343#define spi_transport_store_max(field, format_string) \
344static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100345store_spi_transport_##field(struct device *dev, \
346 struct device_attribute *attr, \
347 const char *buf, size_t count) \
James Bottomley 62a86122005-05-06 18:05:20 -0500348{ \
349 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100350 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500351 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
352 struct spi_internal *i = to_spi_internal(shost->transportt); \
353 struct spi_transport_attrs *tp \
354 = (struct spi_transport_attrs *)&starget->starget_data; \
355 \
James Bottomley9b161a42008-01-05 10:18:27 -0600356 if (i->f->set_##field) \
357 return -EINVAL; \
James Bottomley 62a86122005-05-06 18:05:20 -0500358 val = simple_strtoul(buf, NULL, 0); \
359 if (val > tp->max_##field) \
360 val = tp->max_##field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 i->f->set_##field(starget, val); \
362 return count; \
363}
364
365#define spi_transport_rd_attr(field, format_string) \
366 spi_transport_show_function(field, format_string) \
367 spi_transport_store_function(field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100368static DEVICE_ATTR(field, S_IRUGO, \
369 show_spi_transport_##field, \
370 store_spi_transport_##field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
James Bottomley 62a86122005-05-06 18:05:20 -0500372#define spi_transport_simple_attr(field, format_string) \
373 spi_transport_show_simple(field, format_string) \
374 spi_transport_store_simple(field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100375static DEVICE_ATTR(field, S_IRUGO, \
376 show_spi_transport_##field, \
377 store_spi_transport_##field);
James Bottomley 62a86122005-05-06 18:05:20 -0500378
379#define spi_transport_max_attr(field, format_string) \
380 spi_transport_show_function(field, format_string) \
381 spi_transport_store_max(field, format_string) \
382 spi_transport_simple_attr(max_##field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100383static DEVICE_ATTR(field, S_IRUGO, \
384 show_spi_transport_##field, \
385 store_spi_transport_##field);
James Bottomley 62a86122005-05-06 18:05:20 -0500386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/* The Parallel SCSI Tranport Attributes: */
James Bottomley 62a86122005-05-06 18:05:20 -0500388spi_transport_max_attr(offset, "%d\n");
389spi_transport_max_attr(width, "%d\n");
James Bottomleyea443192009-06-13 12:19:05 -0500390spi_transport_max_attr(iu, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391spi_transport_rd_attr(dt, "%d\n");
James Bottomleyea443192009-06-13 12:19:05 -0500392spi_transport_max_attr(qas, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393spi_transport_rd_attr(wr_flow, "%d\n");
394spi_transport_rd_attr(rd_strm, "%d\n");
395spi_transport_rd_attr(rti, "%d\n");
396spi_transport_rd_attr(pcomp_en, "%d\n");
James Bottomleyd872ebe2005-08-03 15:43:52 -0500397spi_transport_rd_attr(hold_mcs, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
James Bottomleye8bac9e2008-07-29 12:52:20 -0500399/* we only care about the first child device that's a real SCSI device
400 * so we return 1 to terminate the iteration when we find it */
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800401static int child_iter(struct device *dev, void *data)
402{
James Bottomleye8bac9e2008-07-29 12:52:20 -0500403 if (!scsi_is_sdev_device(dev))
404 return 0;
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800405
James Bottomleye8bac9e2008-07-29 12:52:20 -0500406 spi_dv_device(to_scsi_device(dev));
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800407 return 1;
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100411store_spi_revalidate(struct device *dev, struct device_attribute *attr,
412 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Tony Jonesee959b02008-02-22 00:13:36 +0100414 struct scsi_target *starget = transport_class_to_starget(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800416 device_for_each_child(&starget->dev, NULL, child_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return count;
418}
Tony Jonesee959b02008-02-22 00:13:36 +0100419static DEVICE_ATTR(revalidate, S_IWUSR, NULL, store_spi_revalidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421/* Translate the period into ns according to the current spec
422 * for SDTR/PPR messages */
Matthew Wilcoxef725822005-12-15 16:22:01 -0500423static int period_to_str(char *buf, int period)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 int len, picosec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
James Bottomley 62a86122005-05-06 18:05:20 -0500427 if (period < 0 || period > 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 picosec = -1;
James Bottomley 62a86122005-05-06 18:05:20 -0500429 } else if (period <= SPI_STATIC_PPR) {
430 picosec = ppr_to_ps[period];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 } else {
James Bottomley 62a86122005-05-06 18:05:20 -0500432 picosec = period * 4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 if (picosec == -1) {
436 len = sprintf(buf, "reserved");
437 } else {
438 len = sprint_frac(buf, picosec, 1000);
439 }
440
Matthew Wilcoxef725822005-12-15 16:22:01 -0500441 return len;
442}
443
444static ssize_t
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700445show_spi_transport_period_helper(char *buf, int period)
Matthew Wilcoxef725822005-12-15 16:22:01 -0500446{
447 int len = period_to_str(buf, period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 buf[len++] = '\n';
449 buf[len] = '\0';
450 return len;
451}
452
453static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100454store_spi_transport_period_helper(struct device *dev, const char *buf,
James Bottomley 62a86122005-05-06 18:05:20 -0500455 size_t count, int *periodp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 int j, picosec, period = -1;
458 char *endp;
459
460 picosec = simple_strtoul(buf, &endp, 10) * 1000;
461 if (*endp == '.') {
462 int mult = 100;
463 do {
464 endp++;
465 if (!isdigit(*endp))
466 break;
467 picosec += (*endp - '0') * mult;
468 mult /= 10;
469 } while (mult > 0);
470 }
471
472 for (j = 0; j <= SPI_STATIC_PPR; j++) {
473 if (ppr_to_ps[j] < picosec)
474 continue;
475 period = j;
476 break;
477 }
478
479 if (period == -1)
480 period = picosec / 4000;
481
482 if (period > 0xff)
483 period = 0xff;
484
James Bottomley 62a86122005-05-06 18:05:20 -0500485 *periodp = period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
487 return count;
488}
489
James Bottomley 62a86122005-05-06 18:05:20 -0500490static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100491show_spi_transport_period(struct device *dev,
492 struct device_attribute *attr, char *buf)
James Bottomley 62a86122005-05-06 18:05:20 -0500493{
Tony Jonesee959b02008-02-22 00:13:36 +0100494 struct scsi_target *starget = transport_class_to_starget(dev);
James Bottomley 62a86122005-05-06 18:05:20 -0500495 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
496 struct spi_internal *i = to_spi_internal(shost->transportt);
497 struct spi_transport_attrs *tp =
498 (struct spi_transport_attrs *)&starget->starget_data;
499
500 if (i->f->get_period)
501 i->f->get_period(starget);
502
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700503 return show_spi_transport_period_helper(buf, tp->period);
James Bottomley 62a86122005-05-06 18:05:20 -0500504}
505
506static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100507store_spi_transport_period(struct device *cdev, struct device_attribute *attr,
508 const char *buf, size_t count)
James Bottomley 62a86122005-05-06 18:05:20 -0500509{
510 struct scsi_target *starget = transport_class_to_starget(cdev);
511 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
512 struct spi_internal *i = to_spi_internal(shost->transportt);
513 struct spi_transport_attrs *tp =
514 (struct spi_transport_attrs *)&starget->starget_data;
515 int period, retval;
516
James Bottomley9b161a42008-01-05 10:18:27 -0600517 if (!i->f->set_period)
518 return -EINVAL;
519
James Bottomley 62a86122005-05-06 18:05:20 -0500520 retval = store_spi_transport_period_helper(cdev, buf, count, &period);
521
522 if (period < tp->min_period)
523 period = tp->min_period;
524
525 i->f->set_period(starget, period);
526
527 return retval;
528}
529
Tony Jonesee959b02008-02-22 00:13:36 +0100530static DEVICE_ATTR(period, S_IRUGO,
531 show_spi_transport_period,
532 store_spi_transport_period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
James Bottomley 62a86122005-05-06 18:05:20 -0500534static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100535show_spi_transport_min_period(struct device *cdev,
536 struct device_attribute *attr, char *buf)
James Bottomley 62a86122005-05-06 18:05:20 -0500537{
538 struct scsi_target *starget = transport_class_to_starget(cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600539 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
540 struct spi_internal *i = to_spi_internal(shost->transportt);
James Bottomley 62a86122005-05-06 18:05:20 -0500541 struct spi_transport_attrs *tp =
542 (struct spi_transport_attrs *)&starget->starget_data;
543
James Bottomley9b161a42008-01-05 10:18:27 -0600544 if (!i->f->set_period)
545 return -EINVAL;
546
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700547 return show_spi_transport_period_helper(buf, tp->min_period);
James Bottomley 62a86122005-05-06 18:05:20 -0500548}
549
550static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100551store_spi_transport_min_period(struct device *cdev,
552 struct device_attribute *attr,
553 const char *buf, size_t count)
James Bottomley 62a86122005-05-06 18:05:20 -0500554{
555 struct scsi_target *starget = transport_class_to_starget(cdev);
556 struct spi_transport_attrs *tp =
557 (struct spi_transport_attrs *)&starget->starget_data;
558
559 return store_spi_transport_period_helper(cdev, buf, count,
560 &tp->min_period);
561}
562
563
Tony Jonesee959b02008-02-22 00:13:36 +0100564static DEVICE_ATTR(min_period, S_IRUGO,
565 show_spi_transport_min_period,
566 store_spi_transport_min_period);
James Bottomley 62a86122005-05-06 18:05:20 -0500567
568
Tony Jonesee959b02008-02-22 00:13:36 +0100569static ssize_t show_spi_host_signalling(struct device *cdev,
570 struct device_attribute *attr,
571 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
573 struct Scsi_Host *shost = transport_class_to_shost(cdev);
574 struct spi_internal *i = to_spi_internal(shost->transportt);
575
576 if (i->f->get_signalling)
577 i->f->get_signalling(shost);
578
579 return sprintf(buf, "%s\n", spi_signal_to_string(spi_signalling(shost)));
580}
Tony Jonesee959b02008-02-22 00:13:36 +0100581static ssize_t store_spi_host_signalling(struct device *dev,
582 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 const char *buf, size_t count)
584{
Tony Jonesee959b02008-02-22 00:13:36 +0100585 struct Scsi_Host *shost = transport_class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 struct spi_internal *i = to_spi_internal(shost->transportt);
587 enum spi_signal_type type = spi_signal_to_value(buf);
588
James Bottomley9b161a42008-01-05 10:18:27 -0600589 if (!i->f->set_signalling)
590 return -EINVAL;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (type != SPI_SIGNAL_UNKNOWN)
593 i->f->set_signalling(shost, type);
594
595 return count;
596}
Tony Jonesee959b02008-02-22 00:13:36 +0100597static DEVICE_ATTR(signalling, S_IRUGO,
598 show_spi_host_signalling,
599 store_spi_host_signalling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Hannes Reinecke0ac23772011-06-30 02:19:57 +0530601static ssize_t show_spi_host_width(struct device *cdev,
602 struct device_attribute *attr,
603 char *buf)
604{
605 struct Scsi_Host *shost = transport_class_to_shost(cdev);
606
607 return sprintf(buf, "%s\n", shost->max_id == 16 ? "wide" : "narrow");
608}
609static DEVICE_ATTR(host_width, S_IRUGO,
610 show_spi_host_width, NULL);
611
612static ssize_t show_spi_host_hba_id(struct device *cdev,
613 struct device_attribute *attr,
614 char *buf)
615{
616 struct Scsi_Host *shost = transport_class_to_shost(cdev);
617
618 return sprintf(buf, "%d\n", shost->this_id);
619}
620static DEVICE_ATTR(hba_id, S_IRUGO,
621 show_spi_host_hba_id, NULL);
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623#define DV_SET(x, y) \
624 if(i->f->set_##x) \
625 i->f->set_##x(sdev->sdev_target, y)
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627enum spi_compare_returns {
628 SPI_COMPARE_SUCCESS,
629 SPI_COMPARE_FAILURE,
630 SPI_COMPARE_SKIP_TEST,
631};
632
633
634/* This is for read/write Domain Validation: If the device supports
635 * an echo buffer, we do read/write tests to it */
636static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500637spi_dv_device_echo_buffer(struct scsi_device *sdev, u8 *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 u8 *ptr, const int retries)
639{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int len = ptr - buffer;
James Bottomley33aa6872005-08-28 11:31:14 -0500641 int j, k, r, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 unsigned int pattern = 0x0000ffff;
James Bottomley33aa6872005-08-28 11:31:14 -0500643 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 const char spi_write_buffer[] = {
646 WRITE_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
647 };
648 const char spi_read_buffer[] = {
649 READ_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
650 };
651
652 /* set up the pattern buffer. Doesn't matter if we spill
653 * slightly beyond since that's where the read buffer is */
654 for (j = 0; j < len; ) {
655
656 /* fill the buffer with counting (test a) */
657 for ( ; j < min(len, 32); j++)
658 buffer[j] = j;
659 k = j;
660 /* fill the buffer with alternating words of 0x0 and
661 * 0xffff (test b) */
662 for ( ; j < min(len, k + 32); j += 2) {
663 u16 *word = (u16 *)&buffer[j];
664
665 *word = (j & 0x02) ? 0x0000 : 0xffff;
666 }
667 k = j;
668 /* fill with crosstalk (alternating 0x5555 0xaaa)
669 * (test c) */
670 for ( ; j < min(len, k + 32); j += 2) {
671 u16 *word = (u16 *)&buffer[j];
672
673 *word = (j & 0x02) ? 0x5555 : 0xaaaa;
674 }
675 k = j;
676 /* fill with shifting bits (test d) */
677 for ( ; j < min(len, k + 32); j += 4) {
678 u32 *word = (unsigned int *)&buffer[j];
679 u32 roll = (pattern & 0x80000000) ? 1 : 0;
680
681 *word = pattern;
682 pattern = (pattern << 1) | roll;
683 }
684 /* don't bother with random data (test e) */
685 }
686
687 for (r = 0; r < retries; r++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500688 result = spi_execute(sdev, spi_write_buffer, DMA_TO_DEVICE,
689 buffer, len, &sshdr);
690 if(result || !scsi_device_online(sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 scsi_device_set_state(sdev, SDEV_QUIESCE);
James Bottomley33aa6872005-08-28 11:31:14 -0500693 if (scsi_sense_valid(&sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 && sshdr.sense_key == ILLEGAL_REQUEST
695 /* INVALID FIELD IN CDB */
696 && sshdr.asc == 0x24 && sshdr.ascq == 0x00)
697 /* This would mean that the drive lied
698 * to us about supporting an echo
699 * buffer (unfortunately some Western
700 * Digital drives do precisely this)
701 */
702 return SPI_COMPARE_SKIP_TEST;
703
704
James Bottomley9ccfc752005-10-02 11:45:08 -0500705 sdev_printk(KERN_ERR, sdev, "Write Buffer failure %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return SPI_COMPARE_FAILURE;
707 }
708
709 memset(ptr, 0, len);
James Bottomley33aa6872005-08-28 11:31:14 -0500710 spi_execute(sdev, spi_read_buffer, DMA_FROM_DEVICE,
711 ptr, len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 scsi_device_set_state(sdev, SDEV_QUIESCE);
713
714 if (memcmp(buffer, ptr, len) != 0)
715 return SPI_COMPARE_FAILURE;
716 }
717 return SPI_COMPARE_SUCCESS;
718}
719
720/* This is for the simplest form of Domain Validation: a read test
721 * on the inquiry data from the device */
722static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500723spi_dv_device_compare_inquiry(struct scsi_device *sdev, u8 *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 u8 *ptr, const int retries)
725{
James Bottomley33aa6872005-08-28 11:31:14 -0500726 int r, result;
727 const int len = sdev->inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 const char spi_inquiry[] = {
729 INQUIRY, 0, 0, 0, len, 0
730 };
731
732 for (r = 0; r < retries; r++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 memset(ptr, 0, len);
734
James Bottomley33aa6872005-08-28 11:31:14 -0500735 result = spi_execute(sdev, spi_inquiry, DMA_FROM_DEVICE,
736 ptr, len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
James Bottomley33aa6872005-08-28 11:31:14 -0500738 if(result || !scsi_device_online(sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 scsi_device_set_state(sdev, SDEV_QUIESCE);
740 return SPI_COMPARE_FAILURE;
741 }
742
743 /* If we don't have the inquiry data already, the
744 * first read gets it */
745 if (ptr == buffer) {
746 ptr += len;
747 --r;
748 continue;
749 }
750
751 if (memcmp(buffer, ptr, len) != 0)
752 /* failure */
753 return SPI_COMPARE_FAILURE;
754 }
755 return SPI_COMPARE_SUCCESS;
756}
757
758static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500759spi_dv_retrain(struct scsi_device *sdev, u8 *buffer, u8 *ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500761 (*compare_fn)(struct scsi_device *, u8 *, u8 *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
James Bottomley33aa6872005-08-28 11:31:14 -0500763 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500764 struct scsi_target *starget = sdev->sdev_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 int period = 0, prevperiod = 0;
766 enum spi_compare_returns retval;
767
768
769 for (;;) {
770 int newperiod;
James Bottomley33aa6872005-08-28 11:31:14 -0500771 retval = compare_fn(sdev, buffer, ptr, DV_LOOPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773 if (retval == SPI_COMPARE_SUCCESS
774 || retval == SPI_COMPARE_SKIP_TEST)
775 break;
776
777 /* OK, retrain, fallback */
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500778 if (i->f->get_iu)
779 i->f->get_iu(starget);
780 if (i->f->get_qas)
781 i->f->get_qas(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (i->f->get_period)
783 i->f->get_period(sdev->sdev_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500785 /* Here's the fallback sequence; first try turning off
786 * IU, then QAS (if we can control them), then finally
787 * fall down the periods */
788 if (i->f->set_iu && spi_iu(starget)) {
Masanari Iida804ff602015-05-07 23:21:27 +0900789 starget_printk(KERN_ERR, starget, "Domain Validation Disabling Information Units\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500790 DV_SET(iu, 0);
791 } else if (i->f->set_qas && spi_qas(starget)) {
Masanari Iida804ff602015-05-07 23:21:27 +0900792 starget_printk(KERN_ERR, starget, "Domain Validation Disabling Quick Arbitration and Selection\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500793 DV_SET(qas, 0);
794 } else {
795 newperiod = spi_period(starget);
796 period = newperiod > period ? newperiod : period;
797 if (period < 0x0d)
798 period++;
799 else
800 period += period >> 1;
801
802 if (unlikely(period > 0xff || period == prevperiod)) {
803 /* Total failure; set to async and return */
James Bottomley9ccfc752005-10-02 11:45:08 -0500804 starget_printk(KERN_ERR, starget, "Domain Validation Failure, dropping back to Asynchronous\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500805 DV_SET(offset, 0);
806 return SPI_COMPARE_FAILURE;
807 }
James Bottomley9ccfc752005-10-02 11:45:08 -0500808 starget_printk(KERN_ERR, starget, "Domain Validation detected failure, dropping back\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500809 DV_SET(period, period);
810 prevperiod = period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813 return retval;
814}
815
816static int
James Bottomley33aa6872005-08-28 11:31:14 -0500817spi_dv_device_get_echo_buffer(struct scsi_device *sdev, u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
James Bottomley33aa6872005-08-28 11:31:14 -0500819 int l, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* first off do a test unit ready. This can error out
822 * because of reservations or some other reason. If it
823 * fails, the device won't let us write to the echo buffer
824 * so just return failure */
825
826 const char spi_test_unit_ready[] = {
827 TEST_UNIT_READY, 0, 0, 0, 0, 0
828 };
829
830 const char spi_read_buffer_descriptor[] = {
831 READ_BUFFER, 0x0b, 0, 0, 0, 0, 0, 0, 4, 0
832 };
833
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 /* We send a set of three TURs to clear any outstanding
836 * unit attention conditions if they exist (Otherwise the
837 * buffer tests won't be happy). If the TUR still fails
838 * (reservation conflict, device not ready, etc) just
839 * skip the write tests */
840 for (l = 0; ; l++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500841 result = spi_execute(sdev, spi_test_unit_ready, DMA_NONE,
842 NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
James Bottomley33aa6872005-08-28 11:31:14 -0500844 if(result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if(l >= 3)
846 return 0;
847 } else {
848 /* TUR succeeded */
849 break;
850 }
851 }
852
James Bottomley33aa6872005-08-28 11:31:14 -0500853 result = spi_execute(sdev, spi_read_buffer_descriptor,
854 DMA_FROM_DEVICE, buffer, 4, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
James Bottomley33aa6872005-08-28 11:31:14 -0500856 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /* Device has no echo buffer */
858 return 0;
859
860 return buffer[3] + ((buffer[2] & 0x1f) << 8);
861}
862
863static void
James Bottomley33aa6872005-08-28 11:31:14 -0500864spi_dv_device_internal(struct scsi_device *sdev, u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
James Bottomley33aa6872005-08-28 11:31:14 -0500866 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
James Bottomley 62a86122005-05-06 18:05:20 -0500867 struct scsi_target *starget = sdev->sdev_target;
James Bottomley60eef252006-06-10 10:51:23 -0500868 struct Scsi_Host *shost = sdev->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int len = sdev->inquiry_len;
James Bottomley23028272007-09-22 08:40:09 -0500870 int min_period = spi_min_period(starget);
871 int max_width = spi_max_width(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /* first set us up for narrow async */
873 DV_SET(offset, 0);
874 DV_SET(width, 0);
James Bottomley23028272007-09-22 08:40:09 -0500875
James Bottomley33aa6872005-08-28 11:31:14 -0500876 if (spi_dv_device_compare_inquiry(sdev, buffer, buffer, DV_LOOPS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 != SPI_COMPARE_SUCCESS) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500878 starget_printk(KERN_ERR, starget, "Domain Validation Initial Inquiry Failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /* FIXME: should probably offline the device here? */
880 return;
881 }
882
James Bottomley9872b812009-06-17 15:03:41 -0400883 if (!spi_support_wide(starget)) {
James Bottomley23028272007-09-22 08:40:09 -0500884 spi_max_width(starget) = 0;
885 max_width = 0;
886 }
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /* test width */
James Bottomley23028272007-09-22 08:40:09 -0500889 if (i->f->set_width && max_width) {
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500890 i->f->set_width(starget, 1);
James Bottomley 62a86122005-05-06 18:05:20 -0500891
James Bottomley33aa6872005-08-28 11:31:14 -0500892 if (spi_dv_device_compare_inquiry(sdev, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 buffer + len,
894 DV_LOOPS)
895 != SPI_COMPARE_SUCCESS) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500896 starget_printk(KERN_ERR, starget, "Wide Transfers Fail\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500897 i->f->set_width(starget, 0);
James Bottomley23028272007-09-22 08:40:09 -0500898 /* Make sure we don't force wide back on by asking
899 * for a transfer period that requires it */
900 max_width = 0;
901 if (min_period < 10)
902 min_period = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904 }
905
906 if (!i->f->set_period)
907 return;
908
909 /* device can't handle synchronous */
James Bottomley9872b812009-06-17 15:03:41 -0400910 if (!spi_support_sync(starget) && !spi_support_dt(starget))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return;
912
James Bottomley349cd7c2005-11-28 15:41:58 -0600913 /* len == -1 is the signal that we need to ascertain the
914 * presence of an echo buffer before trying to use it. len ==
915 * 0 means we don't have an echo buffer */
916 len = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 retry:
919
920 /* now set up to the maximum */
James Bottomley 62a86122005-05-06 18:05:20 -0500921 DV_SET(offset, spi_max_offset(starget));
James Bottomley23028272007-09-22 08:40:09 -0500922 DV_SET(period, min_period);
923
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500924 /* try QAS requests; this should be harmless to set if the
925 * target supports it */
James Bottomley9872b812009-06-17 15:03:41 -0400926 if (spi_support_qas(starget) && spi_max_qas(starget)) {
James Bottomleyeb1dd682005-07-02 12:22:01 -0400927 DV_SET(qas, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400928 } else {
929 DV_SET(qas, 0);
930 }
931
James Bottomley9872b812009-06-17 15:03:41 -0400932 if (spi_support_ius(starget) && spi_max_iu(starget) &&
933 min_period < 9) {
James Bottomleydfdc58b2006-09-20 12:00:18 -0400934 /* This u320 (or u640). Set IU transfers */
James Bottomleyeb1dd682005-07-02 12:22:01 -0400935 DV_SET(iu, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400936 /* Then set the optional parameters */
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500937 DV_SET(rd_strm, 1);
938 DV_SET(wr_flow, 1);
939 DV_SET(rti, 1);
James Bottomley23028272007-09-22 08:40:09 -0500940 if (min_period == 8)
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500941 DV_SET(pcomp_en, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400942 } else {
943 DV_SET(iu, 0);
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500944 }
James Bottomleydfdc58b2006-09-20 12:00:18 -0400945
James Bottomley60eef252006-06-10 10:51:23 -0500946 /* now that we've done all this, actually check the bus
947 * signal type (if known). Some devices are stupid on
948 * a SE bus and still claim they can try LVD only settings */
949 if (i->f->get_signalling)
950 i->f->get_signalling(shost);
951 if (spi_signalling(shost) == SPI_SIGNAL_SE ||
James Bottomleydfdc58b2006-09-20 12:00:18 -0400952 spi_signalling(shost) == SPI_SIGNAL_HVD ||
James Bottomley9872b812009-06-17 15:03:41 -0400953 !spi_support_dt(starget)) {
James Bottomley60eef252006-06-10 10:51:23 -0500954 DV_SET(dt, 0);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400955 } else {
956 DV_SET(dt, 1);
957 }
James Bottomley23028272007-09-22 08:40:09 -0500958 /* set width last because it will pull all the other
959 * parameters down to required values */
960 DV_SET(width, max_width);
961
James Bottomley349cd7c2005-11-28 15:41:58 -0600962 /* Do the read only INQUIRY tests */
963 spi_dv_retrain(sdev, buffer, buffer + sdev->inquiry_len,
964 spi_dv_device_compare_inquiry);
965 /* See if we actually managed to negotiate and sustain DT */
966 if (i->f->get_dt)
967 i->f->get_dt(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
James Bottomley349cd7c2005-11-28 15:41:58 -0600969 /* see if the device has an echo buffer. If it does we can do
970 * the SPI pattern write tests. Because of some broken
971 * devices, we *only* try this on a device that has actually
972 * negotiated DT */
973
974 if (len == -1 && spi_dt(starget))
975 len = spi_dv_device_get_echo_buffer(sdev, buffer);
976
977 if (len <= 0) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500978 starget_printk(KERN_INFO, starget, "Domain Validation skipping write tests\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return;
980 }
981
982 if (len > SPI_MAX_ECHO_BUFFER_SIZE) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500983 starget_printk(KERN_WARNING, starget, "Echo buffer size %d is too big, trimming to %d\n", len, SPI_MAX_ECHO_BUFFER_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 len = SPI_MAX_ECHO_BUFFER_SIZE;
985 }
986
James Bottomley33aa6872005-08-28 11:31:14 -0500987 if (spi_dv_retrain(sdev, buffer, buffer + len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 spi_dv_device_echo_buffer)
989 == SPI_COMPARE_SKIP_TEST) {
990 /* OK, the stupid drive can't do a write echo buffer
991 * test after all, fall back to the read tests */
992 len = 0;
993 goto retry;
994 }
995}
996
997
998/** spi_dv_device - Do Domain Validation on the device
999 * @sdev: scsi device to validate
1000 *
1001 * Performs the domain validation on the given device in the
1002 * current execution thread. Since DV operations may sleep,
1003 * the current thread must have user context. Also no SCSI
1004 * related locks that would deadlock I/O issued by the DV may
1005 * be held.
1006 */
1007void
1008spi_dv_device(struct scsi_device *sdev)
1009{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 struct scsi_target *starget = sdev->sdev_target;
1011 u8 *buffer;
1012 const int len = SPI_MAX_ECHO_BUFFER_SIZE*2;
1013
Mike Maslenkin89a342c2012-04-28 05:32:14 +04001014 if (unlikely(spi_dv_in_progress(starget)))
James Bottomley33aa6872005-08-28 11:31:14 -05001015 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Mike Maslenkin89a342c2012-04-28 05:32:14 +04001017 if (unlikely(scsi_device_get(sdev)))
James Bottomleydfdc58b2006-09-20 12:00:18 -04001018 return;
1019 spi_dv_in_progress(starget) = 1;
1020
Jes Sorensen24669f752006-01-16 10:31:18 -05001021 buffer = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 if (unlikely(!buffer))
1024 goto out_put;
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /* We need to verify that the actual device will quiesce; the
1027 * later target quiesce is just a nice to have */
1028 if (unlikely(scsi_device_quiesce(sdev)))
1029 goto out_free;
1030
1031 scsi_target_quiesce(starget);
1032
1033 spi_dv_pending(starget) = 1;
Jes Sorensend158d262006-01-13 16:05:44 -08001034 mutex_lock(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
James Bottomley9ccfc752005-10-02 11:45:08 -05001036 starget_printk(KERN_INFO, starget, "Beginning Domain Validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
James Bottomley33aa6872005-08-28 11:31:14 -05001038 spi_dv_device_internal(sdev, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
James Bottomley9ccfc752005-10-02 11:45:08 -05001040 starget_printk(KERN_INFO, starget, "Ending Domain Validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Jes Sorensend158d262006-01-13 16:05:44 -08001042 mutex_unlock(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 spi_dv_pending(starget) = 0;
1044
1045 scsi_target_resume(starget);
1046
1047 spi_initial_dv(starget) = 1;
1048
1049 out_free:
1050 kfree(buffer);
1051 out_put:
James Bottomleydfdc58b2006-09-20 12:00:18 -04001052 spi_dv_in_progress(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 scsi_device_put(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055EXPORT_SYMBOL(spi_dv_device);
1056
1057struct work_queue_wrapper {
1058 struct work_struct work;
1059 struct scsi_device *sdev;
1060};
1061
1062static void
David Howellsc4028952006-11-22 14:57:56 +00001063spi_dv_device_work_wrapper(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
David Howellsc4028952006-11-22 14:57:56 +00001065 struct work_queue_wrapper *wqw =
1066 container_of(work, struct work_queue_wrapper, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct scsi_device *sdev = wqw->sdev;
1068
1069 kfree(wqw);
1070 spi_dv_device(sdev);
1071 spi_dv_pending(sdev->sdev_target) = 0;
1072 scsi_device_put(sdev);
1073}
1074
1075
1076/**
1077 * spi_schedule_dv_device - schedule domain validation to occur on the device
1078 * @sdev: The device to validate
1079 *
1080 * Identical to spi_dv_device() above, except that the DV will be
1081 * scheduled to occur in a workqueue later. All memory allocations
1082 * are atomic, so may be called from any context including those holding
1083 * SCSI locks.
1084 */
1085void
1086spi_schedule_dv_device(struct scsi_device *sdev)
1087{
1088 struct work_queue_wrapper *wqw =
1089 kmalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC);
1090
1091 if (unlikely(!wqw))
1092 return;
1093
1094 if (unlikely(spi_dv_pending(sdev->sdev_target))) {
1095 kfree(wqw);
1096 return;
1097 }
1098 /* Set pending early (dv_device doesn't check it, only sets it) */
1099 spi_dv_pending(sdev->sdev_target) = 1;
1100 if (unlikely(scsi_device_get(sdev))) {
1101 kfree(wqw);
1102 spi_dv_pending(sdev->sdev_target) = 0;
1103 return;
1104 }
1105
David Howellsc4028952006-11-22 14:57:56 +00001106 INIT_WORK(&wqw->work, spi_dv_device_work_wrapper);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 wqw->sdev = sdev;
1108
1109 schedule_work(&wqw->work);
1110}
1111EXPORT_SYMBOL(spi_schedule_dv_device);
1112
1113/**
1114 * spi_display_xfer_agreement - Print the current target transfer agreement
1115 * @starget: The target for which to display the agreement
1116 *
1117 * Each SPI port is required to maintain a transfer agreement for each
1118 * other port on the bus. This function prints a one-line summary of
1119 * the current agreement; more detailed information is available in sysfs.
1120 */
1121void spi_display_xfer_agreement(struct scsi_target *starget)
1122{
1123 struct spi_transport_attrs *tp;
1124 tp = (struct spi_transport_attrs *)&starget->starget_data;
1125
1126 if (tp->offset > 0 && tp->period > 0) {
1127 unsigned int picosec, kb100;
1128 char *scsi = "FAST-?";
1129 char tmp[8];
1130
1131 if (tp->period <= SPI_STATIC_PPR) {
1132 picosec = ppr_to_ps[tp->period];
1133 switch (tp->period) {
1134 case 7: scsi = "FAST-320"; break;
1135 case 8: scsi = "FAST-160"; break;
1136 case 9: scsi = "FAST-80"; break;
1137 case 10:
1138 case 11: scsi = "FAST-40"; break;
1139 case 12: scsi = "FAST-20"; break;
1140 }
1141 } else {
1142 picosec = tp->period * 4000;
1143 if (tp->period < 25)
1144 scsi = "FAST-20";
1145 else if (tp->period < 50)
1146 scsi = "FAST-10";
1147 else
1148 scsi = "FAST-5";
1149 }
1150
1151 kb100 = (10000000 + picosec / 2) / picosec;
1152 if (tp->width)
1153 kb100 *= 2;
1154 sprint_frac(tmp, picosec, 1000);
1155
1156 dev_info(&starget->dev,
James Bottomleyd872ebe2005-08-03 15:43:52 -05001157 "%s %sSCSI %d.%d MB/s %s%s%s%s%s%s%s%s (%s ns, offset %d)\n",
1158 scsi, tp->width ? "WIDE " : "", kb100/10, kb100 % 10,
1159 tp->dt ? "DT" : "ST",
1160 tp->iu ? " IU" : "",
1161 tp->qas ? " QAS" : "",
1162 tp->rd_strm ? " RDSTRM" : "",
1163 tp->rti ? " RTI" : "",
1164 tp->wr_flow ? " WRFLOW" : "",
1165 tp->pcomp_en ? " PCOMP" : "",
1166 tp->hold_mcs ? " HMCS" : "",
1167 tmp, tp->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 } else {
Matthew Wilcox493ff4e2005-11-17 11:13:43 -07001169 dev_info(&starget->dev, "%sasynchronous\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 tp->width ? "wide " : "");
1171 }
1172}
1173EXPORT_SYMBOL(spi_display_xfer_agreement);
1174
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001175int spi_populate_width_msg(unsigned char *msg, int width)
1176{
1177 msg[0] = EXTENDED_MESSAGE;
1178 msg[1] = 2;
1179 msg[2] = EXTENDED_WDTR;
1180 msg[3] = width;
1181 return 4;
1182}
James Bottomley38e14f82006-02-17 14:58:47 -08001183EXPORT_SYMBOL_GPL(spi_populate_width_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001184
1185int spi_populate_sync_msg(unsigned char *msg, int period, int offset)
1186{
1187 msg[0] = EXTENDED_MESSAGE;
1188 msg[1] = 3;
1189 msg[2] = EXTENDED_SDTR;
1190 msg[3] = period;
1191 msg[4] = offset;
1192 return 5;
1193}
James Bottomley38e14f82006-02-17 14:58:47 -08001194EXPORT_SYMBOL_GPL(spi_populate_sync_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001195
1196int spi_populate_ppr_msg(unsigned char *msg, int period, int offset,
1197 int width, int options)
1198{
1199 msg[0] = EXTENDED_MESSAGE;
1200 msg[1] = 6;
1201 msg[2] = EXTENDED_PPR;
1202 msg[3] = period;
1203 msg[4] = 0;
1204 msg[5] = offset;
1205 msg[6] = width;
1206 msg[7] = options;
1207 return 8;
1208}
James Bottomley38e14f82006-02-17 14:58:47 -08001209EXPORT_SYMBOL_GPL(spi_populate_ppr_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001210
Christoph Hellwig50668632014-10-30 14:30:06 +01001211/**
1212 * spi_populate_tag_msg - place a tag message in a buffer
1213 * @msg: pointer to the area to place the tag
1214 * @cmd: pointer to the scsi command for the tag
1215 *
1216 * Notes:
1217 * designed to create the correct type of tag message for the
1218 * particular request. Returns the size of the tag message.
1219 * May return 0 if TCQ is disabled for this device.
1220 **/
1221int spi_populate_tag_msg(unsigned char *msg, struct scsi_cmnd *cmd)
1222{
1223 if (cmd->flags & SCMD_TAGGED) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001224 *msg++ = SIMPLE_QUEUE_TAG;
Christoph Hellwig50668632014-10-30 14:30:06 +01001225 *msg++ = cmd->request->tag;
1226 return 2;
1227 }
1228
1229 return 0;
1230}
1231EXPORT_SYMBOL_GPL(spi_populate_tag_msg);
1232
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001233#ifdef CONFIG_SCSI_CONSTANTS
1234static const char * const one_byte_msgs[] = {
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001235/* 0x00 */ "Task Complete", NULL /* Extended Message */, "Save Pointers",
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001236/* 0x03 */ "Restore Pointers", "Disconnect", "Initiator Error",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001237/* 0x06 */ "Abort Task Set", "Message Reject", "Nop", "Message Parity Error",
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001238/* 0x0a */ "Linked Command Complete", "Linked Command Complete w/flag",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001239/* 0x0c */ "Target Reset", "Abort Task", "Clear Task Set",
1240/* 0x0f */ "Initiate Recovery", "Release Recovery",
1241/* 0x11 */ "Terminate Process", "Continue Task", "Target Transfer Disable",
1242/* 0x14 */ NULL, NULL, "Clear ACA", "LUN Reset"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001243};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001244
1245static const char * const two_byte_msgs[] = {
Matthew Wilcox47972152005-12-15 16:22:01 -05001246/* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001247/* 0x23 */ "Ignore Wide Residue", "ACA"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001248};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001249
1250static const char * const extended_msgs[] = {
1251/* 0x00 */ "Modify Data Pointer", "Synchronous Data Transfer Request",
Matthew Wilcoxef725822005-12-15 16:22:01 -05001252/* 0x02 */ "SCSI-I Extended Identify", "Wide Data Transfer Request",
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001253/* 0x04 */ "Parallel Protocol Request", "Modify Bidirectional Data Pointer"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001254};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001255
Adrian Bunkbdd70f22006-01-05 23:39:18 +01001256static void print_nego(const unsigned char *msg, int per, int off, int width)
Matthew Wilcoxef725822005-12-15 16:22:01 -05001257{
1258 if (per) {
1259 char buf[20];
1260 period_to_str(buf, msg[per]);
1261 printk("period = %s ns ", buf);
1262 }
1263
1264 if (off)
1265 printk("offset = %d ", msg[off]);
1266 if (width)
1267 printk("width = %d ", 8 << msg[width]);
1268}
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001269
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001270static void print_ptr(const unsigned char *msg, int msb, const char *desc)
1271{
1272 int ptr = (msg[msb] << 24) | (msg[msb+1] << 16) | (msg[msb+2] << 8) |
1273 msg[msb+3];
1274 printk("%s = %d ", desc, ptr);
1275}
1276
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001277int spi_print_msg(const unsigned char *msg)
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001278{
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001279 int len = 1, i;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001280 if (msg[0] == EXTENDED_MESSAGE) {
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001281 len = 2 + msg[1];
1282 if (len == 2)
1283 len += 256;
Matthew Wilcoxb32aaff2005-12-15 16:22:01 -05001284 if (msg[2] < ARRAY_SIZE(extended_msgs))
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001285 printk ("%s ", extended_msgs[msg[2]]);
1286 else
1287 printk ("Extended Message, reserved code (0x%02x) ",
1288 (int) msg[2]);
1289 switch (msg[2]) {
1290 case EXTENDED_MODIFY_DATA_POINTER:
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001291 print_ptr(msg, 3, "pointer");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001292 break;
1293 case EXTENDED_SDTR:
Matthew Wilcoxef725822005-12-15 16:22:01 -05001294 print_nego(msg, 3, 4, 0);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001295 break;
1296 case EXTENDED_WDTR:
Matthew Wilcoxef725822005-12-15 16:22:01 -05001297 print_nego(msg, 0, 0, 3);
1298 break;
1299 case EXTENDED_PPR:
1300 print_nego(msg, 3, 5, 6);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001301 break;
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001302 case EXTENDED_MODIFY_BIDI_DATA_PTR:
1303 print_ptr(msg, 3, "out");
1304 print_ptr(msg, 7, "in");
1305 break;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001306 default:
1307 for (i = 2; i < len; ++i)
1308 printk("%02x ", msg[i]);
1309 }
1310 /* Identify */
1311 } else if (msg[0] & 0x80) {
1312 printk("Identify disconnect %sallowed %s %d ",
1313 (msg[0] & 0x40) ? "" : "not ",
1314 (msg[0] & 0x20) ? "target routine" : "lun",
1315 msg[0] & 0x7);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001316 /* Normal One byte */
1317 } else if (msg[0] < 0x1f) {
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001318 if (msg[0] < ARRAY_SIZE(one_byte_msgs) && one_byte_msgs[msg[0]])
Matthew Wilcoxe24d8732006-02-07 08:05:26 -07001319 printk("%s ", one_byte_msgs[msg[0]]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001320 else
1321 printk("reserved (%02x) ", msg[0]);
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001322 } else if (msg[0] == 0x55) {
1323 printk("QAS Request ");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001324 /* Two byte */
1325 } else if (msg[0] <= 0x2f) {
Matthew Wilcoxb32aaff2005-12-15 16:22:01 -05001326 if ((msg[0] - 0x20) < ARRAY_SIZE(two_byte_msgs))
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001327 printk("%s %02x ", two_byte_msgs[msg[0] - 0x20],
1328 msg[1]);
1329 else
1330 printk("reserved two byte (%02x %02x) ",
1331 msg[0], msg[1]);
1332 len = 2;
1333 } else
Matthew Wilcoxe24d8732006-02-07 08:05:26 -07001334 printk("reserved ");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001335 return len;
1336}
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001337EXPORT_SYMBOL(spi_print_msg);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001338
1339#else /* ifndef CONFIG_SCSI_CONSTANTS */
1340
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001341int spi_print_msg(const unsigned char *msg)
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001342{
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001343 int len = 1, i;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001344
1345 if (msg[0] == EXTENDED_MESSAGE) {
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001346 len = 2 + msg[1];
1347 if (len == 2)
1348 len += 256;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001349 for (i = 0; i < len; ++i)
1350 printk("%02x ", msg[i]);
1351 /* Identify */
1352 } else if (msg[0] & 0x80) {
1353 printk("%02x ", msg[0]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001354 /* Normal One byte */
James Bottomley597705a2006-03-12 09:54:19 -06001355 } else if ((msg[0] < 0x1f) || (msg[0] == 0x55)) {
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001356 printk("%02x ", msg[0]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001357 /* Two byte */
1358 } else if (msg[0] <= 0x2f) {
1359 printk("%02x %02x", msg[0], msg[1]);
1360 len = 2;
1361 } else
1362 printk("%02x ", msg[0]);
1363 return len;
1364}
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001365EXPORT_SYMBOL(spi_print_msg);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001366#endif /* ! CONFIG_SCSI_CONSTANTS */
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368static int spi_device_match(struct attribute_container *cont,
1369 struct device *dev)
1370{
1371 struct scsi_device *sdev;
1372 struct Scsi_Host *shost;
James Bottomley10c1b882005-08-14 14:34:06 -05001373 struct spi_internal *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 if (!scsi_is_sdev_device(dev))
1376 return 0;
1377
1378 sdev = to_scsi_device(dev);
1379 shost = sdev->host;
1380 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1381 != &spi_host_class.class)
1382 return 0;
1383 /* Note: this class has no device attributes, so it has
1384 * no per-HBA allocation and thus we don't need to distinguish
1385 * the attribute containers for the device */
James Bottomley10c1b882005-08-14 14:34:06 -05001386 i = to_spi_internal(shost->transportt);
1387 if (i->f->deny_binding && i->f->deny_binding(sdev->sdev_target))
1388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return 1;
1390}
1391
1392static int spi_target_match(struct attribute_container *cont,
1393 struct device *dev)
1394{
1395 struct Scsi_Host *shost;
James Bottomley10c1b882005-08-14 14:34:06 -05001396 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 struct spi_internal *i;
1398
1399 if (!scsi_is_target_device(dev))
1400 return 0;
1401
1402 shost = dev_to_shost(dev->parent);
1403 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1404 != &spi_host_class.class)
1405 return 0;
1406
1407 i = to_spi_internal(shost->transportt);
James Bottomley10c1b882005-08-14 14:34:06 -05001408 starget = to_scsi_target(dev);
1409
1410 if (i->f->deny_binding && i->f->deny_binding(starget))
1411 return 0;
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return &i->t.target_attrs.ac == cont;
1414}
1415
1416static DECLARE_TRANSPORT_CLASS(spi_transport_class,
1417 "spi_transport",
1418 spi_setup_transport_attrs,
1419 NULL,
James Bottomley9b161a42008-01-05 10:18:27 -06001420 spi_target_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422static DECLARE_ANON_TRANSPORT_CLASS(spi_device_class,
1423 spi_device_match,
1424 spi_device_configure);
1425
James Bottomley9b161a42008-01-05 10:18:27 -06001426static struct attribute *host_attributes[] = {
Tony Jonesee959b02008-02-22 00:13:36 +01001427 &dev_attr_signalling.attr,
Hannes Reinecke0ac23772011-06-30 02:19:57 +05301428 &dev_attr_host_width.attr,
1429 &dev_attr_hba_id.attr,
James Bottomley9b161a42008-01-05 10:18:27 -06001430 NULL
1431};
1432
1433static struct attribute_group host_attribute_group = {
1434 .attrs = host_attributes,
1435};
1436
1437static int spi_host_configure(struct transport_container *tc,
1438 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +01001439 struct device *cdev)
James Bottomley9b161a42008-01-05 10:18:27 -06001440{
1441 struct kobject *kobj = &cdev->kobj;
1442 struct Scsi_Host *shost = transport_class_to_shost(cdev);
1443 struct spi_internal *si = to_spi_internal(shost->transportt);
Tony Jonesee959b02008-02-22 00:13:36 +01001444 struct attribute *attr = &dev_attr_signalling.attr;
James Bottomley9b161a42008-01-05 10:18:27 -06001445 int rc = 0;
1446
1447 if (si->f->set_signalling)
1448 rc = sysfs_chmod_file(kobj, attr, attr->mode | S_IWUSR);
1449
1450 return rc;
1451}
1452
1453/* returns true if we should be showing the variable. Also
1454 * overloads the return by setting 1<<1 if the attribute should
1455 * be writeable */
1456#define TARGET_ATTRIBUTE_HELPER(name) \
James Bottomley352f6bb2008-03-20 20:57:02 -05001457 (si->f->show_##name ? S_IRUGO : 0) | \
1458 (si->f->set_##name ? S_IWUSR : 0)
James Bottomley9b161a42008-01-05 10:18:27 -06001459
Al Viro587a1f12011-07-23 23:11:19 -04001460static umode_t target_attribute_is_visible(struct kobject *kobj,
James Bottomley352f6bb2008-03-20 20:57:02 -05001461 struct attribute *attr, int i)
James Bottomley9b161a42008-01-05 10:18:27 -06001462{
Tony Jonesee959b02008-02-22 00:13:36 +01001463 struct device *cdev = container_of(kobj, struct device, kobj);
James Bottomley9b161a42008-01-05 10:18:27 -06001464 struct scsi_target *starget = transport_class_to_starget(cdev);
1465 struct Scsi_Host *shost = transport_class_to_shost(cdev);
1466 struct spi_internal *si = to_spi_internal(shost->transportt);
1467
Tony Jonesee959b02008-02-22 00:13:36 +01001468 if (attr == &dev_attr_period.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001469 spi_support_sync(starget))
1470 return TARGET_ATTRIBUTE_HELPER(period);
Tony Jonesee959b02008-02-22 00:13:36 +01001471 else if (attr == &dev_attr_min_period.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001472 spi_support_sync(starget))
1473 return TARGET_ATTRIBUTE_HELPER(period);
Tony Jonesee959b02008-02-22 00:13:36 +01001474 else if (attr == &dev_attr_offset.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001475 spi_support_sync(starget))
1476 return TARGET_ATTRIBUTE_HELPER(offset);
Tony Jonesee959b02008-02-22 00:13:36 +01001477 else if (attr == &dev_attr_max_offset.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001478 spi_support_sync(starget))
1479 return TARGET_ATTRIBUTE_HELPER(offset);
Tony Jonesee959b02008-02-22 00:13:36 +01001480 else if (attr == &dev_attr_width.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001481 spi_support_wide(starget))
1482 return TARGET_ATTRIBUTE_HELPER(width);
Tony Jonesee959b02008-02-22 00:13:36 +01001483 else if (attr == &dev_attr_max_width.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001484 spi_support_wide(starget))
1485 return TARGET_ATTRIBUTE_HELPER(width);
Tony Jonesee959b02008-02-22 00:13:36 +01001486 else if (attr == &dev_attr_iu.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001487 spi_support_ius(starget))
1488 return TARGET_ATTRIBUTE_HELPER(iu);
James Bottomleyea443192009-06-13 12:19:05 -05001489 else if (attr == &dev_attr_max_iu.attr &&
1490 spi_support_ius(starget))
1491 return TARGET_ATTRIBUTE_HELPER(iu);
Tony Jonesee959b02008-02-22 00:13:36 +01001492 else if (attr == &dev_attr_dt.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001493 spi_support_dt(starget))
1494 return TARGET_ATTRIBUTE_HELPER(dt);
Tony Jonesee959b02008-02-22 00:13:36 +01001495 else if (attr == &dev_attr_qas.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001496 spi_support_qas(starget))
1497 return TARGET_ATTRIBUTE_HELPER(qas);
James Bottomleyea443192009-06-13 12:19:05 -05001498 else if (attr == &dev_attr_max_qas.attr &&
1499 spi_support_qas(starget))
1500 return TARGET_ATTRIBUTE_HELPER(qas);
Tony Jonesee959b02008-02-22 00:13:36 +01001501 else if (attr == &dev_attr_wr_flow.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001502 spi_support_ius(starget))
1503 return TARGET_ATTRIBUTE_HELPER(wr_flow);
Tony Jonesee959b02008-02-22 00:13:36 +01001504 else if (attr == &dev_attr_rd_strm.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001505 spi_support_ius(starget))
1506 return TARGET_ATTRIBUTE_HELPER(rd_strm);
Tony Jonesee959b02008-02-22 00:13:36 +01001507 else if (attr == &dev_attr_rti.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001508 spi_support_ius(starget))
1509 return TARGET_ATTRIBUTE_HELPER(rti);
Tony Jonesee959b02008-02-22 00:13:36 +01001510 else if (attr == &dev_attr_pcomp_en.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001511 spi_support_ius(starget))
1512 return TARGET_ATTRIBUTE_HELPER(pcomp_en);
Tony Jonesee959b02008-02-22 00:13:36 +01001513 else if (attr == &dev_attr_hold_mcs.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001514 spi_support_ius(starget))
1515 return TARGET_ATTRIBUTE_HELPER(hold_mcs);
Tony Jonesee959b02008-02-22 00:13:36 +01001516 else if (attr == &dev_attr_revalidate.attr)
James Bottomley352f6bb2008-03-20 20:57:02 -05001517 return S_IWUSR;
James Bottomley9b161a42008-01-05 10:18:27 -06001518
1519 return 0;
1520}
1521
1522static struct attribute *target_attributes[] = {
Tony Jonesee959b02008-02-22 00:13:36 +01001523 &dev_attr_period.attr,
1524 &dev_attr_min_period.attr,
1525 &dev_attr_offset.attr,
1526 &dev_attr_max_offset.attr,
1527 &dev_attr_width.attr,
1528 &dev_attr_max_width.attr,
1529 &dev_attr_iu.attr,
James Bottomleyea443192009-06-13 12:19:05 -05001530 &dev_attr_max_iu.attr,
Tony Jonesee959b02008-02-22 00:13:36 +01001531 &dev_attr_dt.attr,
1532 &dev_attr_qas.attr,
James Bottomleyea443192009-06-13 12:19:05 -05001533 &dev_attr_max_qas.attr,
Tony Jonesee959b02008-02-22 00:13:36 +01001534 &dev_attr_wr_flow.attr,
1535 &dev_attr_rd_strm.attr,
1536 &dev_attr_rti.attr,
1537 &dev_attr_pcomp_en.attr,
1538 &dev_attr_hold_mcs.attr,
1539 &dev_attr_revalidate.attr,
James Bottomley9b161a42008-01-05 10:18:27 -06001540 NULL
1541};
1542
1543static struct attribute_group target_attribute_group = {
1544 .attrs = target_attributes,
1545 .is_visible = target_attribute_is_visible,
1546};
1547
1548static int spi_target_configure(struct transport_container *tc,
1549 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +01001550 struct device *cdev)
James Bottomley9b161a42008-01-05 10:18:27 -06001551{
1552 struct kobject *kobj = &cdev->kobj;
James Bottomley9b161a42008-01-05 10:18:27 -06001553
James Bottomley352f6bb2008-03-20 20:57:02 -05001554 /* force an update based on parameters read from the device */
1555 sysfs_update_group(kobj, &target_attribute_group);
James Bottomley9b161a42008-01-05 10:18:27 -06001556
1557 return 0;
1558}
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560struct scsi_transport_template *
1561spi_attach_transport(struct spi_function_template *ft)
1562{
Jes Sorensen24669f752006-01-16 10:31:18 -05001563 struct spi_internal *i = kzalloc(sizeof(struct spi_internal),
1564 GFP_KERNEL);
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (unlikely(!i))
1567 return NULL;
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 i->t.target_attrs.ac.class = &spi_transport_class.class;
James Bottomley9b161a42008-01-05 10:18:27 -06001570 i->t.target_attrs.ac.grp = &target_attribute_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 i->t.target_attrs.ac.match = spi_target_match;
1572 transport_container_register(&i->t.target_attrs);
1573 i->t.target_size = sizeof(struct spi_transport_attrs);
1574 i->t.host_attrs.ac.class = &spi_host_class.class;
James Bottomley9b161a42008-01-05 10:18:27 -06001575 i->t.host_attrs.ac.grp = &host_attribute_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 i->t.host_attrs.ac.match = spi_host_match;
1577 transport_container_register(&i->t.host_attrs);
1578 i->t.host_size = sizeof(struct spi_host_attrs);
1579 i->f = ft;
1580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return &i->t;
1582}
1583EXPORT_SYMBOL(spi_attach_transport);
1584
1585void spi_release_transport(struct scsi_transport_template *t)
1586{
1587 struct spi_internal *i = to_spi_internal(t);
1588
1589 transport_container_unregister(&i->t.target_attrs);
1590 transport_container_unregister(&i->t.host_attrs);
1591
1592 kfree(i);
1593}
1594EXPORT_SYMBOL(spi_release_transport);
1595
1596static __init int spi_transport_init(void)
1597{
James Bottomleya9e0edb2009-06-17 19:05:05 +00001598 int error = scsi_dev_info_add_list(SCSI_DEVINFO_SPI,
1599 "SCSI Parallel Transport Class");
1600 if (!error) {
1601 int i;
1602
1603 for (i = 0; spi_static_device_list[i].vendor; i++)
1604 scsi_dev_info_list_add_keyed(1, /* compatible */
1605 spi_static_device_list[i].vendor,
1606 spi_static_device_list[i].model,
1607 NULL,
1608 spi_static_device_list[i].flags,
1609 SCSI_DEVINFO_SPI);
1610 }
1611
1612 error = transport_class_register(&spi_transport_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (error)
1614 return error;
1615 error = anon_transport_class_register(&spi_device_class);
1616 return transport_class_register(&spi_host_class);
1617}
1618
1619static void __exit spi_transport_exit(void)
1620{
1621 transport_class_unregister(&spi_transport_class);
1622 anon_transport_class_unregister(&spi_device_class);
1623 transport_class_unregister(&spi_host_class);
James Bottomleya9e0edb2009-06-17 19:05:05 +00001624 scsi_dev_info_remove_list(SCSI_DEVINFO_SPI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627MODULE_AUTHOR("Martin Hicks");
1628MODULE_DESCRIPTION("SPI Transport Attributes");
1629MODULE_LICENSE("GPL");
1630
1631module_init(spi_transport_init);
1632module_exit(spi_transport_exit);