1 #ifndef TARGET_CORE_RD_H
2 #define TARGET_CORE_RD_H
4 #define RD_HBA_VERSION "v4.0"
5 #define RD_DR_VERSION "4.0"
6 #define RD_MCP_VERSION "4.0"
8 /* Largest piece of memory kmalloc can allocate */
9 #define RD_MAX_ALLOCATION_SIZE 65536
10 /* Maximum queuedepth for the Ramdisk HBA */
11 #define RD_HBA_QUEUE_DEPTH 256
12 #define RD_DEVICE_QUEUE_DEPTH 32
13 #define RD_MAX_DEVICE_QUEUE_DEPTH 128
14 #define RD_BLOCKSIZE 512
15 #define RD_MAX_SECTORS 1024
17 extern struct kmem_cache
*se_mem_cache
;
19 /* Used in target_core_init_configfs() for virtual LUN 0 access */
20 int __init
rd_module_init(void);
21 void rd_module_exit(void);
23 #define RRF_EMULATE_CDB 0x01
24 #define RRF_GOT_LBA 0x02
27 struct se_task rd_task
;
29 /* SCSI CDB from iSCSI Command PDU */
30 unsigned char rd_scsi_cdb
[TCM_MAX_COMMAND_SIZE
];
31 /* Offset from start of page */
33 /* Starting page in Ramdisk for request */
35 /* Total number of pages needed for request */
37 /* Scatterlist count */
40 struct rd_dev
*rd_dev
;
41 } ____cacheline_aligned
;
43 struct rd_dev_sg_table
{
44 u32 page_start_offset
;
47 struct scatterlist
*sg_table
;
48 } ____cacheline_aligned
;
50 #define RDF_HAS_PAGE_COUNT 0x01
55 /* Unique Ramdisk Device ID in Ramdisk HBA */
57 /* Total page count for ramdisk device */
59 /* Number of SG tables in sg_table_array */
62 /* Array of rd_dev_sg_table_t containing scatterlists */
63 struct rd_dev_sg_table
*sg_table_array
;
64 /* Ramdisk HBA device is connected to */
65 struct rd_host
*rd_host
;
66 } ____cacheline_aligned
;
69 u32 rd_host_dev_id_count
;
70 u32 rd_host_id
; /* Unique Ramdisk Host ID */
71 } ____cacheline_aligned
;
73 #endif /* TARGET_CORE_RD_H */