scsi_driver.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _SCSI_SCSI_DRIVER_H
  3. #define _SCSI_SCSI_DRIVER_H
  4. #include <linux/blk_types.h>
  5. #include <linux/device.h>
  6. #include <scsi/scsi_cmnd.h>
  7. struct module;
  8. struct request;
  9. struct scsi_driver {
  10. struct device_driver gendrv;
  11. int (*probe)(struct scsi_device *);
  12. void (*remove)(struct scsi_device *);
  13. void (*shutdown)(struct scsi_device *);
  14. int (*resume)(struct device *);
  15. void (*rescan)(struct device *);
  16. blk_status_t (*init_command)(struct scsi_cmnd *);
  17. void (*uninit_command)(struct scsi_cmnd *);
  18. int (*done)(struct scsi_cmnd *);
  19. int (*eh_action)(struct scsi_cmnd *, int);
  20. void (*eh_reset)(struct scsi_cmnd *);
  21. };
  22. #define to_scsi_driver(drv) \
  23. container_of((drv), struct scsi_driver, gendrv)
  24. #define scsi_register_driver(drv) \
  25. __scsi_register_driver(drv, THIS_MODULE)
  26. int __scsi_register_driver(struct scsi_driver *, struct module *);
  27. #define scsi_unregister_driver(drv) \
  28. driver_unregister(&(drv)->gendrv);
  29. extern int scsi_register_interface(struct class_interface *);
  30. #define scsi_unregister_interface(intf) \
  31. class_interface_unregister(intf)
  32. /* make sure not to use it with passthrough commands */
  33. static inline struct scsi_driver *scsi_cmd_to_driver(struct scsi_cmnd *cmd)
  34. {
  35. return to_scsi_driver(cmd->device->sdev_gendev.driver);
  36. }
  37. #endif /* _SCSI_SCSI_DRIVER_H */