blob: f94535130a344580884c350bb18baa1a9eee4cbe [file] [log] [blame]
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001/*
Christoph Hellwiga0125642006-02-16 13:31:47 +01002 * Copyright (C) 2005-2006 Dell Inc.
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02003 * Released under GPL v2.
4 *
5 * Serial Attached SCSI (SAS) transport class.
6 *
7 * The SAS transport class contains common code to deal with SAS HBAs,
8 * an aproximated representation of SAS topologies in the driver model,
Joe Perchesb1c11812008-02-03 17:28:22 +02009 * and various sysfs attributes to expose these topologies and management
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020010 * interfaces to userspace.
11 *
12 * In addition to the basic SCSI core objects this transport class
13 * introduces two additional intermediate objects: The SAS PHY
14 * as represented by struct sas_phy defines an "outgoing" PHY on
15 * a SAS HBA or Expander, and the SAS remote PHY represented by
16 * struct sas_rphy defines an "incoming" PHY on a SAS Expander or
17 * end device. Note that this is purely a software concept, the
18 * underlying hardware for a PHY and a remote PHY is the exactly
19 * the same.
20 *
21 * There is no concept of a SAS port in this code, users can see
22 * what PHYs form a wide port based on the port_identifier attribute,
23 * which is the same for all PHYs in a port.
24 */
25
26#include <linux/init.h>
27#include <linux/module.h>
Al Virof6a57032006-10-18 01:47:25 -040028#include <linux/jiffies.h>
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020029#include <linux/err.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080030#include <linux/slab.h>
31#include <linux/string.h>
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +090032#include <linux/blkdev.h>
33#include <linux/bsg.h>
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020034
Christoph Hellwige02f3f52006-01-13 19:04:00 +010035#include <scsi/scsi.h>
Christoph Hellwig82ed4db2017-01-27 09:46:29 +010036#include <scsi/scsi_request.h>
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020037#include <scsi/scsi_device.h>
38#include <scsi/scsi_host.h>
39#include <scsi/scsi_transport.h>
40#include <scsi/scsi_transport_sas.h>
41
James Bottomleyd6159c12006-03-27 16:45:34 -060042#include "scsi_sas_internal.h"
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020043struct sas_host_attrs {
44 struct list_head rphy_list;
Christoph Hellwige02f3f52006-01-13 19:04:00 +010045 struct mutex lock;
James Bottomleyb6aff662007-07-20 11:10:05 -050046 struct request_queue *q;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020047 u32 next_target_id;
James Bottomley79cb1812006-03-13 13:50:04 -060048 u32 next_expander_id;
James Bottomleyc9fefeb2006-07-02 11:10:18 -050049 int next_port_id;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020050};
51#define to_sas_host_attrs(host) ((struct sas_host_attrs *)(host)->shost_data)
52
53
54/*
55 * Hack to allow attributes of the same name in different objects.
56 */
Tony Jonesee959b02008-02-22 00:13:36 +010057#define SAS_DEVICE_ATTR(_prefix,_name,_mode,_show,_store) \
58 struct device_attribute dev_attr_##_prefix##_##_name = \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020059 __ATTR(_name,_mode,_show,_store)
60
61
62/*
63 * Pretty printing helpers
64 */
65
66#define sas_bitfield_name_match(title, table) \
67static ssize_t \
68get_sas_##title##_names(u32 table_key, char *buf) \
69{ \
70 char *prefix = ""; \
71 ssize_t len = 0; \
72 int i; \
73 \
Tobias Klauser6391a112006-06-08 22:23:48 -070074 for (i = 0; i < ARRAY_SIZE(table); i++) { \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +020075 if (table[i].value & table_key) { \
76 len += sprintf(buf + len, "%s%s", \
77 prefix, table[i].name); \
78 prefix = ", "; \
79 } \
80 } \
81 len += sprintf(buf + len, "\n"); \
82 return len; \
83}
84
James Bottomleyd24e1ee2006-09-06 19:25:22 -050085#define sas_bitfield_name_set(title, table) \
86static ssize_t \
87set_sas_##title##_names(u32 *table_key, const char *buf) \
88{ \
89 ssize_t len = 0; \
90 int i; \
91 \
92 for (i = 0; i < ARRAY_SIZE(table); i++) { \
93 len = strlen(table[i].name); \
94 if (strncmp(buf, table[i].name, len) == 0 && \
95 (buf[len] == '\n' || buf[len] == '\0')) { \
96 *table_key = table[i].value; \
97 return 0; \
98 } \
99 } \
100 return -EINVAL; \
101}
102
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200103#define sas_bitfield_name_search(title, table) \
104static ssize_t \
105get_sas_##title##_names(u32 table_key, char *buf) \
106{ \
107 ssize_t len = 0; \
108 int i; \
109 \
Tobias Klauser6391a112006-06-08 22:23:48 -0700110 for (i = 0; i < ARRAY_SIZE(table); i++) { \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200111 if (table[i].value == table_key) { \
112 len += sprintf(buf + len, "%s", \
113 table[i].name); \
114 break; \
115 } \
116 } \
117 len += sprintf(buf + len, "\n"); \
118 return len; \
119}
120
121static struct {
122 u32 value;
123 char *name;
124} sas_device_type_names[] = {
125 { SAS_PHY_UNUSED, "unused" },
126 { SAS_END_DEVICE, "end device" },
127 { SAS_EDGE_EXPANDER_DEVICE, "edge expander" },
128 { SAS_FANOUT_EXPANDER_DEVICE, "fanout expander" },
129};
130sas_bitfield_name_search(device_type, sas_device_type_names)
131
132
133static struct {
134 u32 value;
135 char *name;
136} sas_protocol_names[] = {
137 { SAS_PROTOCOL_SATA, "sata" },
138 { SAS_PROTOCOL_SMP, "smp" },
139 { SAS_PROTOCOL_STP, "stp" },
140 { SAS_PROTOCOL_SSP, "ssp" },
141};
142sas_bitfield_name_match(protocol, sas_protocol_names)
143
144static struct {
145 u32 value;
146 char *name;
147} sas_linkspeed_names[] = {
148 { SAS_LINK_RATE_UNKNOWN, "Unknown" },
149 { SAS_PHY_DISABLED, "Phy disabled" },
150 { SAS_LINK_RATE_FAILED, "Link Rate failed" },
151 { SAS_SATA_SPINUP_HOLD, "Spin-up hold" },
152 { SAS_LINK_RATE_1_5_GBPS, "1.5 Gbit" },
153 { SAS_LINK_RATE_3_0_GBPS, "3.0 Gbit" },
James Bottomley7e6dff62006-03-02 14:12:56 -0600154 { SAS_LINK_RATE_6_0_GBPS, "6.0 Gbit" },
Sreekanth Reddyd84fd392012-11-30 07:43:11 +0530155 { SAS_LINK_RATE_12_0_GBPS, "12.0 Gbit" },
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200156};
157sas_bitfield_name_search(linkspeed, sas_linkspeed_names)
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500158sas_bitfield_name_set(linkspeed, sas_linkspeed_names)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200159
James Bottomley0f880092010-01-18 10:14:51 -0600160static struct sas_end_device *sas_sdev_to_rdev(struct scsi_device *sdev)
161{
162 struct sas_rphy *rphy = target_to_rphy(sdev->sdev_target);
163 struct sas_end_device *rdev;
164
165 BUG_ON(rphy->identify.device_type != SAS_END_DEVICE);
166
167 rdev = rphy_to_end_device(rphy);
168 return rdev;
169}
170
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900171static void sas_smp_request(struct request_queue *q, struct Scsi_Host *shost,
172 struct sas_rphy *rphy)
173{
174 struct request *req;
175 int ret;
176 int (*handler)(struct Scsi_Host *, struct sas_rphy *, struct request *);
177
Jens Axboe7eaceac2011-03-10 08:52:07 +0100178 while ((req = blk_fetch_request(q)) != NULL) {
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900179 spin_unlock_irq(q->queue_lock);
180
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100181 scsi_req(req)->resid_len = blk_rq_bytes(req);
182 if (req->next_rq)
183 scsi_req(req->next_rq)->resid_len =
184 blk_rq_bytes(req->next_rq);
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900185 handler = to_sas_internal(shost->transportt)->f->smp_handler;
186 ret = handler(shost, rphy, req);
James Bottomley2d507a02007-12-29 10:59:53 -0600187 req->errors = ret;
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900188
FUJITA Tomonori93bdcba2009-06-17 15:10:10 +0900189 blk_end_request_all(req, ret);
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900190
FUJITA Tomonori93bdcba2009-06-17 15:10:10 +0900191 spin_lock_irq(q->queue_lock);
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900192 }
193}
194
195static void sas_host_smp_request(struct request_queue *q)
196{
197 sas_smp_request(q, (struct Scsi_Host *)q->queuedata, NULL);
198}
199
200static void sas_non_host_smp_request(struct request_queue *q)
201{
202 struct sas_rphy *rphy = q->queuedata;
203 sas_smp_request(q, rphy_to_shost(rphy), rphy);
204}
205
FUJITA Tomonori93c20a52008-04-19 00:43:15 +0900206static void sas_host_release(struct device *dev)
207{
208 struct Scsi_Host *shost = dev_to_shost(dev);
209 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
210 struct request_queue *q = sas_host->q;
211
212 if (q)
213 blk_cleanup_queue(q);
214}
215
James Bottomley39dca552007-07-20 18:22:17 -0500216static int sas_bsg_initialize(struct Scsi_Host *shost, struct sas_rphy *rphy)
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900217{
218 struct request_queue *q;
219 int error;
James Bottomley39dca552007-07-20 18:22:17 -0500220 struct device *dev;
Kay Sievers71610f52008-12-03 22:41:36 +0100221 char namebuf[20];
James Bottomley39dca552007-07-20 18:22:17 -0500222 const char *name;
FUJITA Tomonori93c20a52008-04-19 00:43:15 +0900223 void (*release)(struct device *);
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900224
225 if (!to_sas_internal(shost->transportt)->f->smp_handler) {
226 printk("%s can't handle SMP requests\n", shost->hostt->name);
227 return 0;
228 }
229
Omar Sandovalbd1599d2017-02-21 10:03:50 -0800230 q = blk_alloc_queue(GFP_KERNEL);
231 if (!q)
232 return -ENOMEM;
233 q->cmd_size = sizeof(struct scsi_request);
234
James Bottomley39dca552007-07-20 18:22:17 -0500235 if (rphy) {
Omar Sandovalbd1599d2017-02-21 10:03:50 -0800236 q->request_fn = sas_non_host_smp_request;
James Bottomley39dca552007-07-20 18:22:17 -0500237 dev = &rphy->dev;
Kay Sievers71610f52008-12-03 22:41:36 +0100238 name = dev_name(dev);
FUJITA Tomonori93c20a52008-04-19 00:43:15 +0900239 release = NULL;
James Bottomley39dca552007-07-20 18:22:17 -0500240 } else {
Omar Sandovalbd1599d2017-02-21 10:03:50 -0800241 q->request_fn = sas_host_smp_request;
James Bottomley39dca552007-07-20 18:22:17 -0500242 dev = &shost->shost_gendev;
243 snprintf(namebuf, sizeof(namebuf),
244 "sas_host%d", shost->host_no);
245 name = namebuf;
FUJITA Tomonori93c20a52008-04-19 00:43:15 +0900246 release = sas_host_release;
James Bottomley39dca552007-07-20 18:22:17 -0500247 }
Omar Sandovalbd1599d2017-02-21 10:03:50 -0800248 error = blk_init_allocated_queue(q);
249 if (error)
250 goto out_cleanup_queue;
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900251
FUJITA Tomonori93c20a52008-04-19 00:43:15 +0900252 error = bsg_register_queue(q, dev, name, release);
Omar Sandovalbd1599d2017-02-21 10:03:50 -0800253 if (error)
254 goto out_cleanup_queue;
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900255
256 if (rphy)
James Bottomleyb6aff662007-07-20 11:10:05 -0500257 rphy->q = q;
258 else
259 to_sas_host_attrs(shost)->q = q;
260
261 if (rphy)
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900262 q->queuedata = rphy;
263 else
264 q->queuedata = shost;
265
Nick Piggin75ad23b2008-04-29 14:48:33 +0200266 queue_flag_set_unlocked(QUEUE_FLAG_BIDI, q);
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900267 return 0;
Omar Sandovalbd1599d2017-02-21 10:03:50 -0800268
269out_cleanup_queue:
270 blk_cleanup_queue(q);
271 return error;
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900272}
273
James Bottomleyb6aff662007-07-20 11:10:05 -0500274static void sas_bsg_remove(struct Scsi_Host *shost, struct sas_rphy *rphy)
275{
276 struct request_queue *q;
277
278 if (rphy)
279 q = rphy->q;
280 else
281 q = to_sas_host_attrs(shost)->q;
282
283 if (!q)
284 return;
285
286 bsg_unregister_queue(q);
James Bottomleyb6aff662007-07-20 11:10:05 -0500287}
288
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200289/*
290 * SAS host attributes
291 */
292
James Bottomley37be6ee2005-09-09 18:38:27 -0500293static int sas_host_setup(struct transport_container *tc, struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100294 struct device *cdev)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200295{
296 struct Scsi_Host *shost = dev_to_shost(dev);
297 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
298
299 INIT_LIST_HEAD(&sas_host->rphy_list);
Christoph Hellwige02f3f52006-01-13 19:04:00 +0100300 mutex_init(&sas_host->lock);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200301 sas_host->next_target_id = 0;
James Bottomley79cb1812006-03-13 13:50:04 -0600302 sas_host->next_expander_id = 0;
James Bottomleyc9fefeb2006-07-02 11:10:18 -0500303 sas_host->next_port_id = 0;
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900304
James Bottomley39dca552007-07-20 18:22:17 -0500305 if (sas_bsg_initialize(shost, NULL))
FUJITA Tomonori7aa68e82007-07-09 12:52:06 +0900306 dev_printk(KERN_ERR, dev, "fail to a bsg device %d\n",
307 shost->host_no);
308
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200309 return 0;
310}
311
James Bottomleyb6aff662007-07-20 11:10:05 -0500312static int sas_host_remove(struct transport_container *tc, struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +0100313 struct device *cdev)
James Bottomleyb6aff662007-07-20 11:10:05 -0500314{
315 struct Scsi_Host *shost = dev_to_shost(dev);
316
317 sas_bsg_remove(shost, NULL);
318
319 return 0;
320}
321
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200322static DECLARE_TRANSPORT_CLASS(sas_host_class,
James Bottomleyb6aff662007-07-20 11:10:05 -0500323 "sas_host", sas_host_setup, sas_host_remove, NULL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200324
325static int sas_host_match(struct attribute_container *cont,
326 struct device *dev)
327{
328 struct Scsi_Host *shost;
329 struct sas_internal *i;
330
331 if (!scsi_is_host_device(dev))
332 return 0;
333 shost = dev_to_shost(dev);
334
335 if (!shost->transportt)
336 return 0;
337 if (shost->transportt->host_attrs.ac.class !=
338 &sas_host_class.class)
339 return 0;
340
341 i = to_sas_internal(shost->transportt);
342 return &i->t.host_attrs.ac == cont;
343}
344
345static int do_sas_phy_delete(struct device *dev, void *data)
346{
James Bottomley65c92b02006-06-28 12:22:50 -0400347 int pass = (int)(unsigned long)data;
348
349 if (pass == 0 && scsi_is_sas_port(dev))
350 sas_port_delete(dev_to_sas_port(dev));
351 else if (pass == 1 && scsi_is_sas_phy(dev))
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200352 sas_phy_delete(dev_to_phy(dev));
353 return 0;
354}
355
356/**
Rob Landleyeb448202007-11-03 13:30:39 -0500357 * sas_remove_children - tear down a devices SAS data structures
James Bottomley65c92b02006-06-28 12:22:50 -0400358 * @dev: device belonging to the sas object
359 *
360 * Removes all SAS PHYs and remote PHYs for a given object
361 */
362void sas_remove_children(struct device *dev)
363{
364 device_for_each_child(dev, (void *)0, do_sas_phy_delete);
365 device_for_each_child(dev, (void *)1, do_sas_phy_delete);
366}
367EXPORT_SYMBOL(sas_remove_children);
368
369/**
Rob Landleyeb448202007-11-03 13:30:39 -0500370 * sas_remove_host - tear down a Scsi_Host's SAS data structures
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200371 * @shost: Scsi Host that is torn down
372 *
373 * Removes all SAS PHYs and remote PHYs for a given Scsi_Host.
374 * Must be called just before scsi_remove_host for SAS HBAs.
375 */
376void sas_remove_host(struct Scsi_Host *shost)
377{
James Bottomley65c92b02006-06-28 12:22:50 -0400378 sas_remove_children(&shost->shost_gendev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200379}
380EXPORT_SYMBOL(sas_remove_host);
381
James Bottomley0f880092010-01-18 10:14:51 -0600382/**
James Bottomleybcf508c2015-12-09 11:13:35 -0800383 * sas_get_address - return the SAS address of the device
384 * @sdev: scsi device
385 *
386 * Returns the SAS address of the scsi device
387 */
388u64 sas_get_address(struct scsi_device *sdev)
389{
390 struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
391
392 return rdev->rphy.identify.sas_address;
393}
394EXPORT_SYMBOL(sas_get_address);
395
396/**
James Bottomley0f880092010-01-18 10:14:51 -0600397 * sas_tlr_supported - checking TLR bit in vpd 0x90
398 * @sdev: scsi device struct
399 *
400 * Check Transport Layer Retries are supported or not.
401 * If vpd page 0x90 is present, TRL is supported.
402 *
403 */
404unsigned int
405sas_tlr_supported(struct scsi_device *sdev)
406{
407 const int vpd_len = 32;
408 struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
409 char *buffer = kzalloc(vpd_len, GFP_KERNEL);
410 int ret = 0;
411
412 if (scsi_get_vpd_page(sdev, 0x90, buffer, vpd_len))
413 goto out;
414
415 /*
416 * Magic numbers: the VPD Protocol page (0x90)
417 * has a 4 byte header and then one entry per device port
418 * the TLR bit is at offset 8 on each port entry
419 * if we take the first port, that's at total offset 12
420 */
421 ret = buffer[12] & 0x01;
422
423 out:
424 kfree(buffer);
425 rdev->tlr_supported = ret;
426 return ret;
427
428}
429EXPORT_SYMBOL_GPL(sas_tlr_supported);
430
431/**
432 * sas_disable_tlr - setting TLR flags
433 * @sdev: scsi device struct
434 *
435 * Seting tlr_enabled flag to 0.
436 *
437 */
438void
439sas_disable_tlr(struct scsi_device *sdev)
440{
441 struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
442
443 rdev->tlr_enabled = 0;
444}
445EXPORT_SYMBOL_GPL(sas_disable_tlr);
446
447/**
448 * sas_enable_tlr - setting TLR flags
449 * @sdev: scsi device struct
450 *
451 * Seting tlr_enabled flag 1.
452 *
453 */
454void sas_enable_tlr(struct scsi_device *sdev)
455{
456 unsigned int tlr_supported = 0;
457 tlr_supported = sas_tlr_supported(sdev);
458
459 if (tlr_supported) {
460 struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
461
462 rdev->tlr_enabled = 1;
463 }
464
465 return;
466}
467EXPORT_SYMBOL_GPL(sas_enable_tlr);
468
469unsigned int sas_is_tlr_enabled(struct scsi_device *sdev)
470{
471 struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
472 return rdev->tlr_enabled;
473}
474EXPORT_SYMBOL_GPL(sas_is_tlr_enabled);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200475
476/*
James Bottomley65c92b02006-06-28 12:22:50 -0400477 * SAS Phy attributes
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200478 */
479
480#define sas_phy_show_simple(field, name, format_string, cast) \
481static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100482show_sas_phy_##name(struct device *dev, \
483 struct device_attribute *attr, char *buf) \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200484{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100485 struct sas_phy *phy = transport_class_to_phy(dev); \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200486 \
487 return snprintf(buf, 20, format_string, cast phy->field); \
488}
489
490#define sas_phy_simple_attr(field, name, format_string, type) \
491 sas_phy_show_simple(field, name, format_string, (type)) \
Tony Jonesee959b02008-02-22 00:13:36 +0100492static DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200493
494#define sas_phy_show_protocol(field, name) \
495static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100496show_sas_phy_##name(struct device *dev, \
497 struct device_attribute *attr, char *buf) \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200498{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100499 struct sas_phy *phy = transport_class_to_phy(dev); \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200500 \
501 if (!phy->field) \
502 return snprintf(buf, 20, "none\n"); \
503 return get_sas_protocol_names(phy->field, buf); \
504}
505
506#define sas_phy_protocol_attr(field, name) \
507 sas_phy_show_protocol(field, name) \
Tony Jonesee959b02008-02-22 00:13:36 +0100508static DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200509
510#define sas_phy_show_linkspeed(field) \
511static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100512show_sas_phy_##field(struct device *dev, \
513 struct device_attribute *attr, char *buf) \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200514{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100515 struct sas_phy *phy = transport_class_to_phy(dev); \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200516 \
517 return get_sas_linkspeed_names(phy->field, buf); \
518}
519
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500520/* Fudge to tell if we're minimum or maximum */
521#define sas_phy_store_linkspeed(field) \
522static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100523store_sas_phy_##field(struct device *dev, \
524 struct device_attribute *attr, \
525 const char *buf, size_t count) \
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500526{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100527 struct sas_phy *phy = transport_class_to_phy(dev); \
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500528 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \
529 struct sas_internal *i = to_sas_internal(shost->transportt); \
530 u32 value; \
531 struct sas_phy_linkrates rates = {0}; \
532 int error; \
533 \
534 error = set_sas_linkspeed_names(&value, buf); \
535 if (error) \
536 return error; \
537 rates.field = value; \
538 error = i->f->set_phy_speed(phy, &rates); \
539 \
540 return error ? error : count; \
541}
542
543#define sas_phy_linkspeed_rw_attr(field) \
544 sas_phy_show_linkspeed(field) \
545 sas_phy_store_linkspeed(field) \
Tony Jonesee959b02008-02-22 00:13:36 +0100546static DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, \
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500547 store_sas_phy_##field)
548
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200549#define sas_phy_linkspeed_attr(field) \
550 sas_phy_show_linkspeed(field) \
Tony Jonesee959b02008-02-22 00:13:36 +0100551static DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200552
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500553
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +0200554#define sas_phy_show_linkerror(field) \
555static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100556show_sas_phy_##field(struct device *dev, \
557 struct device_attribute *attr, char *buf) \
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +0200558{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100559 struct sas_phy *phy = transport_class_to_phy(dev); \
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +0200560 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \
561 struct sas_internal *i = to_sas_internal(shost->transportt); \
562 int error; \
563 \
James Bottomleydd9fbb522006-03-02 16:01:31 -0600564 error = i->f->get_linkerrors ? i->f->get_linkerrors(phy) : 0; \
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +0200565 if (error) \
566 return error; \
567 return snprintf(buf, 20, "%u\n", phy->field); \
568}
569
570#define sas_phy_linkerror_attr(field) \
571 sas_phy_show_linkerror(field) \
Tony Jonesee959b02008-02-22 00:13:36 +0100572static DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL)
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +0200573
574
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200575static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100576show_sas_device_type(struct device *dev,
577 struct device_attribute *attr, char *buf)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200578{
Tony Jonesee959b02008-02-22 00:13:36 +0100579 struct sas_phy *phy = transport_class_to_phy(dev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200580
581 if (!phy->identify.device_type)
582 return snprintf(buf, 20, "none\n");
583 return get_sas_device_type_names(phy->identify.device_type, buf);
584}
Tony Jonesee959b02008-02-22 00:13:36 +0100585static DEVICE_ATTR(device_type, S_IRUGO, show_sas_device_type, NULL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200586
Tony Jonesee959b02008-02-22 00:13:36 +0100587static ssize_t do_sas_phy_enable(struct device *dev,
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800588 size_t count, int enable)
589{
Tony Jonesee959b02008-02-22 00:13:36 +0100590 struct sas_phy *phy = transport_class_to_phy(dev);
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800591 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
592 struct sas_internal *i = to_sas_internal(shost->transportt);
593 int error;
594
595 error = i->f->phy_enable(phy, enable);
596 if (error)
597 return error;
598 phy->enabled = enable;
599 return count;
600};
601
Tony Jonesee959b02008-02-22 00:13:36 +0100602static ssize_t
603store_sas_phy_enable(struct device *dev, struct device_attribute *attr,
604 const char *buf, size_t count)
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800605{
606 if (count < 1)
607 return -EINVAL;
608
609 switch (buf[0]) {
610 case '0':
Tony Jonesee959b02008-02-22 00:13:36 +0100611 do_sas_phy_enable(dev, count, 0);
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800612 break;
613 case '1':
Tony Jonesee959b02008-02-22 00:13:36 +0100614 do_sas_phy_enable(dev, count, 1);
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800615 break;
616 default:
617 return -EINVAL;
618 }
619
620 return count;
621}
622
Tony Jonesee959b02008-02-22 00:13:36 +0100623static ssize_t
624show_sas_phy_enable(struct device *dev, struct device_attribute *attr,
625 char *buf)
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800626{
Tony Jonesee959b02008-02-22 00:13:36 +0100627 struct sas_phy *phy = transport_class_to_phy(dev);
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800628
629 return snprintf(buf, 20, "%d", phy->enabled);
630}
631
Tony Jonesee959b02008-02-22 00:13:36 +0100632static DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, show_sas_phy_enable,
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800633 store_sas_phy_enable);
634
Tony Jonesee959b02008-02-22 00:13:36 +0100635static ssize_t
636do_sas_phy_reset(struct device *dev, size_t count, int hard_reset)
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200637{
Tony Jonesee959b02008-02-22 00:13:36 +0100638 struct sas_phy *phy = transport_class_to_phy(dev);
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200639 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
640 struct sas_internal *i = to_sas_internal(shost->transportt);
641 int error;
642
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200643 error = i->f->phy_reset(phy, hard_reset);
644 if (error)
645 return error;
Dan Williams16d3db12012-01-30 22:53:51 -0800646 phy->enabled = 1;
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200647 return count;
648};
649
Tony Jonesee959b02008-02-22 00:13:36 +0100650static ssize_t
651store_sas_link_reset(struct device *dev, struct device_attribute *attr,
652 const char *buf, size_t count)
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200653{
Tony Jonesee959b02008-02-22 00:13:36 +0100654 return do_sas_phy_reset(dev, count, 0);
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200655}
Tony Jonesee959b02008-02-22 00:13:36 +0100656static DEVICE_ATTR(link_reset, S_IWUSR, NULL, store_sas_link_reset);
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200657
Tony Jonesee959b02008-02-22 00:13:36 +0100658static ssize_t
659store_sas_hard_reset(struct device *dev, struct device_attribute *attr,
660 const char *buf, size_t count)
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200661{
Tony Jonesee959b02008-02-22 00:13:36 +0100662 return do_sas_phy_reset(dev, count, 1);
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200663}
Tony Jonesee959b02008-02-22 00:13:36 +0100664static DEVICE_ATTR(hard_reset, S_IWUSR, NULL, store_sas_hard_reset);
Christoph Hellwig07ba3a92005-10-19 20:01:31 +0200665
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200666sas_phy_protocol_attr(identify.initiator_port_protocols,
667 initiator_port_protocols);
668sas_phy_protocol_attr(identify.target_port_protocols,
669 target_port_protocols);
670sas_phy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n",
671 unsigned long long);
672sas_phy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8);
James Bottomleyc9fefeb2006-07-02 11:10:18 -0500673//sas_phy_simple_attr(port_identifier, port_identifier, "%d\n", int);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200674sas_phy_linkspeed_attr(negotiated_linkrate);
675sas_phy_linkspeed_attr(minimum_linkrate_hw);
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500676sas_phy_linkspeed_rw_attr(minimum_linkrate);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200677sas_phy_linkspeed_attr(maximum_linkrate_hw);
James Bottomleyd24e1ee2006-09-06 19:25:22 -0500678sas_phy_linkspeed_rw_attr(maximum_linkrate);
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +0200679sas_phy_linkerror_attr(invalid_dword_count);
680sas_phy_linkerror_attr(running_disparity_error_count);
681sas_phy_linkerror_attr(loss_of_dword_sync_count);
682sas_phy_linkerror_attr(phy_reset_problem_count);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200683
Dan Williams0b3e09d2011-12-20 01:03:48 -0800684static int sas_phy_setup(struct transport_container *tc, struct device *dev,
685 struct device *cdev)
686{
687 struct sas_phy *phy = dev_to_phy(dev);
688 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
689 struct sas_internal *i = to_sas_internal(shost->transportt);
690
691 if (i->f->phy_setup)
692 i->f->phy_setup(phy);
693
694 return 0;
695}
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200696
697static DECLARE_TRANSPORT_CLASS(sas_phy_class,
Dan Williams0b3e09d2011-12-20 01:03:48 -0800698 "sas_phy", sas_phy_setup, NULL, NULL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200699
700static int sas_phy_match(struct attribute_container *cont, struct device *dev)
701{
702 struct Scsi_Host *shost;
703 struct sas_internal *i;
704
705 if (!scsi_is_sas_phy(dev))
706 return 0;
707 shost = dev_to_shost(dev->parent);
708
709 if (!shost->transportt)
710 return 0;
711 if (shost->transportt->host_attrs.ac.class !=
712 &sas_host_class.class)
713 return 0;
714
715 i = to_sas_internal(shost->transportt);
716 return &i->phy_attr_cont.ac == cont;
717}
718
719static void sas_phy_release(struct device *dev)
720{
721 struct sas_phy *phy = dev_to_phy(dev);
Dan Williams0b3e09d2011-12-20 01:03:48 -0800722 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
723 struct sas_internal *i = to_sas_internal(shost->transportt);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200724
Dan Williams0b3e09d2011-12-20 01:03:48 -0800725 if (i->f->phy_release)
726 i->f->phy_release(phy);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200727 put_device(dev->parent);
728 kfree(phy);
729}
730
731/**
Rob Landleyeb448202007-11-03 13:30:39 -0500732 * sas_phy_alloc - allocates and initialize a SAS PHY structure
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200733 * @parent: Parent device
Moore, Ericd99ca412006-01-26 16:20:02 -0700734 * @number: Phy index
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200735 *
736 * Allocates an SAS PHY structure. It will be added in the device tree
737 * below the device specified by @parent, which has to be either a Scsi_Host
738 * or sas_rphy.
739 *
740 * Returns:
741 * SAS PHY allocated or %NULL if the allocation failed.
742 */
743struct sas_phy *sas_phy_alloc(struct device *parent, int number)
744{
745 struct Scsi_Host *shost = dev_to_shost(parent);
746 struct sas_phy *phy;
747
Jes Sorensen24669f752006-01-16 10:31:18 -0500748 phy = kzalloc(sizeof(*phy), GFP_KERNEL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200749 if (!phy)
750 return NULL;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200751
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200752 phy->number = number;
Darrick J. Wongacbf1672007-01-11 14:14:57 -0800753 phy->enabled = 1;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200754
755 device_initialize(&phy->dev);
756 phy->dev.parent = get_device(parent);
757 phy->dev.release = sas_phy_release;
James Bottomley65c92b02006-06-28 12:22:50 -0400758 INIT_LIST_HEAD(&phy->port_siblings);
James Bottomley79cb1812006-03-13 13:50:04 -0600759 if (scsi_is_sas_expander_device(parent)) {
760 struct sas_rphy *rphy = dev_to_rphy(parent);
Kay Sievers71610f52008-12-03 22:41:36 +0100761 dev_set_name(&phy->dev, "phy-%d:%d:%d", shost->host_no,
James Bottomley79cb1812006-03-13 13:50:04 -0600762 rphy->scsi_target_id, number);
763 } else
Kay Sievers71610f52008-12-03 22:41:36 +0100764 dev_set_name(&phy->dev, "phy-%d:%d", shost->host_no, number);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200765
766 transport_setup_device(&phy->dev);
767
768 return phy;
769}
770EXPORT_SYMBOL(sas_phy_alloc);
771
772/**
Rob Landleyeb448202007-11-03 13:30:39 -0500773 * sas_phy_add - add a SAS PHY to the device hierarchy
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200774 * @phy: The PHY to be added
775 *
776 * Publishes a SAS PHY to the rest of the system.
777 */
778int sas_phy_add(struct sas_phy *phy)
779{
780 int error;
781
782 error = device_add(&phy->dev);
783 if (!error) {
784 transport_add_device(&phy->dev);
785 transport_configure_device(&phy->dev);
786 }
787
788 return error;
789}
790EXPORT_SYMBOL(sas_phy_add);
791
792/**
Rob Landleyeb448202007-11-03 13:30:39 -0500793 * sas_phy_free - free a SAS PHY
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200794 * @phy: SAS PHY to free
795 *
796 * Frees the specified SAS PHY.
797 *
798 * Note:
799 * This function must only be called on a PHY that has not
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200800 * successfully been added using sas_phy_add().
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200801 */
802void sas_phy_free(struct sas_phy *phy)
803{
804 transport_destroy_device(&phy->dev);
Mike Anderson92aab642006-03-27 09:37:28 -0800805 put_device(&phy->dev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200806}
807EXPORT_SYMBOL(sas_phy_free);
808
809/**
Rob Landleyeb448202007-11-03 13:30:39 -0500810 * sas_phy_delete - remove SAS PHY
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200811 * @phy: SAS PHY to remove
812 *
813 * Removes the specified SAS PHY. If the SAS PHY has an
814 * associated remote PHY it is removed before.
815 */
816void
817sas_phy_delete(struct sas_phy *phy)
818{
819 struct device *dev = &phy->dev;
820
James Bottomley65c92b02006-06-28 12:22:50 -0400821 /* this happens if the phy is still part of a port when deleted */
822 BUG_ON(!list_empty(&phy->port_siblings));
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200823
824 transport_remove_device(dev);
825 device_del(dev);
826 transport_destroy_device(dev);
Mike Anderson92aab642006-03-27 09:37:28 -0800827 put_device(dev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200828}
829EXPORT_SYMBOL(sas_phy_delete);
830
831/**
Rob Landleyeb448202007-11-03 13:30:39 -0500832 * scsi_is_sas_phy - check if a struct device represents a SAS PHY
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +0200833 * @dev: device to check
834 *
835 * Returns:
836 * %1 if the device represents a SAS PHY, %0 else
837 */
838int scsi_is_sas_phy(const struct device *dev)
839{
840 return dev->release == sas_phy_release;
841}
842EXPORT_SYMBOL(scsi_is_sas_phy);
843
844/*
James Bottomley65c92b02006-06-28 12:22:50 -0400845 * SAS Port attributes
846 */
847#define sas_port_show_simple(field, name, format_string, cast) \
848static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +0100849show_sas_port_##name(struct device *dev, \
850 struct device_attribute *attr, char *buf) \
James Bottomley65c92b02006-06-28 12:22:50 -0400851{ \
Tony Jonesee959b02008-02-22 00:13:36 +0100852 struct sas_port *port = transport_class_to_sas_port(dev); \
James Bottomley65c92b02006-06-28 12:22:50 -0400853 \
854 return snprintf(buf, 20, format_string, cast port->field); \
855}
856
857#define sas_port_simple_attr(field, name, format_string, type) \
858 sas_port_show_simple(field, name, format_string, (type)) \
Tony Jonesee959b02008-02-22 00:13:36 +0100859static DEVICE_ATTR(name, S_IRUGO, show_sas_port_##name, NULL)
James Bottomley65c92b02006-06-28 12:22:50 -0400860
861sas_port_simple_attr(num_phys, num_phys, "%d\n", int);
862
863static DECLARE_TRANSPORT_CLASS(sas_port_class,
864 "sas_port", NULL, NULL, NULL);
865
866static int sas_port_match(struct attribute_container *cont, struct device *dev)
867{
868 struct Scsi_Host *shost;
869 struct sas_internal *i;
870
871 if (!scsi_is_sas_port(dev))
872 return 0;
873 shost = dev_to_shost(dev->parent);
874
875 if (!shost->transportt)
876 return 0;
877 if (shost->transportt->host_attrs.ac.class !=
878 &sas_host_class.class)
879 return 0;
880
881 i = to_sas_internal(shost->transportt);
882 return &i->port_attr_cont.ac == cont;
883}
884
885
886static void sas_port_release(struct device *dev)
887{
888 struct sas_port *port = dev_to_sas_port(dev);
889
890 BUG_ON(!list_empty(&port->phy_list));
891
892 put_device(dev->parent);
893 kfree(port);
894}
895
896static void sas_port_create_link(struct sas_port *port,
897 struct sas_phy *phy)
898{
Darrick J. Wong21434962007-01-26 14:08:46 -0800899 int res;
900
901 res = sysfs_create_link(&port->dev.kobj, &phy->dev.kobj,
Kay Sievers71610f52008-12-03 22:41:36 +0100902 dev_name(&phy->dev));
Darrick J. Wong21434962007-01-26 14:08:46 -0800903 if (res)
904 goto err;
905 res = sysfs_create_link(&phy->dev.kobj, &port->dev.kobj, "port");
906 if (res)
907 goto err;
908 return;
909err:
910 printk(KERN_ERR "%s: Cannot create port links, err=%d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700911 __func__, res);
James Bottomley65c92b02006-06-28 12:22:50 -0400912}
913
914static void sas_port_delete_link(struct sas_port *port,
915 struct sas_phy *phy)
916{
Kay Sievers71610f52008-12-03 22:41:36 +0100917 sysfs_remove_link(&port->dev.kobj, dev_name(&phy->dev));
James Bottomley65c92b02006-06-28 12:22:50 -0400918 sysfs_remove_link(&phy->dev.kobj, "port");
919}
920
921/** sas_port_alloc - allocate and initialize a SAS port structure
922 *
923 * @parent: parent device
924 * @port_id: port number
925 *
926 * Allocates a SAS port structure. It will be added to the device tree
927 * below the device specified by @parent which must be either a Scsi_Host
928 * or a sas_expander_device.
929 *
930 * Returns %NULL on error
931 */
932struct sas_port *sas_port_alloc(struct device *parent, int port_id)
933{
934 struct Scsi_Host *shost = dev_to_shost(parent);
935 struct sas_port *port;
936
937 port = kzalloc(sizeof(*port), GFP_KERNEL);
938 if (!port)
939 return NULL;
940
941 port->port_identifier = port_id;
942
943 device_initialize(&port->dev);
944
945 port->dev.parent = get_device(parent);
946 port->dev.release = sas_port_release;
947
948 mutex_init(&port->phy_list_mutex);
949 INIT_LIST_HEAD(&port->phy_list);
950
951 if (scsi_is_sas_expander_device(parent)) {
952 struct sas_rphy *rphy = dev_to_rphy(parent);
Kay Sievers71610f52008-12-03 22:41:36 +0100953 dev_set_name(&port->dev, "port-%d:%d:%d", shost->host_no,
954 rphy->scsi_target_id, port->port_identifier);
James Bottomley65c92b02006-06-28 12:22:50 -0400955 } else
Kay Sievers71610f52008-12-03 22:41:36 +0100956 dev_set_name(&port->dev, "port-%d:%d", shost->host_no,
957 port->port_identifier);
James Bottomley65c92b02006-06-28 12:22:50 -0400958
959 transport_setup_device(&port->dev);
960
961 return port;
962}
963EXPORT_SYMBOL(sas_port_alloc);
964
James Bottomleyc9fefeb2006-07-02 11:10:18 -0500965/** sas_port_alloc_num - allocate and initialize a SAS port structure
966 *
967 * @parent: parent device
968 *
969 * Allocates a SAS port structure and a number to go with it. This
970 * interface is really for adapters where the port number has no
971 * meansing, so the sas class should manage them. It will be added to
972 * the device tree below the device specified by @parent which must be
973 * either a Scsi_Host or a sas_expander_device.
974 *
975 * Returns %NULL on error
976 */
977struct sas_port *sas_port_alloc_num(struct device *parent)
978{
979 int index;
980 struct Scsi_Host *shost = dev_to_shost(parent);
981 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
982
983 /* FIXME: use idr for this eventually */
984 mutex_lock(&sas_host->lock);
985 if (scsi_is_sas_expander_device(parent)) {
986 struct sas_rphy *rphy = dev_to_rphy(parent);
987 struct sas_expander_device *exp = rphy_to_expander_device(rphy);
988
989 index = exp->next_port_id++;
990 } else
991 index = sas_host->next_port_id++;
992 mutex_unlock(&sas_host->lock);
993 return sas_port_alloc(parent, index);
994}
995EXPORT_SYMBOL(sas_port_alloc_num);
996
James Bottomley65c92b02006-06-28 12:22:50 -0400997/**
998 * sas_port_add - add a SAS port to the device hierarchy
James Bottomley65c92b02006-06-28 12:22:50 -0400999 * @port: port to be added
1000 *
1001 * publishes a port to the rest of the system
1002 */
1003int sas_port_add(struct sas_port *port)
1004{
1005 int error;
1006
1007 /* No phys should be added until this is made visible */
1008 BUG_ON(!list_empty(&port->phy_list));
1009
1010 error = device_add(&port->dev);
1011
1012 if (error)
1013 return error;
1014
1015 transport_add_device(&port->dev);
1016 transport_configure_device(&port->dev);
1017
1018 return 0;
1019}
1020EXPORT_SYMBOL(sas_port_add);
1021
1022/**
Rob Landleyeb448202007-11-03 13:30:39 -05001023 * sas_port_free - free a SAS PORT
James Bottomley65c92b02006-06-28 12:22:50 -04001024 * @port: SAS PORT to free
1025 *
1026 * Frees the specified SAS PORT.
1027 *
1028 * Note:
1029 * This function must only be called on a PORT that has not
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001030 * successfully been added using sas_port_add().
James Bottomley65c92b02006-06-28 12:22:50 -04001031 */
1032void sas_port_free(struct sas_port *port)
1033{
1034 transport_destroy_device(&port->dev);
1035 put_device(&port->dev);
1036}
1037EXPORT_SYMBOL(sas_port_free);
1038
1039/**
Rob Landleyeb448202007-11-03 13:30:39 -05001040 * sas_port_delete - remove SAS PORT
James Bottomley65c92b02006-06-28 12:22:50 -04001041 * @port: SAS PORT to remove
1042 *
1043 * Removes the specified SAS PORT. If the SAS PORT has an
1044 * associated phys, unlink them from the port as well.
1045 */
1046void sas_port_delete(struct sas_port *port)
1047{
1048 struct device *dev = &port->dev;
1049 struct sas_phy *phy, *tmp_phy;
1050
1051 if (port->rphy) {
1052 sas_rphy_delete(port->rphy);
1053 port->rphy = NULL;
1054 }
1055
1056 mutex_lock(&port->phy_list_mutex);
1057 list_for_each_entry_safe(phy, tmp_phy, &port->phy_list,
1058 port_siblings) {
1059 sas_port_delete_link(port, phy);
1060 list_del_init(&phy->port_siblings);
1061 }
1062 mutex_unlock(&port->phy_list_mutex);
1063
James Bottomleya0e1b6e2006-07-09 12:38:19 -05001064 if (port->is_backlink) {
1065 struct device *parent = port->dev.parent;
1066
Kay Sievers71610f52008-12-03 22:41:36 +01001067 sysfs_remove_link(&port->dev.kobj, dev_name(parent));
James Bottomleya0e1b6e2006-07-09 12:38:19 -05001068 port->is_backlink = 0;
1069 }
1070
James Bottomley65c92b02006-06-28 12:22:50 -04001071 transport_remove_device(dev);
1072 device_del(dev);
1073 transport_destroy_device(dev);
1074 put_device(dev);
1075}
1076EXPORT_SYMBOL(sas_port_delete);
1077
1078/**
Rob Landleyeb448202007-11-03 13:30:39 -05001079 * scsi_is_sas_port - check if a struct device represents a SAS port
James Bottomley65c92b02006-06-28 12:22:50 -04001080 * @dev: device to check
1081 *
1082 * Returns:
1083 * %1 if the device represents a SAS Port, %0 else
1084 */
1085int scsi_is_sas_port(const struct device *dev)
1086{
1087 return dev->release == sas_port_release;
1088}
1089EXPORT_SYMBOL(scsi_is_sas_port);
1090
1091/**
Dan Williamsf41a0c42011-12-21 21:33:17 -08001092 * sas_port_get_phy - try to take a reference on a port member
1093 * @port: port to check
1094 */
1095struct sas_phy *sas_port_get_phy(struct sas_port *port)
1096{
1097 struct sas_phy *phy;
1098
1099 mutex_lock(&port->phy_list_mutex);
1100 if (list_empty(&port->phy_list))
1101 phy = NULL;
1102 else {
1103 struct list_head *ent = port->phy_list.next;
1104
1105 phy = list_entry(ent, typeof(*phy), port_siblings);
1106 get_device(&phy->dev);
1107 }
1108 mutex_unlock(&port->phy_list_mutex);
1109
1110 return phy;
1111}
1112EXPORT_SYMBOL(sas_port_get_phy);
1113
1114/**
James Bottomley65c92b02006-06-28 12:22:50 -04001115 * sas_port_add_phy - add another phy to a port to form a wide port
1116 * @port: port to add the phy to
1117 * @phy: phy to add
1118 *
1119 * When a port is initially created, it is empty (has no phys). All
1120 * ports must have at least one phy to operated, and all wide ports
1121 * must have at least two. The current code makes no difference
1122 * between ports and wide ports, but the only object that can be
1123 * connected to a remote device is a port, so ports must be formed on
1124 * all devices with phys if they're connected to anything.
1125 */
1126void sas_port_add_phy(struct sas_port *port, struct sas_phy *phy)
1127{
1128 mutex_lock(&port->phy_list_mutex);
1129 if (unlikely(!list_empty(&phy->port_siblings))) {
1130 /* make sure we're already on this port */
1131 struct sas_phy *tmp;
1132
1133 list_for_each_entry(tmp, &port->phy_list, port_siblings)
1134 if (tmp == phy)
1135 break;
1136 /* If this trips, you added a phy that was already
1137 * part of a different port */
1138 if (unlikely(tmp != phy)) {
Kay Sievers71610f52008-12-03 22:41:36 +01001139 dev_printk(KERN_ERR, &port->dev, "trying to add phy %s fails: it's already part of another port\n",
1140 dev_name(&phy->dev));
James Bottomley65c92b02006-06-28 12:22:50 -04001141 BUG();
1142 }
1143 } else {
1144 sas_port_create_link(port, phy);
1145 list_add_tail(&phy->port_siblings, &port->phy_list);
1146 port->num_phys++;
1147 }
1148 mutex_unlock(&port->phy_list_mutex);
1149}
1150EXPORT_SYMBOL(sas_port_add_phy);
1151
1152/**
1153 * sas_port_delete_phy - remove a phy from a port or wide port
1154 * @port: port to remove the phy from
1155 * @phy: phy to remove
1156 *
1157 * This operation is used for tearing down ports again. It must be
1158 * done to every port or wide port before calling sas_port_delete.
1159 */
1160void sas_port_delete_phy(struct sas_port *port, struct sas_phy *phy)
1161{
1162 mutex_lock(&port->phy_list_mutex);
1163 sas_port_delete_link(port, phy);
1164 list_del_init(&phy->port_siblings);
1165 port->num_phys--;
1166 mutex_unlock(&port->phy_list_mutex);
1167}
1168EXPORT_SYMBOL(sas_port_delete_phy);
1169
James Bottomleya0e1b6e2006-07-09 12:38:19 -05001170void sas_port_mark_backlink(struct sas_port *port)
1171{
Darrick J. Wong21434962007-01-26 14:08:46 -08001172 int res;
James Bottomleya0e1b6e2006-07-09 12:38:19 -05001173 struct device *parent = port->dev.parent->parent->parent;
1174
1175 if (port->is_backlink)
1176 return;
1177 port->is_backlink = 1;
Darrick J. Wong21434962007-01-26 14:08:46 -08001178 res = sysfs_create_link(&port->dev.kobj, &parent->kobj,
Kay Sievers71610f52008-12-03 22:41:36 +01001179 dev_name(parent));
Darrick J. Wong21434962007-01-26 14:08:46 -08001180 if (res)
1181 goto err;
1182 return;
1183err:
1184 printk(KERN_ERR "%s: Cannot create port backlink, err=%d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001185 __func__, res);
James Bottomleya0e1b6e2006-07-09 12:38:19 -05001186
1187}
1188EXPORT_SYMBOL(sas_port_mark_backlink);
1189
James Bottomley65c92b02006-06-28 12:22:50 -04001190/*
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001191 * SAS remote PHY attributes.
1192 */
1193
1194#define sas_rphy_show_simple(field, name, format_string, cast) \
1195static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001196show_sas_rphy_##name(struct device *dev, \
1197 struct device_attribute *attr, char *buf) \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001198{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001199 struct sas_rphy *rphy = transport_class_to_rphy(dev); \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001200 \
1201 return snprintf(buf, 20, format_string, cast rphy->field); \
1202}
1203
1204#define sas_rphy_simple_attr(field, name, format_string, type) \
1205 sas_rphy_show_simple(field, name, format_string, (type)) \
Tony Jonesee959b02008-02-22 00:13:36 +01001206static SAS_DEVICE_ATTR(rphy, name, S_IRUGO, \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001207 show_sas_rphy_##name, NULL)
1208
1209#define sas_rphy_show_protocol(field, name) \
1210static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001211show_sas_rphy_##name(struct device *dev, \
1212 struct device_attribute *attr, char *buf) \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001213{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001214 struct sas_rphy *rphy = transport_class_to_rphy(dev); \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001215 \
1216 if (!rphy->field) \
1217 return snprintf(buf, 20, "none\n"); \
1218 return get_sas_protocol_names(rphy->field, buf); \
1219}
1220
1221#define sas_rphy_protocol_attr(field, name) \
1222 sas_rphy_show_protocol(field, name) \
Tony Jonesee959b02008-02-22 00:13:36 +01001223static SAS_DEVICE_ATTR(rphy, name, S_IRUGO, \
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001224 show_sas_rphy_##name, NULL)
1225
1226static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001227show_sas_rphy_device_type(struct device *dev,
1228 struct device_attribute *attr, char *buf)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001229{
Tony Jonesee959b02008-02-22 00:13:36 +01001230 struct sas_rphy *rphy = transport_class_to_rphy(dev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001231
1232 if (!rphy->identify.device_type)
1233 return snprintf(buf, 20, "none\n");
1234 return get_sas_device_type_names(
1235 rphy->identify.device_type, buf);
1236}
1237
Tony Jonesee959b02008-02-22 00:13:36 +01001238static SAS_DEVICE_ATTR(rphy, device_type, S_IRUGO,
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001239 show_sas_rphy_device_type, NULL);
1240
Christoph Hellwiga0125642006-02-16 13:31:47 +01001241static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001242show_sas_rphy_enclosure_identifier(struct device *dev,
1243 struct device_attribute *attr, char *buf)
Christoph Hellwiga0125642006-02-16 13:31:47 +01001244{
Tony Jonesee959b02008-02-22 00:13:36 +01001245 struct sas_rphy *rphy = transport_class_to_rphy(dev);
Christoph Hellwiga0125642006-02-16 13:31:47 +01001246 struct sas_phy *phy = dev_to_phy(rphy->dev.parent);
1247 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
1248 struct sas_internal *i = to_sas_internal(shost->transportt);
1249 u64 identifier;
1250 int error;
1251
Christoph Hellwiga0125642006-02-16 13:31:47 +01001252 error = i->f->get_enclosure_identifier(rphy, &identifier);
1253 if (error)
1254 return error;
1255 return sprintf(buf, "0x%llx\n", (unsigned long long)identifier);
1256}
1257
Tony Jonesee959b02008-02-22 00:13:36 +01001258static SAS_DEVICE_ATTR(rphy, enclosure_identifier, S_IRUGO,
Christoph Hellwiga0125642006-02-16 13:31:47 +01001259 show_sas_rphy_enclosure_identifier, NULL);
1260
1261static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001262show_sas_rphy_bay_identifier(struct device *dev,
1263 struct device_attribute *attr, char *buf)
Christoph Hellwiga0125642006-02-16 13:31:47 +01001264{
Tony Jonesee959b02008-02-22 00:13:36 +01001265 struct sas_rphy *rphy = transport_class_to_rphy(dev);
Christoph Hellwiga0125642006-02-16 13:31:47 +01001266 struct sas_phy *phy = dev_to_phy(rphy->dev.parent);
1267 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
1268 struct sas_internal *i = to_sas_internal(shost->transportt);
1269 int val;
1270
Christoph Hellwiga0125642006-02-16 13:31:47 +01001271 val = i->f->get_bay_identifier(rphy);
1272 if (val < 0)
1273 return val;
1274 return sprintf(buf, "%d\n", val);
1275}
1276
Tony Jonesee959b02008-02-22 00:13:36 +01001277static SAS_DEVICE_ATTR(rphy, bay_identifier, S_IRUGO,
Christoph Hellwiga0125642006-02-16 13:31:47 +01001278 show_sas_rphy_bay_identifier, NULL);
1279
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001280sas_rphy_protocol_attr(identify.initiator_port_protocols,
1281 initiator_port_protocols);
1282sas_rphy_protocol_attr(identify.target_port_protocols, target_port_protocols);
1283sas_rphy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n",
1284 unsigned long long);
1285sas_rphy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8);
Hannes Reineckecdc43ae2016-03-14 10:43:08 +01001286sas_rphy_simple_attr(scsi_target_id, scsi_target_id, "%d\n", u32);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001287
James Bottomley42ab0362006-03-04 09:10:18 -06001288/* only need 8 bytes of data plus header (4 or 8) */
1289#define BUF_SIZE 64
1290
1291int sas_read_port_mode_page(struct scsi_device *sdev)
1292{
1293 char *buffer = kzalloc(BUF_SIZE, GFP_KERNEL), *msdata;
James Bottomley0f880092010-01-18 10:14:51 -06001294 struct sas_end_device *rdev = sas_sdev_to_rdev(sdev);
James Bottomley42ab0362006-03-04 09:10:18 -06001295 struct scsi_mode_data mode_data;
1296 int res, error;
1297
James Bottomley42ab0362006-03-04 09:10:18 -06001298 if (!buffer)
1299 return -ENOMEM;
1300
1301 res = scsi_mode_sense(sdev, 1, 0x19, buffer, BUF_SIZE, 30*HZ, 3,
1302 &mode_data, NULL);
1303
1304 error = -EINVAL;
1305 if (!scsi_status_is_good(res))
1306 goto out;
1307
1308 msdata = buffer + mode_data.header_length +
1309 mode_data.block_descriptor_length;
1310
1311 if (msdata - buffer > BUF_SIZE - 8)
1312 goto out;
1313
1314 error = 0;
1315
1316 rdev->ready_led_meaning = msdata[2] & 0x10 ? 1 : 0;
1317 rdev->I_T_nexus_loss_timeout = (msdata[4] << 8) + msdata[5];
1318 rdev->initiator_response_timeout = (msdata[6] << 8) + msdata[7];
1319
1320 out:
1321 kfree(buffer);
1322 return error;
1323}
1324EXPORT_SYMBOL(sas_read_port_mode_page);
1325
James Bottomley79cb1812006-03-13 13:50:04 -06001326static DECLARE_TRANSPORT_CLASS(sas_end_dev_class,
1327 "sas_end_device", NULL, NULL, NULL);
1328
James Bottomley42ab0362006-03-04 09:10:18 -06001329#define sas_end_dev_show_simple(field, name, format_string, cast) \
1330static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001331show_sas_end_dev_##name(struct device *dev, \
1332 struct device_attribute *attr, char *buf) \
James Bottomley42ab0362006-03-04 09:10:18 -06001333{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001334 struct sas_rphy *rphy = transport_class_to_rphy(dev); \
James Bottomley42ab0362006-03-04 09:10:18 -06001335 struct sas_end_device *rdev = rphy_to_end_device(rphy); \
1336 \
1337 return snprintf(buf, 20, format_string, cast rdev->field); \
1338}
1339
1340#define sas_end_dev_simple_attr(field, name, format_string, type) \
1341 sas_end_dev_show_simple(field, name, format_string, (type)) \
Tony Jonesee959b02008-02-22 00:13:36 +01001342static SAS_DEVICE_ATTR(end_dev, name, S_IRUGO, \
James Bottomley42ab0362006-03-04 09:10:18 -06001343 show_sas_end_dev_##name, NULL)
1344
1345sas_end_dev_simple_attr(ready_led_meaning, ready_led_meaning, "%d\n", int);
1346sas_end_dev_simple_attr(I_T_nexus_loss_timeout, I_T_nexus_loss_timeout,
1347 "%d\n", int);
1348sas_end_dev_simple_attr(initiator_response_timeout, initiator_response_timeout,
1349 "%d\n", int);
James Bottomley0f880092010-01-18 10:14:51 -06001350sas_end_dev_simple_attr(tlr_supported, tlr_supported,
1351 "%d\n", int);
1352sas_end_dev_simple_attr(tlr_enabled, tlr_enabled,
1353 "%d\n", int);
James Bottomley42ab0362006-03-04 09:10:18 -06001354
James Bottomley79cb1812006-03-13 13:50:04 -06001355static DECLARE_TRANSPORT_CLASS(sas_expander_class,
1356 "sas_expander", NULL, NULL, NULL);
1357
1358#define sas_expander_show_simple(field, name, format_string, cast) \
1359static ssize_t \
Tony Jonesee959b02008-02-22 00:13:36 +01001360show_sas_expander_##name(struct device *dev, \
1361 struct device_attribute *attr, char *buf) \
James Bottomley79cb1812006-03-13 13:50:04 -06001362{ \
Tony Jonesee959b02008-02-22 00:13:36 +01001363 struct sas_rphy *rphy = transport_class_to_rphy(dev); \
James Bottomley79cb1812006-03-13 13:50:04 -06001364 struct sas_expander_device *edev = rphy_to_expander_device(rphy); \
1365 \
1366 return snprintf(buf, 20, format_string, cast edev->field); \
1367}
1368
1369#define sas_expander_simple_attr(field, name, format_string, type) \
1370 sas_expander_show_simple(field, name, format_string, (type)) \
Tony Jonesee959b02008-02-22 00:13:36 +01001371static SAS_DEVICE_ATTR(expander, name, S_IRUGO, \
James Bottomley79cb1812006-03-13 13:50:04 -06001372 show_sas_expander_##name, NULL)
1373
1374sas_expander_simple_attr(vendor_id, vendor_id, "%s\n", char *);
1375sas_expander_simple_attr(product_id, product_id, "%s\n", char *);
1376sas_expander_simple_attr(product_rev, product_rev, "%s\n", char *);
1377sas_expander_simple_attr(component_vendor_id, component_vendor_id,
1378 "%s\n", char *);
1379sas_expander_simple_attr(component_id, component_id, "%u\n", unsigned int);
1380sas_expander_simple_attr(component_revision_id, component_revision_id, "%u\n",
1381 unsigned int);
1382sas_expander_simple_attr(level, level, "%d\n", int);
James Bottomley42ab0362006-03-04 09:10:18 -06001383
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001384static DECLARE_TRANSPORT_CLASS(sas_rphy_class,
James Bottomley2f8600d2006-03-18 15:00:50 -06001385 "sas_device", NULL, NULL, NULL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001386
1387static int sas_rphy_match(struct attribute_container *cont, struct device *dev)
1388{
1389 struct Scsi_Host *shost;
1390 struct sas_internal *i;
1391
1392 if (!scsi_is_sas_rphy(dev))
1393 return 0;
1394 shost = dev_to_shost(dev->parent->parent);
1395
1396 if (!shost->transportt)
1397 return 0;
1398 if (shost->transportt->host_attrs.ac.class !=
1399 &sas_host_class.class)
1400 return 0;
1401
1402 i = to_sas_internal(shost->transportt);
1403 return &i->rphy_attr_cont.ac == cont;
1404}
1405
James Bottomley42ab0362006-03-04 09:10:18 -06001406static int sas_end_dev_match(struct attribute_container *cont,
1407 struct device *dev)
1408{
1409 struct Scsi_Host *shost;
1410 struct sas_internal *i;
1411 struct sas_rphy *rphy;
1412
1413 if (!scsi_is_sas_rphy(dev))
1414 return 0;
1415 shost = dev_to_shost(dev->parent->parent);
1416 rphy = dev_to_rphy(dev);
1417
1418 if (!shost->transportt)
1419 return 0;
1420 if (shost->transportt->host_attrs.ac.class !=
1421 &sas_host_class.class)
1422 return 0;
1423
1424 i = to_sas_internal(shost->transportt);
1425 return &i->end_dev_attr_cont.ac == cont &&
James Bottomley2f8600d2006-03-18 15:00:50 -06001426 rphy->identify.device_type == SAS_END_DEVICE;
James Bottomley42ab0362006-03-04 09:10:18 -06001427}
1428
James Bottomley79cb1812006-03-13 13:50:04 -06001429static int sas_expander_match(struct attribute_container *cont,
1430 struct device *dev)
1431{
1432 struct Scsi_Host *shost;
1433 struct sas_internal *i;
1434 struct sas_rphy *rphy;
1435
1436 if (!scsi_is_sas_rphy(dev))
1437 return 0;
1438 shost = dev_to_shost(dev->parent->parent);
1439 rphy = dev_to_rphy(dev);
1440
1441 if (!shost->transportt)
1442 return 0;
1443 if (shost->transportt->host_attrs.ac.class !=
1444 &sas_host_class.class)
1445 return 0;
1446
1447 i = to_sas_internal(shost->transportt);
1448 return &i->expander_attr_cont.ac == cont &&
1449 (rphy->identify.device_type == SAS_EDGE_EXPANDER_DEVICE ||
James Bottomley2f8600d2006-03-18 15:00:50 -06001450 rphy->identify.device_type == SAS_FANOUT_EXPANDER_DEVICE);
James Bottomley79cb1812006-03-13 13:50:04 -06001451}
1452
James Bottomley2f8600d2006-03-18 15:00:50 -06001453static void sas_expander_release(struct device *dev)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001454{
1455 struct sas_rphy *rphy = dev_to_rphy(dev);
James Bottomley2f8600d2006-03-18 15:00:50 -06001456 struct sas_expander_device *edev = rphy_to_expander_device(rphy);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001457
FUJITA Tomonori93c20a52008-04-19 00:43:15 +09001458 if (rphy->q)
1459 blk_cleanup_queue(rphy->q);
1460
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001461 put_device(dev->parent);
James Bottomley2f8600d2006-03-18 15:00:50 -06001462 kfree(edev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001463}
1464
James Bottomley2f8600d2006-03-18 15:00:50 -06001465static void sas_end_device_release(struct device *dev)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001466{
James Bottomley2f8600d2006-03-18 15:00:50 -06001467 struct sas_rphy *rphy = dev_to_rphy(dev);
1468 struct sas_end_device *edev = rphy_to_end_device(rphy);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001469
FUJITA Tomonori93c20a52008-04-19 00:43:15 +09001470 if (rphy->q)
1471 blk_cleanup_queue(rphy->q);
1472
James Bottomley2f8600d2006-03-18 15:00:50 -06001473 put_device(dev->parent);
1474 kfree(edev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001475}
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001476
1477/**
James Bottomleyc5943d32006-06-12 09:09:18 -05001478 * sas_rphy_initialize - common rphy intialization
1479 * @rphy: rphy to initialise
1480 *
1481 * Used by both sas_end_device_alloc() and sas_expander_alloc() to
1482 * initialise the common rphy component of each.
1483 */
1484static void sas_rphy_initialize(struct sas_rphy *rphy)
1485{
1486 INIT_LIST_HEAD(&rphy->list);
1487}
1488
1489/**
James Bottomley42ab0362006-03-04 09:10:18 -06001490 * sas_end_device_alloc - allocate an rphy for an end device
Rob Landleyeb448202007-11-03 13:30:39 -05001491 * @parent: which port
James Bottomley42ab0362006-03-04 09:10:18 -06001492 *
1493 * Allocates an SAS remote PHY structure, connected to @parent.
1494 *
1495 * Returns:
1496 * SAS PHY allocated or %NULL if the allocation failed.
1497 */
James Bottomley65c92b02006-06-28 12:22:50 -04001498struct sas_rphy *sas_end_device_alloc(struct sas_port *parent)
James Bottomley42ab0362006-03-04 09:10:18 -06001499{
1500 struct Scsi_Host *shost = dev_to_shost(&parent->dev);
1501 struct sas_end_device *rdev;
1502
1503 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
1504 if (!rdev) {
James Bottomley42ab0362006-03-04 09:10:18 -06001505 return NULL;
1506 }
1507
1508 device_initialize(&rdev->rphy.dev);
1509 rdev->rphy.dev.parent = get_device(&parent->dev);
James Bottomley2f8600d2006-03-18 15:00:50 -06001510 rdev->rphy.dev.release = sas_end_device_release;
James Bottomley65c92b02006-06-28 12:22:50 -04001511 if (scsi_is_sas_expander_device(parent->dev.parent)) {
1512 struct sas_rphy *rphy = dev_to_rphy(parent->dev.parent);
Kay Sievers71610f52008-12-03 22:41:36 +01001513 dev_set_name(&rdev->rphy.dev, "end_device-%d:%d:%d",
1514 shost->host_no, rphy->scsi_target_id,
1515 parent->port_identifier);
James Bottomley65c92b02006-06-28 12:22:50 -04001516 } else
Kay Sievers71610f52008-12-03 22:41:36 +01001517 dev_set_name(&rdev->rphy.dev, "end_device-%d:%d",
1518 shost->host_no, parent->port_identifier);
James Bottomley42ab0362006-03-04 09:10:18 -06001519 rdev->rphy.identify.device_type = SAS_END_DEVICE;
James Bottomleyc5943d32006-06-12 09:09:18 -05001520 sas_rphy_initialize(&rdev->rphy);
James Bottomley42ab0362006-03-04 09:10:18 -06001521 transport_setup_device(&rdev->rphy.dev);
1522
1523 return &rdev->rphy;
1524}
1525EXPORT_SYMBOL(sas_end_device_alloc);
1526
James Bottomley79cb1812006-03-13 13:50:04 -06001527/**
1528 * sas_expander_alloc - allocate an rphy for an end device
Rob Landleyeb448202007-11-03 13:30:39 -05001529 * @parent: which port
1530 * @type: SAS_EDGE_EXPANDER_DEVICE or SAS_FANOUT_EXPANDER_DEVICE
James Bottomley79cb1812006-03-13 13:50:04 -06001531 *
1532 * Allocates an SAS remote PHY structure, connected to @parent.
1533 *
1534 * Returns:
1535 * SAS PHY allocated or %NULL if the allocation failed.
1536 */
James Bottomley65c92b02006-06-28 12:22:50 -04001537struct sas_rphy *sas_expander_alloc(struct sas_port *parent,
James Bottomley79cb1812006-03-13 13:50:04 -06001538 enum sas_device_type type)
1539{
1540 struct Scsi_Host *shost = dev_to_shost(&parent->dev);
1541 struct sas_expander_device *rdev;
1542 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
1543
1544 BUG_ON(type != SAS_EDGE_EXPANDER_DEVICE &&
1545 type != SAS_FANOUT_EXPANDER_DEVICE);
1546
1547 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
1548 if (!rdev) {
James Bottomley79cb1812006-03-13 13:50:04 -06001549 return NULL;
1550 }
1551
1552 device_initialize(&rdev->rphy.dev);
1553 rdev->rphy.dev.parent = get_device(&parent->dev);
James Bottomley2f8600d2006-03-18 15:00:50 -06001554 rdev->rphy.dev.release = sas_expander_release;
James Bottomley79cb1812006-03-13 13:50:04 -06001555 mutex_lock(&sas_host->lock);
1556 rdev->rphy.scsi_target_id = sas_host->next_expander_id++;
1557 mutex_unlock(&sas_host->lock);
Kay Sievers71610f52008-12-03 22:41:36 +01001558 dev_set_name(&rdev->rphy.dev, "expander-%d:%d",
1559 shost->host_no, rdev->rphy.scsi_target_id);
James Bottomley79cb1812006-03-13 13:50:04 -06001560 rdev->rphy.identify.device_type = type;
James Bottomleyc5943d32006-06-12 09:09:18 -05001561 sas_rphy_initialize(&rdev->rphy);
James Bottomley79cb1812006-03-13 13:50:04 -06001562 transport_setup_device(&rdev->rphy.dev);
1563
1564 return &rdev->rphy;
1565}
1566EXPORT_SYMBOL(sas_expander_alloc);
James Bottomley42ab0362006-03-04 09:10:18 -06001567
1568/**
Rob Landleyeb448202007-11-03 13:30:39 -05001569 * sas_rphy_add - add a SAS remote PHY to the device hierarchy
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001570 * @rphy: The remote PHY to be added
1571 *
1572 * Publishes a SAS remote PHY to the rest of the system.
1573 */
1574int sas_rphy_add(struct sas_rphy *rphy)
1575{
James Bottomley65c92b02006-06-28 12:22:50 -04001576 struct sas_port *parent = dev_to_sas_port(rphy->dev.parent);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001577 struct Scsi_Host *shost = dev_to_shost(parent->dev.parent);
1578 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
1579 struct sas_identify *identify = &rphy->identify;
1580 int error;
1581
1582 if (parent->rphy)
1583 return -ENXIO;
1584 parent->rphy = rphy;
1585
1586 error = device_add(&rphy->dev);
1587 if (error)
1588 return error;
1589 transport_add_device(&rphy->dev);
1590 transport_configure_device(&rphy->dev);
James Bottomley39dca552007-07-20 18:22:17 -05001591 if (sas_bsg_initialize(shost, rphy))
Kay Sievers71610f52008-12-03 22:41:36 +01001592 printk("fail to a bsg device %s\n", dev_name(&rphy->dev));
James Bottomley39dca552007-07-20 18:22:17 -05001593
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001594
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001595 mutex_lock(&sas_host->lock);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001596 list_add_tail(&rphy->list, &sas_host->rphy_list);
1597 if (identify->device_type == SAS_END_DEVICE &&
1598 (identify->target_port_protocols &
1599 (SAS_PROTOCOL_SSP|SAS_PROTOCOL_STP|SAS_PROTOCOL_SATA)))
1600 rphy->scsi_target_id = sas_host->next_target_id++;
James Bottomley7676f832006-04-14 09:47:59 -05001601 else if (identify->device_type == SAS_END_DEVICE)
1602 rphy->scsi_target_id = -1;
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001603 mutex_unlock(&sas_host->lock);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001604
James Bottomley79cb1812006-03-13 13:50:04 -06001605 if (identify->device_type == SAS_END_DEVICE &&
1606 rphy->scsi_target_id != -1) {
Dan Williams2fc62e22011-09-20 15:10:19 -07001607 int lun;
1608
1609 if (identify->target_port_protocols & SAS_PROTOCOL_SSP)
1610 lun = SCAN_WILD_CARD;
1611 else
1612 lun = 0;
1613
Hannes Reinecke1d645082016-03-17 08:39:45 +01001614 scsi_scan_target(&rphy->dev, 0, rphy->scsi_target_id, lun,
1615 SCSI_SCAN_INITIAL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001616 }
1617
1618 return 0;
1619}
1620EXPORT_SYMBOL(sas_rphy_add);
1621
1622/**
Rob Landleyeb448202007-11-03 13:30:39 -05001623 * sas_rphy_free - free a SAS remote PHY
1624 * @rphy: SAS remote PHY to free
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001625 *
1626 * Frees the specified SAS remote PHY.
1627 *
1628 * Note:
1629 * This function must only be called on a remote
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001630 * PHY that has not successfully been added using
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001631 * sas_rphy_add() (or has been sas_rphy_remove()'d)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001632 */
1633void sas_rphy_free(struct sas_rphy *rphy)
1634{
Mike Anderson92aab642006-03-27 09:37:28 -08001635 struct device *dev = &rphy->dev;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001636 struct Scsi_Host *shost = dev_to_shost(rphy->dev.parent->parent);
1637 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
1638
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001639 mutex_lock(&sas_host->lock);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001640 list_del(&rphy->list);
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001641 mutex_unlock(&sas_host->lock);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001642
Mike Anderson92aab642006-03-27 09:37:28 -08001643 transport_destroy_device(dev);
James Bottomley2f8600d2006-03-18 15:00:50 -06001644
Mike Anderson92aab642006-03-27 09:37:28 -08001645 put_device(dev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001646}
1647EXPORT_SYMBOL(sas_rphy_free);
1648
1649/**
Rob Landleyeb448202007-11-03 13:30:39 -05001650 * sas_rphy_delete - remove and free SAS remote PHY
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001651 * @rphy: SAS remote PHY to remove and free
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001652 *
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001653 * Removes the specified SAS remote PHY and frees it.
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001654 */
1655void
1656sas_rphy_delete(struct sas_rphy *rphy)
1657{
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001658 sas_rphy_remove(rphy);
1659 sas_rphy_free(rphy);
1660}
1661EXPORT_SYMBOL(sas_rphy_delete);
1662
1663/**
Dan Williams87c83312011-11-17 17:59:51 -08001664 * sas_rphy_unlink - unlink SAS remote PHY
1665 * @rphy: SAS remote phy to unlink from its parent port
1666 *
1667 * Removes port reference to an rphy
1668 */
1669void sas_rphy_unlink(struct sas_rphy *rphy)
1670{
1671 struct sas_port *parent = dev_to_sas_port(rphy->dev.parent);
1672
1673 parent->rphy = NULL;
1674}
1675EXPORT_SYMBOL(sas_rphy_unlink);
1676
1677/**
Rob Landleyeb448202007-11-03 13:30:39 -05001678 * sas_rphy_remove - remove SAS remote PHY
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001679 * @rphy: SAS remote phy to remove
1680 *
1681 * Removes the specified SAS remote PHY.
1682 */
1683void
1684sas_rphy_remove(struct sas_rphy *rphy)
1685{
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001686 struct device *dev = &rphy->dev;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001687
Christoph Hellwigd4054232006-01-04 13:45:20 +01001688 switch (rphy->identify.device_type) {
1689 case SAS_END_DEVICE:
1690 scsi_remove_target(dev);
1691 break;
1692 case SAS_EDGE_EXPANDER_DEVICE:
1693 case SAS_FANOUT_EXPANDER_DEVICE:
James Bottomley65c92b02006-06-28 12:22:50 -04001694 sas_remove_children(dev);
Christoph Hellwigd4054232006-01-04 13:45:20 +01001695 break;
1696 default:
1697 break;
1698 }
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001699
Dan Williams87c83312011-11-17 17:59:51 -08001700 sas_rphy_unlink(rphy);
Joe Lawrence6aa6caf2014-05-22 17:30:54 -04001701 sas_bsg_remove(NULL, rphy);
Christoph Hellwigfe8b2302005-09-25 23:10:33 +02001702 transport_remove_device(dev);
1703 device_del(dev);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001704}
Darrick J. Wong6f63caa2007-01-26 14:08:43 -08001705EXPORT_SYMBOL(sas_rphy_remove);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001706
1707/**
Rob Landleyeb448202007-11-03 13:30:39 -05001708 * scsi_is_sas_rphy - check if a struct device represents a SAS remote PHY
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001709 * @dev: device to check
1710 *
1711 * Returns:
1712 * %1 if the device represents a SAS remote PHY, %0 else
1713 */
1714int scsi_is_sas_rphy(const struct device *dev)
1715{
James Bottomley2f8600d2006-03-18 15:00:50 -06001716 return dev->release == sas_end_device_release ||
1717 dev->release == sas_expander_release;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001718}
1719EXPORT_SYMBOL(scsi_is_sas_rphy);
1720
1721
1722/*
1723 * SCSI scan helper
1724 */
1725
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001726static int sas_user_scan(struct Scsi_Host *shost, uint channel,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001727 uint id, u64 lun)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001728{
1729 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
1730 struct sas_rphy *rphy;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001731
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001732 mutex_lock(&sas_host->lock);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001733 list_for_each_entry(rphy, &sas_host->rphy_list, list) {
James Bottomley6d99a3f2006-05-19 10:49:37 -05001734 if (rphy->identify.device_type != SAS_END_DEVICE ||
1735 rphy->scsi_target_id == -1)
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001736 continue;
1737
James Bottomleye8bf3942006-07-11 17:49:34 -04001738 if ((channel == SCAN_WILD_CARD || channel == 0) &&
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001739 (id == SCAN_WILD_CARD || id == rphy->scsi_target_id)) {
Hannes Reinecke1d645082016-03-17 08:39:45 +01001740 scsi_scan_target(&rphy->dev, 0, rphy->scsi_target_id,
1741 lun, SCSI_SCAN_MANUAL);
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001742 }
1743 }
1744 mutex_unlock(&sas_host->lock);
1745
1746 return 0;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001747}
1748
1749
1750/*
1751 * Setup / Teardown code
1752 */
1753
James Bottomleyd24e1ee2006-09-06 19:25:22 -05001754#define SETUP_TEMPLATE(attrb, field, perm, test) \
Tony Jonesee959b02008-02-22 00:13:36 +01001755 i->private_##attrb[count] = dev_attr_##field; \
James Bottomley42ab0362006-03-04 09:10:18 -06001756 i->private_##attrb[count].attr.mode = perm; \
James Bottomley42ab0362006-03-04 09:10:18 -06001757 i->attrb[count] = &i->private_##attrb[count]; \
1758 if (test) \
1759 count++
1760
James Bottomleyd24e1ee2006-09-06 19:25:22 -05001761#define SETUP_TEMPLATE_RW(attrb, field, perm, test, ro_test, ro_perm) \
Tony Jonesee959b02008-02-22 00:13:36 +01001762 i->private_##attrb[count] = dev_attr_##field; \
James Bottomleyd24e1ee2006-09-06 19:25:22 -05001763 i->private_##attrb[count].attr.mode = perm; \
1764 if (ro_test) { \
1765 i->private_##attrb[count].attr.mode = ro_perm; \
1766 i->private_##attrb[count].store = NULL; \
1767 } \
1768 i->attrb[count] = &i->private_##attrb[count]; \
1769 if (test) \
1770 count++
James Bottomley42ab0362006-03-04 09:10:18 -06001771
1772#define SETUP_RPORT_ATTRIBUTE(field) \
1773 SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, 1)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001774
James Bottomleydd9fbb522006-03-02 16:01:31 -06001775#define SETUP_OPTIONAL_RPORT_ATTRIBUTE(field, func) \
James Bottomley42ab0362006-03-04 09:10:18 -06001776 SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, i->f->func)
James Bottomleydd9fbb522006-03-02 16:01:31 -06001777
James Bottomley65c92b02006-06-28 12:22:50 -04001778#define SETUP_PHY_ATTRIBUTE(field) \
James Bottomley42ab0362006-03-04 09:10:18 -06001779 SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, 1)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001780
James Bottomleyd24e1ee2006-09-06 19:25:22 -05001781#define SETUP_PHY_ATTRIBUTE_RW(field) \
1782 SETUP_TEMPLATE_RW(phy_attrs, field, S_IRUGO | S_IWUSR, 1, \
1783 !i->f->set_phy_speed, S_IRUGO)
1784
Darrick J. Wongacbf1672007-01-11 14:14:57 -08001785#define SETUP_OPTIONAL_PHY_ATTRIBUTE_RW(field, func) \
1786 SETUP_TEMPLATE_RW(phy_attrs, field, S_IRUGO | S_IWUSR, 1, \
1787 !i->f->func, S_IRUGO)
1788
James Bottomley65c92b02006-06-28 12:22:50 -04001789#define SETUP_PORT_ATTRIBUTE(field) \
1790 SETUP_TEMPLATE(port_attrs, field, S_IRUGO, 1)
1791
1792#define SETUP_OPTIONAL_PHY_ATTRIBUTE(field, func) \
James Bottomley42ab0362006-03-04 09:10:18 -06001793 SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, i->f->func)
James Bottomleydd9fbb522006-03-02 16:01:31 -06001794
James Bottomley65c92b02006-06-28 12:22:50 -04001795#define SETUP_PHY_ATTRIBUTE_WRONLY(field) \
Darrick J. Wongfe3b5bf2007-01-11 14:15:35 -08001796 SETUP_TEMPLATE(phy_attrs, field, S_IWUSR, 1)
Christoph Hellwig07ba3a92005-10-19 20:01:31 +02001797
James Bottomley65c92b02006-06-28 12:22:50 -04001798#define SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(field, func) \
Darrick J. Wongfe3b5bf2007-01-11 14:15:35 -08001799 SETUP_TEMPLATE(phy_attrs, field, S_IWUSR, i->f->func)
James Bottomleydd9fbb522006-03-02 16:01:31 -06001800
James Bottomley42ab0362006-03-04 09:10:18 -06001801#define SETUP_END_DEV_ATTRIBUTE(field) \
1802 SETUP_TEMPLATE(end_dev_attrs, field, S_IRUGO, 1)
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001803
James Bottomley79cb1812006-03-13 13:50:04 -06001804#define SETUP_EXPANDER_ATTRIBUTE(field) \
1805 SETUP_TEMPLATE(expander_attrs, expander_##field, S_IRUGO, 1)
1806
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001807/**
Rob Landleyeb448202007-11-03 13:30:39 -05001808 * sas_attach_transport - instantiate SAS transport template
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001809 * @ft: SAS transport class function template
1810 */
1811struct scsi_transport_template *
1812sas_attach_transport(struct sas_function_template *ft)
1813{
1814 struct sas_internal *i;
1815 int count;
1816
Jes Sorensen24669f752006-01-16 10:31:18 -05001817 i = kzalloc(sizeof(struct sas_internal), GFP_KERNEL);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001818 if (!i)
1819 return NULL;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001820
Christoph Hellwige02f3f52006-01-13 19:04:00 +01001821 i->t.user_scan = sas_user_scan;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001822
1823 i->t.host_attrs.ac.attrs = &i->host_attrs[0];
1824 i->t.host_attrs.ac.class = &sas_host_class.class;
1825 i->t.host_attrs.ac.match = sas_host_match;
1826 transport_container_register(&i->t.host_attrs);
1827 i->t.host_size = sizeof(struct sas_host_attrs);
1828
1829 i->phy_attr_cont.ac.class = &sas_phy_class.class;
1830 i->phy_attr_cont.ac.attrs = &i->phy_attrs[0];
1831 i->phy_attr_cont.ac.match = sas_phy_match;
1832 transport_container_register(&i->phy_attr_cont);
1833
James Bottomley65c92b02006-06-28 12:22:50 -04001834 i->port_attr_cont.ac.class = &sas_port_class.class;
1835 i->port_attr_cont.ac.attrs = &i->port_attrs[0];
1836 i->port_attr_cont.ac.match = sas_port_match;
1837 transport_container_register(&i->port_attr_cont);
1838
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001839 i->rphy_attr_cont.ac.class = &sas_rphy_class.class;
1840 i->rphy_attr_cont.ac.attrs = &i->rphy_attrs[0];
1841 i->rphy_attr_cont.ac.match = sas_rphy_match;
1842 transport_container_register(&i->rphy_attr_cont);
1843
James Bottomley42ab0362006-03-04 09:10:18 -06001844 i->end_dev_attr_cont.ac.class = &sas_end_dev_class.class;
1845 i->end_dev_attr_cont.ac.attrs = &i->end_dev_attrs[0];
1846 i->end_dev_attr_cont.ac.match = sas_end_dev_match;
1847 transport_container_register(&i->end_dev_attr_cont);
1848
James Bottomley79cb1812006-03-13 13:50:04 -06001849 i->expander_attr_cont.ac.class = &sas_expander_class.class;
1850 i->expander_attr_cont.ac.attrs = &i->expander_attrs[0];
1851 i->expander_attr_cont.ac.match = sas_expander_match;
1852 transport_container_register(&i->expander_attr_cont);
1853
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001854 i->f = ft;
1855
1856 count = 0;
James Bottomley65c92b02006-06-28 12:22:50 -04001857 SETUP_PHY_ATTRIBUTE(initiator_port_protocols);
1858 SETUP_PHY_ATTRIBUTE(target_port_protocols);
1859 SETUP_PHY_ATTRIBUTE(device_type);
1860 SETUP_PHY_ATTRIBUTE(sas_address);
1861 SETUP_PHY_ATTRIBUTE(phy_identifier);
1862 //SETUP_PHY_ATTRIBUTE(port_identifier);
1863 SETUP_PHY_ATTRIBUTE(negotiated_linkrate);
1864 SETUP_PHY_ATTRIBUTE(minimum_linkrate_hw);
James Bottomleyd24e1ee2006-09-06 19:25:22 -05001865 SETUP_PHY_ATTRIBUTE_RW(minimum_linkrate);
James Bottomley65c92b02006-06-28 12:22:50 -04001866 SETUP_PHY_ATTRIBUTE(maximum_linkrate_hw);
James Bottomleyd24e1ee2006-09-06 19:25:22 -05001867 SETUP_PHY_ATTRIBUTE_RW(maximum_linkrate);
Christoph Hellwigc3ee74c2005-09-19 21:59:42 +02001868
James Bottomley65c92b02006-06-28 12:22:50 -04001869 SETUP_PHY_ATTRIBUTE(invalid_dword_count);
1870 SETUP_PHY_ATTRIBUTE(running_disparity_error_count);
1871 SETUP_PHY_ATTRIBUTE(loss_of_dword_sync_count);
1872 SETUP_PHY_ATTRIBUTE(phy_reset_problem_count);
1873 SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(link_reset, phy_reset);
1874 SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(hard_reset, phy_reset);
Darrick J. Wongacbf1672007-01-11 14:14:57 -08001875 SETUP_OPTIONAL_PHY_ATTRIBUTE_RW(enable, phy_enable);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001876 i->phy_attrs[count] = NULL;
1877
1878 count = 0;
James Bottomley65c92b02006-06-28 12:22:50 -04001879 SETUP_PORT_ATTRIBUTE(num_phys);
1880 i->port_attrs[count] = NULL;
1881
1882 count = 0;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001883 SETUP_RPORT_ATTRIBUTE(rphy_initiator_port_protocols);
1884 SETUP_RPORT_ATTRIBUTE(rphy_target_port_protocols);
1885 SETUP_RPORT_ATTRIBUTE(rphy_device_type);
1886 SETUP_RPORT_ATTRIBUTE(rphy_sas_address);
1887 SETUP_RPORT_ATTRIBUTE(rphy_phy_identifier);
Hannes Reineckecdc43ae2016-03-14 10:43:08 +01001888 SETUP_RPORT_ATTRIBUTE(rphy_scsi_target_id);
James Bottomleydd9fbb522006-03-02 16:01:31 -06001889 SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_enclosure_identifier,
1890 get_enclosure_identifier);
1891 SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_bay_identifier,
1892 get_bay_identifier);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001893 i->rphy_attrs[count] = NULL;
1894
James Bottomley42ab0362006-03-04 09:10:18 -06001895 count = 0;
1896 SETUP_END_DEV_ATTRIBUTE(end_dev_ready_led_meaning);
1897 SETUP_END_DEV_ATTRIBUTE(end_dev_I_T_nexus_loss_timeout);
1898 SETUP_END_DEV_ATTRIBUTE(end_dev_initiator_response_timeout);
James Bottomley0f880092010-01-18 10:14:51 -06001899 SETUP_END_DEV_ATTRIBUTE(end_dev_tlr_supported);
1900 SETUP_END_DEV_ATTRIBUTE(end_dev_tlr_enabled);
James Bottomley42ab0362006-03-04 09:10:18 -06001901 i->end_dev_attrs[count] = NULL;
1902
James Bottomley79cb1812006-03-13 13:50:04 -06001903 count = 0;
1904 SETUP_EXPANDER_ATTRIBUTE(vendor_id);
1905 SETUP_EXPANDER_ATTRIBUTE(product_id);
1906 SETUP_EXPANDER_ATTRIBUTE(product_rev);
1907 SETUP_EXPANDER_ATTRIBUTE(component_vendor_id);
1908 SETUP_EXPANDER_ATTRIBUTE(component_id);
1909 SETUP_EXPANDER_ATTRIBUTE(component_revision_id);
1910 SETUP_EXPANDER_ATTRIBUTE(level);
1911 i->expander_attrs[count] = NULL;
1912
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001913 return &i->t;
1914}
1915EXPORT_SYMBOL(sas_attach_transport);
1916
1917/**
Rob Landleyeb448202007-11-03 13:30:39 -05001918 * sas_release_transport - release SAS transport template instance
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001919 * @t: transport template instance
1920 */
1921void sas_release_transport(struct scsi_transport_template *t)
1922{
1923 struct sas_internal *i = to_sas_internal(t);
1924
1925 transport_container_unregister(&i->t.host_attrs);
1926 transport_container_unregister(&i->phy_attr_cont);
James Bottomley65c92b02006-06-28 12:22:50 -04001927 transport_container_unregister(&i->port_attr_cont);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001928 transport_container_unregister(&i->rphy_attr_cont);
James Bottomleydb82f842006-03-09 22:06:36 -05001929 transport_container_unregister(&i->end_dev_attr_cont);
James Bottomley79cb1812006-03-13 13:50:04 -06001930 transport_container_unregister(&i->expander_attr_cont);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001931
1932 kfree(i);
1933}
1934EXPORT_SYMBOL(sas_release_transport);
1935
1936static __init int sas_transport_init(void)
1937{
1938 int error;
1939
1940 error = transport_class_register(&sas_host_class);
1941 if (error)
1942 goto out;
1943 error = transport_class_register(&sas_phy_class);
1944 if (error)
1945 goto out_unregister_transport;
James Bottomley65c92b02006-06-28 12:22:50 -04001946 error = transport_class_register(&sas_port_class);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001947 if (error)
1948 goto out_unregister_phy;
James Bottomley65c92b02006-06-28 12:22:50 -04001949 error = transport_class_register(&sas_rphy_class);
1950 if (error)
1951 goto out_unregister_port;
James Bottomley42ab0362006-03-04 09:10:18 -06001952 error = transport_class_register(&sas_end_dev_class);
1953 if (error)
1954 goto out_unregister_rphy;
James Bottomley79cb1812006-03-13 13:50:04 -06001955 error = transport_class_register(&sas_expander_class);
1956 if (error)
1957 goto out_unregister_end_dev;
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001958
1959 return 0;
1960
James Bottomley79cb1812006-03-13 13:50:04 -06001961 out_unregister_end_dev:
1962 transport_class_unregister(&sas_end_dev_class);
James Bottomley42ab0362006-03-04 09:10:18 -06001963 out_unregister_rphy:
1964 transport_class_unregister(&sas_rphy_class);
James Bottomley65c92b02006-06-28 12:22:50 -04001965 out_unregister_port:
1966 transport_class_unregister(&sas_port_class);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001967 out_unregister_phy:
1968 transport_class_unregister(&sas_phy_class);
1969 out_unregister_transport:
1970 transport_class_unregister(&sas_host_class);
1971 out:
1972 return error;
1973
1974}
1975
1976static void __exit sas_transport_exit(void)
1977{
1978 transport_class_unregister(&sas_host_class);
1979 transport_class_unregister(&sas_phy_class);
James Bottomley65c92b02006-06-28 12:22:50 -04001980 transport_class_unregister(&sas_port_class);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001981 transport_class_unregister(&sas_rphy_class);
James Bottomley42ab0362006-03-04 09:10:18 -06001982 transport_class_unregister(&sas_end_dev_class);
James Bottomley79cb1812006-03-13 13:50:04 -06001983 transport_class_unregister(&sas_expander_class);
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001984}
1985
1986MODULE_AUTHOR("Christoph Hellwig");
Alexis Bruemmer86b9c4c2007-01-16 15:36:12 -08001987MODULE_DESCRIPTION("SAS Transport Attributes");
Christoph Hellwigc7ebbbc2005-09-09 16:22:50 +02001988MODULE_LICENSE("GPL");
1989
1990module_init(sas_transport_init);
1991module_exit(sas_transport_exit);