mbox series

[RFC,v2,0/2] UFS Multi-Circular Queue (MCQ)

Message ID 1660213984-37793-1-git-send-email-quic_cang@quicinc.com
Headers show
Series UFS Multi-Circular Queue (MCQ) | expand

Message

Can Guo Aug. 11, 2022, 10:33 a.m. UTC
UFS Multi-Circular Queue (MCQ) has been added in UFSHCI v4.0 to improve storage performance.
This patch series is a RFC implementation of this.

This is the initial driver implementation and it has been verified by booting on an emulation
platform. During testing, all low power modes were disabled and it was in HS-G1 mode.

Please take a look and let us know your thoughts.

v1 -> v2:
- Enabled host_tagset
- Added queue num configuration support
- Added one more vops to allow vendor provide the wanted MAC
- Determine nutrs and can_queue by considering both MAC, bqueuedepth and EXT_IID support
- Postponed MCQ initialization and scsi_add_host() to async probe
- Used (EXT_IID, Task Tag) tuple to support up to 4096 tasks (theoretically)

Asutosh Das (1):
  scsi: ufs: Add Multi-Circular Queue support

Can Guo (1):
  scsi: ufs-qcom: Add MCQ support

 drivers/ufs/core/Makefile   |   2 +-
 drivers/ufs/core/ufs-mcq.c  | 524 ++++++++++++++++++++++++++++++++++++++++++++
 drivers/ufs/core/ufshcd.c   | 394 +++++++++++++++++++++++++--------
 drivers/ufs/host/ufs-qcom.c | 125 +++++++++++
 drivers/ufs/host/ufs-qcom.h |   4 +
 include/ufs/ufs.h           |   5 +
 include/ufs/ufshcd.h        | 223 ++++++++++++++++++-
 include/ufs/ufshci.h        |  77 +++++++
 8 files changed, 1264 insertions(+), 90 deletions(-)
 create mode 100644 drivers/ufs/core/ufs-mcq.c