Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2 | #ifndef TARGET_CORE_FILE_H |
| 3 | #define TARGET_CORE_FILE_H |
| 4 | |
Bart Van Assche | 8dcf07b | 2016-11-14 15:47:14 -0800 | [diff] [blame] | 5 | #include <target/target_core_base.h> |
| 6 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 7 | #define FD_VERSION "4.0" |
| 8 | |
| 9 | #define FD_MAX_DEV_NAME 256 |
Nicholas Bellinger | 0f5e2ec | 2014-01-18 09:32:56 +0000 | [diff] [blame] | 10 | #define FD_MAX_DEV_PROT_NAME FD_MAX_DEV_NAME + 16 |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 11 | #define FD_DEVICE_QUEUE_DEPTH 32 |
| 12 | #define FD_MAX_DEVICE_QUEUE_DEPTH 128 |
| 13 | #define FD_BLOCKSIZE 512 |
Nicholas Bellinger | 95cadac | 2013-12-12 12:24:11 -0800 | [diff] [blame] | 14 | /* |
| 15 | * Limited by the number of iovecs (2048) per vfs_[writev,readv] call |
| 16 | */ |
| 17 | #define FD_MAX_BYTES 8388608 |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 18 | |
| 19 | #define RRF_EMULATE_CDB 0x01 |
| 20 | #define RRF_GOT_LBA 0x02 |
| 21 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 22 | #define FBDF_HAS_PATH 0x01 |
| 23 | #define FBDF_HAS_SIZE 0x02 |
Nicholas Bellinger | b32f4c7 | 2012-09-29 17:15:37 -0700 | [diff] [blame] | 24 | #define FDBD_HAS_BUFFERED_IO_WCE 0x04 |
Andrei Vagin | 769031c | 2018-03-21 23:55:02 -0700 | [diff] [blame] | 25 | #define FDBD_HAS_ASYNC_IO 0x08 |
Nicholas Bellinger | 0f5e2ec | 2014-01-18 09:32:56 +0000 | [diff] [blame] | 26 | #define FDBD_FORMAT_UNIT_SIZE 2048 |
| 27 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 28 | struct fd_dev { |
Christoph Hellwig | 0fd97cc | 2012-10-08 00:03:19 -0400 | [diff] [blame] | 29 | struct se_device dev; |
| 30 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 31 | u32 fbd_flags; |
| 32 | unsigned char fd_dev_name[FD_MAX_DEV_NAME]; |
| 33 | /* Unique Ramdisk Device ID in Ramdisk HBA */ |
| 34 | u32 fd_dev_id; |
| 35 | /* Number of SG tables in sg_table_array */ |
| 36 | u32 fd_table_count; |
| 37 | u32 fd_queue_depth; |
| 38 | u32 fd_block_size; |
| 39 | unsigned long long fd_dev_size; |
| 40 | struct file *fd_file; |
Nicholas Bellinger | 0f5e2ec | 2014-01-18 09:32:56 +0000 | [diff] [blame] | 41 | struct file *fd_prot_file; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 42 | /* FILEIO HBA device is connected to */ |
| 43 | struct fd_host *fd_host; |
| 44 | } ____cacheline_aligned; |
| 45 | |
| 46 | struct fd_host { |
| 47 | u32 fd_host_dev_id_count; |
| 48 | /* Unique FILEIO Host ID */ |
| 49 | u32 fd_host_id; |
| 50 | } ____cacheline_aligned; |
| 51 | |
| 52 | #endif /* TARGET_CORE_FILE_H */ |