target_core_rd.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef TARGET_CORE_RD_H
  2. #define TARGET_CORE_RD_H
  3. #define RD_HBA_VERSION "v4.0"
  4. #define RD_MCP_VERSION "4.0"
  5. /* Largest piece of memory kmalloc can allocate */
  6. #define RD_MAX_ALLOCATION_SIZE 65536
  7. #define RD_DEVICE_QUEUE_DEPTH 32
  8. #define RD_MAX_DEVICE_QUEUE_DEPTH 128
  9. #define RD_BLOCKSIZE 512
  10. /* Used in target_core_init_configfs() for virtual LUN 0 access */
  11. int __init rd_module_init(void);
  12. void rd_module_exit(void);
  13. struct rd_dev_sg_table {
  14. u32 page_start_offset;
  15. u32 page_end_offset;
  16. u32 rd_sg_count;
  17. struct scatterlist *sg_table;
  18. } ____cacheline_aligned;
  19. #define RDF_HAS_PAGE_COUNT 0x01
  20. struct rd_dev {
  21. struct se_device dev;
  22. u32 rd_flags;
  23. /* Unique Ramdisk Device ID in Ramdisk HBA */
  24. u32 rd_dev_id;
  25. /* Total page count for ramdisk device */
  26. u32 rd_page_count;
  27. /* Number of SG tables in sg_table_array */
  28. u32 sg_table_count;
  29. /* Array of rd_dev_sg_table_t containing scatterlists */
  30. struct rd_dev_sg_table *sg_table_array;
  31. /* Ramdisk HBA device is connected to */
  32. struct rd_host *rd_host;
  33. } ____cacheline_aligned;
  34. struct rd_host {
  35. u32 rd_host_dev_id_count;
  36. u32 rd_host_id; /* Unique Ramdisk Host ID */
  37. } ____cacheline_aligned;
  38. #endif /* TARGET_CORE_RD_H */