blob: 8d77da932d2c33cc1794ff69e9c13c8e93e6fa4b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _SCSI_SCSI_DEVICE_H
2#define _SCSI_SCSI_DEVICE_H
3
4#include <linux/device.h>
5#include <linux/list.h>
6#include <linux/spinlock.h>
7#include <asm/atomic.h>
8
9struct request_queue;
10struct scsi_cmnd;
James Bottomleye10fb912005-07-14 11:54:17 -050011struct scsi_lun;
James Bottomleyea73a9f2005-08-28 11:33:52 -050012struct scsi_sense_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
James Bottomley1cf72692005-08-28 11:27:01 -050014struct scsi_mode_data {
15 __u32 length;
16 __u16 block_descriptor_length;
17 __u8 medium_type;
18 __u8 device_specific;
19 __u8 header_length;
20 __u8 longlba:1;
21};
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
24 * sdev state: If you alter this, you also need to alter scsi_sysfs.c
25 * (for the ascii descriptions) and the state model enforcer:
26 * scsi_lib:scsi_device_set_state().
27 */
28enum scsi_device_state {
29 SDEV_CREATED = 1, /* device created but not added to sysfs
30 * Only internal commands allowed (for inq) */
31 SDEV_RUNNING, /* device properly configured
32 * All commands allowed */
33 SDEV_CANCEL, /* beginning to delete device
34 * Only error handler commands allowed */
35 SDEV_DEL, /* device deleted
36 * no commands allowed */
37 SDEV_QUIESCE, /* Device quiescent. No block commands
38 * will be accepted, only specials (which
39 * originate in the mid-layer) */
40 SDEV_OFFLINE, /* Device offlined (by error handling or
41 * user request */
42 SDEV_BLOCK, /* Device blocked by scsi lld. No scsi
43 * commands from user or midlayer should be issued
44 * to the scsi lld. */
45};
46
47struct scsi_device {
48 struct Scsi_Host *host;
49 struct request_queue *request_queue;
50
51 /* the next two are protected by the host->host_lock */
52 struct list_head siblings; /* list of all devices on this host */
53 struct list_head same_target_siblings; /* just the devices sharing same target id */
54
c2a93312005-04-12 16:38:09 -050055 /* this is now protected by the request_queue->queue_lock */
06f81ea2005-04-17 14:57:29 -050056 unsigned int device_busy; /* commands actually active on
57 * low-level. protected by queue_lock. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 spinlock_t list_lock;
59 struct list_head cmd_list; /* queue of in use SCSI Command structures */
60 struct list_head starved_entry;
61 struct scsi_cmnd *current_cmnd; /* currently active command */
62 unsigned short queue_depth; /* How deep of a queue we want */
63 unsigned short last_queue_full_depth; /* These two are used by */
64 unsigned short last_queue_full_count; /* scsi_track_queue_full() */
65 unsigned long last_queue_full_time;/* don't let QUEUE_FULLs on the same
66 jiffie count on our counter, they
67 could all be from the same event. */
68
69 unsigned int id, lun, channel;
70
71 unsigned int manufacturer; /* Manufacturer of device, for using
72 * vendor-specific cmd's */
73 unsigned sector_size; /* size in bytes */
74
75 void *hostdata; /* available to low-level driver */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 char type;
77 char scsi_level;
78 char inq_periph_qual; /* PQ from INQUIRY data */
79 unsigned char inquiry_len; /* valid bytes in 'inquiry' */
80 unsigned char * inquiry; /* INQUIRY response data */
James Bottomley7f23e142005-12-01 12:50:13 -060081 const char * vendor; /* [back_compat] point into 'inquiry' ... */
82 const char * model; /* ... after scan; point to static string */
83 const char * rev; /* ... "nullnullnullnull" before scan */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 unsigned char current_tag; /* current tag */
85 struct scsi_target *sdev_target; /* used only for single_lun */
86
87 unsigned int sdev_bflags; /* black/white flags as also found in
88 * scsi_devinfo.[hc]. For now used only to
89 * pass settings from slave_alloc to scsi
90 * core. */
91 unsigned writeable:1;
92 unsigned removable:1;
93 unsigned changed:1; /* Data invalid due to media change */
94 unsigned busy:1; /* Used to prevent races */
95 unsigned lockable:1; /* Able to prevent media removal */
96 unsigned locked:1; /* Media removal disabled */
97 unsigned borken:1; /* Tell the Seagate driver to be
98 * painfully slow on this device */
99 unsigned disconnect:1; /* can disconnect */
100 unsigned soft_reset:1; /* Uses soft reset option */
101 unsigned sdtr:1; /* Device supports SDTR messages */
102 unsigned wdtr:1; /* Device supports WDTR messages */
103 unsigned ppr:1; /* Device supports PPR messages */
104 unsigned tagged_supported:1; /* Supports SCSI-II tagged queuing */
105 unsigned simple_tags:1; /* simple queue tag messages are enabled */
106 unsigned ordered_tags:1;/* ordered queue tag messages are enabled */
107 unsigned single_lun:1; /* Indicates we should only allow I/O to
108 * one of the luns for the device at a
109 * time. */
110 unsigned was_reset:1; /* There was a bus reset on the bus for
111 * this device */
112 unsigned expecting_cc_ua:1; /* Expecting a CHECK_CONDITION/UNIT_ATTN
113 * because we did a bus reset. */
114 unsigned use_10_for_rw:1; /* first try 10-byte read / write */
115 unsigned use_10_for_ms:1; /* first try 10-byte mode sense/select */
116 unsigned skip_ms_page_8:1; /* do not use MODE SENSE page 0x08 */
117 unsigned skip_ms_page_3f:1; /* do not use MODE SENSE page 0x3f */
118 unsigned use_192_bytes_for_3f:1; /* ask for 192 bytes from page 0x3f */
119 unsigned no_start_on_add:1; /* do not issue start on add */
120 unsigned allow_restart:1; /* issue START_UNIT in error handler */
121 unsigned no_uld_attach:1; /* disable connecting to upper level drivers */
122 unsigned select_no_atn:1;
123 unsigned fix_capacity:1; /* READ_CAPACITY is too high by 1 */
124 unsigned retry_hwerror:1; /* Retry HARDWARE_ERROR */
125
126 unsigned int device_blocked; /* Device returned QUEUE_FULL. */
127
128 unsigned int max_device_blocked; /* what device_blocked counts down from */
129#define SCSI_DEFAULT_DEVICE_BLOCKED 3
130
131 atomic_t iorequest_cnt;
132 atomic_t iodone_cnt;
133 atomic_t ioerr_cnt;
134
135 int timeout;
136
137 struct device sdev_gendev;
138 struct class_device sdev_classdev;
139
140 enum scsi_device_state sdev_state;
141 unsigned long sdev_data[0];
142} __attribute__((aligned(sizeof(unsigned long))));
143#define to_scsi_device(d) \
144 container_of(d, struct scsi_device, sdev_gendev)
145#define class_to_sdev(d) \
146 container_of(d, struct scsi_device, sdev_classdev)
147#define transport_class_to_sdev(class_dev) \
148 to_scsi_device(class_dev->dev)
149
James Bottomley9ccfc752005-10-02 11:45:08 -0500150#define sdev_printk(prefix, sdev, fmt, a...) \
151 dev_printk(prefix, &(sdev)->sdev_gendev, fmt, ##a)
152
Jeff Garzik01d7b3b2005-10-24 18:03:34 -0400153#define scmd_printk(prefix, scmd, fmt, a...) \
154 dev_printk(prefix, &(scmd)->device->sdev_gendev, fmt, ##a)
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * scsi_target: representation of a scsi target, for now, this is only
158 * used for single_lun devices. If no one has active IO to the target,
159 * starget_sdev_user is NULL, else it points to the active sdev.
160 */
161struct scsi_target {
162 struct scsi_device *starget_sdev_user;
163 struct list_head siblings;
164 struct list_head devices;
165 struct device dev;
166 unsigned int reap_ref; /* protected by the host lock */
167 unsigned int channel;
168 unsigned int id; /* target id ... replace
169 * scsi_device.id eventually */
Alan Stern1bfc5d92006-02-09 15:26:18 -0500170 unsigned int create:1; /* signal that it needs to be added */
171 unsigned int pdt_1f_for_no_lun; /* PDT = 0x1f */
172 /* means no lun present */
173
James Bottomley6f3a2022005-09-22 20:33:28 -0500174 char scsi_level;
James Bottomleya283bd32005-05-24 12:06:38 -0500175 void *hostdata; /* available to low-level driver */
176 unsigned long starget_data[0]; /* for the transport */
177 /* starget_data must be the last element!!!! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178} __attribute__((aligned(sizeof(unsigned long))));
179
180#define to_scsi_target(d) container_of(d, struct scsi_target, dev)
181static inline struct scsi_target *scsi_target(struct scsi_device *sdev)
182{
183 return to_scsi_target(sdev->sdev_gendev.parent);
184}
185#define transport_class_to_starget(class_dev) \
186 to_scsi_target(class_dev->dev)
187
James Bottomley9ccfc752005-10-02 11:45:08 -0500188#define starget_printk(prefix, starget, fmt, a...) \
189 dev_printk(prefix, &(starget)->dev, fmt, ##a)
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191extern struct scsi_device *__scsi_add_device(struct Scsi_Host *,
192 uint, uint, uint, void *hostdata);
James Bottomley146f7262005-09-10 12:44:09 -0500193extern int scsi_add_device(struct Scsi_Host *host, uint channel,
194 uint target, uint lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195extern void scsi_remove_device(struct scsi_device *);
196extern int scsi_device_cancel(struct scsi_device *, int);
197
198extern int scsi_device_get(struct scsi_device *);
199extern void scsi_device_put(struct scsi_device *);
200extern struct scsi_device *scsi_device_lookup(struct Scsi_Host *,
201 uint, uint, uint);
202extern struct scsi_device *__scsi_device_lookup(struct Scsi_Host *,
203 uint, uint, uint);
204extern struct scsi_device *scsi_device_lookup_by_target(struct scsi_target *,
205 uint);
206extern struct scsi_device *__scsi_device_lookup_by_target(struct scsi_target *,
207 uint);
208extern void starget_for_each_device(struct scsi_target *, void *,
209 void (*fn)(struct scsi_device *, void *));
210
211/* only exposed to implement shost_for_each_device */
212extern struct scsi_device *__scsi_iterate_devices(struct Scsi_Host *,
213 struct scsi_device *);
214
215/**
216 * shost_for_each_device - iterate over all devices of a host
217 * @sdev: iterator
218 * @host: host whiches devices we want to iterate over
219 *
220 * This traverses over each devices of @shost. The devices have
221 * a reference that must be released by scsi_host_put when breaking
222 * out of the loop.
223 */
224#define shost_for_each_device(sdev, shost) \
225 for ((sdev) = __scsi_iterate_devices((shost), NULL); \
226 (sdev); \
227 (sdev) = __scsi_iterate_devices((shost), (sdev)))
228
229/**
230 * __shost_for_each_device - iterate over all devices of a host (UNLOCKED)
231 * @sdev: iterator
232 * @host: host whiches devices we want to iterate over
233 *
234 * This traverses over each devices of @shost. It does _not_ take a
235 * reference on the scsi_device, thus it the whole loop must be protected
236 * by shost->host_lock.
237 *
238 * Note: The only reason why drivers would want to use this is because
239 * they're need to access the device list in irq context. Otherwise you
240 * really want to use shost_for_each_device instead.
241 */
242#define __shost_for_each_device(sdev, shost) \
243 list_for_each_entry((sdev), &((shost)->__devices), siblings)
244
245extern void scsi_adjust_queue_depth(struct scsi_device *, int, int);
246extern int scsi_track_queue_full(struct scsi_device *, int);
247
248extern int scsi_set_medium_removal(struct scsi_device *, char);
249
250extern int scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
251 unsigned char *buffer, int len, int timeout,
James Bottomley1cf72692005-08-28 11:27:01 -0500252 int retries, struct scsi_mode_data *data,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500253 struct scsi_sense_hdr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254extern int scsi_test_unit_ready(struct scsi_device *sdev, int timeout,
255 int retries);
256extern int scsi_device_set_state(struct scsi_device *sdev,
257 enum scsi_device_state state);
258extern int scsi_device_quiesce(struct scsi_device *sdev);
259extern void scsi_device_resume(struct scsi_device *sdev);
260extern void scsi_target_quiesce(struct scsi_target *);
261extern void scsi_target_resume(struct scsi_target *);
262extern void scsi_scan_target(struct device *parent, unsigned int channel,
263 unsigned int id, unsigned int lun, int rescan);
264extern void scsi_target_reap(struct scsi_target *);
265extern void scsi_target_block(struct device *);
266extern void scsi_target_unblock(struct device *);
267extern void scsi_remove_target(struct device *);
James.Smart@Emulex.Com2f4701d2005-07-13 22:05:03 -0400268extern void int_to_scsilun(unsigned int, struct scsi_lun *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269extern const char *scsi_device_state_name(enum scsi_device_state);
270extern int scsi_is_sdev_device(const struct device *);
271extern int scsi_is_target_device(const struct device *);
James Bottomley33aa6872005-08-28 11:31:14 -0500272extern int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
273 int data_direction, void *buffer, unsigned bufflen,
274 unsigned char *sense, int timeout, int retries,
275 int flag);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500276extern int scsi_execute_req(struct scsi_device *sdev, const unsigned char *cmd,
277 int data_direction, void *buffer, unsigned bufflen,
278 struct scsi_sense_hdr *, int timeout, int retries);
Mike Christie6e68af62005-11-11 05:30:27 -0600279extern int scsi_execute_async(struct scsi_device *sdev,
brking@us.ibm.combb1d1072006-01-23 15:03:22 -0600280 const unsigned char *cmd, int cmd_len, int data_direction,
Mike Christie6e68af62005-11-11 05:30:27 -0600281 void *buffer, unsigned bufflen, int use_sg,
282 int timeout, int retries, void *privdata,
283 void (*done)(void *, char *, int, int),
284 gfp_t gfp);
James Bottomley33aa6872005-08-28 11:31:14 -0500285
Jeff Garzik01d7b3b2005-10-24 18:03:34 -0400286static inline unsigned int sdev_channel(struct scsi_device *sdev)
287{
288 return sdev->channel;
289}
290
291static inline unsigned int sdev_id(struct scsi_device *sdev)
292{
293 return sdev->id;
294}
295
296#define scmd_id(scmd) sdev_id((scmd)->device)
297#define scmd_channel(scmd) sdev_channel((scmd)->device)
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299static inline int scsi_device_online(struct scsi_device *sdev)
300{
301 return sdev->sdev_state != SDEV_OFFLINE;
302}
303
304/* accessor functions for the SCSI parameters */
305static inline int scsi_device_sync(struct scsi_device *sdev)
306{
307 return sdev->sdtr;
308}
309static inline int scsi_device_wide(struct scsi_device *sdev)
310{
311 return sdev->wdtr;
312}
313static inline int scsi_device_dt(struct scsi_device *sdev)
314{
315 return sdev->ppr;
316}
317static inline int scsi_device_dt_only(struct scsi_device *sdev)
318{
319 if (sdev->inquiry_len < 57)
320 return 0;
321 return (sdev->inquiry[56] & 0x0c) == 0x04;
322}
323static inline int scsi_device_ius(struct scsi_device *sdev)
324{
325 if (sdev->inquiry_len < 57)
326 return 0;
327 return sdev->inquiry[56] & 0x01;
328}
329static inline int scsi_device_qas(struct scsi_device *sdev)
330{
331 if (sdev->inquiry_len < 57)
332 return 0;
333 return sdev->inquiry[56] & 0x02;
334}
335#endif /* _SCSI_SCSI_DEVICE_H */