Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 1 | #ifndef TARGET_CORE_BACKEND_H |
| 2 | #define TARGET_CORE_BACKEND_H |
| 3 | |
| 4 | #define TRANSPORT_PLUGIN_PHBA_PDEV 1 |
| 5 | #define TRANSPORT_PLUGIN_VHBA_PDEV 2 |
| 6 | #define TRANSPORT_PLUGIN_VHBA_VDEV 3 |
| 7 | |
| 8 | struct se_subsystem_api { |
| 9 | struct list_head sub_api_list; |
| 10 | |
| 11 | char name[16]; |
Christoph Hellwig | 0fd97cc | 2012-10-08 00:03:19 -0400 | [diff] [blame] | 12 | char inquiry_prod[16]; |
| 13 | char inquiry_rev[4]; |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 14 | struct module *owner; |
| 15 | |
| 16 | u8 transport_type; |
| 17 | |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 18 | int (*attach_hba)(struct se_hba *, u32); |
| 19 | void (*detach_hba)(struct se_hba *); |
| 20 | int (*pmode_enable_hba)(struct se_hba *, unsigned long); |
Christoph Hellwig | 0fd97cc | 2012-10-08 00:03:19 -0400 | [diff] [blame] | 21 | |
| 22 | struct se_device *(*alloc_device)(struct se_hba *, const char *); |
| 23 | int (*configure_device)(struct se_device *); |
| 24 | void (*free_device)(struct se_device *device); |
| 25 | |
| 26 | ssize_t (*set_configfs_dev_params)(struct se_device *, |
| 27 | const char *, ssize_t); |
| 28 | ssize_t (*show_configfs_dev_params)(struct se_device *, char *); |
| 29 | |
Paolo Bonzini | d5829ea | 2012-09-05 17:09:15 +0200 | [diff] [blame] | 30 | void (*transport_complete)(struct se_cmd *cmd, |
| 31 | struct scatterlist *, |
| 32 | unsigned char *); |
Christoph Hellwig | d6e0175 | 2012-05-20 11:59:14 -0400 | [diff] [blame] | 33 | |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 34 | sense_reason_t (*parse_cdb)(struct se_cmd *cmd); |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 35 | u32 (*get_device_type)(struct se_device *); |
| 36 | sector_t (*get_blocks)(struct se_device *); |
Andy Grover | 7f7caf6 | 2013-11-11 08:59:17 -0800 | [diff] [blame] | 37 | sector_t (*get_alignment_offset_lbas)(struct se_device *); |
| 38 | /* lbppbe = logical blocks per physical block exponent. see SBC-3 */ |
| 39 | unsigned int (*get_lbppbe)(struct se_device *); |
| 40 | unsigned int (*get_io_min)(struct se_device *); |
| 41 | unsigned int (*get_io_opt)(struct se_device *); |
Christoph Hellwig | 5787cac | 2012-04-24 00:25:06 -0400 | [diff] [blame] | 42 | unsigned char *(*get_sense_buffer)(struct se_cmd *); |
Nicholas Bellinger | d0c8b25 | 2013-01-29 22:10:06 -0800 | [diff] [blame] | 43 | bool (*get_write_cache)(struct se_device *); |
Nicholas Bellinger | ce65e5b | 2013-12-23 20:28:13 +0000 | [diff] [blame] | 44 | int (*init_prot)(struct se_device *); |
| 45 | int (*format_prot)(struct se_device *); |
| 46 | void (*free_prot)(struct se_device *); |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 47 | }; |
| 48 | |
Christoph Hellwig | 9e999a6 | 2012-10-07 10:55:50 -0400 | [diff] [blame] | 49 | struct sbc_ops { |
Nicholas Bellinger | a82a953 | 2013-08-19 23:57:30 -0700 | [diff] [blame] | 50 | sense_reason_t (*execute_rw)(struct se_cmd *cmd, struct scatterlist *, |
| 51 | u32, enum dma_data_direction); |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 52 | sense_reason_t (*execute_sync_cache)(struct se_cmd *cmd); |
| 53 | sense_reason_t (*execute_write_same)(struct se_cmd *cmd); |
Nicholas Bellinger | cd063be | 2012-11-07 20:01:10 -0800 | [diff] [blame] | 54 | sense_reason_t (*execute_write_same_unmap)(struct se_cmd *cmd); |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 55 | sense_reason_t (*execute_unmap)(struct se_cmd *cmd); |
Christoph Hellwig | 0c2ad7d | 2012-06-17 18:40:52 -0400 | [diff] [blame] | 56 | }; |
| 57 | |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 58 | int transport_subsystem_register(struct se_subsystem_api *); |
| 59 | void transport_subsystem_release(struct se_subsystem_api *); |
| 60 | |
Christoph Hellwig | 6bb35e0 | 2012-04-23 11:35:33 -0400 | [diff] [blame] | 61 | void target_complete_cmd(struct se_cmd *, u8); |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 62 | |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 63 | sense_reason_t spc_parse_cdb(struct se_cmd *cmd, unsigned int *size); |
| 64 | sense_reason_t spc_emulate_report_luns(struct se_cmd *cmd); |
Hannes Reinecke | 0dfa1c5 | 2012-12-17 09:53:35 +0100 | [diff] [blame] | 65 | sense_reason_t spc_emulate_inquiry_std(struct se_cmd *, unsigned char *); |
| 66 | sense_reason_t spc_emulate_evpd_83(struct se_cmd *, unsigned char *); |
Christoph Hellwig | d6e0175 | 2012-05-20 11:59:14 -0400 | [diff] [blame] | 67 | |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 68 | sense_reason_t sbc_parse_cdb(struct se_cmd *cmd, struct sbc_ops *ops); |
Christoph Hellwig | 6f23ac8 | 2012-10-07 10:55:53 -0400 | [diff] [blame] | 69 | u32 sbc_get_device_rev(struct se_device *dev); |
| 70 | u32 sbc_get_device_type(struct se_device *dev); |
Roland Dreier | 972b29c | 2013-02-22 09:52:57 -0800 | [diff] [blame] | 71 | sector_t sbc_get_write_same_sectors(struct se_cmd *cmd); |
Asias He | 86d7182 | 2013-02-25 14:03:46 +0800 | [diff] [blame] | 72 | sense_reason_t sbc_execute_unmap(struct se_cmd *cmd, |
| 73 | sense_reason_t (*do_unmap_fn)(struct se_cmd *cmd, void *priv, |
| 74 | sector_t lba, sector_t nolb), |
| 75 | void *priv); |
Nicholas Bellinger | 66a3d5b | 2014-04-02 14:19:09 -0700 | [diff] [blame] | 76 | void sbc_dif_generate(struct se_cmd *); |
Nicholas Bellinger | 41861fa | 2014-01-07 22:44:57 +0000 | [diff] [blame] | 77 | sense_reason_t sbc_dif_verify_write(struct se_cmd *, sector_t, unsigned int, |
| 78 | unsigned int, struct scatterlist *, int); |
| 79 | sense_reason_t sbc_dif_verify_read(struct se_cmd *, sector_t, unsigned int, |
| 80 | unsigned int, struct scatterlist *, int); |
Nicholas Bellinger | 395ccb2 | 2014-04-02 14:34:11 -0700 | [diff] [blame] | 81 | sense_reason_t sbc_dif_read_strip(struct se_cmd *); |
Christoph Hellwig | 6f23ac8 | 2012-10-07 10:55:53 -0400 | [diff] [blame] | 82 | |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 83 | void transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *); |
| 84 | int transport_set_vpd_assoc(struct t10_vpd *, unsigned char *); |
| 85 | int transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *); |
| 86 | int transport_set_vpd_ident(struct t10_vpd *, unsigned char *); |
| 87 | |
| 88 | /* core helpers also used by command snooping in pscsi */ |
Andy Grover | 4949314 | 2012-01-16 16:57:08 -0800 | [diff] [blame] | 89 | void *transport_kmap_data_sg(struct se_cmd *); |
| 90 | void transport_kunmap_data_sg(struct se_cmd *); |
Nicholas Bellinger | c5ff8d6 | 2013-08-22 11:58:43 -0700 | [diff] [blame] | 91 | /* core helpers also used by xcopy during internal command setup */ |
| 92 | int target_alloc_sgl(struct scatterlist **, unsigned int *, u32, bool); |
| 93 | sense_reason_t transport_generic_map_mem_to_cmd(struct se_cmd *, |
| 94 | struct scatterlist *, u32, struct scatterlist *, u32); |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 95 | |
Jörn Engel | 4a5a75f | 2012-03-15 15:05:12 -0400 | [diff] [blame] | 96 | void array_free(void *array, int n); |
| 97 | |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 98 | #endif /* TARGET_CORE_BACKEND_H */ |