summaryrefslogtreecommitdiff
path: root/utils/imxtools/scsitools/stmp_scsi.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/imxtools/scsitools/stmp_scsi.h')
-rw-r--r--utils/imxtools/scsitools/stmp_scsi.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/imxtools/scsitools/stmp_scsi.h b/utils/imxtools/scsitools/stmp_scsi.h
index 68d77daeec..56068b5d4c 100644
--- a/utils/imxtools/scsitools/stmp_scsi.h
+++ b/utils/imxtools/scsitools/stmp_scsi.h
@@ -355,6 +355,14 @@ int stmp_read_logical_drive_sectors(stmp_device_t dev, uint8_t drive, uint64_t a
355 uint32_t count, void *buffer, int buffer_size); 355 uint32_t count, void *buffer, int buffer_size);
356int stmp_write_logical_drive_sectors(stmp_device_t dev, uint8_t drive, uint64_t address, 356int stmp_write_logical_drive_sectors(stmp_device_t dev, uint8_t drive, uint64_t address,
357 uint32_t count, void *buffer, int buffer_size); 357 uint32_t count, void *buffer, int buffer_size);
358/* return <0 on error, or firmware size in bytes otherwise,
359 * if not NULL, the read/write function will be called as many times as needed to provide
360 * the entire firmware, it should return number of bytes read/written on success or -1 on error
361 * in all cases, the total size of the firmware is based on the header
362 * if NULL for read, return firmware size */
363typedef int (*stmp_fw_rw_fn_t)(void *user, void *buf, size_t size);
364int stmp_read_firmware(stmp_device_t dev, void *user, stmp_fw_rw_fn_t fn);
365int stmp_write_firmware(stmp_device_t dev, void *user, stmp_fw_rw_fn_t fn);
358/* string helpers */ 366/* string helpers */
359const char *stmp_get_logical_media_type_string(uint32_t type); 367const char *stmp_get_logical_media_type_string(uint32_t type);
360const char *stmp_get_logical_media_vendor_string(uint32_t type); 368const char *stmp_get_logical_media_vendor_string(uint32_t type);