target_core_backend.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef TARGET_CORE_BACKEND_H
  2. #define TARGET_CORE_BACKEND_H
  3. #define TRANSPORT_PLUGIN_PHBA_PDEV 1
  4. #define TRANSPORT_PLUGIN_VHBA_PDEV 2
  5. #define TRANSPORT_PLUGIN_VHBA_VDEV 3
  6. struct se_subsystem_api {
  7. struct list_head sub_api_list;
  8. char name[16];
  9. struct module *owner;
  10. u8 transport_type;
  11. unsigned int fua_write_emulated : 1;
  12. unsigned int write_cache_emulated : 1;
  13. int (*attach_hba)(struct se_hba *, u32);
  14. void (*detach_hba)(struct se_hba *);
  15. int (*pmode_enable_hba)(struct se_hba *, unsigned long);
  16. void *(*allocate_virtdevice)(struct se_hba *, const char *);
  17. struct se_device *(*create_virtdevice)(struct se_hba *,
  18. struct se_subsystem_dev *, void *);
  19. void (*free_device)(void *);
  20. int (*transport_complete)(struct se_cmd *cmd, struct scatterlist *);
  21. int (*execute_cmd)(struct se_cmd *, struct scatterlist *, u32,
  22. enum dma_data_direction);
  23. int (*do_discard)(struct se_device *, sector_t, u32);
  24. void (*do_sync_cache)(struct se_cmd *);
  25. ssize_t (*check_configfs_dev_params)(struct se_hba *,
  26. struct se_subsystem_dev *);
  27. ssize_t (*set_configfs_dev_params)(struct se_hba *,
  28. struct se_subsystem_dev *, const char *, ssize_t);
  29. ssize_t (*show_configfs_dev_params)(struct se_hba *,
  30. struct se_subsystem_dev *, char *);
  31. u32 (*get_device_rev)(struct se_device *);
  32. u32 (*get_device_type)(struct se_device *);
  33. sector_t (*get_blocks)(struct se_device *);
  34. unsigned char *(*get_sense_buffer)(struct se_cmd *);
  35. };
  36. int transport_subsystem_register(struct se_subsystem_api *);
  37. void transport_subsystem_release(struct se_subsystem_api *);
  38. struct se_device *transport_add_device_to_core_hba(struct se_hba *,
  39. struct se_subsystem_api *, struct se_subsystem_dev *, u32,
  40. void *, struct se_dev_limits *, const char *, const char *);
  41. void target_complete_cmd(struct se_cmd *, u8);
  42. void transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *);
  43. int transport_set_vpd_assoc(struct t10_vpd *, unsigned char *);
  44. int transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *);
  45. int transport_set_vpd_ident(struct t10_vpd *, unsigned char *);
  46. /* core helpers also used by command snooping in pscsi */
  47. void *transport_kmap_data_sg(struct se_cmd *);
  48. void transport_kunmap_data_sg(struct se_cmd *);
  49. void array_free(void *array, int n);
  50. #endif /* TARGET_CORE_BACKEND_H */