blob: b29360ed0bdc9f0c2dd6a80c06cd4ef09a5cee66 [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,
112 REQ_FAILFAST);
113 if (result & DRIVER_SENSE) {
114 struct scsi_sense_hdr sshdr_tmp;
115 if (!sshdr)
116 sshdr = &sshdr_tmp;
James Bottomley949bf792005-05-01 18:58:15 -0500117
James Bottomley4ed381e2006-12-11 09:47:06 -0600118 if (scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE,
James Bottomley33aa6872005-08-28 11:31:14 -0500119 sshdr)
120 && sshdr->sense_key == UNIT_ATTENTION)
James Bottomley949bf792005-05-01 18:58:15 -0500121 continue;
122 }
123 break;
124 }
James Bottomley33aa6872005-08-28 11:31:14 -0500125 return result;
James Bottomley949bf792005-05-01 18:58:15 -0500126}
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static struct {
129 enum spi_signal_type value;
130 char *name;
131} signal_types[] = {
132 { SPI_SIGNAL_UNKNOWN, "unknown" },
133 { SPI_SIGNAL_SE, "SE" },
134 { SPI_SIGNAL_LVD, "LVD" },
135 { SPI_SIGNAL_HVD, "HVD" },
136};
137
138static inline const char *spi_signal_to_string(enum spi_signal_type type)
139{
140 int i;
141
Tobias Klauser6391a112006-06-08 22:23:48 -0700142 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (type == signal_types[i].value)
144 return signal_types[i].name;
145 }
146 return NULL;
147}
148static inline enum spi_signal_type spi_signal_to_value(const char *name)
149{
150 int i, len;
151
Tobias Klauser6391a112006-06-08 22:23:48 -0700152 for (i = 0; i < ARRAY_SIZE(signal_types); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 len = strlen(signal_types[i].name);
154 if (strncmp(name, signal_types[i].name, len) == 0 &&
155 (name[len] == '\n' || name[len] == '\0'))
156 return signal_types[i].value;
157 }
158 return SPI_SIGNAL_UNKNOWN;
159}
160
James Bottomleyd0a7e572005-08-14 17:09:01 -0500161static int spi_host_setup(struct transport_container *tc, struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100162 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 struct Scsi_Host *shost = dev_to_shost(dev);
165
166 spi_signalling(shost) = SPI_SIGNAL_UNKNOWN;
167
168 return 0;
169}
170
James Bottomley9b161a42008-01-05 10:18:27 -0600171static int spi_host_configure(struct transport_container *tc,
172 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100173 struct device *cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static DECLARE_TRANSPORT_CLASS(spi_host_class,
176 "spi_host",
177 spi_host_setup,
178 NULL,
James Bottomley9b161a42008-01-05 10:18:27 -0600179 spi_host_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181static int spi_host_match(struct attribute_container *cont,
182 struct device *dev)
183{
184 struct Scsi_Host *shost;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 if (!scsi_is_host_device(dev))
187 return 0;
188
189 shost = dev_to_shost(dev);
190 if (!shost->transportt || shost->transportt->host_attrs.ac.class
191 != &spi_host_class.class)
192 return 0;
193
James Bottomley9b161a42008-01-05 10:18:27 -0600194 return &shost->transportt->host_attrs.ac == cont;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
James Bottomley9b161a42008-01-05 10:18:27 -0600197static int spi_target_configure(struct transport_container *tc,
198 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100199 struct device *cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600200
James Bottomleyd0a7e572005-08-14 17:09:01 -0500201static int spi_device_configure(struct transport_container *tc,
202 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100203 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 struct scsi_device *sdev = to_scsi_device(dev);
206 struct scsi_target *starget = sdev->sdev_target;
207
208 /* Populate the target capability fields with the values
209 * gleaned from the device inquiry */
210
211 spi_support_sync(starget) = scsi_device_sync(sdev);
212 spi_support_wide(starget) = scsi_device_wide(sdev);
213 spi_support_dt(starget) = scsi_device_dt(sdev);
214 spi_support_dt_only(starget) = scsi_device_dt_only(sdev);
215 spi_support_ius(starget) = scsi_device_ius(sdev);
216 spi_support_qas(starget) = scsi_device_qas(sdev);
217
218 return 0;
219}
220
James Bottomleyd0a7e572005-08-14 17:09:01 -0500221static int spi_setup_transport_attrs(struct transport_container *tc,
222 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100223 struct device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 struct scsi_target *starget = to_scsi_target(dev);
226
227 spi_period(starget) = -1; /* illegal value */
James Bottomley 62a86122005-05-06 18:05:20 -0500228 spi_min_period(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 spi_offset(starget) = 0; /* async */
James Bottomley 62a86122005-05-06 18:05:20 -0500230 spi_max_offset(starget) = 255;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 spi_width(starget) = 0; /* narrow */
James Bottomley 62a86122005-05-06 18:05:20 -0500232 spi_max_width(starget) = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 spi_iu(starget) = 0; /* no IU */
234 spi_dt(starget) = 0; /* ST */
235 spi_qas(starget) = 0;
236 spi_wr_flow(starget) = 0;
237 spi_rd_strm(starget) = 0;
238 spi_rti(starget) = 0;
239 spi_pcomp_en(starget) = 0;
James Bottomleyd872ebe2005-08-03 15:43:52 -0500240 spi_hold_mcs(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 spi_dv_pending(starget) = 0;
James Bottomleydfdc58b2006-09-20 12:00:18 -0400242 spi_dv_in_progress(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 spi_initial_dv(starget) = 0;
Jes Sorensend158d262006-01-13 16:05:44 -0800244 mutex_init(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 return 0;
247}
248
James Bottomley 62a86122005-05-06 18:05:20 -0500249#define spi_transport_show_simple(field, format_string) \
250 \
251static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100252show_spi_transport_##field(struct device *dev, \
253 struct device_attribute *attr, char *buf) \
James Bottomley 62a86122005-05-06 18:05:20 -0500254{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100255 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500256 struct spi_transport_attrs *tp; \
257 \
258 tp = (struct spi_transport_attrs *)&starget->starget_data; \
259 return snprintf(buf, 20, format_string, tp->field); \
260}
261
262#define spi_transport_store_simple(field, format_string) \
263 \
264static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100265store_spi_transport_##field(struct device *dev, \
266 struct device_attribute *attr, \
267 const char *buf, size_t count) \
James Bottomley 62a86122005-05-06 18:05:20 -0500268{ \
269 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100270 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500271 struct spi_transport_attrs *tp; \
272 \
273 tp = (struct spi_transport_attrs *)&starget->starget_data; \
274 val = simple_strtoul(buf, NULL, 0); \
275 tp->field = val; \
276 return count; \
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#define spi_transport_show_function(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) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100285 struct scsi_target *starget = transport_class_to_starget(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
287 struct spi_transport_attrs *tp; \
288 struct spi_internal *i = to_spi_internal(shost->transportt); \
289 tp = (struct spi_transport_attrs *)&starget->starget_data; \
290 if (i->f->get_##field) \
291 i->f->get_##field(starget); \
292 return snprintf(buf, 20, format_string, tp->field); \
293}
294
295#define spi_transport_store_function(field, format_string) \
296static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100297store_spi_transport_##field(struct device *dev, \
298 struct device_attribute *attr, \
299 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{ \
301 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100302 struct scsi_target *starget = transport_class_to_starget(dev); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
304 struct spi_internal *i = to_spi_internal(shost->transportt); \
305 \
James Bottomley9b161a42008-01-05 10:18:27 -0600306 if (!i->f->set_##field) \
307 return -EINVAL; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 val = simple_strtoul(buf, NULL, 0); \
James Bottomley9b161a42008-01-05 10:18:27 -0600309 i->f->set_##field(starget, val); \
James Bottomley 62a86122005-05-06 18:05:20 -0500310 return count; \
311}
312
313#define spi_transport_store_max(field, format_string) \
314static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100315store_spi_transport_##field(struct device *dev, \
316 struct device_attribute *attr, \
317 const char *buf, size_t count) \
James Bottomley 62a86122005-05-06 18:05:20 -0500318{ \
319 int val; \
Tony Jonesee959b02008-02-22 00:13:36 +0100320 struct scsi_target *starget = transport_class_to_starget(dev); \
James Bottomley 62a86122005-05-06 18:05:20 -0500321 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
322 struct spi_internal *i = to_spi_internal(shost->transportt); \
323 struct spi_transport_attrs *tp \
324 = (struct spi_transport_attrs *)&starget->starget_data; \
325 \
James Bottomley9b161a42008-01-05 10:18:27 -0600326 if (i->f->set_##field) \
327 return -EINVAL; \
James Bottomley 62a86122005-05-06 18:05:20 -0500328 val = simple_strtoul(buf, NULL, 0); \
329 if (val > tp->max_##field) \
330 val = tp->max_##field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 i->f->set_##field(starget, val); \
332 return count; \
333}
334
335#define spi_transport_rd_attr(field, format_string) \
336 spi_transport_show_function(field, format_string) \
337 spi_transport_store_function(field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100338static DEVICE_ATTR(field, S_IRUGO, \
339 show_spi_transport_##field, \
340 store_spi_transport_##field);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
James Bottomley 62a86122005-05-06 18:05:20 -0500342#define spi_transport_simple_attr(field, format_string) \
343 spi_transport_show_simple(field, format_string) \
344 spi_transport_store_simple(field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100345static DEVICE_ATTR(field, S_IRUGO, \
346 show_spi_transport_##field, \
347 store_spi_transport_##field);
James Bottomley 62a86122005-05-06 18:05:20 -0500348
349#define spi_transport_max_attr(field, format_string) \
350 spi_transport_show_function(field, format_string) \
351 spi_transport_store_max(field, format_string) \
352 spi_transport_simple_attr(max_##field, format_string) \
Tony Jonesee959b02008-02-22 00:13:36 +0100353static DEVICE_ATTR(field, S_IRUGO, \
354 show_spi_transport_##field, \
355 store_spi_transport_##field);
James Bottomley 62a86122005-05-06 18:05:20 -0500356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/* The Parallel SCSI Tranport Attributes: */
James Bottomley 62a86122005-05-06 18:05:20 -0500358spi_transport_max_attr(offset, "%d\n");
359spi_transport_max_attr(width, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360spi_transport_rd_attr(iu, "%d\n");
361spi_transport_rd_attr(dt, "%d\n");
362spi_transport_rd_attr(qas, "%d\n");
363spi_transport_rd_attr(wr_flow, "%d\n");
364spi_transport_rd_attr(rd_strm, "%d\n");
365spi_transport_rd_attr(rti, "%d\n");
366spi_transport_rd_attr(pcomp_en, "%d\n");
James Bottomleyd872ebe2005-08-03 15:43:52 -0500367spi_transport_rd_attr(hold_mcs, "%d\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
James Bottomleye8bac9e2008-07-29 12:52:20 -0500369/* we only care about the first child device that's a real SCSI device
370 * so we return 1 to terminate the iteration when we find it */
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800371static int child_iter(struct device *dev, void *data)
372{
James Bottomleye8bac9e2008-07-29 12:52:20 -0500373 if (!scsi_is_sdev_device(dev))
374 return 0;
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800375
James Bottomleye8bac9e2008-07-29 12:52:20 -0500376 spi_dv_device(to_scsi_device(dev));
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800377 return 1;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100381store_spi_revalidate(struct device *dev, struct device_attribute *attr,
382 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Tony Jonesee959b02008-02-22 00:13:36 +0100384 struct scsi_target *starget = transport_class_to_starget(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
gregkh@suse.de9a881f12005-03-25 15:52:00 -0800386 device_for_each_child(&starget->dev, NULL, child_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return count;
388}
Tony Jonesee959b02008-02-22 00:13:36 +0100389static DEVICE_ATTR(revalidate, S_IWUSR, NULL, store_spi_revalidate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391/* Translate the period into ns according to the current spec
392 * for SDTR/PPR messages */
Matthew Wilcoxef725822005-12-15 16:22:01 -0500393static int period_to_str(char *buf, int period)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 int len, picosec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
James Bottomley 62a86122005-05-06 18:05:20 -0500397 if (period < 0 || period > 0xff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 picosec = -1;
James Bottomley 62a86122005-05-06 18:05:20 -0500399 } else if (period <= SPI_STATIC_PPR) {
400 picosec = ppr_to_ps[period];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 } else {
James Bottomley 62a86122005-05-06 18:05:20 -0500402 picosec = period * 4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
404
405 if (picosec == -1) {
406 len = sprintf(buf, "reserved");
407 } else {
408 len = sprint_frac(buf, picosec, 1000);
409 }
410
Matthew Wilcoxef725822005-12-15 16:22:01 -0500411 return len;
412}
413
414static ssize_t
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700415show_spi_transport_period_helper(char *buf, int period)
Matthew Wilcoxef725822005-12-15 16:22:01 -0500416{
417 int len = period_to_str(buf, period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 buf[len++] = '\n';
419 buf[len] = '\0';
420 return len;
421}
422
423static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100424store_spi_transport_period_helper(struct device *dev, const char *buf,
James Bottomley 62a86122005-05-06 18:05:20 -0500425 size_t count, int *periodp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 int j, picosec, period = -1;
428 char *endp;
429
430 picosec = simple_strtoul(buf, &endp, 10) * 1000;
431 if (*endp == '.') {
432 int mult = 100;
433 do {
434 endp++;
435 if (!isdigit(*endp))
436 break;
437 picosec += (*endp - '0') * mult;
438 mult /= 10;
439 } while (mult > 0);
440 }
441
442 for (j = 0; j <= SPI_STATIC_PPR; j++) {
443 if (ppr_to_ps[j] < picosec)
444 continue;
445 period = j;
446 break;
447 }
448
449 if (period == -1)
450 period = picosec / 4000;
451
452 if (period > 0xff)
453 period = 0xff;
454
James Bottomley 62a86122005-05-06 18:05:20 -0500455 *periodp = period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 return count;
458}
459
James Bottomley 62a86122005-05-06 18:05:20 -0500460static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100461show_spi_transport_period(struct device *dev,
462 struct device_attribute *attr, char *buf)
James Bottomley 62a86122005-05-06 18:05:20 -0500463{
Tony Jonesee959b02008-02-22 00:13:36 +0100464 struct scsi_target *starget = transport_class_to_starget(dev);
James Bottomley 62a86122005-05-06 18:05:20 -0500465 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
466 struct spi_internal *i = to_spi_internal(shost->transportt);
467 struct spi_transport_attrs *tp =
468 (struct spi_transport_attrs *)&starget->starget_data;
469
470 if (i->f->get_period)
471 i->f->get_period(starget);
472
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700473 return show_spi_transport_period_helper(buf, tp->period);
James Bottomley 62a86122005-05-06 18:05:20 -0500474}
475
476static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100477store_spi_transport_period(struct device *cdev, struct device_attribute *attr,
478 const char *buf, size_t count)
James Bottomley 62a86122005-05-06 18:05:20 -0500479{
480 struct scsi_target *starget = transport_class_to_starget(cdev);
481 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
482 struct spi_internal *i = to_spi_internal(shost->transportt);
483 struct spi_transport_attrs *tp =
484 (struct spi_transport_attrs *)&starget->starget_data;
485 int period, retval;
486
James Bottomley9b161a42008-01-05 10:18:27 -0600487 if (!i->f->set_period)
488 return -EINVAL;
489
James Bottomley 62a86122005-05-06 18:05:20 -0500490 retval = store_spi_transport_period_helper(cdev, buf, count, &period);
491
492 if (period < tp->min_period)
493 period = tp->min_period;
494
495 i->f->set_period(starget, period);
496
497 return retval;
498}
499
Tony Jonesee959b02008-02-22 00:13:36 +0100500static DEVICE_ATTR(period, S_IRUGO,
501 show_spi_transport_period,
502 store_spi_transport_period);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
James Bottomley 62a86122005-05-06 18:05:20 -0500504static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100505show_spi_transport_min_period(struct device *cdev,
506 struct device_attribute *attr, char *buf)
James Bottomley 62a86122005-05-06 18:05:20 -0500507{
508 struct scsi_target *starget = transport_class_to_starget(cdev);
James Bottomley9b161a42008-01-05 10:18:27 -0600509 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
510 struct spi_internal *i = to_spi_internal(shost->transportt);
James Bottomley 62a86122005-05-06 18:05:20 -0500511 struct spi_transport_attrs *tp =
512 (struct spi_transport_attrs *)&starget->starget_data;
513
James Bottomley9b161a42008-01-05 10:18:27 -0600514 if (!i->f->set_period)
515 return -EINVAL;
516
Matthew Wilcoxea697e42006-02-07 08:01:02 -0700517 return show_spi_transport_period_helper(buf, tp->min_period);
James Bottomley 62a86122005-05-06 18:05:20 -0500518}
519
520static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100521store_spi_transport_min_period(struct device *cdev,
522 struct device_attribute *attr,
523 const char *buf, size_t count)
James Bottomley 62a86122005-05-06 18:05:20 -0500524{
525 struct scsi_target *starget = transport_class_to_starget(cdev);
526 struct spi_transport_attrs *tp =
527 (struct spi_transport_attrs *)&starget->starget_data;
528
529 return store_spi_transport_period_helper(cdev, buf, count,
530 &tp->min_period);
531}
532
533
Tony Jonesee959b02008-02-22 00:13:36 +0100534static DEVICE_ATTR(min_period, S_IRUGO,
535 show_spi_transport_min_period,
536 store_spi_transport_min_period);
James Bottomley 62a86122005-05-06 18:05:20 -0500537
538
Tony Jonesee959b02008-02-22 00:13:36 +0100539static ssize_t show_spi_host_signalling(struct device *cdev,
540 struct device_attribute *attr,
541 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 struct Scsi_Host *shost = transport_class_to_shost(cdev);
544 struct spi_internal *i = to_spi_internal(shost->transportt);
545
546 if (i->f->get_signalling)
547 i->f->get_signalling(shost);
548
549 return sprintf(buf, "%s\n", spi_signal_to_string(spi_signalling(shost)));
550}
Tony Jonesee959b02008-02-22 00:13:36 +0100551static ssize_t store_spi_host_signalling(struct device *dev,
552 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 const char *buf, size_t count)
554{
Tony Jonesee959b02008-02-22 00:13:36 +0100555 struct Scsi_Host *shost = transport_class_to_shost(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct spi_internal *i = to_spi_internal(shost->transportt);
557 enum spi_signal_type type = spi_signal_to_value(buf);
558
James Bottomley9b161a42008-01-05 10:18:27 -0600559 if (!i->f->set_signalling)
560 return -EINVAL;
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (type != SPI_SIGNAL_UNKNOWN)
563 i->f->set_signalling(shost, type);
564
565 return count;
566}
Tony Jonesee959b02008-02-22 00:13:36 +0100567static DEVICE_ATTR(signalling, S_IRUGO,
568 show_spi_host_signalling,
569 store_spi_host_signalling);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571#define DV_SET(x, y) \
572 if(i->f->set_##x) \
573 i->f->set_##x(sdev->sdev_target, y)
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575enum spi_compare_returns {
576 SPI_COMPARE_SUCCESS,
577 SPI_COMPARE_FAILURE,
578 SPI_COMPARE_SKIP_TEST,
579};
580
581
582/* This is for read/write Domain Validation: If the device supports
583 * an echo buffer, we do read/write tests to it */
584static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500585spi_dv_device_echo_buffer(struct scsi_device *sdev, u8 *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 u8 *ptr, const int retries)
587{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int len = ptr - buffer;
James Bottomley33aa6872005-08-28 11:31:14 -0500589 int j, k, r, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 unsigned int pattern = 0x0000ffff;
James Bottomley33aa6872005-08-28 11:31:14 -0500591 struct scsi_sense_hdr sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 const char spi_write_buffer[] = {
594 WRITE_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
595 };
596 const char spi_read_buffer[] = {
597 READ_BUFFER, 0x0a, 0, 0, 0, 0, 0, len >> 8, len & 0xff, 0
598 };
599
600 /* set up the pattern buffer. Doesn't matter if we spill
601 * slightly beyond since that's where the read buffer is */
602 for (j = 0; j < len; ) {
603
604 /* fill the buffer with counting (test a) */
605 for ( ; j < min(len, 32); j++)
606 buffer[j] = j;
607 k = j;
608 /* fill the buffer with alternating words of 0x0 and
609 * 0xffff (test b) */
610 for ( ; j < min(len, k + 32); j += 2) {
611 u16 *word = (u16 *)&buffer[j];
612
613 *word = (j & 0x02) ? 0x0000 : 0xffff;
614 }
615 k = j;
616 /* fill with crosstalk (alternating 0x5555 0xaaa)
617 * (test c) */
618 for ( ; j < min(len, k + 32); j += 2) {
619 u16 *word = (u16 *)&buffer[j];
620
621 *word = (j & 0x02) ? 0x5555 : 0xaaaa;
622 }
623 k = j;
624 /* fill with shifting bits (test d) */
625 for ( ; j < min(len, k + 32); j += 4) {
626 u32 *word = (unsigned int *)&buffer[j];
627 u32 roll = (pattern & 0x80000000) ? 1 : 0;
628
629 *word = pattern;
630 pattern = (pattern << 1) | roll;
631 }
632 /* don't bother with random data (test e) */
633 }
634
635 for (r = 0; r < retries; r++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500636 result = spi_execute(sdev, spi_write_buffer, DMA_TO_DEVICE,
637 buffer, len, &sshdr);
638 if(result || !scsi_device_online(sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 scsi_device_set_state(sdev, SDEV_QUIESCE);
James Bottomley33aa6872005-08-28 11:31:14 -0500641 if (scsi_sense_valid(&sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 && sshdr.sense_key == ILLEGAL_REQUEST
643 /* INVALID FIELD IN CDB */
644 && sshdr.asc == 0x24 && sshdr.ascq == 0x00)
645 /* This would mean that the drive lied
646 * to us about supporting an echo
647 * buffer (unfortunately some Western
648 * Digital drives do precisely this)
649 */
650 return SPI_COMPARE_SKIP_TEST;
651
652
James Bottomley9ccfc752005-10-02 11:45:08 -0500653 sdev_printk(KERN_ERR, sdev, "Write Buffer failure %x\n", result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return SPI_COMPARE_FAILURE;
655 }
656
657 memset(ptr, 0, len);
James Bottomley33aa6872005-08-28 11:31:14 -0500658 spi_execute(sdev, spi_read_buffer, DMA_FROM_DEVICE,
659 ptr, len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 scsi_device_set_state(sdev, SDEV_QUIESCE);
661
662 if (memcmp(buffer, ptr, len) != 0)
663 return SPI_COMPARE_FAILURE;
664 }
665 return SPI_COMPARE_SUCCESS;
666}
667
668/* This is for the simplest form of Domain Validation: a read test
669 * on the inquiry data from the device */
670static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500671spi_dv_device_compare_inquiry(struct scsi_device *sdev, u8 *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 u8 *ptr, const int retries)
673{
James Bottomley33aa6872005-08-28 11:31:14 -0500674 int r, result;
675 const int len = sdev->inquiry_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 const char spi_inquiry[] = {
677 INQUIRY, 0, 0, 0, len, 0
678 };
679
680 for (r = 0; r < retries; r++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 memset(ptr, 0, len);
682
James Bottomley33aa6872005-08-28 11:31:14 -0500683 result = spi_execute(sdev, spi_inquiry, DMA_FROM_DEVICE,
684 ptr, len, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
James Bottomley33aa6872005-08-28 11:31:14 -0500686 if(result || !scsi_device_online(sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 scsi_device_set_state(sdev, SDEV_QUIESCE);
688 return SPI_COMPARE_FAILURE;
689 }
690
691 /* If we don't have the inquiry data already, the
692 * first read gets it */
693 if (ptr == buffer) {
694 ptr += len;
695 --r;
696 continue;
697 }
698
699 if (memcmp(buffer, ptr, len) != 0)
700 /* failure */
701 return SPI_COMPARE_FAILURE;
702 }
703 return SPI_COMPARE_SUCCESS;
704}
705
706static enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500707spi_dv_retrain(struct scsi_device *sdev, u8 *buffer, u8 *ptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 enum spi_compare_returns
James Bottomley33aa6872005-08-28 11:31:14 -0500709 (*compare_fn)(struct scsi_device *, u8 *, u8 *, int))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
James Bottomley33aa6872005-08-28 11:31:14 -0500711 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500712 struct scsi_target *starget = sdev->sdev_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 int period = 0, prevperiod = 0;
714 enum spi_compare_returns retval;
715
716
717 for (;;) {
718 int newperiod;
James Bottomley33aa6872005-08-28 11:31:14 -0500719 retval = compare_fn(sdev, buffer, ptr, DV_LOOPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 if (retval == SPI_COMPARE_SUCCESS
722 || retval == SPI_COMPARE_SKIP_TEST)
723 break;
724
725 /* OK, retrain, fallback */
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500726 if (i->f->get_iu)
727 i->f->get_iu(starget);
728 if (i->f->get_qas)
729 i->f->get_qas(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (i->f->get_period)
731 i->f->get_period(sdev->sdev_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500733 /* Here's the fallback sequence; first try turning off
734 * IU, then QAS (if we can control them), then finally
735 * fall down the periods */
736 if (i->f->set_iu && spi_iu(starget)) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500737 starget_printk(KERN_ERR, starget, "Domain Validation Disabing Information Units\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500738 DV_SET(iu, 0);
739 } else if (i->f->set_qas && spi_qas(starget)) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500740 starget_printk(KERN_ERR, starget, "Domain Validation Disabing Quick Arbitration and Selection\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500741 DV_SET(qas, 0);
742 } else {
743 newperiod = spi_period(starget);
744 period = newperiod > period ? newperiod : period;
745 if (period < 0x0d)
746 period++;
747 else
748 period += period >> 1;
749
750 if (unlikely(period > 0xff || period == prevperiod)) {
751 /* Total failure; set to async and return */
James Bottomley9ccfc752005-10-02 11:45:08 -0500752 starget_printk(KERN_ERR, starget, "Domain Validation Failure, dropping back to Asynchronous\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500753 DV_SET(offset, 0);
754 return SPI_COMPARE_FAILURE;
755 }
James Bottomley9ccfc752005-10-02 11:45:08 -0500756 starget_printk(KERN_ERR, starget, "Domain Validation detected failure, dropping back\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500757 DV_SET(period, period);
758 prevperiod = period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
761 return retval;
762}
763
764static int
James Bottomley33aa6872005-08-28 11:31:14 -0500765spi_dv_device_get_echo_buffer(struct scsi_device *sdev, u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
James Bottomley33aa6872005-08-28 11:31:14 -0500767 int l, result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 /* first off do a test unit ready. This can error out
770 * because of reservations or some other reason. If it
771 * fails, the device won't let us write to the echo buffer
772 * so just return failure */
773
774 const char spi_test_unit_ready[] = {
775 TEST_UNIT_READY, 0, 0, 0, 0, 0
776 };
777
778 const char spi_read_buffer_descriptor[] = {
779 READ_BUFFER, 0x0b, 0, 0, 0, 0, 0, 0, 4, 0
780 };
781
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* We send a set of three TURs to clear any outstanding
784 * unit attention conditions if they exist (Otherwise the
785 * buffer tests won't be happy). If the TUR still fails
786 * (reservation conflict, device not ready, etc) just
787 * skip the write tests */
788 for (l = 0; ; l++) {
James Bottomley33aa6872005-08-28 11:31:14 -0500789 result = spi_execute(sdev, spi_test_unit_ready, DMA_NONE,
790 NULL, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
James Bottomley33aa6872005-08-28 11:31:14 -0500792 if(result) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if(l >= 3)
794 return 0;
795 } else {
796 /* TUR succeeded */
797 break;
798 }
799 }
800
James Bottomley33aa6872005-08-28 11:31:14 -0500801 result = spi_execute(sdev, spi_read_buffer_descriptor,
802 DMA_FROM_DEVICE, buffer, 4, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
James Bottomley33aa6872005-08-28 11:31:14 -0500804 if (result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* Device has no echo buffer */
806 return 0;
807
808 return buffer[3] + ((buffer[2] & 0x1f) << 8);
809}
810
811static void
James Bottomley33aa6872005-08-28 11:31:14 -0500812spi_dv_device_internal(struct scsi_device *sdev, u8 *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
James Bottomley33aa6872005-08-28 11:31:14 -0500814 struct spi_internal *i = to_spi_internal(sdev->host->transportt);
James Bottomley 62a86122005-05-06 18:05:20 -0500815 struct scsi_target *starget = sdev->sdev_target;
James Bottomley60eef252006-06-10 10:51:23 -0500816 struct Scsi_Host *shost = sdev->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int len = sdev->inquiry_len;
James Bottomley23028272007-09-22 08:40:09 -0500818 int min_period = spi_min_period(starget);
819 int max_width = spi_max_width(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 /* first set us up for narrow async */
821 DV_SET(offset, 0);
822 DV_SET(width, 0);
James Bottomley23028272007-09-22 08:40:09 -0500823
James Bottomley33aa6872005-08-28 11:31:14 -0500824 if (spi_dv_device_compare_inquiry(sdev, buffer, buffer, DV_LOOPS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 != SPI_COMPARE_SUCCESS) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500826 starget_printk(KERN_ERR, starget, "Domain Validation Initial Inquiry Failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /* FIXME: should probably offline the device here? */
828 return;
829 }
830
James Bottomley23028272007-09-22 08:40:09 -0500831 if (!scsi_device_wide(sdev)) {
832 spi_max_width(starget) = 0;
833 max_width = 0;
834 }
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /* test width */
James Bottomley23028272007-09-22 08:40:09 -0500837 if (i->f->set_width && max_width) {
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500838 i->f->set_width(starget, 1);
James Bottomley 62a86122005-05-06 18:05:20 -0500839
James Bottomley33aa6872005-08-28 11:31:14 -0500840 if (spi_dv_device_compare_inquiry(sdev, buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 buffer + len,
842 DV_LOOPS)
843 != SPI_COMPARE_SUCCESS) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500844 starget_printk(KERN_ERR, starget, "Wide Transfers Fail\n");
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500845 i->f->set_width(starget, 0);
James Bottomley23028272007-09-22 08:40:09 -0500846 /* Make sure we don't force wide back on by asking
847 * for a transfer period that requires it */
848 max_width = 0;
849 if (min_period < 10)
850 min_period = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 }
853
854 if (!i->f->set_period)
855 return;
856
857 /* device can't handle synchronous */
James Bottomleyeb1dd682005-07-02 12:22:01 -0400858 if (!scsi_device_sync(sdev) && !scsi_device_dt(sdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return;
860
James Bottomley349cd7c2005-11-28 15:41:58 -0600861 /* len == -1 is the signal that we need to ascertain the
862 * presence of an echo buffer before trying to use it. len ==
863 * 0 means we don't have an echo buffer */
864 len = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 retry:
867
868 /* now set up to the maximum */
James Bottomley 62a86122005-05-06 18:05:20 -0500869 DV_SET(offset, spi_max_offset(starget));
James Bottomley23028272007-09-22 08:40:09 -0500870 DV_SET(period, min_period);
871
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500872 /* try QAS requests; this should be harmless to set if the
873 * target supports it */
James Bottomleydfdc58b2006-09-20 12:00:18 -0400874 if (scsi_device_qas(sdev)) {
James Bottomleyeb1dd682005-07-02 12:22:01 -0400875 DV_SET(qas, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400876 } else {
877 DV_SET(qas, 0);
878 }
879
James Bottomley23028272007-09-22 08:40:09 -0500880 if (scsi_device_ius(sdev) && min_period < 9) {
James Bottomleydfdc58b2006-09-20 12:00:18 -0400881 /* This u320 (or u640). Set IU transfers */
James Bottomleyeb1dd682005-07-02 12:22:01 -0400882 DV_SET(iu, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400883 /* Then set the optional parameters */
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500884 DV_SET(rd_strm, 1);
885 DV_SET(wr_flow, 1);
886 DV_SET(rti, 1);
James Bottomley23028272007-09-22 08:40:09 -0500887 if (min_period == 8)
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500888 DV_SET(pcomp_en, 1);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400889 } else {
890 DV_SET(iu, 0);
James Bottomley9a8bc9b2005-05-31 18:35:39 -0500891 }
James Bottomleydfdc58b2006-09-20 12:00:18 -0400892
James Bottomley60eef252006-06-10 10:51:23 -0500893 /* now that we've done all this, actually check the bus
894 * signal type (if known). Some devices are stupid on
895 * a SE bus and still claim they can try LVD only settings */
896 if (i->f->get_signalling)
897 i->f->get_signalling(shost);
898 if (spi_signalling(shost) == SPI_SIGNAL_SE ||
James Bottomleydfdc58b2006-09-20 12:00:18 -0400899 spi_signalling(shost) == SPI_SIGNAL_HVD ||
900 !scsi_device_dt(sdev)) {
James Bottomley60eef252006-06-10 10:51:23 -0500901 DV_SET(dt, 0);
James Bottomleydfdc58b2006-09-20 12:00:18 -0400902 } else {
903 DV_SET(dt, 1);
904 }
James Bottomley23028272007-09-22 08:40:09 -0500905 /* set width last because it will pull all the other
906 * parameters down to required values */
907 DV_SET(width, max_width);
908
James Bottomley349cd7c2005-11-28 15:41:58 -0600909 /* Do the read only INQUIRY tests */
910 spi_dv_retrain(sdev, buffer, buffer + sdev->inquiry_len,
911 spi_dv_device_compare_inquiry);
912 /* See if we actually managed to negotiate and sustain DT */
913 if (i->f->get_dt)
914 i->f->get_dt(starget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
James Bottomley349cd7c2005-11-28 15:41:58 -0600916 /* see if the device has an echo buffer. If it does we can do
917 * the SPI pattern write tests. Because of some broken
918 * devices, we *only* try this on a device that has actually
919 * negotiated DT */
920
921 if (len == -1 && spi_dt(starget))
922 len = spi_dv_device_get_echo_buffer(sdev, buffer);
923
924 if (len <= 0) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500925 starget_printk(KERN_INFO, starget, "Domain Validation skipping write tests\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return;
927 }
928
929 if (len > SPI_MAX_ECHO_BUFFER_SIZE) {
James Bottomley9ccfc752005-10-02 11:45:08 -0500930 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 -0700931 len = SPI_MAX_ECHO_BUFFER_SIZE;
932 }
933
James Bottomley33aa6872005-08-28 11:31:14 -0500934 if (spi_dv_retrain(sdev, buffer, buffer + len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 spi_dv_device_echo_buffer)
936 == SPI_COMPARE_SKIP_TEST) {
937 /* OK, the stupid drive can't do a write echo buffer
938 * test after all, fall back to the read tests */
939 len = 0;
940 goto retry;
941 }
942}
943
944
945/** spi_dv_device - Do Domain Validation on the device
946 * @sdev: scsi device to validate
947 *
948 * Performs the domain validation on the given device in the
949 * current execution thread. Since DV operations may sleep,
950 * the current thread must have user context. Also no SCSI
951 * related locks that would deadlock I/O issued by the DV may
952 * be held.
953 */
954void
955spi_dv_device(struct scsi_device *sdev)
956{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct scsi_target *starget = sdev->sdev_target;
958 u8 *buffer;
959 const int len = SPI_MAX_ECHO_BUFFER_SIZE*2;
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (unlikely(scsi_device_get(sdev)))
James Bottomley33aa6872005-08-28 11:31:14 -0500962 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
James Bottomleydfdc58b2006-09-20 12:00:18 -0400964 if (unlikely(spi_dv_in_progress(starget)))
965 return;
966 spi_dv_in_progress(starget) = 1;
967
Jes Sorensen24669f752006-01-16 10:31:18 -0500968 buffer = kzalloc(len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (unlikely(!buffer))
971 goto out_put;
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /* We need to verify that the actual device will quiesce; the
974 * later target quiesce is just a nice to have */
975 if (unlikely(scsi_device_quiesce(sdev)))
976 goto out_free;
977
978 scsi_target_quiesce(starget);
979
980 spi_dv_pending(starget) = 1;
Jes Sorensend158d262006-01-13 16:05:44 -0800981 mutex_lock(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
James Bottomley9ccfc752005-10-02 11:45:08 -0500983 starget_printk(KERN_INFO, starget, "Beginning Domain Validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
James Bottomley33aa6872005-08-28 11:31:14 -0500985 spi_dv_device_internal(sdev, buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
James Bottomley9ccfc752005-10-02 11:45:08 -0500987 starget_printk(KERN_INFO, starget, "Ending Domain Validation\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Jes Sorensend158d262006-01-13 16:05:44 -0800989 mutex_unlock(&spi_dv_mutex(starget));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 spi_dv_pending(starget) = 0;
991
992 scsi_target_resume(starget);
993
994 spi_initial_dv(starget) = 1;
995
996 out_free:
997 kfree(buffer);
998 out_put:
James Bottomleydfdc58b2006-09-20 12:00:18 -0400999 spi_dv_in_progress(starget) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 scsi_device_put(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002EXPORT_SYMBOL(spi_dv_device);
1003
1004struct work_queue_wrapper {
1005 struct work_struct work;
1006 struct scsi_device *sdev;
1007};
1008
1009static void
David Howellsc4028952006-11-22 14:57:56 +00001010spi_dv_device_work_wrapper(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
David Howellsc4028952006-11-22 14:57:56 +00001012 struct work_queue_wrapper *wqw =
1013 container_of(work, struct work_queue_wrapper, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct scsi_device *sdev = wqw->sdev;
1015
1016 kfree(wqw);
1017 spi_dv_device(sdev);
1018 spi_dv_pending(sdev->sdev_target) = 0;
1019 scsi_device_put(sdev);
1020}
1021
1022
1023/**
1024 * spi_schedule_dv_device - schedule domain validation to occur on the device
1025 * @sdev: The device to validate
1026 *
1027 * Identical to spi_dv_device() above, except that the DV will be
1028 * scheduled to occur in a workqueue later. All memory allocations
1029 * are atomic, so may be called from any context including those holding
1030 * SCSI locks.
1031 */
1032void
1033spi_schedule_dv_device(struct scsi_device *sdev)
1034{
1035 struct work_queue_wrapper *wqw =
1036 kmalloc(sizeof(struct work_queue_wrapper), GFP_ATOMIC);
1037
1038 if (unlikely(!wqw))
1039 return;
1040
1041 if (unlikely(spi_dv_pending(sdev->sdev_target))) {
1042 kfree(wqw);
1043 return;
1044 }
1045 /* Set pending early (dv_device doesn't check it, only sets it) */
1046 spi_dv_pending(sdev->sdev_target) = 1;
1047 if (unlikely(scsi_device_get(sdev))) {
1048 kfree(wqw);
1049 spi_dv_pending(sdev->sdev_target) = 0;
1050 return;
1051 }
1052
David Howellsc4028952006-11-22 14:57:56 +00001053 INIT_WORK(&wqw->work, spi_dv_device_work_wrapper);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 wqw->sdev = sdev;
1055
1056 schedule_work(&wqw->work);
1057}
1058EXPORT_SYMBOL(spi_schedule_dv_device);
1059
1060/**
1061 * spi_display_xfer_agreement - Print the current target transfer agreement
1062 * @starget: The target for which to display the agreement
1063 *
1064 * Each SPI port is required to maintain a transfer agreement for each
1065 * other port on the bus. This function prints a one-line summary of
1066 * the current agreement; more detailed information is available in sysfs.
1067 */
1068void spi_display_xfer_agreement(struct scsi_target *starget)
1069{
1070 struct spi_transport_attrs *tp;
1071 tp = (struct spi_transport_attrs *)&starget->starget_data;
1072
1073 if (tp->offset > 0 && tp->period > 0) {
1074 unsigned int picosec, kb100;
1075 char *scsi = "FAST-?";
1076 char tmp[8];
1077
1078 if (tp->period <= SPI_STATIC_PPR) {
1079 picosec = ppr_to_ps[tp->period];
1080 switch (tp->period) {
1081 case 7: scsi = "FAST-320"; break;
1082 case 8: scsi = "FAST-160"; break;
1083 case 9: scsi = "FAST-80"; break;
1084 case 10:
1085 case 11: scsi = "FAST-40"; break;
1086 case 12: scsi = "FAST-20"; break;
1087 }
1088 } else {
1089 picosec = tp->period * 4000;
1090 if (tp->period < 25)
1091 scsi = "FAST-20";
1092 else if (tp->period < 50)
1093 scsi = "FAST-10";
1094 else
1095 scsi = "FAST-5";
1096 }
1097
1098 kb100 = (10000000 + picosec / 2) / picosec;
1099 if (tp->width)
1100 kb100 *= 2;
1101 sprint_frac(tmp, picosec, 1000);
1102
1103 dev_info(&starget->dev,
James Bottomleyd872ebe2005-08-03 15:43:52 -05001104 "%s %sSCSI %d.%d MB/s %s%s%s%s%s%s%s%s (%s ns, offset %d)\n",
1105 scsi, tp->width ? "WIDE " : "", kb100/10, kb100 % 10,
1106 tp->dt ? "DT" : "ST",
1107 tp->iu ? " IU" : "",
1108 tp->qas ? " QAS" : "",
1109 tp->rd_strm ? " RDSTRM" : "",
1110 tp->rti ? " RTI" : "",
1111 tp->wr_flow ? " WRFLOW" : "",
1112 tp->pcomp_en ? " PCOMP" : "",
1113 tp->hold_mcs ? " HMCS" : "",
1114 tmp, tp->offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 } else {
Matthew Wilcox493ff4e2005-11-17 11:13:43 -07001116 dev_info(&starget->dev, "%sasynchronous\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 tp->width ? "wide " : "");
1118 }
1119}
1120EXPORT_SYMBOL(spi_display_xfer_agreement);
1121
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001122int spi_populate_width_msg(unsigned char *msg, int width)
1123{
1124 msg[0] = EXTENDED_MESSAGE;
1125 msg[1] = 2;
1126 msg[2] = EXTENDED_WDTR;
1127 msg[3] = width;
1128 return 4;
1129}
James Bottomley38e14f82006-02-17 14:58:47 -08001130EXPORT_SYMBOL_GPL(spi_populate_width_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001131
1132int spi_populate_sync_msg(unsigned char *msg, int period, int offset)
1133{
1134 msg[0] = EXTENDED_MESSAGE;
1135 msg[1] = 3;
1136 msg[2] = EXTENDED_SDTR;
1137 msg[3] = period;
1138 msg[4] = offset;
1139 return 5;
1140}
James Bottomley38e14f82006-02-17 14:58:47 -08001141EXPORT_SYMBOL_GPL(spi_populate_sync_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001142
1143int spi_populate_ppr_msg(unsigned char *msg, int period, int offset,
1144 int width, int options)
1145{
1146 msg[0] = EXTENDED_MESSAGE;
1147 msg[1] = 6;
1148 msg[2] = EXTENDED_PPR;
1149 msg[3] = period;
1150 msg[4] = 0;
1151 msg[5] = offset;
1152 msg[6] = width;
1153 msg[7] = options;
1154 return 8;
1155}
James Bottomley38e14f82006-02-17 14:58:47 -08001156EXPORT_SYMBOL_GPL(spi_populate_ppr_msg);
Matthew Wilcox6ea3c0b2006-02-07 07:54:46 -07001157
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001158#ifdef CONFIG_SCSI_CONSTANTS
1159static const char * const one_byte_msgs[] = {
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001160/* 0x00 */ "Task Complete", NULL /* Extended Message */, "Save Pointers",
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001161/* 0x03 */ "Restore Pointers", "Disconnect", "Initiator Error",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001162/* 0x06 */ "Abort Task Set", "Message Reject", "Nop", "Message Parity Error",
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001163/* 0x0a */ "Linked Command Complete", "Linked Command Complete w/flag",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001164/* 0x0c */ "Target Reset", "Abort Task", "Clear Task Set",
1165/* 0x0f */ "Initiate Recovery", "Release Recovery",
1166/* 0x11 */ "Terminate Process", "Continue Task", "Target Transfer Disable",
1167/* 0x14 */ NULL, NULL, "Clear ACA", "LUN Reset"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001168};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001169
1170static const char * const two_byte_msgs[] = {
Matthew Wilcox47972152005-12-15 16:22:01 -05001171/* 0x20 */ "Simple Queue Tag", "Head of Queue Tag", "Ordered Queue Tag",
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001172/* 0x23 */ "Ignore Wide Residue", "ACA"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001173};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001174
1175static const char * const extended_msgs[] = {
1176/* 0x00 */ "Modify Data Pointer", "Synchronous Data Transfer Request",
Matthew Wilcoxef725822005-12-15 16:22:01 -05001177/* 0x02 */ "SCSI-I Extended Identify", "Wide Data Transfer Request",
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001178/* 0x04 */ "Parallel Protocol Request", "Modify Bidirectional Data Pointer"
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001179};
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001180
Adrian Bunkbdd70f22006-01-05 23:39:18 +01001181static void print_nego(const unsigned char *msg, int per, int off, int width)
Matthew Wilcoxef725822005-12-15 16:22:01 -05001182{
1183 if (per) {
1184 char buf[20];
1185 period_to_str(buf, msg[per]);
1186 printk("period = %s ns ", buf);
1187 }
1188
1189 if (off)
1190 printk("offset = %d ", msg[off]);
1191 if (width)
1192 printk("width = %d ", 8 << msg[width]);
1193}
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001194
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001195static void print_ptr(const unsigned char *msg, int msb, const char *desc)
1196{
1197 int ptr = (msg[msb] << 24) | (msg[msb+1] << 16) | (msg[msb+2] << 8) |
1198 msg[msb+3];
1199 printk("%s = %d ", desc, ptr);
1200}
1201
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001202int spi_print_msg(const unsigned char *msg)
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001203{
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001204 int len = 1, i;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001205 if (msg[0] == EXTENDED_MESSAGE) {
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001206 len = 2 + msg[1];
1207 if (len == 2)
1208 len += 256;
Matthew Wilcoxb32aaff2005-12-15 16:22:01 -05001209 if (msg[2] < ARRAY_SIZE(extended_msgs))
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001210 printk ("%s ", extended_msgs[msg[2]]);
1211 else
1212 printk ("Extended Message, reserved code (0x%02x) ",
1213 (int) msg[2]);
1214 switch (msg[2]) {
1215 case EXTENDED_MODIFY_DATA_POINTER:
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001216 print_ptr(msg, 3, "pointer");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001217 break;
1218 case EXTENDED_SDTR:
Matthew Wilcoxef725822005-12-15 16:22:01 -05001219 print_nego(msg, 3, 4, 0);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001220 break;
1221 case EXTENDED_WDTR:
Matthew Wilcoxef725822005-12-15 16:22:01 -05001222 print_nego(msg, 0, 0, 3);
1223 break;
1224 case EXTENDED_PPR:
1225 print_nego(msg, 3, 5, 6);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001226 break;
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001227 case EXTENDED_MODIFY_BIDI_DATA_PTR:
1228 print_ptr(msg, 3, "out");
1229 print_ptr(msg, 7, "in");
1230 break;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001231 default:
1232 for (i = 2; i < len; ++i)
1233 printk("%02x ", msg[i]);
1234 }
1235 /* Identify */
1236 } else if (msg[0] & 0x80) {
1237 printk("Identify disconnect %sallowed %s %d ",
1238 (msg[0] & 0x40) ? "" : "not ",
1239 (msg[0] & 0x20) ? "target routine" : "lun",
1240 msg[0] & 0x7);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001241 /* Normal One byte */
1242 } else if (msg[0] < 0x1f) {
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001243 if (msg[0] < ARRAY_SIZE(one_byte_msgs) && one_byte_msgs[msg[0]])
Matthew Wilcoxe24d8732006-02-07 08:05:26 -07001244 printk("%s ", one_byte_msgs[msg[0]]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001245 else
1246 printk("reserved (%02x) ", msg[0]);
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001247 } else if (msg[0] == 0x55) {
1248 printk("QAS Request ");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001249 /* Two byte */
1250 } else if (msg[0] <= 0x2f) {
Matthew Wilcoxb32aaff2005-12-15 16:22:01 -05001251 if ((msg[0] - 0x20) < ARRAY_SIZE(two_byte_msgs))
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001252 printk("%s %02x ", two_byte_msgs[msg[0] - 0x20],
1253 msg[1]);
1254 else
1255 printk("reserved two byte (%02x %02x) ",
1256 msg[0], msg[1]);
1257 len = 2;
1258 } else
Matthew Wilcoxe24d8732006-02-07 08:05:26 -07001259 printk("reserved ");
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001260 return len;
1261}
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001262EXPORT_SYMBOL(spi_print_msg);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001263
1264#else /* ifndef CONFIG_SCSI_CONSTANTS */
1265
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001266int spi_print_msg(const unsigned char *msg)
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001267{
Matthew Wilcox72df0eb2006-03-10 07:18:22 -07001268 int len = 1, i;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001269
1270 if (msg[0] == EXTENDED_MESSAGE) {
Matthew Wilcoxfc253072006-02-18 20:52:31 -07001271 len = 2 + msg[1];
1272 if (len == 2)
1273 len += 256;
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001274 for (i = 0; i < len; ++i)
1275 printk("%02x ", msg[i]);
1276 /* Identify */
1277 } else if (msg[0] & 0x80) {
1278 printk("%02x ", msg[0]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001279 /* Normal One byte */
James Bottomley597705a2006-03-12 09:54:19 -06001280 } else if ((msg[0] < 0x1f) || (msg[0] == 0x55)) {
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001281 printk("%02x ", msg[0]);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001282 /* Two byte */
1283 } else if (msg[0] <= 0x2f) {
1284 printk("%02x %02x", msg[0], msg[1]);
1285 len = 2;
1286 } else
1287 printk("%02x ", msg[0]);
1288 return len;
1289}
Matthew Wilcox1abfd372005-12-15 16:22:01 -05001290EXPORT_SYMBOL(spi_print_msg);
Matthew Wilcox410ca5c2005-12-15 16:22:01 -05001291#endif /* ! CONFIG_SCSI_CONSTANTS */
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293static int spi_device_match(struct attribute_container *cont,
1294 struct device *dev)
1295{
1296 struct scsi_device *sdev;
1297 struct Scsi_Host *shost;
James Bottomley10c1b882005-08-14 14:34:06 -05001298 struct spi_internal *i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 if (!scsi_is_sdev_device(dev))
1301 return 0;
1302
1303 sdev = to_scsi_device(dev);
1304 shost = sdev->host;
1305 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1306 != &spi_host_class.class)
1307 return 0;
1308 /* Note: this class has no device attributes, so it has
1309 * no per-HBA allocation and thus we don't need to distinguish
1310 * the attribute containers for the device */
James Bottomley10c1b882005-08-14 14:34:06 -05001311 i = to_spi_internal(shost->transportt);
1312 if (i->f->deny_binding && i->f->deny_binding(sdev->sdev_target))
1313 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return 1;
1315}
1316
1317static int spi_target_match(struct attribute_container *cont,
1318 struct device *dev)
1319{
1320 struct Scsi_Host *shost;
James Bottomley10c1b882005-08-14 14:34:06 -05001321 struct scsi_target *starget;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 struct spi_internal *i;
1323
1324 if (!scsi_is_target_device(dev))
1325 return 0;
1326
1327 shost = dev_to_shost(dev->parent);
1328 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1329 != &spi_host_class.class)
1330 return 0;
1331
1332 i = to_spi_internal(shost->transportt);
James Bottomley10c1b882005-08-14 14:34:06 -05001333 starget = to_scsi_target(dev);
1334
1335 if (i->f->deny_binding && i->f->deny_binding(starget))
1336 return 0;
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return &i->t.target_attrs.ac == cont;
1339}
1340
1341static DECLARE_TRANSPORT_CLASS(spi_transport_class,
1342 "spi_transport",
1343 spi_setup_transport_attrs,
1344 NULL,
James Bottomley9b161a42008-01-05 10:18:27 -06001345 spi_target_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347static DECLARE_ANON_TRANSPORT_CLASS(spi_device_class,
1348 spi_device_match,
1349 spi_device_configure);
1350
James Bottomley9b161a42008-01-05 10:18:27 -06001351static struct attribute *host_attributes[] = {
Tony Jonesee959b02008-02-22 00:13:36 +01001352 &dev_attr_signalling.attr,
James Bottomley9b161a42008-01-05 10:18:27 -06001353 NULL
1354};
1355
1356static struct attribute_group host_attribute_group = {
1357 .attrs = host_attributes,
1358};
1359
1360static int spi_host_configure(struct transport_container *tc,
1361 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +01001362 struct device *cdev)
James Bottomley9b161a42008-01-05 10:18:27 -06001363{
1364 struct kobject *kobj = &cdev->kobj;
1365 struct Scsi_Host *shost = transport_class_to_shost(cdev);
1366 struct spi_internal *si = to_spi_internal(shost->transportt);
Tony Jonesee959b02008-02-22 00:13:36 +01001367 struct attribute *attr = &dev_attr_signalling.attr;
James Bottomley9b161a42008-01-05 10:18:27 -06001368 int rc = 0;
1369
1370 if (si->f->set_signalling)
1371 rc = sysfs_chmod_file(kobj, attr, attr->mode | S_IWUSR);
1372
1373 return rc;
1374}
1375
1376/* returns true if we should be showing the variable. Also
1377 * overloads the return by setting 1<<1 if the attribute should
1378 * be writeable */
1379#define TARGET_ATTRIBUTE_HELPER(name) \
James Bottomley352f6bb2008-03-20 20:57:02 -05001380 (si->f->show_##name ? S_IRUGO : 0) | \
1381 (si->f->set_##name ? S_IWUSR : 0)
James Bottomley9b161a42008-01-05 10:18:27 -06001382
James Bottomley352f6bb2008-03-20 20:57:02 -05001383static mode_t target_attribute_is_visible(struct kobject *kobj,
1384 struct attribute *attr, int i)
James Bottomley9b161a42008-01-05 10:18:27 -06001385{
Tony Jonesee959b02008-02-22 00:13:36 +01001386 struct device *cdev = container_of(kobj, struct device, kobj);
James Bottomley9b161a42008-01-05 10:18:27 -06001387 struct scsi_target *starget = transport_class_to_starget(cdev);
1388 struct Scsi_Host *shost = transport_class_to_shost(cdev);
1389 struct spi_internal *si = to_spi_internal(shost->transportt);
1390
Tony Jonesee959b02008-02-22 00:13:36 +01001391 if (attr == &dev_attr_period.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001392 spi_support_sync(starget))
1393 return TARGET_ATTRIBUTE_HELPER(period);
Tony Jonesee959b02008-02-22 00:13:36 +01001394 else if (attr == &dev_attr_min_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_offset.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001398 spi_support_sync(starget))
1399 return TARGET_ATTRIBUTE_HELPER(offset);
Tony Jonesee959b02008-02-22 00:13:36 +01001400 else if (attr == &dev_attr_max_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_width.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001404 spi_support_wide(starget))
1405 return TARGET_ATTRIBUTE_HELPER(width);
Tony Jonesee959b02008-02-22 00:13:36 +01001406 else if (attr == &dev_attr_max_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_iu.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001410 spi_support_ius(starget))
1411 return TARGET_ATTRIBUTE_HELPER(iu);
Tony Jonesee959b02008-02-22 00:13:36 +01001412 else if (attr == &dev_attr_dt.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001413 spi_support_dt(starget))
1414 return TARGET_ATTRIBUTE_HELPER(dt);
Tony Jonesee959b02008-02-22 00:13:36 +01001415 else if (attr == &dev_attr_qas.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001416 spi_support_qas(starget))
1417 return TARGET_ATTRIBUTE_HELPER(qas);
Tony Jonesee959b02008-02-22 00:13:36 +01001418 else if (attr == &dev_attr_wr_flow.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001419 spi_support_ius(starget))
1420 return TARGET_ATTRIBUTE_HELPER(wr_flow);
Tony Jonesee959b02008-02-22 00:13:36 +01001421 else if (attr == &dev_attr_rd_strm.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001422 spi_support_ius(starget))
1423 return TARGET_ATTRIBUTE_HELPER(rd_strm);
Tony Jonesee959b02008-02-22 00:13:36 +01001424 else if (attr == &dev_attr_rti.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001425 spi_support_ius(starget))
1426 return TARGET_ATTRIBUTE_HELPER(rti);
Tony Jonesee959b02008-02-22 00:13:36 +01001427 else if (attr == &dev_attr_pcomp_en.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001428 spi_support_ius(starget))
1429 return TARGET_ATTRIBUTE_HELPER(pcomp_en);
Tony Jonesee959b02008-02-22 00:13:36 +01001430 else if (attr == &dev_attr_hold_mcs.attr &&
James Bottomley9b161a42008-01-05 10:18:27 -06001431 spi_support_ius(starget))
1432 return TARGET_ATTRIBUTE_HELPER(hold_mcs);
Tony Jonesee959b02008-02-22 00:13:36 +01001433 else if (attr == &dev_attr_revalidate.attr)
James Bottomley352f6bb2008-03-20 20:57:02 -05001434 return S_IWUSR;
James Bottomley9b161a42008-01-05 10:18:27 -06001435
1436 return 0;
1437}
1438
1439static struct attribute *target_attributes[] = {
Tony Jonesee959b02008-02-22 00:13:36 +01001440 &dev_attr_period.attr,
1441 &dev_attr_min_period.attr,
1442 &dev_attr_offset.attr,
1443 &dev_attr_max_offset.attr,
1444 &dev_attr_width.attr,
1445 &dev_attr_max_width.attr,
1446 &dev_attr_iu.attr,
1447 &dev_attr_dt.attr,
1448 &dev_attr_qas.attr,
1449 &dev_attr_wr_flow.attr,
1450 &dev_attr_rd_strm.attr,
1451 &dev_attr_rti.attr,
1452 &dev_attr_pcomp_en.attr,
1453 &dev_attr_hold_mcs.attr,
1454 &dev_attr_revalidate.attr,
James Bottomley9b161a42008-01-05 10:18:27 -06001455 NULL
1456};
1457
1458static struct attribute_group target_attribute_group = {
1459 .attrs = target_attributes,
1460 .is_visible = target_attribute_is_visible,
1461};
1462
1463static int spi_target_configure(struct transport_container *tc,
1464 struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +01001465 struct device *cdev)
James Bottomley9b161a42008-01-05 10:18:27 -06001466{
1467 struct kobject *kobj = &cdev->kobj;
James Bottomley9b161a42008-01-05 10:18:27 -06001468
James Bottomley352f6bb2008-03-20 20:57:02 -05001469 /* force an update based on parameters read from the device */
1470 sysfs_update_group(kobj, &target_attribute_group);
James Bottomley9b161a42008-01-05 10:18:27 -06001471
1472 return 0;
1473}
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475struct scsi_transport_template *
1476spi_attach_transport(struct spi_function_template *ft)
1477{
Jes Sorensen24669f752006-01-16 10:31:18 -05001478 struct spi_internal *i = kzalloc(sizeof(struct spi_internal),
1479 GFP_KERNEL);
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 if (unlikely(!i))
1482 return NULL;
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 i->t.target_attrs.ac.class = &spi_transport_class.class;
James Bottomley9b161a42008-01-05 10:18:27 -06001485 i->t.target_attrs.ac.grp = &target_attribute_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 i->t.target_attrs.ac.match = spi_target_match;
1487 transport_container_register(&i->t.target_attrs);
1488 i->t.target_size = sizeof(struct spi_transport_attrs);
1489 i->t.host_attrs.ac.class = &spi_host_class.class;
James Bottomley9b161a42008-01-05 10:18:27 -06001490 i->t.host_attrs.ac.grp = &host_attribute_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 i->t.host_attrs.ac.match = spi_host_match;
1492 transport_container_register(&i->t.host_attrs);
1493 i->t.host_size = sizeof(struct spi_host_attrs);
1494 i->f = ft;
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 return &i->t;
1497}
1498EXPORT_SYMBOL(spi_attach_transport);
1499
1500void spi_release_transport(struct scsi_transport_template *t)
1501{
1502 struct spi_internal *i = to_spi_internal(t);
1503
1504 transport_container_unregister(&i->t.target_attrs);
1505 transport_container_unregister(&i->t.host_attrs);
1506
1507 kfree(i);
1508}
1509EXPORT_SYMBOL(spi_release_transport);
1510
1511static __init int spi_transport_init(void)
1512{
1513 int error = transport_class_register(&spi_transport_class);
1514 if (error)
1515 return error;
1516 error = anon_transport_class_register(&spi_device_class);
1517 return transport_class_register(&spi_host_class);
1518}
1519
1520static void __exit spi_transport_exit(void)
1521{
1522 transport_class_unregister(&spi_transport_class);
1523 anon_transport_class_unregister(&spi_device_class);
1524 transport_class_unregister(&spi_host_class);
1525}
1526
1527MODULE_AUTHOR("Martin Hicks");
1528MODULE_DESCRIPTION("SPI Transport Attributes");
1529MODULE_LICENSE("GPL");
1530
1531module_init(spi_transport_init);
1532module_exit(spi_transport_exit);