scsi_priv.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #ifndef _SCSI_PRIV_H
  2. #define _SCSI_PRIV_H
  3. #include <linux/device.h>
  4. struct request_queue;
  5. struct request;
  6. struct scsi_cmnd;
  7. struct scsi_device;
  8. struct scsi_host_template;
  9. struct Scsi_Host;
  10. struct scsi_nl_hdr;
  11. /*
  12. * Scsi Error Handler Flags
  13. */
  14. #define SCSI_EH_CANCEL_CMD 0x0001 /* Cancel this cmd */
  15. #define SCSI_SENSE_VALID(scmd) \
  16. (((scmd)->sense_buffer[0] & 0x70) == 0x70)
  17. /* hosts.c */
  18. extern int scsi_init_hosts(void);
  19. extern void scsi_exit_hosts(void);
  20. /* scsi.c */
  21. extern int scsi_dispatch_cmd(struct scsi_cmnd *cmd);
  22. extern int scsi_setup_command_freelist(struct Scsi_Host *shost);
  23. extern void scsi_destroy_command_freelist(struct Scsi_Host *shost);
  24. #ifdef CONFIG_SCSI_LOGGING
  25. void scsi_log_send(struct scsi_cmnd *cmd);
  26. void scsi_log_completion(struct scsi_cmnd *cmd, int disposition);
  27. #else
  28. static inline void scsi_log_send(struct scsi_cmnd *cmd)
  29. { };
  30. static inline void scsi_log_completion(struct scsi_cmnd *cmd, int disposition)
  31. { };
  32. #endif
  33. /* scsi_devinfo.c */
  34. /* list of keys for the lists */
  35. enum {
  36. SCSI_DEVINFO_GLOBAL = 0,
  37. SCSI_DEVINFO_SPI,
  38. };
  39. extern int scsi_get_device_flags(struct scsi_device *sdev,
  40. const unsigned char *vendor,
  41. const unsigned char *model);
  42. extern int scsi_get_device_flags_keyed(struct scsi_device *sdev,
  43. const unsigned char *vendor,
  44. const unsigned char *model, int key);
  45. extern int scsi_dev_info_list_add_keyed(int compatible, char *vendor,
  46. char *model, char *strflags,
  47. int flags, int key);
  48. extern int scsi_dev_info_add_list(int key, const char *name);
  49. extern int scsi_dev_info_remove_list(int key);
  50. extern int __init scsi_init_devinfo(void);
  51. extern void scsi_exit_devinfo(void);
  52. /* scsi_error.c */
  53. extern enum blk_eh_timer_return scsi_times_out(struct request *req);
  54. extern int scsi_error_handler(void *host);
  55. extern int scsi_decide_disposition(struct scsi_cmnd *cmd);
  56. extern void scsi_eh_wakeup(struct Scsi_Host *shost);
  57. extern int scsi_eh_scmd_add(struct scsi_cmnd *, int);
  58. void scsi_eh_ready_devs(struct Scsi_Host *shost,
  59. struct list_head *work_q,
  60. struct list_head *done_q);
  61. int scsi_eh_get_sense(struct list_head *work_q,
  62. struct list_head *done_q);
  63. int scsi_noretry_cmd(struct scsi_cmnd *scmd);
  64. /* scsi_lib.c */
  65. extern int scsi_maybe_unblock_host(struct scsi_device *sdev);
  66. extern void scsi_device_unbusy(struct scsi_device *sdev);
  67. extern int scsi_queue_insert(struct scsi_cmnd *cmd, int reason);
  68. extern void scsi_next_command(struct scsi_cmnd *cmd);
  69. extern void scsi_io_completion(struct scsi_cmnd *, unsigned int);
  70. extern void scsi_run_host_queues(struct Scsi_Host *shost);
  71. extern struct request_queue *scsi_alloc_queue(struct scsi_device *sdev);
  72. extern void scsi_free_queue(struct request_queue *q);
  73. extern int scsi_init_queue(void);
  74. extern void scsi_exit_queue(void);
  75. struct request_queue;
  76. struct request;
  77. extern struct kmem_cache *scsi_sdb_cache;
  78. /* scsi_proc.c */
  79. #ifdef CONFIG_SCSI_PROC_FS
  80. extern void scsi_proc_hostdir_add(struct scsi_host_template *);
  81. extern void scsi_proc_hostdir_rm(struct scsi_host_template *);
  82. extern void scsi_proc_host_add(struct Scsi_Host *);
  83. extern void scsi_proc_host_rm(struct Scsi_Host *);
  84. extern int scsi_init_procfs(void);
  85. extern void scsi_exit_procfs(void);
  86. #else
  87. # define scsi_proc_hostdir_add(sht) do { } while (0)
  88. # define scsi_proc_hostdir_rm(sht) do { } while (0)
  89. # define scsi_proc_host_add(shost) do { } while (0)
  90. # define scsi_proc_host_rm(shost) do { } while (0)
  91. # define scsi_init_procfs() (0)
  92. # define scsi_exit_procfs() do { } while (0)
  93. #endif /* CONFIG_PROC_FS */
  94. /* scsi_scan.c */
  95. extern int scsi_scan_host_selected(struct Scsi_Host *, unsigned int,
  96. unsigned int, unsigned int, int);
  97. extern void scsi_forget_host(struct Scsi_Host *);
  98. extern void scsi_rescan_device(struct device *);
  99. /* scsi_sysctl.c */
  100. #ifdef CONFIG_SYSCTL
  101. extern int scsi_init_sysctl(void);
  102. extern void scsi_exit_sysctl(void);
  103. #else
  104. # define scsi_init_sysctl() (0)
  105. # define scsi_exit_sysctl() do { } while (0)
  106. #endif /* CONFIG_SYSCTL */
  107. /* scsi_sysfs.c */
  108. extern int scsi_sysfs_add_sdev(struct scsi_device *);
  109. extern int scsi_sysfs_add_host(struct Scsi_Host *);
  110. extern int scsi_sysfs_register(void);
  111. extern void scsi_sysfs_unregister(void);
  112. extern void scsi_sysfs_device_initialize(struct scsi_device *);
  113. extern int scsi_sysfs_target_initialize(struct scsi_device *);
  114. extern struct scsi_transport_template blank_transport_template;
  115. extern void __scsi_remove_device(struct scsi_device *);
  116. extern struct bus_type scsi_bus_type;
  117. extern struct attribute_group *scsi_sysfs_shost_attr_groups[];
  118. /* scsi_netlink.c */
  119. #ifdef CONFIG_SCSI_NETLINK
  120. extern void scsi_netlink_init(void);
  121. extern void scsi_netlink_exit(void);
  122. extern struct sock *scsi_nl_sock;
  123. #else
  124. static inline void scsi_netlink_init(void) {}
  125. static inline void scsi_netlink_exit(void) {}
  126. #endif
  127. /*
  128. * internal scsi timeout functions: for use by mid-layer and transport
  129. * classes.
  130. */
  131. #define SCSI_DEVICE_BLOCK_MAX_TIMEOUT 600 /* units in seconds */
  132. extern int scsi_internal_device_block(struct scsi_device *sdev);
  133. extern int scsi_internal_device_unblock(struct scsi_device *sdev);
  134. #endif /* _SCSI_PRIV_H */