[SCSI] scsi_transport_sas: don't scan a non-existent end device
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / scsi_transport_sas.c
blob8b6d65e21bae3a23ac362d65ac9b95d57732b6f3
1 /*
2 * Copyright (C) 2005-2006 Dell Inc.
3 * Released under GPL v2.
5 * Serial Attached SCSI (SAS) transport class.
7 * The SAS transport class contains common code to deal with SAS HBAs,
8 * an aproximated representation of SAS topologies in the driver model,
9 * and various sysfs attributes to expose these topologies and managment
10 * interfaces to userspace.
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.
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.
26 #include <linux/init.h>
27 #include <linux/module.h>
28 #include <linux/err.h>
29 #include <linux/slab.h>
30 #include <linux/string.h>
32 #include <scsi/scsi.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_host.h>
35 #include <scsi/scsi_transport.h>
36 #include <scsi/scsi_transport_sas.h>
38 #include "scsi_sas_internal.h"
39 struct sas_host_attrs {
40 struct list_head rphy_list;
41 struct mutex lock;
42 u32 next_target_id;
43 u32 next_expander_id;
45 #define to_sas_host_attrs(host) ((struct sas_host_attrs *)(host)->shost_data)
49 * Hack to allow attributes of the same name in different objects.
51 #define SAS_CLASS_DEVICE_ATTR(_prefix,_name,_mode,_show,_store) \
52 struct class_device_attribute class_device_attr_##_prefix##_##_name = \
53 __ATTR(_name,_mode,_show,_store)
57 * Pretty printing helpers
60 #define sas_bitfield_name_match(title, table) \
61 static ssize_t \
62 get_sas_##title##_names(u32 table_key, char *buf) \
63 { \
64 char *prefix = ""; \
65 ssize_t len = 0; \
66 int i; \
68 for (i = 0; i < sizeof(table)/sizeof(table[0]); i++) { \
69 if (table[i].value & table_key) { \
70 len += sprintf(buf + len, "%s%s", \
71 prefix, table[i].name); \
72 prefix = ", "; \
73 } \
74 } \
75 len += sprintf(buf + len, "\n"); \
76 return len; \
79 #define sas_bitfield_name_search(title, table) \
80 static ssize_t \
81 get_sas_##title##_names(u32 table_key, char *buf) \
82 { \
83 ssize_t len = 0; \
84 int i; \
86 for (i = 0; i < sizeof(table)/sizeof(table[0]); i++) { \
87 if (table[i].value == table_key) { \
88 len += sprintf(buf + len, "%s", \
89 table[i].name); \
90 break; \
91 } \
92 } \
93 len += sprintf(buf + len, "\n"); \
94 return len; \
97 static struct {
98 u32 value;
99 char *name;
100 } sas_device_type_names[] = {
101 { SAS_PHY_UNUSED, "unused" },
102 { SAS_END_DEVICE, "end device" },
103 { SAS_EDGE_EXPANDER_DEVICE, "edge expander" },
104 { SAS_FANOUT_EXPANDER_DEVICE, "fanout expander" },
106 sas_bitfield_name_search(device_type, sas_device_type_names)
109 static struct {
110 u32 value;
111 char *name;
112 } sas_protocol_names[] = {
113 { SAS_PROTOCOL_SATA, "sata" },
114 { SAS_PROTOCOL_SMP, "smp" },
115 { SAS_PROTOCOL_STP, "stp" },
116 { SAS_PROTOCOL_SSP, "ssp" },
118 sas_bitfield_name_match(protocol, sas_protocol_names)
120 static struct {
121 u32 value;
122 char *name;
123 } sas_linkspeed_names[] = {
124 { SAS_LINK_RATE_UNKNOWN, "Unknown" },
125 { SAS_PHY_DISABLED, "Phy disabled" },
126 { SAS_LINK_RATE_FAILED, "Link Rate failed" },
127 { SAS_SATA_SPINUP_HOLD, "Spin-up hold" },
128 { SAS_LINK_RATE_1_5_GBPS, "1.5 Gbit" },
129 { SAS_LINK_RATE_3_0_GBPS, "3.0 Gbit" },
130 { SAS_LINK_RATE_6_0_GBPS, "6.0 Gbit" },
132 sas_bitfield_name_search(linkspeed, sas_linkspeed_names)
136 * SAS host attributes
139 static int sas_host_setup(struct transport_container *tc, struct device *dev,
140 struct class_device *cdev)
142 struct Scsi_Host *shost = dev_to_shost(dev);
143 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
145 INIT_LIST_HEAD(&sas_host->rphy_list);
146 mutex_init(&sas_host->lock);
147 sas_host->next_target_id = 0;
148 sas_host->next_expander_id = 0;
149 return 0;
152 static DECLARE_TRANSPORT_CLASS(sas_host_class,
153 "sas_host", sas_host_setup, NULL, NULL);
155 static int sas_host_match(struct attribute_container *cont,
156 struct device *dev)
158 struct Scsi_Host *shost;
159 struct sas_internal *i;
161 if (!scsi_is_host_device(dev))
162 return 0;
163 shost = dev_to_shost(dev);
165 if (!shost->transportt)
166 return 0;
167 if (shost->transportt->host_attrs.ac.class !=
168 &sas_host_class.class)
169 return 0;
171 i = to_sas_internal(shost->transportt);
172 return &i->t.host_attrs.ac == cont;
175 static int do_sas_phy_delete(struct device *dev, void *data)
177 if (scsi_is_sas_phy(dev))
178 sas_phy_delete(dev_to_phy(dev));
179 return 0;
183 * sas_remove_host -- tear down a Scsi_Host's SAS data structures
184 * @shost: Scsi Host that is torn down
186 * Removes all SAS PHYs and remote PHYs for a given Scsi_Host.
187 * Must be called just before scsi_remove_host for SAS HBAs.
189 void sas_remove_host(struct Scsi_Host *shost)
191 device_for_each_child(&shost->shost_gendev, NULL, do_sas_phy_delete);
193 EXPORT_SYMBOL(sas_remove_host);
197 * SAS Port attributes
200 #define sas_phy_show_simple(field, name, format_string, cast) \
201 static ssize_t \
202 show_sas_phy_##name(struct class_device *cdev, char *buf) \
204 struct sas_phy *phy = transport_class_to_phy(cdev); \
206 return snprintf(buf, 20, format_string, cast phy->field); \
209 #define sas_phy_simple_attr(field, name, format_string, type) \
210 sas_phy_show_simple(field, name, format_string, (type)) \
211 static CLASS_DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL)
213 #define sas_phy_show_protocol(field, name) \
214 static ssize_t \
215 show_sas_phy_##name(struct class_device *cdev, char *buf) \
217 struct sas_phy *phy = transport_class_to_phy(cdev); \
219 if (!phy->field) \
220 return snprintf(buf, 20, "none\n"); \
221 return get_sas_protocol_names(phy->field, buf); \
224 #define sas_phy_protocol_attr(field, name) \
225 sas_phy_show_protocol(field, name) \
226 static CLASS_DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL)
228 #define sas_phy_show_linkspeed(field) \
229 static ssize_t \
230 show_sas_phy_##field(struct class_device *cdev, char *buf) \
232 struct sas_phy *phy = transport_class_to_phy(cdev); \
234 return get_sas_linkspeed_names(phy->field, buf); \
237 #define sas_phy_linkspeed_attr(field) \
238 sas_phy_show_linkspeed(field) \
239 static CLASS_DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL)
241 #define sas_phy_show_linkerror(field) \
242 static ssize_t \
243 show_sas_phy_##field(struct class_device *cdev, char *buf) \
245 struct sas_phy *phy = transport_class_to_phy(cdev); \
246 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \
247 struct sas_internal *i = to_sas_internal(shost->transportt); \
248 int error; \
250 if (!phy->local_attached) \
251 return -EINVAL; \
253 error = i->f->get_linkerrors ? i->f->get_linkerrors(phy) : 0; \
254 if (error) \
255 return error; \
256 return snprintf(buf, 20, "%u\n", phy->field); \
259 #define sas_phy_linkerror_attr(field) \
260 sas_phy_show_linkerror(field) \
261 static CLASS_DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL)
264 static ssize_t
265 show_sas_device_type(struct class_device *cdev, char *buf)
267 struct sas_phy *phy = transport_class_to_phy(cdev);
269 if (!phy->identify.device_type)
270 return snprintf(buf, 20, "none\n");
271 return get_sas_device_type_names(phy->identify.device_type, buf);
273 static CLASS_DEVICE_ATTR(device_type, S_IRUGO, show_sas_device_type, NULL);
275 static ssize_t do_sas_phy_reset(struct class_device *cdev,
276 size_t count, int hard_reset)
278 struct sas_phy *phy = transport_class_to_phy(cdev);
279 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
280 struct sas_internal *i = to_sas_internal(shost->transportt);
281 int error;
283 if (!phy->local_attached)
284 return -EINVAL;
286 error = i->f->phy_reset(phy, hard_reset);
287 if (error)
288 return error;
289 return count;
292 static ssize_t store_sas_link_reset(struct class_device *cdev,
293 const char *buf, size_t count)
295 return do_sas_phy_reset(cdev, count, 0);
297 static CLASS_DEVICE_ATTR(link_reset, S_IWUSR, NULL, store_sas_link_reset);
299 static ssize_t store_sas_hard_reset(struct class_device *cdev,
300 const char *buf, size_t count)
302 return do_sas_phy_reset(cdev, count, 1);
304 static CLASS_DEVICE_ATTR(hard_reset, S_IWUSR, NULL, store_sas_hard_reset);
306 sas_phy_protocol_attr(identify.initiator_port_protocols,
307 initiator_port_protocols);
308 sas_phy_protocol_attr(identify.target_port_protocols,
309 target_port_protocols);
310 sas_phy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n",
311 unsigned long long);
312 sas_phy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8);
313 sas_phy_simple_attr(port_identifier, port_identifier, "%d\n", u8);
314 sas_phy_linkspeed_attr(negotiated_linkrate);
315 sas_phy_linkspeed_attr(minimum_linkrate_hw);
316 sas_phy_linkspeed_attr(minimum_linkrate);
317 sas_phy_linkspeed_attr(maximum_linkrate_hw);
318 sas_phy_linkspeed_attr(maximum_linkrate);
319 sas_phy_linkerror_attr(invalid_dword_count);
320 sas_phy_linkerror_attr(running_disparity_error_count);
321 sas_phy_linkerror_attr(loss_of_dword_sync_count);
322 sas_phy_linkerror_attr(phy_reset_problem_count);
325 static DECLARE_TRANSPORT_CLASS(sas_phy_class,
326 "sas_phy", NULL, NULL, NULL);
328 static int sas_phy_match(struct attribute_container *cont, struct device *dev)
330 struct Scsi_Host *shost;
331 struct sas_internal *i;
333 if (!scsi_is_sas_phy(dev))
334 return 0;
335 shost = dev_to_shost(dev->parent);
337 if (!shost->transportt)
338 return 0;
339 if (shost->transportt->host_attrs.ac.class !=
340 &sas_host_class.class)
341 return 0;
343 i = to_sas_internal(shost->transportt);
344 return &i->phy_attr_cont.ac == cont;
347 static void sas_phy_release(struct device *dev)
349 struct sas_phy *phy = dev_to_phy(dev);
351 put_device(dev->parent);
352 kfree(phy);
356 * sas_phy_alloc -- allocates and initialize a SAS PHY structure
357 * @parent: Parent device
358 * @number: Phy index
360 * Allocates an SAS PHY structure. It will be added in the device tree
361 * below the device specified by @parent, which has to be either a Scsi_Host
362 * or sas_rphy.
364 * Returns:
365 * SAS PHY allocated or %NULL if the allocation failed.
367 struct sas_phy *sas_phy_alloc(struct device *parent, int number)
369 struct Scsi_Host *shost = dev_to_shost(parent);
370 struct sas_phy *phy;
372 phy = kzalloc(sizeof(*phy), GFP_KERNEL);
373 if (!phy)
374 return NULL;
376 phy->number = number;
378 device_initialize(&phy->dev);
379 phy->dev.parent = get_device(parent);
380 phy->dev.release = sas_phy_release;
381 if (scsi_is_sas_expander_device(parent)) {
382 struct sas_rphy *rphy = dev_to_rphy(parent);
383 sprintf(phy->dev.bus_id, "phy-%d-%d:%d", shost->host_no,
384 rphy->scsi_target_id, number);
385 } else
386 sprintf(phy->dev.bus_id, "phy-%d:%d", shost->host_no, number);
388 transport_setup_device(&phy->dev);
390 return phy;
392 EXPORT_SYMBOL(sas_phy_alloc);
395 * sas_phy_add -- add a SAS PHY to the device hierachy
396 * @phy: The PHY to be added
398 * Publishes a SAS PHY to the rest of the system.
400 int sas_phy_add(struct sas_phy *phy)
402 int error;
404 error = device_add(&phy->dev);
405 if (!error) {
406 transport_add_device(&phy->dev);
407 transport_configure_device(&phy->dev);
410 return error;
412 EXPORT_SYMBOL(sas_phy_add);
415 * sas_phy_free -- free a SAS PHY
416 * @phy: SAS PHY to free
418 * Frees the specified SAS PHY.
420 * Note:
421 * This function must only be called on a PHY that has not
422 * sucessfully been added using sas_phy_add().
424 void sas_phy_free(struct sas_phy *phy)
426 transport_destroy_device(&phy->dev);
427 put_device(&phy->dev);
429 EXPORT_SYMBOL(sas_phy_free);
432 * sas_phy_delete -- remove SAS PHY
433 * @phy: SAS PHY to remove
435 * Removes the specified SAS PHY. If the SAS PHY has an
436 * associated remote PHY it is removed before.
438 void
439 sas_phy_delete(struct sas_phy *phy)
441 struct device *dev = &phy->dev;
443 if (phy->rphy)
444 sas_rphy_delete(phy->rphy);
446 transport_remove_device(dev);
447 device_del(dev);
448 transport_destroy_device(dev);
449 put_device(dev);
451 EXPORT_SYMBOL(sas_phy_delete);
454 * scsi_is_sas_phy -- check if a struct device represents a SAS PHY
455 * @dev: device to check
457 * Returns:
458 * %1 if the device represents a SAS PHY, %0 else
460 int scsi_is_sas_phy(const struct device *dev)
462 return dev->release == sas_phy_release;
464 EXPORT_SYMBOL(scsi_is_sas_phy);
467 * SAS remote PHY attributes.
470 #define sas_rphy_show_simple(field, name, format_string, cast) \
471 static ssize_t \
472 show_sas_rphy_##name(struct class_device *cdev, char *buf) \
474 struct sas_rphy *rphy = transport_class_to_rphy(cdev); \
476 return snprintf(buf, 20, format_string, cast rphy->field); \
479 #define sas_rphy_simple_attr(field, name, format_string, type) \
480 sas_rphy_show_simple(field, name, format_string, (type)) \
481 static SAS_CLASS_DEVICE_ATTR(rphy, name, S_IRUGO, \
482 show_sas_rphy_##name, NULL)
484 #define sas_rphy_show_protocol(field, name) \
485 static ssize_t \
486 show_sas_rphy_##name(struct class_device *cdev, char *buf) \
488 struct sas_rphy *rphy = transport_class_to_rphy(cdev); \
490 if (!rphy->field) \
491 return snprintf(buf, 20, "none\n"); \
492 return get_sas_protocol_names(rphy->field, buf); \
495 #define sas_rphy_protocol_attr(field, name) \
496 sas_rphy_show_protocol(field, name) \
497 static SAS_CLASS_DEVICE_ATTR(rphy, name, S_IRUGO, \
498 show_sas_rphy_##name, NULL)
500 static ssize_t
501 show_sas_rphy_device_type(struct class_device *cdev, char *buf)
503 struct sas_rphy *rphy = transport_class_to_rphy(cdev);
505 if (!rphy->identify.device_type)
506 return snprintf(buf, 20, "none\n");
507 return get_sas_device_type_names(
508 rphy->identify.device_type, buf);
511 static SAS_CLASS_DEVICE_ATTR(rphy, device_type, S_IRUGO,
512 show_sas_rphy_device_type, NULL);
514 static ssize_t
515 show_sas_rphy_enclosure_identifier(struct class_device *cdev, char *buf)
517 struct sas_rphy *rphy = transport_class_to_rphy(cdev);
518 struct sas_phy *phy = dev_to_phy(rphy->dev.parent);
519 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
520 struct sas_internal *i = to_sas_internal(shost->transportt);
521 u64 identifier;
522 int error;
525 * Only devices behind an expander are supported, because the
526 * enclosure identifier is a SMP feature.
528 if (phy->local_attached)
529 return -EINVAL;
531 error = i->f->get_enclosure_identifier(rphy, &identifier);
532 if (error)
533 return error;
534 return sprintf(buf, "0x%llx\n", (unsigned long long)identifier);
537 static SAS_CLASS_DEVICE_ATTR(rphy, enclosure_identifier, S_IRUGO,
538 show_sas_rphy_enclosure_identifier, NULL);
540 static ssize_t
541 show_sas_rphy_bay_identifier(struct class_device *cdev, char *buf)
543 struct sas_rphy *rphy = transport_class_to_rphy(cdev);
544 struct sas_phy *phy = dev_to_phy(rphy->dev.parent);
545 struct Scsi_Host *shost = dev_to_shost(phy->dev.parent);
546 struct sas_internal *i = to_sas_internal(shost->transportt);
547 int val;
549 if (phy->local_attached)
550 return -EINVAL;
552 val = i->f->get_bay_identifier(rphy);
553 if (val < 0)
554 return val;
555 return sprintf(buf, "%d\n", val);
558 static SAS_CLASS_DEVICE_ATTR(rphy, bay_identifier, S_IRUGO,
559 show_sas_rphy_bay_identifier, NULL);
561 sas_rphy_protocol_attr(identify.initiator_port_protocols,
562 initiator_port_protocols);
563 sas_rphy_protocol_attr(identify.target_port_protocols, target_port_protocols);
564 sas_rphy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n",
565 unsigned long long);
566 sas_rphy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8);
568 /* only need 8 bytes of data plus header (4 or 8) */
569 #define BUF_SIZE 64
571 int sas_read_port_mode_page(struct scsi_device *sdev)
573 char *buffer = kzalloc(BUF_SIZE, GFP_KERNEL), *msdata;
574 struct sas_rphy *rphy = target_to_rphy(sdev->sdev_target);
575 struct sas_end_device *rdev;
576 struct scsi_mode_data mode_data;
577 int res, error;
579 BUG_ON(rphy->identify.device_type != SAS_END_DEVICE);
581 rdev = rphy_to_end_device(rphy);
583 if (!buffer)
584 return -ENOMEM;
586 res = scsi_mode_sense(sdev, 1, 0x19, buffer, BUF_SIZE, 30*HZ, 3,
587 &mode_data, NULL);
589 error = -EINVAL;
590 if (!scsi_status_is_good(res))
591 goto out;
593 msdata = buffer + mode_data.header_length +
594 mode_data.block_descriptor_length;
596 if (msdata - buffer > BUF_SIZE - 8)
597 goto out;
599 error = 0;
601 rdev->ready_led_meaning = msdata[2] & 0x10 ? 1 : 0;
602 rdev->I_T_nexus_loss_timeout = (msdata[4] << 8) + msdata[5];
603 rdev->initiator_response_timeout = (msdata[6] << 8) + msdata[7];
605 out:
606 kfree(buffer);
607 return error;
609 EXPORT_SYMBOL(sas_read_port_mode_page);
611 static DECLARE_TRANSPORT_CLASS(sas_end_dev_class,
612 "sas_end_device", NULL, NULL, NULL);
614 #define sas_end_dev_show_simple(field, name, format_string, cast) \
615 static ssize_t \
616 show_sas_end_dev_##name(struct class_device *cdev, char *buf) \
618 struct sas_rphy *rphy = transport_class_to_rphy(cdev); \
619 struct sas_end_device *rdev = rphy_to_end_device(rphy); \
621 return snprintf(buf, 20, format_string, cast rdev->field); \
624 #define sas_end_dev_simple_attr(field, name, format_string, type) \
625 sas_end_dev_show_simple(field, name, format_string, (type)) \
626 static SAS_CLASS_DEVICE_ATTR(end_dev, name, S_IRUGO, \
627 show_sas_end_dev_##name, NULL)
629 sas_end_dev_simple_attr(ready_led_meaning, ready_led_meaning, "%d\n", int);
630 sas_end_dev_simple_attr(I_T_nexus_loss_timeout, I_T_nexus_loss_timeout,
631 "%d\n", int);
632 sas_end_dev_simple_attr(initiator_response_timeout, initiator_response_timeout,
633 "%d\n", int);
635 static DECLARE_TRANSPORT_CLASS(sas_expander_class,
636 "sas_expander", NULL, NULL, NULL);
638 #define sas_expander_show_simple(field, name, format_string, cast) \
639 static ssize_t \
640 show_sas_expander_##name(struct class_device *cdev, char *buf) \
642 struct sas_rphy *rphy = transport_class_to_rphy(cdev); \
643 struct sas_expander_device *edev = rphy_to_expander_device(rphy); \
645 return snprintf(buf, 20, format_string, cast edev->field); \
648 #define sas_expander_simple_attr(field, name, format_string, type) \
649 sas_expander_show_simple(field, name, format_string, (type)) \
650 static SAS_CLASS_DEVICE_ATTR(expander, name, S_IRUGO, \
651 show_sas_expander_##name, NULL)
653 sas_expander_simple_attr(vendor_id, vendor_id, "%s\n", char *);
654 sas_expander_simple_attr(product_id, product_id, "%s\n", char *);
655 sas_expander_simple_attr(product_rev, product_rev, "%s\n", char *);
656 sas_expander_simple_attr(component_vendor_id, component_vendor_id,
657 "%s\n", char *);
658 sas_expander_simple_attr(component_id, component_id, "%u\n", unsigned int);
659 sas_expander_simple_attr(component_revision_id, component_revision_id, "%u\n",
660 unsigned int);
661 sas_expander_simple_attr(level, level, "%d\n", int);
663 static DECLARE_TRANSPORT_CLASS(sas_rphy_class,
664 "sas_device", NULL, NULL, NULL);
666 static int sas_rphy_match(struct attribute_container *cont, struct device *dev)
668 struct Scsi_Host *shost;
669 struct sas_internal *i;
671 if (!scsi_is_sas_rphy(dev))
672 return 0;
673 shost = dev_to_shost(dev->parent->parent);
675 if (!shost->transportt)
676 return 0;
677 if (shost->transportt->host_attrs.ac.class !=
678 &sas_host_class.class)
679 return 0;
681 i = to_sas_internal(shost->transportt);
682 return &i->rphy_attr_cont.ac == cont;
685 static int sas_end_dev_match(struct attribute_container *cont,
686 struct device *dev)
688 struct Scsi_Host *shost;
689 struct sas_internal *i;
690 struct sas_rphy *rphy;
692 if (!scsi_is_sas_rphy(dev))
693 return 0;
694 shost = dev_to_shost(dev->parent->parent);
695 rphy = dev_to_rphy(dev);
697 if (!shost->transportt)
698 return 0;
699 if (shost->transportt->host_attrs.ac.class !=
700 &sas_host_class.class)
701 return 0;
703 i = to_sas_internal(shost->transportt);
704 return &i->end_dev_attr_cont.ac == cont &&
705 rphy->identify.device_type == SAS_END_DEVICE;
708 static int sas_expander_match(struct attribute_container *cont,
709 struct device *dev)
711 struct Scsi_Host *shost;
712 struct sas_internal *i;
713 struct sas_rphy *rphy;
715 if (!scsi_is_sas_rphy(dev))
716 return 0;
717 shost = dev_to_shost(dev->parent->parent);
718 rphy = dev_to_rphy(dev);
720 if (!shost->transportt)
721 return 0;
722 if (shost->transportt->host_attrs.ac.class !=
723 &sas_host_class.class)
724 return 0;
726 i = to_sas_internal(shost->transportt);
727 return &i->expander_attr_cont.ac == cont &&
728 (rphy->identify.device_type == SAS_EDGE_EXPANDER_DEVICE ||
729 rphy->identify.device_type == SAS_FANOUT_EXPANDER_DEVICE);
732 static void sas_expander_release(struct device *dev)
734 struct sas_rphy *rphy = dev_to_rphy(dev);
735 struct sas_expander_device *edev = rphy_to_expander_device(rphy);
737 put_device(dev->parent);
738 kfree(edev);
741 static void sas_end_device_release(struct device *dev)
743 struct sas_rphy *rphy = dev_to_rphy(dev);
744 struct sas_end_device *edev = rphy_to_end_device(rphy);
746 put_device(dev->parent);
747 kfree(edev);
751 * sas_end_device_alloc - allocate an rphy for an end device
753 * Allocates an SAS remote PHY structure, connected to @parent.
755 * Returns:
756 * SAS PHY allocated or %NULL if the allocation failed.
758 struct sas_rphy *sas_end_device_alloc(struct sas_phy *parent)
760 struct Scsi_Host *shost = dev_to_shost(&parent->dev);
761 struct sas_end_device *rdev;
763 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
764 if (!rdev) {
765 return NULL;
768 device_initialize(&rdev->rphy.dev);
769 rdev->rphy.dev.parent = get_device(&parent->dev);
770 rdev->rphy.dev.release = sas_end_device_release;
771 sprintf(rdev->rphy.dev.bus_id, "end_device-%d:%d-%d",
772 shost->host_no, parent->port_identifier, parent->number);
773 rdev->rphy.identify.device_type = SAS_END_DEVICE;
774 transport_setup_device(&rdev->rphy.dev);
776 return &rdev->rphy;
778 EXPORT_SYMBOL(sas_end_device_alloc);
781 * sas_expander_alloc - allocate an rphy for an end device
783 * Allocates an SAS remote PHY structure, connected to @parent.
785 * Returns:
786 * SAS PHY allocated or %NULL if the allocation failed.
788 struct sas_rphy *sas_expander_alloc(struct sas_phy *parent,
789 enum sas_device_type type)
791 struct Scsi_Host *shost = dev_to_shost(&parent->dev);
792 struct sas_expander_device *rdev;
793 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
795 BUG_ON(type != SAS_EDGE_EXPANDER_DEVICE &&
796 type != SAS_FANOUT_EXPANDER_DEVICE);
798 rdev = kzalloc(sizeof(*rdev), GFP_KERNEL);
799 if (!rdev) {
800 return NULL;
803 device_initialize(&rdev->rphy.dev);
804 rdev->rphy.dev.parent = get_device(&parent->dev);
805 rdev->rphy.dev.release = sas_expander_release;
806 mutex_lock(&sas_host->lock);
807 rdev->rphy.scsi_target_id = sas_host->next_expander_id++;
808 mutex_unlock(&sas_host->lock);
809 sprintf(rdev->rphy.dev.bus_id, "expander-%d:%d",
810 shost->host_no, rdev->rphy.scsi_target_id);
811 rdev->rphy.identify.device_type = type;
812 transport_setup_device(&rdev->rphy.dev);
814 return &rdev->rphy;
816 EXPORT_SYMBOL(sas_expander_alloc);
819 * sas_rphy_add -- add a SAS remote PHY to the device hierachy
820 * @rphy: The remote PHY to be added
822 * Publishes a SAS remote PHY to the rest of the system.
824 int sas_rphy_add(struct sas_rphy *rphy)
826 struct sas_phy *parent = dev_to_phy(rphy->dev.parent);
827 struct Scsi_Host *shost = dev_to_shost(parent->dev.parent);
828 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
829 struct sas_identify *identify = &rphy->identify;
830 int error;
832 if (parent->rphy)
833 return -ENXIO;
834 parent->rphy = rphy;
836 error = device_add(&rphy->dev);
837 if (error)
838 return error;
839 transport_add_device(&rphy->dev);
840 transport_configure_device(&rphy->dev);
842 mutex_lock(&sas_host->lock);
843 list_add_tail(&rphy->list, &sas_host->rphy_list);
844 if (identify->device_type == SAS_END_DEVICE &&
845 (identify->target_port_protocols &
846 (SAS_PROTOCOL_SSP|SAS_PROTOCOL_STP|SAS_PROTOCOL_SATA)))
847 rphy->scsi_target_id = sas_host->next_target_id++;
848 else if (identify->device_type == SAS_END_DEVICE)
849 rphy->scsi_target_id = -1;
850 mutex_unlock(&sas_host->lock);
852 if (identify->device_type == SAS_END_DEVICE &&
853 rphy->scsi_target_id != -1) {
854 scsi_scan_target(&rphy->dev, parent->port_identifier,
855 rphy->scsi_target_id, ~0, 0);
858 return 0;
860 EXPORT_SYMBOL(sas_rphy_add);
863 * sas_rphy_free -- free a SAS remote PHY
864 * @rphy SAS remote PHY to free
866 * Frees the specified SAS remote PHY.
868 * Note:
869 * This function must only be called on a remote
870 * PHY that has not sucessfully been added using
871 * sas_rphy_add().
873 void sas_rphy_free(struct sas_rphy *rphy)
875 struct device *dev = &rphy->dev;
876 struct Scsi_Host *shost = dev_to_shost(rphy->dev.parent->parent);
877 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
879 mutex_lock(&sas_host->lock);
880 list_del(&rphy->list);
881 mutex_unlock(&sas_host->lock);
883 transport_destroy_device(dev);
885 put_device(dev);
887 EXPORT_SYMBOL(sas_rphy_free);
890 * sas_rphy_delete -- remove SAS remote PHY
891 * @rphy: SAS remote PHY to remove
893 * Removes the specified SAS remote PHY.
895 void
896 sas_rphy_delete(struct sas_rphy *rphy)
898 struct device *dev = &rphy->dev;
899 struct sas_phy *parent = dev_to_phy(dev->parent);
900 struct Scsi_Host *shost = dev_to_shost(parent->dev.parent);
901 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
903 switch (rphy->identify.device_type) {
904 case SAS_END_DEVICE:
905 scsi_remove_target(dev);
906 break;
907 case SAS_EDGE_EXPANDER_DEVICE:
908 case SAS_FANOUT_EXPANDER_DEVICE:
909 device_for_each_child(dev, NULL, do_sas_phy_delete);
910 break;
911 default:
912 break;
915 transport_remove_device(dev);
916 device_del(dev);
917 transport_destroy_device(dev);
919 mutex_lock(&sas_host->lock);
920 list_del(&rphy->list);
921 mutex_unlock(&sas_host->lock);
923 parent->rphy = NULL;
925 put_device(dev);
927 EXPORT_SYMBOL(sas_rphy_delete);
930 * scsi_is_sas_rphy -- check if a struct device represents a SAS remote PHY
931 * @dev: device to check
933 * Returns:
934 * %1 if the device represents a SAS remote PHY, %0 else
936 int scsi_is_sas_rphy(const struct device *dev)
938 return dev->release == sas_end_device_release ||
939 dev->release == sas_expander_release;
941 EXPORT_SYMBOL(scsi_is_sas_rphy);
945 * SCSI scan helper
948 static int sas_user_scan(struct Scsi_Host *shost, uint channel,
949 uint id, uint lun)
951 struct sas_host_attrs *sas_host = to_sas_host_attrs(shost);
952 struct sas_rphy *rphy;
954 mutex_lock(&sas_host->lock);
955 list_for_each_entry(rphy, &sas_host->rphy_list, list) {
956 struct sas_phy *parent = dev_to_phy(rphy->dev.parent);
958 if (rphy->scsi_target_id == -1)
959 continue;
961 if ((channel == SCAN_WILD_CARD || channel == parent->port_identifier) &&
962 (id == SCAN_WILD_CARD || id == rphy->scsi_target_id)) {
963 scsi_scan_target(&rphy->dev, parent->port_identifier,
964 rphy->scsi_target_id, lun, 1);
967 mutex_unlock(&sas_host->lock);
969 return 0;
974 * Setup / Teardown code
977 #define SETUP_TEMPLATE(attrb, field, perm, test) \
978 i->private_##attrb[count] = class_device_attr_##field; \
979 i->private_##attrb[count].attr.mode = perm; \
980 i->private_##attrb[count].store = NULL; \
981 i->attrb[count] = &i->private_##attrb[count]; \
982 if (test) \
983 count++
986 #define SETUP_RPORT_ATTRIBUTE(field) \
987 SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, 1)
989 #define SETUP_OPTIONAL_RPORT_ATTRIBUTE(field, func) \
990 SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, i->f->func)
992 #define SETUP_PORT_ATTRIBUTE(field) \
993 SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, 1)
995 #define SETUP_OPTIONAL_PORT_ATTRIBUTE(field, func) \
996 SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, i->f->func)
998 #define SETUP_PORT_ATTRIBUTE_WRONLY(field) \
999 SETUP_TEMPLATE(phy_attrs, field, S_IWUGO, 1)
1001 #define SETUP_OPTIONAL_PORT_ATTRIBUTE_WRONLY(field, func) \
1002 SETUP_TEMPLATE(phy_attrs, field, S_IWUGO, i->f->func)
1004 #define SETUP_END_DEV_ATTRIBUTE(field) \
1005 SETUP_TEMPLATE(end_dev_attrs, field, S_IRUGO, 1)
1007 #define SETUP_EXPANDER_ATTRIBUTE(field) \
1008 SETUP_TEMPLATE(expander_attrs, expander_##field, S_IRUGO, 1)
1011 * sas_attach_transport -- instantiate SAS transport template
1012 * @ft: SAS transport class function template
1014 struct scsi_transport_template *
1015 sas_attach_transport(struct sas_function_template *ft)
1017 struct sas_internal *i;
1018 int count;
1020 i = kzalloc(sizeof(struct sas_internal), GFP_KERNEL);
1021 if (!i)
1022 return NULL;
1024 i->t.user_scan = sas_user_scan;
1026 i->t.host_attrs.ac.attrs = &i->host_attrs[0];
1027 i->t.host_attrs.ac.class = &sas_host_class.class;
1028 i->t.host_attrs.ac.match = sas_host_match;
1029 transport_container_register(&i->t.host_attrs);
1030 i->t.host_size = sizeof(struct sas_host_attrs);
1032 i->phy_attr_cont.ac.class = &sas_phy_class.class;
1033 i->phy_attr_cont.ac.attrs = &i->phy_attrs[0];
1034 i->phy_attr_cont.ac.match = sas_phy_match;
1035 transport_container_register(&i->phy_attr_cont);
1037 i->rphy_attr_cont.ac.class = &sas_rphy_class.class;
1038 i->rphy_attr_cont.ac.attrs = &i->rphy_attrs[0];
1039 i->rphy_attr_cont.ac.match = sas_rphy_match;
1040 transport_container_register(&i->rphy_attr_cont);
1042 i->end_dev_attr_cont.ac.class = &sas_end_dev_class.class;
1043 i->end_dev_attr_cont.ac.attrs = &i->end_dev_attrs[0];
1044 i->end_dev_attr_cont.ac.match = sas_end_dev_match;
1045 transport_container_register(&i->end_dev_attr_cont);
1047 i->expander_attr_cont.ac.class = &sas_expander_class.class;
1048 i->expander_attr_cont.ac.attrs = &i->expander_attrs[0];
1049 i->expander_attr_cont.ac.match = sas_expander_match;
1050 transport_container_register(&i->expander_attr_cont);
1052 i->f = ft;
1054 count = 0;
1055 i->host_attrs[count] = NULL;
1057 count = 0;
1058 SETUP_PORT_ATTRIBUTE(initiator_port_protocols);
1059 SETUP_PORT_ATTRIBUTE(target_port_protocols);
1060 SETUP_PORT_ATTRIBUTE(device_type);
1061 SETUP_PORT_ATTRIBUTE(sas_address);
1062 SETUP_PORT_ATTRIBUTE(phy_identifier);
1063 SETUP_PORT_ATTRIBUTE(port_identifier);
1064 SETUP_PORT_ATTRIBUTE(negotiated_linkrate);
1065 SETUP_PORT_ATTRIBUTE(minimum_linkrate_hw);
1066 SETUP_PORT_ATTRIBUTE(minimum_linkrate);
1067 SETUP_PORT_ATTRIBUTE(maximum_linkrate_hw);
1068 SETUP_PORT_ATTRIBUTE(maximum_linkrate);
1070 SETUP_PORT_ATTRIBUTE(invalid_dword_count);
1071 SETUP_PORT_ATTRIBUTE(running_disparity_error_count);
1072 SETUP_PORT_ATTRIBUTE(loss_of_dword_sync_count);
1073 SETUP_PORT_ATTRIBUTE(phy_reset_problem_count);
1074 SETUP_OPTIONAL_PORT_ATTRIBUTE_WRONLY(link_reset, phy_reset);
1075 SETUP_OPTIONAL_PORT_ATTRIBUTE_WRONLY(hard_reset, phy_reset);
1076 i->phy_attrs[count] = NULL;
1078 count = 0;
1079 SETUP_RPORT_ATTRIBUTE(rphy_initiator_port_protocols);
1080 SETUP_RPORT_ATTRIBUTE(rphy_target_port_protocols);
1081 SETUP_RPORT_ATTRIBUTE(rphy_device_type);
1082 SETUP_RPORT_ATTRIBUTE(rphy_sas_address);
1083 SETUP_RPORT_ATTRIBUTE(rphy_phy_identifier);
1084 SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_enclosure_identifier,
1085 get_enclosure_identifier);
1086 SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_bay_identifier,
1087 get_bay_identifier);
1088 i->rphy_attrs[count] = NULL;
1090 count = 0;
1091 SETUP_END_DEV_ATTRIBUTE(end_dev_ready_led_meaning);
1092 SETUP_END_DEV_ATTRIBUTE(end_dev_I_T_nexus_loss_timeout);
1093 SETUP_END_DEV_ATTRIBUTE(end_dev_initiator_response_timeout);
1094 i->end_dev_attrs[count] = NULL;
1096 count = 0;
1097 SETUP_EXPANDER_ATTRIBUTE(vendor_id);
1098 SETUP_EXPANDER_ATTRIBUTE(product_id);
1099 SETUP_EXPANDER_ATTRIBUTE(product_rev);
1100 SETUP_EXPANDER_ATTRIBUTE(component_vendor_id);
1101 SETUP_EXPANDER_ATTRIBUTE(component_id);
1102 SETUP_EXPANDER_ATTRIBUTE(component_revision_id);
1103 SETUP_EXPANDER_ATTRIBUTE(level);
1104 i->expander_attrs[count] = NULL;
1106 return &i->t;
1108 EXPORT_SYMBOL(sas_attach_transport);
1111 * sas_release_transport -- release SAS transport template instance
1112 * @t: transport template instance
1114 void sas_release_transport(struct scsi_transport_template *t)
1116 struct sas_internal *i = to_sas_internal(t);
1118 transport_container_unregister(&i->t.host_attrs);
1119 transport_container_unregister(&i->phy_attr_cont);
1120 transport_container_unregister(&i->rphy_attr_cont);
1121 transport_container_unregister(&i->end_dev_attr_cont);
1122 transport_container_unregister(&i->expander_attr_cont);
1124 kfree(i);
1126 EXPORT_SYMBOL(sas_release_transport);
1128 static __init int sas_transport_init(void)
1130 int error;
1132 error = transport_class_register(&sas_host_class);
1133 if (error)
1134 goto out;
1135 error = transport_class_register(&sas_phy_class);
1136 if (error)
1137 goto out_unregister_transport;
1138 error = transport_class_register(&sas_rphy_class);
1139 if (error)
1140 goto out_unregister_phy;
1141 error = transport_class_register(&sas_end_dev_class);
1142 if (error)
1143 goto out_unregister_rphy;
1144 error = transport_class_register(&sas_expander_class);
1145 if (error)
1146 goto out_unregister_end_dev;
1148 return 0;
1150 out_unregister_end_dev:
1151 transport_class_unregister(&sas_end_dev_class);
1152 out_unregister_rphy:
1153 transport_class_unregister(&sas_rphy_class);
1154 out_unregister_phy:
1155 transport_class_unregister(&sas_phy_class);
1156 out_unregister_transport:
1157 transport_class_unregister(&sas_host_class);
1158 out:
1159 return error;
1163 static void __exit sas_transport_exit(void)
1165 transport_class_unregister(&sas_host_class);
1166 transport_class_unregister(&sas_phy_class);
1167 transport_class_unregister(&sas_rphy_class);
1168 transport_class_unregister(&sas_end_dev_class);
1169 transport_class_unregister(&sas_expander_class);
1172 MODULE_AUTHOR("Christoph Hellwig");
1173 MODULE_DESCRIPTION("SAS Transphy Attributes");
1174 MODULE_LICENSE("GPL");
1176 module_init(sas_transport_init);
1177 module_exit(sas_transport_exit);