Commit 119ee38c authored by Avri Altman's avatar Avri Altman Committed by Martin K. Petersen

scsi: ufs: ufshpb: Cache HPB Control mode on init

We will use control_mode later when we need to differentiate between device
and host control modes.

Link: https://lore.kernel.org/r/20210712095039.8093-2-avri.altman@wdc.comReviewed-by: default avatarDaejun Park <daejun7.park@samsung.com>
Signed-off-by: default avatarAvri Altman <avri.altman@wdc.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 41d8a933
...@@ -652,6 +652,7 @@ struct ufs_hba_variant_params { ...@@ -652,6 +652,7 @@ struct ufs_hba_variant_params {
* @hpb_disabled: flag to check if HPB is disabled * @hpb_disabled: flag to check if HPB is disabled
* @max_hpb_single_cmd: device reported bMAX_DATA_SIZE_FOR_SINGLE_CMD value * @max_hpb_single_cmd: device reported bMAX_DATA_SIZE_FOR_SINGLE_CMD value
* @is_legacy: flag to check HPB 1.0 * @is_legacy: flag to check HPB 1.0
* @control_mode: either host or device
*/ */
struct ufshpb_dev_info { struct ufshpb_dev_info {
int num_lu; int num_lu;
...@@ -661,6 +662,7 @@ struct ufshpb_dev_info { ...@@ -661,6 +662,7 @@ struct ufshpb_dev_info {
bool hpb_disabled; bool hpb_disabled;
u8 max_hpb_single_cmd; u8 max_hpb_single_cmd;
bool is_legacy; bool is_legacy;
u8 control_mode;
}; };
#endif #endif
......
...@@ -1608,6 +1608,9 @@ static void ufshpb_lu_parameter_init(struct ufs_hba *hba, ...@@ -1608,6 +1608,9 @@ static void ufshpb_lu_parameter_init(struct ufs_hba *hba,
% (hpb->srgn_mem_size / HPB_ENTRY_SIZE); % (hpb->srgn_mem_size / HPB_ENTRY_SIZE);
hpb->pages_per_srgn = DIV_ROUND_UP(hpb->srgn_mem_size, PAGE_SIZE); hpb->pages_per_srgn = DIV_ROUND_UP(hpb->srgn_mem_size, PAGE_SIZE);
if (hpb_dev_info->control_mode == HPB_HOST_CONTROL)
hpb->is_hcm = true;
} }
static int ufshpb_alloc_region_tbl(struct ufs_hba *hba, struct ufshpb_lu *hpb) static int ufshpb_alloc_region_tbl(struct ufs_hba *hba, struct ufshpb_lu *hpb)
...@@ -2301,11 +2304,10 @@ void ufshpb_get_dev_info(struct ufs_hba *hba, u8 *desc_buf) ...@@ -2301,11 +2304,10 @@ void ufshpb_get_dev_info(struct ufs_hba *hba, u8 *desc_buf)
{ {
struct ufshpb_dev_info *hpb_dev_info = &hba->ufshpb_dev; struct ufshpb_dev_info *hpb_dev_info = &hba->ufshpb_dev;
int version, ret; int version, ret;
u8 hpb_mode;
u32 max_hpb_single_cmd = HPB_MULTI_CHUNK_LOW; u32 max_hpb_single_cmd = HPB_MULTI_CHUNK_LOW;
hpb_mode = desc_buf[DEVICE_DESC_PARAM_HPB_CONTROL]; hpb_dev_info->control_mode = desc_buf[DEVICE_DESC_PARAM_HPB_CONTROL];
if (hpb_mode == HPB_HOST_CONTROL) { if (hpb_dev_info->control_mode == HPB_HOST_CONTROL) {
dev_err(hba->dev, "%s: host control mode is not supported.\n", dev_err(hba->dev, "%s: host control mode is not supported.\n",
__func__); __func__);
hpb_dev_info->hpb_disabled = true; hpb_dev_info->hpb_disabled = true;
......
...@@ -228,6 +228,8 @@ struct ufshpb_lu { ...@@ -228,6 +228,8 @@ struct ufshpb_lu {
u32 entries_per_srgn_shift; u32 entries_per_srgn_shift;
u32 pages_per_srgn; u32 pages_per_srgn;
bool is_hcm;
struct ufshpb_stats stats; struct ufshpb_stats stats;
struct ufshpb_params params; struct ufshpb_params params;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment