4 * SCSI sysfs interface routines.
6 * Created to pull SCSI mid layer sysfs routines into one file.
9 #include <linux/module.h>
10 #include <linux/slab.h>
11 #include <linux/init.h>
12 #include <linux/blkdev.h>
13 #include <linux/device.h>
14 #include <linux/pm_runtime.h>
16 #include <scsi/scsi.h>
17 #include <scsi/scsi_device.h>
18 #include <scsi/scsi_host.h>
19 #include <scsi/scsi_tcq.h>
20 #include <scsi/scsi_transport.h>
21 #include <scsi/scsi_driver.h>
23 #include "scsi_priv.h"
24 #include "scsi_logging.h"
26 static struct device_type scsi_dev_type
;
29 enum scsi_device_state value
;
32 { SDEV_CREATED
, "created" },
33 { SDEV_RUNNING
, "running" },
34 { SDEV_CANCEL
, "cancel" },
35 { SDEV_DEL
, "deleted" },
36 { SDEV_QUIESCE
, "quiesce" },
37 { SDEV_OFFLINE
, "offline" },
38 { SDEV_TRANSPORT_OFFLINE
, "transport-offline" },
39 { SDEV_BLOCK
, "blocked" },
40 { SDEV_CREATED_BLOCK
, "created-blocked" },
43 const char *scsi_device_state_name(enum scsi_device_state state
)
48 for (i
= 0; i
< ARRAY_SIZE(sdev_states
); i
++) {
49 if (sdev_states
[i
].value
== state
) {
50 name
= sdev_states
[i
].name
;
58 enum scsi_host_state value
;
61 { SHOST_CREATED
, "created" },
62 { SHOST_RUNNING
, "running" },
63 { SHOST_CANCEL
, "cancel" },
64 { SHOST_DEL
, "deleted" },
65 { SHOST_RECOVERY
, "recovery" },
66 { SHOST_CANCEL_RECOVERY
, "cancel/recovery" },
67 { SHOST_DEL_RECOVERY
, "deleted/recovery", },
69 const char *scsi_host_state_name(enum scsi_host_state state
)
74 for (i
= 0; i
< ARRAY_SIZE(shost_states
); i
++) {
75 if (shost_states
[i
].value
== state
) {
76 name
= shost_states
[i
].name
;
83 static int check_set(unsigned int *val
, char *src
)
87 if (strncmp(src
, "-", 20) == 0) {
88 *val
= SCAN_WILD_CARD
;
91 * Doesn't check for int overflow
93 *val
= simple_strtoul(src
, &last
, 0);
100 static int scsi_scan(struct Scsi_Host
*shost
, const char *str
)
102 char s1
[15], s2
[15], s3
[15], junk
;
103 unsigned int channel
, id
, lun
;
106 res
= sscanf(str
, "%10s %10s %10s %c", s1
, s2
, s3
, &junk
);
109 if (check_set(&channel
, s1
))
111 if (check_set(&id
, s2
))
113 if (check_set(&lun
, s3
))
115 if (shost
->transportt
->user_scan
)
116 res
= shost
->transportt
->user_scan(shost
, channel
, id
, lun
);
118 res
= scsi_scan_host_selected(shost
, channel
, id
, lun
, 1);
123 * shost_show_function: macro to create an attr function that can be used to
124 * show a non-bit field.
126 #define shost_show_function(name, field, format_string) \
128 show_##name (struct device *dev, struct device_attribute *attr, \
131 struct Scsi_Host *shost = class_to_shost(dev); \
132 return snprintf (buf, 20, format_string, shost->field); \
136 * shost_rd_attr: macro to create a function and attribute variable for a
139 #define shost_rd_attr2(name, field, format_string) \
140 shost_show_function(name, field, format_string) \
141 static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL);
143 #define shost_rd_attr(field, format_string) \
144 shost_rd_attr2(field, field, format_string)
147 * Create the actual show/store functions and data structures.
151 store_scan(struct device
*dev
, struct device_attribute
*attr
,
152 const char *buf
, size_t count
)
154 struct Scsi_Host
*shost
= class_to_shost(dev
);
157 res
= scsi_scan(shost
, buf
);
162 static DEVICE_ATTR(scan
, S_IWUSR
, NULL
, store_scan
);
165 store_shost_state(struct device
*dev
, struct device_attribute
*attr
,
166 const char *buf
, size_t count
)
169 struct Scsi_Host
*shost
= class_to_shost(dev
);
170 enum scsi_host_state state
= 0;
172 for (i
= 0; i
< ARRAY_SIZE(shost_states
); i
++) {
173 const int len
= strlen(shost_states
[i
].name
);
174 if (strncmp(shost_states
[i
].name
, buf
, len
) == 0 &&
176 state
= shost_states
[i
].value
;
183 if (scsi_host_set_state(shost
, state
))
189 show_shost_state(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
191 struct Scsi_Host
*shost
= class_to_shost(dev
);
192 const char *name
= scsi_host_state_name(shost
->shost_state
);
197 return snprintf(buf
, 20, "%s\n", name
);
200 /* DEVICE_ATTR(state) clashes with dev_attr_state for sdev */
201 struct device_attribute dev_attr_hstate
=
202 __ATTR(state
, S_IRUGO
| S_IWUSR
, show_shost_state
, store_shost_state
);
205 show_shost_mode(unsigned int mode
, char *buf
)
209 if (mode
& MODE_INITIATOR
)
210 len
= sprintf(buf
, "%s", "Initiator");
212 if (mode
& MODE_TARGET
)
213 len
+= sprintf(buf
+ len
, "%s%s", len
? ", " : "", "Target");
215 len
+= sprintf(buf
+ len
, "\n");
221 show_shost_supported_mode(struct device
*dev
, struct device_attribute
*attr
,
224 struct Scsi_Host
*shost
= class_to_shost(dev
);
225 unsigned int supported_mode
= shost
->hostt
->supported_mode
;
227 if (supported_mode
== MODE_UNKNOWN
)
228 /* by default this should be initiator */
229 supported_mode
= MODE_INITIATOR
;
231 return show_shost_mode(supported_mode
, buf
);
234 static DEVICE_ATTR(supported_mode
, S_IRUGO
| S_IWUSR
, show_shost_supported_mode
, NULL
);
237 show_shost_active_mode(struct device
*dev
,
238 struct device_attribute
*attr
, char *buf
)
240 struct Scsi_Host
*shost
= class_to_shost(dev
);
242 if (shost
->active_mode
== MODE_UNKNOWN
)
243 return snprintf(buf
, 20, "unknown\n");
245 return show_shost_mode(shost
->active_mode
, buf
);
248 static DEVICE_ATTR(active_mode
, S_IRUGO
| S_IWUSR
, show_shost_active_mode
, NULL
);
250 static int check_reset_type(const char *str
)
252 if (sysfs_streq(str
, "adapter"))
253 return SCSI_ADAPTER_RESET
;
254 else if (sysfs_streq(str
, "firmware"))
255 return SCSI_FIRMWARE_RESET
;
261 store_host_reset(struct device
*dev
, struct device_attribute
*attr
,
262 const char *buf
, size_t count
)
264 struct Scsi_Host
*shost
= class_to_shost(dev
);
265 struct scsi_host_template
*sht
= shost
->hostt
;
269 type
= check_reset_type(buf
);
271 goto exit_store_host_reset
;
274 ret
= sht
->host_reset(shost
, type
);
276 exit_store_host_reset
:
282 static DEVICE_ATTR(host_reset
, S_IWUSR
, NULL
, store_host_reset
);
284 shost_rd_attr(unique_id
, "%u\n");
285 shost_rd_attr(host_busy
, "%hu\n");
286 shost_rd_attr(cmd_per_lun
, "%hd\n");
287 shost_rd_attr(can_queue
, "%hd\n");
288 shost_rd_attr(sg_tablesize
, "%hu\n");
289 shost_rd_attr(sg_prot_tablesize
, "%hu\n");
290 shost_rd_attr(unchecked_isa_dma
, "%d\n");
291 shost_rd_attr(prot_capabilities
, "%u\n");
292 shost_rd_attr(prot_guard_type
, "%hd\n");
293 shost_rd_attr2(proc_name
, hostt
->proc_name
, "%s\n");
295 static struct attribute
*scsi_sysfs_shost_attrs
[] = {
296 &dev_attr_unique_id
.attr
,
297 &dev_attr_host_busy
.attr
,
298 &dev_attr_cmd_per_lun
.attr
,
299 &dev_attr_can_queue
.attr
,
300 &dev_attr_sg_tablesize
.attr
,
301 &dev_attr_sg_prot_tablesize
.attr
,
302 &dev_attr_unchecked_isa_dma
.attr
,
303 &dev_attr_proc_name
.attr
,
305 &dev_attr_hstate
.attr
,
306 &dev_attr_supported_mode
.attr
,
307 &dev_attr_active_mode
.attr
,
308 &dev_attr_prot_capabilities
.attr
,
309 &dev_attr_prot_guard_type
.attr
,
310 &dev_attr_host_reset
.attr
,
314 struct attribute_group scsi_shost_attr_group
= {
315 .attrs
= scsi_sysfs_shost_attrs
,
318 const struct attribute_group
*scsi_sysfs_shost_attr_groups
[] = {
319 &scsi_shost_attr_group
,
323 static void scsi_device_cls_release(struct device
*class_dev
)
325 struct scsi_device
*sdev
;
327 sdev
= class_to_sdev(class_dev
);
328 put_device(&sdev
->sdev_gendev
);
331 static void scsi_device_dev_release_usercontext(struct work_struct
*work
)
333 struct scsi_device
*sdev
;
334 struct device
*parent
;
335 struct list_head
*this, *tmp
;
338 sdev
= container_of(work
, struct scsi_device
, ew
.work
);
340 parent
= sdev
->sdev_gendev
.parent
;
342 spin_lock_irqsave(sdev
->host
->host_lock
, flags
);
343 list_del(&sdev
->siblings
);
344 list_del(&sdev
->same_target_siblings
);
345 list_del(&sdev
->starved_entry
);
346 spin_unlock_irqrestore(sdev
->host
->host_lock
, flags
);
348 cancel_work_sync(&sdev
->event_work
);
350 list_for_each_safe(this, tmp
, &sdev
->event_list
) {
351 struct scsi_event
*evt
;
353 evt
= list_entry(this, struct scsi_event
, node
);
354 list_del(&evt
->node
);
358 blk_put_queue(sdev
->request_queue
);
359 /* NULL queue means the device can't be used */
360 sdev
->request_queue
= NULL
;
362 kfree(sdev
->inquiry
);
369 static void scsi_device_dev_release(struct device
*dev
)
371 struct scsi_device
*sdp
= to_scsi_device(dev
);
372 execute_in_process_context(scsi_device_dev_release_usercontext
,
376 static struct class sdev_class
= {
377 .name
= "scsi_device",
378 .dev_release
= scsi_device_cls_release
,
381 /* all probing is done in the individual ->probe routines */
382 static int scsi_bus_match(struct device
*dev
, struct device_driver
*gendrv
)
384 struct scsi_device
*sdp
;
386 if (dev
->type
!= &scsi_dev_type
)
389 sdp
= to_scsi_device(dev
);
390 if (sdp
->no_uld_attach
)
392 return (sdp
->inq_periph_qual
== SCSI_INQ_PQ_CON
)? 1: 0;
395 static int scsi_bus_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
397 struct scsi_device
*sdev
;
399 if (dev
->type
!= &scsi_dev_type
)
402 sdev
= to_scsi_device(dev
);
404 add_uevent_var(env
, "MODALIAS=" SCSI_DEVICE_MODALIAS_FMT
, sdev
->type
);
408 struct bus_type scsi_bus_type
= {
410 .match
= scsi_bus_match
,
411 .uevent
= scsi_bus_uevent
,
413 .pm
= &scsi_bus_pm_ops
,
416 EXPORT_SYMBOL_GPL(scsi_bus_type
);
418 int scsi_sysfs_register(void)
422 error
= bus_register(&scsi_bus_type
);
424 error
= class_register(&sdev_class
);
426 bus_unregister(&scsi_bus_type
);
432 void scsi_sysfs_unregister(void)
434 class_unregister(&sdev_class
);
435 bus_unregister(&scsi_bus_type
);
439 * sdev_show_function: macro to create an attr function that can be used to
440 * show a non-bit field.
442 #define sdev_show_function(field, format_string) \
444 sdev_show_##field (struct device *dev, struct device_attribute *attr, \
447 struct scsi_device *sdev; \
448 sdev = to_scsi_device(dev); \
449 return snprintf (buf, 20, format_string, sdev->field); \
453 * sdev_rd_attr: macro to create a function and attribute variable for a
456 #define sdev_rd_attr(field, format_string) \
457 sdev_show_function(field, format_string) \
458 static DEVICE_ATTR(field, S_IRUGO, sdev_show_##field, NULL);
462 * sdev_rw_attr: create a function and attribute variable for a
465 #define sdev_rw_attr(field, format_string) \
466 sdev_show_function(field, format_string) \
469 sdev_store_##field (struct device *dev, struct device_attribute *attr, \
470 const char *buf, size_t count) \
472 struct scsi_device *sdev; \
473 sdev = to_scsi_device(dev); \
474 sscanf (buf, format_string, &sdev->field); \
477 static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, sdev_show_##field, sdev_store_##field);
479 /* Currently we don't export bit fields, but we might in future,
480 * so leave this code in */
483 * sdev_rd_attr: create a function and attribute variable for a
484 * read/write bit field.
486 #define sdev_rw_attr_bit(field) \
487 sdev_show_function(field, "%d\n") \
490 sdev_store_##field (struct device *dev, struct device_attribute *attr, \
491 const char *buf, size_t count) \
494 struct scsi_device *sdev; \
495 ret = scsi_sdev_check_buf_bit(buf); \
497 sdev = to_scsi_device(dev); \
503 static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, sdev_show_##field, sdev_store_##field);
506 * scsi_sdev_check_buf_bit: return 0 if buf is "0", return 1 if buf is "1",
507 * else return -EINVAL.
509 static int scsi_sdev_check_buf_bit(const char *buf
)
511 if ((buf
[1] == '\0') || ((buf
[1] == '\n') && (buf
[2] == '\0'))) {
514 else if (buf
[0] == '0')
523 * Create the actual show/store functions and data structures.
525 sdev_rd_attr (device_blocked
, "%d\n");
526 sdev_rd_attr (queue_depth
, "%d\n");
527 sdev_rd_attr (type
, "%d\n");
528 sdev_rd_attr (scsi_level
, "%d\n");
529 sdev_rd_attr (vendor
, "%.8s\n");
530 sdev_rd_attr (model
, "%.16s\n");
531 sdev_rd_attr (rev
, "%.4s\n");
534 * TODO: can we make these symlinks to the block layer ones?
537 sdev_show_timeout (struct device
*dev
, struct device_attribute
*attr
, char *buf
)
539 struct scsi_device
*sdev
;
540 sdev
= to_scsi_device(dev
);
541 return snprintf(buf
, 20, "%d\n", sdev
->request_queue
->rq_timeout
/ HZ
);
545 sdev_store_timeout (struct device
*dev
, struct device_attribute
*attr
,
546 const char *buf
, size_t count
)
548 struct scsi_device
*sdev
;
550 sdev
= to_scsi_device(dev
);
551 sscanf (buf
, "%d\n", &timeout
);
552 blk_queue_rq_timeout(sdev
->request_queue
, timeout
* HZ
);
555 static DEVICE_ATTR(timeout
, S_IRUGO
| S_IWUSR
, sdev_show_timeout
, sdev_store_timeout
);
558 sdev_show_eh_timeout(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
560 struct scsi_device
*sdev
;
561 sdev
= to_scsi_device(dev
);
562 return snprintf(buf
, 20, "%u\n", sdev
->eh_timeout
/ HZ
);
566 sdev_store_eh_timeout(struct device
*dev
, struct device_attribute
*attr
,
567 const char *buf
, size_t count
)
569 struct scsi_device
*sdev
;
570 unsigned int eh_timeout
;
573 if (!capable(CAP_SYS_ADMIN
))
576 sdev
= to_scsi_device(dev
);
577 err
= kstrtouint(buf
, 10, &eh_timeout
);
580 sdev
->eh_timeout
= eh_timeout
* HZ
;
584 static DEVICE_ATTR(eh_timeout
, S_IRUGO
| S_IWUSR
, sdev_show_eh_timeout
, sdev_store_eh_timeout
);
587 store_rescan_field (struct device
*dev
, struct device_attribute
*attr
,
588 const char *buf
, size_t count
)
590 scsi_rescan_device(dev
);
593 static DEVICE_ATTR(rescan
, S_IWUSR
, NULL
, store_rescan_field
);
595 static void sdev_store_delete_callback(struct device
*dev
)
597 scsi_remove_device(to_scsi_device(dev
));
601 sdev_store_delete(struct device
*dev
, struct device_attribute
*attr
,
602 const char *buf
, size_t count
)
606 /* An attribute cannot be unregistered by one of its own methods,
607 * so we have to use this roundabout approach.
609 rc
= device_schedule_callback(dev
, sdev_store_delete_callback
);
614 static DEVICE_ATTR(delete, S_IWUSR
, NULL
, sdev_store_delete
);
617 store_state_field(struct device
*dev
, struct device_attribute
*attr
,
618 const char *buf
, size_t count
)
621 struct scsi_device
*sdev
= to_scsi_device(dev
);
622 enum scsi_device_state state
= 0;
624 for (i
= 0; i
< ARRAY_SIZE(sdev_states
); i
++) {
625 const int len
= strlen(sdev_states
[i
].name
);
626 if (strncmp(sdev_states
[i
].name
, buf
, len
) == 0 &&
628 state
= sdev_states
[i
].value
;
635 if (scsi_device_set_state(sdev
, state
))
641 show_state_field(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
643 struct scsi_device
*sdev
= to_scsi_device(dev
);
644 const char *name
= scsi_device_state_name(sdev
->sdev_state
);
649 return snprintf(buf
, 20, "%s\n", name
);
652 static DEVICE_ATTR(state
, S_IRUGO
| S_IWUSR
, show_state_field
, store_state_field
);
655 show_queue_type_field(struct device
*dev
, struct device_attribute
*attr
,
658 struct scsi_device
*sdev
= to_scsi_device(dev
);
659 const char *name
= "none";
661 if (sdev
->ordered_tags
)
663 else if (sdev
->simple_tags
)
666 return snprintf(buf
, 20, "%s\n", name
);
669 static DEVICE_ATTR(queue_type
, S_IRUGO
, show_queue_type_field
, NULL
);
672 show_iostat_counterbits(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
674 return snprintf(buf
, 20, "%d\n", (int)sizeof(atomic_t
) * 8);
677 static DEVICE_ATTR(iocounterbits
, S_IRUGO
, show_iostat_counterbits
, NULL
);
679 #define show_sdev_iostat(field) \
681 show_iostat_##field(struct device *dev, struct device_attribute *attr, \
684 struct scsi_device *sdev = to_scsi_device(dev); \
685 unsigned long long count = atomic_read(&sdev->field); \
686 return snprintf(buf, 20, "0x%llx\n", count); \
688 static DEVICE_ATTR(field, S_IRUGO, show_iostat_##field, NULL)
690 show_sdev_iostat(iorequest_cnt
);
691 show_sdev_iostat(iodone_cnt
);
692 show_sdev_iostat(ioerr_cnt
);
695 sdev_show_modalias(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
697 struct scsi_device
*sdev
;
698 sdev
= to_scsi_device(dev
);
699 return snprintf (buf
, 20, SCSI_DEVICE_MODALIAS_FMT
"\n", sdev
->type
);
701 static DEVICE_ATTR(modalias
, S_IRUGO
, sdev_show_modalias
, NULL
);
703 #define DECLARE_EVT_SHOW(name, Cap_name) \
705 sdev_show_evt_##name(struct device *dev, struct device_attribute *attr, \
708 struct scsi_device *sdev = to_scsi_device(dev); \
709 int val = test_bit(SDEV_EVT_##Cap_name, sdev->supported_events);\
710 return snprintf(buf, 20, "%d\n", val); \
713 #define DECLARE_EVT_STORE(name, Cap_name) \
715 sdev_store_evt_##name(struct device *dev, struct device_attribute *attr,\
716 const char *buf, size_t count) \
718 struct scsi_device *sdev = to_scsi_device(dev); \
719 int val = simple_strtoul(buf, NULL, 0); \
721 clear_bit(SDEV_EVT_##Cap_name, sdev->supported_events); \
723 set_bit(SDEV_EVT_##Cap_name, sdev->supported_events); \
729 #define DECLARE_EVT(name, Cap_name) \
730 DECLARE_EVT_SHOW(name, Cap_name) \
731 DECLARE_EVT_STORE(name, Cap_name) \
732 static DEVICE_ATTR(evt_##name, S_IRUGO, sdev_show_evt_##name, \
733 sdev_store_evt_##name);
734 #define REF_EVT(name) &dev_attr_evt_##name.attr
736 DECLARE_EVT(media_change
, MEDIA_CHANGE
)
737 DECLARE_EVT(inquiry_change_reported
, INQUIRY_CHANGE_REPORTED
)
738 DECLARE_EVT(capacity_change_reported
, CAPACITY_CHANGE_REPORTED
)
739 DECLARE_EVT(soft_threshold_reached
, SOFT_THRESHOLD_REACHED_REPORTED
)
740 DECLARE_EVT(mode_parameter_change_reported
, MODE_PARAMETER_CHANGE_REPORTED
)
741 DECLARE_EVT(lun_change_reported
, LUN_CHANGE_REPORTED
)
743 /* Default template for device attributes. May NOT be modified */
744 static struct attribute
*scsi_sdev_attrs
[] = {
745 &dev_attr_device_blocked
.attr
,
747 &dev_attr_scsi_level
.attr
,
748 &dev_attr_vendor
.attr
,
749 &dev_attr_model
.attr
,
751 &dev_attr_rescan
.attr
,
752 &dev_attr_delete
.attr
,
753 &dev_attr_state
.attr
,
754 &dev_attr_timeout
.attr
,
755 &dev_attr_eh_timeout
.attr
,
756 &dev_attr_iocounterbits
.attr
,
757 &dev_attr_iorequest_cnt
.attr
,
758 &dev_attr_iodone_cnt
.attr
,
759 &dev_attr_ioerr_cnt
.attr
,
760 &dev_attr_modalias
.attr
,
761 REF_EVT(media_change
),
762 REF_EVT(inquiry_change_reported
),
763 REF_EVT(capacity_change_reported
),
764 REF_EVT(soft_threshold_reached
),
765 REF_EVT(mode_parameter_change_reported
),
766 REF_EVT(lun_change_reported
),
770 static struct attribute_group scsi_sdev_attr_group
= {
771 .attrs
= scsi_sdev_attrs
,
774 static const struct attribute_group
*scsi_sdev_attr_groups
[] = {
775 &scsi_sdev_attr_group
,
780 sdev_store_queue_depth_rw(struct device
*dev
, struct device_attribute
*attr
,
781 const char *buf
, size_t count
)
784 struct scsi_device
*sdev
= to_scsi_device(dev
);
785 struct scsi_host_template
*sht
= sdev
->host
->hostt
;
787 if (!sht
->change_queue_depth
)
790 depth
= simple_strtoul(buf
, NULL
, 0);
795 retval
= sht
->change_queue_depth(sdev
, depth
,
796 SCSI_QDEPTH_DEFAULT
);
800 sdev
->max_queue_depth
= sdev
->queue_depth
;
805 static struct device_attribute sdev_attr_queue_depth_rw
=
806 __ATTR(queue_depth
, S_IRUGO
| S_IWUSR
, sdev_show_queue_depth
,
807 sdev_store_queue_depth_rw
);
810 sdev_show_queue_ramp_up_period(struct device
*dev
,
811 struct device_attribute
*attr
,
814 struct scsi_device
*sdev
;
815 sdev
= to_scsi_device(dev
);
816 return snprintf(buf
, 20, "%u\n",
817 jiffies_to_msecs(sdev
->queue_ramp_up_period
));
821 sdev_store_queue_ramp_up_period(struct device
*dev
,
822 struct device_attribute
*attr
,
823 const char *buf
, size_t count
)
825 struct scsi_device
*sdev
= to_scsi_device(dev
);
826 unsigned long period
;
828 if (strict_strtoul(buf
, 10, &period
))
831 sdev
->queue_ramp_up_period
= msecs_to_jiffies(period
);
835 static struct device_attribute sdev_attr_queue_ramp_up_period
=
836 __ATTR(queue_ramp_up_period
, S_IRUGO
| S_IWUSR
,
837 sdev_show_queue_ramp_up_period
,
838 sdev_store_queue_ramp_up_period
);
841 sdev_store_queue_type_rw(struct device
*dev
, struct device_attribute
*attr
,
842 const char *buf
, size_t count
)
844 struct scsi_device
*sdev
= to_scsi_device(dev
);
845 struct scsi_host_template
*sht
= sdev
->host
->hostt
;
846 int tag_type
= 0, retval
;
847 int prev_tag_type
= scsi_get_tag_type(sdev
);
849 if (!sdev
->tagged_supported
|| !sht
->change_queue_type
)
852 if (strncmp(buf
, "ordered", 7) == 0)
853 tag_type
= MSG_ORDERED_TAG
;
854 else if (strncmp(buf
, "simple", 6) == 0)
855 tag_type
= MSG_SIMPLE_TAG
;
856 else if (strncmp(buf
, "none", 4) != 0)
859 if (tag_type
== prev_tag_type
)
862 retval
= sht
->change_queue_type(sdev
, tag_type
);
869 static int scsi_target_add(struct scsi_target
*starget
)
873 if (starget
->state
!= STARGET_CREATED
)
876 error
= device_add(&starget
->dev
);
878 dev_err(&starget
->dev
, "target device_add failed, error %d\n", error
);
881 transport_add_device(&starget
->dev
);
882 starget
->state
= STARGET_RUNNING
;
884 pm_runtime_set_active(&starget
->dev
);
885 pm_runtime_enable(&starget
->dev
);
886 device_enable_async_suspend(&starget
->dev
);
891 static struct device_attribute sdev_attr_queue_type_rw
=
892 __ATTR(queue_type
, S_IRUGO
| S_IWUSR
, show_queue_type_field
,
893 sdev_store_queue_type_rw
);
896 * scsi_sysfs_add_sdev - add scsi device to sysfs
897 * @sdev: scsi_device to add
900 * 0 on Success / non-zero on Failure
902 int scsi_sysfs_add_sdev(struct scsi_device
*sdev
)
905 struct request_queue
*rq
= sdev
->request_queue
;
906 struct scsi_target
*starget
= sdev
->sdev_target
;
908 error
= scsi_device_set_state(sdev
, SDEV_RUNNING
);
912 error
= scsi_target_add(starget
);
916 transport_configure_device(&starget
->dev
);
918 device_enable_async_suspend(&sdev
->sdev_gendev
);
919 scsi_autopm_get_target(starget
);
920 pm_runtime_set_active(&sdev
->sdev_gendev
);
921 pm_runtime_forbid(&sdev
->sdev_gendev
);
922 pm_runtime_enable(&sdev
->sdev_gendev
);
923 scsi_autopm_put_target(starget
);
925 /* The following call will keep sdev active indefinitely, until
926 * its driver does a corresponding scsi_autopm_pm_device(). Only
927 * drivers supporting autosuspend will do this.
929 scsi_autopm_get_device(sdev
);
931 error
= device_add(&sdev
->sdev_gendev
);
933 sdev_printk(KERN_INFO
, sdev
,
934 "failed to add device: %d\n", error
);
937 device_enable_async_suspend(&sdev
->sdev_dev
);
938 error
= device_add(&sdev
->sdev_dev
);
940 sdev_printk(KERN_INFO
, sdev
,
941 "failed to add class device: %d\n", error
);
942 device_del(&sdev
->sdev_gendev
);
945 transport_add_device(&sdev
->sdev_gendev
);
946 sdev
->is_visible
= 1;
948 /* create queue files, which may be writable, depending on the host */
949 if (sdev
->host
->hostt
->change_queue_depth
) {
950 error
= device_create_file(&sdev
->sdev_gendev
,
951 &sdev_attr_queue_depth_rw
);
952 error
= device_create_file(&sdev
->sdev_gendev
,
953 &sdev_attr_queue_ramp_up_period
);
956 error
= device_create_file(&sdev
->sdev_gendev
, &dev_attr_queue_depth
);
960 if (sdev
->host
->hostt
->change_queue_type
)
961 error
= device_create_file(&sdev
->sdev_gendev
, &sdev_attr_queue_type_rw
);
963 error
= device_create_file(&sdev
->sdev_gendev
, &dev_attr_queue_type
);
967 error
= bsg_register_queue(rq
, &sdev
->sdev_gendev
, NULL
, NULL
);
970 /* we're treating error on bsg register as non-fatal,
971 * so pretend nothing went wrong */
972 sdev_printk(KERN_INFO
, sdev
,
973 "Failed to register bsg queue, errno=%d\n", error
);
975 /* add additional host specific attributes */
976 if (sdev
->host
->hostt
->sdev_attrs
) {
977 for (i
= 0; sdev
->host
->hostt
->sdev_attrs
[i
]; i
++) {
978 error
= device_create_file(&sdev
->sdev_gendev
,
979 sdev
->host
->hostt
->sdev_attrs
[i
]);
988 void __scsi_remove_device(struct scsi_device
*sdev
)
990 struct device
*dev
= &sdev
->sdev_gendev
;
992 if (sdev
->is_visible
) {
993 if (scsi_device_set_state(sdev
, SDEV_CANCEL
) != 0)
996 bsg_unregister_queue(sdev
->request_queue
);
997 device_unregister(&sdev
->sdev_dev
);
998 transport_remove_device(dev
);
1001 put_device(&sdev
->sdev_dev
);
1004 * Stop accepting new requests and wait until all queuecommand() and
1005 * scsi_run_queue() invocations have finished before tearing down the
1008 scsi_device_set_state(sdev
, SDEV_DEL
);
1009 blk_cleanup_queue(sdev
->request_queue
);
1010 cancel_work_sync(&sdev
->requeue_work
);
1012 if (sdev
->host
->hostt
->slave_destroy
)
1013 sdev
->host
->hostt
->slave_destroy(sdev
);
1014 transport_destroy_device(dev
);
1017 * Paired with the kref_get() in scsi_sysfs_initialize(). We have
1018 * remoed sysfs visibility from the device, so make the target
1019 * invisible if this was the last device underneath it.
1021 scsi_target_reap(scsi_target(sdev
));
1027 * scsi_remove_device - unregister a device from the scsi bus
1028 * @sdev: scsi_device to unregister
1030 void scsi_remove_device(struct scsi_device
*sdev
)
1032 struct Scsi_Host
*shost
= sdev
->host
;
1034 mutex_lock(&shost
->scan_mutex
);
1035 __scsi_remove_device(sdev
);
1036 mutex_unlock(&shost
->scan_mutex
);
1038 EXPORT_SYMBOL(scsi_remove_device
);
1040 static void __scsi_remove_target(struct scsi_target
*starget
)
1042 struct Scsi_Host
*shost
= dev_to_shost(starget
->dev
.parent
);
1043 unsigned long flags
;
1044 struct scsi_device
*sdev
;
1046 spin_lock_irqsave(shost
->host_lock
, flags
);
1048 list_for_each_entry(sdev
, &shost
->__devices
, siblings
) {
1049 if (sdev
->channel
!= starget
->channel
||
1050 sdev
->id
!= starget
->id
||
1051 scsi_device_get(sdev
))
1053 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1054 scsi_remove_device(sdev
);
1055 scsi_device_put(sdev
);
1056 spin_lock_irqsave(shost
->host_lock
, flags
);
1059 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1063 * scsi_remove_target - try to remove a target and all its devices
1064 * @dev: generic starget or parent of generic stargets to be removed
1066 * Note: This is slightly racy. It is possible that if the user
1067 * requests the addition of another device then the target won't be
1070 void scsi_remove_target(struct device
*dev
)
1072 struct Scsi_Host
*shost
= dev_to_shost(dev
->parent
);
1073 struct scsi_target
*starget
, *last_target
= NULL
;
1074 unsigned long flags
;
1077 spin_lock_irqsave(shost
->host_lock
, flags
);
1078 list_for_each_entry(starget
, &shost
->__targets
, siblings
) {
1079 if (starget
->state
== STARGET_DEL
||
1080 starget
== last_target
)
1082 if (starget
->dev
.parent
== dev
|| &starget
->dev
== dev
) {
1083 kref_get(&starget
->reap_ref
);
1084 last_target
= starget
;
1085 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1086 __scsi_remove_target(starget
);
1087 scsi_target_reap(starget
);
1091 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1093 EXPORT_SYMBOL(scsi_remove_target
);
1095 int scsi_register_driver(struct device_driver
*drv
)
1097 drv
->bus
= &scsi_bus_type
;
1099 return driver_register(drv
);
1101 EXPORT_SYMBOL(scsi_register_driver
);
1103 int scsi_register_interface(struct class_interface
*intf
)
1105 intf
->class = &sdev_class
;
1107 return class_interface_register(intf
);
1109 EXPORT_SYMBOL(scsi_register_interface
);
1112 * scsi_sysfs_add_host - add scsi host to subsystem
1113 * @shost: scsi host struct to add to subsystem
1115 int scsi_sysfs_add_host(struct Scsi_Host
*shost
)
1119 /* add host specific attributes */
1120 if (shost
->hostt
->shost_attrs
) {
1121 for (i
= 0; shost
->hostt
->shost_attrs
[i
]; i
++) {
1122 error
= device_create_file(&shost
->shost_dev
,
1123 shost
->hostt
->shost_attrs
[i
]);
1129 transport_register_device(&shost
->shost_gendev
);
1130 transport_configure_device(&shost
->shost_gendev
);
1134 static struct device_type scsi_dev_type
= {
1135 .name
= "scsi_device",
1136 .release
= scsi_device_dev_release
,
1137 .groups
= scsi_sdev_attr_groups
,
1140 void scsi_sysfs_device_initialize(struct scsi_device
*sdev
)
1142 unsigned long flags
;
1143 struct Scsi_Host
*shost
= sdev
->host
;
1144 struct scsi_target
*starget
= sdev
->sdev_target
;
1146 device_initialize(&sdev
->sdev_gendev
);
1147 sdev
->sdev_gendev
.bus
= &scsi_bus_type
;
1148 sdev
->sdev_gendev
.type
= &scsi_dev_type
;
1149 dev_set_name(&sdev
->sdev_gendev
, "%d:%d:%d:%d",
1150 sdev
->host
->host_no
, sdev
->channel
, sdev
->id
, sdev
->lun
);
1152 device_initialize(&sdev
->sdev_dev
);
1153 sdev
->sdev_dev
.parent
= get_device(&sdev
->sdev_gendev
);
1154 sdev
->sdev_dev
.class = &sdev_class
;
1155 dev_set_name(&sdev
->sdev_dev
, "%d:%d:%d:%d",
1156 sdev
->host
->host_no
, sdev
->channel
, sdev
->id
, sdev
->lun
);
1157 sdev
->scsi_level
= starget
->scsi_level
;
1158 transport_setup_device(&sdev
->sdev_gendev
);
1159 spin_lock_irqsave(shost
->host_lock
, flags
);
1160 list_add_tail(&sdev
->same_target_siblings
, &starget
->devices
);
1161 list_add_tail(&sdev
->siblings
, &shost
->__devices
);
1162 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1164 * device can now only be removed via __scsi_remove_device() so hold
1165 * the target. Target will be held in CREATED state until something
1166 * beneath it becomes visible (in which case it moves to RUNNING)
1168 kref_get(&starget
->reap_ref
);
1171 int scsi_is_sdev_device(const struct device
*dev
)
1173 return dev
->type
== &scsi_dev_type
;
1175 EXPORT_SYMBOL(scsi_is_sdev_device
);
1177 /* A blank transport template that is used in drivers that don't
1178 * yet implement Transport Attributes */
1179 struct scsi_transport_template blank_transport_template
= { { { {NULL
, }, }, }, };