BACKPORT: scsi: ufs: Add max_lu_supported in struct ufs_dev_info
Add one new parameter max_lu_supported in struct ufs_dev_info, which will be used to express exactly how many general LUs being supported by UFS device, and initialize it during booting stage. This patch also adds a new function ufshcd_device_geo_params_init() for initialization of UFS device geometry descriptor related parameters. Bug: 151050916 (cherry picked from commit 731f06216df3d605c466571a1c89222b4cca2fbc) [ Resolved minor conflict in drivers/scsi/ufs/ufshcd.c ] Change-Id: I2f407c726e5fe5e230c9f93075cd34b5b249b96a Link: https://lore.kernel.org/r/20200120130820.1737-8-huobean@gmail.com Reviewed-by: Asutosh Das <asutoshd@codeaurora.org> Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com> Signed-off-by: Bean Huo <beanhuo@micron.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Stanley Chu <stanley.chu@mediatek.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
parent
7b096eac4f
commit
0f30b1ed21
@ -558,6 +558,8 @@ struct ufs_dev_info {
|
||||
bool f_power_on_wp_en;
|
||||
/* Keeps information if any of the LU is power on write protected */
|
||||
bool is_lu_power_on_wp;
|
||||
/* Maximum number of general LU supported by the UFS device */
|
||||
u8 max_lu_supported;
|
||||
u16 wmanufacturerid;
|
||||
/*UFS device Product Name */
|
||||
u8 *model;
|
||||
|
@ -101,4 +101,11 @@ struct ufs_dev_fix {
|
||||
*/
|
||||
#define UFS_DEVICE_QUIRK_HOST_VS_DEBUGSAVECONFIGTIME (1 << 9)
|
||||
|
||||
/*
|
||||
* Some pre-3.1 UFS devices can support extended features by upgrading
|
||||
* the firmware. Enable this quirk to make UFS core driver probe and enable
|
||||
* supported features on such devices.
|
||||
*/
|
||||
#define UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES (1 << 10)
|
||||
|
||||
#endif /* UFS_QUIRKS_H_ */
|
||||
|
@ -6970,9 +6970,19 @@ out:
|
||||
|
||||
static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
|
||||
{
|
||||
if (!ufshcd_is_wb_allowed(hba))
|
||||
return;
|
||||
|
||||
if (hba->desc_size.dev_desc < DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP + 4)
|
||||
goto wb_disabled;
|
||||
|
||||
hba->dev_info.d_ext_ufs_feature_sup =
|
||||
get_unaligned_be32(desc_buf +
|
||||
DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP);
|
||||
|
||||
if (!(hba->dev_info.d_ext_ufs_feature_sup & UFS_DEV_WRITE_BOOSTER_SUP))
|
||||
goto wb_disabled;
|
||||
|
||||
/*
|
||||
* WB may be supported but not configured while provisioning.
|
||||
* The spec says, in dedicated wb buffer mode,
|
||||
@ -6988,11 +6998,29 @@ static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
|
||||
hba->dev_info.b_presrv_uspc_en =
|
||||
desc_buf[DEVICE_DESC_PARAM_WB_PRESRV_USRSPC_EN];
|
||||
|
||||
if (!((hba->dev_info.d_ext_ufs_feature_sup &
|
||||
UFS_DEV_WRITE_BOOSTER_SUP) &&
|
||||
hba->dev_info.b_wb_buffer_type &&
|
||||
if (!(hba->dev_info.b_wb_buffer_type &&
|
||||
hba->dev_info.d_wb_alloc_units))
|
||||
hba->caps &= ~UFSHCD_CAP_WB_EN;
|
||||
goto wb_disabled;
|
||||
|
||||
return;
|
||||
|
||||
wb_disabled:
|
||||
hba->caps &= ~UFSHCD_CAP_WB_EN;
|
||||
}
|
||||
|
||||
static void ufs_fixup_device_setup(struct ufs_hba *hba)
|
||||
{
|
||||
struct ufs_dev_fix *f;
|
||||
struct ufs_dev_info *dev_info = &hba->dev_info;
|
||||
|
||||
for (f = ufs_fixups; f->quirk; f++) {
|
||||
if ((f->wmanufacturerid == dev_info->wmanufacturerid ||
|
||||
f->wmanufacturerid == UFS_ANY_VENDOR) &&
|
||||
((dev_info->model &&
|
||||
STR_PRFX_EQUAL(f->model, dev_info->model)) ||
|
||||
!strcmp(f->model, UFS_ANY_MODEL)))
|
||||
hba->dev_quirks |= f->quirk;
|
||||
}
|
||||
}
|
||||
|
||||
static int ufs_get_device_desc(struct ufs_hba *hba)
|
||||
@ -7031,10 +7059,6 @@ static int ufs_get_device_desc(struct ufs_hba *hba)
|
||||
|
||||
model_index = desc_buf[DEVICE_DESC_PARAM_PRDCT_NAME];
|
||||
|
||||
/* Enable WB only for UFS-3.1 */
|
||||
if (dev_info->wspecversion >= 0x310)
|
||||
ufshcd_wb_probe(hba, desc_buf);
|
||||
|
||||
err = ufshcd_read_string_desc(hba, model_index,
|
||||
&dev_info->model, SD_ASCII_STD);
|
||||
if (err < 0) {
|
||||
@ -7045,6 +7069,16 @@ static int ufs_get_device_desc(struct ufs_hba *hba)
|
||||
|
||||
ufshcd_get_ref_clk_gating_wait(hba);
|
||||
|
||||
ufs_fixup_device_setup(hba);
|
||||
|
||||
/*
|
||||
* Probe WB only for UFS-3.1 devices or UFS devices with quirk
|
||||
* UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES enabled
|
||||
*/
|
||||
if (dev_info->wspecversion >= 0x310 ||
|
||||
(hba->dev_quirks & UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES))
|
||||
ufshcd_wb_probe(hba, desc_buf);
|
||||
|
||||
/*
|
||||
* ufshcd_read_string_desc returns size of the string
|
||||
* reset the error value
|
||||
@ -7064,21 +7098,6 @@ static void ufs_put_device_desc(struct ufs_hba *hba)
|
||||
dev_info->model = NULL;
|
||||
}
|
||||
|
||||
static void ufs_fixup_device_setup(struct ufs_hba *hba)
|
||||
{
|
||||
struct ufs_dev_fix *f;
|
||||
struct ufs_dev_info *dev_info = &hba->dev_info;
|
||||
|
||||
for (f = ufs_fixups; f->quirk; f++) {
|
||||
if ((f->wmanufacturerid == dev_info->wmanufacturerid ||
|
||||
f->wmanufacturerid == UFS_ANY_VENDOR) &&
|
||||
((dev_info->model &&
|
||||
STR_PRFX_EQUAL(f->model, dev_info->model)) ||
|
||||
!strcmp(f->model, UFS_ANY_MODEL)))
|
||||
hba->dev_quirks |= f->quirk;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* ufshcd_tune_pa_tactivate - Tunes PA_TActivate of local UniPro
|
||||
* @hba: per-adapter instance
|
||||
@ -7373,7 +7392,6 @@ static int ufshcd_device_params_init(struct ufs_hba *hba)
|
||||
__func__, ret);
|
||||
goto out;
|
||||
}
|
||||
ufs_fixup_device_setup(hba);
|
||||
|
||||
if (!ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
|
||||
QUERY_FLAG_IDN_PWR_ON_WPE, &flag))
|
||||
|
Loading…
Reference in New Issue
Block a user