]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | #ifndef _SCSI_PRIV_H |
2 | #define _SCSI_PRIV_H | |
3 | ||
1da177e4 | 4 | #include <linux/device.h> |
2955b47d | 5 | #include <linux/async.h> |
5d9fb5cc | 6 | #include <scsi/scsi_device.h> |
1da177e4 LT |
7 | |
8 | struct request_queue; | |
242f9dcb | 9 | struct request; |
1da177e4 LT |
10 | struct scsi_cmnd; |
11 | struct scsi_device; | |
bc4f2401 | 12 | struct scsi_target; |
1da177e4 | 13 | struct scsi_host_template; |
1da177e4 | 14 | struct Scsi_Host; |
84314fd4 | 15 | struct scsi_nl_hdr; |
1da177e4 LT |
16 | |
17 | ||
1da177e4 LT |
18 | /* |
19 | * Scsi Error Handler Flags | |
20 | */ | |
1da177e4 | 21 | #define SCSI_EH_CANCEL_CMD 0x0001 /* Cancel this cmd */ |
e494f6a7 | 22 | #define SCSI_EH_ABORT_SCHEDULED 0x0002 /* Abort has been scheduled */ |
1da177e4 LT |
23 | |
24 | #define SCSI_SENSE_VALID(scmd) \ | |
25 | (((scmd)->sense_buffer[0] & 0x70) == 0x70) | |
26 | ||
1da177e4 LT |
27 | /* hosts.c */ |
28 | extern int scsi_init_hosts(void); | |
29 | extern void scsi_exit_hosts(void); | |
30 | ||
31 | /* scsi.c */ | |
8d58881b | 32 | extern bool scsi_use_blk_mq; |
1da177e4 LT |
33 | extern int scsi_setup_command_freelist(struct Scsi_Host *shost); |
34 | extern void scsi_destroy_command_freelist(struct Scsi_Host *shost); | |
1da177e4 LT |
35 | #ifdef CONFIG_SCSI_LOGGING |
36 | void scsi_log_send(struct scsi_cmnd *cmd); | |
37 | void scsi_log_completion(struct scsi_cmnd *cmd, int disposition); | |
38 | #else | |
39 | static inline void scsi_log_send(struct scsi_cmnd *cmd) | |
40 | { }; | |
41 | static inline void scsi_log_completion(struct scsi_cmnd *cmd, int disposition) | |
42 | { }; | |
43 | #endif | |
44 | ||
45 | /* scsi_devinfo.c */ | |
598fa4b7 JB |
46 | |
47 | /* list of keys for the lists */ | |
48 | enum { | |
49 | SCSI_DEVINFO_GLOBAL = 0, | |
a9e0edb6 | 50 | SCSI_DEVINFO_SPI, |
598fa4b7 JB |
51 | }; |
52 | ||
1da177e4 | 53 | extern int scsi_get_device_flags(struct scsi_device *sdev, |
7f23e146 JB |
54 | const unsigned char *vendor, |
55 | const unsigned char *model); | |
598fa4b7 JB |
56 | extern int scsi_get_device_flags_keyed(struct scsi_device *sdev, |
57 | const unsigned char *vendor, | |
58 | const unsigned char *model, int key); | |
59 | extern int scsi_dev_info_list_add_keyed(int compatible, char *vendor, | |
60 | char *model, char *strflags, | |
61 | int flags, int key); | |
38a039be | 62 | extern int scsi_dev_info_list_del_keyed(char *vendor, char *model, int key); |
598fa4b7 JB |
63 | extern int scsi_dev_info_add_list(int key, const char *name); |
64 | extern int scsi_dev_info_remove_list(int key); | |
65 | ||
1da177e4 LT |
66 | extern int __init scsi_init_devinfo(void); |
67 | extern void scsi_exit_devinfo(void); | |
68 | ||
69 | /* scsi_error.c */ | |
e494f6a7 | 70 | extern void scmd_eh_abort_handler(struct work_struct *work); |
242f9dcb | 71 | extern enum blk_eh_timer_return scsi_times_out(struct request *req); |
1da177e4 LT |
72 | extern int scsi_error_handler(void *host); |
73 | extern int scsi_decide_disposition(struct scsi_cmnd *cmd); | |
74 | extern void scsi_eh_wakeup(struct Scsi_Host *shost); | |
75 | extern int scsi_eh_scmd_add(struct scsi_cmnd *, int); | |
dca84e46 DW |
76 | void scsi_eh_ready_devs(struct Scsi_Host *shost, |
77 | struct list_head *work_q, | |
78 | struct list_head *done_q); | |
79 | int scsi_eh_get_sense(struct list_head *work_q, | |
80 | struct list_head *done_q); | |
4a27446f | 81 | int scsi_noretry_cmd(struct scsi_cmnd *scmd); |
1da177e4 LT |
82 | |
83 | /* scsi_lib.c */ | |
84 | extern int scsi_maybe_unblock_host(struct scsi_device *sdev); | |
1da177e4 | 85 | extern void scsi_device_unbusy(struct scsi_device *sdev); |
84feb166 | 86 | extern void scsi_queue_insert(struct scsi_cmnd *cmd, int reason); |
7b3d9545 | 87 | extern void scsi_io_completion(struct scsi_cmnd *, unsigned int); |
1da177e4 | 88 | extern void scsi_run_host_queues(struct Scsi_Host *shost); |
d67e8b38 | 89 | extern void scsi_requeue_run_queue(struct work_struct *work); |
1da177e4 | 90 | extern struct request_queue *scsi_alloc_queue(struct scsi_device *sdev); |
d285203c CH |
91 | extern struct request_queue *scsi_mq_alloc_queue(struct scsi_device *sdev); |
92 | extern int scsi_mq_setup_tags(struct Scsi_Host *shost); | |
93 | extern void scsi_mq_destroy_tags(struct Scsi_Host *shost); | |
1da177e4 LT |
94 | extern int scsi_init_queue(void); |
95 | extern void scsi_exit_queue(void); | |
d67e8b38 | 96 | extern void scsi_evt_thread(struct work_struct *work); |
751bf4d7 JB |
97 | struct request_queue; |
98 | struct request; | |
7027ad72 | 99 | extern struct kmem_cache *scsi_sdb_cache; |
1da177e4 LT |
100 | |
101 | /* scsi_proc.c */ | |
102 | #ifdef CONFIG_SCSI_PROC_FS | |
103 | extern void scsi_proc_hostdir_add(struct scsi_host_template *); | |
104 | extern void scsi_proc_hostdir_rm(struct scsi_host_template *); | |
105 | extern void scsi_proc_host_add(struct Scsi_Host *); | |
106 | extern void scsi_proc_host_rm(struct Scsi_Host *); | |
107 | extern int scsi_init_procfs(void); | |
108 | extern void scsi_exit_procfs(void); | |
109 | #else | |
110 | # define scsi_proc_hostdir_add(sht) do { } while (0) | |
111 | # define scsi_proc_hostdir_rm(sht) do { } while (0) | |
112 | # define scsi_proc_host_add(shost) do { } while (0) | |
113 | # define scsi_proc_host_rm(shost) do { } while (0) | |
114 | # define scsi_init_procfs() (0) | |
115 | # define scsi_exit_procfs() do { } while (0) | |
116 | #endif /* CONFIG_PROC_FS */ | |
117 | ||
118 | /* scsi_scan.c */ | |
3c31b52f | 119 | extern char scsi_scan_type[]; |
fea6d607 | 120 | extern int scsi_complete_async_scans(void); |
1da177e4 | 121 | extern int scsi_scan_host_selected(struct Scsi_Host *, unsigned int, |
1d645088 | 122 | unsigned int, u64, enum scsi_scan_mode); |
1da177e4 LT |
123 | extern void scsi_forget_host(struct Scsi_Host *); |
124 | extern void scsi_rescan_device(struct device *); | |
125 | ||
126 | /* scsi_sysctl.c */ | |
127 | #ifdef CONFIG_SYSCTL | |
128 | extern int scsi_init_sysctl(void); | |
129 | extern void scsi_exit_sysctl(void); | |
130 | #else | |
131 | # define scsi_init_sysctl() (0) | |
132 | # define scsi_exit_sysctl() do { } while (0) | |
133 | #endif /* CONFIG_SYSCTL */ | |
134 | ||
135 | /* scsi_sysfs.c */ | |
1da177e4 LT |
136 | extern int scsi_sysfs_add_sdev(struct scsi_device *); |
137 | extern int scsi_sysfs_add_host(struct Scsi_Host *); | |
138 | extern int scsi_sysfs_register(void); | |
139 | extern void scsi_sysfs_unregister(void); | |
140 | extern void scsi_sysfs_device_initialize(struct scsi_device *); | |
141 | extern int scsi_sysfs_target_initialize(struct scsi_device *); | |
142 | extern struct scsi_transport_template blank_transport_template; | |
903f4fed | 143 | extern void __scsi_remove_device(struct scsi_device *); |
1da177e4 | 144 | |
1da177e4 | 145 | extern struct bus_type scsi_bus_type; |
a4dbd674 | 146 | extern const struct attribute_group *scsi_sysfs_shost_attr_groups[]; |
1da177e4 | 147 | |
84314fd4 JS |
148 | /* scsi_netlink.c */ |
149 | #ifdef CONFIG_SCSI_NETLINK | |
150 | extern void scsi_netlink_init(void); | |
151 | extern void scsi_netlink_exit(void); | |
152 | extern struct sock *scsi_nl_sock; | |
153 | #else | |
154 | static inline void scsi_netlink_init(void) {} | |
155 | static inline void scsi_netlink_exit(void) {} | |
156 | #endif | |
157 | ||
db5bd1e0 | 158 | /* scsi_pm.c */ |
aa338601 | 159 | #ifdef CONFIG_PM |
db5bd1e0 | 160 | extern const struct dev_pm_ops scsi_bus_pm_ops; |
4f7ad521 | 161 | |
bc4f2401 AS |
162 | extern void scsi_autopm_get_target(struct scsi_target *); |
163 | extern void scsi_autopm_put_target(struct scsi_target *); | |
164 | extern int scsi_autopm_get_host(struct Scsi_Host *); | |
165 | extern void scsi_autopm_put_host(struct Scsi_Host *); | |
166 | #else | |
167 | static inline void scsi_autopm_get_target(struct scsi_target *t) {} | |
168 | static inline void scsi_autopm_put_target(struct scsi_target *t) {} | |
169 | static inline int scsi_autopm_get_host(struct Scsi_Host *h) { return 0; } | |
170 | static inline void scsi_autopm_put_host(struct Scsi_Host *h) {} | |
4f7ad521 | 171 | #endif /* CONFIG_PM */ |
db5bd1e0 | 172 | |
3c31b52f | 173 | extern struct async_domain scsi_sd_pm_domain; |
2955b47d | 174 | extern struct async_domain scsi_sd_probe_domain; |
a7a20d10 | 175 | |
086b91d0 CH |
176 | /* scsi_dh.c */ |
177 | #ifdef CONFIG_SCSI_DH | |
178 | int scsi_dh_add_device(struct scsi_device *sdev); | |
23695e41 | 179 | void scsi_dh_release_device(struct scsi_device *sdev); |
086b91d0 CH |
180 | #else |
181 | static inline int scsi_dh_add_device(struct scsi_device *sdev) { return 0; } | |
23695e41 | 182 | static inline void scsi_dh_release_device(struct scsi_device *sdev) { } |
086b91d0 | 183 | #endif |
41f95dd2 | 184 | static inline void scsi_dh_remove_device(struct scsi_device *sdev) { } |
086b91d0 | 185 | |
1da177e4 LT |
186 | /* |
187 | * internal scsi timeout functions: for use by mid-layer and transport | |
188 | * classes. | |
189 | */ | |
190 | ||
1c9e16e4 | 191 | #define SCSI_DEVICE_BLOCK_MAX_TIMEOUT 600 /* units in seconds */ |
1da177e4 | 192 | extern int scsi_internal_device_block(struct scsi_device *sdev); |
5d9fb5cc MC |
193 | extern int scsi_internal_device_unblock(struct scsi_device *sdev, |
194 | enum scsi_device_state new_state); | |
1da177e4 LT |
195 | |
196 | #endif /* _SCSI_PRIV_H */ |