blob: f49f55c6bfc893b282c6ef74d708edbad0ef5e60 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <scsi/scsi.h>
29#include "scsi_priv.h"
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_host.h>
James Bottomley33aa6872005-08-28 11:31:14 -050032#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <scsi/scsi_eh.h>
34#include <scsi/scsi_transport.h>
35#include <scsi/scsi_transport_spi.h>
36
James Bottomleyd872ebe2005-08-03 15:43:52 -050037#define SPI_NUM_ATTRS 14 /* increase this if you add attributes */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define SPI_OTHER_ATTRS 1 /* Increase this if you add "always
39 * on" attributes */
40#define SPI_HOST_ATTRS 1
41
42#define SPI_MAX_ECHO_BUFFER_SIZE 4096
43
James Bottomley949bf792005-05-01 18:58:15 -050044#define DV_LOOPS 3
45#define DV_TIMEOUT (10*HZ)
46#define DV_RETRIES 3 /* should only need at most
47 * two cc/ua clears */
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Private data accessors (keep these out of the header file) */
James Bottomleydfdc58b2006-09-20 12:00:18 -040050#define spi_dv_in_progress(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_in_progress)
Jes Sorensend158d262006-01-13 16:05:44 -080051#define spi_dv_mutex(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dv_mutex)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53struct spi_internal {
54 struct scsi_transport_template t;
55 struct spi_function_template *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056};
57
58#define to_spi_internal(tmpl) container_of(tmpl, struct spi_internal, t)
59
60static const int ppr_to_ps[] = {
61 /* The PPR values 0-6 are reserved, fill them in when
62 * the committee defines them */
63 -1, /* 0x00 */
64 -1, /* 0x01 */
65 -1, /* 0x02 */
66 -1, /* 0x03 */
67 -1, /* 0x04 */
68 -1, /* 0x05 */
69 -1, /* 0x06 */
70 3125, /* 0x07 */
71 6250, /* 0x08 */
72 12500, /* 0x09 */
73 25000, /* 0x0a */
74 30300, /* 0x0b */
75 50000, /* 0x0c */
76};
77/* The PPR values at which you calculate the period in ns by multiplying
78 * by 4 */
79#define SPI_STATIC_PPR 0x0c
80
81static int sprint_frac(char *dest, int value, int denom)
82{
83 int frac = value % denom;
84 int result = sprintf(dest, "%d", value / denom);
85
86 if (frac == 0)
87 return result;
88 dest[result++] = '.';
89
90 do {
91 denom /= 10;
92 sprintf(dest + result, "%d", frac / denom);
93 result++;
94 frac %= denom;
95 } while (frac);
96
97 dest[result++] = '\0';
98 return result;
99}
100
James Bottomley33aa6872005-08-28 11:31:14 -0500101static int spi_execute(struct scsi_device *sdev, const void *cmd,
102 enum dma_data_direction dir,
103 void *buffer, unsigned bufflen,
104 struct scsi_sense_hdr *sshdr)
James Bottomley949bf792005-05-01 18:58:15 -0500105{
James Bottomley33aa6872005-08-28 11:31:14 -0500106 int i, result;
107 unsigned char sense[SCSI_SENSE_BUFFERSIZE];
James Bottomley949bf792005-05-01 18:58:15 -0500108
109 for(i = 0; i < DV_RETRIES; i++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500110 result = scsi_execute(sdev, cmd, dir, buffer, bufflen,
111 sense, DV_TIMEOUT, /* retries */ 1,
Mike Christie6000a362008-08-19 18:45:30 -0500112 REQ_FAILFAST_DEV |
113 REQ_FAILFAST_TRANSPORT |
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900114 REQ_FAILFAST_DRIVER,
115 NULL);
FUJITA Tomonori4d3fef92008-12-05 15:37:52 +0900116 if (driver_byte(result) & DRIVER_SENSE) {
James Bottomley33aa6872005-08-28 11:31:14 -0500117 struct scsi_sense_hdr sshdr_tmp;
118 if (!sshdr)
119 sshdr = &sshdr_tmp;
James Bottomley949bf792005-05-01 18:58:15 -0500120
James Bottomley4ed381e2006-12-11 09:47:06 -0600121 if (scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE,
James Bottomley33aa6872005-08-28 11:31:14 -0500122 sshdr)
123 && sshdr->sense_key == UNIT_ATTENTION)
James Bottomley949bf792005-05-01 18:58:15 -0500124 continue;
125 }
126 break;
127 }
James Bottomley33aa6872005-08-28 11:31:14 -0500128 return result;
James Bottomley949bf792005-05-01 18:58:15 -0500129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static struct {
132 enum spi_signal_type value;
133 char *name;
134} signal_types[] = {
135 { SPI_SIGNAL_UNKNOWN, "unknown" },
136 { SPI_SIGNAL_SE, "SE" },
137 { SPI_SIGNAL_LVD, "LVD" },
138 { SPI_SIGNAL_HVD, "HVD" },
139};
140
141static inline const char *spi_signal_to_string(enum spi_signal_type type)
142{
143 int i;
144
Tobias Klauser6391a112006-06-08 22:23:48 -0700145 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (type == signal_types[i].value)
147 return signal_types[i].name;
148 }
149 return NULL;
150}
151static inline enum spi_signal_type spi_signal_to_value(const char *name)
152{
153 int i, len;
154
Tobias Klauser6391a112006-06-08 22:23:48 -0700155 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 len = strlen(signal_types[i].name);
157 if (strncmp(name, signal_types[i].name, len) == 0 &&
158 (name[len] == '\n' || name[len] == '\0'))
159 return signal_types[i].value;
160 }
161 return SPI_SIGNAL_UNKNOWN;
162}
163
James Bottomleyd0a7e572005-08-14 17:09:01 -0500164static int spi_host_setup(struct transport_container *tc, struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100165 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct Scsi_Host *shost = dev_to_shost(dev);
168
169 spi_signalling(shost) = SPI_SIGNAL_UNKNOWN;
170
171 return 0;
172}
173
James Bottomley9b161a42008-01-05 10:18:27 -0600174static int spi_host_configure(struct transport_container *tc,
175 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100176 struct device *cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static DECLARE_TRANSPORT_CLASS(spi_host_class,
179 "spi_host",
180 spi_host_setup,
181 NULL,
James Bottomley9b161a42008-01-05 10:18:27 -0600182 spi_host_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184static int spi_host_match(struct attribute_container *cont,
185 struct device *dev)
186{
187 struct Scsi_Host *shost;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
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
James Bottomley9b161a42008-01-05 10:18:27 -0600197 return &shost->transportt->host_attrs.ac == cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
James Bottomley9b161a42008-01-05 10:18:27 -0600200static int spi_target_configure(struct transport_container *tc,
201 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100202 struct device *cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600203
James Bottomleyd0a7e572005-08-14 17:09:01 -0500204static int spi_device_configure(struct transport_container *tc,
205 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100206 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 struct scsi_device *sdev = to_scsi_device(dev);
209 struct scsi_target *starget = sdev->sdev_target;
210
211 /* Populate the target capability fields with the values
212 * gleaned from the device inquiry */
213
214 spi_support_sync(starget) = scsi_device_sync(sdev);
215 spi_support_wide(starget) = scsi_device_wide(sdev);
216 spi_support_dt(starget) = scsi_device_dt(sdev);
217 spi_support_dt_only(starget) = scsi_device_dt_only(sdev);
218 spi_support_ius(starget) = scsi_device_ius(sdev);
219 spi_support_qas(starget) = scsi_device_qas(sdev);
220
221 return 0;
222}
223
James Bottomleyd0a7e572005-08-14 17:09:01 -0500224static int spi_setup_transport_attrs(struct transport_container *tc,
225 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100226 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct scsi_target *starget = to_scsi_target(dev);
229
230 spi_period(starget) = -1; /* illegal value */
James Bottomley 62a86122005-05-06 18:05:20 -0500231 spi_min_period(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 spi_offset(starget) = 0; /* async */
James Bottomley 62a86122005-05-06 18:05:20 -0500233 spi_max_offset(starget) = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 spi_width(starget) = 0; /* narrow */
James Bottomley 62a86122005-05-06 18:05:20 -0500235 spi_max_width(starget) = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 spi_iu(starget) = 0; /* no IU */
237 spi_dt(starget) = 0; /* ST */
238 spi_qas(starget) = 0;
239 spi_wr_flow(starget) = 0;
240 spi_rd_strm(starget) = 0;
241 spi_rti(starget) = 0;
242 spi_pcomp_en(starget) = 0;
James Bottomleyd872ebe2005-08-03 15:43:52 -0500243 spi_hold_mcs(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 spi_dv_pending(starget) = 0;
James Bottomleydfdc58b2006-09-20 12:00:18 -0400245 spi_dv_in_progress(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 spi_initial_dv(starget) = 0;
Jes Sorensend158d262006-01-13 16:05:44 -0800247 mutex_init(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 return 0;
250}
251
James Bottomley 62a86122005-05-06 18:05:20 -0500252#define spi_transport_show_simple(field, format_string) \
253 \
254static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100255show_spi_transport_##field(struct device *dev, \
256 struct device_attribute *attr, char *buf) \
James Bottomley 62a86122005-05-06 18:05:20 -0500257{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100258 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500259 struct spi_transport_attrs *tp; \
260 \
261 tp = (struct spi_transport_attrs *)&starget->starget_data; \
262 return snprintf(buf, 20, format_string, tp->field); \
263}
264
265#define spi_transport_store_simple(field, format_string) \
266 \
267static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100268store_spi_transport_##field(struct device *dev, \
269 struct device_attribute *attr, \
270 const char *buf, size_t count) \
James Bottomley 62a86122005-05-06 18:05:20 -0500271{ \
272 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100273 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500274 struct spi_transport_attrs *tp; \
275 \
276 tp = (struct spi_transport_attrs *)&starget->starget_data; \
277 val = simple_strtoul(buf, NULL, 0); \
278 tp->field = val; \
279 return count; \
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define spi_transport_show_function(field, format_string) \
283 \
284static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100285show_spi_transport_##field(struct device *dev, \
286 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100288 struct scsi_target *starget = transport_class_to_starget(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
290 struct spi_transport_attrs *tp; \
291 struct spi_internal *i = to_spi_internal(shost->transportt); \
292 tp = (struct spi_transport_attrs *)&starget->starget_data; \
293 if (i->f->get_##field) \
294 i->f->get_##field(starget); \
295 return snprintf(buf, 20, format_string, tp->field); \
296}
297
298#define spi_transport_store_function(field, format_string) \
299static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100300store_spi_transport_##field(struct device *dev, \
301 struct device_attribute *attr, \
302 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{ \
304 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100305 struct scsi_target *starget = transport_class_to_starget(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
307 struct spi_internal *i = to_spi_internal(shost->transportt); \
308 \
James Bottomley9b161a42008-01-05 10:18:27 -0600309 if (!i->f->set_##field) \
310 return -EINVAL; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 val = simple_strtoul(buf, NULL, 0); \
James Bottomley9b161a42008-01-05 10:18:27 -0600312 i->f->set_##field(starget, val); \
James Bottomley 62a86122005-05-06 18:05:20 -0500313 return count; \
314}
315
316#define spi_transport_store_max(field, format_string) \
317static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100318store_spi_transport_##field(struct device *dev, \
319 struct device_attribute *attr, \
320 const char *buf, size_t count) \
James Bottomley 62a86122005-05-06 18:05:20 -0500321{ \
322 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100323 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500324 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
325 struct spi_internal *i = to_spi_internal(shost->transportt); \
326 struct spi_transport_attrs *tp \
327 = (struct spi_transport_attrs *)&starget->starget_data; \
328 \
James Bottomley9b161a42008-01-05 10:18:27 -0600329 if (i->f->set_##field) \
330 return -EINVAL; \
James Bottomley 62a86122005-05-06 18:05:20 -0500331 val = simple_strtoul(buf, NULL, 0); \
332 if (val > tp->max_##field) \
333 val = tp->max_##field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 i->f->set_##field(starget, val); \
335 return count; \
336}
337
338#define spi_transport_rd_attr(field, format_string) \
339 spi_transport_show_function(field, format_string) \
340 spi_transport_store_function(field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100341static DEVICE_ATTR(field, S_IRUGO, \
342 show_spi_transport_##field, \
343 store_spi_transport_##field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
James Bottomley 62a86122005-05-06 18:05:20 -0500345#define spi_transport_simple_attr(field, format_string) \
346 spi_transport_show_simple(field, format_string) \
347 spi_transport_store_simple(field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100348static DEVICE_ATTR(field, S_IRUGO, \
349 show_spi_transport_##field, \
350 store_spi_transport_##field);
James Bottomley 62a86122005-05-06 18:05:20 -0500351
352#define spi_transport_max_attr(field, format_string) \
353 spi_transport_show_function(field, format_string) \
354 spi_transport_store_max(field, format_string) \
355 spi_transport_simple_attr(max_##field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100356static DEVICE_ATTR(field, S_IRUGO, \
357 show_spi_transport_##field, \
358 store_spi_transport_##field);
James Bottomley 62a86122005-05-06 18:05:20 -0500359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/* The Parallel SCSI Tranport Attributes: */
James Bottomley 62a86122005-05-06 18:05:20 -0500361spi_transport_max_attr(offset, "%d\n");
362spi_transport_max_attr(width, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363spi_transport_rd_attr(iu, "%d\n");
364spi_transport_rd_attr(dt, "%d\n");
365spi_transport_rd_attr(qas, "%d\n");
366spi_transport_rd_attr(wr_flow, "%d\n");
367spi_transport_rd_attr(rd_strm, "%d\n");
368spi_transport_rd_attr(rti, "%d\n");
369spi_transport_rd_attr(pcomp_en, "%d\n");
James Bottomleyd872ebe2005-08-03 15:43:52 -0500370spi_transport_rd_attr(hold_mcs, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
James Bottomleye8bac9e2008-07-29 12:52:20 -0500372/* we only care about the first child device that's a real SCSI device
373 * so we return 1 to terminate the iteration when we find it */
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800374static int child_iter(struct device *dev, void *data)
375{
James Bottomleye8bac9e2008-07-29 12:52:20 -0500376 if (!scsi_is_sdev_device(dev))
377 return 0;
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800378
James Bottomleye8bac9e2008-07-29 12:52:20 -0500379 spi_dv_device(to_scsi_device(dev));
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800380 return 1;
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100384store_spi_revalidate(struct device *dev, struct device_attribute *attr,
385 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Tony Jonesee959b02008-02-22 00:13:36 +0100387 struct scsi_target *starget = transport_class_to_starget(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800389 device_for_each_child(&starget->dev, NULL, child_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return count;
391}
Tony Jonesee959b02008-02-22 00:13:36 +0100392static DEVICE_ATTR(revalidate, S_IWUSR, NULL, store_spi_revalidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394/* Translate the period into ns according to the current spec
395 * for SDTR/PPR messages */
Matthew Wilcoxef725822005-12-15 16:22:01 -0500396static int period_to_str(char *buf, int period)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 int len, picosec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
James Bottomley 62a86122005-05-06 18:05:20 -0500400 if (period < 0 || period > 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 picosec = -1;
James Bottomley 62a86122005-05-06 18:05:20 -0500402 } else if (period <= SPI_STATIC_PPR) {
403 picosec = ppr_to_ps[period];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 } else {
James Bottomley 62a86122005-05-06 18:05:20 -0500405 picosec = period * 4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
408 if (picosec == -1) {
409 len = sprintf(buf, "reserved");
410 } else {
411 len = sprint_frac(buf, picosec, 1000);
412 }
413
Matthew Wilcoxef725822005-12-15 16:22:01 -0500414 return len;
415}
416
417static ssize_t
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700418show_spi_transport_period_helper(char *buf, int period)
Matthew Wilcoxef725822005-12-15 16:22:01 -0500419{
420 int len = period_to_str(buf, period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 buf[len++] = '\n';
422 buf[len] = '\0';
423 return len;
424}
425
426static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100427store_spi_transport_period_helper(struct device *dev, const char *buf,
James Bottomley 62a86122005-05-06 18:05:20 -0500428 size_t count, int *periodp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int j, picosec, period = -1;
431 char *endp;
432
433 picosec = simple_strtoul(buf, &endp, 10) * 1000;
434 if (*endp == '.') {
435 int mult = 100;
436 do {
437 endp++;
438 if (!isdigit(*endp))
439 break;
440 picosec += (*endp - '0') * mult;
441 mult /= 10;
442 } while (mult > 0);
443 }
444
445 for (j = 0; j <= SPI_STATIC_PPR; j++) {
446 if (ppr_to_ps[j] < picosec)
447 continue;
448 period = j;
449 break;
450 }
451
452 if (period == -1)
453 period = picosec / 4000;
454
455 if (period > 0xff)
456 period = 0xff;
457
James Bottomley 62a86122005-05-06 18:05:20 -0500458 *periodp = period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 return count;
461}
462
James Bottomley 62a86122005-05-06 18:05:20 -0500463static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100464show_spi_transport_period(struct device *dev,
465 struct device_attribute *attr, char *buf)
James Bottomley 62a86122005-05-06 18:05:20 -0500466{
Tony Jonesee959b02008-02-22 00:13:36 +0100467 struct scsi_target *starget = transport_class_to_starget(dev);
James Bottomley 62a86122005-05-06 18:05:20 -0500468 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
469 struct spi_internal *i = to_spi_internal(shost->transportt);
470 struct spi_transport_attrs *tp =
471 (struct spi_transport_attrs *)&starget->starget_data;
472
473 if (i->f->get_period)
474 i->f->get_period(starget);
475
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700476 return show_spi_transport_period_helper(buf, tp->period);
James Bottomley 62a86122005-05-06 18:05:20 -0500477}
478
479static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100480store_spi_transport_period(struct device *cdev, struct device_attribute *attr,
481 const char *buf, size_t count)
James Bottomley 62a86122005-05-06 18:05:20 -0500482{
483 struct scsi_target *starget = transport_class_to_starget(cdev);
484 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
485 struct spi_internal *i = to_spi_internal(shost->transportt);
486 struct spi_transport_attrs *tp =
487 (struct spi_transport_attrs *)&starget->starget_data;
488 int period, retval;
489
James Bottomley9b161a42008-01-05 10:18:27 -0600490 if (!i->f->set_period)
491 return -EINVAL;
492
James Bottomley 62a86122005-05-06 18:05:20 -0500493 retval = store_spi_transport_period_helper(cdev, buf, count, &period);
494
495 if (period < tp->min_period)
496 period = tp->min_period;
497
498 i->f->set_period(starget, period);
499
500 return retval;
501}
502
Tony Jonesee959b02008-02-22 00:13:36 +0100503static DEVICE_ATTR(period, S_IRUGO,
504 show_spi_transport_period,
505 store_spi_transport_period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
James Bottomley 62a86122005-05-06 18:05:20 -0500507static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100508show_spi_transport_min_period(struct device *cdev,
509 struct device_attribute *attr, char *buf)
James Bottomley 62a86122005-05-06 18:05:20 -0500510{
511 struct scsi_target *starget = transport_class_to_starget(cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600512 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
513 struct spi_internal *i = to_spi_internal(shost->transportt);
James Bottomley 62a86122005-05-06 18:05:20 -0500514 struct spi_transport_attrs *tp =
515 (struct spi_transport_attrs *)&starget->starget_data;
516
James Bottomley9b161a42008-01-05 10:18:27 -0600517 if (!i->f->set_period)
518 return -EINVAL;
519
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700520 return show_spi_transport_period_helper(buf, tp->min_period);
James Bottomley 62a86122005-05-06 18:05:20 -0500521}
522
523static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100524store_spi_transport_min_period(struct device *cdev,
525 struct device_attribute *attr,
526 const char *buf, size_t count)
James Bottomley 62a86122005-05-06 18:05:20 -0500527{
528 struct scsi_target *starget = transport_class_to_starget(cdev);
529 struct spi_transport_attrs *tp =
530 (struct spi_transport_attrs *)&starget->starget_data;
531
532 return store_spi_transport_period_helper(cdev, buf, count,
533 &tp->min_period);
534}
535
536
Tony Jonesee959b02008-02-22 00:13:36 +0100537static DEVICE_ATTR(min_period, S_IRUGO,
538 show_spi_transport_min_period,
539 store_spi_transport_min_period);
James Bottomley 62a86122005-05-06 18:05:20 -0500540
541
Tony Jonesee959b02008-02-22 00:13:36 +0100542static ssize_t show_spi_host_signalling(struct device *cdev,
543 struct device_attribute *attr,
544 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 struct Scsi_Host *shost = transport_class_to_shost(cdev);
547 struct spi_internal *i = to_spi_internal(shost->transportt);
548
549 if (i->f->get_signalling)
550 i->f->get_signalling(shost);
551
552 return sprintf(buf, "%s\n", spi_signal_to_string(spi_signalling(shost)));
553}
Tony Jonesee959b02008-02-22 00:13:36 +0100554static ssize_t store_spi_host_signalling(struct device *dev,
555 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 const char *buf, size_t count)
557{
Tony Jonesee959b02008-02-22 00:13:36 +0100558 struct Scsi_Host *shost = transport_class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct spi_internal *i = to_spi_internal(shost->transportt);
560 enum spi_signal_type type = spi_signal_to_value(buf);
561
James Bottomley9b161a42008-01-05 10:18:27 -0600562 if (!i->f->set_signalling)
563 return -EINVAL;
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (type != SPI_SIGNAL_UNKNOWN)
566 i->f->set_signalling(shost, type);
567
568 return count;
569}
Tony Jonesee959b02008-02-22 00:13:36 +0100570static DEVICE_ATTR(signalling, S_IRUGO,
571 show_spi_host_signalling,
572 store_spi_host_signalling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574#define DV_SET(x, y) \
575 if(i->f->set_##x) \
576 i->f->set_##x(sdev->sdev_target, y)
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578enum spi_compare_returns {
579 SPI_COMPARE_SUCCESS,
580 SPI_COMPARE_FAILURE,
581 SPI_COMPARE_SKIP_TEST,
582};
583
584
585/* This is for read/write Domain Validation: If the device supports
586 * an echo buffer, we do read/write tests to it */
587static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500588spi_dv_device_echo_buffer(struct scsi_device *sdev, u8 *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 u8 *ptr, const int retries)
590{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int len = ptr - buffer;
James Bottomley33aa6872005-08-28 11:31:14 -0500592 int j, k, r, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 unsigned int pattern = 0x0000ffff;
James Bottomley33aa6872005-08-28 11:31:14 -0500594 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 const char spi_write_buffer[] = {
597 WRITE_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
598 };
599 const char spi_read_buffer[] = {
600 READ_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
601 };
602
603 /* set up the pattern buffer. Doesn't matter if we spill
604 * slightly beyond since that's where the read buffer is */
605 for (j = 0; j < len; ) {
606
607 /* fill the buffer with counting (test a) */
608 for ( ; j < min(len, 32); j++)
609 buffer[j] = j;
610 k = j;
611 /* fill the buffer with alternating words of 0x0 and
612 * 0xffff (test b) */
613 for ( ; j < min(len, k + 32); j += 2) {
614 u16 *word = (u16 *)&buffer[j];
615
616 *word = (j & 0x02) ? 0x0000 : 0xffff;
617 }
618 k = j;
619 /* fill with crosstalk (alternating 0x5555 0xaaa)
620 * (test c) */
621 for ( ; j < min(len, k + 32); j += 2) {
622 u16 *word = (u16 *)&buffer[j];
623
624 *word = (j & 0x02) ? 0x5555 : 0xaaaa;
625 }
626 k = j;
627 /* fill with shifting bits (test d) */
628 for ( ; j < min(len, k + 32); j += 4) {
629 u32 *word = (unsigned int *)&buffer[j];
630 u32 roll = (pattern & 0x80000000) ? 1 : 0;
631
632 *word = pattern;
633 pattern = (pattern << 1) | roll;
634 }
635 /* don't bother with random data (test e) */
636 }
637
638 for (r = 0; r < retries; r++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500639 result = spi_execute(sdev, spi_write_buffer, DMA_TO_DEVICE,
640 buffer, len, &sshdr);
641 if(result || !scsi_device_online(sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 scsi_device_set_state(sdev, SDEV_QUIESCE);
James Bottomley33aa6872005-08-28 11:31:14 -0500644 if (scsi_sense_valid(&sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 && sshdr.sense_key == ILLEGAL_REQUEST
646 /* INVALID FIELD IN CDB */
647 && sshdr.asc == 0x24 && sshdr.ascq == 0x00)
648 /* This would mean that the drive lied
649 * to us about supporting an echo
650 * buffer (unfortunately some Western
651 * Digital drives do precisely this)
652 */
653 return SPI_COMPARE_SKIP_TEST;
654
655
James Bottomley9ccfc752005-10-02 11:45:08 -0500656 sdev_printk(KERN_ERR, sdev, "Write Buffer failure %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return SPI_COMPARE_FAILURE;
658 }
659
660 memset(ptr, 0, len);
James Bottomley33aa6872005-08-28 11:31:14 -0500661 spi_execute(sdev, spi_read_buffer, DMA_FROM_DEVICE,
662 ptr, len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 scsi_device_set_state(sdev, SDEV_QUIESCE);
664
665 if (memcmp(buffer, ptr, len) != 0)
666 return SPI_COMPARE_FAILURE;
667 }
668 return SPI_COMPARE_SUCCESS;
669}
670
671/* This is for the simplest form of Domain Validation: a read test
672 * on the inquiry data from the device */
673static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500674spi_dv_device_compare_inquiry(struct scsi_device *sdev, u8 *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 u8 *ptr, const int retries)
676{
James Bottomley33aa6872005-08-28 11:31:14 -0500677 int r, result;
678 const int len = sdev->inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 const char spi_inquiry[] = {
680 INQUIRY, 0, 0, 0, len, 0
681 };
682
683 for (r = 0; r < retries; r++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 memset(ptr, 0, len);
685
James Bottomley33aa6872005-08-28 11:31:14 -0500686 result = spi_execute(sdev, spi_inquiry, DMA_FROM_DEVICE,
687 ptr, len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
James Bottomley33aa6872005-08-28 11:31:14 -0500689 if(result || !scsi_device_online(sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 scsi_device_set_state(sdev, SDEV_QUIESCE);
691 return SPI_COMPARE_FAILURE;
692 }
693
694 /* If we don't have the inquiry data already, the
695 * first read gets it */
696 if (ptr == buffer) {
697 ptr += len;
698 --r;
699 continue;
700 }
701
702 if (memcmp(buffer, ptr, len) != 0)
703 /* failure */
704 return SPI_COMPARE_FAILURE;
705 }
706 return SPI_COMPARE_SUCCESS;
707}
708
709static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500710spi_dv_retrain(struct scsi_device *sdev, u8 *buffer, u8 *ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500712 (*compare_fn)(struct scsi_device *, u8 *, u8 *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
James Bottomley33aa6872005-08-28 11:31:14 -0500714 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500715 struct scsi_target *starget = sdev->sdev_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 int period = 0, prevperiod = 0;
717 enum spi_compare_returns retval;
718
719
720 for (;;) {
721 int newperiod;
James Bottomley33aa6872005-08-28 11:31:14 -0500722 retval = compare_fn(sdev, buffer, ptr, DV_LOOPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 if (retval == SPI_COMPARE_SUCCESS
725 || retval == SPI_COMPARE_SKIP_TEST)
726 break;
727
728 /* OK, retrain, fallback */
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500729 if (i->f->get_iu)
730 i->f->get_iu(starget);
731 if (i->f->get_qas)
732 i->f->get_qas(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 if (i->f->get_period)
734 i->f->get_period(sdev->sdev_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500736 /* Here's the fallback sequence; first try turning off
737 * IU, then QAS (if we can control them), then finally
738 * fall down the periods */
739 if (i->f->set_iu && spi_iu(starget)) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500740 starget_printk(KERN_ERR, starget, "Domain Validation Disabing Information Units\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500741 DV_SET(iu, 0);
742 } else if (i->f->set_qas && spi_qas(starget)) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500743 starget_printk(KERN_ERR, starget, "Domain Validation Disabing Quick Arbitration and Selection\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500744 DV_SET(qas, 0);
745 } else {
746 newperiod = spi_period(starget);
747 period = newperiod > period ? newperiod : period;
748 if (period < 0x0d)
749 period++;
750 else
751 period += period >> 1;
752
753 if (unlikely(period > 0xff || period == prevperiod)) {
754 /* Total failure; set to async and return */
James Bottomley9ccfc752005-10-02 11:45:08 -0500755 starget_printk(KERN_ERR, starget, "Domain Validation Failure, dropping back to Asynchronous\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500756 DV_SET(offset, 0);
757 return SPI_COMPARE_FAILURE;
758 }
James Bottomley9ccfc752005-10-02 11:45:08 -0500759 starget_printk(KERN_ERR, starget, "Domain Validation detected failure, dropping back\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500760 DV_SET(period, period);
761 prevperiod = period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764 return retval;
765}
766
767static int
James Bottomley33aa6872005-08-28 11:31:14 -0500768spi_dv_device_get_echo_buffer(struct scsi_device *sdev, u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
James Bottomley33aa6872005-08-28 11:31:14 -0500770 int l, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 /* first off do a test unit ready. This can error out
773 * because of reservations or some other reason. If it
774 * fails, the device won't let us write to the echo buffer
775 * so just return failure */
776
777 const char spi_test_unit_ready[] = {
778 TEST_UNIT_READY, 0, 0, 0, 0, 0
779 };
780
781 const char spi_read_buffer_descriptor[] = {
782 READ_BUFFER, 0x0b, 0, 0, 0, 0, 0, 0, 4, 0
783 };
784
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* We send a set of three TURs to clear any outstanding
787 * unit attention conditions if they exist (Otherwise the
788 * buffer tests won't be happy). If the TUR still fails
789 * (reservation conflict, device not ready, etc) just
790 * skip the write tests */
791 for (l = 0; ; l++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500792 result = spi_execute(sdev, spi_test_unit_ready, DMA_NONE,
793 NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
James Bottomley33aa6872005-08-28 11:31:14 -0500795 if(result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if(l >= 3)
797 return 0;
798 } else {
799 /* TUR succeeded */
800 break;
801 }
802 }
803
James Bottomley33aa6872005-08-28 11:31:14 -0500804 result = spi_execute(sdev, spi_read_buffer_descriptor,
805 DMA_FROM_DEVICE, buffer, 4, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
James Bottomley33aa6872005-08-28 11:31:14 -0500807 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* Device has no echo buffer */
809 return 0;
810
811 return buffer[3] + ((buffer[2] & 0x1f) << 8);
812}
813
814static void
James Bottomley33aa6872005-08-28 11:31:14 -0500815spi_dv_device_internal(struct scsi_device *sdev, u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
James Bottomley33aa6872005-08-28 11:31:14 -0500817 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
James Bottomley 62a86122005-05-06 18:05:20 -0500818 struct scsi_target *starget = sdev->sdev_target;
James Bottomley60eef252006-06-10 10:51:23 -0500819 struct Scsi_Host *shost = sdev->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 int len = sdev->inquiry_len;
James Bottomley23028272007-09-22 08:40:09 -0500821 int min_period = spi_min_period(starget);
822 int max_width = spi_max_width(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* first set us up for narrow async */
824 DV_SET(offset, 0);
825 DV_SET(width, 0);
James Bottomley23028272007-09-22 08:40:09 -0500826
James Bottomley33aa6872005-08-28 11:31:14 -0500827 if (spi_dv_device_compare_inquiry(sdev, buffer, buffer, DV_LOOPS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 != SPI_COMPARE_SUCCESS) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500829 starget_printk(KERN_ERR, starget, "Domain Validation Initial Inquiry Failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* FIXME: should probably offline the device here? */
831 return;
832 }
833
James Bottomley23028272007-09-22 08:40:09 -0500834 if (!scsi_device_wide(sdev)) {
835 spi_max_width(starget) = 0;
836 max_width = 0;
837 }
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* test width */
James Bottomley23028272007-09-22 08:40:09 -0500840 if (i->f->set_width && max_width) {
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500841 i->f->set_width(starget, 1);
James Bottomley 62a86122005-05-06 18:05:20 -0500842
James Bottomley33aa6872005-08-28 11:31:14 -0500843 if (spi_dv_device_compare_inquiry(sdev, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 buffer + len,
845 DV_LOOPS)
846 != SPI_COMPARE_SUCCESS) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500847 starget_printk(KERN_ERR, starget, "Wide Transfers Fail\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500848 i->f->set_width(starget, 0);
James Bottomley23028272007-09-22 08:40:09 -0500849 /* Make sure we don't force wide back on by asking
850 * for a transfer period that requires it */
851 max_width = 0;
852 if (min_period < 10)
853 min_period = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855 }
856
857 if (!i->f->set_period)
858 return;
859
860 /* device can't handle synchronous */
James Bottomleyeb1dd682005-07-02 12:22:01 -0400861 if (!scsi_device_sync(sdev) && !scsi_device_dt(sdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return;
863
James Bottomley349cd7c2005-11-28 15:41:58 -0600864 /* len == -1 is the signal that we need to ascertain the
865 * presence of an echo buffer before trying to use it. len ==
866 * 0 means we don't have an echo buffer */
867 len = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 retry:
870
871 /* now set up to the maximum */
James Bottomley 62a86122005-05-06 18:05:20 -0500872 DV_SET(offset, spi_max_offset(starget));
James Bottomley23028272007-09-22 08:40:09 -0500873 DV_SET(period, min_period);
874
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500875 /* try QAS requests; this should be harmless to set if the
876 * target supports it */
James Bottomleydfdc58b2006-09-20 12:00:18 -0400877 if (scsi_device_qas(sdev)) {
James Bottomleyeb1dd682005-07-02 12:22:01 -0400878 DV_SET(qas, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400879 } else {
880 DV_SET(qas, 0);
881 }
882
James Bottomley23028272007-09-22 08:40:09 -0500883 if (scsi_device_ius(sdev) && min_period < 9) {
James Bottomleydfdc58b2006-09-20 12:00:18 -0400884 /* This u320 (or u640). Set IU transfers */
James Bottomleyeb1dd682005-07-02 12:22:01 -0400885 DV_SET(iu, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400886 /* Then set the optional parameters */
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500887 DV_SET(rd_strm, 1);
888 DV_SET(wr_flow, 1);
889 DV_SET(rti, 1);
James Bottomley23028272007-09-22 08:40:09 -0500890 if (min_period == 8)
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500891 DV_SET(pcomp_en, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400892 } else {
893 DV_SET(iu, 0);
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500894 }
James Bottomleydfdc58b2006-09-20 12:00:18 -0400895
James Bottomley60eef252006-06-10 10:51:23 -0500896 /* now that we've done all this, actually check the bus
897 * signal type (if known). Some devices are stupid on
898 * a SE bus and still claim they can try LVD only settings */
899 if (i->f->get_signalling)
900 i->f->get_signalling(shost);
901 if (spi_signalling(shost) == SPI_SIGNAL_SE ||
James Bottomleydfdc58b2006-09-20 12:00:18 -0400902 spi_signalling(shost) == SPI_SIGNAL_HVD ||
903 !scsi_device_dt(sdev)) {
James Bottomley60eef252006-06-10 10:51:23 -0500904 DV_SET(dt, 0);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400905 } else {
906 DV_SET(dt, 1);
907 }
James Bottomley23028272007-09-22 08:40:09 -0500908 /* set width last because it will pull all the other
909 * parameters down to required values */
910 DV_SET(width, max_width);
911
James Bottomley349cd7c2005-11-28 15:41:58 -0600912 /* Do the read only INQUIRY tests */
913 spi_dv_retrain(sdev, buffer, buffer + sdev->inquiry_len,
914 spi_dv_device_compare_inquiry);
915 /* See if we actually managed to negotiate and sustain DT */
916 if (i->f->get_dt)
917 i->f->get_dt(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
James Bottomley349cd7c2005-11-28 15:41:58 -0600919 /* see if the device has an echo buffer. If it does we can do
920 * the SPI pattern write tests. Because of some broken
921 * devices, we *only* try this on a device that has actually
922 * negotiated DT */
923
924 if (len == -1 && spi_dt(starget))
925 len = spi_dv_device_get_echo_buffer(sdev, buffer);
926
927 if (len <= 0) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500928 starget_printk(KERN_INFO, starget, "Domain Validation skipping write tests\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return;
930 }
931
932 if (len > SPI_MAX_ECHO_BUFFER_SIZE) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500933 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 -0700934 len = SPI_MAX_ECHO_BUFFER_SIZE;
935 }
936
James Bottomley33aa6872005-08-28 11:31:14 -0500937 if (spi_dv_retrain(sdev, buffer, buffer + len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 spi_dv_device_echo_buffer)
939 == SPI_COMPARE_SKIP_TEST) {
940 /* OK, the stupid drive can't do a write echo buffer
941 * test after all, fall back to the read tests */
942 len = 0;
943 goto retry;
944 }
945}
946
947
948/** spi_dv_device - Do Domain Validation on the device
949 * @sdev: scsi device to validate
950 *
951 * Performs the domain validation on the given device in the
952 * current execution thread. Since DV operations may sleep,
953 * the current thread must have user context. Also no SCSI
954 * related locks that would deadlock I/O issued by the DV may
955 * be held.
956 */
957void
958spi_dv_device(struct scsi_device *sdev)
959{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 struct scsi_target *starget = sdev->sdev_target;
961 u8 *buffer;
962 const int len = SPI_MAX_ECHO_BUFFER_SIZE*2;
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (unlikely(scsi_device_get(sdev)))
James Bottomley33aa6872005-08-28 11:31:14 -0500965 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
James Bottomleydfdc58b2006-09-20 12:00:18 -0400967 if (unlikely(spi_dv_in_progress(starget)))
968 return;
969 spi_dv_in_progress(starget) = 1;
970
Jes Sorensen24669f752006-01-16 10:31:18 -0500971 buffer = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 if (unlikely(!buffer))
974 goto out_put;
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /* We need to verify that the actual device will quiesce; the
977 * later target quiesce is just a nice to have */
978 if (unlikely(scsi_device_quiesce(sdev)))
979 goto out_free;
980
981 scsi_target_quiesce(starget);
982
983 spi_dv_pending(starget) = 1;
Jes Sorensend158d262006-01-13 16:05:44 -0800984 mutex_lock(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
James Bottomley9ccfc752005-10-02 11:45:08 -0500986 starget_printk(KERN_INFO, starget, "Beginning Domain Validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
James Bottomley33aa6872005-08-28 11:31:14 -0500988 spi_dv_device_internal(sdev, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
James Bottomley9ccfc752005-10-02 11:45:08 -0500990 starget_printk(KERN_INFO, starget, "Ending Domain Validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Jes Sorensend158d262006-01-13 16:05:44 -0800992 mutex_unlock(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 spi_dv_pending(starget) = 0;
994
995 scsi_target_resume(starget);
996
997 spi_initial_dv(starget) = 1;
998
999 out_free:
1000 kfree(buffer);
1001 out_put:
James Bottomleydfdc58b2006-09-20 12:00:18 -04001002 spi_dv_in_progress(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 scsi_device_put(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005EXPORT_SYMBOL(spi_dv_device);
1006
1007struct work_queue_wrapper {
1008 struct work_struct work;
1009 struct scsi_device *sdev;
1010};
1011
1012static void
David Howellsc4028952006-11-22 14:57:56 +00001013spi_dv_device_work_wrapper(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
David Howellsc4028952006-11-22 14:57:56 +00001015 struct work_queue_wrapper *wqw =
1016 container_of(work, struct work_queue_wrapper, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 struct scsi_device *sdev = wqw->sdev;
1018
1019 kfree(wqw);
1020 spi_dv_device(sdev);
1021 spi_dv_pending(sdev->sdev_target) = 0;
1022 scsi_device_put(sdev);
1023}
1024
1025
1026/**
1027 * spi_schedule_dv_device - schedule domain validation to occur on the device
1028 * @sdev: The device to validate
1029 *
1030 * Identical to spi_dv_device() above, except that the DV will be
1031 * scheduled to occur in a workqueue later. All memory allocations
1032 * are atomic, so may be called from any context including those holding
1033 * SCSI locks.
1034 */
1035void
1036spi_schedule_dv_device(struct scsi_device *sdev)
1037{
1038 struct work_queue_wrapper *wqw =
1039 kmalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC);
1040
1041 if (unlikely(!wqw))
1042 return;
1043
1044 if (unlikely(spi_dv_pending(sdev->sdev_target))) {
1045 kfree(wqw);
1046 return;
1047 }
1048 /* Set pending early (dv_device doesn't check it, only sets it) */
1049 spi_dv_pending(sdev->sdev_target) = 1;
1050 if (unlikely(scsi_device_get(sdev))) {
1051 kfree(wqw);
1052 spi_dv_pending(sdev->sdev_target) = 0;
1053 return;
1054 }
1055
David Howellsc4028952006-11-22 14:57:56 +00001056 INIT_WORK(&wqw->work, spi_dv_device_work_wrapper);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 wqw->sdev = sdev;
1058
1059 schedule_work(&wqw->work);
1060}
1061EXPORT_SYMBOL(spi_schedule_dv_device);
1062
1063/**
1064 * spi_display_xfer_agreement - Print the current target transfer agreement
1065 * @starget: The target for which to display the agreement
1066 *
1067 * Each SPI port is required to maintain a transfer agreement for each
1068 * other port on the bus. This function prints a one-line summary of
1069 * the current agreement; more detailed information is available in sysfs.
1070 */
1071void spi_display_xfer_agreement(struct scsi_target *starget)
1072{
1073 struct spi_transport_attrs *tp;
1074 tp = (struct spi_transport_attrs *)&starget->starget_data;
1075
1076 if (tp->offset > 0 && tp->period > 0) {
1077 unsigned int picosec, kb100;
1078 char *scsi = "FAST-?";
1079 char tmp[8];
1080
1081 if (tp->period <= SPI_STATIC_PPR) {
1082 picosec = ppr_to_ps[tp->period];
1083 switch (tp->period) {
1084 case 7: scsi = "FAST-320"; break;
1085 case 8: scsi = "FAST-160"; break;
1086 case 9: scsi = "FAST-80"; break;
1087 case 10:
1088 case 11: scsi = "FAST-40"; break;
1089 case 12: scsi = "FAST-20"; break;
1090 }
1091 } else {
1092 picosec = tp->period * 4000;
1093 if (tp->period < 25)
1094 scsi = "FAST-20";
1095 else if (tp->period < 50)
1096 scsi = "FAST-10";
1097 else
1098 scsi = "FAST-5";
1099 }
1100
1101 kb100 = (10000000 + picosec / 2) / picosec;
1102 if (tp->width)
1103 kb100 *= 2;
1104 sprint_frac(tmp, picosec, 1000);
1105
1106 dev_info(&starget->dev,
James Bottomleyd872ebe2005-08-03 15:43:52 -05001107 "%s %sSCSI %d.%d MB/s %s%s%s%s%s%s%s%s (%s ns, offset %d)\n",
1108 scsi, tp->width ? "WIDE " : "", kb100/10, kb100 % 10,
1109 tp->dt ? "DT" : "ST",
1110 tp->iu ? " IU" : "",
1111 tp->qas ? " QAS" : "",
1112 tp->rd_strm ? " RDSTRM" : "",
1113 tp->rti ? " RTI" : "",
1114 tp->wr_flow ? " WRFLOW" : "",
1115 tp->pcomp_en ? " PCOMP" : "",
1116 tp->hold_mcs ? " HMCS" : "",
1117 tmp, tp->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 } else {
Matthew Wilcox493ff4e2005-11-17 11:13:43 -07001119 dev_info(&starget->dev, "%sasynchronous\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 tp->width ? "wide " : "");
1121 }
1122}
1123EXPORT_SYMBOL(spi_display_xfer_agreement);
1124
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001125int spi_populate_width_msg(unsigned char *msg, int width)
1126{
1127 msg[0] = EXTENDED_MESSAGE;
1128 msg[1] = 2;
1129 msg[2] = EXTENDED_WDTR;
1130 msg[3] = width;
1131 return 4;
1132}
James Bottomley38e14f82006-02-17 14:58:47 -08001133EXPORT_SYMBOL_GPL(spi_populate_width_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001134
1135int spi_populate_sync_msg(unsigned char *msg, int period, int offset)
1136{
1137 msg[0] = EXTENDED_MESSAGE;
1138 msg[1] = 3;
1139 msg[2] = EXTENDED_SDTR;
1140 msg[3] = period;
1141 msg[4] = offset;
1142 return 5;
1143}
James Bottomley38e14f82006-02-17 14:58:47 -08001144EXPORT_SYMBOL_GPL(spi_populate_sync_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001145
1146int spi_populate_ppr_msg(unsigned char *msg, int period, int offset,
1147 int width, int options)
1148{
1149 msg[0] = EXTENDED_MESSAGE;
1150 msg[1] = 6;
1151 msg[2] = EXTENDED_PPR;
1152 msg[3] = period;
1153 msg[4] = 0;
1154 msg[5] = offset;
1155 msg[6] = width;
1156 msg[7] = options;
1157 return 8;
1158}
James Bottomley38e14f82006-02-17 14:58:47 -08001159EXPORT_SYMBOL_GPL(spi_populate_ppr_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001160
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001161#ifdef CONFIG_SCSI_CONSTANTS
1162static const char * const one_byte_msgs[] = {
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001163/* 0x00 */ "Task Complete", NULL /* Extended Message */, "Save Pointers",
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001164/* 0x03 */ "Restore Pointers", "Disconnect", "Initiator Error",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001165/* 0x06 */ "Abort Task Set", "Message Reject", "Nop", "Message Parity Error",
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001166/* 0x0a */ "Linked Command Complete", "Linked Command Complete w/flag",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001167/* 0x0c */ "Target Reset", "Abort Task", "Clear Task Set",
1168/* 0x0f */ "Initiate Recovery", "Release Recovery",
1169/* 0x11 */ "Terminate Process", "Continue Task", "Target Transfer Disable",
1170/* 0x14 */ NULL, NULL, "Clear ACA", "LUN Reset"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001171};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001172
1173static const char * const two_byte_msgs[] = {
Matthew Wilcox47972152005-12-15 16:22:01 -05001174/* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001175/* 0x23 */ "Ignore Wide Residue", "ACA"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001176};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001177
1178static const char * const extended_msgs[] = {
1179/* 0x00 */ "Modify Data Pointer", "Synchronous Data Transfer Request",
Matthew Wilcoxef725822005-12-15 16:22:01 -05001180/* 0x02 */ "SCSI-I Extended Identify", "Wide Data Transfer Request",
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001181/* 0x04 */ "Parallel Protocol Request", "Modify Bidirectional Data Pointer"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001182};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001183
Adrian Bunkbdd70f22006-01-05 23:39:18 +01001184static void print_nego(const unsigned char *msg, int per, int off, int width)
Matthew Wilcoxef725822005-12-15 16:22:01 -05001185{
1186 if (per) {
1187 char buf[20];
1188 period_to_str(buf, msg[per]);
1189 printk("period = %s ns ", buf);
1190 }
1191
1192 if (off)
1193 printk("offset = %d ", msg[off]);
1194 if (width)
1195 printk("width = %d ", 8 << msg[width]);
1196}
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001197
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001198static void print_ptr(const unsigned char *msg, int msb, const char *desc)
1199{
1200 int ptr = (msg[msb] << 24) | (msg[msb+1] << 16) | (msg[msb+2] << 8) |
1201 msg[msb+3];
1202 printk("%s = %d ", desc, ptr);
1203}
1204
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001205int spi_print_msg(const unsigned char *msg)
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001206{
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001207 int len = 1, i;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001208 if (msg[0] == EXTENDED_MESSAGE) {
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001209 len = 2 + msg[1];
1210 if (len == 2)
1211 len += 256;
Matthew Wilcoxb32aaff2005-12-15 16:22:01 -05001212 if (msg[2] < ARRAY_SIZE(extended_msgs))
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001213 printk ("%s ", extended_msgs[msg[2]]);
1214 else
1215 printk ("Extended Message, reserved code (0x%02x) ",
1216 (int) msg[2]);
1217 switch (msg[2]) {
1218 case EXTENDED_MODIFY_DATA_POINTER:
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001219 print_ptr(msg, 3, "pointer");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001220 break;
1221 case EXTENDED_SDTR:
Matthew Wilcoxef725822005-12-15 16:22:01 -05001222 print_nego(msg, 3, 4, 0);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001223 break;
1224 case EXTENDED_WDTR:
Matthew Wilcoxef725822005-12-15 16:22:01 -05001225 print_nego(msg, 0, 0, 3);
1226 break;
1227 case EXTENDED_PPR:
1228 print_nego(msg, 3, 5, 6);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001229 break;
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001230 case EXTENDED_MODIFY_BIDI_DATA_PTR:
1231 print_ptr(msg, 3, "out");
1232 print_ptr(msg, 7, "in");
1233 break;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001234 default:
1235 for (i = 2; i < len; ++i)
1236 printk("%02x ", msg[i]);
1237 }
1238 /* Identify */
1239 } else if (msg[0] & 0x80) {
1240 printk("Identify disconnect %sallowed %s %d ",
1241 (msg[0] & 0x40) ? "" : "not ",
1242 (msg[0] & 0x20) ? "target routine" : "lun",
1243 msg[0] & 0x7);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001244 /* Normal One byte */
1245 } else if (msg[0] < 0x1f) {
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001246 if (msg[0] < ARRAY_SIZE(one_byte_msgs) && one_byte_msgs[msg[0]])
Matthew Wilcoxe24d8732006-02-07 08:05:26 -07001247 printk("%s ", one_byte_msgs[msg[0]]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001248 else
1249 printk("reserved (%02x) ", msg[0]);
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001250 } else if (msg[0] == 0x55) {
1251 printk("QAS Request ");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001252 /* Two byte */
1253 } else if (msg[0] <= 0x2f) {
Matthew Wilcoxb32aaff2005-12-15 16:22:01 -05001254 if ((msg[0] - 0x20) < ARRAY_SIZE(two_byte_msgs))
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001255 printk("%s %02x ", two_byte_msgs[msg[0] - 0x20],
1256 msg[1]);
1257 else
1258 printk("reserved two byte (%02x %02x) ",
1259 msg[0], msg[1]);
1260 len = 2;
1261 } else
Matthew Wilcoxe24d8732006-02-07 08:05:26 -07001262 printk("reserved ");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001263 return len;
1264}
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001265EXPORT_SYMBOL(spi_print_msg);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001266
1267#else /* ifndef CONFIG_SCSI_CONSTANTS */
1268
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001269int spi_print_msg(const unsigned char *msg)
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001270{
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001271 int len = 1, i;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001272
1273 if (msg[0] == EXTENDED_MESSAGE) {
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001274 len = 2 + msg[1];
1275 if (len == 2)
1276 len += 256;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001277 for (i = 0; i < len; ++i)
1278 printk("%02x ", msg[i]);
1279 /* Identify */
1280 } else if (msg[0] & 0x80) {
1281 printk("%02x ", msg[0]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001282 /* Normal One byte */
James Bottomley597705a2006-03-12 09:54:19 -06001283 } else if ((msg[0] < 0x1f) || (msg[0] == 0x55)) {
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001284 printk("%02x ", msg[0]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001285 /* Two byte */
1286 } else if (msg[0] <= 0x2f) {
1287 printk("%02x %02x", msg[0], msg[1]);
1288 len = 2;
1289 } else
1290 printk("%02x ", msg[0]);
1291 return len;
1292}
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001293EXPORT_SYMBOL(spi_print_msg);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001294#endif /* ! CONFIG_SCSI_CONSTANTS */
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static int spi_device_match(struct attribute_container *cont,
1297 struct device *dev)
1298{
1299 struct scsi_device *sdev;
1300 struct Scsi_Host *shost;
James Bottomley10c1b882005-08-14 14:34:06 -05001301 struct spi_internal *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 if (!scsi_is_sdev_device(dev))
1304 return 0;
1305
1306 sdev = to_scsi_device(dev);
1307 shost = sdev->host;
1308 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1309 != &spi_host_class.class)
1310 return 0;
1311 /* Note: this class has no device attributes, so it has
1312 * no per-HBA allocation and thus we don't need to distinguish
1313 * the attribute containers for the device */
James Bottomley10c1b882005-08-14 14:34:06 -05001314 i = to_spi_internal(shost->transportt);
1315 if (i->f->deny_binding && i->f->deny_binding(sdev->sdev_target))
1316 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 return 1;
1318}
1319
1320static int spi_target_match(struct attribute_container *cont,
1321 struct device *dev)
1322{
1323 struct Scsi_Host *shost;
James Bottomley10c1b882005-08-14 14:34:06 -05001324 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 struct spi_internal *i;
1326
1327 if (!scsi_is_target_device(dev))
1328 return 0;
1329
1330 shost = dev_to_shost(dev->parent);
1331 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1332 != &spi_host_class.class)
1333 return 0;
1334
1335 i = to_spi_internal(shost->transportt);
James Bottomley10c1b882005-08-14 14:34:06 -05001336 starget = to_scsi_target(dev);
1337
1338 if (i->f->deny_binding && i->f->deny_binding(starget))
1339 return 0;
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return &i->t.target_attrs.ac == cont;
1342}
1343
1344static DECLARE_TRANSPORT_CLASS(spi_transport_class,
1345 "spi_transport",
1346 spi_setup_transport_attrs,
1347 NULL,
James Bottomley9b161a42008-01-05 10:18:27 -06001348 spi_target_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350static DECLARE_ANON_TRANSPORT_CLASS(spi_device_class,
1351 spi_device_match,
1352 spi_device_configure);
1353
James Bottomley9b161a42008-01-05 10:18:27 -06001354static struct attribute *host_attributes[] = {
Tony Jonesee959b02008-02-22 00:13:36 +01001355 &dev_attr_signalling.attr,
James Bottomley9b161a42008-01-05 10:18:27 -06001356 NULL
1357};
1358
1359static struct attribute_group host_attribute_group = {
1360 .attrs = host_attributes,
1361};
1362
1363static int spi_host_configure(struct transport_container *tc,
1364 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +01001365 struct device *cdev)
James Bottomley9b161a42008-01-05 10:18:27 -06001366{
1367 struct kobject *kobj = &cdev->kobj;
1368 struct Scsi_Host *shost = transport_class_to_shost(cdev);
1369 struct spi_internal *si = to_spi_internal(shost->transportt);
Tony Jonesee959b02008-02-22 00:13:36 +01001370 struct attribute *attr = &dev_attr_signalling.attr;
James Bottomley9b161a42008-01-05 10:18:27 -06001371 int rc = 0;
1372
1373 if (si->f->set_signalling)
1374 rc = sysfs_chmod_file(kobj, attr, attr->mode | S_IWUSR);
1375
1376 return rc;
1377}
1378
1379/* returns true if we should be showing the variable. Also
1380 * overloads the return by setting 1<<1 if the attribute should
1381 * be writeable */
1382#define TARGET_ATTRIBUTE_HELPER(name) \
James Bottomley352f6bb2008-03-20 20:57:02 -05001383 (si->f->show_##name ? S_IRUGO : 0) | \
1384 (si->f->set_##name ? S_IWUSR : 0)
James Bottomley9b161a42008-01-05 10:18:27 -06001385
James Bottomley352f6bb2008-03-20 20:57:02 -05001386static mode_t target_attribute_is_visible(struct kobject *kobj,
1387 struct attribute *attr, int i)
James Bottomley9b161a42008-01-05 10:18:27 -06001388{
Tony Jonesee959b02008-02-22 00:13:36 +01001389 struct device *cdev = container_of(kobj, struct device, kobj);
James Bottomley9b161a42008-01-05 10:18:27 -06001390 struct scsi_target *starget = transport_class_to_starget(cdev);
1391 struct Scsi_Host *shost = transport_class_to_shost(cdev);
1392 struct spi_internal *si = to_spi_internal(shost->transportt);
1393
Tony Jonesee959b02008-02-22 00:13:36 +01001394 if (attr == &dev_attr_period.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001395 spi_support_sync(starget))
1396 return TARGET_ATTRIBUTE_HELPER(period);
Tony Jonesee959b02008-02-22 00:13:36 +01001397 else if (attr == &dev_attr_min_period.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001398 spi_support_sync(starget))
1399 return TARGET_ATTRIBUTE_HELPER(period);
Tony Jonesee959b02008-02-22 00:13:36 +01001400 else if (attr == &dev_attr_offset.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001401 spi_support_sync(starget))
1402 return TARGET_ATTRIBUTE_HELPER(offset);
Tony Jonesee959b02008-02-22 00:13:36 +01001403 else if (attr == &dev_attr_max_offset.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001404 spi_support_sync(starget))
1405 return TARGET_ATTRIBUTE_HELPER(offset);
Tony Jonesee959b02008-02-22 00:13:36 +01001406 else if (attr == &dev_attr_width.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001407 spi_support_wide(starget))
1408 return TARGET_ATTRIBUTE_HELPER(width);
Tony Jonesee959b02008-02-22 00:13:36 +01001409 else if (attr == &dev_attr_max_width.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001410 spi_support_wide(starget))
1411 return TARGET_ATTRIBUTE_HELPER(width);
Tony Jonesee959b02008-02-22 00:13:36 +01001412 else if (attr == &dev_attr_iu.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001413 spi_support_ius(starget))
1414 return TARGET_ATTRIBUTE_HELPER(iu);
Tony Jonesee959b02008-02-22 00:13:36 +01001415 else if (attr == &dev_attr_dt.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001416 spi_support_dt(starget))
1417 return TARGET_ATTRIBUTE_HELPER(dt);
Tony Jonesee959b02008-02-22 00:13:36 +01001418 else if (attr == &dev_attr_qas.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001419 spi_support_qas(starget))
1420 return TARGET_ATTRIBUTE_HELPER(qas);
Tony Jonesee959b02008-02-22 00:13:36 +01001421 else if (attr == &dev_attr_wr_flow.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001422 spi_support_ius(starget))
1423 return TARGET_ATTRIBUTE_HELPER(wr_flow);
Tony Jonesee959b02008-02-22 00:13:36 +01001424 else if (attr == &dev_attr_rd_strm.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001425 spi_support_ius(starget))
1426 return TARGET_ATTRIBUTE_HELPER(rd_strm);
Tony Jonesee959b02008-02-22 00:13:36 +01001427 else if (attr == &dev_attr_rti.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001428 spi_support_ius(starget))
1429 return TARGET_ATTRIBUTE_HELPER(rti);
Tony Jonesee959b02008-02-22 00:13:36 +01001430 else if (attr == &dev_attr_pcomp_en.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001431 spi_support_ius(starget))
1432 return TARGET_ATTRIBUTE_HELPER(pcomp_en);
Tony Jonesee959b02008-02-22 00:13:36 +01001433 else if (attr == &dev_attr_hold_mcs.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001434 spi_support_ius(starget))
1435 return TARGET_ATTRIBUTE_HELPER(hold_mcs);
Tony Jonesee959b02008-02-22 00:13:36 +01001436 else if (attr == &dev_attr_revalidate.attr)
James Bottomley352f6bb2008-03-20 20:57:02 -05001437 return S_IWUSR;
James Bottomley9b161a42008-01-05 10:18:27 -06001438
1439 return 0;
1440}
1441
1442static struct attribute *target_attributes[] = {
Tony Jonesee959b02008-02-22 00:13:36 +01001443 &dev_attr_period.attr,
1444 &dev_attr_min_period.attr,
1445 &dev_attr_offset.attr,
1446 &dev_attr_max_offset.attr,
1447 &dev_attr_width.attr,
1448 &dev_attr_max_width.attr,
1449 &dev_attr_iu.attr,
1450 &dev_attr_dt.attr,
1451 &dev_attr_qas.attr,
1452 &dev_attr_wr_flow.attr,
1453 &dev_attr_rd_strm.attr,
1454 &dev_attr_rti.attr,
1455 &dev_attr_pcomp_en.attr,
1456 &dev_attr_hold_mcs.attr,
1457 &dev_attr_revalidate.attr,
James Bottomley9b161a42008-01-05 10:18:27 -06001458 NULL
1459};
1460
1461static struct attribute_group target_attribute_group = {
1462 .attrs = target_attributes,
1463 .is_visible = target_attribute_is_visible,
1464};
1465
1466static int spi_target_configure(struct transport_container *tc,
1467 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +01001468 struct device *cdev)
James Bottomley9b161a42008-01-05 10:18:27 -06001469{
1470 struct kobject *kobj = &cdev->kobj;
James Bottomley9b161a42008-01-05 10:18:27 -06001471
James Bottomley352f6bb2008-03-20 20:57:02 -05001472 /* force an update based on parameters read from the device */
1473 sysfs_update_group(kobj, &target_attribute_group);
James Bottomley9b161a42008-01-05 10:18:27 -06001474
1475 return 0;
1476}
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478struct scsi_transport_template *
1479spi_attach_transport(struct spi_function_template *ft)
1480{
Jes Sorensen24669f752006-01-16 10:31:18 -05001481 struct spi_internal *i = kzalloc(sizeof(struct spi_internal),
1482 GFP_KERNEL);
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 if (unlikely(!i))
1485 return NULL;
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 i->t.target_attrs.ac.class = &spi_transport_class.class;
James Bottomley9b161a42008-01-05 10:18:27 -06001488 i->t.target_attrs.ac.grp = &target_attribute_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 i->t.target_attrs.ac.match = spi_target_match;
1490 transport_container_register(&i->t.target_attrs);
1491 i->t.target_size = sizeof(struct spi_transport_attrs);
1492 i->t.host_attrs.ac.class = &spi_host_class.class;
James Bottomley9b161a42008-01-05 10:18:27 -06001493 i->t.host_attrs.ac.grp = &host_attribute_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 i->t.host_attrs.ac.match = spi_host_match;
1495 transport_container_register(&i->t.host_attrs);
1496 i->t.host_size = sizeof(struct spi_host_attrs);
1497 i->f = ft;
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return &i->t;
1500}
1501EXPORT_SYMBOL(spi_attach_transport);
1502
1503void spi_release_transport(struct scsi_transport_template *t)
1504{
1505 struct spi_internal *i = to_spi_internal(t);
1506
1507 transport_container_unregister(&i->t.target_attrs);
1508 transport_container_unregister(&i->t.host_attrs);
1509
1510 kfree(i);
1511}
1512EXPORT_SYMBOL(spi_release_transport);
1513
1514static __init int spi_transport_init(void)
1515{
1516 int error = transport_class_register(&spi_transport_class);
1517 if (error)
1518 return error;
1519 error = anon_transport_class_register(&spi_device_class);
1520 return transport_class_register(&spi_host_class);
1521}
1522
1523static void __exit spi_transport_exit(void)
1524{
1525 transport_class_unregister(&spi_transport_class);
1526 anon_transport_class_unregister(&spi_device_class);
1527 transport_class_unregister(&spi_host_class);
1528}
1529
1530MODULE_AUTHOR("Martin Hicks");
1531MODULE_DESCRIPTION("SPI Transport Attributes");
1532MODULE_LICENSE("GPL");
1533
1534module_init(spi_transport_init);
1535module_exit(spi_transport_exit);