mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
scsi: ufs: core: Probe for EXT_IID support
Task Tag is limited to 8 bits and this restricts the number of active I/Os to 255. In multi-circular queue mode, this may not be enough. The specification provides EXT_IID which can be used to increase the number of I/Os if the UFS device and UFSHC support it. This patch adds support to probe for EXT_IID support in UFS device and UFSHC. Co-developed-by: Can Guo <quic_cang@quicinc.com> Signed-off-by: Can Guo <quic_cang@quicinc.com> Signed-off-by: Asutosh Das <quic_asutoshd@quicinc.com> Reviewed-by: Bart Van Assche <bvanassche@acm.org> Reviewed-by: Avri Altman <avri.altman@wdc.com> Reviewed-by: Manivannan Sadhasivam <mani@kernel.org> Reviewed-by: Stanley Chu <stanley.chu@mediatek.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
committed by
Martin K. Petersen
parent
64b6deadc9
commit
6e1d850acf
@@ -169,6 +169,7 @@ enum attr_idn {
|
||||
QUERY_ATTR_IDN_AVAIL_WB_BUFF_SIZE = 0x1D,
|
||||
QUERY_ATTR_IDN_WB_BUFF_LIFE_TIME_EST = 0x1E,
|
||||
QUERY_ATTR_IDN_CURR_WB_BUFF_SIZE = 0x1F,
|
||||
QUERY_ATTR_IDN_EXT_IID_EN = 0x2A,
|
||||
};
|
||||
|
||||
/* Descriptor idn for Query requests */
|
||||
@@ -378,6 +379,7 @@ enum {
|
||||
UFS_DEV_EXT_TEMP_NOTIF = BIT(6),
|
||||
UFS_DEV_HPB_SUPPORT = BIT(7),
|
||||
UFS_DEV_WRITE_BOOSTER_SUP = BIT(8),
|
||||
UFS_DEV_EXT_IID_SUP = BIT(16),
|
||||
};
|
||||
#define UFS_DEV_HPB_SUPPORT_VERSION 0x310
|
||||
|
||||
@@ -629,6 +631,9 @@ struct ufs_dev_info {
|
||||
u8 b_presrv_uspc_en;
|
||||
|
||||
bool b_advanced_rpmb_en;
|
||||
|
||||
/* UFS EXT_IID Enable */
|
||||
bool b_ext_iid_en;
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
@@ -757,6 +757,7 @@ struct ufs_hba_monitor {
|
||||
* @outstanding_lock: Protects @outstanding_reqs.
|
||||
* @outstanding_reqs: Bits representing outstanding transfer requests
|
||||
* @capabilities: UFS Controller Capabilities
|
||||
* @mcq_capabilities: UFS Multi Circular Queue capabilities
|
||||
* @nutrs: Transfer Request Queue depth supported by controller
|
||||
* @nutmrs: Task Management Queue depth supported by controller
|
||||
* @reserved_slot: Used to submit device commands. Protected by @dev_cmd.lock.
|
||||
@@ -841,6 +842,7 @@ struct ufs_hba_monitor {
|
||||
* device
|
||||
* @complete_put: whether or not to call ufshcd_rpm_put() from inside
|
||||
* ufshcd_resume_complete()
|
||||
* @ext_iid_sup: is EXT_IID is supported by UFSHC
|
||||
*/
|
||||
struct ufs_hba {
|
||||
void __iomem *mmio_base;
|
||||
@@ -882,6 +884,7 @@ struct ufs_hba {
|
||||
|
||||
u32 capabilities;
|
||||
int nutrs;
|
||||
u32 mcq_capabilities;
|
||||
int nutmrs;
|
||||
u32 reserved_slot;
|
||||
u32 ufs_version;
|
||||
@@ -991,6 +994,7 @@ struct ufs_hba {
|
||||
#endif
|
||||
u32 luns_avail;
|
||||
bool complete_put;
|
||||
bool ext_iid_sup;
|
||||
};
|
||||
|
||||
#ifdef CONFIG_SCSI_UFS_VARIABLE_SG_ENTRY_SIZE
|
||||
|
||||
@@ -22,6 +22,7 @@ enum {
|
||||
/* UFSHCI Registers */
|
||||
enum {
|
||||
REG_CONTROLLER_CAPABILITIES = 0x00,
|
||||
REG_MCQCAP = 0x04,
|
||||
REG_UFS_VERSION = 0x08,
|
||||
REG_CONTROLLER_DEV_ID = 0x10,
|
||||
REG_CONTROLLER_PROD_ID = 0x14,
|
||||
@@ -69,6 +70,12 @@ enum {
|
||||
MASK_OUT_OF_ORDER_DATA_DELIVERY_SUPPORT = 0x02000000,
|
||||
MASK_UIC_DME_TEST_MODE_SUPPORT = 0x04000000,
|
||||
MASK_CRYPTO_SUPPORT = 0x10000000,
|
||||
MASK_MCQ_SUPPORT = 0x40000000,
|
||||
};
|
||||
|
||||
/* MCQ capability mask */
|
||||
enum {
|
||||
MASK_EXT_IID_SUPPORT = 0x00000400,
|
||||
};
|
||||
|
||||
#define UFS_MASK(mask, offset) ((mask) << (offset))
|
||||
|
||||
Reference in New Issue
Block a user