target_core_backend.h 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#ifndef TARGET_CORE_BACKEND_H
#define TARGET_CORE_BACKEND_H

#define TRANSPORT_PLUGIN_PHBA_PDEV		1
#define TRANSPORT_PLUGIN_VHBA_PDEV		2
#define TRANSPORT_PLUGIN_VHBA_VDEV		3

struct se_subsystem_api {
	struct list_head sub_api_list;

	char name[16];
12 13
	char inquiry_prod[16];
	char inquiry_rev[4];
14 15 16 17 18 19 20
	struct module *owner;

	u8 transport_type;

	int (*attach_hba)(struct se_hba *, u32);
	void (*detach_hba)(struct se_hba *);
	int (*pmode_enable_hba)(struct se_hba *, unsigned long);
21 22 23 24 25 26 27 28 29

	struct se_device *(*alloc_device)(struct se_hba *, const char *);
	int (*configure_device)(struct se_device *);
	void (*free_device)(struct se_device *device);

	ssize_t (*set_configfs_dev_params)(struct se_device *,
					   const char *, ssize_t);
	ssize_t (*show_configfs_dev_params)(struct se_device *, char *);

30 31 32
	void (*transport_complete)(struct se_cmd *cmd,
				   struct scatterlist *,
				   unsigned char *);
33

34
	int (*parse_cdb)(struct se_cmd *cmd);
35 36 37
	u32 (*get_device_rev)(struct se_device *);
	u32 (*get_device_type)(struct se_device *);
	sector_t (*get_blocks)(struct se_device *);
38
	unsigned char *(*get_sense_buffer)(struct se_cmd *);
39 40
};

41 42
struct spc_ops {
	int (*execute_rw)(struct se_cmd *cmd);
43
	int (*execute_sync_cache)(struct se_cmd *cmd);
44
	int (*execute_write_same)(struct se_cmd *cmd);
45
	int (*execute_unmap)(struct se_cmd *cmd);
46 47
};

48 49 50
int	transport_subsystem_register(struct se_subsystem_api *);
void	transport_subsystem_release(struct se_subsystem_api *);

51
void	target_complete_cmd(struct se_cmd *, u8);
52

53
int	sbc_parse_cdb(struct se_cmd *cmd, struct spc_ops *ops);
54
int	spc_parse_cdb(struct se_cmd *cmd, unsigned int *size);
55
int	spc_get_write_same_sectors(struct se_cmd *cmd);
56

57 58 59 60 61 62
void	transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *);
int	transport_set_vpd_assoc(struct t10_vpd *, unsigned char *);
int	transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *);
int	transport_set_vpd_ident(struct t10_vpd *, unsigned char *);

/* core helpers also used by command snooping in pscsi */
63 64
void	*transport_kmap_data_sg(struct se_cmd *);
void	transport_kunmap_data_sg(struct se_cmd *);
65

66 67
void	array_free(void *array, int n);

68
#endif /* TARGET_CORE_BACKEND_H */