blob: 12b8e1bee7f099fd04ce6686a88e2db21477086d [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 */
Hannes Reineckee494f6a2013-11-11 13:44:54 +010022#define SCSI_EH_ABORT_SCHEDULED 0x0002 /* Abort has been scheduled */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#define SCSI_SENSE_VALID(scmd) \
25 (((scmd)->sense_buffer[0] & 0x70) == 0x70)
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/* hosts.c */
28extern int scsi_init_hosts(void);
29extern void scsi_exit_hosts(void);
30
31/* scsi.c */
32extern int scsi_dispatch_cmd(struct scsi_cmnd *cmd);
33extern int scsi_setup_command_freelist(struct Scsi_Host *shost);
34extern void scsi_destroy_command_freelist(struct Scsi_Host *shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#ifdef CONFIG_SCSI_LOGGING
36void scsi_log_send(struct scsi_cmnd *cmd);
37void scsi_log_completion(struct scsi_cmnd *cmd, int disposition);
38#else
39static inline void scsi_log_send(struct scsi_cmnd *cmd)
40 { };
41static inline void scsi_log_completion(struct scsi_cmnd *cmd, int disposition)
42 { };
43#endif
44
45/* scsi_devinfo.c */
James Bottomley598fa4b2009-06-17 15:01:58 -040046
47/* list of keys for the lists */
48enum {
49 SCSI_DEVINFO_GLOBAL = 0,
James Bottomleya9e0edb2009-06-17 19:05:05 +000050 SCSI_DEVINFO_SPI,
James Bottomley598fa4b2009-06-17 15:01:58 -040051};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053extern int scsi_get_device_flags(struct scsi_device *sdev,
James Bottomley7f23e142005-12-01 12:50:13 -060054 const unsigned char *vendor,
55 const unsigned char *model);
James Bottomley598fa4b2009-06-17 15:01:58 -040056extern int scsi_get_device_flags_keyed(struct scsi_device *sdev,
57 const unsigned char *vendor,
58 const unsigned char *model, int key);
59extern int scsi_dev_info_list_add_keyed(int compatible, char *vendor,
60 char *model, char *strflags,
61 int flags, int key);
Peter Jones38a039b2011-01-06 15:31:29 -050062extern int scsi_dev_info_list_del_keyed(char *vendor, char *model, int key);
James Bottomley598fa4b2009-06-17 15:01:58 -040063extern int scsi_dev_info_add_list(int key, const char *name);
64extern int scsi_dev_info_remove_list(int key);
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066extern int __init scsi_init_devinfo(void);
67extern void scsi_exit_devinfo(void);
68
69/* scsi_error.c */
Hannes Reineckee494f6a2013-11-11 13:44:54 +010070extern void scmd_eh_abort_handler(struct work_struct *work);
Jens Axboe242f9dc2008-09-14 05:55:09 -070071extern enum blk_eh_timer_return scsi_times_out(struct request *req);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072extern int scsi_error_handler(void *host);
73extern int scsi_decide_disposition(struct scsi_cmnd *cmd);
74extern void scsi_eh_wakeup(struct Scsi_Host *shost);
75extern int scsi_eh_scmd_add(struct scsi_cmnd *, int);
Darrick J. Wongdca84e42007-01-26 14:08:49 -080076void scsi_eh_ready_devs(struct Scsi_Host *shost,
77 struct list_head *work_q,
78 struct list_head *done_q);
79int scsi_eh_get_sense(struct list_head *work_q,
80 struct list_head *done_q);
Mike Christie4a274462008-08-19 18:45:31 -050081int scsi_noretry_cmd(struct scsi_cmnd *scmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/* scsi_lib.c */
84extern int scsi_maybe_unblock_host(struct scsi_device *sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085extern void scsi_device_unbusy(struct scsi_device *sdev);
Bart Van Assche84feb162012-06-29 15:35:05 +000086extern void scsi_queue_insert(struct scsi_cmnd *cmd, int reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087extern void scsi_next_command(struct scsi_cmnd *cmd);
Linus Torvalds7b3d9542008-01-06 10:17:12 -080088extern void scsi_io_completion(struct scsi_cmnd *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089extern void scsi_run_host_queues(struct Scsi_Host *shost);
90extern struct request_queue *scsi_alloc_queue(struct scsi_device *sdev);
Christoph Hellwigd2852032014-01-17 12:06:53 +010091extern struct request_queue *scsi_mq_alloc_queue(struct scsi_device *sdev);
92extern int scsi_mq_setup_tags(struct Scsi_Host *shost);
93extern void scsi_mq_destroy_tags(struct Scsi_Host *shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094extern int scsi_init_queue(void);
95extern void scsi_exit_queue(void);
James Bottomley751bf4d2008-01-02 11:14:30 -060096struct request_queue;
97struct request;
Martin K. Petersen7027ad72008-07-17 17:08:48 -040098extern struct kmem_cache *scsi_sdb_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/* scsi_proc.c */
101#ifdef CONFIG_SCSI_PROC_FS
102extern void scsi_proc_hostdir_add(struct scsi_host_template *);
103extern void scsi_proc_hostdir_rm(struct scsi_host_template *);
104extern void scsi_proc_host_add(struct Scsi_Host *);
105extern void scsi_proc_host_rm(struct Scsi_Host *);
106extern int scsi_init_procfs(void);
107extern void scsi_exit_procfs(void);
108#else
109# define scsi_proc_hostdir_add(sht) do { } while (0)
110# define scsi_proc_hostdir_rm(sht) do { } while (0)
111# define scsi_proc_host_add(shost) do { } while (0)
112# define scsi_proc_host_rm(shost) do { } while (0)
113# define scsi_init_procfs() (0)
114# define scsi_exit_procfs() do { } while (0)
115#endif /* CONFIG_PROC_FS */
116
117/* scsi_scan.c */
Dan Williams3c31b522014-04-10 15:30:35 -0700118extern char scsi_scan_type[];
Alan Sternfea6d602012-02-17 16:25:08 -0500119extern int scsi_complete_async_scans(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120extern int scsi_scan_host_selected(struct Scsi_Host *, unsigned int,
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200121 unsigned int, u64, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122extern void scsi_forget_host(struct Scsi_Host *);
123extern void scsi_rescan_device(struct device *);
124
125/* scsi_sysctl.c */
126#ifdef CONFIG_SYSCTL
127extern int scsi_init_sysctl(void);
128extern void scsi_exit_sysctl(void);
129#else
130# define scsi_init_sysctl() (0)
131# define scsi_exit_sysctl() do { } while (0)
132#endif /* CONFIG_SYSCTL */
133
134/* scsi_sysfs.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135extern int scsi_sysfs_add_sdev(struct scsi_device *);
136extern int scsi_sysfs_add_host(struct Scsi_Host *);
137extern int scsi_sysfs_register(void);
138extern void scsi_sysfs_unregister(void);
139extern void scsi_sysfs_device_initialize(struct scsi_device *);
140extern int scsi_sysfs_target_initialize(struct scsi_device *);
141extern struct scsi_transport_template blank_transport_template;
Alan Stern903f4fe2005-07-26 10:20:53 -0400142extern void __scsi_remove_device(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144extern struct bus_type scsi_bus_type;
David Brownella4dbd672009-06-24 10:06:31 -0700145extern const struct attribute_group *scsi_sysfs_shost_attr_groups[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
James Smart84314fd2006-08-18 17:30:09 -0400147/* scsi_netlink.c */
148#ifdef CONFIG_SCSI_NETLINK
149extern void scsi_netlink_init(void);
150extern void scsi_netlink_exit(void);
151extern struct sock *scsi_nl_sock;
152#else
153static inline void scsi_netlink_init(void) {}
154static inline void scsi_netlink_exit(void) {}
155#endif
156
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400157/* scsi_pm.c */
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100158#ifdef CONFIG_PM
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400159extern const struct dev_pm_ops scsi_bus_pm_ops;
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400160#endif
Alan Sternbc4f2402010-06-17 10:41:42 -0400161#ifdef CONFIG_PM_RUNTIME
162extern void scsi_autopm_get_target(struct scsi_target *);
163extern void scsi_autopm_put_target(struct scsi_target *);
164extern int scsi_autopm_get_host(struct Scsi_Host *);
165extern void scsi_autopm_put_host(struct Scsi_Host *);
166#else
167static inline void scsi_autopm_get_target(struct scsi_target *t) {}
168static inline void scsi_autopm_put_target(struct scsi_target *t) {}
169static inline int scsi_autopm_get_host(struct Scsi_Host *h) { return 0; }
170static inline void scsi_autopm_put_host(struct Scsi_Host *h) {}
171#endif /* CONFIG_PM_RUNTIME */
Alan Sterndb5bd1e2010-06-17 10:36:49 -0400172
Dan Williams3c31b522014-04-10 15:30:35 -0700173extern struct async_domain scsi_sd_pm_domain;
Dan Williams2955b472012-07-09 19:33:25 -0700174extern struct async_domain scsi_sd_probe_domain;
Dan Williamsa7a20d12012-03-22 17:05:11 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
177 * internal scsi timeout functions: for use by mid-layer and transport
178 * classes.
179 */
180
James Smart1c9e16e2006-05-16 16:13:36 -0400181#define SCSI_DEVICE_BLOCK_MAX_TIMEOUT 600 /* units in seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182extern int scsi_internal_device_block(struct scsi_device *sdev);
Mike Christie5d9fb5c2012-05-17 23:56:57 -0500183extern int scsi_internal_device_unblock(struct scsi_device *sdev,
184 enum scsi_device_state new_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186#endif /* _SCSI_PRIV_H */