summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2021-03-23 12:15:25 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2021-03-23 12:15:25 +0100
commita866769341840376d741b356aa4bb37ea80b2508 (patch)
tree47364ca490a1eacd405eb8eede142daba9ac0725 /include
parente9ed7123f4be05d0a783586e77d1c9c84dce8737 (diff)
parent26459ab7803a3321adb1289535ca5d0e7b706c26 (diff)
downloadbarebox-a866769341840376d741b356aa4bb37ea80b2508.tar.gz
barebox-a866769341840376d741b356aa4bb37ea80b2508.tar.xz
Merge branch 'for-next/usb'
Diffstat (limited to 'include')
-rw-r--r--include/scsi.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/scsi.h b/include/scsi.h
index e2397489ea..f84513b813 100644
--- a/include/scsi.h
+++ b/include/scsi.h
@@ -109,6 +109,7 @@
#define SCSI_MED_REMOVL 0x1E /* Prevent/Allow medium Removal (O) */
#define SCSI_READ6 0x08 /* Read 6-byte (MANDATORY) */
#define SCSI_READ10 0x28 /* Read 10-byte (MANDATORY) */
+#define SCSI_READ16 0x88 /* Read 16-byte (O) */
#define SCSI_RD_CAPAC 0x25 /* Read Capacity (MANDATORY) */
#define SCSI_RD_DEFECT 0x37 /* Read Defect Data (O) */
#define SCSI_READ_LONG 0x3E /* Read Long (O) */
@@ -128,10 +129,14 @@
#define SCSI_VERIFY 0x2F /* Verify (O) */
#define SCSI_WRITE6 0x0A /* Write 6-Byte (MANDATORY) */
#define SCSI_WRITE10 0x2A /* Write 10-Byte (MANDATORY) */
+#define SCSI_WRITE16 0x8A /* Write 16-Byte (O) */
#define SCSI_WRT_VERIFY 0x2E /* Write and Verify (O) */
#define SCSI_WRITE_LONG 0x3F /* Write Long (O) */
#define SCSI_WRITE_SAME 0x41 /* Write Same (O) */
+#define SERVICE_ACTION_IN_16 0x9e
+/* values for service action in */
+#define SAI_READ_CAPACITY_16 0x10
/****************************************************************************
* decleration of functions which have to reside in the LowLevel Part Driver