blob: 8f9a0cadc296fbe6c6c5ef6aa275267c626a8e7e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _SCSI_PRIV_H
2#define _SCSI_PRIV_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/device.h>
Dan Williams2955b472012-07-09 19:33:25 -07005#include <linux/async.h>
Mike Christie5d9fb5c2012-05-17 23:56:57 -05006#include <scsi/scsi_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8struct request_queue;
Jens Axboe242f9dc2008-09-14 05:55:09 -07009struct request;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010struct scsi_cmnd;
11struct scsi_device;
Alan Sternbc4f2402010-06-17 10:41:42 -040012struct scsi_target;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013struct scsi_host_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014struct Scsi_Host;
James Smart84314fd2006-08-18 17:30:09 -040015struct scsi_nl_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17
18/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Scsi Error Handler Flags
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define SCSI_EH_CANCEL_CMD 0x0001 /* Cancel this cmd */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#define SCSI_SENSE_VALID(scmd) \
24 (((scmd)->sense_buffer[0] & 0x70) == 0x70)
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* hosts.c */
27extern int scsi_init_hosts(void);
28extern void scsi_exit_hosts(void);
29
30/* scsi.c */
31extern int scsi_dispatch_cmd(struct scsi_cmnd *cmd);
32extern int scsi_setup_command_freelist(struct Scsi_Host *shost);
33extern void scsi_destroy_command_freelist(struct Scsi_Host *shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#ifdef CONFIG_SCSI_LOGGING
35void scsi_log_send(struct scsi_cmnd *cmd);
36void scsi_log_completion(struct scsi_cmnd *cmd, int disposition);
37#else
38static inline void scsi_log_send(struct scsi_cmnd *cmd)
39 { };
40static inline void scsi_log_completion(struct scsi_cmnd *cmd, int disposition)
41 { };
42#endif
43
44/* scsi_devinfo.c */
James Bottomley598fa4b2009-06-17 15:01:58 -040045
46/* list of keys for the lists */
47enum {
48 SCSI_DEVINFO_GLOBAL = 0,
James Bottomleya9e0edb2009-06-17 19:05:05 +000049 SCSI_DEVINFO_SPI,
James Bottomley598fa4b2009-06-17 15:01:58 -040050};
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052extern int scsi_get_device_flags(struct scsi_device *sdev,
James Bottomley7f23e142005-12-01 12:50:13 -060053 const unsigned char *vendor,
54 const unsigned char *model);
James Bottomley598fa4b2009-06-17 15:01:58 -040055extern int scsi_get_device_flags_keyed(struct scsi_device *sdev,
56 const unsigned char *vendor,
57 const unsigned char *model, int key);
58extern int scsi_dev_info_list_add_keyed(int compatible, char *vendor,
59 char *model, char *strflags,
60 int flags, int key);
Peter Jones38a039b2011-01-06 15:31:29 -050061extern int scsi_dev_info_list_del_keyed(char *vendor, char *model, int key);
James Bottomley598fa4b2009-06-17 15:01:58 -040062extern int scsi_dev_info_add_list(int key, const char *name);
63extern int scsi_dev_info_remove_list(int key);
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065extern int __init scsi_init_devinfo(void);
66extern void scsi_exit_devinfo(void);
67
68/* scsi_error.c */
Jens Axboe242f9dc2008-09-14 05:55:09 -070069extern enum blk_eh_timer_return scsi_times_out(struct request *req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070extern int scsi_error_handler(void *host);
71extern int scsi_decide_disposition(struct scsi_cmnd *cmd);
72extern void scsi_eh_wakeup(struct Scsi_Host *shost);
73extern int scsi_eh_scmd_add(struct scsi_cmnd *, int);
Darrick J. Wongdca84e42007-01-26 14:08:49 -080074void scsi_eh_ready_devs(struct Scsi_Host *shost,
75 struct list_head *work_q,
76 struct list_head *done_q);
77int scsi_eh_get_sense(struct list_head *work_q,
78 struct list_head *done_q);
Mike Christie4a274462008-08-19 18:45:31 -050079int scsi_noretry_cmd(struct scsi_cmnd *scmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* scsi_lib.c */
82extern int scsi_maybe_unblock_host(struct scsi_device *sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083extern void scsi_device_unbusy(struct scsi_device *sdev);
Bart Van Assche84feb162012-06-29 15:35:05 +000084extern void scsi_queue_insert(struct scsi_cmnd *cmd, int reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085extern void scsi_next_command(struct scsi_cmnd *cmd);
Linus Torvalds7b3d9542008-01-06 10:17:12 -080086extern void scsi_io_completion(struct scsi_cmnd *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087extern void scsi_run_host_queues(struct Scsi_Host *shost);
88extern struct request_queue *scsi_alloc_queue(struct scsi_device *sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089extern int scsi_init_queue(void);
90extern void scsi_exit_queue(void);
James Bottomley751bf4d2008-01-02 11:14:30 -060091struct request_queue;
92struct request;
Martin K. Petersen7027ad72008-07-17 17:08:48 -040093extern struct kmem_cache *scsi_sdb_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/* scsi_proc.c */
96#ifdef CONFIG_SCSI_PROC_FS
97extern void scsi_proc_hostdir_add(struct scsi_host_template *);
98extern void scsi_proc_hostdir_rm(struct scsi_host_template *);
99extern void scsi_proc_host_add(struct Scsi_Host *);
100extern void scsi_proc_host_rm(struct Scsi_Host *);
101extern int scsi_init_procfs(void);
102extern void scsi_exit_procfs(void);
103#else
104# define scsi_proc_hostdir_add(sht) do { } while (0)
105# define scsi_proc_hostdir_rm(sht) do { } while (0)
106# define scsi_proc_host_add(shost) do { } while (0)
107# define scsi_proc_host_rm(shost) do { } while (0)
108# define scsi_init_procfs() (0)
109# define scsi_exit_procfs() do { } while (0)
110#endif /* CONFIG_PROC_FS */
111
112/* scsi_scan.c */
Alan Sternfea6d602012-02-17 16:25:08 -0500113extern int scsi_complete_async_scans(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114extern int scsi_scan_host_selected(struct Scsi_Host *, unsigned int,
115 unsigned int, unsigned int, int);
116extern void scsi_forget_host(struct Scsi_Host *);
117extern void scsi_rescan_device(struct device *);
118
119/* scsi_sysctl.c */
120#ifdef CONFIG_SYSCTL
121extern int scsi_init_sysctl(void);
122extern void scsi_exit_sysctl(void);
123#else
124# define scsi_init_sysctl() (0)
125# define scsi_exit_sysctl() do { } while (0)
126#endif /* CONFIG_SYSCTL */
127
128/* scsi_sysfs.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129extern int scsi_sysfs_add_sdev(struct scsi_device *);
130extern int scsi_sysfs_add_host(struct Scsi_Host *);
131extern int scsi_sysfs_register(void);
132extern void scsi_sysfs_unregister(void);
133extern void scsi_sysfs_device_initialize(struct scsi_device *);
134extern int scsi_sysfs_target_initialize(struct scsi_device *);
135extern struct scsi_transport_template blank_transport_template;
Alan Stern903f4fe2005-07-26 10:20:53 -0400136extern void __scsi_remove_device(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138extern struct bus_type scsi_bus_type;
David Brownella4dbd672009-06-24 10:06:31 -0700139extern const struct attribute_group *scsi_sysfs_shost_attr_groups[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
James Smart84314fd2006-08-18 17:30:09 -0400141/* scsi_netlink.c */
142#ifdef CONFIG_SCSI_NETLINK
143extern void scsi_netlink_init(void);
144extern void scsi_netlink_exit(void);
145extern struct sock *scsi_nl_sock;
146#else
147static inline void scsi_netlink_init(void) {}
148static inline void scsi_netlink_exit(void) {}
149#endif
150
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400151/* scsi_pm.c */
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100152#ifdef CONFIG_PM
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400153extern const struct dev_pm_ops scsi_bus_pm_ops;
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400154#endif
Alan Sternbc4f2402010-06-17 10:41:42 -0400155#ifdef CONFIG_PM_RUNTIME
156extern void scsi_autopm_get_target(struct scsi_target *);
157extern void scsi_autopm_put_target(struct scsi_target *);
158extern int scsi_autopm_get_host(struct Scsi_Host *);
159extern void scsi_autopm_put_host(struct Scsi_Host *);
160#else
161static inline void scsi_autopm_get_target(struct scsi_target *t) {}
162static inline void scsi_autopm_put_target(struct scsi_target *t) {}
163static inline int scsi_autopm_get_host(struct Scsi_Host *h) { return 0; }
164static inline void scsi_autopm_put_host(struct Scsi_Host *h) {}
165#endif /* CONFIG_PM_RUNTIME */
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400166
Dan Williams2955b472012-07-09 19:33:25 -0700167extern struct async_domain scsi_sd_probe_domain;
Dan Williamsa7a20d12012-03-22 17:05:11 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169/*
170 * internal scsi timeout functions: for use by mid-layer and transport
171 * classes.
172 */
173
James Smart1c9e16e2006-05-16 16:13:36 -0400174#define SCSI_DEVICE_BLOCK_MAX_TIMEOUT 600 /* units in seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175extern int scsi_internal_device_block(struct scsi_device *sdev);
Mike Christie5d9fb5c2012-05-17 23:56:57 -0500176extern int scsi_internal_device_unblock(struct scsi_device *sdev,
177 enum scsi_device_state new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179#endif /* _SCSI_PRIV_H */