1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 #ifndef _UFSHCD_PRIV_H_
4 #define _UFSHCD_PRIV_H_
6 #include <linux/pm_runtime.h>
7 #include <ufs/ufshcd.h>
9 static inline bool ufshcd_is_user_access_allowed(struct ufs_hba
*hba
)
11 return !hba
->shutting_down
;
14 void ufshcd_schedule_eh_work(struct ufs_hba
*hba
);
16 static inline bool ufshcd_keep_autobkops_enabled_except_suspend(
19 return hba
->caps
& UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND
;
22 static inline u8
ufshcd_wb_get_query_index(struct ufs_hba
*hba
)
24 if (hba
->dev_info
.wb_buffer_type
== WB_BUF_MODE_LU_DEDICATED
)
25 return hba
->dev_info
.wb_dedicated_lu
;
29 static inline bool ufshcd_is_wb_buf_flush_allowed(struct ufs_hba
*hba
)
31 return ufshcd_is_wb_allowed(hba
) &&
32 !(hba
->quirks
& UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL
);
35 #ifdef CONFIG_SCSI_UFS_HWMON
36 void ufs_hwmon_probe(struct ufs_hba
*hba
, u8 mask
);
37 void ufs_hwmon_remove(struct ufs_hba
*hba
);
38 void ufs_hwmon_notify_event(struct ufs_hba
*hba
, u8 ee_mask
);
40 static inline void ufs_hwmon_probe(struct ufs_hba
*hba
, u8 mask
) {}
41 static inline void ufs_hwmon_remove(struct ufs_hba
*hba
) {}
42 static inline void ufs_hwmon_notify_event(struct ufs_hba
*hba
, u8 ee_mask
) {}
45 int ufshcd_query_descriptor_retry(struct ufs_hba
*hba
,
46 enum query_opcode opcode
,
47 enum desc_idn idn
, u8 index
,
49 u8
*desc_buf
, int *buf_len
);
50 int ufshcd_read_desc_param(struct ufs_hba
*hba
,
51 enum desc_idn desc_id
,
56 int ufshcd_query_attr_retry(struct ufs_hba
*hba
, enum query_opcode opcode
,
57 enum attr_idn idn
, u8 index
, u8 selector
,
59 int ufshcd_query_attr(struct ufs_hba
*hba
, enum query_opcode opcode
,
60 enum attr_idn idn
, u8 index
, u8 selector
, u32
*attr_val
);
61 int ufshcd_query_flag(struct ufs_hba
*hba
, enum query_opcode opcode
,
62 enum flag_idn idn
, u8 index
, bool *flag_res
);
63 void ufshcd_auto_hibern8_update(struct ufs_hba
*hba
, u32 ahit
);
64 void ufshcd_compl_one_cqe(struct ufs_hba
*hba
, int task_tag
,
65 struct cq_entry
*cqe
);
66 int ufshcd_mcq_init(struct ufs_hba
*hba
);
67 void ufshcd_mcq_disable(struct ufs_hba
*hba
);
68 int ufshcd_mcq_decide_queue_depth(struct ufs_hba
*hba
);
69 int ufshcd_mcq_memory_alloc(struct ufs_hba
*hba
);
70 struct ufs_hw_queue
*ufshcd_mcq_req_to_hwq(struct ufs_hba
*hba
,
72 void ufshcd_mcq_compl_all_cqes_lock(struct ufs_hba
*hba
,
73 struct ufs_hw_queue
*hwq
);
74 bool ufshcd_cmd_inflight(struct scsi_cmnd
*cmd
);
75 int ufshcd_mcq_sq_cleanup(struct ufs_hba
*hba
, int task_tag
);
76 int ufshcd_mcq_abort(struct scsi_cmnd
*cmd
);
77 int ufshcd_try_to_abort_task(struct ufs_hba
*hba
, int tag
);
78 void ufshcd_release_scsi_cmd(struct ufs_hba
*hba
,
79 struct ufshcd_lrb
*lrbp
);
81 #define SD_ASCII_STD true
83 int ufshcd_read_string_desc(struct ufs_hba
*hba
, u8 desc_index
,
84 u8
**buf
, bool ascii
);
86 int ufshcd_send_uic_cmd(struct ufs_hba
*hba
, struct uic_command
*uic_cmd
);
88 int ufshcd_exec_raw_upiu_cmd(struct ufs_hba
*hba
,
89 struct utp_upiu_req
*req_upiu
,
90 struct utp_upiu_req
*rsp_upiu
,
91 enum upiu_request_transaction msgcode
,
92 u8
*desc_buff
, int *buff_len
,
93 enum query_opcode desc_op
);
95 int ufshcd_wb_toggle(struct ufs_hba
*hba
, bool enable
);
97 /* Wrapper functions for safely calling variant operations */
98 static inline const char *ufshcd_get_var_name(struct ufs_hba
*hba
)
101 return hba
->vops
->name
;
105 static inline void ufshcd_vops_exit(struct ufs_hba
*hba
)
107 if (hba
->vops
&& hba
->vops
->exit
)
108 return hba
->vops
->exit(hba
);
111 static inline u32
ufshcd_vops_get_ufs_hci_version(struct ufs_hba
*hba
)
113 if (hba
->vops
&& hba
->vops
->get_ufs_hci_version
)
114 return hba
->vops
->get_ufs_hci_version(hba
);
116 return ufshcd_readl(hba
, REG_UFS_VERSION
);
119 static inline int ufshcd_vops_clk_scale_notify(struct ufs_hba
*hba
,
120 bool up
, enum ufs_notify_change_status status
)
122 if (hba
->vops
&& hba
->vops
->clk_scale_notify
)
123 return hba
->vops
->clk_scale_notify(hba
, up
, status
);
127 static inline void ufshcd_vops_event_notify(struct ufs_hba
*hba
,
128 enum ufs_event_type evt
,
131 if (hba
->vops
&& hba
->vops
->event_notify
)
132 hba
->vops
->event_notify(hba
, evt
, data
);
135 static inline int ufshcd_vops_setup_clocks(struct ufs_hba
*hba
, bool on
,
136 enum ufs_notify_change_status status
)
138 if (hba
->vops
&& hba
->vops
->setup_clocks
)
139 return hba
->vops
->setup_clocks(hba
, on
, status
);
143 static inline int ufshcd_vops_hce_enable_notify(struct ufs_hba
*hba
,
146 if (hba
->vops
&& hba
->vops
->hce_enable_notify
)
147 return hba
->vops
->hce_enable_notify(hba
, status
);
151 static inline int ufshcd_vops_link_startup_notify(struct ufs_hba
*hba
,
154 if (hba
->vops
&& hba
->vops
->link_startup_notify
)
155 return hba
->vops
->link_startup_notify(hba
, status
);
160 static inline int ufshcd_vops_pwr_change_notify(struct ufs_hba
*hba
,
161 enum ufs_notify_change_status status
,
162 struct ufs_pa_layer_attr
*dev_max_params
,
163 struct ufs_pa_layer_attr
*dev_req_params
)
165 if (hba
->vops
&& hba
->vops
->pwr_change_notify
)
166 return hba
->vops
->pwr_change_notify(hba
, status
,
167 dev_max_params
, dev_req_params
);
172 static inline void ufshcd_vops_setup_task_mgmt(struct ufs_hba
*hba
,
173 int tag
, u8 tm_function
)
175 if (hba
->vops
&& hba
->vops
->setup_task_mgmt
)
176 return hba
->vops
->setup_task_mgmt(hba
, tag
, tm_function
);
179 static inline void ufshcd_vops_hibern8_notify(struct ufs_hba
*hba
,
180 enum uic_cmd_dme cmd
,
181 enum ufs_notify_change_status status
)
183 if (hba
->vops
&& hba
->vops
->hibern8_notify
)
184 return hba
->vops
->hibern8_notify(hba
, cmd
, status
);
187 static inline int ufshcd_vops_apply_dev_quirks(struct ufs_hba
*hba
)
189 if (hba
->vops
&& hba
->vops
->apply_dev_quirks
)
190 return hba
->vops
->apply_dev_quirks(hba
);
194 static inline void ufshcd_vops_fixup_dev_quirks(struct ufs_hba
*hba
)
196 if (hba
->vops
&& hba
->vops
->fixup_dev_quirks
)
197 hba
->vops
->fixup_dev_quirks(hba
);
200 static inline int ufshcd_vops_suspend(struct ufs_hba
*hba
, enum ufs_pm_op op
,
201 enum ufs_notify_change_status status
)
203 if (hba
->vops
&& hba
->vops
->suspend
)
204 return hba
->vops
->suspend(hba
, op
, status
);
209 static inline int ufshcd_vops_resume(struct ufs_hba
*hba
, enum ufs_pm_op op
)
211 if (hba
->vops
&& hba
->vops
->resume
)
212 return hba
->vops
->resume(hba
, op
);
217 static inline void ufshcd_vops_dbg_register_dump(struct ufs_hba
*hba
)
219 if (hba
->vops
&& hba
->vops
->dbg_register_dump
)
220 hba
->vops
->dbg_register_dump(hba
);
223 static inline int ufshcd_vops_device_reset(struct ufs_hba
*hba
)
225 if (hba
->vops
&& hba
->vops
->device_reset
)
226 return hba
->vops
->device_reset(hba
);
231 static inline void ufshcd_vops_config_scaling_param(struct ufs_hba
*hba
,
232 struct devfreq_dev_profile
*p
,
233 struct devfreq_simple_ondemand_data
*data
)
235 if (hba
->vops
&& hba
->vops
->config_scaling_param
)
236 hba
->vops
->config_scaling_param(hba
, p
, data
);
239 static inline void ufshcd_vops_reinit_notify(struct ufs_hba
*hba
)
241 if (hba
->vops
&& hba
->vops
->reinit_notify
)
242 hba
->vops
->reinit_notify(hba
);
245 static inline int ufshcd_vops_mcq_config_resource(struct ufs_hba
*hba
)
247 if (hba
->vops
&& hba
->vops
->mcq_config_resource
)
248 return hba
->vops
->mcq_config_resource(hba
);
253 static inline int ufshcd_mcq_vops_op_runtime_config(struct ufs_hba
*hba
)
255 if (hba
->vops
&& hba
->vops
->op_runtime_config
)
256 return hba
->vops
->op_runtime_config(hba
);
261 static inline int ufshcd_vops_get_outstanding_cqs(struct ufs_hba
*hba
,
264 if (hba
->vops
&& hba
->vops
->get_outstanding_cqs
)
265 return hba
->vops
->get_outstanding_cqs(hba
, ocqs
);
270 static inline int ufshcd_mcq_vops_config_esi(struct ufs_hba
*hba
)
272 if (hba
->vops
&& hba
->vops
->config_esi
)
273 return hba
->vops
->config_esi(hba
);
278 extern const struct ufs_pm_lvl_states ufs_pm_lvl_states
[];
281 * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
282 * @scsi_lun: scsi LUN id
284 * Return: UPIU LUN id
286 static inline u8
ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun
)
288 if (scsi_is_wlun(scsi_lun
))
289 return (scsi_lun
& UFS_UPIU_MAX_UNIT_NUM_ID
)
292 return scsi_lun
& UFS_UPIU_MAX_UNIT_NUM_ID
;
295 int __ufshcd_write_ee_control(struct ufs_hba
*hba
, u32 ee_ctrl_mask
);
296 int ufshcd_write_ee_control(struct ufs_hba
*hba
);
297 int ufshcd_update_ee_control(struct ufs_hba
*hba
, u16
*mask
,
298 const u16
*other_mask
, u16 set
, u16 clr
);
300 static inline int ufshcd_update_ee_drv_mask(struct ufs_hba
*hba
,
303 return ufshcd_update_ee_control(hba
, &hba
->ee_drv_mask
,
304 &hba
->ee_usr_mask
, set
, clr
);
307 static inline int ufshcd_update_ee_usr_mask(struct ufs_hba
*hba
,
310 return ufshcd_update_ee_control(hba
, &hba
->ee_usr_mask
,
311 &hba
->ee_drv_mask
, set
, clr
);
314 static inline int ufshcd_rpm_get_sync(struct ufs_hba
*hba
)
316 return pm_runtime_get_sync(&hba
->ufs_device_wlun
->sdev_gendev
);
319 static inline int ufshcd_rpm_get_if_active(struct ufs_hba
*hba
)
321 return pm_runtime_get_if_active(&hba
->ufs_device_wlun
->sdev_gendev
);
324 static inline int ufshcd_rpm_put_sync(struct ufs_hba
*hba
)
326 return pm_runtime_put_sync(&hba
->ufs_device_wlun
->sdev_gendev
);
329 static inline void ufshcd_rpm_get_noresume(struct ufs_hba
*hba
)
331 pm_runtime_get_noresume(&hba
->ufs_device_wlun
->sdev_gendev
);
334 static inline int ufshcd_rpm_resume(struct ufs_hba
*hba
)
336 return pm_runtime_resume(&hba
->ufs_device_wlun
->sdev_gendev
);
339 static inline int ufshcd_rpm_put(struct ufs_hba
*hba
)
341 return pm_runtime_put(&hba
->ufs_device_wlun
->sdev_gendev
);
345 * ufs_is_valid_unit_desc_lun - checks if the given LUN has a unit descriptor
346 * @dev_info: pointer of instance of struct ufs_dev_info
347 * @lun: LU number to check
348 * @return: true if the lun has a matching unit descriptor, false otherwise
350 static inline bool ufs_is_valid_unit_desc_lun(struct ufs_dev_info
*dev_info
, u8 lun
)
352 if (!dev_info
|| !dev_info
->max_lu_supported
) {
353 pr_err("Max General LU supported by UFS isn't initialized\n");
356 return lun
== UFS_UPIU_RPMB_WLUN
|| (lun
< dev_info
->max_lu_supported
);
359 static inline void ufshcd_inc_sq_tail(struct ufs_hw_queue
*q
)
360 __must_hold(&q
->sq_lock
)
365 if (q
->sq_tail_slot
== q
->max_entries
)
367 val
= q
->sq_tail_slot
* sizeof(struct utp_transfer_req_desc
);
368 writel(val
, q
->mcq_sq_tail
);
371 static inline void ufshcd_mcq_update_cq_tail_slot(struct ufs_hw_queue
*q
)
373 u32 val
= readl(q
->mcq_cq_tail
);
375 q
->cq_tail_slot
= val
/ sizeof(struct cq_entry
);
378 static inline bool ufshcd_mcq_is_cq_empty(struct ufs_hw_queue
*q
)
380 return q
->cq_head_slot
== q
->cq_tail_slot
;
383 static inline void ufshcd_mcq_inc_cq_head_slot(struct ufs_hw_queue
*q
)
386 if (q
->cq_head_slot
== q
->max_entries
)
390 static inline void ufshcd_mcq_update_cq_head(struct ufs_hw_queue
*q
)
392 writel(q
->cq_head_slot
* sizeof(struct cq_entry
), q
->mcq_cq_head
);
395 static inline struct cq_entry
*ufshcd_mcq_cur_cqe(struct ufs_hw_queue
*q
)
397 struct cq_entry
*cqe
= q
->cqe_base_addr
;
399 return cqe
+ q
->cq_head_slot
;
402 static inline u32
ufshcd_mcq_get_sq_head_slot(struct ufs_hw_queue
*q
)
404 u32 val
= readl(q
->mcq_sq_head
);
406 return val
/ sizeof(struct utp_transfer_req_desc
);
409 #endif /* _UFSHCD_PRIV_H_ */