RE: [PATCH 2/3] hw/scsi: add mode sense support for zbc device

2024-01-09 Thread Daejun Park
Gentle ping. Would you mind review this patch for zbc devices? Thanks, Daejun > This patch enables mode sense for zbc devices. > > Signed-off-by: Daejun Park > --- >  hw/scsi/scsi-disk.c 13 - >  1 file changed, 8 insertions(+), 5 deletions(-) > > diff --git a/

[PATCH 1/3] hw/ufs: Support for Zoned UFS

2023-12-08 Thread Daejun Park
This patch enables zoned ufs support. By setting the LU parameter, each LU can be a host-managed zoned device. This patch manages the zone condition and write pointer of each zone for a zoned LU. It supports the report zones and reset write pointer commands for Zoned LUs. Signed-off-by: Daejun

[PATCH 2/3] hw/scsi: add mode sense support for zbc device

2023-12-08 Thread Daejun Park
This patch enables mode sense for zbc devices. Signed-off-by: Daejun Park --- hw/scsi/scsi-disk.c | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c index 6691f5edb8..f1ecb77317 100644 --- a/hw/scsi/scsi-disk.c +++ b/hw

[PATCH 3/3] tests/qtest: Add tests for Zoned UFS

2023-12-08 Thread Daejun Park
This patch includes the following tests Test VPD page and report zones Test write and unaligned write error Signed-off-by: Daejun Park --- tests/qtest/ufs-test.c | 178 + 1 file changed, 178 insertions(+) diff --git a/tests/qtest/ufs-test.c b/tests

[PATCH 0/3] Support for Zoned UFS

2023-12-08 Thread Daejun Park
This patch enables zoned support for UFS devices. By applying this patch, a QEMU run can use parameters to configure whether each LU of each UFS is zoned, and the capacity, size, and max open zones. Zoned UFS is implemented by referencing ZBC2. (https://www.t10.org/members/w_zbc2.htm) Daejun