Skip to content

Commit 5a717f4

Browse files
ptr324gregkh
authored andcommitted
scsi: ufs: core: Add missing post notify for power mode change
commit 7f45ed5 upstream. When the power mode change is successful but the power mode hasn't actually changed, the post notification was missed. Similar to the approach with hibernate/clock scale/hce enable, having pre/post notifications in the same function will make it easier to maintain. Additionally, supplement the description of power parameters for the pwr_change_notify callback. Fixes: 7eb584d ("ufs: refactor configuring power mode") Cc: [email protected] #6.11.x Signed-off-by: Peter Wang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Bart Van Assche <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 8c94257 commit 5a717f4

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

drivers/ufs/core/ufshcd.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -4684,9 +4684,6 @@ static int ufshcd_change_power_mode(struct ufs_hba *hba,
46844684
dev_err(hba->dev,
46854685
"%s: power mode change failed %d\n", __func__, ret);
46864686
} else {
4687-
ufshcd_vops_pwr_change_notify(hba, POST_CHANGE, NULL,
4688-
pwr_mode);
4689-
46904687
memcpy(&hba->pwr_info, pwr_mode,
46914688
sizeof(struct ufs_pa_layer_attr));
46924689
}
@@ -4715,6 +4712,10 @@ int ufshcd_config_pwr_mode(struct ufs_hba *hba,
47154712

47164713
ret = ufshcd_change_power_mode(hba, &final_params);
47174714

4715+
if (!ret)
4716+
ufshcd_vops_pwr_change_notify(hba, POST_CHANGE, NULL,
4717+
&final_params);
4718+
47184719
return ret;
47194720
}
47204721
EXPORT_SYMBOL_GPL(ufshcd_config_pwr_mode);

include/ufs/ufshcd.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,9 @@ struct ufs_pwr_mode_info {
308308
* to allow variant specific Uni-Pro initialization.
309309
* @pwr_change_notify: called before and after a power mode change
310310
* is carried out to allow vendor spesific capabilities
311-
* to be set.
311+
* to be set. PRE_CHANGE can modify final_params based
312+
* on desired_pwr_mode, but POST_CHANGE must not alter
313+
* the final_params parameter
312314
* @setup_xfer_req: called before any transfer request is issued
313315
* to set some things
314316
* @setup_task_mgmt: called before any task management request is issued
@@ -350,9 +352,9 @@ struct ufs_hba_variant_ops {
350352
int (*link_startup_notify)(struct ufs_hba *,
351353
enum ufs_notify_change_status);
352354
int (*pwr_change_notify)(struct ufs_hba *,
353-
enum ufs_notify_change_status status,
354-
struct ufs_pa_layer_attr *,
355-
struct ufs_pa_layer_attr *);
355+
enum ufs_notify_change_status status,
356+
struct ufs_pa_layer_attr *desired_pwr_mode,
357+
struct ufs_pa_layer_attr *final_params);
356358
void (*setup_xfer_req)(struct ufs_hba *hba, int tag,
357359
bool is_scsi_cmd);
358360
void (*setup_task_mgmt)(struct ufs_hba *, int, u8);

0 commit comments

Comments
 (0)