]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blobdiff - include/scsi/scsi_proto.h
Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[mirror_ubuntu-bionic-kernel.git] / include / scsi / scsi_proto.h
index 1c41dbcfcb35544f03e3557fbf765c81b2c770a6..1df8efb0ee0186988de864f91ec10cadb5010834 100644 (file)
@@ -302,19 +302,42 @@ struct scsi_lun {
 
 /* Reporting options for REPORT ZONES */
 enum zbc_zone_reporting_options {
-       ZBC_ZONE_REPORTING_OPTION_ALL = 0,
-       ZBC_ZONE_REPORTING_OPTION_EMPTY,
-       ZBC_ZONE_REPORTING_OPTION_IMPLICIT_OPEN,
-       ZBC_ZONE_REPORTING_OPTION_EXPLICIT_OPEN,
-       ZBC_ZONE_REPORTING_OPTION_CLOSED,
-       ZBC_ZONE_REPORTING_OPTION_FULL,
-       ZBC_ZONE_REPORTING_OPTION_READONLY,
-       ZBC_ZONE_REPORTING_OPTION_OFFLINE,
-       ZBC_ZONE_REPORTING_OPTION_NEED_RESET_WP = 0x10,
-       ZBC_ZONE_REPORTING_OPTION_NON_SEQWRITE,
-       ZBC_ZONE_REPORTING_OPTION_NON_WP = 0x3f,
+       ZBC_ZONE_REPORTING_OPTION_ALL           = 0x00,
+       ZBC_ZONE_REPORTING_OPTION_EMPTY         = 0x01,
+       ZBC_ZONE_REPORTING_OPTION_IMPLICIT_OPEN = 0x02,
+       ZBC_ZONE_REPORTING_OPTION_EXPLICIT_OPEN = 0x03,
+       ZBC_ZONE_REPORTING_OPTION_CLOSED        = 0x04,
+       ZBC_ZONE_REPORTING_OPTION_FULL          = 0x05,
+       ZBC_ZONE_REPORTING_OPTION_READONLY      = 0x06,
+       ZBC_ZONE_REPORTING_OPTION_OFFLINE       = 0x07,
+       /* 0x08 to 0x0f are reserved */
+       ZBC_ZONE_REPORTING_OPTION_NEED_RESET_WP = 0x10,
+       ZBC_ZONE_REPORTING_OPTION_NON_SEQWRITE  = 0x11,
+       /* 0x12 to 0x3e are reserved */
+       ZBC_ZONE_REPORTING_OPTION_NON_WP        = 0x3f,
 };
 
 #define ZBC_REPORT_ZONE_PARTIAL 0x80
 
+/* Zone types of REPORT ZONES zone descriptors */
+enum zbc_zone_type {
+       ZBC_ZONE_TYPE_CONV              = 0x1,
+       ZBC_ZONE_TYPE_SEQWRITE_REQ      = 0x2,
+       ZBC_ZONE_TYPE_SEQWRITE_PREF     = 0x3,
+       /* 0x4 to 0xf are reserved */
+};
+
+/* Zone conditions of REPORT ZONES zone descriptors */
+enum zbc_zone_cond {
+       ZBC_ZONE_COND_NO_WP             = 0x0,
+       ZBC_ZONE_COND_EMPTY             = 0x1,
+       ZBC_ZONE_COND_IMP_OPEN          = 0x2,
+       ZBC_ZONE_COND_EXP_OPEN          = 0x3,
+       ZBC_ZONE_COND_CLOSED            = 0x4,
+       /* 0x5 to 0xc are reserved */
+       ZBC_ZONE_COND_READONLY          = 0xd,
+       ZBC_ZONE_COND_FULL              = 0xe,
+       ZBC_ZONE_COND_OFFLINE           = 0xf,
+};
+
 #endif /* _SCSI_PROTO_H_ */