Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1 | /* |
Christoph Hellwig | a012564 | 2006-02-16 13:31:47 +0100 | [diff] [blame] | 2 | * Copyright (C) 2005-2006 Dell Inc. |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 3 | * 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, |
| 9 | * and various sysfs attributes to expose these topologies and managment |
| 10 | * 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 Viro | f6a5703 | 2006-10-18 01:47:25 -0400 | [diff] [blame] | 28 | #include <linux/jiffies.h> |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 29 | #include <linux/err.h> |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 30 | #include <linux/slab.h> |
| 31 | #include <linux/string.h> |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 32 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 33 | #include <scsi/scsi.h> |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 34 | #include <scsi/scsi_device.h> |
| 35 | #include <scsi/scsi_host.h> |
| 36 | #include <scsi/scsi_transport.h> |
| 37 | #include <scsi/scsi_transport_sas.h> |
| 38 | |
James Bottomley | d6159c1 | 2006-03-27 16:45:34 -0600 | [diff] [blame] | 39 | #include "scsi_sas_internal.h" |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 40 | struct sas_host_attrs { |
| 41 | struct list_head rphy_list; |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 42 | struct mutex lock; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 43 | u32 next_target_id; |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 44 | u32 next_expander_id; |
James Bottomley | c9fefeb | 2006-07-02 11:10:18 -0500 | [diff] [blame] | 45 | int next_port_id; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 46 | }; |
| 47 | #define to_sas_host_attrs(host) ((struct sas_host_attrs *)(host)->shost_data) |
| 48 | |
| 49 | |
| 50 | /* |
| 51 | * Hack to allow attributes of the same name in different objects. |
| 52 | */ |
| 53 | #define SAS_CLASS_DEVICE_ATTR(_prefix,_name,_mode,_show,_store) \ |
| 54 | struct class_device_attribute class_device_attr_##_prefix##_##_name = \ |
| 55 | __ATTR(_name,_mode,_show,_store) |
| 56 | |
| 57 | |
| 58 | /* |
| 59 | * Pretty printing helpers |
| 60 | */ |
| 61 | |
| 62 | #define sas_bitfield_name_match(title, table) \ |
| 63 | static ssize_t \ |
| 64 | get_sas_##title##_names(u32 table_key, char *buf) \ |
| 65 | { \ |
| 66 | char *prefix = ""; \ |
| 67 | ssize_t len = 0; \ |
| 68 | int i; \ |
| 69 | \ |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 70 | for (i = 0; i < ARRAY_SIZE(table); i++) { \ |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 71 | if (table[i].value & table_key) { \ |
| 72 | len += sprintf(buf + len, "%s%s", \ |
| 73 | prefix, table[i].name); \ |
| 74 | prefix = ", "; \ |
| 75 | } \ |
| 76 | } \ |
| 77 | len += sprintf(buf + len, "\n"); \ |
| 78 | return len; \ |
| 79 | } |
| 80 | |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 81 | #define sas_bitfield_name_set(title, table) \ |
| 82 | static ssize_t \ |
| 83 | set_sas_##title##_names(u32 *table_key, const char *buf) \ |
| 84 | { \ |
| 85 | ssize_t len = 0; \ |
| 86 | int i; \ |
| 87 | \ |
| 88 | for (i = 0; i < ARRAY_SIZE(table); i++) { \ |
| 89 | len = strlen(table[i].name); \ |
| 90 | if (strncmp(buf, table[i].name, len) == 0 && \ |
| 91 | (buf[len] == '\n' || buf[len] == '\0')) { \ |
| 92 | *table_key = table[i].value; \ |
| 93 | return 0; \ |
| 94 | } \ |
| 95 | } \ |
| 96 | return -EINVAL; \ |
| 97 | } |
| 98 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 99 | #define sas_bitfield_name_search(title, table) \ |
| 100 | static ssize_t \ |
| 101 | get_sas_##title##_names(u32 table_key, char *buf) \ |
| 102 | { \ |
| 103 | ssize_t len = 0; \ |
| 104 | int i; \ |
| 105 | \ |
Tobias Klauser | 6391a11 | 2006-06-08 22:23:48 -0700 | [diff] [blame] | 106 | for (i = 0; i < ARRAY_SIZE(table); i++) { \ |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 107 | if (table[i].value == table_key) { \ |
| 108 | len += sprintf(buf + len, "%s", \ |
| 109 | table[i].name); \ |
| 110 | break; \ |
| 111 | } \ |
| 112 | } \ |
| 113 | len += sprintf(buf + len, "\n"); \ |
| 114 | return len; \ |
| 115 | } |
| 116 | |
| 117 | static struct { |
| 118 | u32 value; |
| 119 | char *name; |
| 120 | } sas_device_type_names[] = { |
| 121 | { SAS_PHY_UNUSED, "unused" }, |
| 122 | { SAS_END_DEVICE, "end device" }, |
| 123 | { SAS_EDGE_EXPANDER_DEVICE, "edge expander" }, |
| 124 | { SAS_FANOUT_EXPANDER_DEVICE, "fanout expander" }, |
| 125 | }; |
| 126 | sas_bitfield_name_search(device_type, sas_device_type_names) |
| 127 | |
| 128 | |
| 129 | static struct { |
| 130 | u32 value; |
| 131 | char *name; |
| 132 | } sas_protocol_names[] = { |
| 133 | { SAS_PROTOCOL_SATA, "sata" }, |
| 134 | { SAS_PROTOCOL_SMP, "smp" }, |
| 135 | { SAS_PROTOCOL_STP, "stp" }, |
| 136 | { SAS_PROTOCOL_SSP, "ssp" }, |
| 137 | }; |
| 138 | sas_bitfield_name_match(protocol, sas_protocol_names) |
| 139 | |
| 140 | static struct { |
| 141 | u32 value; |
| 142 | char *name; |
| 143 | } sas_linkspeed_names[] = { |
| 144 | { SAS_LINK_RATE_UNKNOWN, "Unknown" }, |
| 145 | { SAS_PHY_DISABLED, "Phy disabled" }, |
| 146 | { SAS_LINK_RATE_FAILED, "Link Rate failed" }, |
| 147 | { SAS_SATA_SPINUP_HOLD, "Spin-up hold" }, |
| 148 | { SAS_LINK_RATE_1_5_GBPS, "1.5 Gbit" }, |
| 149 | { SAS_LINK_RATE_3_0_GBPS, "3.0 Gbit" }, |
James Bottomley | 7e6dff6 | 2006-03-02 14:12:56 -0600 | [diff] [blame] | 150 | { SAS_LINK_RATE_6_0_GBPS, "6.0 Gbit" }, |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 151 | }; |
| 152 | sas_bitfield_name_search(linkspeed, sas_linkspeed_names) |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 153 | sas_bitfield_name_set(linkspeed, sas_linkspeed_names) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 154 | |
| 155 | /* |
| 156 | * SAS host attributes |
| 157 | */ |
| 158 | |
James Bottomley | 37be6ee | 2005-09-09 18:38:27 -0500 | [diff] [blame] | 159 | static int sas_host_setup(struct transport_container *tc, struct device *dev, |
| 160 | struct class_device *cdev) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 161 | { |
| 162 | struct Scsi_Host *shost = dev_to_shost(dev); |
| 163 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 164 | |
| 165 | INIT_LIST_HEAD(&sas_host->rphy_list); |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 166 | mutex_init(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 167 | sas_host->next_target_id = 0; |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 168 | sas_host->next_expander_id = 0; |
James Bottomley | c9fefeb | 2006-07-02 11:10:18 -0500 | [diff] [blame] | 169 | sas_host->next_port_id = 0; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | static DECLARE_TRANSPORT_CLASS(sas_host_class, |
| 174 | "sas_host", sas_host_setup, NULL, NULL); |
| 175 | |
| 176 | static int sas_host_match(struct attribute_container *cont, |
| 177 | struct device *dev) |
| 178 | { |
| 179 | struct Scsi_Host *shost; |
| 180 | struct sas_internal *i; |
| 181 | |
| 182 | if (!scsi_is_host_device(dev)) |
| 183 | return 0; |
| 184 | shost = dev_to_shost(dev); |
| 185 | |
| 186 | if (!shost->transportt) |
| 187 | return 0; |
| 188 | if (shost->transportt->host_attrs.ac.class != |
| 189 | &sas_host_class.class) |
| 190 | return 0; |
| 191 | |
| 192 | i = to_sas_internal(shost->transportt); |
| 193 | return &i->t.host_attrs.ac == cont; |
| 194 | } |
| 195 | |
| 196 | static int do_sas_phy_delete(struct device *dev, void *data) |
| 197 | { |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 198 | int pass = (int)(unsigned long)data; |
| 199 | |
| 200 | if (pass == 0 && scsi_is_sas_port(dev)) |
| 201 | sas_port_delete(dev_to_sas_port(dev)); |
| 202 | else if (pass == 1 && scsi_is_sas_phy(dev)) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 203 | sas_phy_delete(dev_to_phy(dev)); |
| 204 | return 0; |
| 205 | } |
| 206 | |
| 207 | /** |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 208 | * sas_remove_children -- tear down a devices SAS data structures |
| 209 | * @dev: device belonging to the sas object |
| 210 | * |
| 211 | * Removes all SAS PHYs and remote PHYs for a given object |
| 212 | */ |
| 213 | void sas_remove_children(struct device *dev) |
| 214 | { |
| 215 | device_for_each_child(dev, (void *)0, do_sas_phy_delete); |
| 216 | device_for_each_child(dev, (void *)1, do_sas_phy_delete); |
| 217 | } |
| 218 | EXPORT_SYMBOL(sas_remove_children); |
| 219 | |
| 220 | /** |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 221 | * sas_remove_host -- tear down a Scsi_Host's SAS data structures |
| 222 | * @shost: Scsi Host that is torn down |
| 223 | * |
| 224 | * Removes all SAS PHYs and remote PHYs for a given Scsi_Host. |
| 225 | * Must be called just before scsi_remove_host for SAS HBAs. |
| 226 | */ |
| 227 | void sas_remove_host(struct Scsi_Host *shost) |
| 228 | { |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 229 | sas_remove_children(&shost->shost_gendev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 230 | } |
| 231 | EXPORT_SYMBOL(sas_remove_host); |
| 232 | |
| 233 | |
| 234 | /* |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 235 | * SAS Phy attributes |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 236 | */ |
| 237 | |
| 238 | #define sas_phy_show_simple(field, name, format_string, cast) \ |
| 239 | static ssize_t \ |
| 240 | show_sas_phy_##name(struct class_device *cdev, char *buf) \ |
| 241 | { \ |
| 242 | struct sas_phy *phy = transport_class_to_phy(cdev); \ |
| 243 | \ |
| 244 | return snprintf(buf, 20, format_string, cast phy->field); \ |
| 245 | } |
| 246 | |
| 247 | #define sas_phy_simple_attr(field, name, format_string, type) \ |
| 248 | sas_phy_show_simple(field, name, format_string, (type)) \ |
| 249 | static CLASS_DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL) |
| 250 | |
| 251 | #define sas_phy_show_protocol(field, name) \ |
| 252 | static ssize_t \ |
| 253 | show_sas_phy_##name(struct class_device *cdev, char *buf) \ |
| 254 | { \ |
| 255 | struct sas_phy *phy = transport_class_to_phy(cdev); \ |
| 256 | \ |
| 257 | if (!phy->field) \ |
| 258 | return snprintf(buf, 20, "none\n"); \ |
| 259 | return get_sas_protocol_names(phy->field, buf); \ |
| 260 | } |
| 261 | |
| 262 | #define sas_phy_protocol_attr(field, name) \ |
| 263 | sas_phy_show_protocol(field, name) \ |
| 264 | static CLASS_DEVICE_ATTR(name, S_IRUGO, show_sas_phy_##name, NULL) |
| 265 | |
| 266 | #define sas_phy_show_linkspeed(field) \ |
| 267 | static ssize_t \ |
| 268 | show_sas_phy_##field(struct class_device *cdev, char *buf) \ |
| 269 | { \ |
| 270 | struct sas_phy *phy = transport_class_to_phy(cdev); \ |
| 271 | \ |
| 272 | return get_sas_linkspeed_names(phy->field, buf); \ |
| 273 | } |
| 274 | |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 275 | /* Fudge to tell if we're minimum or maximum */ |
| 276 | #define sas_phy_store_linkspeed(field) \ |
| 277 | static ssize_t \ |
| 278 | store_sas_phy_##field(struct class_device *cdev, const char *buf, \ |
| 279 | size_t count) \ |
| 280 | { \ |
| 281 | struct sas_phy *phy = transport_class_to_phy(cdev); \ |
| 282 | struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \ |
| 283 | struct sas_internal *i = to_sas_internal(shost->transportt); \ |
| 284 | u32 value; \ |
| 285 | struct sas_phy_linkrates rates = {0}; \ |
| 286 | int error; \ |
| 287 | \ |
| 288 | error = set_sas_linkspeed_names(&value, buf); \ |
| 289 | if (error) \ |
| 290 | return error; \ |
| 291 | rates.field = value; \ |
| 292 | error = i->f->set_phy_speed(phy, &rates); \ |
| 293 | \ |
| 294 | return error ? error : count; \ |
| 295 | } |
| 296 | |
| 297 | #define sas_phy_linkspeed_rw_attr(field) \ |
| 298 | sas_phy_show_linkspeed(field) \ |
| 299 | sas_phy_store_linkspeed(field) \ |
| 300 | static CLASS_DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, \ |
| 301 | store_sas_phy_##field) |
| 302 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 303 | #define sas_phy_linkspeed_attr(field) \ |
| 304 | sas_phy_show_linkspeed(field) \ |
| 305 | static CLASS_DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL) |
| 306 | |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 307 | |
Christoph Hellwig | c3ee74c | 2005-09-19 21:59:42 +0200 | [diff] [blame] | 308 | #define sas_phy_show_linkerror(field) \ |
| 309 | static ssize_t \ |
| 310 | show_sas_phy_##field(struct class_device *cdev, char *buf) \ |
| 311 | { \ |
| 312 | struct sas_phy *phy = transport_class_to_phy(cdev); \ |
| 313 | struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); \ |
| 314 | struct sas_internal *i = to_sas_internal(shost->transportt); \ |
| 315 | int error; \ |
| 316 | \ |
James Bottomley | dd9fbb52 | 2006-03-02 16:01:31 -0600 | [diff] [blame] | 317 | error = i->f->get_linkerrors ? i->f->get_linkerrors(phy) : 0; \ |
Christoph Hellwig | c3ee74c | 2005-09-19 21:59:42 +0200 | [diff] [blame] | 318 | if (error) \ |
| 319 | return error; \ |
| 320 | return snprintf(buf, 20, "%u\n", phy->field); \ |
| 321 | } |
| 322 | |
| 323 | #define sas_phy_linkerror_attr(field) \ |
| 324 | sas_phy_show_linkerror(field) \ |
| 325 | static CLASS_DEVICE_ATTR(field, S_IRUGO, show_sas_phy_##field, NULL) |
| 326 | |
| 327 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 328 | static ssize_t |
| 329 | show_sas_device_type(struct class_device *cdev, char *buf) |
| 330 | { |
| 331 | struct sas_phy *phy = transport_class_to_phy(cdev); |
| 332 | |
| 333 | if (!phy->identify.device_type) |
| 334 | return snprintf(buf, 20, "none\n"); |
| 335 | return get_sas_device_type_names(phy->identify.device_type, buf); |
| 336 | } |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 337 | static CLASS_DEVICE_ATTR(device_type, S_IRUGO, show_sas_device_type, NULL); |
| 338 | |
Darrick J. Wong | acbf167 | 2007-01-11 14:14:57 -0800 | [diff] [blame] | 339 | static ssize_t do_sas_phy_enable(struct class_device *cdev, |
| 340 | size_t count, int enable) |
| 341 | { |
| 342 | struct sas_phy *phy = transport_class_to_phy(cdev); |
| 343 | struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); |
| 344 | struct sas_internal *i = to_sas_internal(shost->transportt); |
| 345 | int error; |
| 346 | |
| 347 | error = i->f->phy_enable(phy, enable); |
| 348 | if (error) |
| 349 | return error; |
| 350 | phy->enabled = enable; |
| 351 | return count; |
| 352 | }; |
| 353 | |
| 354 | static ssize_t store_sas_phy_enable(struct class_device *cdev, |
| 355 | const char *buf, size_t count) |
| 356 | { |
| 357 | if (count < 1) |
| 358 | return -EINVAL; |
| 359 | |
| 360 | switch (buf[0]) { |
| 361 | case '0': |
| 362 | do_sas_phy_enable(cdev, count, 0); |
| 363 | break; |
| 364 | case '1': |
| 365 | do_sas_phy_enable(cdev, count, 1); |
| 366 | break; |
| 367 | default: |
| 368 | return -EINVAL; |
| 369 | } |
| 370 | |
| 371 | return count; |
| 372 | } |
| 373 | |
| 374 | static ssize_t show_sas_phy_enable(struct class_device *cdev, char *buf) |
| 375 | { |
| 376 | struct sas_phy *phy = transport_class_to_phy(cdev); |
| 377 | |
| 378 | return snprintf(buf, 20, "%d", phy->enabled); |
| 379 | } |
| 380 | |
| 381 | static CLASS_DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, show_sas_phy_enable, |
| 382 | store_sas_phy_enable); |
| 383 | |
Christoph Hellwig | 07ba3a9 | 2005-10-19 20:01:31 +0200 | [diff] [blame] | 384 | static ssize_t do_sas_phy_reset(struct class_device *cdev, |
| 385 | size_t count, int hard_reset) |
| 386 | { |
| 387 | struct sas_phy *phy = transport_class_to_phy(cdev); |
| 388 | struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); |
| 389 | struct sas_internal *i = to_sas_internal(shost->transportt); |
| 390 | int error; |
| 391 | |
Christoph Hellwig | 07ba3a9 | 2005-10-19 20:01:31 +0200 | [diff] [blame] | 392 | error = i->f->phy_reset(phy, hard_reset); |
| 393 | if (error) |
| 394 | return error; |
| 395 | return count; |
| 396 | }; |
| 397 | |
| 398 | static ssize_t store_sas_link_reset(struct class_device *cdev, |
| 399 | const char *buf, size_t count) |
| 400 | { |
| 401 | return do_sas_phy_reset(cdev, count, 0); |
| 402 | } |
| 403 | static CLASS_DEVICE_ATTR(link_reset, S_IWUSR, NULL, store_sas_link_reset); |
| 404 | |
| 405 | static ssize_t store_sas_hard_reset(struct class_device *cdev, |
| 406 | const char *buf, size_t count) |
| 407 | { |
| 408 | return do_sas_phy_reset(cdev, count, 1); |
| 409 | } |
| 410 | static CLASS_DEVICE_ATTR(hard_reset, S_IWUSR, NULL, store_sas_hard_reset); |
| 411 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 412 | sas_phy_protocol_attr(identify.initiator_port_protocols, |
| 413 | initiator_port_protocols); |
| 414 | sas_phy_protocol_attr(identify.target_port_protocols, |
| 415 | target_port_protocols); |
| 416 | sas_phy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n", |
| 417 | unsigned long long); |
| 418 | sas_phy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8); |
James Bottomley | c9fefeb | 2006-07-02 11:10:18 -0500 | [diff] [blame] | 419 | //sas_phy_simple_attr(port_identifier, port_identifier, "%d\n", int); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 420 | sas_phy_linkspeed_attr(negotiated_linkrate); |
| 421 | sas_phy_linkspeed_attr(minimum_linkrate_hw); |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 422 | sas_phy_linkspeed_rw_attr(minimum_linkrate); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 423 | sas_phy_linkspeed_attr(maximum_linkrate_hw); |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 424 | sas_phy_linkspeed_rw_attr(maximum_linkrate); |
Christoph Hellwig | c3ee74c | 2005-09-19 21:59:42 +0200 | [diff] [blame] | 425 | sas_phy_linkerror_attr(invalid_dword_count); |
| 426 | sas_phy_linkerror_attr(running_disparity_error_count); |
| 427 | sas_phy_linkerror_attr(loss_of_dword_sync_count); |
| 428 | sas_phy_linkerror_attr(phy_reset_problem_count); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 429 | |
| 430 | |
| 431 | static DECLARE_TRANSPORT_CLASS(sas_phy_class, |
| 432 | "sas_phy", NULL, NULL, NULL); |
| 433 | |
| 434 | static int sas_phy_match(struct attribute_container *cont, struct device *dev) |
| 435 | { |
| 436 | struct Scsi_Host *shost; |
| 437 | struct sas_internal *i; |
| 438 | |
| 439 | if (!scsi_is_sas_phy(dev)) |
| 440 | return 0; |
| 441 | shost = dev_to_shost(dev->parent); |
| 442 | |
| 443 | if (!shost->transportt) |
| 444 | return 0; |
| 445 | if (shost->transportt->host_attrs.ac.class != |
| 446 | &sas_host_class.class) |
| 447 | return 0; |
| 448 | |
| 449 | i = to_sas_internal(shost->transportt); |
| 450 | return &i->phy_attr_cont.ac == cont; |
| 451 | } |
| 452 | |
| 453 | static void sas_phy_release(struct device *dev) |
| 454 | { |
| 455 | struct sas_phy *phy = dev_to_phy(dev); |
| 456 | |
| 457 | put_device(dev->parent); |
| 458 | kfree(phy); |
| 459 | } |
| 460 | |
| 461 | /** |
| 462 | * sas_phy_alloc -- allocates and initialize a SAS PHY structure |
| 463 | * @parent: Parent device |
Moore, Eric | d99ca41 | 2006-01-26 16:20:02 -0700 | [diff] [blame] | 464 | * @number: Phy index |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 465 | * |
| 466 | * Allocates an SAS PHY structure. It will be added in the device tree |
| 467 | * below the device specified by @parent, which has to be either a Scsi_Host |
| 468 | * or sas_rphy. |
| 469 | * |
| 470 | * Returns: |
| 471 | * SAS PHY allocated or %NULL if the allocation failed. |
| 472 | */ |
| 473 | struct sas_phy *sas_phy_alloc(struct device *parent, int number) |
| 474 | { |
| 475 | struct Scsi_Host *shost = dev_to_shost(parent); |
| 476 | struct sas_phy *phy; |
| 477 | |
Jes Sorensen | 24669f75 | 2006-01-16 10:31:18 -0500 | [diff] [blame] | 478 | phy = kzalloc(sizeof(*phy), GFP_KERNEL); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 479 | if (!phy) |
| 480 | return NULL; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 481 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 482 | phy->number = number; |
Darrick J. Wong | acbf167 | 2007-01-11 14:14:57 -0800 | [diff] [blame] | 483 | phy->enabled = 1; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 484 | |
| 485 | device_initialize(&phy->dev); |
| 486 | phy->dev.parent = get_device(parent); |
| 487 | phy->dev.release = sas_phy_release; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 488 | INIT_LIST_HEAD(&phy->port_siblings); |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 489 | if (scsi_is_sas_expander_device(parent)) { |
| 490 | struct sas_rphy *rphy = dev_to_rphy(parent); |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 491 | sprintf(phy->dev.bus_id, "phy-%d:%d:%d", shost->host_no, |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 492 | rphy->scsi_target_id, number); |
| 493 | } else |
| 494 | sprintf(phy->dev.bus_id, "phy-%d:%d", shost->host_no, number); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 495 | |
| 496 | transport_setup_device(&phy->dev); |
| 497 | |
| 498 | return phy; |
| 499 | } |
| 500 | EXPORT_SYMBOL(sas_phy_alloc); |
| 501 | |
| 502 | /** |
| 503 | * sas_phy_add -- add a SAS PHY to the device hierachy |
| 504 | * @phy: The PHY to be added |
| 505 | * |
| 506 | * Publishes a SAS PHY to the rest of the system. |
| 507 | */ |
| 508 | int sas_phy_add(struct sas_phy *phy) |
| 509 | { |
| 510 | int error; |
| 511 | |
| 512 | error = device_add(&phy->dev); |
| 513 | if (!error) { |
| 514 | transport_add_device(&phy->dev); |
| 515 | transport_configure_device(&phy->dev); |
| 516 | } |
| 517 | |
| 518 | return error; |
| 519 | } |
| 520 | EXPORT_SYMBOL(sas_phy_add); |
| 521 | |
| 522 | /** |
| 523 | * sas_phy_free -- free a SAS PHY |
| 524 | * @phy: SAS PHY to free |
| 525 | * |
| 526 | * Frees the specified SAS PHY. |
| 527 | * |
| 528 | * Note: |
| 529 | * This function must only be called on a PHY that has not |
| 530 | * sucessfully been added using sas_phy_add(). |
| 531 | */ |
| 532 | void sas_phy_free(struct sas_phy *phy) |
| 533 | { |
| 534 | transport_destroy_device(&phy->dev); |
Mike Anderson | 92aab64 | 2006-03-27 09:37:28 -0800 | [diff] [blame] | 535 | put_device(&phy->dev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 536 | } |
| 537 | EXPORT_SYMBOL(sas_phy_free); |
| 538 | |
| 539 | /** |
| 540 | * sas_phy_delete -- remove SAS PHY |
| 541 | * @phy: SAS PHY to remove |
| 542 | * |
| 543 | * Removes the specified SAS PHY. If the SAS PHY has an |
| 544 | * associated remote PHY it is removed before. |
| 545 | */ |
| 546 | void |
| 547 | sas_phy_delete(struct sas_phy *phy) |
| 548 | { |
| 549 | struct device *dev = &phy->dev; |
| 550 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 551 | /* this happens if the phy is still part of a port when deleted */ |
| 552 | BUG_ON(!list_empty(&phy->port_siblings)); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 553 | |
| 554 | transport_remove_device(dev); |
| 555 | device_del(dev); |
| 556 | transport_destroy_device(dev); |
Mike Anderson | 92aab64 | 2006-03-27 09:37:28 -0800 | [diff] [blame] | 557 | put_device(dev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 558 | } |
| 559 | EXPORT_SYMBOL(sas_phy_delete); |
| 560 | |
| 561 | /** |
| 562 | * scsi_is_sas_phy -- check if a struct device represents a SAS PHY |
| 563 | * @dev: device to check |
| 564 | * |
| 565 | * Returns: |
| 566 | * %1 if the device represents a SAS PHY, %0 else |
| 567 | */ |
| 568 | int scsi_is_sas_phy(const struct device *dev) |
| 569 | { |
| 570 | return dev->release == sas_phy_release; |
| 571 | } |
| 572 | EXPORT_SYMBOL(scsi_is_sas_phy); |
| 573 | |
| 574 | /* |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 575 | * SAS Port attributes |
| 576 | */ |
| 577 | #define sas_port_show_simple(field, name, format_string, cast) \ |
| 578 | static ssize_t \ |
| 579 | show_sas_port_##name(struct class_device *cdev, char *buf) \ |
| 580 | { \ |
| 581 | struct sas_port *port = transport_class_to_sas_port(cdev); \ |
| 582 | \ |
| 583 | return snprintf(buf, 20, format_string, cast port->field); \ |
| 584 | } |
| 585 | |
| 586 | #define sas_port_simple_attr(field, name, format_string, type) \ |
| 587 | sas_port_show_simple(field, name, format_string, (type)) \ |
| 588 | static CLASS_DEVICE_ATTR(name, S_IRUGO, show_sas_port_##name, NULL) |
| 589 | |
| 590 | sas_port_simple_attr(num_phys, num_phys, "%d\n", int); |
| 591 | |
| 592 | static DECLARE_TRANSPORT_CLASS(sas_port_class, |
| 593 | "sas_port", NULL, NULL, NULL); |
| 594 | |
| 595 | static int sas_port_match(struct attribute_container *cont, struct device *dev) |
| 596 | { |
| 597 | struct Scsi_Host *shost; |
| 598 | struct sas_internal *i; |
| 599 | |
| 600 | if (!scsi_is_sas_port(dev)) |
| 601 | return 0; |
| 602 | shost = dev_to_shost(dev->parent); |
| 603 | |
| 604 | if (!shost->transportt) |
| 605 | return 0; |
| 606 | if (shost->transportt->host_attrs.ac.class != |
| 607 | &sas_host_class.class) |
| 608 | return 0; |
| 609 | |
| 610 | i = to_sas_internal(shost->transportt); |
| 611 | return &i->port_attr_cont.ac == cont; |
| 612 | } |
| 613 | |
| 614 | |
| 615 | static void sas_port_release(struct device *dev) |
| 616 | { |
| 617 | struct sas_port *port = dev_to_sas_port(dev); |
| 618 | |
| 619 | BUG_ON(!list_empty(&port->phy_list)); |
| 620 | |
| 621 | put_device(dev->parent); |
| 622 | kfree(port); |
| 623 | } |
| 624 | |
| 625 | static void sas_port_create_link(struct sas_port *port, |
| 626 | struct sas_phy *phy) |
| 627 | { |
| 628 | sysfs_create_link(&port->dev.kobj, &phy->dev.kobj, phy->dev.bus_id); |
| 629 | sysfs_create_link(&phy->dev.kobj, &port->dev.kobj, "port"); |
| 630 | } |
| 631 | |
| 632 | static void sas_port_delete_link(struct sas_port *port, |
| 633 | struct sas_phy *phy) |
| 634 | { |
| 635 | sysfs_remove_link(&port->dev.kobj, phy->dev.bus_id); |
| 636 | sysfs_remove_link(&phy->dev.kobj, "port"); |
| 637 | } |
| 638 | |
| 639 | /** sas_port_alloc - allocate and initialize a SAS port structure |
| 640 | * |
| 641 | * @parent: parent device |
| 642 | * @port_id: port number |
| 643 | * |
| 644 | * Allocates a SAS port structure. It will be added to the device tree |
| 645 | * below the device specified by @parent which must be either a Scsi_Host |
| 646 | * or a sas_expander_device. |
| 647 | * |
| 648 | * Returns %NULL on error |
| 649 | */ |
| 650 | struct sas_port *sas_port_alloc(struct device *parent, int port_id) |
| 651 | { |
| 652 | struct Scsi_Host *shost = dev_to_shost(parent); |
| 653 | struct sas_port *port; |
| 654 | |
| 655 | port = kzalloc(sizeof(*port), GFP_KERNEL); |
| 656 | if (!port) |
| 657 | return NULL; |
| 658 | |
| 659 | port->port_identifier = port_id; |
| 660 | |
| 661 | device_initialize(&port->dev); |
| 662 | |
| 663 | port->dev.parent = get_device(parent); |
| 664 | port->dev.release = sas_port_release; |
| 665 | |
| 666 | mutex_init(&port->phy_list_mutex); |
| 667 | INIT_LIST_HEAD(&port->phy_list); |
| 668 | |
| 669 | if (scsi_is_sas_expander_device(parent)) { |
| 670 | struct sas_rphy *rphy = dev_to_rphy(parent); |
| 671 | sprintf(port->dev.bus_id, "port-%d:%d:%d", shost->host_no, |
| 672 | rphy->scsi_target_id, port->port_identifier); |
| 673 | } else |
| 674 | sprintf(port->dev.bus_id, "port-%d:%d", shost->host_no, |
| 675 | port->port_identifier); |
| 676 | |
| 677 | transport_setup_device(&port->dev); |
| 678 | |
| 679 | return port; |
| 680 | } |
| 681 | EXPORT_SYMBOL(sas_port_alloc); |
| 682 | |
James Bottomley | c9fefeb | 2006-07-02 11:10:18 -0500 | [diff] [blame] | 683 | /** sas_port_alloc_num - allocate and initialize a SAS port structure |
| 684 | * |
| 685 | * @parent: parent device |
| 686 | * |
| 687 | * Allocates a SAS port structure and a number to go with it. This |
| 688 | * interface is really for adapters where the port number has no |
| 689 | * meansing, so the sas class should manage them. It will be added to |
| 690 | * the device tree below the device specified by @parent which must be |
| 691 | * either a Scsi_Host or a sas_expander_device. |
| 692 | * |
| 693 | * Returns %NULL on error |
| 694 | */ |
| 695 | struct sas_port *sas_port_alloc_num(struct device *parent) |
| 696 | { |
| 697 | int index; |
| 698 | struct Scsi_Host *shost = dev_to_shost(parent); |
| 699 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 700 | |
| 701 | /* FIXME: use idr for this eventually */ |
| 702 | mutex_lock(&sas_host->lock); |
| 703 | if (scsi_is_sas_expander_device(parent)) { |
| 704 | struct sas_rphy *rphy = dev_to_rphy(parent); |
| 705 | struct sas_expander_device *exp = rphy_to_expander_device(rphy); |
| 706 | |
| 707 | index = exp->next_port_id++; |
| 708 | } else |
| 709 | index = sas_host->next_port_id++; |
| 710 | mutex_unlock(&sas_host->lock); |
| 711 | return sas_port_alloc(parent, index); |
| 712 | } |
| 713 | EXPORT_SYMBOL(sas_port_alloc_num); |
| 714 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 715 | /** |
| 716 | * sas_port_add - add a SAS port to the device hierarchy |
| 717 | * |
| 718 | * @port: port to be added |
| 719 | * |
| 720 | * publishes a port to the rest of the system |
| 721 | */ |
| 722 | int sas_port_add(struct sas_port *port) |
| 723 | { |
| 724 | int error; |
| 725 | |
| 726 | /* No phys should be added until this is made visible */ |
| 727 | BUG_ON(!list_empty(&port->phy_list)); |
| 728 | |
| 729 | error = device_add(&port->dev); |
| 730 | |
| 731 | if (error) |
| 732 | return error; |
| 733 | |
| 734 | transport_add_device(&port->dev); |
| 735 | transport_configure_device(&port->dev); |
| 736 | |
| 737 | return 0; |
| 738 | } |
| 739 | EXPORT_SYMBOL(sas_port_add); |
| 740 | |
| 741 | /** |
| 742 | * sas_port_free -- free a SAS PORT |
| 743 | * @port: SAS PORT to free |
| 744 | * |
| 745 | * Frees the specified SAS PORT. |
| 746 | * |
| 747 | * Note: |
| 748 | * This function must only be called on a PORT that has not |
| 749 | * sucessfully been added using sas_port_add(). |
| 750 | */ |
| 751 | void sas_port_free(struct sas_port *port) |
| 752 | { |
| 753 | transport_destroy_device(&port->dev); |
| 754 | put_device(&port->dev); |
| 755 | } |
| 756 | EXPORT_SYMBOL(sas_port_free); |
| 757 | |
| 758 | /** |
| 759 | * sas_port_delete -- remove SAS PORT |
| 760 | * @port: SAS PORT to remove |
| 761 | * |
| 762 | * Removes the specified SAS PORT. If the SAS PORT has an |
| 763 | * associated phys, unlink them from the port as well. |
| 764 | */ |
| 765 | void sas_port_delete(struct sas_port *port) |
| 766 | { |
| 767 | struct device *dev = &port->dev; |
| 768 | struct sas_phy *phy, *tmp_phy; |
| 769 | |
| 770 | if (port->rphy) { |
| 771 | sas_rphy_delete(port->rphy); |
| 772 | port->rphy = NULL; |
| 773 | } |
| 774 | |
| 775 | mutex_lock(&port->phy_list_mutex); |
| 776 | list_for_each_entry_safe(phy, tmp_phy, &port->phy_list, |
| 777 | port_siblings) { |
| 778 | sas_port_delete_link(port, phy); |
| 779 | list_del_init(&phy->port_siblings); |
| 780 | } |
| 781 | mutex_unlock(&port->phy_list_mutex); |
| 782 | |
James Bottomley | a0e1b6e | 2006-07-09 12:38:19 -0500 | [diff] [blame] | 783 | if (port->is_backlink) { |
| 784 | struct device *parent = port->dev.parent; |
| 785 | |
| 786 | sysfs_remove_link(&port->dev.kobj, parent->bus_id); |
| 787 | port->is_backlink = 0; |
| 788 | } |
| 789 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 790 | transport_remove_device(dev); |
| 791 | device_del(dev); |
| 792 | transport_destroy_device(dev); |
| 793 | put_device(dev); |
| 794 | } |
| 795 | EXPORT_SYMBOL(sas_port_delete); |
| 796 | |
| 797 | /** |
| 798 | * scsi_is_sas_port -- check if a struct device represents a SAS port |
| 799 | * @dev: device to check |
| 800 | * |
| 801 | * Returns: |
| 802 | * %1 if the device represents a SAS Port, %0 else |
| 803 | */ |
| 804 | int scsi_is_sas_port(const struct device *dev) |
| 805 | { |
| 806 | return dev->release == sas_port_release; |
| 807 | } |
| 808 | EXPORT_SYMBOL(scsi_is_sas_port); |
| 809 | |
| 810 | /** |
| 811 | * sas_port_add_phy - add another phy to a port to form a wide port |
| 812 | * @port: port to add the phy to |
| 813 | * @phy: phy to add |
| 814 | * |
| 815 | * When a port is initially created, it is empty (has no phys). All |
| 816 | * ports must have at least one phy to operated, and all wide ports |
| 817 | * must have at least two. The current code makes no difference |
| 818 | * between ports and wide ports, but the only object that can be |
| 819 | * connected to a remote device is a port, so ports must be formed on |
| 820 | * all devices with phys if they're connected to anything. |
| 821 | */ |
| 822 | void sas_port_add_phy(struct sas_port *port, struct sas_phy *phy) |
| 823 | { |
| 824 | mutex_lock(&port->phy_list_mutex); |
| 825 | if (unlikely(!list_empty(&phy->port_siblings))) { |
| 826 | /* make sure we're already on this port */ |
| 827 | struct sas_phy *tmp; |
| 828 | |
| 829 | list_for_each_entry(tmp, &port->phy_list, port_siblings) |
| 830 | if (tmp == phy) |
| 831 | break; |
| 832 | /* If this trips, you added a phy that was already |
| 833 | * part of a different port */ |
| 834 | if (unlikely(tmp != phy)) { |
| 835 | dev_printk(KERN_ERR, &port->dev, "trying to add phy %s fails: it's already part of another port\n", phy->dev.bus_id); |
| 836 | BUG(); |
| 837 | } |
| 838 | } else { |
| 839 | sas_port_create_link(port, phy); |
| 840 | list_add_tail(&phy->port_siblings, &port->phy_list); |
| 841 | port->num_phys++; |
| 842 | } |
| 843 | mutex_unlock(&port->phy_list_mutex); |
| 844 | } |
| 845 | EXPORT_SYMBOL(sas_port_add_phy); |
| 846 | |
| 847 | /** |
| 848 | * sas_port_delete_phy - remove a phy from a port or wide port |
| 849 | * @port: port to remove the phy from |
| 850 | * @phy: phy to remove |
| 851 | * |
| 852 | * This operation is used for tearing down ports again. It must be |
| 853 | * done to every port or wide port before calling sas_port_delete. |
| 854 | */ |
| 855 | void sas_port_delete_phy(struct sas_port *port, struct sas_phy *phy) |
| 856 | { |
| 857 | mutex_lock(&port->phy_list_mutex); |
| 858 | sas_port_delete_link(port, phy); |
| 859 | list_del_init(&phy->port_siblings); |
| 860 | port->num_phys--; |
| 861 | mutex_unlock(&port->phy_list_mutex); |
| 862 | } |
| 863 | EXPORT_SYMBOL(sas_port_delete_phy); |
| 864 | |
James Bottomley | a0e1b6e | 2006-07-09 12:38:19 -0500 | [diff] [blame] | 865 | void sas_port_mark_backlink(struct sas_port *port) |
| 866 | { |
| 867 | struct device *parent = port->dev.parent->parent->parent; |
| 868 | |
| 869 | if (port->is_backlink) |
| 870 | return; |
| 871 | port->is_backlink = 1; |
| 872 | sysfs_create_link(&port->dev.kobj, &parent->kobj, |
| 873 | parent->bus_id); |
| 874 | |
| 875 | } |
| 876 | EXPORT_SYMBOL(sas_port_mark_backlink); |
| 877 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 878 | /* |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 879 | * SAS remote PHY attributes. |
| 880 | */ |
| 881 | |
| 882 | #define sas_rphy_show_simple(field, name, format_string, cast) \ |
| 883 | static ssize_t \ |
| 884 | show_sas_rphy_##name(struct class_device *cdev, char *buf) \ |
| 885 | { \ |
| 886 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); \ |
| 887 | \ |
| 888 | return snprintf(buf, 20, format_string, cast rphy->field); \ |
| 889 | } |
| 890 | |
| 891 | #define sas_rphy_simple_attr(field, name, format_string, type) \ |
| 892 | sas_rphy_show_simple(field, name, format_string, (type)) \ |
| 893 | static SAS_CLASS_DEVICE_ATTR(rphy, name, S_IRUGO, \ |
| 894 | show_sas_rphy_##name, NULL) |
| 895 | |
| 896 | #define sas_rphy_show_protocol(field, name) \ |
| 897 | static ssize_t \ |
| 898 | show_sas_rphy_##name(struct class_device *cdev, char *buf) \ |
| 899 | { \ |
| 900 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); \ |
| 901 | \ |
| 902 | if (!rphy->field) \ |
| 903 | return snprintf(buf, 20, "none\n"); \ |
| 904 | return get_sas_protocol_names(rphy->field, buf); \ |
| 905 | } |
| 906 | |
| 907 | #define sas_rphy_protocol_attr(field, name) \ |
| 908 | sas_rphy_show_protocol(field, name) \ |
| 909 | static SAS_CLASS_DEVICE_ATTR(rphy, name, S_IRUGO, \ |
| 910 | show_sas_rphy_##name, NULL) |
| 911 | |
| 912 | static ssize_t |
| 913 | show_sas_rphy_device_type(struct class_device *cdev, char *buf) |
| 914 | { |
| 915 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); |
| 916 | |
| 917 | if (!rphy->identify.device_type) |
| 918 | return snprintf(buf, 20, "none\n"); |
| 919 | return get_sas_device_type_names( |
| 920 | rphy->identify.device_type, buf); |
| 921 | } |
| 922 | |
| 923 | static SAS_CLASS_DEVICE_ATTR(rphy, device_type, S_IRUGO, |
| 924 | show_sas_rphy_device_type, NULL); |
| 925 | |
Christoph Hellwig | a012564 | 2006-02-16 13:31:47 +0100 | [diff] [blame] | 926 | static ssize_t |
| 927 | show_sas_rphy_enclosure_identifier(struct class_device *cdev, char *buf) |
| 928 | { |
| 929 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); |
| 930 | struct sas_phy *phy = dev_to_phy(rphy->dev.parent); |
| 931 | struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); |
| 932 | struct sas_internal *i = to_sas_internal(shost->transportt); |
| 933 | u64 identifier; |
| 934 | int error; |
| 935 | |
| 936 | /* |
| 937 | * Only devices behind an expander are supported, because the |
| 938 | * enclosure identifier is a SMP feature. |
| 939 | */ |
James Bottomley | f4ad7b5 | 2006-08-25 13:48:18 -0500 | [diff] [blame] | 940 | if (scsi_is_sas_phy_local(phy)) |
Christoph Hellwig | a012564 | 2006-02-16 13:31:47 +0100 | [diff] [blame] | 941 | return -EINVAL; |
| 942 | |
| 943 | error = i->f->get_enclosure_identifier(rphy, &identifier); |
| 944 | if (error) |
| 945 | return error; |
| 946 | return sprintf(buf, "0x%llx\n", (unsigned long long)identifier); |
| 947 | } |
| 948 | |
| 949 | static SAS_CLASS_DEVICE_ATTR(rphy, enclosure_identifier, S_IRUGO, |
| 950 | show_sas_rphy_enclosure_identifier, NULL); |
| 951 | |
| 952 | static ssize_t |
| 953 | show_sas_rphy_bay_identifier(struct class_device *cdev, char *buf) |
| 954 | { |
| 955 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); |
| 956 | struct sas_phy *phy = dev_to_phy(rphy->dev.parent); |
| 957 | struct Scsi_Host *shost = dev_to_shost(phy->dev.parent); |
| 958 | struct sas_internal *i = to_sas_internal(shost->transportt); |
| 959 | int val; |
| 960 | |
James Bottomley | f4ad7b5 | 2006-08-25 13:48:18 -0500 | [diff] [blame] | 961 | if (scsi_is_sas_phy_local(phy)) |
Christoph Hellwig | a012564 | 2006-02-16 13:31:47 +0100 | [diff] [blame] | 962 | return -EINVAL; |
| 963 | |
| 964 | val = i->f->get_bay_identifier(rphy); |
| 965 | if (val < 0) |
| 966 | return val; |
| 967 | return sprintf(buf, "%d\n", val); |
| 968 | } |
| 969 | |
| 970 | static SAS_CLASS_DEVICE_ATTR(rphy, bay_identifier, S_IRUGO, |
| 971 | show_sas_rphy_bay_identifier, NULL); |
| 972 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 973 | sas_rphy_protocol_attr(identify.initiator_port_protocols, |
| 974 | initiator_port_protocols); |
| 975 | sas_rphy_protocol_attr(identify.target_port_protocols, target_port_protocols); |
| 976 | sas_rphy_simple_attr(identify.sas_address, sas_address, "0x%016llx\n", |
| 977 | unsigned long long); |
| 978 | sas_rphy_simple_attr(identify.phy_identifier, phy_identifier, "%d\n", u8); |
| 979 | |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 980 | /* only need 8 bytes of data plus header (4 or 8) */ |
| 981 | #define BUF_SIZE 64 |
| 982 | |
| 983 | int sas_read_port_mode_page(struct scsi_device *sdev) |
| 984 | { |
| 985 | char *buffer = kzalloc(BUF_SIZE, GFP_KERNEL), *msdata; |
| 986 | struct sas_rphy *rphy = target_to_rphy(sdev->sdev_target); |
| 987 | struct sas_end_device *rdev; |
| 988 | struct scsi_mode_data mode_data; |
| 989 | int res, error; |
| 990 | |
| 991 | BUG_ON(rphy->identify.device_type != SAS_END_DEVICE); |
| 992 | |
| 993 | rdev = rphy_to_end_device(rphy); |
| 994 | |
| 995 | if (!buffer) |
| 996 | return -ENOMEM; |
| 997 | |
| 998 | res = scsi_mode_sense(sdev, 1, 0x19, buffer, BUF_SIZE, 30*HZ, 3, |
| 999 | &mode_data, NULL); |
| 1000 | |
| 1001 | error = -EINVAL; |
| 1002 | if (!scsi_status_is_good(res)) |
| 1003 | goto out; |
| 1004 | |
| 1005 | msdata = buffer + mode_data.header_length + |
| 1006 | mode_data.block_descriptor_length; |
| 1007 | |
| 1008 | if (msdata - buffer > BUF_SIZE - 8) |
| 1009 | goto out; |
| 1010 | |
| 1011 | error = 0; |
| 1012 | |
| 1013 | rdev->ready_led_meaning = msdata[2] & 0x10 ? 1 : 0; |
| 1014 | rdev->I_T_nexus_loss_timeout = (msdata[4] << 8) + msdata[5]; |
| 1015 | rdev->initiator_response_timeout = (msdata[6] << 8) + msdata[7]; |
| 1016 | |
| 1017 | out: |
| 1018 | kfree(buffer); |
| 1019 | return error; |
| 1020 | } |
| 1021 | EXPORT_SYMBOL(sas_read_port_mode_page); |
| 1022 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1023 | static DECLARE_TRANSPORT_CLASS(sas_end_dev_class, |
| 1024 | "sas_end_device", NULL, NULL, NULL); |
| 1025 | |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1026 | #define sas_end_dev_show_simple(field, name, format_string, cast) \ |
| 1027 | static ssize_t \ |
| 1028 | show_sas_end_dev_##name(struct class_device *cdev, char *buf) \ |
| 1029 | { \ |
| 1030 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); \ |
| 1031 | struct sas_end_device *rdev = rphy_to_end_device(rphy); \ |
| 1032 | \ |
| 1033 | return snprintf(buf, 20, format_string, cast rdev->field); \ |
| 1034 | } |
| 1035 | |
| 1036 | #define sas_end_dev_simple_attr(field, name, format_string, type) \ |
| 1037 | sas_end_dev_show_simple(field, name, format_string, (type)) \ |
| 1038 | static SAS_CLASS_DEVICE_ATTR(end_dev, name, S_IRUGO, \ |
| 1039 | show_sas_end_dev_##name, NULL) |
| 1040 | |
| 1041 | sas_end_dev_simple_attr(ready_led_meaning, ready_led_meaning, "%d\n", int); |
| 1042 | sas_end_dev_simple_attr(I_T_nexus_loss_timeout, I_T_nexus_loss_timeout, |
| 1043 | "%d\n", int); |
| 1044 | sas_end_dev_simple_attr(initiator_response_timeout, initiator_response_timeout, |
| 1045 | "%d\n", int); |
| 1046 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1047 | static DECLARE_TRANSPORT_CLASS(sas_expander_class, |
| 1048 | "sas_expander", NULL, NULL, NULL); |
| 1049 | |
| 1050 | #define sas_expander_show_simple(field, name, format_string, cast) \ |
| 1051 | static ssize_t \ |
| 1052 | show_sas_expander_##name(struct class_device *cdev, char *buf) \ |
| 1053 | { \ |
| 1054 | struct sas_rphy *rphy = transport_class_to_rphy(cdev); \ |
| 1055 | struct sas_expander_device *edev = rphy_to_expander_device(rphy); \ |
| 1056 | \ |
| 1057 | return snprintf(buf, 20, format_string, cast edev->field); \ |
| 1058 | } |
| 1059 | |
| 1060 | #define sas_expander_simple_attr(field, name, format_string, type) \ |
| 1061 | sas_expander_show_simple(field, name, format_string, (type)) \ |
| 1062 | static SAS_CLASS_DEVICE_ATTR(expander, name, S_IRUGO, \ |
| 1063 | show_sas_expander_##name, NULL) |
| 1064 | |
| 1065 | sas_expander_simple_attr(vendor_id, vendor_id, "%s\n", char *); |
| 1066 | sas_expander_simple_attr(product_id, product_id, "%s\n", char *); |
| 1067 | sas_expander_simple_attr(product_rev, product_rev, "%s\n", char *); |
| 1068 | sas_expander_simple_attr(component_vendor_id, component_vendor_id, |
| 1069 | "%s\n", char *); |
| 1070 | sas_expander_simple_attr(component_id, component_id, "%u\n", unsigned int); |
| 1071 | sas_expander_simple_attr(component_revision_id, component_revision_id, "%u\n", |
| 1072 | unsigned int); |
| 1073 | sas_expander_simple_attr(level, level, "%d\n", int); |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1074 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1075 | static DECLARE_TRANSPORT_CLASS(sas_rphy_class, |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1076 | "sas_device", NULL, NULL, NULL); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1077 | |
| 1078 | static int sas_rphy_match(struct attribute_container *cont, struct device *dev) |
| 1079 | { |
| 1080 | struct Scsi_Host *shost; |
| 1081 | struct sas_internal *i; |
| 1082 | |
| 1083 | if (!scsi_is_sas_rphy(dev)) |
| 1084 | return 0; |
| 1085 | shost = dev_to_shost(dev->parent->parent); |
| 1086 | |
| 1087 | if (!shost->transportt) |
| 1088 | return 0; |
| 1089 | if (shost->transportt->host_attrs.ac.class != |
| 1090 | &sas_host_class.class) |
| 1091 | return 0; |
| 1092 | |
| 1093 | i = to_sas_internal(shost->transportt); |
| 1094 | return &i->rphy_attr_cont.ac == cont; |
| 1095 | } |
| 1096 | |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1097 | static int sas_end_dev_match(struct attribute_container *cont, |
| 1098 | struct device *dev) |
| 1099 | { |
| 1100 | struct Scsi_Host *shost; |
| 1101 | struct sas_internal *i; |
| 1102 | struct sas_rphy *rphy; |
| 1103 | |
| 1104 | if (!scsi_is_sas_rphy(dev)) |
| 1105 | return 0; |
| 1106 | shost = dev_to_shost(dev->parent->parent); |
| 1107 | rphy = dev_to_rphy(dev); |
| 1108 | |
| 1109 | if (!shost->transportt) |
| 1110 | return 0; |
| 1111 | if (shost->transportt->host_attrs.ac.class != |
| 1112 | &sas_host_class.class) |
| 1113 | return 0; |
| 1114 | |
| 1115 | i = to_sas_internal(shost->transportt); |
| 1116 | return &i->end_dev_attr_cont.ac == cont && |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1117 | rphy->identify.device_type == SAS_END_DEVICE; |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1118 | } |
| 1119 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1120 | static int sas_expander_match(struct attribute_container *cont, |
| 1121 | struct device *dev) |
| 1122 | { |
| 1123 | struct Scsi_Host *shost; |
| 1124 | struct sas_internal *i; |
| 1125 | struct sas_rphy *rphy; |
| 1126 | |
| 1127 | if (!scsi_is_sas_rphy(dev)) |
| 1128 | return 0; |
| 1129 | shost = dev_to_shost(dev->parent->parent); |
| 1130 | rphy = dev_to_rphy(dev); |
| 1131 | |
| 1132 | if (!shost->transportt) |
| 1133 | return 0; |
| 1134 | if (shost->transportt->host_attrs.ac.class != |
| 1135 | &sas_host_class.class) |
| 1136 | return 0; |
| 1137 | |
| 1138 | i = to_sas_internal(shost->transportt); |
| 1139 | return &i->expander_attr_cont.ac == cont && |
| 1140 | (rphy->identify.device_type == SAS_EDGE_EXPANDER_DEVICE || |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1141 | rphy->identify.device_type == SAS_FANOUT_EXPANDER_DEVICE); |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1142 | } |
| 1143 | |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1144 | static void sas_expander_release(struct device *dev) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1145 | { |
| 1146 | struct sas_rphy *rphy = dev_to_rphy(dev); |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1147 | struct sas_expander_device *edev = rphy_to_expander_device(rphy); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1148 | |
| 1149 | put_device(dev->parent); |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1150 | kfree(edev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1151 | } |
| 1152 | |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1153 | static void sas_end_device_release(struct device *dev) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1154 | { |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1155 | struct sas_rphy *rphy = dev_to_rphy(dev); |
| 1156 | struct sas_end_device *edev = rphy_to_end_device(rphy); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1157 | |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1158 | put_device(dev->parent); |
| 1159 | kfree(edev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1160 | } |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1161 | |
| 1162 | /** |
James Bottomley | c5943d3 | 2006-06-12 09:09:18 -0500 | [diff] [blame] | 1163 | * sas_rphy_initialize - common rphy intialization |
| 1164 | * @rphy: rphy to initialise |
| 1165 | * |
| 1166 | * Used by both sas_end_device_alloc() and sas_expander_alloc() to |
| 1167 | * initialise the common rphy component of each. |
| 1168 | */ |
| 1169 | static void sas_rphy_initialize(struct sas_rphy *rphy) |
| 1170 | { |
| 1171 | INIT_LIST_HEAD(&rphy->list); |
| 1172 | } |
| 1173 | |
| 1174 | /** |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1175 | * sas_end_device_alloc - allocate an rphy for an end device |
| 1176 | * |
| 1177 | * Allocates an SAS remote PHY structure, connected to @parent. |
| 1178 | * |
| 1179 | * Returns: |
| 1180 | * SAS PHY allocated or %NULL if the allocation failed. |
| 1181 | */ |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1182 | struct sas_rphy *sas_end_device_alloc(struct sas_port *parent) |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1183 | { |
| 1184 | struct Scsi_Host *shost = dev_to_shost(&parent->dev); |
| 1185 | struct sas_end_device *rdev; |
| 1186 | |
| 1187 | rdev = kzalloc(sizeof(*rdev), GFP_KERNEL); |
| 1188 | if (!rdev) { |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1189 | return NULL; |
| 1190 | } |
| 1191 | |
| 1192 | device_initialize(&rdev->rphy.dev); |
| 1193 | rdev->rphy.dev.parent = get_device(&parent->dev); |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1194 | rdev->rphy.dev.release = sas_end_device_release; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1195 | if (scsi_is_sas_expander_device(parent->dev.parent)) { |
| 1196 | struct sas_rphy *rphy = dev_to_rphy(parent->dev.parent); |
| 1197 | sprintf(rdev->rphy.dev.bus_id, "end_device-%d:%d:%d", |
| 1198 | shost->host_no, rphy->scsi_target_id, parent->port_identifier); |
| 1199 | } else |
| 1200 | sprintf(rdev->rphy.dev.bus_id, "end_device-%d:%d", |
| 1201 | shost->host_no, parent->port_identifier); |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1202 | rdev->rphy.identify.device_type = SAS_END_DEVICE; |
James Bottomley | c5943d3 | 2006-06-12 09:09:18 -0500 | [diff] [blame] | 1203 | sas_rphy_initialize(&rdev->rphy); |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1204 | transport_setup_device(&rdev->rphy.dev); |
| 1205 | |
| 1206 | return &rdev->rphy; |
| 1207 | } |
| 1208 | EXPORT_SYMBOL(sas_end_device_alloc); |
| 1209 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1210 | /** |
| 1211 | * sas_expander_alloc - allocate an rphy for an end device |
| 1212 | * |
| 1213 | * Allocates an SAS remote PHY structure, connected to @parent. |
| 1214 | * |
| 1215 | * Returns: |
| 1216 | * SAS PHY allocated or %NULL if the allocation failed. |
| 1217 | */ |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1218 | struct sas_rphy *sas_expander_alloc(struct sas_port *parent, |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1219 | enum sas_device_type type) |
| 1220 | { |
| 1221 | struct Scsi_Host *shost = dev_to_shost(&parent->dev); |
| 1222 | struct sas_expander_device *rdev; |
| 1223 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 1224 | |
| 1225 | BUG_ON(type != SAS_EDGE_EXPANDER_DEVICE && |
| 1226 | type != SAS_FANOUT_EXPANDER_DEVICE); |
| 1227 | |
| 1228 | rdev = kzalloc(sizeof(*rdev), GFP_KERNEL); |
| 1229 | if (!rdev) { |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1230 | return NULL; |
| 1231 | } |
| 1232 | |
| 1233 | device_initialize(&rdev->rphy.dev); |
| 1234 | rdev->rphy.dev.parent = get_device(&parent->dev); |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1235 | rdev->rphy.dev.release = sas_expander_release; |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1236 | mutex_lock(&sas_host->lock); |
| 1237 | rdev->rphy.scsi_target_id = sas_host->next_expander_id++; |
| 1238 | mutex_unlock(&sas_host->lock); |
| 1239 | sprintf(rdev->rphy.dev.bus_id, "expander-%d:%d", |
| 1240 | shost->host_no, rdev->rphy.scsi_target_id); |
| 1241 | rdev->rphy.identify.device_type = type; |
James Bottomley | c5943d3 | 2006-06-12 09:09:18 -0500 | [diff] [blame] | 1242 | sas_rphy_initialize(&rdev->rphy); |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1243 | transport_setup_device(&rdev->rphy.dev); |
| 1244 | |
| 1245 | return &rdev->rphy; |
| 1246 | } |
| 1247 | EXPORT_SYMBOL(sas_expander_alloc); |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1248 | |
| 1249 | /** |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1250 | * sas_rphy_add -- add a SAS remote PHY to the device hierachy |
| 1251 | * @rphy: The remote PHY to be added |
| 1252 | * |
| 1253 | * Publishes a SAS remote PHY to the rest of the system. |
| 1254 | */ |
| 1255 | int sas_rphy_add(struct sas_rphy *rphy) |
| 1256 | { |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1257 | struct sas_port *parent = dev_to_sas_port(rphy->dev.parent); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1258 | struct Scsi_Host *shost = dev_to_shost(parent->dev.parent); |
| 1259 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 1260 | struct sas_identify *identify = &rphy->identify; |
| 1261 | int error; |
| 1262 | |
| 1263 | if (parent->rphy) |
| 1264 | return -ENXIO; |
| 1265 | parent->rphy = rphy; |
| 1266 | |
| 1267 | error = device_add(&rphy->dev); |
| 1268 | if (error) |
| 1269 | return error; |
| 1270 | transport_add_device(&rphy->dev); |
| 1271 | transport_configure_device(&rphy->dev); |
| 1272 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1273 | mutex_lock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1274 | list_add_tail(&rphy->list, &sas_host->rphy_list); |
| 1275 | if (identify->device_type == SAS_END_DEVICE && |
| 1276 | (identify->target_port_protocols & |
| 1277 | (SAS_PROTOCOL_SSP|SAS_PROTOCOL_STP|SAS_PROTOCOL_SATA))) |
| 1278 | rphy->scsi_target_id = sas_host->next_target_id++; |
James Bottomley | 7676f83 | 2006-04-14 09:47:59 -0500 | [diff] [blame] | 1279 | else if (identify->device_type == SAS_END_DEVICE) |
| 1280 | rphy->scsi_target_id = -1; |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1281 | mutex_unlock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1282 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1283 | if (identify->device_type == SAS_END_DEVICE && |
| 1284 | rphy->scsi_target_id != -1) { |
James Bottomley | e8bf394 | 2006-07-11 17:49:34 -0400 | [diff] [blame] | 1285 | scsi_scan_target(&rphy->dev, 0, |
Darrick J. Wong | c8490f3 | 2007-01-11 14:15:09 -0800 | [diff] [blame] | 1286 | rphy->scsi_target_id, SCAN_WILD_CARD, 0); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | return 0; |
| 1290 | } |
| 1291 | EXPORT_SYMBOL(sas_rphy_add); |
| 1292 | |
| 1293 | /** |
| 1294 | * sas_rphy_free -- free a SAS remote PHY |
| 1295 | * @rphy SAS remote PHY to free |
| 1296 | * |
| 1297 | * Frees the specified SAS remote PHY. |
| 1298 | * |
| 1299 | * Note: |
| 1300 | * This function must only be called on a remote |
| 1301 | * PHY that has not sucessfully been added using |
| 1302 | * sas_rphy_add(). |
| 1303 | */ |
| 1304 | void sas_rphy_free(struct sas_rphy *rphy) |
| 1305 | { |
Mike Anderson | 92aab64 | 2006-03-27 09:37:28 -0800 | [diff] [blame] | 1306 | struct device *dev = &rphy->dev; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1307 | struct Scsi_Host *shost = dev_to_shost(rphy->dev.parent->parent); |
| 1308 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 1309 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1310 | mutex_lock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1311 | list_del(&rphy->list); |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1312 | mutex_unlock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1313 | |
Mike Anderson | 92aab64 | 2006-03-27 09:37:28 -0800 | [diff] [blame] | 1314 | transport_destroy_device(dev); |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1315 | |
Mike Anderson | 92aab64 | 2006-03-27 09:37:28 -0800 | [diff] [blame] | 1316 | put_device(dev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1317 | } |
| 1318 | EXPORT_SYMBOL(sas_rphy_free); |
| 1319 | |
| 1320 | /** |
| 1321 | * sas_rphy_delete -- remove SAS remote PHY |
| 1322 | * @rphy: SAS remote PHY to remove |
| 1323 | * |
| 1324 | * Removes the specified SAS remote PHY. |
| 1325 | */ |
| 1326 | void |
| 1327 | sas_rphy_delete(struct sas_rphy *rphy) |
| 1328 | { |
| 1329 | struct device *dev = &rphy->dev; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1330 | struct sas_port *parent = dev_to_sas_port(dev->parent); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1331 | struct Scsi_Host *shost = dev_to_shost(parent->dev.parent); |
| 1332 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 1333 | |
Christoph Hellwig | d405423 | 2006-01-04 13:45:20 +0100 | [diff] [blame] | 1334 | switch (rphy->identify.device_type) { |
| 1335 | case SAS_END_DEVICE: |
| 1336 | scsi_remove_target(dev); |
| 1337 | break; |
| 1338 | case SAS_EDGE_EXPANDER_DEVICE: |
| 1339 | case SAS_FANOUT_EXPANDER_DEVICE: |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1340 | sas_remove_children(dev); |
Christoph Hellwig | d405423 | 2006-01-04 13:45:20 +0100 | [diff] [blame] | 1341 | break; |
| 1342 | default: |
| 1343 | break; |
| 1344 | } |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1345 | |
Christoph Hellwig | fe8b230 | 2005-09-25 23:10:33 +0200 | [diff] [blame] | 1346 | transport_remove_device(dev); |
| 1347 | device_del(dev); |
| 1348 | transport_destroy_device(dev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1349 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1350 | mutex_lock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1351 | list_del(&rphy->list); |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1352 | mutex_unlock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1353 | |
Christoph Hellwig | 33b114e | 2006-01-11 14:20:43 +0100 | [diff] [blame] | 1354 | parent->rphy = NULL; |
| 1355 | |
Mike Anderson | 92aab64 | 2006-03-27 09:37:28 -0800 | [diff] [blame] | 1356 | put_device(dev); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1357 | } |
| 1358 | EXPORT_SYMBOL(sas_rphy_delete); |
| 1359 | |
| 1360 | /** |
| 1361 | * scsi_is_sas_rphy -- check if a struct device represents a SAS remote PHY |
| 1362 | * @dev: device to check |
| 1363 | * |
| 1364 | * Returns: |
| 1365 | * %1 if the device represents a SAS remote PHY, %0 else |
| 1366 | */ |
| 1367 | int scsi_is_sas_rphy(const struct device *dev) |
| 1368 | { |
James Bottomley | 2f8600d | 2006-03-18 15:00:50 -0600 | [diff] [blame] | 1369 | return dev->release == sas_end_device_release || |
| 1370 | dev->release == sas_expander_release; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1371 | } |
| 1372 | EXPORT_SYMBOL(scsi_is_sas_rphy); |
| 1373 | |
| 1374 | |
| 1375 | /* |
| 1376 | * SCSI scan helper |
| 1377 | */ |
| 1378 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1379 | static int sas_user_scan(struct Scsi_Host *shost, uint channel, |
| 1380 | uint id, uint lun) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1381 | { |
| 1382 | struct sas_host_attrs *sas_host = to_sas_host_attrs(shost); |
| 1383 | struct sas_rphy *rphy; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1384 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1385 | mutex_lock(&sas_host->lock); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1386 | list_for_each_entry(rphy, &sas_host->rphy_list, list) { |
James Bottomley | 6d99a3f | 2006-05-19 10:49:37 -0500 | [diff] [blame] | 1387 | if (rphy->identify.device_type != SAS_END_DEVICE || |
| 1388 | rphy->scsi_target_id == -1) |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1389 | continue; |
| 1390 | |
James Bottomley | e8bf394 | 2006-07-11 17:49:34 -0400 | [diff] [blame] | 1391 | if ((channel == SCAN_WILD_CARD || channel == 0) && |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1392 | (id == SCAN_WILD_CARD || id == rphy->scsi_target_id)) { |
James Bottomley | e8bf394 | 2006-07-11 17:49:34 -0400 | [diff] [blame] | 1393 | scsi_scan_target(&rphy->dev, 0, |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1394 | rphy->scsi_target_id, lun, 1); |
| 1395 | } |
| 1396 | } |
| 1397 | mutex_unlock(&sas_host->lock); |
| 1398 | |
| 1399 | return 0; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1400 | } |
| 1401 | |
| 1402 | |
| 1403 | /* |
| 1404 | * Setup / Teardown code |
| 1405 | */ |
| 1406 | |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 1407 | #define SETUP_TEMPLATE(attrb, field, perm, test) \ |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1408 | i->private_##attrb[count] = class_device_attr_##field; \ |
| 1409 | i->private_##attrb[count].attr.mode = perm; \ |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1410 | i->attrb[count] = &i->private_##attrb[count]; \ |
| 1411 | if (test) \ |
| 1412 | count++ |
| 1413 | |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 1414 | #define SETUP_TEMPLATE_RW(attrb, field, perm, test, ro_test, ro_perm) \ |
| 1415 | i->private_##attrb[count] = class_device_attr_##field; \ |
| 1416 | i->private_##attrb[count].attr.mode = perm; \ |
| 1417 | if (ro_test) { \ |
| 1418 | i->private_##attrb[count].attr.mode = ro_perm; \ |
| 1419 | i->private_##attrb[count].store = NULL; \ |
| 1420 | } \ |
| 1421 | i->attrb[count] = &i->private_##attrb[count]; \ |
| 1422 | if (test) \ |
| 1423 | count++ |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1424 | |
| 1425 | #define SETUP_RPORT_ATTRIBUTE(field) \ |
| 1426 | SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, 1) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1427 | |
James Bottomley | dd9fbb52 | 2006-03-02 16:01:31 -0600 | [diff] [blame] | 1428 | #define SETUP_OPTIONAL_RPORT_ATTRIBUTE(field, func) \ |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1429 | SETUP_TEMPLATE(rphy_attrs, field, S_IRUGO, i->f->func) |
James Bottomley | dd9fbb52 | 2006-03-02 16:01:31 -0600 | [diff] [blame] | 1430 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1431 | #define SETUP_PHY_ATTRIBUTE(field) \ |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1432 | SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, 1) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1433 | |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 1434 | #define SETUP_PHY_ATTRIBUTE_RW(field) \ |
| 1435 | SETUP_TEMPLATE_RW(phy_attrs, field, S_IRUGO | S_IWUSR, 1, \ |
| 1436 | !i->f->set_phy_speed, S_IRUGO) |
| 1437 | |
Darrick J. Wong | acbf167 | 2007-01-11 14:14:57 -0800 | [diff] [blame] | 1438 | #define SETUP_OPTIONAL_PHY_ATTRIBUTE_RW(field, func) \ |
| 1439 | SETUP_TEMPLATE_RW(phy_attrs, field, S_IRUGO | S_IWUSR, 1, \ |
| 1440 | !i->f->func, S_IRUGO) |
| 1441 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1442 | #define SETUP_PORT_ATTRIBUTE(field) \ |
| 1443 | SETUP_TEMPLATE(port_attrs, field, S_IRUGO, 1) |
| 1444 | |
| 1445 | #define SETUP_OPTIONAL_PHY_ATTRIBUTE(field, func) \ |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1446 | SETUP_TEMPLATE(phy_attrs, field, S_IRUGO, i->f->func) |
James Bottomley | dd9fbb52 | 2006-03-02 16:01:31 -0600 | [diff] [blame] | 1447 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1448 | #define SETUP_PHY_ATTRIBUTE_WRONLY(field) \ |
Darrick J. Wong | fe3b5bf | 2007-01-11 14:15:35 -0800 | [diff] [blame] | 1449 | SETUP_TEMPLATE(phy_attrs, field, S_IWUSR, 1) |
Christoph Hellwig | 07ba3a9 | 2005-10-19 20:01:31 +0200 | [diff] [blame] | 1450 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1451 | #define SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(field, func) \ |
Darrick J. Wong | fe3b5bf | 2007-01-11 14:15:35 -0800 | [diff] [blame] | 1452 | SETUP_TEMPLATE(phy_attrs, field, S_IWUSR, i->f->func) |
James Bottomley | dd9fbb52 | 2006-03-02 16:01:31 -0600 | [diff] [blame] | 1453 | |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1454 | #define SETUP_END_DEV_ATTRIBUTE(field) \ |
| 1455 | SETUP_TEMPLATE(end_dev_attrs, field, S_IRUGO, 1) |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1456 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1457 | #define SETUP_EXPANDER_ATTRIBUTE(field) \ |
| 1458 | SETUP_TEMPLATE(expander_attrs, expander_##field, S_IRUGO, 1) |
| 1459 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1460 | /** |
| 1461 | * sas_attach_transport -- instantiate SAS transport template |
| 1462 | * @ft: SAS transport class function template |
| 1463 | */ |
| 1464 | struct scsi_transport_template * |
| 1465 | sas_attach_transport(struct sas_function_template *ft) |
| 1466 | { |
| 1467 | struct sas_internal *i; |
| 1468 | int count; |
| 1469 | |
Jes Sorensen | 24669f75 | 2006-01-16 10:31:18 -0500 | [diff] [blame] | 1470 | i = kzalloc(sizeof(struct sas_internal), GFP_KERNEL); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1471 | if (!i) |
| 1472 | return NULL; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1473 | |
Christoph Hellwig | e02f3f5 | 2006-01-13 19:04:00 +0100 | [diff] [blame] | 1474 | i->t.user_scan = sas_user_scan; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1475 | |
| 1476 | i->t.host_attrs.ac.attrs = &i->host_attrs[0]; |
| 1477 | i->t.host_attrs.ac.class = &sas_host_class.class; |
| 1478 | i->t.host_attrs.ac.match = sas_host_match; |
| 1479 | transport_container_register(&i->t.host_attrs); |
| 1480 | i->t.host_size = sizeof(struct sas_host_attrs); |
| 1481 | |
| 1482 | i->phy_attr_cont.ac.class = &sas_phy_class.class; |
| 1483 | i->phy_attr_cont.ac.attrs = &i->phy_attrs[0]; |
| 1484 | i->phy_attr_cont.ac.match = sas_phy_match; |
| 1485 | transport_container_register(&i->phy_attr_cont); |
| 1486 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1487 | i->port_attr_cont.ac.class = &sas_port_class.class; |
| 1488 | i->port_attr_cont.ac.attrs = &i->port_attrs[0]; |
| 1489 | i->port_attr_cont.ac.match = sas_port_match; |
| 1490 | transport_container_register(&i->port_attr_cont); |
| 1491 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1492 | i->rphy_attr_cont.ac.class = &sas_rphy_class.class; |
| 1493 | i->rphy_attr_cont.ac.attrs = &i->rphy_attrs[0]; |
| 1494 | i->rphy_attr_cont.ac.match = sas_rphy_match; |
| 1495 | transport_container_register(&i->rphy_attr_cont); |
| 1496 | |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1497 | i->end_dev_attr_cont.ac.class = &sas_end_dev_class.class; |
| 1498 | i->end_dev_attr_cont.ac.attrs = &i->end_dev_attrs[0]; |
| 1499 | i->end_dev_attr_cont.ac.match = sas_end_dev_match; |
| 1500 | transport_container_register(&i->end_dev_attr_cont); |
| 1501 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1502 | i->expander_attr_cont.ac.class = &sas_expander_class.class; |
| 1503 | i->expander_attr_cont.ac.attrs = &i->expander_attrs[0]; |
| 1504 | i->expander_attr_cont.ac.match = sas_expander_match; |
| 1505 | transport_container_register(&i->expander_attr_cont); |
| 1506 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1507 | i->f = ft; |
| 1508 | |
| 1509 | count = 0; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1510 | SETUP_PORT_ATTRIBUTE(num_phys); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1511 | i->host_attrs[count] = NULL; |
| 1512 | |
| 1513 | count = 0; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1514 | SETUP_PHY_ATTRIBUTE(initiator_port_protocols); |
| 1515 | SETUP_PHY_ATTRIBUTE(target_port_protocols); |
| 1516 | SETUP_PHY_ATTRIBUTE(device_type); |
| 1517 | SETUP_PHY_ATTRIBUTE(sas_address); |
| 1518 | SETUP_PHY_ATTRIBUTE(phy_identifier); |
| 1519 | //SETUP_PHY_ATTRIBUTE(port_identifier); |
| 1520 | SETUP_PHY_ATTRIBUTE(negotiated_linkrate); |
| 1521 | SETUP_PHY_ATTRIBUTE(minimum_linkrate_hw); |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 1522 | SETUP_PHY_ATTRIBUTE_RW(minimum_linkrate); |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1523 | SETUP_PHY_ATTRIBUTE(maximum_linkrate_hw); |
James Bottomley | d24e1ee | 2006-09-06 19:25:22 -0500 | [diff] [blame] | 1524 | SETUP_PHY_ATTRIBUTE_RW(maximum_linkrate); |
Christoph Hellwig | c3ee74c | 2005-09-19 21:59:42 +0200 | [diff] [blame] | 1525 | |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1526 | SETUP_PHY_ATTRIBUTE(invalid_dword_count); |
| 1527 | SETUP_PHY_ATTRIBUTE(running_disparity_error_count); |
| 1528 | SETUP_PHY_ATTRIBUTE(loss_of_dword_sync_count); |
| 1529 | SETUP_PHY_ATTRIBUTE(phy_reset_problem_count); |
| 1530 | SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(link_reset, phy_reset); |
| 1531 | SETUP_OPTIONAL_PHY_ATTRIBUTE_WRONLY(hard_reset, phy_reset); |
Darrick J. Wong | acbf167 | 2007-01-11 14:14:57 -0800 | [diff] [blame] | 1532 | SETUP_OPTIONAL_PHY_ATTRIBUTE_RW(enable, phy_enable); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1533 | i->phy_attrs[count] = NULL; |
| 1534 | |
| 1535 | count = 0; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1536 | SETUP_PORT_ATTRIBUTE(num_phys); |
| 1537 | i->port_attrs[count] = NULL; |
| 1538 | |
| 1539 | count = 0; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1540 | SETUP_RPORT_ATTRIBUTE(rphy_initiator_port_protocols); |
| 1541 | SETUP_RPORT_ATTRIBUTE(rphy_target_port_protocols); |
| 1542 | SETUP_RPORT_ATTRIBUTE(rphy_device_type); |
| 1543 | SETUP_RPORT_ATTRIBUTE(rphy_sas_address); |
| 1544 | SETUP_RPORT_ATTRIBUTE(rphy_phy_identifier); |
James Bottomley | dd9fbb52 | 2006-03-02 16:01:31 -0600 | [diff] [blame] | 1545 | SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_enclosure_identifier, |
| 1546 | get_enclosure_identifier); |
| 1547 | SETUP_OPTIONAL_RPORT_ATTRIBUTE(rphy_bay_identifier, |
| 1548 | get_bay_identifier); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1549 | i->rphy_attrs[count] = NULL; |
| 1550 | |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1551 | count = 0; |
| 1552 | SETUP_END_DEV_ATTRIBUTE(end_dev_ready_led_meaning); |
| 1553 | SETUP_END_DEV_ATTRIBUTE(end_dev_I_T_nexus_loss_timeout); |
| 1554 | SETUP_END_DEV_ATTRIBUTE(end_dev_initiator_response_timeout); |
| 1555 | i->end_dev_attrs[count] = NULL; |
| 1556 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1557 | count = 0; |
| 1558 | SETUP_EXPANDER_ATTRIBUTE(vendor_id); |
| 1559 | SETUP_EXPANDER_ATTRIBUTE(product_id); |
| 1560 | SETUP_EXPANDER_ATTRIBUTE(product_rev); |
| 1561 | SETUP_EXPANDER_ATTRIBUTE(component_vendor_id); |
| 1562 | SETUP_EXPANDER_ATTRIBUTE(component_id); |
| 1563 | SETUP_EXPANDER_ATTRIBUTE(component_revision_id); |
| 1564 | SETUP_EXPANDER_ATTRIBUTE(level); |
| 1565 | i->expander_attrs[count] = NULL; |
| 1566 | |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1567 | return &i->t; |
| 1568 | } |
| 1569 | EXPORT_SYMBOL(sas_attach_transport); |
| 1570 | |
| 1571 | /** |
| 1572 | * sas_release_transport -- release SAS transport template instance |
| 1573 | * @t: transport template instance |
| 1574 | */ |
| 1575 | void sas_release_transport(struct scsi_transport_template *t) |
| 1576 | { |
| 1577 | struct sas_internal *i = to_sas_internal(t); |
| 1578 | |
| 1579 | transport_container_unregister(&i->t.host_attrs); |
| 1580 | transport_container_unregister(&i->phy_attr_cont); |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1581 | transport_container_unregister(&i->port_attr_cont); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1582 | transport_container_unregister(&i->rphy_attr_cont); |
James Bottomley | db82f84 | 2006-03-09 22:06:36 -0500 | [diff] [blame] | 1583 | transport_container_unregister(&i->end_dev_attr_cont); |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1584 | transport_container_unregister(&i->expander_attr_cont); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1585 | |
| 1586 | kfree(i); |
| 1587 | } |
| 1588 | EXPORT_SYMBOL(sas_release_transport); |
| 1589 | |
| 1590 | static __init int sas_transport_init(void) |
| 1591 | { |
| 1592 | int error; |
| 1593 | |
| 1594 | error = transport_class_register(&sas_host_class); |
| 1595 | if (error) |
| 1596 | goto out; |
| 1597 | error = transport_class_register(&sas_phy_class); |
| 1598 | if (error) |
| 1599 | goto out_unregister_transport; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1600 | error = transport_class_register(&sas_port_class); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1601 | if (error) |
| 1602 | goto out_unregister_phy; |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1603 | error = transport_class_register(&sas_rphy_class); |
| 1604 | if (error) |
| 1605 | goto out_unregister_port; |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1606 | error = transport_class_register(&sas_end_dev_class); |
| 1607 | if (error) |
| 1608 | goto out_unregister_rphy; |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1609 | error = transport_class_register(&sas_expander_class); |
| 1610 | if (error) |
| 1611 | goto out_unregister_end_dev; |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1612 | |
| 1613 | return 0; |
| 1614 | |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1615 | out_unregister_end_dev: |
| 1616 | transport_class_unregister(&sas_end_dev_class); |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1617 | out_unregister_rphy: |
| 1618 | transport_class_unregister(&sas_rphy_class); |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1619 | out_unregister_port: |
| 1620 | transport_class_unregister(&sas_port_class); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1621 | out_unregister_phy: |
| 1622 | transport_class_unregister(&sas_phy_class); |
| 1623 | out_unregister_transport: |
| 1624 | transport_class_unregister(&sas_host_class); |
| 1625 | out: |
| 1626 | return error; |
| 1627 | |
| 1628 | } |
| 1629 | |
| 1630 | static void __exit sas_transport_exit(void) |
| 1631 | { |
| 1632 | transport_class_unregister(&sas_host_class); |
| 1633 | transport_class_unregister(&sas_phy_class); |
James Bottomley | 65c92b0 | 2006-06-28 12:22:50 -0400 | [diff] [blame] | 1634 | transport_class_unregister(&sas_port_class); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1635 | transport_class_unregister(&sas_rphy_class); |
James Bottomley | 42ab036 | 2006-03-04 09:10:18 -0600 | [diff] [blame] | 1636 | transport_class_unregister(&sas_end_dev_class); |
James Bottomley | 79cb181 | 2006-03-13 13:50:04 -0600 | [diff] [blame] | 1637 | transport_class_unregister(&sas_expander_class); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1638 | } |
| 1639 | |
| 1640 | MODULE_AUTHOR("Christoph Hellwig"); |
Alexis Bruemmer | 86b9c4c | 2007-01-16 15:36:12 -0800 | [diff] [blame^] | 1641 | MODULE_DESCRIPTION("SAS Transport Attributes"); |
Christoph Hellwig | c7ebbbc | 2005-09-09 16:22:50 +0200 | [diff] [blame] | 1642 | MODULE_LICENSE("GPL"); |
| 1643 | |
| 1644 | module_init(sas_transport_init); |
| 1645 | module_exit(sas_transport_exit); |