target/arm/vfp_helper: Restrict the SoftFloat use to TCG
[qemu/ar7.git] / include / hw / scsi / emulation.h
blob9521704326e5efa2e385d923fd9a720377bf9d7a
1 #ifndef HW_SCSI_EMULATION_H
2 #define HW_SCSI_EMULATION_H
4 typedef struct SCSIBlockLimits {
5 bool wsnz;
6 uint16_t min_io_size;
7 uint32_t max_unmap_descr;
8 uint32_t opt_io_size;
9 uint32_t max_unmap_sectors;
10 uint32_t unmap_sectors;
11 uint32_t max_io_sectors;
12 } SCSIBlockLimits;
14 int scsi_emulate_block_limits(uint8_t *outbuf, const SCSIBlockLimits *bl);
16 #endif