blob: 583691ebcbe0405fb95b6255271685312f8acbab [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001#ifndef TARGET_CORE_FILE_H
2#define TARGET_CORE_FILE_H
3
4#define FD_VERSION "4.0"
5
6#define FD_MAX_DEV_NAME 256
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +00007#define FD_MAX_DEV_PROT_NAME FD_MAX_DEV_NAME + 16
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08008#define FD_DEVICE_QUEUE_DEPTH 32
9#define FD_MAX_DEVICE_QUEUE_DEPTH 128
10#define FD_BLOCKSIZE 512
Nicholas Bellingerf002a242013-03-18 13:15:57 -070011#define FD_MAX_SECTORS 2048
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080012
13#define RRF_EMULATE_CDB 0x01
14#define RRF_GOT_LBA 0x02
15
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080016#define FBDF_HAS_PATH 0x01
17#define FBDF_HAS_SIZE 0x02
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -070018#define FDBD_HAS_BUFFERED_IO_WCE 0x04
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +000019#define FDBD_FORMAT_UNIT_SIZE 2048
20
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080021
22struct fd_dev {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040023 struct se_device dev;
24
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080025 u32 fbd_flags;
26 unsigned char fd_dev_name[FD_MAX_DEV_NAME];
27 /* Unique Ramdisk Device ID in Ramdisk HBA */
28 u32 fd_dev_id;
29 /* Number of SG tables in sg_table_array */
30 u32 fd_table_count;
31 u32 fd_queue_depth;
32 u32 fd_block_size;
33 unsigned long long fd_dev_size;
34 struct file *fd_file;
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +000035 struct file *fd_prot_file;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036 /* FILEIO HBA device is connected to */
37 struct fd_host *fd_host;
38} ____cacheline_aligned;
39
40struct fd_host {
41 u32 fd_host_dev_id_count;
42 /* Unique FILEIO Host ID */
43 u32 fd_host_id;
44} ____cacheline_aligned;
45
46#endif /* TARGET_CORE_FILE_H */