1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Universal Flash Storage Host controller driver Core
4 * Copyright (C) 2011-2013 Samsung India Software Operations
5 * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
6 *
7 * Authors:
8 * Santosh Yaraganavi <santosh.sy@samsung.com>
9 * Vinayak Holikatti <h.vinayak@samsung.com>
10 */
11
12 #include <linux/async.h>
13 #include <linux/devfreq.h>
14 #include <linux/nls.h>
15 #include <linux/of.h>
16 #include <linux/bitfield.h>
17 #include <linux/blk-pm.h>
18 #include <linux/blkdev.h>
19 #include <linux/clk.h>
20 #include <linux/delay.h>
21 #include <linux/hex.h>
22 #include <linux/interrupt.h>
23 #include <linux/module.h>
24 #include <linux/pm_opp.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/sched/clock.h>
27 #include <linux/sizes.h>
28 #include <linux/iopoll.h>
29 #include <scsi/scsi_cmnd.h>
30 #include <scsi/scsi_dbg.h>
31 #include <scsi/scsi_driver.h>
32 #include <scsi/scsi_eh.h>
33 #include <scsi/scsi_tcq.h>
34 #include "ufshcd-priv.h"
35 #include <ufs/ufs_quirks.h>
36 #include <ufs/unipro.h>
37 #include "ufs-sysfs.h"
38 #include "ufs-debugfs.h"
39 #include "ufs-fault-injection.h"
40 #include "ufs_bsg.h"
41 #include "ufshcd-crypto.h"
42 #include <linux/unaligned.h>
43
44 #define CREATE_TRACE_POINTS
45 #include "ufs_trace.h"
46
47 #define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
48 UTP_TASK_REQ_COMPL |\
49 UFSHCD_ERROR_MASK)
50
51 /* UIC command timeout, unit: ms */
52 enum {
53 UIC_CMD_TIMEOUT_DEFAULT = 500,
54 UIC_CMD_TIMEOUT_MAX = 5000,
55 };
56 /* NOP OUT retries waiting for NOP IN response */
57 #define NOP_OUT_RETRIES 10
58 /* Timeout after 50 msecs if NOP OUT hangs without response */
59 #define NOP_OUT_TIMEOUT 50 /* msecs */
60
61 /* Query request retries */
62 #define QUERY_REQ_RETRIES 3
63 /* Query request timeout */
64 enum {
65 QUERY_REQ_TIMEOUT_MIN = 1,
66 QUERY_REQ_TIMEOUT_DEFAULT = 1500,
67 QUERY_REQ_TIMEOUT_MAX = 30000
68 };
69
70 /* Advanced RPMB request timeout */
71 #define ADVANCED_RPMB_REQ_TIMEOUT 3000 /* 3 seconds */
72
73 /* Task management command timeout */
74 #define TM_CMD_TIMEOUT 100 /* msecs */
75
76 /* maximum number of retries for a general UIC command */
77 #define UFS_UIC_COMMAND_RETRIES 3
78
79 /* maximum number of link-startup retries */
80 #define DME_LINKSTARTUP_RETRIES 3
81
82 /* maximum number of reset retries before giving up */
83 #define MAX_HOST_RESET_RETRIES 5
84
85 /* Maximum number of error handler retries before giving up */
86 #define MAX_ERR_HANDLER_RETRIES 5
87
88 /* Expose the flag value from utp_upiu_query.value */
89 #define MASK_QUERY_UPIU_FLAG_LOC 0xFF
90
91 /* Interrupt aggregation default timeout, unit: 40us */
92 #define INT_AGGR_DEF_TO 0x02
93
94 /* default delay of autosuspend: 2000 ms */
95 #define RPM_AUTOSUSPEND_DELAY_MS 2000
96
97 /* Default delay of RPM device flush delayed work */
98 #define RPM_DEV_FLUSH_RECHECK_WORK_DELAY_MS 5000
99
100 /* Default value of wait time before gating device ref clock */
101 #define UFSHCD_REF_CLK_GATING_WAIT_US 0xFF /* microsecs */
102
103 /* Polling time to wait for fDeviceInit */
104 #define FDEVICEINIT_COMPL_TIMEOUT 1500 /* millisecs */
105
106 /* Default RTC update every 10 seconds */
107 #define UFS_RTC_UPDATE_INTERVAL_MS (10 * MSEC_PER_SEC)
108
109 /* bMaxNumOfRTT is equal to two after device manufacturing */
110 #define DEFAULT_MAX_NUM_RTT 2
111
112 /* UFSHC 4.0 compliant HC support this mode. */
113 static bool use_mcq_mode = true;
114
is_mcq_supported(struct ufs_hba * hba)115 static bool is_mcq_supported(struct ufs_hba *hba)
116 {
117 return hba->mcq_sup && use_mcq_mode;
118 }
119
120 module_param(use_mcq_mode, bool, 0644);
121 MODULE_PARM_DESC(use_mcq_mode, "Control MCQ mode for controllers starting from UFSHCI 4.0. 1 - enable MCQ, 0 - disable MCQ. MCQ is enabled by default");
122
123 static unsigned int uic_cmd_timeout = UIC_CMD_TIMEOUT_DEFAULT;
124
uic_cmd_timeout_set(const char * val,const struct kernel_param * kp)125 static int uic_cmd_timeout_set(const char *val, const struct kernel_param *kp)
126 {
127 return param_set_uint_minmax(val, kp, UIC_CMD_TIMEOUT_DEFAULT,
128 UIC_CMD_TIMEOUT_MAX);
129 }
130
131 static const struct kernel_param_ops uic_cmd_timeout_ops = {
132 .set = uic_cmd_timeout_set,
133 .get = param_get_uint,
134 };
135
136 module_param_cb(uic_cmd_timeout, &uic_cmd_timeout_ops, &uic_cmd_timeout, 0644);
137 MODULE_PARM_DESC(uic_cmd_timeout,
138 "UFS UIC command timeout in milliseconds. Defaults to 500ms. Supported values range from 500ms to 5 seconds inclusively");
139
140 static unsigned int dev_cmd_timeout = QUERY_REQ_TIMEOUT_DEFAULT;
141
dev_cmd_timeout_set(const char * val,const struct kernel_param * kp)142 static int dev_cmd_timeout_set(const char *val, const struct kernel_param *kp)
143 {
144 return param_set_uint_minmax(val, kp, QUERY_REQ_TIMEOUT_MIN,
145 QUERY_REQ_TIMEOUT_MAX);
146 }
147
148 static const struct kernel_param_ops dev_cmd_timeout_ops = {
149 .set = dev_cmd_timeout_set,
150 .get = param_get_uint,
151 };
152
153 module_param_cb(dev_cmd_timeout, &dev_cmd_timeout_ops, &dev_cmd_timeout, 0644);
154 MODULE_PARM_DESC(dev_cmd_timeout,
155 "UFS Device command timeout in milliseconds. Defaults to 1.5s. Supported values range from 1ms to 30 seconds inclusively");
156
157 #define ufshcd_toggle_vreg(_dev, _vreg, _on) \
158 ({ \
159 int _ret; \
160 if (_on) \
161 _ret = ufshcd_enable_vreg(_dev, _vreg); \
162 else \
163 _ret = ufshcd_disable_vreg(_dev, _vreg); \
164 _ret; \
165 })
166
167 #define ufshcd_hex_dump(prefix_str, buf, len) do { \
168 size_t __len = (len); \
169 print_hex_dump(KERN_ERR, prefix_str, \
170 __len > 4 ? DUMP_PREFIX_OFFSET : DUMP_PREFIX_NONE,\
171 16, 4, buf, __len, false); \
172 } while (0)
173
ufshcd_dump_regs(struct ufs_hba * hba,size_t offset,size_t len,const char * prefix)174 int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
175 const char *prefix)
176 {
177 u32 *regs;
178 size_t pos;
179
180 if (offset % 4 != 0 || len % 4 != 0) /* keep readl happy */
181 return -EINVAL;
182
183 regs = kzalloc(len, GFP_ATOMIC);
184 if (!regs)
185 return -ENOMEM;
186
187 for (pos = 0; pos < len; pos += 4) {
188 if (offset == 0 &&
189 pos >= REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER &&
190 pos <= REG_UIC_ERROR_CODE_DME)
191 continue;
192 regs[pos / 4] = ufshcd_readl(hba, offset + pos);
193 }
194
195 ufshcd_hex_dump(prefix, regs, len);
196 kfree(regs);
197
198 return 0;
199 }
200 EXPORT_SYMBOL_GPL(ufshcd_dump_regs);
201
202 enum {
203 UFSHCD_MAX_CHANNEL = 0,
204 UFSHCD_MAX_ID = 1,
205 };
206
207 static const char *const ufshcd_state_name[] = {
208 [UFSHCD_STATE_RESET] = "reset",
209 [UFSHCD_STATE_OPERATIONAL] = "operational",
210 [UFSHCD_STATE_ERROR] = "error",
211 [UFSHCD_STATE_EH_SCHEDULED_FATAL] = "eh_fatal",
212 [UFSHCD_STATE_EH_SCHEDULED_NON_FATAL] = "eh_non_fatal",
213 };
214
215 /* UFSHCD error handling flags */
216 enum {
217 UFSHCD_EH_IN_PROGRESS = (1 << 0),
218 };
219
220 /* UFSHCD UIC layer error flags */
221 enum {
222 UFSHCD_UIC_DL_PA_INIT_ERROR = (1 << 0), /* Data link layer error */
223 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR = (1 << 1), /* Data link layer error */
224 UFSHCD_UIC_DL_TCx_REPLAY_ERROR = (1 << 2), /* Data link layer error */
225 UFSHCD_UIC_NL_ERROR = (1 << 3), /* Network layer error */
226 UFSHCD_UIC_TL_ERROR = (1 << 4), /* Transport Layer error */
227 UFSHCD_UIC_DME_ERROR = (1 << 5), /* DME error */
228 UFSHCD_UIC_PA_GENERIC_ERROR = (1 << 6), /* Generic PA error */
229 };
230
231 #define ufshcd_set_eh_in_progress(h) \
232 ((h)->eh_flags |= UFSHCD_EH_IN_PROGRESS)
233 #define ufshcd_eh_in_progress(h) \
234 ((h)->eh_flags & UFSHCD_EH_IN_PROGRESS)
235 #define ufshcd_clear_eh_in_progress(h) \
236 ((h)->eh_flags &= ~UFSHCD_EH_IN_PROGRESS)
237
238 const struct ufs_pm_lvl_states ufs_pm_lvl_states[] = {
239 [UFS_PM_LVL_0] = {UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE},
240 [UFS_PM_LVL_1] = {UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE},
241 [UFS_PM_LVL_2] = {UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE},
242 [UFS_PM_LVL_3] = {UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE},
243 [UFS_PM_LVL_4] = {UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE},
244 [UFS_PM_LVL_5] = {UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE},
245 /*
246 * For DeepSleep, the link is first put in hibern8 and then off.
247 * Leaving the link in hibern8 is not supported.
248 */
249 [UFS_PM_LVL_6] = {UFS_DEEPSLEEP_PWR_MODE, UIC_LINK_OFF_STATE},
250 };
251
252 static inline enum ufs_dev_pwr_mode
ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl)253 ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl)
254 {
255 return ufs_pm_lvl_states[lvl].dev_state;
256 }
257
258 static inline enum uic_link_state
ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl)259 ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl)
260 {
261 return ufs_pm_lvl_states[lvl].link_state;
262 }
263
264 static inline enum ufs_pm_level
ufs_get_desired_pm_lvl_for_dev_link_state(enum ufs_dev_pwr_mode dev_state,enum uic_link_state link_state)265 ufs_get_desired_pm_lvl_for_dev_link_state(enum ufs_dev_pwr_mode dev_state,
266 enum uic_link_state link_state)
267 {
268 enum ufs_pm_level lvl;
269
270 for (lvl = UFS_PM_LVL_0; lvl < UFS_PM_LVL_MAX; lvl++) {
271 if ((ufs_pm_lvl_states[lvl].dev_state == dev_state) &&
272 (ufs_pm_lvl_states[lvl].link_state == link_state))
273 return lvl;
274 }
275
276 /* if no match found, return the level 0 */
277 return UFS_PM_LVL_0;
278 }
279
ufshcd_has_pending_tasks(struct ufs_hba * hba)280 static bool ufshcd_has_pending_tasks(struct ufs_hba *hba)
281 {
282 return hba->outstanding_tasks || hba->active_uic_cmd ||
283 hba->uic_async_done;
284 }
285
ufshcd_is_ufs_dev_busy(struct ufs_hba * hba)286 static bool ufshcd_is_ufs_dev_busy(struct ufs_hba *hba)
287 {
288 return (hba->scsi_host_added && scsi_host_busy(hba->host)) ||
289 ufshcd_has_pending_tasks(hba);
290 }
291
292 static const struct ufs_dev_quirk ufs_fixups[] = {
293 /* UFS cards deviations table */
294 { .wmanufacturerid = UFS_VENDOR_MICRON,
295 .model = UFS_ANY_MODEL,
296 .quirk = UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM },
297 { .wmanufacturerid = UFS_VENDOR_SAMSUNG,
298 .model = UFS_ANY_MODEL,
299 .quirk = UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM |
300 UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE |
301 UFS_DEVICE_QUIRK_PA_HIBER8TIME |
302 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS },
303 { .wmanufacturerid = UFS_VENDOR_SKHYNIX,
304 .model = UFS_ANY_MODEL,
305 .quirk = UFS_DEVICE_QUIRK_HOST_PA_SAVECONFIGTIME },
306 { .wmanufacturerid = UFS_VENDOR_SKHYNIX,
307 .model = "hB8aL1" /*H28U62301AMR*/,
308 .quirk = UFS_DEVICE_QUIRK_HOST_VS_DEBUGSAVECONFIGTIME },
309 { .wmanufacturerid = UFS_VENDOR_TOSHIBA,
310 .model = UFS_ANY_MODEL,
311 .quirk = UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM },
312 { .wmanufacturerid = UFS_VENDOR_TOSHIBA,
313 .model = "THGLF2G9C8KBADG",
314 .quirk = UFS_DEVICE_QUIRK_PA_TACTIVATE },
315 { .wmanufacturerid = UFS_VENDOR_TOSHIBA,
316 .model = "THGLF2G9D8KBADG",
317 .quirk = UFS_DEVICE_QUIRK_PA_TACTIVATE },
318 { .wmanufacturerid = UFS_VENDOR_TOSHIBA,
319 .model = "THGJFJT0E25BAIP",
320 .quirk = UFS_DEVICE_QUIRK_NO_TIMESTAMP_SUPPORT },
321 { .wmanufacturerid = UFS_VENDOR_TOSHIBA,
322 .model = "THGJFJT1E45BATP",
323 .quirk = UFS_DEVICE_QUIRK_NO_TIMESTAMP_SUPPORT },
324 {}
325 };
326
327 static irqreturn_t ufshcd_tmc_handler(struct ufs_hba *hba);
328 static void ufshcd_async_scan(void *data, async_cookie_t cookie);
329 static int ufshcd_reset_and_restore(struct ufs_hba *hba);
330 static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd);
331 static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag);
332 static void ufshcd_hba_exit(struct ufs_hba *hba);
333 static int ufshcd_device_init(struct ufs_hba *hba, bool init_dev_params);
334 static int ufshcd_probe_hba(struct ufs_hba *hba, bool init_dev_params);
335 static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on);
336 static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba);
337 static int ufshcd_host_reset_and_restore(struct ufs_hba *hba);
338 static void ufshcd_resume_clkscaling(struct ufs_hba *hba);
339 static void ufshcd_suspend_clkscaling(struct ufs_hba *hba);
340 static irqreturn_t ufshcd_intr(int irq, void *__hba);
341 static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on);
342 static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on);
343 static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
344 struct ufs_vreg *vreg);
345 static void ufshcd_wb_toggle_buf_flush_during_h8(struct ufs_hba *hba,
346 bool enable);
347 static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba);
348 static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba);
349
ufshcd_enable_irq(struct ufs_hba * hba)350 void ufshcd_enable_irq(struct ufs_hba *hba)
351 {
352 if (!hba->is_irq_enabled) {
353 enable_irq(hba->irq);
354 hba->is_irq_enabled = true;
355 }
356 }
357 EXPORT_SYMBOL_GPL(ufshcd_enable_irq);
358
ufshcd_disable_irq(struct ufs_hba * hba)359 void ufshcd_disable_irq(struct ufs_hba *hba)
360 {
361 if (hba->is_irq_enabled) {
362 disable_irq(hba->irq);
363 hba->is_irq_enabled = false;
364 }
365 }
366 EXPORT_SYMBOL_GPL(ufshcd_disable_irq);
367
368 /**
369 * ufshcd_enable_intr - enable interrupts
370 * @hba: per adapter instance
371 * @intrs: interrupt bits
372 */
ufshcd_enable_intr(struct ufs_hba * hba,u32 intrs)373 void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
374 {
375 u32 old_val = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
376 u32 new_val = old_val | intrs;
377
378 if (new_val != old_val)
379 ufshcd_writel(hba, new_val, REG_INTERRUPT_ENABLE);
380 }
381
382 /**
383 * ufshcd_disable_intr - disable interrupts
384 * @hba: per adapter instance
385 * @intrs: interrupt bits
386 */
ufshcd_disable_intr(struct ufs_hba * hba,u32 intrs)387 static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
388 {
389 u32 old_val = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
390 u32 new_val = old_val & ~intrs;
391
392 if (new_val != old_val)
393 ufshcd_writel(hba, new_val, REG_INTERRUPT_ENABLE);
394 }
395
ufshcd_configure_wb(struct ufs_hba * hba)396 static void ufshcd_configure_wb(struct ufs_hba *hba)
397 {
398 if (!ufshcd_is_wb_allowed(hba))
399 return;
400
401 ufshcd_wb_toggle(hba, true);
402
403 ufshcd_wb_toggle_buf_flush_during_h8(hba, true);
404
405 if (ufshcd_is_wb_buf_flush_allowed(hba))
406 ufshcd_wb_toggle_buf_flush(hba, true);
407 }
408
ufshcd_add_cmd_upiu_trace(struct ufs_hba * hba,struct ufshcd_lrb * lrb,enum ufs_trace_str_t str_t)409 static void ufshcd_add_cmd_upiu_trace(struct ufs_hba *hba,
410 struct ufshcd_lrb *lrb,
411 enum ufs_trace_str_t str_t)
412 {
413 struct utp_upiu_req *rq = lrb->ucd_req_ptr;
414 struct utp_upiu_header *header;
415
416 if (!trace_ufshcd_upiu_enabled())
417 return;
418
419 if (str_t == UFS_CMD_SEND)
420 header = &rq->header;
421 else
422 header = &lrb->ucd_rsp_ptr->header;
423
424 trace_ufshcd_upiu(hba, str_t, header, &rq->sc.cdb,
425 UFS_TSF_CDB);
426 }
427
ufshcd_add_query_upiu_trace(struct ufs_hba * hba,enum ufs_trace_str_t str_t,struct utp_upiu_req * rq_rsp)428 static void ufshcd_add_query_upiu_trace(struct ufs_hba *hba,
429 enum ufs_trace_str_t str_t,
430 struct utp_upiu_req *rq_rsp)
431 {
432 if (!trace_ufshcd_upiu_enabled())
433 return;
434
435 trace_ufshcd_upiu(hba, str_t, &rq_rsp->header,
436 &rq_rsp->qr, UFS_TSF_OSF);
437 }
438
ufshcd_add_tm_upiu_trace(struct ufs_hba * hba,unsigned int tag,enum ufs_trace_str_t str_t)439 static void ufshcd_add_tm_upiu_trace(struct ufs_hba *hba, unsigned int tag,
440 enum ufs_trace_str_t str_t)
441 {
442 struct utp_task_req_desc *descp = &hba->utmrdl_base_addr[tag];
443
444 if (!trace_ufshcd_upiu_enabled())
445 return;
446
447 if (str_t == UFS_TM_SEND)
448 trace_ufshcd_upiu(hba, str_t,
449 &descp->upiu_req.req_header,
450 &descp->upiu_req.input_param1,
451 UFS_TSF_TM_INPUT);
452 else
453 trace_ufshcd_upiu(hba, str_t,
454 &descp->upiu_rsp.rsp_header,
455 &descp->upiu_rsp.output_param1,
456 UFS_TSF_TM_OUTPUT);
457 }
458
ufshcd_add_uic_command_trace(struct ufs_hba * hba,const struct uic_command * ucmd,enum ufs_trace_str_t str_t)459 static void ufshcd_add_uic_command_trace(struct ufs_hba *hba,
460 const struct uic_command *ucmd,
461 enum ufs_trace_str_t str_t)
462 {
463 u32 cmd, arg1, arg2, arg3;
464
465 if (!trace_ufshcd_uic_command_enabled())
466 return;
467
468 if (str_t == UFS_CMD_SEND) {
469 cmd = ucmd->command;
470 arg1 = ucmd->argument1;
471 arg2 = ucmd->argument2;
472 arg3 = ucmd->argument3;
473 } else {
474 cmd = ufshcd_readl(hba, REG_UIC_COMMAND);
475 arg1 = ufshcd_readl(hba, REG_UIC_COMMAND_ARG_1);
476 arg2 = ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2);
477 arg3 = ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
478 }
479
480 trace_ufshcd_uic_command(hba, str_t, cmd, arg1, arg2, arg3);
481 }
482
ufshcd_add_command_trace(struct ufs_hba * hba,struct scsi_cmnd * cmd,enum ufs_trace_str_t str_t)483 static void ufshcd_add_command_trace(struct ufs_hba *hba, struct scsi_cmnd *cmd,
484 enum ufs_trace_str_t str_t)
485 {
486 u64 lba = 0;
487 u8 opcode = 0, group_id = 0;
488 u32 doorbell = 0;
489 u32 intr;
490 u32 hwq_id = 0;
491 struct request *rq = scsi_cmd_to_rq(cmd);
492 unsigned int tag = rq->tag;
493 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
494 int transfer_len = -1;
495
496 /* trace UPIU also */
497 ufshcd_add_cmd_upiu_trace(hba, lrbp, str_t);
498 if (!trace_ufshcd_command_enabled())
499 return;
500
501 opcode = cmd->cmnd[0];
502
503 if (opcode == READ_10 || opcode == WRITE_10) {
504 /*
505 * Currently we only fully trace read(10) and write(10) commands
506 */
507 transfer_len =
508 be32_to_cpu(lrbp->ucd_req_ptr->sc.exp_data_transfer_len);
509 lba = scsi_get_lba(cmd);
510 if (opcode == WRITE_10)
511 group_id = cmd->cmnd[6];
512 } else if (opcode == UNMAP) {
513 /*
514 * The number of Bytes to be unmapped beginning with the lba.
515 */
516 transfer_len = blk_rq_bytes(rq);
517 lba = scsi_get_lba(cmd);
518 }
519
520 intr = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
521
522 if (hba->mcq_enabled) {
523 struct ufs_hw_queue *hwq = ufshcd_mcq_req_to_hwq(hba, rq);
524 if (hwq)
525 hwq_id = hwq->id;
526 } else {
527 doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
528 }
529 trace_ufshcd_command(cmd->device, hba, str_t, tag, doorbell, hwq_id,
530 transfer_len, intr, lba, opcode, group_id);
531 }
532
ufshcd_print_clk_freqs(struct ufs_hba * hba)533 static void ufshcd_print_clk_freqs(struct ufs_hba *hba)
534 {
535 struct ufs_clk_info *clki;
536 struct list_head *head = &hba->clk_list_head;
537
538 if (list_empty(head))
539 return;
540
541 list_for_each_entry(clki, head, list) {
542 if (!IS_ERR_OR_NULL(clki->clk) && clki->min_freq &&
543 clki->max_freq)
544 dev_err(hba->dev, "clk: %s, rate: %u\n",
545 clki->name, clki->curr_freq);
546 }
547 }
548
ufshcd_print_evt(struct ufs_hba * hba,u32 id,const char * err_name)549 static void ufshcd_print_evt(struct ufs_hba *hba, u32 id,
550 const char *err_name)
551 {
552 int i;
553 bool found = false;
554 const struct ufs_event_hist *e;
555
556 if (id >= UFS_EVT_CNT)
557 return;
558
559 e = &hba->ufs_stats.event[id];
560
561 for (i = 0; i < UFS_EVENT_HIST_LENGTH; i++) {
562 int p = (i + e->pos) % UFS_EVENT_HIST_LENGTH;
563
564 if (e->tstamp[p] == 0)
565 continue;
566 dev_err(hba->dev, "%s[%d] = 0x%x at %lld us\n", err_name, p,
567 e->val[p], div_u64(e->tstamp[p], 1000));
568 found = true;
569 }
570
571 if (!found)
572 dev_err(hba->dev, "No record of %s\n", err_name);
573 else
574 dev_err(hba->dev, "%s: total cnt=%llu\n", err_name, e->cnt);
575 }
576
ufshcd_print_evt_hist(struct ufs_hba * hba)577 static void ufshcd_print_evt_hist(struct ufs_hba *hba)
578 {
579 ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE, "host_regs: ");
580
581 ufshcd_print_evt(hba, UFS_EVT_PA_ERR, "pa_err");
582 ufshcd_print_evt(hba, UFS_EVT_DL_ERR, "dl_err");
583 ufshcd_print_evt(hba, UFS_EVT_NL_ERR, "nl_err");
584 ufshcd_print_evt(hba, UFS_EVT_TL_ERR, "tl_err");
585 ufshcd_print_evt(hba, UFS_EVT_DME_ERR, "dme_err");
586 ufshcd_print_evt(hba, UFS_EVT_AUTO_HIBERN8_ERR,
587 "auto_hibern8_err");
588 ufshcd_print_evt(hba, UFS_EVT_FATAL_ERR, "fatal_err");
589 ufshcd_print_evt(hba, UFS_EVT_LINK_STARTUP_FAIL,
590 "link_startup_fail");
591 ufshcd_print_evt(hba, UFS_EVT_RESUME_ERR, "resume_fail");
592 ufshcd_print_evt(hba, UFS_EVT_SUSPEND_ERR,
593 "suspend_fail");
594 ufshcd_print_evt(hba, UFS_EVT_WL_RES_ERR, "wlun resume_fail");
595 ufshcd_print_evt(hba, UFS_EVT_WL_SUSP_ERR,
596 "wlun suspend_fail");
597 ufshcd_print_evt(hba, UFS_EVT_DEV_RESET, "dev_reset");
598 ufshcd_print_evt(hba, UFS_EVT_HOST_RESET, "host_reset");
599 ufshcd_print_evt(hba, UFS_EVT_ABORT, "task_abort");
600
601 ufshcd_vops_dbg_register_dump(hba);
602 }
603
ufshcd_print_tr(struct ufs_hba * hba,struct scsi_cmnd * cmd,bool pr_prdt)604 static void ufshcd_print_tr(struct ufs_hba *hba, struct scsi_cmnd *cmd,
605 bool pr_prdt)
606 {
607 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
608 const int tag = scsi_cmd_to_rq(cmd)->tag;
609 int prdt_length;
610
611 if (hba->monitor.enabled) {
612 dev_err(hba->dev, "UPIU[%d] - issue time %lld us\n", tag,
613 div_u64(lrbp->issue_time_stamp_local_clock, 1000));
614 dev_err(hba->dev, "UPIU[%d] - complete time %lld us\n", tag,
615 div_u64(lrbp->compl_time_stamp_local_clock, 1000));
616 }
617 dev_err(hba->dev,
618 "UPIU[%d] - Transfer Request Descriptor phys@0x%llx\n",
619 tag, (u64)lrbp->utrd_dma_addr);
620
621 ufshcd_hex_dump("UPIU TRD: ", lrbp->utr_descriptor_ptr,
622 sizeof(struct utp_transfer_req_desc));
623 dev_err(hba->dev, "UPIU[%d] - Request UPIU phys@0x%llx\n", tag,
624 (u64)lrbp->ucd_req_dma_addr);
625 ufshcd_hex_dump("UPIU REQ: ", lrbp->ucd_req_ptr,
626 sizeof(struct utp_upiu_req));
627 dev_err(hba->dev, "UPIU[%d] - Response UPIU phys@0x%llx\n", tag,
628 (u64)lrbp->ucd_rsp_dma_addr);
629 ufshcd_hex_dump("UPIU RSP: ", lrbp->ucd_rsp_ptr,
630 sizeof(struct utp_upiu_rsp));
631
632 prdt_length = le16_to_cpu(
633 lrbp->utr_descriptor_ptr->prd_table_length);
634 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN)
635 prdt_length /= ufshcd_sg_entry_size(hba);
636
637 dev_err(hba->dev,
638 "UPIU[%d] - PRDT - %d entries phys@0x%llx\n",
639 tag, prdt_length,
640 (u64)lrbp->ucd_prdt_dma_addr);
641
642 if (pr_prdt)
643 ufshcd_hex_dump("UPIU PRDT: ", lrbp->ucd_prdt_ptr,
644 ufshcd_sg_entry_size(hba) * prdt_length);
645 }
646
ufshcd_print_tr_iter(struct request * req,void * priv)647 static bool ufshcd_print_tr_iter(struct request *req, void *priv)
648 {
649 struct scsi_device *sdev = req->q->queuedata;
650 struct Scsi_Host *shost = sdev->host;
651 struct ufs_hba *hba = shost_priv(shost);
652
653 if (!blk_mq_is_reserved_rq(req))
654 ufshcd_print_tr(hba, blk_mq_rq_to_pdu(req), *(bool *)priv);
655
656 return true;
657 }
658
659 /**
660 * ufshcd_print_trs_all - print trs for all started requests.
661 * @hba: per-adapter instance.
662 * @pr_prdt: need to print prdt or not.
663 */
ufshcd_print_trs_all(struct ufs_hba * hba,bool pr_prdt)664 static void ufshcd_print_trs_all(struct ufs_hba *hba, bool pr_prdt)
665 {
666 blk_mq_tagset_busy_iter(&hba->host->tag_set, ufshcd_print_tr_iter, &pr_prdt);
667 }
668
ufshcd_print_tmrs(struct ufs_hba * hba,unsigned long bitmap)669 static void ufshcd_print_tmrs(struct ufs_hba *hba, unsigned long bitmap)
670 {
671 int tag;
672
673 for_each_set_bit(tag, &bitmap, hba->nutmrs) {
674 struct utp_task_req_desc *tmrdp = &hba->utmrdl_base_addr[tag];
675
676 dev_err(hba->dev, "TM[%d] - Task Management Header\n", tag);
677 ufshcd_hex_dump("", tmrdp, sizeof(*tmrdp));
678 }
679 }
680
ufshcd_print_host_state(struct ufs_hba * hba)681 static void ufshcd_print_host_state(struct ufs_hba *hba)
682 {
683 const struct scsi_device *sdev_ufs = hba->ufs_device_wlun;
684
685 dev_err(hba->dev, "UFS Host state=%d\n", hba->ufshcd_state);
686 dev_err(hba->dev, "%d outstanding reqs, tasks=0x%lx\n",
687 hba->scsi_host_added ? scsi_host_busy(hba->host) : 0,
688 hba->outstanding_tasks);
689 dev_err(hba->dev, "saved_err=0x%x, saved_uic_err=0x%x\n",
690 hba->saved_err, hba->saved_uic_err);
691 dev_err(hba->dev, "Device power mode=%d, UIC link state=%d\n",
692 hba->curr_dev_pwr_mode, hba->uic_link_state);
693 dev_err(hba->dev, "PM in progress=%d, sys. suspended=%d\n",
694 hba->pm_op_in_progress, hba->is_sys_suspended);
695 dev_err(hba->dev, "Auto BKOPS=%d, Host self-block=%d\n",
696 hba->auto_bkops_enabled, hba->host->host_self_blocked);
697 dev_err(hba->dev, "Clk gate=%d\n", hba->clk_gating.state);
698 dev_err(hba->dev,
699 "last_hibern8_exit_tstamp at %lld us, hibern8_exit_cnt=%d\n",
700 div_u64(hba->ufs_stats.last_hibern8_exit_tstamp, 1000),
701 hba->ufs_stats.hibern8_exit_cnt);
702 dev_err(hba->dev, "error handling flags=0x%x, req. abort count=%d\n",
703 hba->eh_flags, hba->req_abort_count);
704 dev_err(hba->dev, "hba->ufs_version=0x%x, Host capabilities=0x%x, caps=0x%x\n",
705 hba->ufs_version, hba->capabilities, hba->caps);
706 dev_err(hba->dev, "quirks=0x%x, dev. quirks=0x%x\n", hba->quirks,
707 hba->dev_quirks);
708 if (sdev_ufs)
709 dev_err(hba->dev, "UFS dev info: %.8s %.16s rev %.4s\n",
710 sdev_ufs->vendor, sdev_ufs->model, sdev_ufs->rev);
711
712 ufshcd_print_clk_freqs(hba);
713 }
714
715 /**
716 * ufshcd_print_pwr_info - print power params as saved in hba
717 * power info
718 * @hba: per-adapter instance
719 */
ufshcd_print_pwr_info(struct ufs_hba * hba)720 static void ufshcd_print_pwr_info(struct ufs_hba *hba)
721 {
722 static const char * const names[] = {
723 "INVALID MODE",
724 "FAST MODE",
725 "SLOW_MODE",
726 "INVALID MODE",
727 "FASTAUTO_MODE",
728 "SLOWAUTO_MODE",
729 "INVALID MODE",
730 };
731
732 /*
733 * Using dev_dbg to avoid messages during runtime PM to avoid
734 * never-ending cycles of messages written back to storage by user space
735 * causing runtime resume, causing more messages and so on.
736 */
737 dev_dbg(hba->dev, "%s:[RX, TX]: gear=[%d, %d], lane[%d, %d], pwr[%s, %s], rate = %d\n",
738 __func__,
739 hba->pwr_info.gear_rx, hba->pwr_info.gear_tx,
740 hba->pwr_info.lane_rx, hba->pwr_info.lane_tx,
741 names[hba->pwr_info.pwr_rx],
742 names[hba->pwr_info.pwr_tx],
743 hba->pwr_info.hs_rate);
744 }
745
ufshcd_device_reset(struct ufs_hba * hba)746 static void ufshcd_device_reset(struct ufs_hba *hba)
747 {
748 int err;
749
750 err = ufshcd_vops_device_reset(hba);
751
752 if (!err) {
753 ufshcd_set_ufs_dev_active(hba);
754 if (ufshcd_is_wb_allowed(hba)) {
755 hba->dev_info.wb_enabled = false;
756 hba->dev_info.wb_buf_flush_enabled = false;
757 }
758 if (hba->dev_info.rtc_type == UFS_RTC_RELATIVE)
759 hba->dev_info.rtc_time_baseline = 0;
760 }
761 if (err != -EOPNOTSUPP)
762 ufshcd_update_evt_hist(hba, UFS_EVT_DEV_RESET, err);
763 }
764
ufshcd_delay_us(unsigned long us,unsigned long tolerance)765 void ufshcd_delay_us(unsigned long us, unsigned long tolerance)
766 {
767 if (!us)
768 return;
769
770 if (us < 10)
771 udelay(us);
772 else
773 usleep_range(us, us + tolerance);
774 }
775 EXPORT_SYMBOL_GPL(ufshcd_delay_us);
776
777 /**
778 * ufshcd_wait_for_register - wait for register value to change
779 * @hba: per-adapter interface
780 * @reg: mmio register offset
781 * @mask: mask to apply to the read register value
782 * @val: value to wait for
783 * @interval_us: polling interval in microseconds
784 * @timeout_ms: timeout in milliseconds
785 *
786 * Return: -ETIMEDOUT on error, zero on success.
787 */
ufshcd_wait_for_register(struct ufs_hba * hba,u32 reg,u32 mask,u32 val,unsigned long interval_us,unsigned long timeout_ms)788 static int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
789 u32 val, unsigned long interval_us,
790 unsigned long timeout_ms)
791 {
792 u32 v;
793
794 val &= mask; /* ignore bits that we don't intend to wait on */
795
796 return read_poll_timeout(ufshcd_readl, v, (v & mask) == val,
797 interval_us, timeout_ms * 1000, false, hba, reg);
798 }
799
800 /**
801 * ufshcd_get_intr_mask - Get the interrupt bit mask
802 * @hba: Pointer to adapter instance
803 *
804 * Return: interrupt bit mask per version
805 */
ufshcd_get_intr_mask(struct ufs_hba * hba)806 static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
807 {
808 if (hba->ufs_version <= ufshci_version(2, 0))
809 return INTERRUPT_MASK_ALL_VER_11;
810
811 return INTERRUPT_MASK_ALL_VER_21;
812 }
813
814 /**
815 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
816 * @hba: Pointer to adapter instance
817 *
818 * Return: UFSHCI version supported by the controller
819 */
ufshcd_get_ufs_version(struct ufs_hba * hba)820 static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
821 {
822 u32 ufshci_ver;
823
824 if (hba->quirks & UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION)
825 ufshci_ver = ufshcd_vops_get_ufs_hci_version(hba);
826 else
827 ufshci_ver = ufshcd_readl(hba, REG_UFS_VERSION);
828
829 /*
830 * UFSHCI v1.x uses a different version scheme, in order
831 * to allow the use of comparisons with the ufshci_version
832 * function, we convert it to the same scheme as ufs 2.0+.
833 */
834 if (ufshci_ver & 0x00010000)
835 return ufshci_version(1, ufshci_ver & 0x00000100);
836
837 return ufshci_ver;
838 }
839
840 /**
841 * ufshcd_is_device_present - Check if any device connected to
842 * the host controller
843 * @hba: pointer to adapter instance
844 *
845 * Return: true if device present, false if no device detected
846 */
ufshcd_is_device_present(struct ufs_hba * hba)847 static inline bool ufshcd_is_device_present(struct ufs_hba *hba)
848 {
849 return ufshcd_readl(hba, REG_CONTROLLER_STATUS) & DEVICE_PRESENT;
850 }
851
852 /**
853 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
854 * @lrbp: pointer to local command reference block
855 * @cqe: pointer to the completion queue entry
856 *
857 * This function is used to get the OCS field from UTRD
858 *
859 * Return: the OCS field in the UTRD.
860 */
ufshcd_get_tr_ocs(struct ufshcd_lrb * lrbp,struct cq_entry * cqe)861 static enum utp_ocs ufshcd_get_tr_ocs(struct ufshcd_lrb *lrbp,
862 struct cq_entry *cqe)
863 {
864 if (cqe)
865 return cqe->overall_status & MASK_OCS;
866
867 return lrbp->utr_descriptor_ptr->header.ocs & MASK_OCS;
868 }
869
870 /**
871 * ufshcd_utrl_clear() - Clear requests from the controller request list.
872 * @hba: per adapter instance
873 * @mask: mask with one bit set for each request to be cleared
874 */
ufshcd_utrl_clear(struct ufs_hba * hba,u32 mask)875 static inline void ufshcd_utrl_clear(struct ufs_hba *hba, u32 mask)
876 {
877 if (hba->quirks & UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR)
878 mask = ~mask;
879 /*
880 * From the UFSHCI specification: "UTP Transfer Request List CLear
881 * Register (UTRLCLR): This field is bit significant. Each bit
882 * corresponds to a slot in the UTP Transfer Request List, where bit 0
883 * corresponds to request slot 0. A bit in this field is set to ‘0’
884 * by host software to indicate to the host controller that a transfer
885 * request slot is cleared. The host controller
886 * shall free up any resources associated to the request slot
887 * immediately, and shall set the associated bit in UTRLDBR to ‘0’. The
888 * host software indicates no change to request slots by setting the
889 * associated bits in this field to ‘1’. Bits in this field shall only
890 * be set ‘1’ or ‘0’ by host software when UTRLRSR is set to ‘1’."
891 */
892 ufshcd_writel(hba, ~mask, REG_UTP_TRANSFER_REQ_LIST_CLEAR);
893 }
894
895 /**
896 * ufshcd_utmrl_clear - Clear a bit in UTMRLCLR register
897 * @hba: per adapter instance
898 * @pos: position of the bit to be cleared
899 */
ufshcd_utmrl_clear(struct ufs_hba * hba,u32 pos)900 static inline void ufshcd_utmrl_clear(struct ufs_hba *hba, u32 pos)
901 {
902 if (hba->quirks & UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR)
903 ufshcd_writel(hba, (1 << pos), REG_UTP_TASK_REQ_LIST_CLEAR);
904 else
905 ufshcd_writel(hba, ~(1 << pos), REG_UTP_TASK_REQ_LIST_CLEAR);
906 }
907
908 /**
909 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
910 * @reg: Register value of host controller status
911 *
912 * Return: 0 on success; a positive value if failed.
913 */
ufshcd_get_lists_status(u32 reg)914 static inline int ufshcd_get_lists_status(u32 reg)
915 {
916 return !((reg & UFSHCD_STATUS_READY) == UFSHCD_STATUS_READY);
917 }
918
919 /**
920 * ufshcd_get_req_rsp - returns the TR response transaction type
921 * @ucd_rsp_ptr: pointer to response UPIU
922 *
923 * Return: UPIU type.
924 */
925 static inline enum upiu_response_transaction
ufshcd_get_req_rsp(struct utp_upiu_rsp * ucd_rsp_ptr)926 ufshcd_get_req_rsp(struct utp_upiu_rsp *ucd_rsp_ptr)
927 {
928 return ucd_rsp_ptr->header.transaction_code;
929 }
930
931 /**
932 * ufshcd_is_exception_event - Check if the device raised an exception event
933 * @ucd_rsp_ptr: pointer to response UPIU
934 *
935 * The function checks if the device raised an exception event indicated in
936 * the Device Information field of response UPIU.
937 *
938 * Return: true if exception is raised, false otherwise.
939 */
ufshcd_is_exception_event(struct utp_upiu_rsp * ucd_rsp_ptr)940 static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp *ucd_rsp_ptr)
941 {
942 return ucd_rsp_ptr->header.device_information & 1;
943 }
944
945 /**
946 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
947 * @hba: per adapter instance
948 */
949 static inline void
ufshcd_reset_intr_aggr(struct ufs_hba * hba)950 ufshcd_reset_intr_aggr(struct ufs_hba *hba)
951 {
952 ufshcd_writel(hba, INT_AGGR_ENABLE |
953 INT_AGGR_COUNTER_AND_TIMER_RESET,
954 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
955 }
956
957 /**
958 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
959 * @hba: per adapter instance
960 * @cnt: Interrupt aggregation counter threshold
961 * @tmout: Interrupt aggregation timeout value
962 */
963 static inline void
ufshcd_config_intr_aggr(struct ufs_hba * hba,u8 cnt,u8 tmout)964 ufshcd_config_intr_aggr(struct ufs_hba *hba, u8 cnt, u8 tmout)
965 {
966 ufshcd_writel(hba, INT_AGGR_ENABLE | INT_AGGR_PARAM_WRITE |
967 INT_AGGR_COUNTER_THLD_VAL(cnt) |
968 INT_AGGR_TIMEOUT_VAL(tmout),
969 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
970 }
971
972 /**
973 * ufshcd_disable_intr_aggr - Disables interrupt aggregation.
974 * @hba: per adapter instance
975 */
ufshcd_disable_intr_aggr(struct ufs_hba * hba)976 static inline void ufshcd_disable_intr_aggr(struct ufs_hba *hba)
977 {
978 ufshcd_writel(hba, 0, REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
979 }
980
981 /**
982 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
983 * When run-stop registers are set to 1, it indicates the
984 * host controller that it can process the requests
985 * @hba: per adapter instance
986 */
ufshcd_enable_run_stop_reg(struct ufs_hba * hba)987 static void ufshcd_enable_run_stop_reg(struct ufs_hba *hba)
988 {
989 ufshcd_writel(hba, UTP_TASK_REQ_LIST_RUN_STOP_BIT,
990 REG_UTP_TASK_REQ_LIST_RUN_STOP);
991 ufshcd_writel(hba, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT,
992 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP);
993 }
994
995 /**
996 * ufshcd_hba_start - Start controller initialization sequence
997 * @hba: per adapter instance
998 */
ufshcd_hba_start(struct ufs_hba * hba)999 static inline void ufshcd_hba_start(struct ufs_hba *hba)
1000 {
1001 u32 val = CONTROLLER_ENABLE;
1002
1003 if (ufshcd_crypto_enable(hba))
1004 val |= CRYPTO_GENERAL_ENABLE;
1005
1006 ufshcd_writel(hba, val, REG_CONTROLLER_ENABLE);
1007 }
1008
1009 /**
1010 * ufshcd_is_hba_active - Get controller state
1011 * @hba: per adapter instance
1012 *
1013 * Return: true if and only if the controller is active.
1014 */
ufshcd_is_hba_active(struct ufs_hba * hba)1015 bool ufshcd_is_hba_active(struct ufs_hba *hba)
1016 {
1017 return ufshcd_readl(hba, REG_CONTROLLER_ENABLE) & CONTROLLER_ENABLE;
1018 }
1019 EXPORT_SYMBOL_GPL(ufshcd_is_hba_active);
1020
1021 /**
1022 * ufshcd_pm_qos_init - initialize PM QoS request
1023 * @hba: per adapter instance
1024 */
ufshcd_pm_qos_init(struct ufs_hba * hba)1025 void ufshcd_pm_qos_init(struct ufs_hba *hba)
1026 {
1027 guard(mutex)(&hba->pm_qos_mutex);
1028
1029 if (hba->pm_qos_enabled)
1030 return;
1031
1032 cpu_latency_qos_add_request(&hba->pm_qos_req, PM_QOS_DEFAULT_VALUE);
1033
1034 if (cpu_latency_qos_request_active(&hba->pm_qos_req))
1035 hba->pm_qos_enabled = true;
1036 }
1037
1038 /**
1039 * ufshcd_pm_qos_exit - remove request from PM QoS
1040 * @hba: per adapter instance
1041 */
ufshcd_pm_qos_exit(struct ufs_hba * hba)1042 void ufshcd_pm_qos_exit(struct ufs_hba *hba)
1043 {
1044 guard(mutex)(&hba->pm_qos_mutex);
1045
1046 if (!hba->pm_qos_enabled)
1047 return;
1048
1049 cpu_latency_qos_remove_request(&hba->pm_qos_req);
1050 hba->pm_qos_enabled = false;
1051 }
1052
1053 /**
1054 * ufshcd_pm_qos_update - update PM QoS request
1055 * @hba: per adapter instance
1056 * @on: If True, vote for perf PM QoS mode otherwise power save mode
1057 */
ufshcd_pm_qos_update(struct ufs_hba * hba,bool on)1058 void ufshcd_pm_qos_update(struct ufs_hba *hba, bool on)
1059 {
1060 guard(mutex)(&hba->pm_qos_mutex);
1061
1062 if (!hba->pm_qos_enabled)
1063 return;
1064
1065 cpu_latency_qos_update_request(&hba->pm_qos_req, on ? 0 : PM_QOS_DEFAULT_VALUE);
1066 }
1067 EXPORT_SYMBOL_GPL(ufshcd_pm_qos_update);
1068
1069 /**
1070 * ufshcd_set_clk_freq - set UFS controller clock frequencies
1071 * @hba: per adapter instance
1072 * @scale_up: If True, set max possible frequency othewise set low frequency
1073 *
1074 * Return: 0 if successful; < 0 upon failure.
1075 */
ufshcd_set_clk_freq(struct ufs_hba * hba,bool scale_up)1076 static int ufshcd_set_clk_freq(struct ufs_hba *hba, bool scale_up)
1077 {
1078 int ret = 0;
1079 struct ufs_clk_info *clki;
1080 struct list_head *head = &hba->clk_list_head;
1081
1082 if (list_empty(head))
1083 goto out;
1084
1085 list_for_each_entry(clki, head, list) {
1086 if (!IS_ERR_OR_NULL(clki->clk)) {
1087 if (scale_up && clki->max_freq) {
1088 if (clki->curr_freq == clki->max_freq)
1089 continue;
1090
1091 ret = clk_set_rate(clki->clk, clki->max_freq);
1092 if (ret) {
1093 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
1094 __func__, clki->name,
1095 clki->max_freq, ret);
1096 break;
1097 }
1098 trace_ufshcd_clk_scaling(hba,
1099 "scaled up", clki->name,
1100 clki->curr_freq,
1101 clki->max_freq);
1102
1103 clki->curr_freq = clki->max_freq;
1104
1105 } else if (!scale_up && clki->min_freq) {
1106 if (clki->curr_freq == clki->min_freq)
1107 continue;
1108
1109 ret = clk_set_rate(clki->clk, clki->min_freq);
1110 if (ret) {
1111 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
1112 __func__, clki->name,
1113 clki->min_freq, ret);
1114 break;
1115 }
1116 trace_ufshcd_clk_scaling(hba,
1117 "scaled down", clki->name,
1118 clki->curr_freq,
1119 clki->min_freq);
1120 clki->curr_freq = clki->min_freq;
1121 }
1122 }
1123 dev_dbg(hba->dev, "%s: clk: %s, rate: %lu\n", __func__,
1124 clki->name, clk_get_rate(clki->clk));
1125 }
1126
1127 out:
1128 return ret;
1129 }
1130
ufshcd_opp_config_clks(struct device * dev,struct opp_table * opp_table,struct dev_pm_opp * opp,void * data,bool scaling_down)1131 int ufshcd_opp_config_clks(struct device *dev, struct opp_table *opp_table,
1132 struct dev_pm_opp *opp, void *data,
1133 bool scaling_down)
1134 {
1135 struct ufs_hba *hba = dev_get_drvdata(dev);
1136 struct list_head *head = &hba->clk_list_head;
1137 struct ufs_clk_info *clki;
1138 unsigned long freq;
1139 u8 idx = 0;
1140 int ret;
1141
1142 list_for_each_entry(clki, head, list) {
1143 if (!IS_ERR_OR_NULL(clki->clk)) {
1144 freq = dev_pm_opp_get_freq_indexed(opp, idx++);
1145
1146 /* Do not set rate for clocks having frequency as 0 */
1147 if (!freq)
1148 continue;
1149
1150 ret = clk_set_rate(clki->clk, freq);
1151 if (ret) {
1152 dev_err(dev, "%s: %s clk set rate(%ldHz) failed, %d\n",
1153 __func__, clki->name, freq, ret);
1154 return ret;
1155 }
1156
1157 trace_ufshcd_clk_scaling(hba,
1158 (scaling_down ? "scaled down" : "scaled up"),
1159 clki->name, hba->clk_scaling.target_freq, freq);
1160 }
1161 }
1162
1163 return 0;
1164 }
1165 EXPORT_SYMBOL_GPL(ufshcd_opp_config_clks);
1166
ufshcd_opp_set_rate(struct ufs_hba * hba,unsigned long freq)1167 static int ufshcd_opp_set_rate(struct ufs_hba *hba, unsigned long freq)
1168 {
1169 struct dev_pm_opp *opp;
1170 int ret;
1171
1172 opp = dev_pm_opp_find_freq_floor_indexed(hba->dev,
1173 &freq, 0);
1174 if (IS_ERR(opp))
1175 return PTR_ERR(opp);
1176
1177 ret = dev_pm_opp_set_opp(hba->dev, opp);
1178 dev_pm_opp_put(opp);
1179
1180 return ret;
1181 }
1182
1183 /**
1184 * ufshcd_scale_clks - scale up or scale down UFS controller clocks
1185 * @hba: per adapter instance
1186 * @freq: frequency to scale
1187 * @scale_up: True if scaling up and false if scaling down
1188 *
1189 * Return: 0 if successful; < 0 upon failure.
1190 */
ufshcd_scale_clks(struct ufs_hba * hba,unsigned long freq,bool scale_up)1191 int ufshcd_scale_clks(struct ufs_hba *hba, unsigned long freq, bool scale_up)
1192 {
1193 int ret = 0;
1194 ktime_t start = ktime_get();
1195
1196 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, freq, PRE_CHANGE);
1197 if (ret)
1198 goto out;
1199
1200 if (hba->use_pm_opp)
1201 ret = ufshcd_opp_set_rate(hba, freq);
1202 else
1203 ret = ufshcd_set_clk_freq(hba, scale_up);
1204 if (ret)
1205 goto out;
1206
1207 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, freq, POST_CHANGE);
1208 if (ret) {
1209 if (hba->use_pm_opp)
1210 ufshcd_opp_set_rate(hba,
1211 hba->devfreq->previous_freq);
1212 else
1213 ufshcd_set_clk_freq(hba, !scale_up);
1214 goto out;
1215 }
1216
1217 ufshcd_pm_qos_update(hba, scale_up);
1218
1219 out:
1220 trace_ufshcd_profile_clk_scaling(hba,
1221 (scale_up ? "up" : "down"),
1222 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
1223 return ret;
1224 }
1225
1226 /**
1227 * ufshcd_is_devfreq_scaling_required - check if scaling is required or not
1228 * @hba: per adapter instance
1229 * @freq: frequency to scale
1230 * @scale_up: True if scaling up and false if scaling down
1231 *
1232 * Return: true if scaling is required, false otherwise.
1233 */
ufshcd_is_devfreq_scaling_required(struct ufs_hba * hba,unsigned long freq,bool scale_up)1234 static bool ufshcd_is_devfreq_scaling_required(struct ufs_hba *hba,
1235 unsigned long freq, bool scale_up)
1236 {
1237 struct ufs_clk_info *clki;
1238 struct list_head *head = &hba->clk_list_head;
1239
1240 if (list_empty(head))
1241 return false;
1242
1243 if (hba->use_pm_opp)
1244 return freq != hba->clk_scaling.target_freq;
1245
1246 list_for_each_entry(clki, head, list) {
1247 if (!IS_ERR_OR_NULL(clki->clk)) {
1248 if (scale_up && clki->max_freq) {
1249 if (clki->curr_freq == clki->max_freq)
1250 continue;
1251 return true;
1252 } else if (!scale_up && clki->min_freq) {
1253 if (clki->curr_freq == clki->min_freq)
1254 continue;
1255 return true;
1256 }
1257 }
1258 }
1259
1260 return false;
1261 }
1262
1263 /*
1264 * Determine the number of pending commands by counting the bits in the SCSI
1265 * device budget maps. This approach has been selected because a bit is set in
1266 * the budget map before scsi_host_queue_ready() checks the host_self_blocked
1267 * flag. The host_self_blocked flag can be modified by calling
1268 * scsi_block_requests() or scsi_unblock_requests().
1269 */
ufshcd_pending_cmds(struct ufs_hba * hba)1270 static u32 ufshcd_pending_cmds(struct ufs_hba *hba)
1271 {
1272 struct scsi_device *sdev;
1273 unsigned long flags;
1274 u32 pending = 0;
1275
1276 spin_lock_irqsave(hba->host->host_lock, flags);
1277 __shost_for_each_device(sdev, hba->host)
1278 pending += scsi_device_busy(sdev);
1279 spin_unlock_irqrestore(hba->host->host_lock, flags);
1280
1281 return pending;
1282 }
1283
1284 /*
1285 * Wait until all pending SCSI commands and TMFs have finished or the timeout
1286 * has expired.
1287 *
1288 * Return: 0 upon success; -EBUSY upon timeout.
1289 */
ufshcd_wait_for_pending_cmds(struct ufs_hba * hba,u64 wait_timeout_us)1290 static int ufshcd_wait_for_pending_cmds(struct ufs_hba *hba,
1291 u64 wait_timeout_us)
1292 {
1293 int ret = 0;
1294 u32 tm_doorbell;
1295 u32 tr_pending;
1296 bool timeout = false, do_last_check = false;
1297 ktime_t start;
1298
1299 ufshcd_hold(hba);
1300 /*
1301 * Wait for all the outstanding tasks/transfer requests.
1302 * Verify by checking the doorbell registers are clear.
1303 */
1304 start = ktime_get();
1305 do {
1306 if (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL) {
1307 ret = -EBUSY;
1308 goto out;
1309 }
1310
1311 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
1312 tr_pending = ufshcd_pending_cmds(hba);
1313 if (!tm_doorbell && !tr_pending) {
1314 timeout = false;
1315 break;
1316 } else if (do_last_check) {
1317 break;
1318 }
1319
1320 __set_current_state(TASK_UNINTERRUPTIBLE);
1321 io_schedule_timeout(msecs_to_jiffies(20));
1322 if (ktime_to_us(ktime_sub(ktime_get(), start)) >
1323 wait_timeout_us) {
1324 timeout = true;
1325 /*
1326 * We might have scheduled out for long time so make
1327 * sure to check if doorbells are cleared by this time
1328 * or not.
1329 */
1330 do_last_check = true;
1331 }
1332 } while (tm_doorbell || tr_pending);
1333
1334 if (timeout) {
1335 dev_err(hba->dev,
1336 "%s: timedout waiting for doorbell to clear (tm=0x%x, tr=0x%x)\n",
1337 __func__, tm_doorbell, tr_pending);
1338 ret = -EBUSY;
1339 }
1340 out:
1341 ufshcd_release(hba);
1342 return ret;
1343 }
1344
1345 /**
1346 * ufshcd_pause_command_processing - Pause command processing
1347 * @hba: per-adapter instance
1348 * @timeout_us: timeout in microseconds to wait for pending commands to finish
1349 *
1350 * This function stops new command submissions and waits for existing commands
1351 * to complete.
1352 *
1353 * Return: 0 on success, %-EBUSY if commands did not finish within @timeout_us.
1354 * On failure, all acquired locks are released and the tagset is unquiesced.
1355 */
ufshcd_pause_command_processing(struct ufs_hba * hba,u64 timeout_us)1356 int ufshcd_pause_command_processing(struct ufs_hba *hba, u64 timeout_us)
1357 __cond_acquires(0, &hba->host->scan_mutex)
1358 __cond_acquires(0, &hba->clk_scaling_lock)
1359 {
1360 int ret = 0;
1361
1362 mutex_lock(&hba->host->scan_mutex);
1363 blk_mq_quiesce_tagset(&hba->host->tag_set);
1364 down_write(&hba->clk_scaling_lock);
1365
1366 if (ufshcd_wait_for_pending_cmds(hba, timeout_us)) {
1367 ret = -EBUSY;
1368 up_write(&hba->clk_scaling_lock);
1369 blk_mq_unquiesce_tagset(&hba->host->tag_set);
1370 mutex_unlock(&hba->host->scan_mutex);
1371 }
1372
1373 return ret;
1374 }
1375
1376 /**
1377 * ufshcd_resume_command_processing - Resume command processing
1378 * @hba: per-adapter instance
1379 *
1380 * This function resumes command submissions.
1381 */
ufshcd_resume_command_processing(struct ufs_hba * hba)1382 void ufshcd_resume_command_processing(struct ufs_hba *hba)
1383 __releases(&hba->clk_scaling_lock)
1384 __releases(&hba->host->scan_mutex)
1385 {
1386 up_write(&hba->clk_scaling_lock);
1387 blk_mq_unquiesce_tagset(&hba->host->tag_set);
1388 mutex_unlock(&hba->host->scan_mutex);
1389 }
1390
1391 /**
1392 * ufshcd_scale_gear - scale up/down UFS gear
1393 * @hba: per adapter instance
1394 * @target_gear: target gear to scale to
1395 * @scale_up: True for scaling up gear and false for scaling down
1396 *
1397 * Return: 0 for success; -EBUSY if scaling can't happen at this time;
1398 * non-zero for any other errors.
1399 */
ufshcd_scale_gear(struct ufs_hba * hba,u32 target_gear,bool scale_up)1400 static int ufshcd_scale_gear(struct ufs_hba *hba, u32 target_gear, bool scale_up)
1401 {
1402 int ret = 0;
1403 struct ufs_pa_layer_attr new_pwr_info;
1404
1405 if (target_gear) {
1406 new_pwr_info = hba->pwr_info;
1407 new_pwr_info.gear_tx = target_gear;
1408 new_pwr_info.gear_rx = target_gear;
1409
1410 goto config_pwr_mode;
1411 }
1412
1413 /* Legacy gear scaling, in case vops_freq_to_gear_speed() is not implemented */
1414 if (scale_up) {
1415 memcpy(&new_pwr_info, &hba->clk_scaling.saved_pwr_info,
1416 sizeof(struct ufs_pa_layer_attr));
1417 } else {
1418 memcpy(&new_pwr_info, &hba->pwr_info,
1419 sizeof(struct ufs_pa_layer_attr));
1420
1421 if (hba->pwr_info.gear_tx > hba->clk_scaling.min_gear ||
1422 hba->pwr_info.gear_rx > hba->clk_scaling.min_gear) {
1423 /* save the current power mode */
1424 memcpy(&hba->clk_scaling.saved_pwr_info,
1425 &hba->pwr_info,
1426 sizeof(struct ufs_pa_layer_attr));
1427
1428 /* scale down gear */
1429 new_pwr_info.gear_tx = hba->clk_scaling.min_gear;
1430 new_pwr_info.gear_rx = hba->clk_scaling.min_gear;
1431 }
1432 }
1433
1434 config_pwr_mode:
1435 /* check if the power mode needs to be changed or not? */
1436 ret = ufshcd_config_pwr_mode(hba, &new_pwr_info,
1437 UFSHCD_PMC_POLICY_DONT_FORCE);
1438 if (ret)
1439 dev_err(hba->dev, "%s: failed err %d, old gear: (tx %d rx %d), new gear: (tx %d rx %d)",
1440 __func__, ret,
1441 hba->pwr_info.gear_tx, hba->pwr_info.gear_rx,
1442 new_pwr_info.gear_tx, new_pwr_info.gear_rx);
1443
1444 return ret;
1445 }
1446
1447 /*
1448 * Wait until all pending SCSI commands and TMFs have finished or the timeout
1449 * has expired.
1450 *
1451 * Return: 0 upon success; -EBUSY upon timeout.
1452 */
ufshcd_clock_scaling_prepare(struct ufs_hba * hba,u64 timeout_us)1453 static int ufshcd_clock_scaling_prepare(struct ufs_hba *hba, u64 timeout_us)
1454 __cond_acquires(0, &hba->host->scan_mutex)
1455 __cond_acquires(0, &hba->wb_mutex)
1456 __cond_acquires(0, &hba->clk_scaling_lock)
1457 {
1458 int ret = 0;
1459 /*
1460 * make sure that there are no outstanding requests when
1461 * clock scaling is in progress
1462 */
1463 mutex_lock(&hba->host->scan_mutex);
1464 blk_mq_quiesce_tagset(&hba->host->tag_set);
1465 mutex_lock(&hba->wb_mutex);
1466 down_write(&hba->clk_scaling_lock);
1467
1468 if (!hba->clk_scaling.is_allowed ||
1469 ufshcd_wait_for_pending_cmds(hba, timeout_us)) {
1470 ret = -EBUSY;
1471 up_write(&hba->clk_scaling_lock);
1472 mutex_unlock(&hba->wb_mutex);
1473 blk_mq_unquiesce_tagset(&hba->host->tag_set);
1474 mutex_unlock(&hba->host->scan_mutex);
1475 goto out;
1476 }
1477
1478 /* let's not get into low power until clock scaling is completed */
1479 ufshcd_hold(hba);
1480
1481 out:
1482 return ret;
1483 }
1484
ufshcd_clock_scaling_unprepare(struct ufs_hba * hba,int err)1485 static void ufshcd_clock_scaling_unprepare(struct ufs_hba *hba, int err)
1486 __releases(&hba->clk_scaling_lock)
1487 __releases(&hba->wb_mutex)
1488 __releases(&hba->host->scan_mutex)
1489 {
1490 up_write(&hba->clk_scaling_lock);
1491 mutex_unlock(&hba->wb_mutex);
1492 blk_mq_unquiesce_tagset(&hba->host->tag_set);
1493 mutex_unlock(&hba->host->scan_mutex);
1494
1495 /* Enable Write Booster if current gear requires it else disable it */
1496 if (ufshcd_enable_wb_if_scaling_up(hba) && !err)
1497 ufshcd_wb_toggle(hba, hba->pwr_info.gear_rx >= hba->clk_scaling.wb_gear);
1498
1499 ufshcd_release(hba);
1500 }
1501
1502 /**
1503 * ufshcd_devfreq_scale - scale up/down UFS clocks and gear
1504 * @hba: per adapter instance
1505 * @freq: frequency to scale
1506 * @scale_up: True for scaling up and false for scalin down
1507 *
1508 * Return: 0 for success; -EBUSY if scaling can't happen at this time; non-zero
1509 * for any other errors.
1510 */
ufshcd_devfreq_scale(struct ufs_hba * hba,unsigned long freq,bool scale_up)1511 static int ufshcd_devfreq_scale(struct ufs_hba *hba, unsigned long freq,
1512 bool scale_up)
1513 {
1514 u32 old_gear = hba->pwr_info.gear_rx;
1515 u32 new_gear = 0;
1516 int ret = 0;
1517
1518 new_gear = ufshcd_vops_freq_to_gear_speed(hba, freq);
1519
1520 ret = ufshcd_clock_scaling_prepare(hba, 1 * USEC_PER_SEC);
1521 if (ret)
1522 return ret;
1523
1524 /* scale down the gear before scaling down clocks */
1525 if (!scale_up) {
1526 ret = ufshcd_scale_gear(hba, new_gear, false);
1527 if (ret)
1528 goto out_unprepare;
1529 }
1530
1531 ret = ufshcd_scale_clks(hba, freq, scale_up);
1532 if (ret) {
1533 if (!scale_up)
1534 ufshcd_scale_gear(hba, old_gear, true);
1535 goto out_unprepare;
1536 }
1537
1538 /* scale up the gear after scaling up clocks */
1539 if (scale_up) {
1540 ret = ufshcd_scale_gear(hba, new_gear, true);
1541 if (ret) {
1542 ufshcd_scale_clks(hba, hba->devfreq->previous_freq,
1543 false);
1544 goto out_unprepare;
1545 }
1546 }
1547
1548 out_unprepare:
1549 ufshcd_clock_scaling_unprepare(hba, ret);
1550 return ret;
1551 }
1552
ufshcd_clk_scaling_suspend_work(struct work_struct * work)1553 static void ufshcd_clk_scaling_suspend_work(struct work_struct *work)
1554 {
1555 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1556 clk_scaling.suspend_work);
1557
1558 scoped_guard(spinlock_irqsave, &hba->clk_scaling.lock)
1559 {
1560 if (hba->clk_scaling.active_reqs ||
1561 hba->clk_scaling.is_suspended)
1562 return;
1563
1564 hba->clk_scaling.is_suspended = true;
1565 hba->clk_scaling.window_start_t = 0;
1566 }
1567
1568 devfreq_suspend_device(hba->devfreq);
1569 }
1570
ufshcd_clk_scaling_resume_work(struct work_struct * work)1571 static void ufshcd_clk_scaling_resume_work(struct work_struct *work)
1572 {
1573 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1574 clk_scaling.resume_work);
1575
1576 scoped_guard(spinlock_irqsave, &hba->clk_scaling.lock)
1577 {
1578 if (!hba->clk_scaling.is_suspended)
1579 return;
1580 hba->clk_scaling.is_suspended = false;
1581 }
1582
1583 devfreq_resume_device(hba->devfreq);
1584 }
1585
ufshcd_devfreq_target(struct device * dev,unsigned long * freq,u32 flags)1586 static int ufshcd_devfreq_target(struct device *dev,
1587 unsigned long *freq, u32 flags)
1588 {
1589 int ret = 0;
1590 struct ufs_hba *hba = dev_get_drvdata(dev);
1591 ktime_t start;
1592 bool scale_up = false, sched_clk_scaling_suspend_work = false;
1593 struct list_head *clk_list = &hba->clk_list_head;
1594 struct ufs_clk_info *clki;
1595
1596 if (!ufshcd_is_clkscaling_supported(hba))
1597 return -EINVAL;
1598
1599 if (hba->use_pm_opp) {
1600 struct dev_pm_opp *opp;
1601
1602 /* Get the recommended frequency from OPP framework */
1603 opp = devfreq_recommended_opp(dev, freq, flags);
1604 if (IS_ERR(opp))
1605 return PTR_ERR(opp);
1606
1607 dev_pm_opp_put(opp);
1608 } else {
1609 /* Override with the closest supported frequency */
1610 clki = list_first_entry(&hba->clk_list_head, struct ufs_clk_info,
1611 list);
1612 *freq = (unsigned long) clk_round_rate(clki->clk, *freq);
1613 }
1614
1615 scoped_guard(spinlock_irqsave, &hba->clk_scaling.lock)
1616 {
1617 if (ufshcd_eh_in_progress(hba))
1618 return 0;
1619
1620 /* Skip scaling clock when clock scaling is suspended */
1621 if (hba->clk_scaling.is_suspended) {
1622 dev_warn(hba->dev, "clock scaling is suspended, skip");
1623 return 0;
1624 }
1625
1626 if (!hba->clk_scaling.active_reqs)
1627 sched_clk_scaling_suspend_work = true;
1628
1629 if (list_empty(clk_list))
1630 goto out;
1631
1632 /* Decide based on the target or rounded-off frequency and update */
1633 if (hba->use_pm_opp)
1634 scale_up = *freq > hba->clk_scaling.target_freq;
1635 else
1636 scale_up = *freq == clki->max_freq;
1637
1638 if (!hba->use_pm_opp && !scale_up)
1639 *freq = clki->min_freq;
1640
1641 /* Update the frequency */
1642 if (!ufshcd_is_devfreq_scaling_required(hba, *freq, scale_up)) {
1643 ret = 0;
1644 goto out; /* no state change required */
1645 }
1646 }
1647
1648 start = ktime_get();
1649 ret = ufshcd_devfreq_scale(hba, *freq, scale_up);
1650 if (!ret)
1651 hba->clk_scaling.target_freq = *freq;
1652
1653 trace_ufshcd_profile_clk_scaling(hba,
1654 (scale_up ? "up" : "down"),
1655 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
1656
1657 out:
1658 if (sched_clk_scaling_suspend_work &&
1659 (!scale_up || hba->clk_scaling.suspend_on_no_request))
1660 queue_work(hba->clk_scaling.workq,
1661 &hba->clk_scaling.suspend_work);
1662
1663 return ret;
1664 }
1665
ufshcd_devfreq_get_dev_status(struct device * dev,struct devfreq_dev_status * stat)1666 static int ufshcd_devfreq_get_dev_status(struct device *dev,
1667 struct devfreq_dev_status *stat)
1668 {
1669 struct ufs_hba *hba = dev_get_drvdata(dev);
1670 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
1671 ktime_t curr_t;
1672
1673 if (!ufshcd_is_clkscaling_supported(hba))
1674 return -EINVAL;
1675
1676 memset(stat, 0, sizeof(*stat));
1677
1678 guard(spinlock_irqsave)(&hba->clk_scaling.lock);
1679
1680 curr_t = ktime_get();
1681 if (!scaling->window_start_t)
1682 goto start_window;
1683
1684 /*
1685 * If current frequency is 0, then the ondemand governor considers
1686 * there's no initial frequency set. And it always requests to set
1687 * to max. frequency.
1688 */
1689 if (hba->use_pm_opp) {
1690 stat->current_frequency = hba->clk_scaling.target_freq;
1691 } else {
1692 struct list_head *clk_list = &hba->clk_list_head;
1693 struct ufs_clk_info *clki;
1694
1695 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1696 stat->current_frequency = clki->curr_freq;
1697 }
1698
1699 if (scaling->is_busy_started)
1700 scaling->tot_busy_t += ktime_us_delta(curr_t,
1701 scaling->busy_start_t);
1702 stat->total_time = ktime_us_delta(curr_t, scaling->window_start_t);
1703 stat->busy_time = scaling->tot_busy_t;
1704 start_window:
1705 scaling->window_start_t = curr_t;
1706 scaling->tot_busy_t = 0;
1707
1708 if (scaling->active_reqs) {
1709 scaling->busy_start_t = curr_t;
1710 scaling->is_busy_started = true;
1711 } else {
1712 scaling->busy_start_t = 0;
1713 scaling->is_busy_started = false;
1714 }
1715
1716 return 0;
1717 }
1718
ufshcd_devfreq_init(struct ufs_hba * hba)1719 static int ufshcd_devfreq_init(struct ufs_hba *hba)
1720 {
1721 struct list_head *clk_list = &hba->clk_list_head;
1722 struct ufs_clk_info *clki;
1723 struct devfreq *devfreq;
1724 int ret;
1725
1726 /* Skip devfreq if we don't have any clocks in the list */
1727 if (list_empty(clk_list))
1728 return 0;
1729
1730 if (!hba->use_pm_opp) {
1731 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1732 dev_pm_opp_add(hba->dev, clki->min_freq, 0);
1733 dev_pm_opp_add(hba->dev, clki->max_freq, 0);
1734 }
1735
1736 ufshcd_vops_config_scaling_param(hba, &hba->vps->devfreq_profile,
1737 &hba->vps->ondemand_data);
1738 devfreq = devfreq_add_device(hba->dev,
1739 &hba->vps->devfreq_profile,
1740 DEVFREQ_GOV_SIMPLE_ONDEMAND,
1741 &hba->vps->ondemand_data);
1742 if (IS_ERR(devfreq)) {
1743 ret = PTR_ERR(devfreq);
1744 dev_err(hba->dev, "Unable to register with devfreq %d\n", ret);
1745
1746 if (!hba->use_pm_opp) {
1747 dev_pm_opp_remove(hba->dev, clki->min_freq);
1748 dev_pm_opp_remove(hba->dev, clki->max_freq);
1749 }
1750 return ret;
1751 }
1752
1753 hba->devfreq = devfreq;
1754
1755 return 0;
1756 }
1757
ufshcd_devfreq_remove(struct ufs_hba * hba)1758 static void ufshcd_devfreq_remove(struct ufs_hba *hba)
1759 {
1760 struct list_head *clk_list = &hba->clk_list_head;
1761
1762 if (!hba->devfreq)
1763 return;
1764
1765 devfreq_remove_device(hba->devfreq);
1766 hba->devfreq = NULL;
1767
1768 if (!hba->use_pm_opp) {
1769 struct ufs_clk_info *clki;
1770
1771 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1772 dev_pm_opp_remove(hba->dev, clki->min_freq);
1773 dev_pm_opp_remove(hba->dev, clki->max_freq);
1774 }
1775 }
1776
ufshcd_suspend_clkscaling(struct ufs_hba * hba)1777 static void ufshcd_suspend_clkscaling(struct ufs_hba *hba)
1778 {
1779 bool suspend = false;
1780
1781 cancel_work_sync(&hba->clk_scaling.suspend_work);
1782 cancel_work_sync(&hba->clk_scaling.resume_work);
1783
1784 scoped_guard(spinlock_irqsave, &hba->clk_scaling.lock)
1785 {
1786 if (!hba->clk_scaling.is_suspended) {
1787 suspend = true;
1788 hba->clk_scaling.is_suspended = true;
1789 hba->clk_scaling.window_start_t = 0;
1790 }
1791 }
1792
1793 if (suspend)
1794 devfreq_suspend_device(hba->devfreq);
1795 }
1796
ufshcd_resume_clkscaling(struct ufs_hba * hba)1797 static void ufshcd_resume_clkscaling(struct ufs_hba *hba)
1798 {
1799 bool resume = false;
1800
1801 scoped_guard(spinlock_irqsave, &hba->clk_scaling.lock)
1802 {
1803 if (hba->clk_scaling.is_suspended) {
1804 resume = true;
1805 hba->clk_scaling.is_suspended = false;
1806 }
1807 }
1808
1809 if (resume)
1810 devfreq_resume_device(hba->devfreq);
1811 }
1812
ufshcd_clkscale_enable_show(struct device * dev,struct device_attribute * attr,char * buf)1813 static ssize_t ufshcd_clkscale_enable_show(struct device *dev,
1814 struct device_attribute *attr, char *buf)
1815 {
1816 struct ufs_hba *hba = dev_get_drvdata(dev);
1817
1818 return sysfs_emit(buf, "%d\n", hba->clk_scaling.is_enabled);
1819 }
1820
ufshcd_clkscale_enable_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)1821 static ssize_t ufshcd_clkscale_enable_store(struct device *dev,
1822 struct device_attribute *attr, const char *buf, size_t count)
1823 {
1824 struct ufs_hba *hba = dev_get_drvdata(dev);
1825 struct ufs_clk_info *clki;
1826 unsigned long freq;
1827 u32 value;
1828 int err = 0;
1829
1830 if (kstrtou32(buf, 0, &value))
1831 return -EINVAL;
1832
1833 down(&hba->host_sem);
1834 if (!ufshcd_is_user_access_allowed(hba)) {
1835 err = -EBUSY;
1836 goto out;
1837 }
1838
1839 value = !!value;
1840 if (value == hba->clk_scaling.is_enabled)
1841 goto out;
1842
1843 ufshcd_rpm_get_sync(hba);
1844 ufshcd_hold(hba);
1845
1846 hba->clk_scaling.is_enabled = value;
1847
1848 if (value) {
1849 ufshcd_resume_clkscaling(hba);
1850 goto out_rel;
1851 }
1852
1853 clki = list_first_entry(&hba->clk_list_head, struct ufs_clk_info, list);
1854 freq = clki->max_freq;
1855
1856 ufshcd_suspend_clkscaling(hba);
1857
1858 if (!ufshcd_is_devfreq_scaling_required(hba, freq, true))
1859 goto out_rel;
1860
1861 err = ufshcd_devfreq_scale(hba, freq, true);
1862 if (err)
1863 dev_err(hba->dev, "%s: failed to scale clocks up %d\n",
1864 __func__, err);
1865 else
1866 hba->clk_scaling.target_freq = freq;
1867
1868 out_rel:
1869 ufshcd_release(hba);
1870 ufshcd_rpm_put_sync(hba);
1871 out:
1872 up(&hba->host_sem);
1873 return err ? err : count;
1874 }
1875
ufshcd_init_clk_scaling_sysfs(struct ufs_hba * hba)1876 static void ufshcd_init_clk_scaling_sysfs(struct ufs_hba *hba)
1877 {
1878 hba->clk_scaling.enable_attr.show = ufshcd_clkscale_enable_show;
1879 hba->clk_scaling.enable_attr.store = ufshcd_clkscale_enable_store;
1880 sysfs_attr_init(&hba->clk_scaling.enable_attr.attr);
1881 hba->clk_scaling.enable_attr.attr.name = "clkscale_enable";
1882 hba->clk_scaling.enable_attr.attr.mode = 0644;
1883 if (device_create_file(hba->dev, &hba->clk_scaling.enable_attr))
1884 dev_err(hba->dev, "Failed to create sysfs for clkscale_enable\n");
1885 }
1886
ufshcd_remove_clk_scaling_sysfs(struct ufs_hba * hba)1887 static void ufshcd_remove_clk_scaling_sysfs(struct ufs_hba *hba)
1888 {
1889 if (hba->clk_scaling.enable_attr.attr.name)
1890 device_remove_file(hba->dev, &hba->clk_scaling.enable_attr);
1891 }
1892
ufshcd_init_clk_scaling(struct ufs_hba * hba)1893 static void ufshcd_init_clk_scaling(struct ufs_hba *hba)
1894 {
1895 if (!ufshcd_is_clkscaling_supported(hba))
1896 return;
1897
1898 if (!hba->clk_scaling.min_gear)
1899 hba->clk_scaling.min_gear = UFS_HS_G1;
1900
1901 if (!hba->clk_scaling.wb_gear)
1902 /* Use intermediate gear speed HS_G3 as the default wb_gear */
1903 hba->clk_scaling.wb_gear = UFS_HS_G3;
1904
1905 INIT_WORK(&hba->clk_scaling.suspend_work,
1906 ufshcd_clk_scaling_suspend_work);
1907 INIT_WORK(&hba->clk_scaling.resume_work,
1908 ufshcd_clk_scaling_resume_work);
1909
1910 spin_lock_init(&hba->clk_scaling.lock);
1911
1912 hba->clk_scaling.workq = alloc_ordered_workqueue(
1913 "ufs_clkscaling_%d", WQ_MEM_RECLAIM, hba->host->host_no);
1914
1915 hba->clk_scaling.is_initialized = true;
1916 }
1917
ufshcd_exit_clk_scaling(struct ufs_hba * hba)1918 static void ufshcd_exit_clk_scaling(struct ufs_hba *hba)
1919 {
1920 if (!hba->clk_scaling.is_initialized)
1921 return;
1922
1923 ufshcd_remove_clk_scaling_sysfs(hba);
1924 destroy_workqueue(hba->clk_scaling.workq);
1925 ufshcd_devfreq_remove(hba);
1926 hba->clk_scaling.is_initialized = false;
1927 }
1928
ufshcd_ungate_work(struct work_struct * work)1929 static void ufshcd_ungate_work(struct work_struct *work)
1930 {
1931 int ret;
1932 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1933 clk_gating.ungate_work);
1934
1935 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
1936
1937 scoped_guard(spinlock_irqsave, &hba->clk_gating.lock) {
1938 if (hba->clk_gating.state == CLKS_ON)
1939 return;
1940 }
1941
1942 ufshcd_hba_vreg_set_hpm(hba);
1943 ufshcd_setup_clocks(hba, true);
1944
1945 ufshcd_enable_irq(hba);
1946
1947 /* Exit from hibern8 */
1948 if (ufshcd_can_hibern8_during_gating(hba)) {
1949 /* Prevent gating in this path */
1950 hba->clk_gating.is_suspended = true;
1951 if (ufshcd_is_link_hibern8(hba)) {
1952 ret = ufshcd_uic_hibern8_exit(hba);
1953 if (ret)
1954 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
1955 __func__, ret);
1956 else
1957 ufshcd_set_link_active(hba);
1958 }
1959 hba->clk_gating.is_suspended = false;
1960 }
1961 }
1962
1963 /**
1964 * ufshcd_hold - Enable clocks that were gated earlier due to ufshcd_release.
1965 * Also, exit from hibern8 mode and set the link as active.
1966 * @hba: per adapter instance
1967 */
ufshcd_hold(struct ufs_hba * hba)1968 void ufshcd_hold(struct ufs_hba *hba)
1969 {
1970 bool flush_result;
1971 unsigned long flags;
1972
1973 if (!ufshcd_is_clkgating_allowed(hba) ||
1974 !hba->clk_gating.is_initialized)
1975 return;
1976 spin_lock_irqsave(&hba->clk_gating.lock, flags);
1977 hba->clk_gating.active_reqs++;
1978
1979 start:
1980 switch (hba->clk_gating.state) {
1981 case CLKS_ON:
1982 /*
1983 * Wait for the ungate work to complete if in progress.
1984 * Though the clocks may be in ON state, the link could
1985 * still be in hibner8 state if hibern8 is allowed
1986 * during clock gating.
1987 * Make sure we exit hibern8 state also in addition to
1988 * clocks being ON.
1989 */
1990 if (ufshcd_can_hibern8_during_gating(hba) &&
1991 ufshcd_is_link_hibern8(hba)) {
1992 spin_unlock_irqrestore(&hba->clk_gating.lock, flags);
1993 flush_result = flush_work(&hba->clk_gating.ungate_work);
1994 if (hba->clk_gating.is_suspended && !flush_result)
1995 return;
1996 spin_lock_irqsave(&hba->clk_gating.lock, flags);
1997 goto start;
1998 }
1999 break;
2000 case REQ_CLKS_OFF:
2001 if (cancel_delayed_work(&hba->clk_gating.gate_work)) {
2002 hba->clk_gating.state = CLKS_ON;
2003 trace_ufshcd_clk_gating(hba,
2004 hba->clk_gating.state);
2005 break;
2006 }
2007 /*
2008 * If we are here, it means gating work is either done or
2009 * currently running. Hence, fall through to cancel gating
2010 * work and to enable clocks.
2011 */
2012 fallthrough;
2013 case CLKS_OFF:
2014 hba->clk_gating.state = REQ_CLKS_ON;
2015 trace_ufshcd_clk_gating(hba,
2016 hba->clk_gating.state);
2017 queue_work(hba->clk_gating.clk_gating_workq,
2018 &hba->clk_gating.ungate_work);
2019 /*
2020 * fall through to check if we should wait for this
2021 * work to be done or not.
2022 */
2023 fallthrough;
2024 case REQ_CLKS_ON:
2025 spin_unlock_irqrestore(&hba->clk_gating.lock, flags);
2026 flush_work(&hba->clk_gating.ungate_work);
2027 /* Make sure state is CLKS_ON before returning */
2028 spin_lock_irqsave(&hba->clk_gating.lock, flags);
2029 goto start;
2030 default:
2031 dev_err(hba->dev, "%s: clk gating is in invalid state %d\n",
2032 __func__, hba->clk_gating.state);
2033 break;
2034 }
2035 spin_unlock_irqrestore(&hba->clk_gating.lock, flags);
2036 }
2037 EXPORT_SYMBOL_GPL(ufshcd_hold);
2038
ufshcd_gate_work(struct work_struct * work)2039 static void ufshcd_gate_work(struct work_struct *work)
2040 {
2041 struct ufs_hba *hba = container_of(work, struct ufs_hba,
2042 clk_gating.gate_work.work);
2043 int ret;
2044
2045 scoped_guard(spinlock_irqsave, &hba->clk_gating.lock) {
2046 /*
2047 * In case you are here to cancel this work the gating state
2048 * would be marked as REQ_CLKS_ON. In this case save time by
2049 * skipping the gating work and exit after changing the clock
2050 * state to CLKS_ON.
2051 */
2052 if (hba->clk_gating.is_suspended ||
2053 hba->clk_gating.state != REQ_CLKS_OFF) {
2054 hba->clk_gating.state = CLKS_ON;
2055 trace_ufshcd_clk_gating(hba,
2056 hba->clk_gating.state);
2057 return;
2058 }
2059
2060 if (hba->clk_gating.active_reqs)
2061 return;
2062 }
2063
2064 scoped_guard(spinlock_irqsave, hba->host->host_lock) {
2065 if (ufshcd_is_ufs_dev_busy(hba) ||
2066 hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL)
2067 return;
2068 }
2069
2070 /* put the link into hibern8 mode before turning off clocks */
2071 if (ufshcd_can_hibern8_during_gating(hba)) {
2072 ret = ufshcd_uic_hibern8_enter(hba);
2073 if (ret) {
2074 hba->clk_gating.state = CLKS_ON;
2075 dev_err(hba->dev, "%s: hibern8 enter failed %d\n",
2076 __func__, ret);
2077 trace_ufshcd_clk_gating(hba,
2078 hba->clk_gating.state);
2079 return;
2080 }
2081 ufshcd_set_link_hibern8(hba);
2082 }
2083
2084 ufshcd_disable_irq(hba);
2085
2086 ufshcd_setup_clocks(hba, false);
2087
2088 /* Put the host controller in low power mode if possible */
2089 ufshcd_hba_vreg_set_lpm(hba);
2090 /*
2091 * In case you are here to cancel this work the gating state
2092 * would be marked as REQ_CLKS_ON. In this case keep the state
2093 * as REQ_CLKS_ON which would anyway imply that clocks are off
2094 * and a request to turn them on is pending. By doing this way,
2095 * we keep the state machine in tact and this would ultimately
2096 * prevent from doing cancel work multiple times when there are
2097 * new requests arriving before the current cancel work is done.
2098 */
2099 guard(spinlock_irqsave)(&hba->clk_gating.lock);
2100 if (hba->clk_gating.state == REQ_CLKS_OFF) {
2101 hba->clk_gating.state = CLKS_OFF;
2102 trace_ufshcd_clk_gating(hba,
2103 hba->clk_gating.state);
2104 }
2105 }
2106
__ufshcd_release(struct ufs_hba * hba)2107 static void __ufshcd_release(struct ufs_hba *hba)
2108 {
2109 lockdep_assert_held(&hba->clk_gating.lock);
2110
2111 if (!ufshcd_is_clkgating_allowed(hba))
2112 return;
2113
2114 hba->clk_gating.active_reqs--;
2115
2116 if (hba->clk_gating.active_reqs || hba->clk_gating.is_suspended ||
2117 !hba->clk_gating.is_initialized ||
2118 hba->clk_gating.state == CLKS_OFF)
2119 return;
2120
2121 scoped_guard(spinlock_irqsave, hba->host->host_lock) {
2122 if (ufshcd_has_pending_tasks(hba) ||
2123 hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL)
2124 return;
2125 }
2126
2127 hba->clk_gating.state = REQ_CLKS_OFF;
2128 trace_ufshcd_clk_gating(hba, hba->clk_gating.state);
2129 queue_delayed_work(hba->clk_gating.clk_gating_workq,
2130 &hba->clk_gating.gate_work,
2131 msecs_to_jiffies(hba->clk_gating.delay_ms));
2132 }
2133
ufshcd_release(struct ufs_hba * hba)2134 void ufshcd_release(struct ufs_hba *hba)
2135 {
2136 guard(spinlock_irqsave)(&hba->clk_gating.lock);
2137 __ufshcd_release(hba);
2138 }
2139 EXPORT_SYMBOL_GPL(ufshcd_release);
2140
ufshcd_clkgate_delay_show(struct device * dev,struct device_attribute * attr,char * buf)2141 static ssize_t ufshcd_clkgate_delay_show(struct device *dev,
2142 struct device_attribute *attr, char *buf)
2143 {
2144 struct ufs_hba *hba = dev_get_drvdata(dev);
2145
2146 return sysfs_emit(buf, "%lu\n", hba->clk_gating.delay_ms);
2147 }
2148
ufshcd_clkgate_delay_set(struct device * dev,unsigned long value)2149 void ufshcd_clkgate_delay_set(struct device *dev, unsigned long value)
2150 {
2151 struct ufs_hba *hba = dev_get_drvdata(dev);
2152
2153 guard(spinlock_irqsave)(&hba->clk_gating.lock);
2154 hba->clk_gating.delay_ms = value;
2155 }
2156 EXPORT_SYMBOL_GPL(ufshcd_clkgate_delay_set);
2157
ufshcd_clkgate_delay_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2158 static ssize_t ufshcd_clkgate_delay_store(struct device *dev,
2159 struct device_attribute *attr, const char *buf, size_t count)
2160 {
2161 unsigned long value;
2162
2163 if (kstrtoul(buf, 0, &value))
2164 return -EINVAL;
2165
2166 ufshcd_clkgate_delay_set(dev, value);
2167 return count;
2168 }
2169
ufshcd_clkgate_enable_show(struct device * dev,struct device_attribute * attr,char * buf)2170 static ssize_t ufshcd_clkgate_enable_show(struct device *dev,
2171 struct device_attribute *attr, char *buf)
2172 {
2173 struct ufs_hba *hba = dev_get_drvdata(dev);
2174
2175 return sysfs_emit(buf, "%d\n", hba->clk_gating.is_enabled);
2176 }
2177
ufshcd_clkgate_enable_store(struct device * dev,struct device_attribute * attr,const char * buf,size_t count)2178 static ssize_t ufshcd_clkgate_enable_store(struct device *dev,
2179 struct device_attribute *attr, const char *buf, size_t count)
2180 {
2181 struct ufs_hba *hba = dev_get_drvdata(dev);
2182 u32 value;
2183
2184 if (kstrtou32(buf, 0, &value))
2185 return -EINVAL;
2186
2187 value = !!value;
2188
2189 guard(spinlock_irqsave)(&hba->clk_gating.lock);
2190
2191 if (value == hba->clk_gating.is_enabled)
2192 return count;
2193
2194 if (value)
2195 __ufshcd_release(hba);
2196 else
2197 hba->clk_gating.active_reqs++;
2198
2199 hba->clk_gating.is_enabled = value;
2200
2201 return count;
2202 }
2203
ufshcd_init_clk_gating_sysfs(struct ufs_hba * hba)2204 static void ufshcd_init_clk_gating_sysfs(struct ufs_hba *hba)
2205 {
2206 hba->clk_gating.delay_attr.show = ufshcd_clkgate_delay_show;
2207 hba->clk_gating.delay_attr.store = ufshcd_clkgate_delay_store;
2208 sysfs_attr_init(&hba->clk_gating.delay_attr.attr);
2209 hba->clk_gating.delay_attr.attr.name = "clkgate_delay_ms";
2210 hba->clk_gating.delay_attr.attr.mode = 0644;
2211 if (device_create_file(hba->dev, &hba->clk_gating.delay_attr))
2212 dev_err(hba->dev, "Failed to create sysfs for clkgate_delay\n");
2213
2214 hba->clk_gating.enable_attr.show = ufshcd_clkgate_enable_show;
2215 hba->clk_gating.enable_attr.store = ufshcd_clkgate_enable_store;
2216 sysfs_attr_init(&hba->clk_gating.enable_attr.attr);
2217 hba->clk_gating.enable_attr.attr.name = "clkgate_enable";
2218 hba->clk_gating.enable_attr.attr.mode = 0644;
2219 if (device_create_file(hba->dev, &hba->clk_gating.enable_attr))
2220 dev_err(hba->dev, "Failed to create sysfs for clkgate_enable\n");
2221 }
2222
ufshcd_remove_clk_gating_sysfs(struct ufs_hba * hba)2223 static void ufshcd_remove_clk_gating_sysfs(struct ufs_hba *hba)
2224 {
2225 if (hba->clk_gating.delay_attr.attr.name)
2226 device_remove_file(hba->dev, &hba->clk_gating.delay_attr);
2227 if (hba->clk_gating.enable_attr.attr.name)
2228 device_remove_file(hba->dev, &hba->clk_gating.enable_attr);
2229 }
2230
ufshcd_init_clk_gating(struct ufs_hba * hba)2231 static void ufshcd_init_clk_gating(struct ufs_hba *hba)
2232 {
2233 if (!ufshcd_is_clkgating_allowed(hba))
2234 return;
2235
2236 hba->clk_gating.state = CLKS_ON;
2237
2238 hba->clk_gating.delay_ms = 150;
2239 INIT_DELAYED_WORK(&hba->clk_gating.gate_work, ufshcd_gate_work);
2240 INIT_WORK(&hba->clk_gating.ungate_work, ufshcd_ungate_work);
2241
2242 hba->clk_gating.clk_gating_workq = alloc_ordered_workqueue(
2243 "ufs_clk_gating_%d", WQ_MEM_RECLAIM | WQ_HIGHPRI,
2244 hba->host->host_no);
2245
2246 ufshcd_init_clk_gating_sysfs(hba);
2247
2248 hba->clk_gating.is_enabled = true;
2249 hba->clk_gating.is_initialized = true;
2250 }
2251
ufshcd_exit_clk_gating(struct ufs_hba * hba)2252 static void ufshcd_exit_clk_gating(struct ufs_hba *hba)
2253 {
2254 if (!hba->clk_gating.is_initialized)
2255 return;
2256
2257 ufshcd_remove_clk_gating_sysfs(hba);
2258
2259 /* Ungate the clock if necessary. */
2260 ufshcd_hold(hba);
2261 hba->clk_gating.is_initialized = false;
2262 ufshcd_release(hba);
2263
2264 destroy_workqueue(hba->clk_gating.clk_gating_workq);
2265 }
2266
ufshcd_clk_scaling_start_busy(struct ufs_hba * hba)2267 static void ufshcd_clk_scaling_start_busy(struct ufs_hba *hba)
2268 {
2269 bool queue_resume_work = false;
2270 ktime_t curr_t;
2271
2272 if (!ufshcd_is_clkscaling_supported(hba))
2273 return;
2274
2275 curr_t = ktime_get();
2276
2277 guard(spinlock_irqsave)(&hba->clk_scaling.lock);
2278
2279 if (!hba->clk_scaling.active_reqs++)
2280 queue_resume_work = true;
2281
2282 if (!hba->clk_scaling.is_enabled || hba->pm_op_in_progress)
2283 return;
2284
2285 if (queue_resume_work)
2286 queue_work(hba->clk_scaling.workq,
2287 &hba->clk_scaling.resume_work);
2288
2289 if (!hba->clk_scaling.window_start_t) {
2290 hba->clk_scaling.window_start_t = curr_t;
2291 hba->clk_scaling.tot_busy_t = 0;
2292 hba->clk_scaling.is_busy_started = false;
2293 }
2294
2295 if (!hba->clk_scaling.is_busy_started) {
2296 hba->clk_scaling.busy_start_t = curr_t;
2297 hba->clk_scaling.is_busy_started = true;
2298 }
2299 }
2300
ufshcd_clk_scaling_update_busy(struct ufs_hba * hba)2301 static void ufshcd_clk_scaling_update_busy(struct ufs_hba *hba)
2302 {
2303 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
2304
2305 if (!ufshcd_is_clkscaling_supported(hba))
2306 return;
2307
2308 guard(spinlock_irqsave)(&hba->clk_scaling.lock);
2309
2310 hba->clk_scaling.active_reqs--;
2311 if (!scaling->active_reqs && scaling->is_busy_started) {
2312 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
2313 scaling->busy_start_t));
2314 scaling->busy_start_t = 0;
2315 scaling->is_busy_started = false;
2316 }
2317 }
2318
ufshcd_monitor_opcode2dir(u8 opcode)2319 static inline int ufshcd_monitor_opcode2dir(u8 opcode)
2320 {
2321 if (opcode == READ_6 || opcode == READ_10 || opcode == READ_16)
2322 return READ;
2323 else if (opcode == WRITE_6 || opcode == WRITE_10 || opcode == WRITE_16)
2324 return WRITE;
2325 else
2326 return -EINVAL;
2327 }
2328
2329 /* Must only be called for SCSI commands. */
ufshcd_should_inform_monitor(struct ufs_hba * hba,struct scsi_cmnd * cmd)2330 static inline bool ufshcd_should_inform_monitor(struct ufs_hba *hba,
2331 struct scsi_cmnd *cmd)
2332 {
2333 const struct ufs_hba_monitor *m = &hba->monitor;
2334 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2335
2336 return m->enabled &&
2337 (!m->chunk_size || m->chunk_size == cmd->sdb.length) &&
2338 ktime_before(hba->monitor.enabled_ts, lrbp->issue_time_stamp);
2339 }
2340
ufshcd_start_monitor(struct ufs_hba * hba,struct scsi_cmnd * cmd)2341 static void ufshcd_start_monitor(struct ufs_hba *hba, struct scsi_cmnd *cmd)
2342 {
2343 int dir = ufshcd_monitor_opcode2dir(cmd->cmnd[0]);
2344 unsigned long flags;
2345
2346 spin_lock_irqsave(hba->host->host_lock, flags);
2347 if (dir >= 0 && hba->monitor.nr_queued[dir]++ == 0)
2348 hba->monitor.busy_start_ts[dir] = ktime_get();
2349 spin_unlock_irqrestore(hba->host->host_lock, flags);
2350 }
2351
ufshcd_update_monitor(struct ufs_hba * hba,struct scsi_cmnd * cmd)2352 static void ufshcd_update_monitor(struct ufs_hba *hba, struct scsi_cmnd *cmd)
2353 {
2354 struct request *req = scsi_cmd_to_rq(cmd);
2355 const struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2356 int dir = ufshcd_monitor_opcode2dir(cmd->cmnd[0]);
2357 unsigned long flags;
2358
2359 spin_lock_irqsave(hba->host->host_lock, flags);
2360 if (dir >= 0 && hba->monitor.nr_queued[dir] > 0) {
2361 struct ufs_hba_monitor *m = &hba->monitor;
2362 ktime_t now, inc, lat;
2363
2364 now = lrbp->compl_time_stamp;
2365 inc = ktime_sub(now, m->busy_start_ts[dir]);
2366 m->total_busy[dir] = ktime_add(m->total_busy[dir], inc);
2367 m->nr_sec_rw[dir] += blk_rq_sectors(req);
2368
2369 /* Update latencies */
2370 m->nr_req[dir]++;
2371 lat = ktime_sub(now, lrbp->issue_time_stamp);
2372 m->lat_sum[dir] += lat;
2373 if (m->lat_max[dir] < lat || !m->lat_max[dir])
2374 m->lat_max[dir] = lat;
2375 if (m->lat_min[dir] > lat || !m->lat_min[dir])
2376 m->lat_min[dir] = lat;
2377
2378 m->nr_queued[dir]--;
2379 /* Push forward the busy start of monitor */
2380 m->busy_start_ts[dir] = now;
2381 }
2382 spin_unlock_irqrestore(hba->host->host_lock, flags);
2383 }
2384
2385 /* Returns %true for SCSI commands and %false for device management commands. */
ufshcd_is_scsi_cmd(struct scsi_cmnd * cmd)2386 static bool ufshcd_is_scsi_cmd(struct scsi_cmnd *cmd)
2387 {
2388 return !blk_mq_is_reserved_rq(scsi_cmd_to_rq(cmd));
2389 }
2390
2391 /**
2392 * ufshcd_send_command - Send SCSI or device management commands
2393 * @hba: per adapter instance
2394 * @cmd: SCSI command or device management command pointer
2395 * @hwq: pointer to hardware queue instance
2396 */
ufshcd_send_command(struct ufs_hba * hba,struct scsi_cmnd * cmd,struct ufs_hw_queue * hwq)2397 static inline void ufshcd_send_command(struct ufs_hba *hba,
2398 struct scsi_cmnd *cmd,
2399 struct ufs_hw_queue *hwq)
2400 {
2401 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2402 const int tag = scsi_cmd_to_rq(cmd)->tag;
2403 unsigned long flags;
2404
2405 if (hba->monitor.enabled) {
2406 lrbp->issue_time_stamp = ktime_get();
2407 lrbp->issue_time_stamp_local_clock = local_clock();
2408 lrbp->compl_time_stamp = ktime_set(0, 0);
2409 lrbp->compl_time_stamp_local_clock = 0;
2410 }
2411 if (ufshcd_is_scsi_cmd(cmd)) {
2412 ufshcd_add_command_trace(hba, cmd, UFS_CMD_SEND);
2413 ufshcd_clk_scaling_start_busy(hba);
2414 if (unlikely(ufshcd_should_inform_monitor(hba, cmd)))
2415 ufshcd_start_monitor(hba, cmd);
2416 }
2417
2418 if (hba->mcq_enabled) {
2419 int utrd_size = sizeof(struct utp_transfer_req_desc);
2420 struct utp_transfer_req_desc *src = lrbp->utr_descriptor_ptr;
2421 struct utp_transfer_req_desc *dest;
2422
2423 spin_lock(&hwq->sq_lock);
2424 dest = hwq->sqe_base_addr + hwq->sq_tail_slot;
2425 memcpy(dest, src, utrd_size);
2426 ufshcd_inc_sq_tail(hwq);
2427 spin_unlock(&hwq->sq_lock);
2428 } else {
2429 spin_lock_irqsave(&hba->outstanding_lock, flags);
2430 if (hba->vops && hba->vops->setup_xfer_req)
2431 hba->vops->setup_xfer_req(hba, tag,
2432 ufshcd_is_scsi_cmd(cmd));
2433 __set_bit(tag, &hba->outstanding_reqs);
2434 ufshcd_writel(hba, 1 << tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
2435 spin_unlock_irqrestore(&hba->outstanding_lock, flags);
2436 }
2437 }
2438
2439 /**
2440 * ufshcd_copy_sense_data - Copy sense data in case of check condition
2441 * @cmd: SCSI command
2442 */
ufshcd_copy_sense_data(struct scsi_cmnd * cmd)2443 static inline void ufshcd_copy_sense_data(struct scsi_cmnd *cmd)
2444 {
2445 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2446 u8 *const sense_buffer = cmd->sense_buffer;
2447 u16 resp_len;
2448 int len;
2449
2450 resp_len = be16_to_cpu(lrbp->ucd_rsp_ptr->header.data_segment_length);
2451 if (sense_buffer && resp_len) {
2452 int len_to_copy;
2453
2454 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
2455 len_to_copy = min_t(int, UFS_SENSE_SIZE, len);
2456
2457 memcpy(sense_buffer, lrbp->ucd_rsp_ptr->sr.sense_data,
2458 len_to_copy);
2459 }
2460 }
2461
2462 /**
2463 * ufshcd_copy_query_response() - Copy the Query Response and the data
2464 * descriptor
2465 * @hba: per adapter instance
2466 * @lrbp: pointer to local reference block
2467 *
2468 * Return: 0 upon success; < 0 upon failure.
2469 */
2470 static
ufshcd_copy_query_response(struct ufs_hba * hba,struct ufshcd_lrb * lrbp)2471 int ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2472 {
2473 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
2474
2475 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
2476
2477 /* Get the descriptor */
2478 if (hba->dev_cmd.query.descriptor &&
2479 lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
2480 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr +
2481 GENERAL_UPIU_REQUEST_SIZE;
2482 u16 resp_len;
2483 u16 buf_len;
2484
2485 /* data segment length */
2486 resp_len = be16_to_cpu(lrbp->ucd_rsp_ptr->header
2487 .data_segment_length);
2488 buf_len = be16_to_cpu(
2489 hba->dev_cmd.query.request.upiu_req.length);
2490 if (likely(buf_len >= resp_len)) {
2491 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len);
2492 } else {
2493 dev_warn(hba->dev,
2494 "%s: rsp size %d is bigger than buffer size %d",
2495 __func__, resp_len, buf_len);
2496 return -EINVAL;
2497 }
2498 }
2499
2500 return 0;
2501 }
2502
2503 /**
2504 * ufshcd_hba_capabilities - Read controller capabilities
2505 * @hba: per adapter instance
2506 *
2507 * Return: 0 on success, negative on error.
2508 */
ufshcd_hba_capabilities(struct ufs_hba * hba)2509 static inline int ufshcd_hba_capabilities(struct ufs_hba *hba)
2510 {
2511 int err;
2512
2513 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
2514
2515 /* nutrs and nutmrs are 0 based values */
2516 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS_SDB) + 1;
2517 hba->nutmrs =
2518 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
2519
2520 if (hba->vops && hba->vops->get_hba_nortt)
2521 hba->nortt = hba->vops->get_hba_nortt(hba);
2522 else
2523 hba->nortt = FIELD_GET(MASK_NUMBER_OUTSTANDING_RTT, hba->capabilities) + 1;
2524
2525 /* Read crypto capabilities */
2526 err = ufshcd_hba_init_crypto_capabilities(hba);
2527 if (err) {
2528 dev_err(hba->dev, "crypto setup failed\n");
2529 return err;
2530 }
2531
2532 /*
2533 * The UFSHCI 3.0 specification does not define MCQ_SUPPORT and
2534 * LSDB_SUPPORT, but [31:29] as reserved bits with reset value 0s, which
2535 * means we can simply read values regardless of version.
2536 */
2537 hba->mcq_sup = FIELD_GET(MASK_MCQ_SUPPORT, hba->capabilities);
2538 /*
2539 * 0h: legacy single doorbell support is available
2540 * 1h: indicate that legacy single doorbell support has been removed
2541 */
2542 if (!(hba->quirks & UFSHCD_QUIRK_BROKEN_LSDBS_CAP))
2543 hba->lsdb_sup = !FIELD_GET(MASK_LSDB_SUPPORT, hba->capabilities);
2544 else
2545 hba->lsdb_sup = true;
2546
2547 hba->mcq_capabilities = ufshcd_readl(hba, REG_MCQCAP);
2548
2549 return 0;
2550 }
2551
2552 /**
2553 * ufshcd_ready_for_uic_cmd - Check if controller is ready
2554 * to accept UIC commands
2555 * @hba: per adapter instance
2556 *
2557 * Return: true on success, else false.
2558 */
ufshcd_ready_for_uic_cmd(struct ufs_hba * hba)2559 static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
2560 {
2561 u32 val;
2562 int ret = read_poll_timeout(ufshcd_readl, val, val & UIC_COMMAND_READY,
2563 500, uic_cmd_timeout * 1000, false, hba,
2564 REG_CONTROLLER_STATUS);
2565 return ret == 0;
2566 }
2567
2568 /**
2569 * ufshcd_get_upmcrs - Get the power mode change request status
2570 * @hba: Pointer to adapter instance
2571 *
2572 * This function gets the UPMCRS field of HCS register
2573 *
2574 * Return: value of UPMCRS field.
2575 */
ufshcd_get_upmcrs(struct ufs_hba * hba)2576 static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
2577 {
2578 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
2579 }
2580
2581 /**
2582 * ufshcd_dispatch_uic_cmd - Dispatch an UIC command to the Unipro layer
2583 * @hba: per adapter instance
2584 * @uic_cmd: UIC command
2585 */
2586 static inline void
ufshcd_dispatch_uic_cmd(struct ufs_hba * hba,struct uic_command * uic_cmd)2587 ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2588 {
2589 lockdep_assert_held(&hba->uic_cmd_mutex);
2590
2591 WARN_ON(hba->active_uic_cmd);
2592 WARN_ON_ONCE(uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT);
2593
2594 hba->active_uic_cmd = uic_cmd;
2595
2596 /* Write Args */
2597 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
2598 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
2599 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
2600
2601 ufshcd_add_uic_command_trace(hba, uic_cmd, UFS_CMD_SEND);
2602
2603 /* Write UIC Cmd */
2604 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
2605 REG_UIC_COMMAND);
2606 }
2607
2608 /**
2609 * ufshcd_wait_for_uic_cmd - Wait for completion of an UIC command
2610 * @hba: per adapter instance
2611 * @uic_cmd: UIC command
2612 *
2613 * Return: 0 only if success.
2614 */
2615 static int
ufshcd_wait_for_uic_cmd(struct ufs_hba * hba,struct uic_command * uic_cmd)2616 ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2617 {
2618 int ret;
2619 unsigned long flags;
2620
2621 lockdep_assert_held(&hba->uic_cmd_mutex);
2622
2623 if (wait_for_completion_timeout(&uic_cmd->done,
2624 msecs_to_jiffies(uic_cmd_timeout))) {
2625 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
2626 } else {
2627 ret = -ETIMEDOUT;
2628 dev_err(hba->dev,
2629 "uic cmd 0x%x with arg3 0x%x completion timeout\n",
2630 uic_cmd->command, uic_cmd->argument3);
2631
2632 if (!uic_cmd->cmd_active) {
2633 dev_err(hba->dev, "%s: UIC cmd has been completed, return the result\n",
2634 __func__);
2635 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
2636 }
2637 }
2638
2639 spin_lock_irqsave(hba->host->host_lock, flags);
2640 hba->active_uic_cmd = NULL;
2641 spin_unlock_irqrestore(hba->host->host_lock, flags);
2642
2643 return ret;
2644 }
2645
2646 /**
2647 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
2648 * @hba: per adapter instance
2649 * @uic_cmd: UIC command
2650 *
2651 * Return: 0 if successful; < 0 upon failure.
2652 */
2653 static int
__ufshcd_send_uic_cmd(struct ufs_hba * hba,struct uic_command * uic_cmd)2654 __ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2655 {
2656 lockdep_assert_held(&hba->uic_cmd_mutex);
2657
2658 if (!ufshcd_ready_for_uic_cmd(hba)) {
2659 dev_err(hba->dev,
2660 "Controller not ready to accept UIC commands\n");
2661 return -EIO;
2662 }
2663
2664 init_completion(&uic_cmd->done);
2665
2666 uic_cmd->cmd_active = true;
2667 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
2668
2669 return 0;
2670 }
2671
2672 /**
2673 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
2674 * @hba: per adapter instance
2675 * @uic_cmd: UIC command
2676 *
2677 * Return: 0 only if success.
2678 */
ufshcd_send_uic_cmd(struct ufs_hba * hba,struct uic_command * uic_cmd)2679 int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2680 {
2681 unsigned long flags;
2682 int ret;
2683
2684 if (hba->quirks & UFSHCD_QUIRK_BROKEN_UIC_CMD)
2685 return 0;
2686
2687 ufshcd_hold(hba);
2688 mutex_lock(&hba->uic_cmd_mutex);
2689 ufshcd_add_delay_before_dme_cmd(hba);
2690
2691 spin_lock_irqsave(hba->host->host_lock, flags);
2692 ufshcd_enable_intr(hba, UIC_COMMAND_COMPL);
2693 spin_unlock_irqrestore(hba->host->host_lock, flags);
2694
2695 ret = __ufshcd_send_uic_cmd(hba, uic_cmd);
2696 if (!ret)
2697 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
2698
2699 mutex_unlock(&hba->uic_cmd_mutex);
2700
2701 ufshcd_release(hba);
2702 return ret;
2703 }
2704
2705 /**
2706 * ufshcd_sgl_to_prdt - SG list to PRTD (Physical Region Description Table, 4DW format)
2707 * @hba: per-adapter instance
2708 * @lrbp: pointer to local reference block
2709 * @sg_entries: The number of sg lists actually used
2710 * @sg_list: Pointer to SG list
2711 */
ufshcd_sgl_to_prdt(struct ufs_hba * hba,struct ufshcd_lrb * lrbp,int sg_entries,struct scatterlist * sg_list)2712 static void ufshcd_sgl_to_prdt(struct ufs_hba *hba, struct ufshcd_lrb *lrbp, int sg_entries,
2713 struct scatterlist *sg_list)
2714 {
2715 struct ufshcd_sg_entry *prd;
2716 struct scatterlist *sg;
2717 int i;
2718
2719 if (sg_entries) {
2720
2721 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN)
2722 lrbp->utr_descriptor_ptr->prd_table_length =
2723 cpu_to_le16(sg_entries * ufshcd_sg_entry_size(hba));
2724 else
2725 lrbp->utr_descriptor_ptr->prd_table_length = cpu_to_le16(sg_entries);
2726
2727 prd = lrbp->ucd_prdt_ptr;
2728
2729 for_each_sg(sg_list, sg, sg_entries, i) {
2730 const unsigned int len = sg_dma_len(sg);
2731
2732 /*
2733 * From the UFSHCI spec: "Data Byte Count (DBC): A '0'
2734 * based value that indicates the length, in bytes, of
2735 * the data block. A maximum of length of 256KB may
2736 * exist for any entry. Bits 1:0 of this field shall be
2737 * 11b to indicate Dword granularity. A value of '3'
2738 * indicates 4 bytes, '7' indicates 8 bytes, etc."
2739 */
2740 WARN_ONCE(len > SZ_256K, "len = %#x\n", len);
2741 prd->size = cpu_to_le32(len - 1);
2742 prd->addr = cpu_to_le64(sg->dma_address);
2743 prd->reserved = 0;
2744 prd = (void *)prd + ufshcd_sg_entry_size(hba);
2745 }
2746 } else {
2747 lrbp->utr_descriptor_ptr->prd_table_length = 0;
2748 }
2749 }
2750
2751 /**
2752 * ufshcd_map_sg - Map scatter-gather list to prdt
2753 * @hba: per adapter instance
2754 * @cmd: SCSI command
2755 *
2756 * Return: 0 in case of success, non-zero value in case of failure.
2757 */
ufshcd_map_sg(struct ufs_hba * hba,struct scsi_cmnd * cmd)2758 static int ufshcd_map_sg(struct ufs_hba *hba, struct scsi_cmnd *cmd)
2759 {
2760 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2761 int sg_segments = scsi_dma_map(cmd);
2762
2763 if (sg_segments < 0)
2764 return sg_segments;
2765
2766 ufshcd_sgl_to_prdt(hba, lrbp, sg_segments, scsi_sglist(cmd));
2767
2768 return ufshcd_crypto_fill_prdt(hba, cmd);
2769 }
2770
2771 /**
2772 * ufshcd_prepare_req_desc_hdr - Fill UTP Transfer request descriptor header according to request
2773 * descriptor according to request
2774 * @hba: per adapter instance
2775 * @lrbp: pointer to local reference block
2776 * @upiu_flags: flags required in the header
2777 * @cmd_dir: requests data direction
2778 * @ehs_length: Total EHS Length (in 32‐bytes units of all Extra Header Segments)
2779 */
2780 static void
ufshcd_prepare_req_desc_hdr(struct ufs_hba * hba,struct ufshcd_lrb * lrbp,u8 * upiu_flags,enum dma_data_direction cmd_dir,int ehs_length)2781 ufshcd_prepare_req_desc_hdr(struct ufs_hba *hba, struct ufshcd_lrb *lrbp,
2782 u8 *upiu_flags, enum dma_data_direction cmd_dir,
2783 int ehs_length)
2784 {
2785 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
2786 struct request_desc_header *h = &req_desc->header;
2787 enum utp_data_direction data_direction;
2788
2789 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
2790
2791 *h = (typeof(*h)){ };
2792
2793 if (cmd_dir == DMA_FROM_DEVICE) {
2794 data_direction = UTP_DEVICE_TO_HOST;
2795 *upiu_flags = UPIU_CMD_FLAGS_READ;
2796 } else if (cmd_dir == DMA_TO_DEVICE) {
2797 data_direction = UTP_HOST_TO_DEVICE;
2798 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
2799 } else {
2800 data_direction = UTP_NO_DATA_TRANSFER;
2801 *upiu_flags = UPIU_CMD_FLAGS_NONE;
2802 }
2803
2804 h->command_type = lrbp->command_type;
2805 h->data_direction = data_direction;
2806 h->ehs_length = ehs_length;
2807
2808 if (lrbp->intr_cmd)
2809 h->interrupt = 1;
2810
2811 /* Prepare crypto related dwords */
2812 ufshcd_prepare_req_desc_hdr_crypto(lrbp, h);
2813
2814 /*
2815 * assigning invalid value for command status. Controller
2816 * updates OCS on command completion, with the command
2817 * status
2818 */
2819 h->ocs = OCS_INVALID_COMMAND_STATUS;
2820
2821 req_desc->prd_table_length = 0;
2822 }
2823
2824 /**
2825 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
2826 * for scsi commands
2827 * @cmd: SCSI command
2828 * @upiu_flags: flags
2829 */
ufshcd_prepare_utp_scsi_cmd_upiu(struct scsi_cmnd * cmd,u8 upiu_flags)2830 static void ufshcd_prepare_utp_scsi_cmd_upiu(struct scsi_cmnd *cmd,
2831 u8 upiu_flags)
2832 {
2833 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2834 const int tag = scsi_cmd_to_rq(cmd)->tag;
2835 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2836 unsigned short cdb_len;
2837
2838 ucd_req_ptr->header = (struct utp_upiu_header){
2839 .transaction_code = UPIU_TRANSACTION_COMMAND,
2840 .flags = upiu_flags,
2841 .lun = lrbp->lun,
2842 .task_tag = tag,
2843 .command_set_type = UPIU_COMMAND_SET_TYPE_SCSI,
2844 };
2845
2846 WARN_ON_ONCE(ucd_req_ptr->header.task_tag != tag);
2847
2848 ucd_req_ptr->sc.exp_data_transfer_len = cpu_to_be32(cmd->sdb.length);
2849
2850 cdb_len = min_t(unsigned short, cmd->cmd_len, UFS_CDB_SIZE);
2851 memcpy(ucd_req_ptr->sc.cdb, cmd->cmnd, cdb_len);
2852
2853 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
2854 }
2855
2856 /**
2857 * ufshcd_prepare_utp_query_req_upiu() - fill the utp_transfer_req_desc for query request
2858 * @hba: UFS hba
2859 * @cmd: SCSI command pointer
2860 * @upiu_flags: flags
2861 */
ufshcd_prepare_utp_query_req_upiu(struct ufs_hba * hba,struct scsi_cmnd * cmd,u8 upiu_flags)2862 static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
2863 struct scsi_cmnd *cmd, u8 upiu_flags)
2864 {
2865 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2866 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2867 const int tag = scsi_cmd_to_rq(cmd)->tag;
2868 struct ufs_query *query = &hba->dev_cmd.query;
2869 u16 len = be16_to_cpu(query->request.upiu_req.length);
2870
2871 /* Query request header */
2872 ucd_req_ptr->header = (struct utp_upiu_header){
2873 .transaction_code = UPIU_TRANSACTION_QUERY_REQ,
2874 .flags = upiu_flags,
2875 .lun = lrbp->lun,
2876 .task_tag = tag,
2877 .query_function = query->request.query_func,
2878 /* Data segment length only need for WRITE_DESC */
2879 .data_segment_length =
2880 query->request.upiu_req.opcode ==
2881 UPIU_QUERY_OPCODE_WRITE_DESC ?
2882 cpu_to_be16(len) :
2883 0,
2884 };
2885
2886 /* Copy the Query Request buffer as is */
2887 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
2888 QUERY_OSF_SIZE);
2889
2890 /* Copy the Descriptor */
2891 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
2892 memcpy(ucd_req_ptr + 1, query->descriptor, len);
2893 }
2894
ufshcd_prepare_utp_nop_upiu(struct scsi_cmnd * cmd)2895 static inline void ufshcd_prepare_utp_nop_upiu(struct scsi_cmnd *cmd)
2896 {
2897 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2898 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2899 const int tag = scsi_cmd_to_rq(cmd)->tag;
2900
2901 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
2902
2903 ucd_req_ptr->header = (struct utp_upiu_header){
2904 .transaction_code = UPIU_TRANSACTION_NOP_OUT,
2905 .task_tag = tag,
2906 };
2907 }
2908
2909 /**
2910 * ufshcd_compose_devman_upiu - UFS Protocol Information Unit(UPIU)
2911 * for Device Management Purposes
2912 * @hba: per adapter instance
2913 * @cmd: SCSI command pointer
2914 *
2915 * Return: 0 upon success; < 0 upon failure.
2916 */
ufshcd_compose_devman_upiu(struct ufs_hba * hba,struct scsi_cmnd * cmd)2917 static int ufshcd_compose_devman_upiu(struct ufs_hba *hba,
2918 struct scsi_cmnd *cmd)
2919 {
2920 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2921 u8 upiu_flags;
2922 int ret = 0;
2923
2924 ufshcd_prepare_req_desc_hdr(hba, lrbp, &upiu_flags, DMA_NONE, 0);
2925
2926 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
2927 ufshcd_prepare_utp_query_req_upiu(hba, cmd, upiu_flags);
2928 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
2929 ufshcd_prepare_utp_nop_upiu(cmd);
2930 else
2931 ret = -EINVAL;
2932
2933 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
2934
2935 return ret;
2936 }
2937
2938 /**
2939 * ufshcd_comp_scsi_upiu - UFS Protocol Information Unit(UPIU)
2940 * for SCSI Purposes
2941 * @hba: per adapter instance
2942 * @cmd: SCSI command
2943 */
ufshcd_comp_scsi_upiu(struct ufs_hba * hba,struct scsi_cmnd * cmd)2944 static void ufshcd_comp_scsi_upiu(struct ufs_hba *hba, struct scsi_cmnd *cmd)
2945 {
2946 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
2947 struct request *rq = scsi_cmd_to_rq(cmd);
2948 unsigned int ioprio_class = IOPRIO_PRIO_CLASS(req_get_ioprio(rq));
2949 u8 upiu_flags;
2950
2951 ufshcd_prepare_req_desc_hdr(hba, lrbp, &upiu_flags,
2952 cmd->sc_data_direction, 0);
2953 if (ioprio_class == IOPRIO_CLASS_RT)
2954 upiu_flags |= UPIU_CMD_FLAGS_CP;
2955 ufshcd_prepare_utp_scsi_cmd_upiu(cmd, upiu_flags);
2956 }
2957
ufshcd_init_lrb(struct ufs_hba * hba,struct scsi_cmnd * cmd)2958 static void ufshcd_init_lrb(struct ufs_hba *hba, struct scsi_cmnd *cmd)
2959 {
2960 const int i = scsi_cmd_to_rq(cmd)->tag;
2961 struct utp_transfer_req_desc *utrdlp = hba->utrdl_base_addr;
2962 u16 response_offset = le16_to_cpu(utrdlp[i].response_upiu_offset);
2963 u16 prdt_offset = le16_to_cpu(utrdlp[i].prd_table_offset);
2964 struct ufshcd_lrb *lrb = scsi_cmd_priv(cmd);
2965 u8 *command_upiu, *response_upiu, *prd_table;
2966 dma_addr_t cmd_desc_element_addr;
2967
2968 /* The reserved tag uses a dedicated UCD outside the pool. */
2969 if (unlikely(blk_mq_is_reserved_rq(scsi_cmd_to_rq(cmd)))) {
2970 struct utp_devman_cmd_desc *cmd_descp = hba->devman_ucd_base_addr;
2971
2972 cmd_desc_element_addr = hba->devman_ucd_dma_addr;
2973 command_upiu = cmd_descp->command_upiu;
2974 response_upiu = cmd_descp->response_upiu;
2975 prd_table = cmd_descp->prd_table;
2976 } else {
2977 int slot = i - UFSHCD_NUM_RESERVED;
2978 struct utp_transfer_cmd_desc *cmd_descp;
2979
2980 /* Non-reserved tags start at UFSHCD_NUM_RESERVED, so slot >= 0. */
2981 WARN_ON_ONCE(slot < 0);
2982 cmd_descp = (void *)hba->ucdl_base_addr + slot * ufshcd_get_ucd_size(hba);
2983
2984 cmd_desc_element_addr =
2985 hba->ucdl_dma_addr + slot * ufshcd_get_ucd_size(hba);
2986 command_upiu = cmd_descp->command_upiu;
2987 response_upiu = cmd_descp->response_upiu;
2988 prd_table = cmd_descp->prd_table;
2989 }
2990
2991 lrb->utr_descriptor_ptr = utrdlp + i;
2992 lrb->utrd_dma_addr =
2993 hba->utrdl_dma_addr + i * sizeof(struct utp_transfer_req_desc);
2994 lrb->ucd_req_ptr = (struct utp_upiu_req *)command_upiu;
2995 lrb->ucd_req_dma_addr = cmd_desc_element_addr;
2996 lrb->ucd_rsp_ptr = (struct utp_upiu_rsp *)response_upiu;
2997 lrb->ucd_rsp_dma_addr = cmd_desc_element_addr + response_offset;
2998 lrb->ucd_prdt_ptr = (struct ufshcd_sg_entry *)prd_table;
2999 lrb->ucd_prdt_dma_addr = cmd_desc_element_addr + prdt_offset;
3000 }
3001
__ufshcd_setup_cmd(struct ufs_hba * hba,struct scsi_cmnd * cmd,u8 lun,int tag)3002 static void __ufshcd_setup_cmd(struct ufs_hba *hba, struct scsi_cmnd *cmd,
3003 u8 lun, int tag)
3004 {
3005 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
3006
3007 ufshcd_init_lrb(hba, cmd);
3008
3009 memset(lrbp->ucd_req_ptr, 0, sizeof(*lrbp->ucd_req_ptr));
3010
3011 lrbp->lun = lun;
3012 ufshcd_prepare_lrbp_crypto(ufshcd_is_scsi_cmd(cmd) ?
3013 scsi_cmd_to_rq(cmd) : NULL, lrbp);
3014 }
3015
ufshcd_setup_scsi_cmd(struct ufs_hba * hba,struct scsi_cmnd * cmd,u8 lun,int tag)3016 static void ufshcd_setup_scsi_cmd(struct ufs_hba *hba, struct scsi_cmnd *cmd,
3017 u8 lun, int tag)
3018 {
3019 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
3020
3021 __ufshcd_setup_cmd(hba, cmd, lun, tag);
3022 lrbp->intr_cmd = !ufshcd_is_intr_aggr_allowed(hba);
3023 lrbp->req_abort_skip = false;
3024
3025 ufshcd_comp_scsi_upiu(hba, cmd);
3026 }
3027
3028 /**
3029 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
3030 * @upiu_wlun_id: UPIU W-LUN id
3031 *
3032 * Return: SCSI W-LUN id.
3033 */
ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)3034 static inline u16 ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)
3035 {
3036 return (upiu_wlun_id & ~UFS_UPIU_WLUN_ID) | SCSI_W_LUN_BASE;
3037 }
3038
is_device_wlun(struct scsi_device * sdev)3039 static inline bool is_device_wlun(struct scsi_device *sdev)
3040 {
3041 return sdev->lun ==
3042 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN);
3043 }
3044
3045 /*
3046 * Associate the UFS controller queue with the default and poll HCTX types.
3047 * Initialize the mq_map[] arrays.
3048 */
ufshcd_map_queues(struct Scsi_Host * shost)3049 static void ufshcd_map_queues(struct Scsi_Host *shost)
3050 {
3051 struct ufs_hba *hba = shost_priv(shost);
3052 int i, queue_offset = 0;
3053
3054 if (!is_mcq_supported(hba)) {
3055 hba->nr_queues[HCTX_TYPE_DEFAULT] = 1;
3056 hba->nr_queues[HCTX_TYPE_READ] = 0;
3057 hba->nr_queues[HCTX_TYPE_POLL] = 1;
3058 hba->nr_hw_queues = 1;
3059 }
3060
3061 for (i = 0; i < shost->nr_maps; i++) {
3062 struct blk_mq_queue_map *map = &shost->tag_set.map[i];
3063
3064 map->nr_queues = hba->nr_queues[i];
3065 if (!map->nr_queues)
3066 continue;
3067 map->queue_offset = queue_offset;
3068 if (i == HCTX_TYPE_POLL && !is_mcq_supported(hba))
3069 map->queue_offset = 0;
3070
3071 blk_mq_map_queues(map);
3072 queue_offset += map->nr_queues;
3073 }
3074 }
3075
3076 /*
3077 * The only purpose of this function is to make the SCSI core skip the memset()
3078 * call for the private command data.
3079 */
ufshcd_init_cmd_priv(struct Scsi_Host * host,struct scsi_cmnd * cmd)3080 static int ufshcd_init_cmd_priv(struct Scsi_Host *host, struct scsi_cmnd *cmd)
3081 {
3082 return 0;
3083 }
3084
3085 /**
3086 * ufshcd_queuecommand - main entry point for SCSI requests
3087 * @host: SCSI host pointer
3088 * @cmd: command from SCSI Midlayer
3089 *
3090 * Return: 0 for success, non-zero in case of failure.
3091 */
ufshcd_queuecommand(struct Scsi_Host * host,struct scsi_cmnd * cmd)3092 static enum scsi_qc_status ufshcd_queuecommand(struct Scsi_Host *host,
3093 struct scsi_cmnd *cmd)
3094 {
3095 struct ufs_hba *hba = shost_priv(host);
3096 int tag = scsi_cmd_to_rq(cmd)->tag;
3097 int err = 0;
3098 struct ufs_hw_queue *hwq = NULL;
3099
3100 switch (hba->ufshcd_state) {
3101 case UFSHCD_STATE_OPERATIONAL:
3102 break;
3103 case UFSHCD_STATE_EH_SCHEDULED_NON_FATAL:
3104 /*
3105 * SCSI error handler can call ->queuecommand() while UFS error
3106 * handler is in progress. Error interrupts could change the
3107 * state from UFSHCD_STATE_RESET to
3108 * UFSHCD_STATE_EH_SCHEDULED_NON_FATAL. Prevent requests
3109 * being issued in that case.
3110 */
3111 if (ufshcd_eh_in_progress(hba)) {
3112 err = SCSI_MLQUEUE_HOST_BUSY;
3113 goto out;
3114 }
3115 break;
3116 case UFSHCD_STATE_EH_SCHEDULED_FATAL:
3117 /*
3118 * pm_runtime_get_sync() is used at error handling preparation
3119 * stage. If a scsi cmd, e.g. the SSU cmd, is sent from hba's
3120 * PM ops, it can never be finished if we let SCSI layer keep
3121 * retrying it, which gets err handler stuck forever. Neither
3122 * can we let the scsi cmd pass through, because UFS is in bad
3123 * state, the scsi cmd may eventually time out, which will get
3124 * err handler blocked for too long. So, just fail the scsi cmd
3125 * sent from PM ops, err handler can recover PM error anyways.
3126 */
3127 if (hba->pm_op_in_progress) {
3128 hba->force_reset = true;
3129 set_host_byte(cmd, DID_BAD_TARGET);
3130 scsi_done(cmd);
3131 goto out;
3132 }
3133 fallthrough;
3134 case UFSHCD_STATE_RESET:
3135 err = SCSI_MLQUEUE_HOST_BUSY;
3136 goto out;
3137 case UFSHCD_STATE_ERROR:
3138 set_host_byte(cmd, DID_ERROR);
3139 scsi_done(cmd);
3140 goto out;
3141 }
3142
3143 hba->req_abort_count = 0;
3144
3145 ufshcd_hold(hba);
3146
3147 ufshcd_setup_scsi_cmd(hba, cmd,
3148 ufshcd_scsi_to_upiu_lun(cmd->device->lun), tag);
3149
3150 err = ufshcd_map_sg(hba, cmd);
3151 if (err) {
3152 ufshcd_release(hba);
3153 goto out;
3154 }
3155
3156 if (hba->mcq_enabled)
3157 hwq = ufshcd_mcq_req_to_hwq(hba, scsi_cmd_to_rq(cmd));
3158
3159 ufshcd_send_command(hba, cmd, hwq);
3160
3161 out:
3162 if (ufs_trigger_eh(hba)) {
3163 unsigned long flags;
3164
3165 spin_lock_irqsave(hba->host->host_lock, flags);
3166 ufshcd_schedule_eh_work(hba);
3167 spin_unlock_irqrestore(hba->host->host_lock, flags);
3168 }
3169
3170 return err;
3171 }
3172
ufshcd_queue_reserved_command(struct Scsi_Host * host,struct scsi_cmnd * cmd)3173 static enum scsi_qc_status ufshcd_queue_reserved_command(struct Scsi_Host *host,
3174 struct scsi_cmnd *cmd)
3175 {
3176 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
3177 struct request *rq = scsi_cmd_to_rq(cmd);
3178 struct ufs_hba *hba = shost_priv(host);
3179 struct ufs_hw_queue *hwq =
3180 hba->mcq_enabled ? ufshcd_mcq_req_to_hwq(hba, rq) : NULL;
3181
3182 ufshcd_add_query_upiu_trace(hba, UFS_QUERY_SEND, lrbp->ucd_req_ptr);
3183 ufshcd_send_command(hba, cmd, hwq);
3184 return 0;
3185 }
3186
ufshcd_setup_dev_cmd(struct ufs_hba * hba,struct scsi_cmnd * cmd,enum dev_cmd_type cmd_type,u8 lun,int tag)3187 static void ufshcd_setup_dev_cmd(struct ufs_hba *hba, struct scsi_cmnd *cmd,
3188 enum dev_cmd_type cmd_type, u8 lun, int tag)
3189 {
3190 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
3191
3192 __ufshcd_setup_cmd(hba, cmd, lun, tag);
3193 lrbp->intr_cmd = true; /* No interrupt aggregation */
3194 hba->dev_cmd.type = cmd_type;
3195 hba->dev_cmd.tag = tag;
3196 }
3197
3198 /*
3199 * Return: 0 upon success; < 0 upon failure.
3200 */
ufshcd_compose_dev_cmd(struct ufs_hba * hba,struct scsi_cmnd * cmd,enum dev_cmd_type cmd_type,int tag)3201 static int ufshcd_compose_dev_cmd(struct ufs_hba *hba, struct scsi_cmnd *cmd,
3202 enum dev_cmd_type cmd_type, int tag)
3203 {
3204 ufshcd_setup_dev_cmd(hba, cmd, cmd_type, 0, tag);
3205
3206 return ufshcd_compose_devman_upiu(hba, cmd);
3207 }
3208
3209 /*
3210 * Check with the block layer if the command is inflight
3211 * @cmd: command to check.
3212 *
3213 * Return: true if command is inflight; false if not.
3214 */
ufshcd_cmd_inflight(struct scsi_cmnd * cmd)3215 bool ufshcd_cmd_inflight(struct scsi_cmnd *cmd)
3216 {
3217 return cmd && blk_mq_rq_state(scsi_cmd_to_rq(cmd)) == MQ_RQ_IN_FLIGHT;
3218 }
3219
3220 /*
3221 * Clear the pending command in the controller and wait until
3222 * the controller confirms that the command has been cleared.
3223 * @hba: per adapter instance
3224 * @task_tag: The tag number of the command to be cleared.
3225 */
ufshcd_clear_cmd(struct ufs_hba * hba,u32 task_tag)3226 static int ufshcd_clear_cmd(struct ufs_hba *hba, u32 task_tag)
3227 {
3228 u32 mask;
3229 int err;
3230
3231 if (hba->mcq_enabled) {
3232 /*
3233 * MCQ mode. Clean up the MCQ resources similar to
3234 * what the ufshcd_utrl_clear() does for SDB mode.
3235 */
3236 err = ufshcd_mcq_sq_cleanup(hba, task_tag);
3237 if (err) {
3238 dev_err(hba->dev, "%s: failed tag=%d. err=%d\n",
3239 __func__, task_tag, err);
3240 return err;
3241 }
3242 return 0;
3243 }
3244
3245 mask = 1U << task_tag;
3246
3247 /* clear outstanding transaction before retry */
3248 ufshcd_utrl_clear(hba, mask);
3249
3250 /*
3251 * wait for h/w to clear corresponding bit in door-bell.
3252 * max. wait is 1 sec.
3253 */
3254 return ufshcd_wait_for_register(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL,
3255 mask, ~mask, 1000, 1000);
3256 }
3257
3258 /**
3259 * ufshcd_dev_cmd_completion() - handles device management command responses
3260 * @hba: per adapter instance
3261 * @lrbp: pointer to local reference block
3262 *
3263 * Return: 0 upon success; < 0 upon failure.
3264 */
3265 static int
ufshcd_dev_cmd_completion(struct ufs_hba * hba,struct ufshcd_lrb * lrbp)3266 ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
3267 {
3268 enum upiu_response_transaction resp;
3269 int err = 0;
3270
3271 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
3272 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
3273
3274 switch (resp) {
3275 case UPIU_TRANSACTION_NOP_IN:
3276 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
3277 err = -EINVAL;
3278 dev_err(hba->dev, "%s: unexpected response %x\n",
3279 __func__, resp);
3280 }
3281 break;
3282 case UPIU_TRANSACTION_QUERY_RSP: {
3283 u8 response = lrbp->ucd_rsp_ptr->header.response;
3284
3285 if (response == 0) {
3286 err = ufshcd_copy_query_response(hba, lrbp);
3287 } else {
3288 err = -EINVAL;
3289 dev_err(hba->dev, "%s: unexpected response in Query RSP: %x\n",
3290 __func__, response);
3291 }
3292 break;
3293 }
3294 case UPIU_TRANSACTION_REJECT_UPIU:
3295 /* TODO: handle Reject UPIU Response */
3296 err = -EPERM;
3297 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
3298 __func__);
3299 break;
3300 case UPIU_TRANSACTION_RESPONSE:
3301 if (hba->dev_cmd.type != DEV_CMD_TYPE_RPMB) {
3302 err = -EINVAL;
3303 dev_err(hba->dev, "%s: unexpected response %x\n", __func__, resp);
3304 }
3305 break;
3306 default:
3307 err = -EINVAL;
3308 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
3309 __func__, resp);
3310 break;
3311 }
3312
3313 WARN_ONCE(err > 0, "Incorrect return value %d > 0\n", err);
3314 return err;
3315 }
3316
ufshcd_dev_man_lock(struct ufs_hba * hba)3317 static void ufshcd_dev_man_lock(struct ufs_hba *hba)
3318 __acquires(&hba->dev_cmd.lock)
3319 __acquires_shared(&hba->clk_scaling_lock)
3320 {
3321 ufshcd_hold(hba);
3322 mutex_lock(&hba->dev_cmd.lock);
3323 down_read(&hba->clk_scaling_lock);
3324 }
3325
ufshcd_dev_man_unlock(struct ufs_hba * hba)3326 static void ufshcd_dev_man_unlock(struct ufs_hba *hba)
3327 __releases_shared(&hba->clk_scaling_lock)
3328 __releases(&hba->dev_cmd.lock)
3329 {
3330 up_read(&hba->clk_scaling_lock);
3331 mutex_unlock(&hba->dev_cmd.lock);
3332 ufshcd_release(hba);
3333 }
3334
ufshcd_get_dev_mgmt_cmd(struct ufs_hba * hba)3335 static struct scsi_cmnd *ufshcd_get_dev_mgmt_cmd(struct ufs_hba *hba)
3336 {
3337 /*
3338 * The caller must hold this lock to guarantee that the NOWAIT
3339 * allocation will succeed.
3340 */
3341 lockdep_assert_held(&hba->dev_cmd.lock);
3342
3343 return scsi_get_internal_cmd(
3344 hba->host->pseudo_sdev, DMA_TO_DEVICE,
3345 BLK_MQ_REQ_RESERVED | BLK_MQ_REQ_NOWAIT);
3346 }
3347
ufshcd_put_dev_mgmt_cmd(struct scsi_cmnd * cmd)3348 static void ufshcd_put_dev_mgmt_cmd(struct scsi_cmnd *cmd)
3349 {
3350 scsi_put_internal_cmd(cmd);
3351 }
3352
3353 /*
3354 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3355 * < 0 if another error occurred.
3356 */
ufshcd_issue_dev_cmd(struct ufs_hba * hba,struct scsi_cmnd * cmd,const u32 tag,int timeout)3357 static int ufshcd_issue_dev_cmd(struct ufs_hba *hba, struct scsi_cmnd *cmd,
3358 const u32 tag, int timeout)
3359 {
3360 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
3361 struct request *rq = scsi_cmd_to_rq(cmd);
3362 blk_status_t sts;
3363
3364 rq->timeout = timeout;
3365 sts = blk_execute_rq(rq, true);
3366 if (sts != BLK_STS_OK)
3367 return blk_status_to_errno(sts);
3368 return lrbp->utr_descriptor_ptr->header.ocs;
3369 }
3370
3371 /**
3372 * ufshcd_exec_dev_cmd - API for sending device management requests
3373 * @hba: UFS hba
3374 * @cmd_type: specifies the type (NOP, Query...)
3375 * @timeout: timeout in milliseconds
3376 *
3377 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3378 * < 0 if another error occurred.
3379 *
3380 * NOTE: Since there is only one available tag for device management commands,
3381 * it is expected you hold the hba->dev_cmd.lock mutex.
3382 */
ufshcd_exec_dev_cmd(struct ufs_hba * hba,enum dev_cmd_type cmd_type,int timeout)3383 static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
3384 enum dev_cmd_type cmd_type, int timeout)
3385 {
3386 struct scsi_cmnd *cmd = ufshcd_get_dev_mgmt_cmd(hba);
3387 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
3388 u32 tag;
3389 int err;
3390
3391 /* Protects use of hba->dev_cmd. */
3392 lockdep_assert_held(&hba->dev_cmd.lock);
3393
3394 if (WARN_ON_ONCE(!cmd))
3395 return -ENOMEM;
3396
3397 tag = scsi_cmd_to_rq(cmd)->tag;
3398
3399 err = ufshcd_compose_dev_cmd(hba, cmd, cmd_type, tag);
3400 if (unlikely(err))
3401 goto out;
3402
3403 err = ufshcd_issue_dev_cmd(hba, cmd, tag, timeout);
3404 if (err == 0)
3405 err = ufshcd_dev_cmd_completion(hba, lrbp);
3406
3407 out:
3408 ufshcd_put_dev_mgmt_cmd(cmd);
3409
3410 return err;
3411 }
3412
3413 /**
3414 * ufshcd_init_query() - init the query response and request parameters
3415 * @hba: per-adapter instance
3416 * @request: address of the request pointer to be initialized
3417 * @response: address of the response pointer to be initialized
3418 * @opcode: operation to perform
3419 * @idn: flag idn to access
3420 * @index: LU number to access
3421 * @selector: query/flag/descriptor further identification
3422 */
ufshcd_init_query(struct ufs_hba * hba,struct ufs_query_req ** request,struct ufs_query_res ** response,enum query_opcode opcode,u8 idn,u8 index,u8 selector)3423 static inline void ufshcd_init_query(struct ufs_hba *hba,
3424 struct ufs_query_req **request, struct ufs_query_res **response,
3425 enum query_opcode opcode, u8 idn, u8 index, u8 selector)
3426 {
3427 *request = &hba->dev_cmd.query.request;
3428 *response = &hba->dev_cmd.query.response;
3429 memset(*request, 0, sizeof(struct ufs_query_req));
3430 memset(*response, 0, sizeof(struct ufs_query_res));
3431 (*request)->upiu_req.opcode = opcode;
3432 (*request)->upiu_req.idn = idn;
3433 (*request)->upiu_req.index = index;
3434 (*request)->upiu_req.selector = selector;
3435 }
3436
3437 /*
3438 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3439 * < 0 if another error occurred.
3440 */
ufshcd_query_flag_retry(struct ufs_hba * hba,enum query_opcode opcode,enum flag_idn idn,u8 index,bool * flag_res)3441 static int ufshcd_query_flag_retry(struct ufs_hba *hba,
3442 enum query_opcode opcode, enum flag_idn idn, u8 index, bool *flag_res)
3443 {
3444 int ret;
3445 int retries;
3446
3447 for (retries = 0; retries < QUERY_REQ_RETRIES; retries++) {
3448 ret = ufshcd_query_flag(hba, opcode, idn, index, flag_res);
3449 if (ret)
3450 dev_dbg(hba->dev,
3451 "%s: failed with error %d, retries %d\n",
3452 __func__, ret, retries);
3453 else
3454 break;
3455 }
3456
3457 if (ret)
3458 dev_err(hba->dev,
3459 "%s: query flag, opcode %d, idn %d, failed with error %d after %d retries\n",
3460 __func__, opcode, idn, ret, retries);
3461 return ret;
3462 }
3463
3464 /**
3465 * ufshcd_query_flag() - API function for sending flag query requests
3466 * @hba: per-adapter instance
3467 * @opcode: flag query to perform
3468 * @idn: flag idn to access
3469 * @index: flag index to access
3470 * @flag_res: the flag value after the query request completes
3471 *
3472 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3473 * < 0 if another error occurred.
3474 */
ufshcd_query_flag(struct ufs_hba * hba,enum query_opcode opcode,enum flag_idn idn,u8 index,bool * flag_res)3475 int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
3476 enum flag_idn idn, u8 index, bool *flag_res)
3477 {
3478 struct ufs_query_req *request = NULL;
3479 struct ufs_query_res *response = NULL;
3480 int err, selector = 0;
3481 int timeout = dev_cmd_timeout;
3482
3483 BUG_ON(!hba);
3484
3485 ufshcd_dev_man_lock(hba);
3486
3487 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
3488 selector);
3489
3490 switch (opcode) {
3491 case UPIU_QUERY_OPCODE_SET_FLAG:
3492 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
3493 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
3494 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
3495 break;
3496 case UPIU_QUERY_OPCODE_READ_FLAG:
3497 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
3498 if (!flag_res) {
3499 /* No dummy reads */
3500 dev_err(hba->dev, "%s: Invalid argument for read request\n",
3501 __func__);
3502 err = -EINVAL;
3503 goto out_unlock;
3504 }
3505 break;
3506 default:
3507 dev_err(hba->dev,
3508 "%s: Expected query flag opcode but got = %d\n",
3509 __func__, opcode);
3510 err = -EINVAL;
3511 goto out_unlock;
3512 }
3513
3514 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, timeout);
3515
3516 if (err) {
3517 dev_err(hba->dev,
3518 "%s: Sending flag query for idn %d failed, err = %d\n",
3519 __func__, idn, err);
3520 goto out_unlock;
3521 }
3522
3523 if (flag_res)
3524 *flag_res = (be32_to_cpu(response->upiu_res.value) &
3525 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
3526
3527 out_unlock:
3528 ufshcd_dev_man_unlock(hba);
3529 return err;
3530 }
3531
3532 /**
3533 * ufshcd_query_attr - API function for sending attribute requests
3534 * @hba: per-adapter instance
3535 * @opcode: attribute opcode
3536 * @idn: attribute idn to access
3537 * @index: index field
3538 * @selector: selector field
3539 * @attr_val: the attribute value after the query request completes
3540 *
3541 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3542 * < 0 if another error occurred.
3543 */
ufshcd_query_attr(struct ufs_hba * hba,enum query_opcode opcode,enum attr_idn idn,u8 index,u8 selector,u32 * attr_val)3544 int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
3545 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
3546 {
3547 struct ufs_query_req *request = NULL;
3548 struct ufs_query_res *response = NULL;
3549 int err;
3550
3551 BUG_ON(!hba);
3552
3553 if (!attr_val) {
3554 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
3555 __func__, opcode);
3556 return -EINVAL;
3557 }
3558
3559 ufshcd_dev_man_lock(hba);
3560
3561 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
3562 selector);
3563
3564 switch (opcode) {
3565 case UPIU_QUERY_OPCODE_WRITE_ATTR:
3566 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
3567 request->upiu_req.value = cpu_to_be32(*attr_val);
3568 break;
3569 case UPIU_QUERY_OPCODE_READ_ATTR:
3570 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
3571 break;
3572 default:
3573 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
3574 __func__, opcode);
3575 err = -EINVAL;
3576 goto out_unlock;
3577 }
3578
3579 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, dev_cmd_timeout);
3580
3581 if (err) {
3582 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, err = %d\n",
3583 __func__, opcode, idn, index, err);
3584 goto out_unlock;
3585 }
3586
3587 *attr_val = be32_to_cpu(response->upiu_res.value);
3588
3589 out_unlock:
3590 ufshcd_dev_man_unlock(hba);
3591 return err;
3592 }
3593
3594 /**
3595 * ufshcd_query_attr_retry() - API function for sending query
3596 * attribute with retries
3597 * @hba: per-adapter instance
3598 * @opcode: attribute opcode
3599 * @idn: attribute idn to access
3600 * @index: index field
3601 * @selector: selector field
3602 * @attr_val: the attribute value after the query request
3603 * completes
3604 *
3605 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3606 * < 0 if another error occurred.
3607 */
ufshcd_query_attr_retry(struct ufs_hba * hba,enum query_opcode opcode,enum attr_idn idn,u8 index,u8 selector,u32 * attr_val)3608 int ufshcd_query_attr_retry(struct ufs_hba *hba,
3609 enum query_opcode opcode, enum attr_idn idn, u8 index, u8 selector,
3610 u32 *attr_val)
3611 {
3612 int ret = 0;
3613 u32 retries;
3614
3615 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
3616 ret = ufshcd_query_attr(hba, opcode, idn, index,
3617 selector, attr_val);
3618 if (ret)
3619 dev_dbg(hba->dev, "%s: failed with error %d, retries %d\n",
3620 __func__, ret, retries);
3621 else
3622 break;
3623 }
3624
3625 if (ret)
3626 dev_err(hba->dev,
3627 "%s: query attribute, idn %d, failed with error %d after %d retries\n",
3628 __func__, idn, ret, QUERY_REQ_RETRIES);
3629 return ret;
3630 }
3631
3632 /**
3633 * ufshcd_query_attr_qword - Function of sending query requests for quad-word attributes
3634 * @hba: per-adapter instance
3635 * @opcode: attribute opcode
3636 * @idn: attribute idn to access
3637 * @index: index field
3638 * @sel: selector field
3639 * @attr_val: the attribute value after the query request completes
3640 *
3641 * Return: 0 for success, non-zero in case of failure.
3642 */
ufshcd_query_attr_qword(struct ufs_hba * hba,enum query_opcode opcode,enum attr_idn idn,u8 index,u8 sel,u64 * attr_val)3643 int ufshcd_query_attr_qword(struct ufs_hba *hba, enum query_opcode opcode,
3644 enum attr_idn idn, u8 index, u8 sel, u64 *attr_val)
3645 {
3646 struct utp_upiu_query_v4_0 *upiu_req;
3647 struct utp_upiu_query_v4_0 *upiu_resp;
3648 struct ufs_query_req *request = NULL;
3649 struct ufs_query_res *response = NULL;
3650 int err;
3651
3652 if (!attr_val) {
3653 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
3654 __func__, opcode);
3655 return -EINVAL;
3656 }
3657
3658 ufshcd_dev_man_lock(hba);
3659
3660 ufshcd_init_query(hba, &request, &response, opcode, idn, index, sel);
3661
3662 switch (opcode) {
3663 case UPIU_QUERY_OPCODE_WRITE_ATTR:
3664 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
3665 upiu_req = (struct utp_upiu_query_v4_0 *)&request->upiu_req;
3666 put_unaligned_be64(*attr_val, &upiu_req->osf3);
3667 break;
3668 case UPIU_QUERY_OPCODE_READ_ATTR:
3669 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
3670 break;
3671 default:
3672 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
3673 __func__, opcode);
3674 err = -EINVAL;
3675 goto out_unlock;
3676 }
3677
3678 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, dev_cmd_timeout);
3679 if (err) {
3680 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, selector %d, err = %d\n",
3681 __func__, opcode, idn, index, sel, err);
3682 goto out_unlock;
3683 }
3684
3685 upiu_resp = (struct utp_upiu_query_v4_0 *)response;
3686 *attr_val = get_unaligned_be64(&upiu_resp->osf3);
3687
3688 out_unlock:
3689 ufshcd_dev_man_unlock(hba);
3690 return err;
3691 }
3692
3693 /*
3694 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3695 * < 0 if another error occurred.
3696 */
__ufshcd_query_descriptor(struct ufs_hba * hba,enum query_opcode opcode,enum desc_idn idn,u8 index,u8 selector,u8 * desc_buf,int * buf_len)3697 static int __ufshcd_query_descriptor(struct ufs_hba *hba,
3698 enum query_opcode opcode, enum desc_idn idn, u8 index,
3699 u8 selector, u8 *desc_buf, int *buf_len)
3700 {
3701 struct ufs_query_req *request = NULL;
3702 struct ufs_query_res *response = NULL;
3703 int err;
3704
3705 BUG_ON(!hba);
3706
3707 if (!desc_buf) {
3708 dev_err(hba->dev, "%s: descriptor buffer required for opcode 0x%x\n",
3709 __func__, opcode);
3710 return -EINVAL;
3711 }
3712
3713 if (*buf_len < QUERY_DESC_MIN_SIZE || *buf_len > QUERY_DESC_MAX_SIZE) {
3714 dev_err(hba->dev, "%s: descriptor buffer size (%d) is out of range\n",
3715 __func__, *buf_len);
3716 return -EINVAL;
3717 }
3718
3719 ufshcd_dev_man_lock(hba);
3720
3721 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
3722 selector);
3723 hba->dev_cmd.query.descriptor = desc_buf;
3724 request->upiu_req.length = cpu_to_be16(*buf_len);
3725
3726 switch (opcode) {
3727 case UPIU_QUERY_OPCODE_WRITE_DESC:
3728 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
3729 break;
3730 case UPIU_QUERY_OPCODE_READ_DESC:
3731 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
3732 break;
3733 default:
3734 dev_err(hba->dev,
3735 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
3736 __func__, opcode);
3737 err = -EINVAL;
3738 goto out_unlock;
3739 }
3740
3741 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, dev_cmd_timeout);
3742
3743 if (err) {
3744 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, err = %d\n",
3745 __func__, opcode, idn, index, err);
3746 goto out_unlock;
3747 }
3748
3749 *buf_len = be16_to_cpu(response->upiu_res.length);
3750
3751 out_unlock:
3752 hba->dev_cmd.query.descriptor = NULL;
3753 ufshcd_dev_man_unlock(hba);
3754 return err;
3755 }
3756
3757 /**
3758 * ufshcd_query_descriptor_retry - API function for sending descriptor requests
3759 * @hba: per-adapter instance
3760 * @opcode: attribute opcode
3761 * @idn: attribute idn to access
3762 * @index: index field
3763 * @selector: selector field
3764 * @desc_buf: the buffer that contains the descriptor
3765 * @buf_len: length parameter passed to the device
3766 *
3767 * The buf_len parameter will contain, on return, the length parameter
3768 * received on the response.
3769 *
3770 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3771 * < 0 if another error occurred.
3772 */
ufshcd_query_descriptor_retry(struct ufs_hba * hba,enum query_opcode opcode,enum desc_idn idn,u8 index,u8 selector,u8 * desc_buf,int * buf_len)3773 int ufshcd_query_descriptor_retry(struct ufs_hba *hba,
3774 enum query_opcode opcode,
3775 enum desc_idn idn, u8 index,
3776 u8 selector,
3777 u8 *desc_buf, int *buf_len)
3778 {
3779 int err;
3780 int retries;
3781
3782 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
3783 err = __ufshcd_query_descriptor(hba, opcode, idn, index,
3784 selector, desc_buf, buf_len);
3785 if (!err || err == -EINVAL)
3786 break;
3787 }
3788
3789 return err;
3790 }
3791
3792 /**
3793 * ufshcd_read_desc_param - read the specified descriptor parameter
3794 * @hba: Pointer to adapter instance
3795 * @desc_id: descriptor idn value
3796 * @desc_index: descriptor index
3797 * @param_offset: offset of the parameter to read
3798 * @param_read_buf: pointer to buffer where parameter would be read
3799 * @param_size: sizeof(param_read_buf)
3800 *
3801 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
3802 * < 0 if another error occurred.
3803 */
ufshcd_read_desc_param(struct ufs_hba * hba,enum desc_idn desc_id,int desc_index,u8 param_offset,u8 * param_read_buf,u8 param_size)3804 int ufshcd_read_desc_param(struct ufs_hba *hba,
3805 enum desc_idn desc_id,
3806 int desc_index,
3807 u8 param_offset,
3808 u8 *param_read_buf,
3809 u8 param_size)
3810 {
3811 int ret;
3812 u8 *desc_buf;
3813 int buff_len = QUERY_DESC_MAX_SIZE;
3814 bool is_kmalloc = true;
3815
3816 /* Safety check */
3817 if (desc_id >= QUERY_DESC_IDN_MAX || !param_size)
3818 return -EINVAL;
3819
3820 /* Check whether we need temp memory */
3821 if (param_offset != 0 || param_size < buff_len) {
3822 desc_buf = kzalloc(buff_len, GFP_KERNEL);
3823 if (!desc_buf)
3824 return -ENOMEM;
3825 } else {
3826 desc_buf = param_read_buf;
3827 is_kmalloc = false;
3828 }
3829
3830 /* Request for full descriptor */
3831 ret = ufshcd_query_descriptor_retry(hba, UPIU_QUERY_OPCODE_READ_DESC,
3832 desc_id, desc_index, 0,
3833 desc_buf, &buff_len);
3834 if (ret) {
3835 dev_err(hba->dev, "%s: Failed reading descriptor. desc_id %d, desc_index %d, param_offset %d, ret %d\n",
3836 __func__, desc_id, desc_index, param_offset, ret);
3837 goto out;
3838 }
3839
3840 /* Update descriptor length */
3841 buff_len = desc_buf[QUERY_DESC_LENGTH_OFFSET];
3842
3843 if (param_offset >= buff_len) {
3844 dev_err(hba->dev, "%s: Invalid offset 0x%x in descriptor IDN 0x%x, length 0x%x\n",
3845 __func__, param_offset, desc_id, buff_len);
3846 ret = -EINVAL;
3847 goto out;
3848 }
3849
3850 /* Sanity check */
3851 if (desc_buf[QUERY_DESC_DESC_TYPE_OFFSET] != desc_id) {
3852 dev_err(hba->dev, "%s: invalid desc_id %d in descriptor header\n",
3853 __func__, desc_buf[QUERY_DESC_DESC_TYPE_OFFSET]);
3854 ret = -EINVAL;
3855 goto out;
3856 }
3857
3858 if (is_kmalloc) {
3859 /* Make sure we don't copy more data than available */
3860 if (param_offset >= buff_len)
3861 ret = -EINVAL;
3862 else
3863 memcpy(param_read_buf, &desc_buf[param_offset],
3864 min_t(u32, param_size, buff_len - param_offset));
3865 }
3866 out:
3867 if (is_kmalloc)
3868 kfree(desc_buf);
3869 return ret;
3870 }
3871
3872 /**
3873 * struct uc_string_id - unicode string
3874 *
3875 * @len: size of this descriptor inclusive
3876 * @type: descriptor type
3877 * @uc: unicode string character
3878 */
3879 struct uc_string_id {
3880 u8 len;
3881 u8 type;
3882 wchar_t uc[];
3883 } __packed;
3884
3885 /* replace non-printable or non-ASCII characters with spaces */
ufshcd_remove_non_printable(u8 ch)3886 static inline char ufshcd_remove_non_printable(u8 ch)
3887 {
3888 return (ch >= 0x20 && ch <= 0x7e) ? ch : ' ';
3889 }
3890
3891 /**
3892 * ufshcd_read_string_desc - read string descriptor
3893 * @hba: pointer to adapter instance
3894 * @desc_index: descriptor index
3895 * @buf: pointer to buffer where descriptor would be read,
3896 * the caller should free the memory.
3897 * @fmt: if %SD_ASCII_STD, convert from UTF-16 to ASCII
3898 *
3899 * Return:
3900 * * string size on success.
3901 * * -ENOMEM: on allocation failure
3902 * * -EINVAL: on a wrong parameter
3903 */
ufshcd_read_string_desc(struct ufs_hba * hba,u8 desc_index,u8 ** buf,enum ufs_descr_fmt fmt)3904 int ufshcd_read_string_desc(struct ufs_hba *hba, u8 desc_index, u8 **buf, enum ufs_descr_fmt fmt)
3905 {
3906 struct uc_string_id *uc_str;
3907 u8 *str;
3908 int ret, uc_len;
3909
3910 if (!buf)
3911 return -EINVAL;
3912
3913 uc_str = kzalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
3914 if (!uc_str)
3915 return -ENOMEM;
3916
3917 ret = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_STRING, desc_index, 0,
3918 (u8 *)uc_str, QUERY_DESC_MAX_SIZE);
3919 if (ret < 0) {
3920 dev_err(hba->dev, "Reading String Desc failed after %d retries. err = %d\n",
3921 QUERY_REQ_RETRIES, ret);
3922 str = NULL;
3923 goto out;
3924 }
3925
3926 if (uc_str->len <= QUERY_DESC_HDR_SIZE) {
3927 dev_dbg(hba->dev, "String Desc is of zero length\n");
3928 str = NULL;
3929 ret = 0;
3930 goto out;
3931 }
3932
3933 uc_len = uc_str->len - QUERY_DESC_HDR_SIZE;
3934 if (uc_len % sizeof(*uc_str->uc)) {
3935 dev_err(hba->dev, "String Desc has an odd UTF-16 payload length\n");
3936 str = NULL;
3937 ret = -EINVAL;
3938 goto out;
3939 }
3940
3941 if (fmt == SD_ASCII_STD) {
3942 ssize_t ascii_len;
3943 int i;
3944 /* Allow up to three UTF-8 bytes per UTF-16 code unit plus a NUL. */
3945 ascii_len = uc_len / sizeof(*uc_str->uc) * 3 + 1;
3946 str = kzalloc(ascii_len, GFP_KERNEL);
3947 if (!str) {
3948 ret = -ENOMEM;
3949 goto out;
3950 }
3951
3952 /*
3953 * the descriptor contains string in UTF16 format
3954 * we need to convert to utf-8 so it can be displayed
3955 */
3956 ret = utf16s_to_utf8s(uc_str->uc,
3957 uc_len / sizeof(*uc_str->uc),
3958 UTF16_BIG_ENDIAN, str, ascii_len - 1);
3959
3960 /* replace non-printable or non-ASCII characters with spaces */
3961 for (i = 0; i < ret; i++)
3962 str[i] = ufshcd_remove_non_printable(str[i]);
3963
3964 str[ret++] = '\0';
3965
3966 } else {
3967 /*
3968 * Keep the bLength-sized raw output for the RPMB device ID ABI.
3969 * The two bytes beyond the UTF-16 payload are explicitly zeroed
3970 * instead of being read past the descriptor buffer.
3971 */
3972 str = kzalloc(uc_str->len, GFP_KERNEL);
3973 if (!str) {
3974 ret = -ENOMEM;
3975 goto out;
3976 }
3977 memcpy(str, uc_str->uc, uc_len);
3978 ret = uc_str->len;
3979 }
3980 out:
3981 *buf = str;
3982 kfree(uc_str);
3983 return ret;
3984 }
3985
3986 /**
3987 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
3988 * @hba: Pointer to adapter instance
3989 * @lun: lun id
3990 * @param_offset: offset of the parameter to read
3991 * @param_read_buf: pointer to buffer where parameter would be read
3992 * @param_size: sizeof(param_read_buf)
3993 *
3994 * Return: 0 in case of success; < 0 upon failure.
3995 */
ufshcd_read_unit_desc_param(struct ufs_hba * hba,int lun,enum unit_desc_param param_offset,u8 * param_read_buf,u32 param_size)3996 static inline int ufshcd_read_unit_desc_param(struct ufs_hba *hba,
3997 int lun,
3998 enum unit_desc_param param_offset,
3999 u8 *param_read_buf,
4000 u32 param_size)
4001 {
4002 /*
4003 * Unit descriptors are only available for general purpose LUs (LUN id
4004 * from 0 to 7) and RPMB Well known LU.
4005 */
4006 if (!ufs_is_valid_unit_desc_lun(&hba->dev_info, lun))
4007 return -EOPNOTSUPP;
4008
4009 return ufshcd_read_desc_param(hba, QUERY_DESC_IDN_UNIT, lun,
4010 param_offset, param_read_buf, param_size);
4011 }
4012
ufshcd_get_ref_clk_gating_wait(struct ufs_hba * hba)4013 static int ufshcd_get_ref_clk_gating_wait(struct ufs_hba *hba)
4014 {
4015 int err = 0;
4016 u32 gating_wait = UFSHCD_REF_CLK_GATING_WAIT_US;
4017
4018 if (hba->dev_info.wspecversion >= 0x300) {
4019 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
4020 QUERY_ATTR_IDN_REF_CLK_GATING_WAIT_TIME, 0, 0,
4021 &gating_wait);
4022 if (err)
4023 dev_err(hba->dev, "Failed reading bRefClkGatingWait. err = %d, use default %uus\n",
4024 err, gating_wait);
4025
4026 if (gating_wait == 0) {
4027 gating_wait = UFSHCD_REF_CLK_GATING_WAIT_US;
4028 dev_err(hba->dev, "Undefined ref clk gating wait time, use default %uus\n",
4029 gating_wait);
4030 }
4031
4032 hba->dev_info.clk_gating_wait_us = gating_wait;
4033 }
4034
4035 return err;
4036 }
4037
4038 /**
4039 * ufshcd_memory_alloc - allocate memory for host memory space data structures
4040 * @hba: per adapter instance
4041 *
4042 * 1. Allocate DMA memory for Command Descriptor array
4043 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
4044 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
4045 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
4046 * (UTMRDL)
4047 * 4. Allocate memory for local reference block(lrb).
4048 *
4049 * Return: 0 for success, non-zero in case of failure.
4050 */
ufshcd_memory_alloc(struct ufs_hba * hba)4051 static int ufshcd_memory_alloc(struct ufs_hba *hba)
4052 {
4053 size_t utmrdl_size, utrdl_size, ucdl_size;
4054
4055 /* The reserved tag uses the dedicated UCD below, not this pool. */
4056 ucdl_size = ufshcd_get_ucd_size(hba) * (hba->nutrs - UFSHCD_NUM_RESERVED);
4057 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
4058 ucdl_size,
4059 &hba->ucdl_dma_addr,
4060 GFP_KERNEL);
4061
4062 /*
4063 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
4064 */
4065 if (!hba->ucdl_base_addr ||
4066 WARN_ON(hba->ucdl_dma_addr & (128 - 1))) {
4067 dev_err(hba->dev,
4068 "Command Descriptor Memory allocation failed\n");
4069 goto out;
4070 }
4071
4072 /* Dedicated UCD for the reserved tag; allocate once (survives MCQ re-init). */
4073 if (!hba->devman_ucd_base_addr) {
4074 hba->devman_ucd_base_addr =
4075 dmam_alloc_coherent(hba->dev,
4076 ufshcd_get_devman_ucd_size(hba),
4077 &hba->devman_ucd_dma_addr,
4078 GFP_KERNEL);
4079 if (!hba->devman_ucd_base_addr ||
4080 WARN_ON(hba->devman_ucd_dma_addr & (128 - 1))) {
4081 dev_err(hba->dev,
4082 "Devman Command Descriptor Memory allocation failed\n");
4083 goto out;
4084 }
4085 }
4086
4087 /*
4088 * Allocate memory for UTP Transfer descriptors
4089 * UFSHCI requires 1KB alignment of UTRD
4090 */
4091 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
4092 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
4093 utrdl_size,
4094 &hba->utrdl_dma_addr,
4095 GFP_KERNEL);
4096 if (!hba->utrdl_base_addr ||
4097 WARN_ON(hba->utrdl_dma_addr & (SZ_1K - 1))) {
4098 dev_err(hba->dev,
4099 "Transfer Descriptor Memory allocation failed\n");
4100 goto out;
4101 }
4102
4103 /*
4104 * Skip utmrdl allocation; it may have been
4105 * allocated during first pass and not released during
4106 * MCQ memory allocation.
4107 * See ufshcd_release_sdb_queue() and ufshcd_config_mcq()
4108 */
4109 if (hba->utmrdl_base_addr)
4110 goto skip_utmrdl;
4111 /*
4112 * Allocate memory for UTP Task Management descriptors
4113 * UFSHCI requires 1KB alignment of UTMRD
4114 */
4115 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
4116 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
4117 utmrdl_size,
4118 &hba->utmrdl_dma_addr,
4119 GFP_KERNEL);
4120 if (!hba->utmrdl_base_addr ||
4121 WARN_ON(hba->utmrdl_dma_addr & (SZ_1K - 1))) {
4122 dev_err(hba->dev,
4123 "Task Management Descriptor Memory allocation failed\n");
4124 goto out;
4125 }
4126
4127 skip_utmrdl:
4128 return 0;
4129 out:
4130 return -ENOMEM;
4131 }
4132
4133 /**
4134 * ufshcd_host_memory_configure - configure local reference block with
4135 * memory offsets
4136 * @hba: per adapter instance
4137 *
4138 * Configure Host memory space
4139 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
4140 * address.
4141 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
4142 * and PRDT offset.
4143 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
4144 * into local reference block.
4145 */
ufshcd_host_memory_configure(struct ufs_hba * hba)4146 static void ufshcd_host_memory_configure(struct ufs_hba *hba)
4147 {
4148 struct utp_transfer_req_desc *utrdlp;
4149 dma_addr_t cmd_desc_dma_addr;
4150 dma_addr_t cmd_desc_element_addr;
4151 u16 response_offset;
4152 u16 prdt_offset;
4153 u16 response_len;
4154 int cmd_desc_size;
4155 int i;
4156
4157 utrdlp = hba->utrdl_base_addr;
4158
4159 cmd_desc_size = ufshcd_get_ucd_size(hba);
4160 cmd_desc_dma_addr = hba->ucdl_dma_addr;
4161
4162 for (i = 0; i < hba->nutrs; i++) {
4163 /*
4164 * Reserved tags (low end) use the dedicated devman UCD with a
4165 * larger response area; other tags index the pool at i - RESERVED.
4166 */
4167 if (i < UFSHCD_NUM_RESERVED) {
4168 cmd_desc_element_addr = hba->devman_ucd_dma_addr;
4169 response_offset = offsetof(struct utp_devman_cmd_desc,
4170 response_upiu);
4171 prdt_offset = offsetof(struct utp_devman_cmd_desc,
4172 prd_table);
4173 response_len = ALIGNED_DEVMAN_RSP_SIZE;
4174 } else {
4175 cmd_desc_element_addr = cmd_desc_dma_addr +
4176 cmd_desc_size * (i - UFSHCD_NUM_RESERVED);
4177 response_offset = offsetof(struct utp_transfer_cmd_desc,
4178 response_upiu);
4179 prdt_offset = offsetof(struct utp_transfer_cmd_desc,
4180 prd_table);
4181 response_len = ALIGNED_UPIU_SIZE;
4182 }
4183
4184 /* Configure UTRD with command descriptor base address */
4185 utrdlp[i].command_desc_base_addr =
4186 cpu_to_le64(cmd_desc_element_addr);
4187
4188 /* Response upiu and prdt offset should be in double words */
4189 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN) {
4190 utrdlp[i].response_upiu_offset =
4191 cpu_to_le16(response_offset);
4192 utrdlp[i].prd_table_offset =
4193 cpu_to_le16(prdt_offset);
4194 utrdlp[i].response_upiu_length =
4195 cpu_to_le16(response_len);
4196 } else {
4197 utrdlp[i].response_upiu_offset =
4198 cpu_to_le16(response_offset >> 2);
4199 utrdlp[i].prd_table_offset =
4200 cpu_to_le16(prdt_offset >> 2);
4201 utrdlp[i].response_upiu_length =
4202 cpu_to_le16(response_len >> 2);
4203 }
4204 }
4205 }
4206
4207 /**
4208 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
4209 * @hba: per adapter instance
4210 *
4211 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
4212 * in order to initialize the Unipro link startup procedure.
4213 * Once the Unipro links are up, the device connected to the controller
4214 * is detected.
4215 *
4216 * Return: 0 on success, non-zero value on failure.
4217 */
ufshcd_dme_link_startup(struct ufs_hba * hba)4218 static int ufshcd_dme_link_startup(struct ufs_hba *hba)
4219 {
4220 struct uic_command uic_cmd = {
4221 .command = UIC_CMD_DME_LINK_STARTUP,
4222 };
4223 int ret;
4224
4225 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
4226 if (ret)
4227 dev_dbg(hba->dev,
4228 "dme-link-startup: error code %d\n", ret);
4229 return ret;
4230 }
4231 /**
4232 * ufshcd_dme_reset - UIC command for DME_RESET
4233 * @hba: per adapter instance
4234 *
4235 * DME_RESET command is issued in order to reset UniPro stack.
4236 * This function now deals with cold reset.
4237 *
4238 * Return: 0 on success, non-zero value on failure.
4239 */
ufshcd_dme_reset(struct ufs_hba * hba)4240 int ufshcd_dme_reset(struct ufs_hba *hba)
4241 {
4242 struct uic_command uic_cmd = {
4243 .command = UIC_CMD_DME_RESET,
4244 };
4245 int ret;
4246
4247 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
4248 if (ret)
4249 dev_err(hba->dev,
4250 "dme-reset: error code %d\n", ret);
4251
4252 return ret;
4253 }
4254 EXPORT_SYMBOL_GPL(ufshcd_dme_reset);
4255
ufshcd_dme_configure_adapt(struct ufs_hba * hba,int agreed_gear,int adapt_val)4256 int ufshcd_dme_configure_adapt(struct ufs_hba *hba,
4257 int agreed_gear,
4258 int adapt_val)
4259 {
4260 int ret;
4261
4262 if (agreed_gear < UFS_HS_G4)
4263 adapt_val = PA_NO_ADAPT;
4264
4265 ret = ufshcd_dme_set(hba,
4266 UIC_ARG_MIB(PA_TXHSADAPTTYPE),
4267 adapt_val);
4268 return ret;
4269 }
4270 EXPORT_SYMBOL_GPL(ufshcd_dme_configure_adapt);
4271
4272 /**
4273 * ufshcd_dme_enable - UIC command for DME_ENABLE
4274 * @hba: per adapter instance
4275 *
4276 * DME_ENABLE command is issued in order to enable UniPro stack.
4277 *
4278 * Return: 0 on success, non-zero value on failure.
4279 */
ufshcd_dme_enable(struct ufs_hba * hba)4280 int ufshcd_dme_enable(struct ufs_hba *hba)
4281 {
4282 struct uic_command uic_cmd = {
4283 .command = UIC_CMD_DME_ENABLE,
4284 };
4285 int ret;
4286
4287 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
4288 if (ret)
4289 dev_err(hba->dev,
4290 "dme-enable: error code %d\n", ret);
4291
4292 return ret;
4293 }
4294 EXPORT_SYMBOL_GPL(ufshcd_dme_enable);
4295
ufshcd_add_delay_before_dme_cmd(struct ufs_hba * hba)4296 static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba)
4297 {
4298 #define MIN_DELAY_BEFORE_DME_CMDS_US 1000
4299 unsigned long min_sleep_time_us;
4300
4301 if (!(hba->quirks & UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS))
4302 return;
4303
4304 /*
4305 * last_dme_cmd_tstamp will be 0 only for 1st call to
4306 * this function
4307 */
4308 if (unlikely(!ktime_to_us(hba->last_dme_cmd_tstamp))) {
4309 min_sleep_time_us = MIN_DELAY_BEFORE_DME_CMDS_US;
4310 } else {
4311 unsigned long delta =
4312 (unsigned long) ktime_to_us(
4313 ktime_sub(ktime_get(),
4314 hba->last_dme_cmd_tstamp));
4315
4316 if (delta < MIN_DELAY_BEFORE_DME_CMDS_US)
4317 min_sleep_time_us =
4318 MIN_DELAY_BEFORE_DME_CMDS_US - delta;
4319 else
4320 min_sleep_time_us = 0; /* no more delay required */
4321 }
4322
4323 if (min_sleep_time_us > 0) {
4324 /* allow sleep for extra 50us if needed */
4325 usleep_range(min_sleep_time_us, min_sleep_time_us + 50);
4326 }
4327
4328 /* update the last_dme_cmd_tstamp */
4329 hba->last_dme_cmd_tstamp = ktime_get();
4330 }
4331
4332 /**
4333 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
4334 * @hba: per adapter instance
4335 * @attr_sel: uic command argument1
4336 * @attr_set: attribute set type as uic command argument2
4337 * @mib_val: setting value as uic command argument3
4338 * @peer: indicate whether peer or local
4339 *
4340 * Return: 0 on success, non-zero value on failure.
4341 */
ufshcd_dme_set_attr(struct ufs_hba * hba,u32 attr_sel,u8 attr_set,u32 mib_val,u8 peer)4342 int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
4343 u8 attr_set, u32 mib_val, u8 peer)
4344 {
4345 struct uic_command uic_cmd = {
4346 .command = peer ? UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET,
4347 .argument1 = attr_sel,
4348 .argument2 = UIC_ARG_ATTR_TYPE(attr_set),
4349 .argument3 = mib_val,
4350 };
4351 static const char *const action[] = {
4352 "dme-set",
4353 "dme-peer-set"
4354 };
4355 const char *set = action[!!peer];
4356 int ret;
4357 int retries = UFS_UIC_COMMAND_RETRIES;
4358
4359 do {
4360 /* for peer attributes we retry upon failure */
4361 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
4362 if (ret)
4363 dev_dbg(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
4364 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
4365 } while (ret && peer && --retries);
4366
4367 if (ret)
4368 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x failed %d retries\n",
4369 set, UIC_GET_ATTR_ID(attr_sel), mib_val,
4370 UFS_UIC_COMMAND_RETRIES - retries);
4371
4372 return ret;
4373 }
4374 EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
4375
4376 /**
4377 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
4378 * @hba: per adapter instance
4379 * @attr_sel: uic command argument1
4380 * @mib_val: the value of the attribute as returned by the UIC command
4381 * @peer: indicate whether peer or local
4382 *
4383 * Return: 0 on success, non-zero value on failure.
4384 */
ufshcd_dme_get_attr(struct ufs_hba * hba,u32 attr_sel,u32 * mib_val,u8 peer)4385 int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
4386 u32 *mib_val, u8 peer)
4387 {
4388 struct uic_command uic_cmd = {
4389 .command = peer ? UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET,
4390 .argument1 = attr_sel,
4391 };
4392 static const char *const action[] = {
4393 "dme-get",
4394 "dme-peer-get"
4395 };
4396 const char *get = action[!!peer];
4397 int ret;
4398 int retries = UFS_UIC_COMMAND_RETRIES;
4399 struct ufs_pa_layer_attr orig_pwr_info;
4400 struct ufs_pa_layer_attr temp_pwr_info;
4401 bool pwr_mode_change = false;
4402
4403 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)) {
4404 orig_pwr_info = hba->pwr_info;
4405 temp_pwr_info = orig_pwr_info;
4406
4407 if (orig_pwr_info.pwr_tx == FAST_MODE ||
4408 orig_pwr_info.pwr_rx == FAST_MODE) {
4409 temp_pwr_info.pwr_tx = FASTAUTO_MODE;
4410 temp_pwr_info.pwr_rx = FASTAUTO_MODE;
4411 pwr_mode_change = true;
4412 } else if (orig_pwr_info.pwr_tx == SLOW_MODE ||
4413 orig_pwr_info.pwr_rx == SLOW_MODE) {
4414 temp_pwr_info.pwr_tx = SLOWAUTO_MODE;
4415 temp_pwr_info.pwr_rx = SLOWAUTO_MODE;
4416 pwr_mode_change = true;
4417 }
4418 if (pwr_mode_change) {
4419 ret = ufshcd_change_power_mode(hba, &temp_pwr_info,
4420 UFSHCD_PMC_POLICY_DONT_FORCE);
4421 if (ret)
4422 goto out;
4423 }
4424 }
4425
4426 do {
4427 /* for peer attributes we retry upon failure */
4428 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
4429 if (ret)
4430 dev_dbg(hba->dev, "%s: attr-id 0x%x error code %d\n",
4431 get, UIC_GET_ATTR_ID(attr_sel), ret);
4432 } while (ret && peer && --retries);
4433
4434 if (ret)
4435 dev_err(hba->dev, "%s: attr-id 0x%x failed %d retries\n",
4436 get, UIC_GET_ATTR_ID(attr_sel),
4437 UFS_UIC_COMMAND_RETRIES - retries);
4438
4439 if (mib_val)
4440 *mib_val = ret == 0 ? uic_cmd.argument3 : 0;
4441
4442 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)
4443 && pwr_mode_change)
4444 ufshcd_change_power_mode(hba, &orig_pwr_info,
4445 UFSHCD_PMC_POLICY_DONT_FORCE);
4446 out:
4447 return ret;
4448 }
4449 EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
4450
4451 /**
4452 * ufshcd_dme_rmw - get modify set a DME attribute
4453 * @hba: per adapter instance
4454 * @mask: indicates which bits to clear from the value that has been read
4455 * @val: actual value to write
4456 * @attr: dme attribute
4457 */
ufshcd_dme_rmw(struct ufs_hba * hba,u32 mask,u32 val,u32 attr)4458 int ufshcd_dme_rmw(struct ufs_hba *hba, u32 mask,
4459 u32 val, u32 attr)
4460 {
4461 u32 cfg = 0;
4462 int err;
4463
4464 err = ufshcd_dme_get(hba, UIC_ARG_MIB(attr), &cfg);
4465 if (err)
4466 return err;
4467
4468 cfg &= ~mask;
4469 cfg |= (val & mask);
4470
4471 return ufshcd_dme_set(hba, UIC_ARG_MIB(attr), cfg);
4472 }
4473 EXPORT_SYMBOL_GPL(ufshcd_dme_rmw);
4474
4475 /**
4476 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
4477 * state) and waits for it to take effect.
4478 *
4479 * @hba: per adapter instance
4480 * @cmd: UIC command to execute
4481 *
4482 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
4483 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
4484 * and device UniPro link and hence it's final completion would be indicated by
4485 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
4486 * addition to normal UIC command completion Status (UCCS). This function only
4487 * returns after the relevant status bits indicate the completion.
4488 *
4489 * Return: 0 on success, non-zero value on failure.
4490 */
ufshcd_uic_pwr_ctrl(struct ufs_hba * hba,struct uic_command * cmd)4491 static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
4492 {
4493 DECLARE_COMPLETION_ONSTACK(uic_async_done);
4494 unsigned long flags;
4495 u8 status;
4496 int ret;
4497
4498 mutex_lock(&hba->uic_cmd_mutex);
4499 ufshcd_add_delay_before_dme_cmd(hba);
4500
4501 spin_lock_irqsave(hba->host->host_lock, flags);
4502 if (ufshcd_is_link_broken(hba)) {
4503 ret = -ENOLINK;
4504 goto out_unlock;
4505 }
4506 hba->uic_async_done = &uic_async_done;
4507 ufshcd_disable_intr(hba, UIC_COMMAND_COMPL);
4508 spin_unlock_irqrestore(hba->host->host_lock, flags);
4509 ret = __ufshcd_send_uic_cmd(hba, cmd);
4510 if (ret) {
4511 dev_err(hba->dev,
4512 "pwr ctrl cmd 0x%x with (MIBattribute 0x%x, mode 0x%x) uic error %d\n",
4513 cmd->command, UIC_GET_ATTR_ID(cmd->argument1),
4514 cmd->argument3, ret);
4515 goto out;
4516 }
4517
4518 if (!wait_for_completion_timeout(hba->uic_async_done,
4519 msecs_to_jiffies(uic_cmd_timeout))) {
4520 dev_err(hba->dev,
4521 "pwr ctrl cmd 0x%x with (MIBattribute 0x%x, mode 0x%x) completion timeout\n",
4522 cmd->command, UIC_GET_ATTR_ID(cmd->argument1),
4523 cmd->argument3);
4524
4525 if (!cmd->cmd_active) {
4526 dev_err(hba->dev, "%s: Power Mode Change operation has been completed, go check UPMCRS\n",
4527 __func__);
4528 goto check_upmcrs;
4529 }
4530
4531 ret = -ETIMEDOUT;
4532 goto out;
4533 }
4534
4535 check_upmcrs:
4536 status = ufshcd_get_upmcrs(hba);
4537 if (status != PWR_LOCAL) {
4538 dev_err(hba->dev,
4539 "pwr ctrl cmd 0x%x with (MIBattribute 0x%x, mode 0x%x) failed, host upmcrs:0x%x\n",
4540 cmd->command, UIC_GET_ATTR_ID(cmd->argument1),
4541 cmd->argument3, status);
4542 ret = (status != PWR_OK) ? status : -1;
4543 }
4544 out:
4545 if (ret) {
4546 ufshcd_print_host_state(hba);
4547 ufshcd_print_pwr_info(hba);
4548 ufshcd_print_tx_eq_params(hba);
4549 ufshcd_print_evt_hist(hba);
4550 }
4551
4552 spin_lock_irqsave(hba->host->host_lock, flags);
4553 hba->active_uic_cmd = NULL;
4554 hba->uic_async_done = NULL;
4555 if (ret && !hba->pm_op_in_progress) {
4556 ufshcd_set_link_broken(hba);
4557 ufshcd_schedule_eh_work(hba);
4558 }
4559 out_unlock:
4560 spin_unlock_irqrestore(hba->host->host_lock, flags);
4561 mutex_unlock(&hba->uic_cmd_mutex);
4562
4563 return ret;
4564 }
4565
4566 /**
4567 * ufshcd_uic_tx_eqtr - Perform UIC TX Equalization Training
4568 * @hba: per adapter instance
4569 * @gear: target gear for EQTR
4570 *
4571 * Returns 0 on success, negative error code otherwise
4572 */
ufshcd_uic_tx_eqtr(struct ufs_hba * hba,int gear)4573 int ufshcd_uic_tx_eqtr(struct ufs_hba *hba, int gear)
4574 {
4575 struct uic_command uic_cmd = {
4576 .command = UIC_CMD_DME_SET,
4577 .argument1 = UIC_ARG_MIB(PA_EQTR_GEAR),
4578 .argument3 = gear,
4579 };
4580 int ret;
4581
4582 ufshcd_hold(hba);
4583 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
4584 ufshcd_release(hba);
4585
4586 return ret;
4587 }
4588
4589 /**
4590 * ufshcd_send_bsg_uic_cmd - Send UIC commands requested via BSG layer and retrieve the result
4591 * @hba: per adapter instance
4592 * @uic_cmd: UIC command
4593 *
4594 * Return: 0 only if success.
4595 */
ufshcd_send_bsg_uic_cmd(struct ufs_hba * hba,struct uic_command * uic_cmd)4596 int ufshcd_send_bsg_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
4597 {
4598 int ret;
4599
4600 if (uic_cmd->argument1 != UIC_ARG_MIB(PA_PWRMODE) ||
4601 uic_cmd->command != UIC_CMD_DME_SET)
4602 return ufshcd_send_uic_cmd(hba, uic_cmd);
4603
4604 if (hba->quirks & UFSHCD_QUIRK_BROKEN_UIC_CMD)
4605 return 0;
4606
4607 ufshcd_hold(hba);
4608 ret = ufshcd_uic_pwr_ctrl(hba, uic_cmd);
4609 ufshcd_release(hba);
4610
4611 return ret;
4612 }
4613
4614 /**
4615 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
4616 * using DME_SET primitives.
4617 * @hba: per adapter instance
4618 * @mode: powr mode value
4619 *
4620 * Return: 0 on success, non-zero value on failure.
4621 */
ufshcd_uic_change_pwr_mode(struct ufs_hba * hba,u8 mode)4622 int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
4623 {
4624 struct uic_command uic_cmd = {
4625 .command = UIC_CMD_DME_SET,
4626 .argument1 = UIC_ARG_MIB(PA_PWRMODE),
4627 .argument3 = mode,
4628 };
4629 int ret;
4630
4631 if (hba->quirks & UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP) {
4632 ret = ufshcd_dme_set(hba,
4633 UIC_ARG_MIB_SEL(PA_RXHSUNTERMCAP, 0), 1);
4634 if (ret) {
4635 dev_err(hba->dev, "%s: failed to enable PA_RXHSUNTERMCAP ret %d\n",
4636 __func__, ret);
4637 goto out;
4638 }
4639 }
4640
4641 ufshcd_hold(hba);
4642 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
4643 ufshcd_release(hba);
4644
4645 out:
4646 return ret;
4647 }
4648 EXPORT_SYMBOL_GPL(ufshcd_uic_change_pwr_mode);
4649
ufshcd_link_recovery(struct ufs_hba * hba)4650 int ufshcd_link_recovery(struct ufs_hba *hba)
4651 {
4652 int ret;
4653 unsigned long flags;
4654
4655 spin_lock_irqsave(hba->host->host_lock, flags);
4656 hba->ufshcd_state = UFSHCD_STATE_RESET;
4657 ufshcd_set_eh_in_progress(hba);
4658 spin_unlock_irqrestore(hba->host->host_lock, flags);
4659
4660 /* Reset the attached device */
4661 ufshcd_device_reset(hba);
4662
4663 ret = ufshcd_host_reset_and_restore(hba);
4664
4665 spin_lock_irqsave(hba->host->host_lock, flags);
4666 if (ret)
4667 hba->ufshcd_state = UFSHCD_STATE_ERROR;
4668 ufshcd_clear_eh_in_progress(hba);
4669 spin_unlock_irqrestore(hba->host->host_lock, flags);
4670
4671 if (ret)
4672 dev_err(hba->dev, "%s: link recovery failed, err %d",
4673 __func__, ret);
4674
4675 return ret;
4676 }
4677 EXPORT_SYMBOL_GPL(ufshcd_link_recovery);
4678
ufshcd_uic_hibern8_enter(struct ufs_hba * hba)4679 int ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
4680 {
4681 struct uic_command uic_cmd = {
4682 .command = UIC_CMD_DME_HIBER_ENTER,
4683 };
4684 ktime_t start = ktime_get();
4685 int ret;
4686
4687 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_ENTER, PRE_CHANGE);
4688
4689 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
4690 trace_ufshcd_profile_hibern8(hba, "enter",
4691 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
4692
4693 if (ret)
4694 dev_err(hba->dev, "%s: hibern8 enter failed. ret = %d\n",
4695 __func__, ret);
4696 else
4697 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_ENTER,
4698 POST_CHANGE);
4699
4700 return ret;
4701 }
4702 EXPORT_SYMBOL_GPL(ufshcd_uic_hibern8_enter);
4703
ufshcd_uic_hibern8_exit(struct ufs_hba * hba)4704 int ufshcd_uic_hibern8_exit(struct ufs_hba *hba)
4705 {
4706 struct uic_command uic_cmd = {
4707 .command = UIC_CMD_DME_HIBER_EXIT,
4708 };
4709 int ret;
4710 ktime_t start = ktime_get();
4711
4712 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_EXIT, PRE_CHANGE);
4713
4714 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
4715 trace_ufshcd_profile_hibern8(hba, "exit",
4716 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
4717
4718 if (ret) {
4719 dev_err(hba->dev, "%s: hibern8 exit failed. ret = %d\n",
4720 __func__, ret);
4721 } else {
4722 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_EXIT,
4723 POST_CHANGE);
4724 hba->ufs_stats.last_hibern8_exit_tstamp = local_clock();
4725 hba->ufs_stats.hibern8_exit_cnt++;
4726 }
4727
4728 return ret;
4729 }
4730 EXPORT_SYMBOL_GPL(ufshcd_uic_hibern8_exit);
4731
ufshcd_configure_auto_hibern8(struct ufs_hba * hba)4732 static void ufshcd_configure_auto_hibern8(struct ufs_hba *hba)
4733 {
4734 if (!ufshcd_is_auto_hibern8_supported(hba))
4735 return;
4736
4737 ufshcd_writel(hba, hba->ahit, REG_AUTO_HIBERNATE_IDLE_TIMER);
4738 }
4739
ufshcd_auto_hibern8_update(struct ufs_hba * hba,u32 ahit)4740 void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit)
4741 {
4742 const u32 cur_ahit = READ_ONCE(hba->ahit);
4743
4744 if (!ufshcd_is_auto_hibern8_supported(hba) || cur_ahit == ahit)
4745 return;
4746
4747 WRITE_ONCE(hba->ahit, ahit);
4748 if (!pm_runtime_suspended(&hba->ufs_device_wlun->sdev_gendev)) {
4749 ufshcd_rpm_get_sync(hba);
4750 ufshcd_hold(hba);
4751 ufshcd_configure_auto_hibern8(hba);
4752 ufshcd_release(hba);
4753 ufshcd_rpm_put_sync(hba);
4754 }
4755 }
4756 EXPORT_SYMBOL_GPL(ufshcd_auto_hibern8_update);
4757
4758 /**
4759 * ufshcd_init_pwr_info - setting the POR (power on reset)
4760 * values in hba power info
4761 * @hba: per-adapter instance
4762 */
ufshcd_init_pwr_info(struct ufs_hba * hba)4763 static void ufshcd_init_pwr_info(struct ufs_hba *hba)
4764 {
4765 hba->pwr_info.gear_rx = UFS_PWM_G1;
4766 hba->pwr_info.gear_tx = UFS_PWM_G1;
4767 hba->pwr_info.lane_rx = UFS_LANE_1;
4768 hba->pwr_info.lane_tx = UFS_LANE_1;
4769 hba->pwr_info.pwr_rx = SLOWAUTO_MODE;
4770 hba->pwr_info.pwr_tx = SLOWAUTO_MODE;
4771 hba->pwr_info.hs_rate = 0;
4772 }
4773
4774 /**
4775 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
4776 * @hba: per-adapter instance
4777 *
4778 * Return: 0 upon success; < 0 upon failure.
4779 */
ufshcd_get_max_pwr_mode(struct ufs_hba * hba)4780 static int ufshcd_get_max_pwr_mode(struct ufs_hba *hba)
4781 {
4782 struct ufs_pa_layer_attr *pwr_info = &hba->max_pwr_info.info;
4783
4784 if (hba->max_pwr_info.is_valid)
4785 return 0;
4786
4787 if (hba->quirks & UFSHCD_QUIRK_HIBERN_FASTAUTO) {
4788 pwr_info->pwr_tx = FASTAUTO_MODE;
4789 pwr_info->pwr_rx = FASTAUTO_MODE;
4790 } else {
4791 pwr_info->pwr_tx = FAST_MODE;
4792 pwr_info->pwr_rx = FAST_MODE;
4793 }
4794 pwr_info->hs_rate = PA_HS_MODE_B;
4795
4796 /* Get the connected lane count */
4797 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
4798 &pwr_info->lane_rx);
4799 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
4800 &pwr_info->lane_tx);
4801
4802 if (!pwr_info->lane_rx || !pwr_info->lane_tx ||
4803 pwr_info->lane_rx > UFS_MAX_LANES ||
4804 pwr_info->lane_tx > UFS_MAX_LANES) {
4805 dev_err(hba->dev, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
4806 __func__,
4807 pwr_info->lane_rx,
4808 pwr_info->lane_tx);
4809 return -EINVAL;
4810 }
4811
4812 if (pwr_info->lane_rx != pwr_info->lane_tx) {
4813 dev_err(hba->dev, "%s: asymmetric connected lanes. rx=%d, tx=%d\n",
4814 __func__,
4815 pwr_info->lane_rx,
4816 pwr_info->lane_tx);
4817 return -EINVAL;
4818 }
4819
4820 /*
4821 * First, get the maximum gears of HS speed.
4822 * If a zero value, it means there is no HSGEAR capability.
4823 * Then, get the maximum gears of PWM speed.
4824 */
4825 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &pwr_info->gear_rx);
4826 if (!pwr_info->gear_rx) {
4827 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
4828 &pwr_info->gear_rx);
4829 if (!pwr_info->gear_rx) {
4830 dev_err(hba->dev, "%s: invalid max pwm rx gear read = %d\n",
4831 __func__, pwr_info->gear_rx);
4832 return -EINVAL;
4833 }
4834 pwr_info->pwr_rx = SLOW_MODE;
4835 }
4836
4837 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR),
4838 &pwr_info->gear_tx);
4839 if (!pwr_info->gear_tx) {
4840 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
4841 &pwr_info->gear_tx);
4842 if (!pwr_info->gear_tx) {
4843 dev_err(hba->dev, "%s: invalid max pwm tx gear read = %d\n",
4844 __func__, pwr_info->gear_tx);
4845 return -EINVAL;
4846 }
4847 pwr_info->pwr_tx = SLOW_MODE;
4848 }
4849
4850 hba->max_pwr_info.is_valid = true;
4851 return 0;
4852 }
4853
4854 /**
4855 * ufshcd_dme_change_power_mode() - UniPro DME Power Mode change sequence
4856 * @hba: per-adapter instance
4857 * @pwr_mode: pointer to the target power mode (gear/lane) attributes
4858 * @pmc_policy: Power Mode change policy
4859 *
4860 * This function handles the low-level DME (Device Management Entity)
4861 * configuration required to transition the UFS link to a new power mode. It
4862 * performs the following steps:
4863 * 1. Checks if the requested mode matches the current state.
4864 * 2. Sets M-PHY and UniPro attributes including Gear (PA_RXGEAR/TXGEAR),
4865 * Lanes, Termination, and HS Series (PA_HSSERIES).
4866 * 3. Configures default UniPro timeout values (DL_FC0, etc.) unless
4867 * explicitly skipped via quirks.
4868 * 4. Triggers the actual hardware mode change via ufshcd_uic_change_pwr_mode().
4869 * 5. Updates the HBA's cached power information on success.
4870 *
4871 * Return: 0 on success, non-zero error code on failure.
4872 */
ufshcd_dme_change_power_mode(struct ufs_hba * hba,struct ufs_pa_layer_attr * pwr_mode,enum ufshcd_pmc_policy pmc_policy)4873 static int ufshcd_dme_change_power_mode(struct ufs_hba *hba,
4874 struct ufs_pa_layer_attr *pwr_mode,
4875 enum ufshcd_pmc_policy pmc_policy)
4876 {
4877 int ret;
4878
4879 /* if already configured to the requested pwr_mode */
4880 if (pmc_policy == UFSHCD_PMC_POLICY_DONT_FORCE &&
4881 pwr_mode->gear_rx == hba->pwr_info.gear_rx &&
4882 pwr_mode->gear_tx == hba->pwr_info.gear_tx &&
4883 pwr_mode->lane_rx == hba->pwr_info.lane_rx &&
4884 pwr_mode->lane_tx == hba->pwr_info.lane_tx &&
4885 pwr_mode->pwr_rx == hba->pwr_info.pwr_rx &&
4886 pwr_mode->pwr_tx == hba->pwr_info.pwr_tx &&
4887 pwr_mode->hs_rate == hba->pwr_info.hs_rate) {
4888 dev_dbg(hba->dev, "%s: power already configured\n", __func__);
4889 return 0;
4890 }
4891
4892 /*
4893 * Configure attributes for power mode change with below.
4894 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
4895 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
4896 * - PA_HSSERIES
4897 */
4898 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), pwr_mode->gear_rx);
4899 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES),
4900 pwr_mode->lane_rx);
4901 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
4902 pwr_mode->pwr_rx == FAST_MODE)
4903 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), true);
4904 else
4905 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), false);
4906
4907 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), pwr_mode->gear_tx);
4908 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES),
4909 pwr_mode->lane_tx);
4910 if (pwr_mode->pwr_tx == FASTAUTO_MODE ||
4911 pwr_mode->pwr_tx == FAST_MODE)
4912 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), true);
4913 else
4914 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), false);
4915
4916 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
4917 pwr_mode->pwr_tx == FASTAUTO_MODE ||
4918 pwr_mode->pwr_rx == FAST_MODE ||
4919 pwr_mode->pwr_tx == FAST_MODE)
4920 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES),
4921 pwr_mode->hs_rate);
4922
4923 if (!(hba->quirks & UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING)) {
4924 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA0),
4925 DL_FC0ProtectionTimeOutVal_Default);
4926 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA1),
4927 DL_TC0ReplayTimeOutVal_Default);
4928 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA2),
4929 DL_AFC0ReqTimeOutVal_Default);
4930 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA3),
4931 DL_FC1ProtectionTimeOutVal_Default);
4932 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA4),
4933 DL_TC1ReplayTimeOutVal_Default);
4934 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA5),
4935 DL_AFC1ReqTimeOutVal_Default);
4936
4937 ufshcd_dme_set(hba, UIC_ARG_MIB(DME_LocalFC0ProtectionTimeOutVal),
4938 DL_FC0ProtectionTimeOutVal_Default);
4939 ufshcd_dme_set(hba, UIC_ARG_MIB(DME_LocalTC0ReplayTimeOutVal),
4940 DL_TC0ReplayTimeOutVal_Default);
4941 ufshcd_dme_set(hba, UIC_ARG_MIB(DME_LocalAFC0ReqTimeOutVal),
4942 DL_AFC0ReqTimeOutVal_Default);
4943 }
4944
4945 ret = ufshcd_uic_change_pwr_mode(hba, pwr_mode->pwr_rx << 4
4946 | pwr_mode->pwr_tx);
4947
4948 if (ret) {
4949 dev_err(hba->dev,
4950 "%s: power mode change failed %d\n", __func__, ret);
4951 } else {
4952 memcpy(&hba->pwr_info, pwr_mode,
4953 sizeof(struct ufs_pa_layer_attr));
4954 }
4955
4956 return ret;
4957 }
4958
4959 /**
4960 * ufshcd_change_power_mode() - Change UFS Link Power Mode
4961 * @hba: per-adapter instance
4962 * @pwr_mode: pointer to the target power mode (gear/lane) attributes
4963 * @pmc_policy: Power Mode change policy
4964 *
4965 * This function handles the high-level sequence for changing the UFS link
4966 * power mode. It triggers vendor-specific pre-change notification,
4967 * executes the DME (Device Management Entity) power mode change sequence,
4968 * and, upon success, triggers vendor-specific post-change notification.
4969 *
4970 * Return: 0 on success, non-zero error code on failure.
4971 */
ufshcd_change_power_mode(struct ufs_hba * hba,struct ufs_pa_layer_attr * pwr_mode,enum ufshcd_pmc_policy pmc_policy)4972 int ufshcd_change_power_mode(struct ufs_hba *hba,
4973 struct ufs_pa_layer_attr *pwr_mode,
4974 enum ufshcd_pmc_policy pmc_policy)
4975 {
4976 int ret;
4977
4978 ufshcd_vops_pwr_change_notify(hba, PRE_CHANGE, pwr_mode);
4979
4980 ret = ufshcd_dme_change_power_mode(hba, pwr_mode, pmc_policy);
4981
4982 if (!ret)
4983 ufshcd_vops_pwr_change_notify(hba, POST_CHANGE, pwr_mode);
4984
4985 return ret;
4986 }
4987 EXPORT_SYMBOL_GPL(ufshcd_change_power_mode);
4988
4989 /**
4990 * ufshcd_config_pwr_mode - configure a new power mode
4991 * @hba: per-adapter instance
4992 * @desired_pwr_mode: desired power configuration
4993 * @pmc_policy: Power Mode change policy
4994 *
4995 * Return: 0 upon success; < 0 upon failure.
4996 */
ufshcd_config_pwr_mode(struct ufs_hba * hba,struct ufs_pa_layer_attr * desired_pwr_mode,enum ufshcd_pmc_policy pmc_policy)4997 int ufshcd_config_pwr_mode(struct ufs_hba *hba,
4998 struct ufs_pa_layer_attr *desired_pwr_mode,
4999 enum ufshcd_pmc_policy pmc_policy)
5000 {
5001 struct ufs_pa_layer_attr final_params = { 0 };
5002 int ret;
5003
5004 ret = ufshcd_vops_negotiate_pwr_mode(hba, desired_pwr_mode,
5005 &final_params);
5006 if (ret) {
5007 if (ret != -ENOTSUPP)
5008 dev_err(hba->dev, "Failed to negotiate power mode: %d, use desired as is\n",
5009 ret);
5010
5011 memcpy(&final_params, desired_pwr_mode, sizeof(final_params));
5012 }
5013
5014 ret = ufshcd_config_tx_eq_settings(hba, &final_params, false);
5015 if (ret)
5016 dev_warn(hba->dev, "Failed to configure TX Equalization for HS-G%u, Rate-%s: %d\n",
5017 final_params.gear_tx,
5018 ufs_hs_rate_to_str(final_params.hs_rate), ret);
5019
5020 return ufshcd_change_power_mode(hba, &final_params, pmc_policy);
5021 }
5022 EXPORT_SYMBOL_GPL(ufshcd_config_pwr_mode);
5023
5024 /**
5025 * ufshcd_complete_dev_init() - checks device readiness
5026 * @hba: per-adapter instance
5027 *
5028 * Set fDeviceInit flag and poll until device toggles it.
5029 *
5030 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
5031 * < 0 if another error occurred.
5032 */
ufshcd_complete_dev_init(struct ufs_hba * hba)5033 static int ufshcd_complete_dev_init(struct ufs_hba *hba)
5034 {
5035 int err;
5036 bool flag_res = true;
5037 ktime_t timeout;
5038
5039 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
5040 QUERY_FLAG_IDN_FDEVICEINIT, 0, NULL);
5041 if (err) {
5042 dev_err(hba->dev,
5043 "%s: setting fDeviceInit flag failed with error %d\n",
5044 __func__, err);
5045 goto out;
5046 }
5047
5048 /* Poll fDeviceInit flag to be cleared */
5049 timeout = ktime_add_ms(ktime_get(), FDEVICEINIT_COMPL_TIMEOUT);
5050 do {
5051 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_READ_FLAG,
5052 QUERY_FLAG_IDN_FDEVICEINIT, 0, &flag_res);
5053 if (!flag_res)
5054 break;
5055 usleep_range(500, 1000);
5056 } while (ktime_before(ktime_get(), timeout));
5057
5058 if (err) {
5059 dev_err(hba->dev,
5060 "%s: reading fDeviceInit flag failed with error %d\n",
5061 __func__, err);
5062 } else if (flag_res) {
5063 dev_err(hba->dev,
5064 "%s: fDeviceInit was not cleared by the device\n",
5065 __func__);
5066 err = -EBUSY;
5067 }
5068 out:
5069 return err;
5070 }
5071
5072 /**
5073 * ufshcd_make_hba_operational - Make UFS controller operational
5074 * @hba: per adapter instance
5075 *
5076 * To bring UFS host controller to operational state,
5077 * 1. Enable required interrupts
5078 * 2. Configure interrupt aggregation
5079 * 3. Program UTRL and UTMRL base address
5080 * 4. Configure run-stop-registers
5081 *
5082 * Return: 0 if successful; < 0 upon failure.
5083 */
ufshcd_make_hba_operational(struct ufs_hba * hba)5084 int ufshcd_make_hba_operational(struct ufs_hba *hba)
5085 {
5086 int err = 0;
5087 u32 reg;
5088
5089 /* Enable required interrupts */
5090 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
5091
5092 /* Configure interrupt aggregation */
5093 if (ufshcd_is_intr_aggr_allowed(hba))
5094 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
5095 else
5096 ufshcd_disable_intr_aggr(hba);
5097
5098 /* Configure UTRL and UTMRL base address registers */
5099 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
5100 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
5101 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
5102 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
5103 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
5104 REG_UTP_TASK_REQ_LIST_BASE_L);
5105 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
5106 REG_UTP_TASK_REQ_LIST_BASE_H);
5107
5108 /*
5109 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
5110 */
5111 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
5112 if (!(ufshcd_get_lists_status(reg))) {
5113 ufshcd_enable_run_stop_reg(hba);
5114 } else {
5115 dev_err(hba->dev,
5116 "Host controller not ready to process requests");
5117 err = -EIO;
5118 }
5119
5120 return err;
5121 }
5122 EXPORT_SYMBOL_GPL(ufshcd_make_hba_operational);
5123
5124 /**
5125 * ufshcd_hba_stop - Send controller to reset state
5126 * @hba: per adapter instance
5127 */
ufshcd_hba_stop(struct ufs_hba * hba)5128 void ufshcd_hba_stop(struct ufs_hba *hba)
5129 {
5130 int err;
5131
5132 ufshcd_disable_irq(hba);
5133 ufshcd_writel(hba, CONTROLLER_DISABLE, REG_CONTROLLER_ENABLE);
5134 err = ufshcd_wait_for_register(hba, REG_CONTROLLER_ENABLE,
5135 CONTROLLER_ENABLE, CONTROLLER_DISABLE,
5136 10, 1);
5137 ufshcd_enable_irq(hba);
5138 if (err)
5139 dev_err(hba->dev, "%s: Controller disable failed\n", __func__);
5140 }
5141 EXPORT_SYMBOL_GPL(ufshcd_hba_stop);
5142
5143 /**
5144 * ufshcd_hba_execute_hce - initialize the controller
5145 * @hba: per adapter instance
5146 *
5147 * The controller resets itself and controller firmware initialization
5148 * sequence kicks off. When controller is ready it will set
5149 * the Host Controller Enable bit to 1.
5150 *
5151 * Return: 0 on success, non-zero value on failure.
5152 */
ufshcd_hba_execute_hce(struct ufs_hba * hba)5153 static int ufshcd_hba_execute_hce(struct ufs_hba *hba)
5154 {
5155 int retry;
5156
5157 for (retry = 3; retry > 0; retry--) {
5158 if (ufshcd_is_hba_active(hba))
5159 /* change controller state to "reset state" */
5160 ufshcd_hba_stop(hba);
5161
5162 /* UniPro link is disabled at this point */
5163 ufshcd_set_link_off(hba);
5164
5165 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
5166
5167 /* start controller initialization sequence */
5168 ufshcd_hba_start(hba);
5169
5170 /*
5171 * To initialize a UFS host controller HCE bit must be set to 1.
5172 * During initialization the HCE bit value changes from 1->0->1.
5173 * When the host controller completes initialization sequence
5174 * it sets the value of HCE bit to 1. The same HCE bit is read back
5175 * to check if the controller has completed initialization sequence.
5176 * So without this delay the value HCE = 1, set in the previous
5177 * instruction might be read back.
5178 * This delay can be changed based on the controller.
5179 */
5180 ufshcd_delay_us(hba->vps->hba_enable_delay_us, 100);
5181
5182 /* wait for the host controller to complete initialization */
5183 if (!ufshcd_wait_for_register(hba, REG_CONTROLLER_ENABLE, CONTROLLER_ENABLE,
5184 CONTROLLER_ENABLE, 1000, 50))
5185 break;
5186
5187 dev_err(hba->dev, "Enabling the controller failed\n");
5188 }
5189
5190 if (!retry)
5191 return -EIO;
5192
5193 /* enable UIC related interrupts */
5194 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
5195
5196 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
5197
5198 return 0;
5199 }
5200
ufshcd_hba_enable(struct ufs_hba * hba)5201 int ufshcd_hba_enable(struct ufs_hba *hba)
5202 {
5203 int ret;
5204
5205 if (hba->quirks & UFSHCI_QUIRK_BROKEN_HCE) {
5206 ufshcd_set_link_off(hba);
5207 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
5208
5209 /* enable UIC related interrupts */
5210 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
5211 ret = ufshcd_dme_reset(hba);
5212 if (ret) {
5213 dev_err(hba->dev, "DME_RESET failed\n");
5214 return ret;
5215 }
5216
5217 ret = ufshcd_dme_enable(hba);
5218 if (ret) {
5219 dev_err(hba->dev, "Enabling DME failed\n");
5220 return ret;
5221 }
5222
5223 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
5224 } else {
5225 ret = ufshcd_hba_execute_hce(hba);
5226 }
5227
5228 return ret;
5229 }
5230 EXPORT_SYMBOL_GPL(ufshcd_hba_enable);
5231
ufshcd_disable_tx_lcc(struct ufs_hba * hba,bool peer)5232 static int ufshcd_disable_tx_lcc(struct ufs_hba *hba, bool peer)
5233 {
5234 int tx_lanes, i, err = 0;
5235
5236 if (!peer)
5237 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
5238 &tx_lanes);
5239 else
5240 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
5241 &tx_lanes);
5242 for (i = 0; i < tx_lanes; i++) {
5243 if (!peer)
5244 err = ufshcd_dme_set(hba,
5245 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
5246 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
5247 0);
5248 else
5249 err = ufshcd_dme_peer_set(hba,
5250 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
5251 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
5252 0);
5253 if (err) {
5254 dev_err(hba->dev, "%s: TX LCC Disable failed, peer = %d, lane = %d, err = %d",
5255 __func__, peer, i, err);
5256 break;
5257 }
5258 }
5259
5260 return err;
5261 }
5262
ufshcd_disable_device_tx_lcc(struct ufs_hba * hba)5263 static inline int ufshcd_disable_device_tx_lcc(struct ufs_hba *hba)
5264 {
5265 return ufshcd_disable_tx_lcc(hba, true);
5266 }
5267
ufshcd_update_evt_hist(struct ufs_hba * hba,u32 id,u32 val)5268 void ufshcd_update_evt_hist(struct ufs_hba *hba, u32 id, u32 val)
5269 {
5270 struct ufs_event_hist *e;
5271
5272 if (id >= UFS_EVT_CNT)
5273 return;
5274
5275 e = &hba->ufs_stats.event[id];
5276 e->val[e->pos] = val;
5277 e->tstamp[e->pos] = local_clock();
5278 e->cnt += 1;
5279 e->pos = (e->pos + 1) % UFS_EVENT_HIST_LENGTH;
5280
5281 ufshcd_vops_event_notify(hba, id, &val);
5282 }
5283 EXPORT_SYMBOL_GPL(ufshcd_update_evt_hist);
5284
ufshcd_validate_link_params(struct ufs_hba * hba)5285 static int ufshcd_validate_link_params(struct ufs_hba *hba)
5286 {
5287 int ret, val;
5288
5289 /*
5290 * lanes_per_direction is only populated by the platform glue (it
5291 * defaults to 2 or is read from the "lanes-per-direction" devicetree
5292 * property). Controllers probed via ufshcd-pci leave it unset (0), in
5293 * which case there is no expected lane count to validate the connected
5294 * lanes against. Skip the check instead of failing link startup.
5295 */
5296 if (!hba->lanes_per_direction)
5297 return 0;
5298
5299 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
5300 &val);
5301 if (ret)
5302 return ret;
5303
5304 if (val != hba->lanes_per_direction) {
5305 dev_err(hba->dev, "Tx lane mismatch [config,reported] [%d,%d]\n",
5306 hba->lanes_per_direction, val);
5307 return -ENOLINK;
5308 }
5309
5310 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
5311 &val);
5312 if (ret)
5313 return ret;
5314
5315 if (val != hba->lanes_per_direction) {
5316 dev_err(hba->dev, "Rx lane mismatch [config,reported] [%d,%d]\n",
5317 hba->lanes_per_direction, val);
5318 return -ENOLINK;
5319 }
5320
5321 return 0;
5322 }
5323
5324 /**
5325 * ufshcd_link_startup - Initialize unipro link startup
5326 * @hba: per adapter instance
5327 *
5328 * Return: 0 for success, non-zero in case of failure.
5329 */
ufshcd_link_startup(struct ufs_hba * hba)5330 static int ufshcd_link_startup(struct ufs_hba *hba)
5331 {
5332 int ret;
5333 int retries = DME_LINKSTARTUP_RETRIES;
5334 bool link_startup_again = false;
5335
5336 /*
5337 * If UFS device isn't active then we will have to issue link startup
5338 * 2 times to make sure the device state move to active.
5339 */
5340 if (!(hba->quirks & UFSHCD_QUIRK_PERFORM_LINK_STARTUP_ONCE) &&
5341 !ufshcd_is_ufs_dev_active(hba))
5342 link_startup_again = true;
5343
5344 link_startup:
5345 do {
5346 ufshcd_vops_link_startup_notify(hba, PRE_CHANGE);
5347
5348 ret = ufshcd_dme_link_startup(hba);
5349
5350 /* check if device is detected by inter-connect layer */
5351 if (!ret && !ufshcd_is_device_present(hba)) {
5352 ufshcd_update_evt_hist(hba,
5353 UFS_EVT_LINK_STARTUP_FAIL,
5354 0);
5355 dev_err(hba->dev, "%s: Device not present\n", __func__);
5356 ret = -ENXIO;
5357 goto out;
5358 }
5359
5360 /*
5361 * DME link lost indication is only received when link is up,
5362 * but we can't be sure if the link is up until link startup
5363 * succeeds. So reset the local Uni-Pro and try again.
5364 */
5365 if (ret && retries && ufshcd_hba_enable(hba)) {
5366 ufshcd_update_evt_hist(hba,
5367 UFS_EVT_LINK_STARTUP_FAIL,
5368 (u32)ret);
5369 goto out;
5370 }
5371 } while (ret && retries--);
5372
5373 if (ret) {
5374 /* failed to get the link up... retire */
5375 ufshcd_update_evt_hist(hba,
5376 UFS_EVT_LINK_STARTUP_FAIL,
5377 (u32)ret);
5378 goto out;
5379 }
5380
5381 if (link_startup_again) {
5382 link_startup_again = false;
5383 retries = DME_LINKSTARTUP_RETRIES;
5384 goto link_startup;
5385 }
5386
5387 /* Mark that link is up in PWM-G1, 1-lane, SLOW-AUTO mode */
5388 ufshcd_init_pwr_info(hba);
5389 ufshcd_print_pwr_info(hba);
5390
5391 if (hba->quirks & UFSHCD_QUIRK_BROKEN_LCC) {
5392 ret = ufshcd_disable_device_tx_lcc(hba);
5393 if (ret)
5394 goto out;
5395 }
5396
5397 ret = ufshcd_validate_link_params(hba);
5398 if (ret)
5399 goto out;
5400
5401 /* Include any host controller configuration via UIC commands */
5402 ret = ufshcd_vops_link_startup_notify(hba, POST_CHANGE);
5403 if (ret)
5404 goto out;
5405
5406 /* Clear UECPA once due to LINERESET has happened during LINK_STARTUP */
5407 ufshcd_readl(hba, REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER);
5408 ret = ufshcd_make_hba_operational(hba);
5409 out:
5410 if (ret)
5411 dev_err(hba->dev, "link startup failed %d\n", ret);
5412 return ret;
5413 }
5414
5415 /**
5416 * ufshcd_verify_dev_init() - Verify device initialization
5417 * @hba: per-adapter instance
5418 *
5419 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
5420 * device Transport Protocol (UTP) layer is ready after a reset.
5421 * If the UTP layer at the device side is not initialized, it may
5422 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
5423 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
5424 *
5425 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
5426 * < 0 if another error occurred.
5427 */
ufshcd_verify_dev_init(struct ufs_hba * hba)5428 static int ufshcd_verify_dev_init(struct ufs_hba *hba)
5429 {
5430 int err = 0;
5431 int retries;
5432
5433 ufshcd_dev_man_lock(hba);
5434
5435 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
5436 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
5437 hba->nop_out_timeout);
5438
5439 if (!err || err == -ETIMEDOUT)
5440 break;
5441
5442 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
5443 }
5444
5445 ufshcd_dev_man_unlock(hba);
5446
5447 if (err)
5448 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
5449 return err;
5450 }
5451
5452 /**
5453 * ufshcd_setup_links - associate link b/w device wlun and other luns
5454 * @sdev: pointer to SCSI device
5455 * @hba: pointer to ufs hba
5456 */
ufshcd_setup_links(struct ufs_hba * hba,struct scsi_device * sdev)5457 static void ufshcd_setup_links(struct ufs_hba *hba, struct scsi_device *sdev)
5458 {
5459 struct device_link *link;
5460
5461 /*
5462 * Device wlun is the supplier & rest of the luns are consumers.
5463 * This ensures that device wlun suspends after all other luns.
5464 */
5465 if (hba->ufs_device_wlun) {
5466 link = device_link_add(&sdev->sdev_gendev,
5467 &hba->ufs_device_wlun->sdev_gendev,
5468 DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE);
5469 if (!link) {
5470 dev_err(&sdev->sdev_gendev, "Failed establishing link - %s\n",
5471 dev_name(&hba->ufs_device_wlun->sdev_gendev));
5472 return;
5473 }
5474 hba->luns_avail--;
5475 /* Ignore REPORT_LUN wlun probing */
5476 if (hba->luns_avail == 1) {
5477 ufshcd_rpm_put(hba);
5478 return;
5479 }
5480 } else {
5481 /*
5482 * Device wlun is probed. The assumption is that WLUNs are
5483 * scanned before other LUNs.
5484 */
5485 hba->luns_avail--;
5486 }
5487 }
5488
5489 /**
5490 * ufshcd_lu_init - Initialize the relevant parameters of the LU
5491 * @hba: per-adapter instance
5492 * @sdev: pointer to SCSI device
5493 */
ufshcd_lu_init(struct ufs_hba * hba,struct scsi_device * sdev)5494 static void ufshcd_lu_init(struct ufs_hba *hba, struct scsi_device *sdev)
5495 {
5496 int len = QUERY_DESC_MAX_SIZE;
5497 u8 lun = ufshcd_scsi_to_upiu_lun(sdev->lun);
5498 u8 lun_qdepth = hba->nutrs;
5499 u8 *desc_buf;
5500 int ret;
5501
5502 desc_buf = kzalloc(len, GFP_KERNEL);
5503 if (!desc_buf)
5504 goto set_qdepth;
5505
5506 ret = ufshcd_read_unit_desc_param(hba, lun, 0, desc_buf, len);
5507 if (ret < 0) {
5508 if (ret == -EOPNOTSUPP)
5509 /* If LU doesn't support unit descriptor, its queue depth is set to 1 */
5510 lun_qdepth = 1;
5511 kfree(desc_buf);
5512 goto set_qdepth;
5513 }
5514
5515 if (desc_buf[UNIT_DESC_PARAM_LU_Q_DEPTH]) {
5516 /*
5517 * In per-LU queueing architecture, bLUQueueDepth will not be 0, then we will
5518 * use the smaller between UFSHCI CAP.NUTRS and UFS LU bLUQueueDepth
5519 */
5520 lun_qdepth = min_t(int, desc_buf[UNIT_DESC_PARAM_LU_Q_DEPTH], hba->nutrs);
5521 }
5522 /*
5523 * According to UFS device specification, the write protection mode is only supported by
5524 * normal LU, not supported by WLUN.
5525 */
5526 if (hba->dev_info.f_power_on_wp_en && lun < hba->dev_info.max_lu_supported &&
5527 !hba->dev_info.is_lu_power_on_wp &&
5528 desc_buf[UNIT_DESC_PARAM_LU_WR_PROTECT] == UFS_LU_POWER_ON_WP)
5529 hba->dev_info.is_lu_power_on_wp = true;
5530
5531 /* In case of RPMB LU, check if advanced RPMB mode is enabled, and get region size */
5532 if (desc_buf[UNIT_DESC_PARAM_UNIT_INDEX] == UFS_UPIU_RPMB_WLUN) {
5533 if (desc_buf[RPMB_UNIT_DESC_PARAM_REGION_EN] & BIT(4))
5534 hba->dev_info.b_advanced_rpmb_en = true;
5535 hba->dev_info.rpmb_region_size[0] = desc_buf[RPMB_UNIT_DESC_PARAM_REGION0_SIZE];
5536 hba->dev_info.rpmb_region_size[1] = desc_buf[RPMB_UNIT_DESC_PARAM_REGION1_SIZE];
5537 hba->dev_info.rpmb_region_size[2] = desc_buf[RPMB_UNIT_DESC_PARAM_REGION2_SIZE];
5538 hba->dev_info.rpmb_region_size[3] = desc_buf[RPMB_UNIT_DESC_PARAM_REGION3_SIZE];
5539
5540 if (hba->dev_info.wspecversion <= 0x0220) {
5541 /*
5542 * These older spec chips have only one RPMB region,
5543 * sized between 128 kB minimum and 16 MB maximum.
5544 * No per region size fields are provided (respective
5545 * REGIONX_SIZE fields always contain zeros), so get
5546 * it from the logical block count and size fields for
5547 * compatibility
5548 *
5549 * (See JESD220C-2_2 Section 14.1.4.6
5550 * RPMB Unit Descriptor,* offset 13h, 4 bytes)
5551 */
5552 hba->dev_info.rpmb_region_size[0] =
5553 (get_unaligned_be64(desc_buf
5554 + RPMB_UNIT_DESC_PARAM_LOGICAL_BLK_COUNT)
5555 << desc_buf[RPMB_UNIT_DESC_PARAM_LOGICAL_BLK_SIZE])
5556 / SZ_128K;
5557 }
5558 }
5559
5560
5561 kfree(desc_buf);
5562 set_qdepth:
5563 /*
5564 * For WLUNs that don't support unit descriptor, queue depth is set to 1. For LUs whose
5565 * bLUQueueDepth == 0, the queue depth is set to a maximum value that host can queue.
5566 */
5567 dev_dbg(hba->dev, "Set LU %x queue depth %d\n", lun, lun_qdepth);
5568 scsi_change_queue_depth(sdev, lun_qdepth);
5569 }
5570
5571 /**
5572 * ufshcd_sdev_init - handle initial SCSI device configurations
5573 * @sdev: pointer to SCSI device
5574 *
5575 * Return: success.
5576 */
ufshcd_sdev_init(struct scsi_device * sdev)5577 static int ufshcd_sdev_init(struct scsi_device *sdev)
5578 {
5579 struct ufs_hba *hba;
5580
5581 hba = shost_priv(sdev->host);
5582
5583 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
5584 sdev->use_10_for_ms = 1;
5585
5586 /* DBD field should be set to 1 in mode sense(10) */
5587 sdev->set_dbd_for_ms = 1;
5588
5589 /* allow SCSI layer to restart the device in case of errors */
5590 sdev->allow_restart = 1;
5591
5592 /* REPORT SUPPORTED OPERATION CODES is not supported */
5593 sdev->no_report_opcodes = 1;
5594
5595 /* WRITE_SAME command is not supported */
5596 sdev->no_write_same = 1;
5597
5598 ufshcd_lu_init(hba, sdev);
5599
5600 ufshcd_setup_links(hba, sdev);
5601
5602 return 0;
5603 }
5604
5605 /**
5606 * ufshcd_change_queue_depth - change queue depth
5607 * @sdev: pointer to SCSI device
5608 * @depth: required depth to set
5609 *
5610 * Change queue depth and make sure the max. limits are not crossed.
5611 *
5612 * Return: new queue depth.
5613 */
ufshcd_change_queue_depth(struct scsi_device * sdev,int depth)5614 static int ufshcd_change_queue_depth(struct scsi_device *sdev, int depth)
5615 {
5616 return scsi_change_queue_depth(sdev, min(depth, sdev->host->can_queue));
5617 }
5618
5619 /**
5620 * ufshcd_sdev_configure - adjust SCSI device configurations
5621 * @sdev: pointer to SCSI device
5622 * @lim: queue limits
5623 *
5624 * Return: 0 (success).
5625 */
ufshcd_sdev_configure(struct scsi_device * sdev,struct queue_limits * lim)5626 static int ufshcd_sdev_configure(struct scsi_device *sdev,
5627 struct queue_limits *lim)
5628 {
5629 struct ufs_hba *hba = shost_priv(sdev->host);
5630 struct request_queue *q = sdev->request_queue;
5631
5632 lim->dma_pad_mask = PRDT_DATA_BYTE_COUNT_PAD - 1;
5633
5634 /*
5635 * Block runtime-pm until all consumers are added.
5636 * Refer ufshcd_setup_links().
5637 */
5638 if (is_device_wlun(sdev))
5639 pm_runtime_get_noresume(&sdev->sdev_gendev);
5640 else if (ufshcd_is_rpm_autosuspend_allowed(hba))
5641 sdev->rpm_autosuspend = 1;
5642 /*
5643 * Do not print messages during runtime PM to avoid never-ending cycles
5644 * of messages written back to storage by user space causing runtime
5645 * resume, causing more messages and so on.
5646 */
5647 sdev->silence_suspend = 1;
5648
5649 if (hba->vops && hba->vops->config_scsi_dev)
5650 hba->vops->config_scsi_dev(sdev);
5651
5652 ufshcd_crypto_register(hba, q);
5653
5654 return 0;
5655 }
5656
5657 /**
5658 * ufshcd_sdev_destroy - remove SCSI device configurations
5659 * @sdev: pointer to SCSI device
5660 */
ufshcd_sdev_destroy(struct scsi_device * sdev)5661 static void ufshcd_sdev_destroy(struct scsi_device *sdev)
5662 {
5663 struct ufs_hba *hba;
5664 unsigned long flags;
5665
5666 hba = shost_priv(sdev->host);
5667
5668 /* Drop the reference as it won't be needed anymore */
5669 if (ufshcd_scsi_to_upiu_lun(sdev->lun) == UFS_UPIU_UFS_DEVICE_WLUN) {
5670 spin_lock_irqsave(hba->host->host_lock, flags);
5671 hba->ufs_device_wlun = NULL;
5672 spin_unlock_irqrestore(hba->host->host_lock, flags);
5673 } else if (hba->ufs_device_wlun) {
5674 struct device *supplier = NULL;
5675
5676 /* Ensure UFS Device WLUN exists and does not disappear */
5677 spin_lock_irqsave(hba->host->host_lock, flags);
5678 if (hba->ufs_device_wlun) {
5679 supplier = &hba->ufs_device_wlun->sdev_gendev;
5680 get_device(supplier);
5681 }
5682 spin_unlock_irqrestore(hba->host->host_lock, flags);
5683
5684 if (supplier) {
5685 /*
5686 * If a LUN fails to probe (e.g. absent BOOT WLUN), the
5687 * device will not have been registered but can still
5688 * have a device link holding a reference to the device.
5689 */
5690 device_link_remove(&sdev->sdev_gendev, supplier);
5691 put_device(supplier);
5692 }
5693 }
5694 }
5695
5696 /**
5697 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
5698 * @cmd: SCSI command
5699 * @scsi_status: SCSI command status
5700 *
5701 * Return: value base on SCSI command status.
5702 */
ufshcd_scsi_cmd_status(struct scsi_cmnd * cmd,int scsi_status)5703 static inline int ufshcd_scsi_cmd_status(struct scsi_cmnd *cmd, int scsi_status)
5704 {
5705 int result = 0;
5706
5707 switch (scsi_status) {
5708 case SAM_STAT_CHECK_CONDITION:
5709 ufshcd_copy_sense_data(cmd);
5710 fallthrough;
5711 case SAM_STAT_GOOD:
5712 result |= DID_OK << 16 | scsi_status;
5713 break;
5714 case SAM_STAT_TASK_SET_FULL:
5715 case SAM_STAT_BUSY:
5716 case SAM_STAT_TASK_ABORTED:
5717 ufshcd_copy_sense_data(cmd);
5718 result |= scsi_status;
5719 break;
5720 default:
5721 result |= DID_ERROR << 16;
5722 break;
5723 } /* end of switch */
5724
5725 return result;
5726 }
5727
5728 /**
5729 * ufshcd_transfer_rsp_status - Get overall status of the response
5730 * @hba: per adapter instance
5731 * @cmd: SCSI command
5732 * @cqe: pointer to the completion queue entry
5733 *
5734 * Return: result of the command to notify SCSI midlayer.
5735 */
ufshcd_transfer_rsp_status(struct ufs_hba * hba,struct scsi_cmnd * cmd,struct cq_entry * cqe)5736 static inline int ufshcd_transfer_rsp_status(struct ufs_hba *hba,
5737 struct scsi_cmnd *cmd,
5738 struct cq_entry *cqe)
5739 {
5740 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
5741 const int tag = scsi_cmd_to_rq(cmd)->tag;
5742 int result = 0;
5743 int scsi_status;
5744 enum utp_ocs ocs;
5745 u8 upiu_flags;
5746 u32 resid;
5747
5748 upiu_flags = lrbp->ucd_rsp_ptr->header.flags;
5749 resid = be32_to_cpu(lrbp->ucd_rsp_ptr->sr.residual_transfer_count);
5750 /*
5751 * Test !overflow instead of underflow to support UFS devices that do
5752 * not set either flag.
5753 */
5754 if (resid && !(upiu_flags & UPIU_RSP_FLAG_OVERFLOW))
5755 scsi_set_resid(cmd, resid);
5756
5757 /* overall command status of utrd */
5758 ocs = ufshcd_get_tr_ocs(lrbp, cqe);
5759
5760 if (hba->quirks & UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR) {
5761 if (lrbp->ucd_rsp_ptr->header.response ||
5762 lrbp->ucd_rsp_ptr->header.status)
5763 ocs = OCS_SUCCESS;
5764 }
5765
5766 switch (ocs) {
5767 case OCS_SUCCESS:
5768 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
5769 switch (ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr)) {
5770 case UPIU_TRANSACTION_RESPONSE:
5771 /*
5772 * get the result based on SCSI status response
5773 * to notify the SCSI midlayer of the command status
5774 */
5775 scsi_status = lrbp->ucd_rsp_ptr->header.status;
5776 result = ufshcd_scsi_cmd_status(cmd, scsi_status);
5777
5778 /*
5779 * Currently we are only supporting BKOPs exception
5780 * events hence we can ignore BKOPs exception event
5781 * during power management callbacks. BKOPs exception
5782 * event is not expected to be raised in runtime suspend
5783 * callback as it allows the urgent bkops.
5784 * During system suspend, we are anyway forcefully
5785 * disabling the bkops and if urgent bkops is needed
5786 * it will be enabled on system resume. Long term
5787 * solution could be to abort the system suspend if
5788 * UFS device needs urgent BKOPs.
5789 */
5790 if (!hba->pm_op_in_progress &&
5791 !ufshcd_eh_in_progress(hba) &&
5792 ufshcd_is_exception_event(lrbp->ucd_rsp_ptr))
5793 /* Flushed in suspend */
5794 schedule_work(&hba->eeh_work);
5795 break;
5796 case UPIU_TRANSACTION_REJECT_UPIU:
5797 /* TODO: handle Reject UPIU Response */
5798 result = DID_ERROR << 16;
5799 dev_err(hba->dev,
5800 "Reject UPIU not fully implemented\n");
5801 break;
5802 default:
5803 dev_err(hba->dev,
5804 "Unexpected request response code = %x\n",
5805 ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr));
5806 result = DID_ERROR << 16;
5807 break;
5808 }
5809 break;
5810 case OCS_ABORTED:
5811 case OCS_INVALID_COMMAND_STATUS:
5812 result |= DID_REQUEUE << 16;
5813 dev_warn(hba->dev, "OCS %s from controller for tag %d\n",
5814 ocs == OCS_ABORTED ? "aborted" : "invalid", tag);
5815 break;
5816 case OCS_INVALID_CMD_TABLE_ATTR:
5817 case OCS_INVALID_PRDT_ATTR:
5818 case OCS_MISMATCH_DATA_BUF_SIZE:
5819 case OCS_MISMATCH_RESP_UPIU_SIZE:
5820 case OCS_PEER_COMM_FAILURE:
5821 case OCS_FATAL_ERROR:
5822 case OCS_DEVICE_FATAL_ERROR:
5823 case OCS_INVALID_CRYPTO_CONFIG:
5824 case OCS_GENERAL_CRYPTO_ERROR:
5825 default:
5826 result |= DID_ERROR << 16;
5827 dev_err(hba->dev, "OCS error from controller = %x for tag %d\n",
5828 ocs, tag);
5829 ufshcd_print_evt_hist(hba);
5830 ufshcd_print_host_state(hba);
5831 break;
5832 } /* end of switch */
5833
5834 if ((host_byte(result) != DID_OK) &&
5835 (host_byte(result) != DID_REQUEUE) && !hba->silence_err_logs) {
5836 if (cqe)
5837 ufshcd_hex_dump("UPIU CQE: ", cqe, sizeof(struct cq_entry));
5838 ufshcd_print_tr(hba, cmd, true);
5839 }
5840 return result;
5841 }
5842
ufshcd_is_auto_hibern8_error(struct ufs_hba * hba,u32 intr_mask)5843 static bool ufshcd_is_auto_hibern8_error(struct ufs_hba *hba,
5844 u32 intr_mask)
5845 {
5846 if (!ufshcd_is_auto_hibern8_supported(hba) ||
5847 !ufshcd_is_auto_hibern8_enabled(hba))
5848 return false;
5849
5850 if (!(intr_mask & UFSHCD_UIC_HIBERN8_MASK))
5851 return false;
5852
5853 if (hba->active_uic_cmd &&
5854 (hba->active_uic_cmd->command == UIC_CMD_DME_HIBER_ENTER ||
5855 hba->active_uic_cmd->command == UIC_CMD_DME_HIBER_EXIT))
5856 return false;
5857
5858 return true;
5859 }
5860
5861 /**
5862 * ufshcd_uic_cmd_compl - handle completion of uic command
5863 * @hba: per adapter instance
5864 * @intr_status: interrupt status generated by the controller
5865 *
5866 * Return:
5867 * IRQ_HANDLED - If interrupt is valid
5868 * IRQ_NONE - If invalid interrupt
5869 */
ufshcd_uic_cmd_compl(struct ufs_hba * hba,u32 intr_status)5870 static irqreturn_t ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
5871 {
5872 irqreturn_t retval = IRQ_NONE;
5873 struct uic_command *cmd;
5874
5875 guard(spinlock_irqsave)(hba->host->host_lock);
5876 cmd = hba->active_uic_cmd;
5877 if (!cmd) {
5878 dev_err(hba->dev,
5879 "No active UIC command. Maybe a timeout occurred?\n");
5880 return retval;
5881 }
5882
5883 if (ufshcd_is_auto_hibern8_error(hba, intr_status))
5884 hba->errors |= (UFSHCD_UIC_HIBERN8_MASK & intr_status);
5885
5886 if (intr_status & UIC_COMMAND_COMPL) {
5887 /*
5888 * Store the UIC command result in the lowest byte of
5889 * cmd->argument2.
5890 */
5891 cmd->argument2 |= ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2) &
5892 MASK_UIC_COMMAND_RESULT;
5893 /* Store the DME attribute value in cmd->argument3. */
5894 cmd->argument3 = ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
5895 if (!hba->uic_async_done)
5896 cmd->cmd_active = false;
5897 complete(&cmd->done);
5898 retval = IRQ_HANDLED;
5899 }
5900
5901 if (intr_status & UFSHCD_UIC_PWR_MASK && hba->uic_async_done) {
5902 cmd->cmd_active = false;
5903 complete(hba->uic_async_done);
5904 retval = IRQ_HANDLED;
5905 }
5906
5907 if (retval == IRQ_HANDLED)
5908 ufshcd_add_uic_command_trace(hba, cmd, UFS_CMD_COMP);
5909
5910 return retval;
5911 }
5912
5913 /* Release the resources allocated for processing a SCSI command. */
ufshcd_release_scsi_cmd(struct ufs_hba * hba,struct scsi_cmnd * cmd)5914 void ufshcd_release_scsi_cmd(struct ufs_hba *hba, struct scsi_cmnd *cmd)
5915 {
5916 scsi_dma_unmap(cmd);
5917 ufshcd_crypto_clear_prdt(hba, cmd);
5918 ufshcd_release(hba);
5919 ufshcd_clk_scaling_update_busy(hba);
5920 }
5921
5922 /**
5923 * ufshcd_compl_one_cqe - handle a completion queue entry
5924 * @hba: per adapter instance
5925 * @task_tag: the task tag of the request to be completed
5926 * @cqe: pointer to the completion queue entry
5927 */
ufshcd_compl_one_cqe(struct ufs_hba * hba,int task_tag,struct cq_entry * cqe)5928 void ufshcd_compl_one_cqe(struct ufs_hba *hba, int task_tag,
5929 struct cq_entry *cqe)
5930 {
5931 struct scsi_cmnd *cmd = ufshcd_tag_to_cmd(hba, task_tag);
5932 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
5933 enum utp_ocs ocs;
5934
5935 if (WARN_ONCE(!cmd, "invalid completion tag %d, cqe->command_desc_base_addr = %#llx\n",
5936 task_tag, cqe ? le64_to_cpu(cqe->command_desc_base_addr) : 0ULL))
5937 return;
5938
5939 if (hba->monitor.enabled) {
5940 lrbp->compl_time_stamp = ktime_get();
5941 lrbp->compl_time_stamp_local_clock = local_clock();
5942 }
5943 if (ufshcd_is_scsi_cmd(cmd)) {
5944 if (unlikely(ufshcd_should_inform_monitor(hba, cmd)))
5945 ufshcd_update_monitor(hba, cmd);
5946 ufshcd_add_command_trace(hba, cmd, UFS_CMD_COMP);
5947 cmd->result = ufshcd_transfer_rsp_status(hba, cmd, cqe);
5948 ufshcd_release_scsi_cmd(hba, cmd);
5949 } else {
5950 if (cqe) {
5951 ocs = cqe->overall_status & MASK_OCS;
5952 lrbp->utr_descriptor_ptr->header.ocs = ocs;
5953 } else {
5954 ocs = lrbp->utr_descriptor_ptr->header.ocs;
5955 }
5956 ufshcd_add_query_upiu_trace(
5957 hba,
5958 ocs == OCS_SUCCESS ? UFS_QUERY_COMP : UFS_QUERY_ERR,
5959 (struct utp_upiu_req *)lrbp->ucd_rsp_ptr);
5960 cmd->result = 0;
5961 }
5962 /* Do not touch lrbp after scsi_done() has been called. */
5963 scsi_done(cmd);
5964 }
5965
5966 /**
5967 * __ufshcd_transfer_req_compl - handle SCSI and query command completion
5968 * @hba: per adapter instance
5969 * @completed_reqs: bitmask that indicates which requests to complete
5970 */
__ufshcd_transfer_req_compl(struct ufs_hba * hba,unsigned long completed_reqs)5971 static void __ufshcd_transfer_req_compl(struct ufs_hba *hba,
5972 unsigned long completed_reqs)
5973 {
5974 int tag;
5975
5976 for_each_set_bit(tag, &completed_reqs, hba->nutrs)
5977 ufshcd_compl_one_cqe(hba, tag, NULL);
5978 }
5979
5980 /* Any value that is not an existing queue number is fine for this constant. */
5981 enum {
5982 UFSHCD_POLL_FROM_INTERRUPT_CONTEXT = -1
5983 };
5984
ufshcd_clear_polled(struct ufs_hba * hba,unsigned long * completed_reqs)5985 static void ufshcd_clear_polled(struct ufs_hba *hba,
5986 unsigned long *completed_reqs)
5987 {
5988 int tag;
5989
5990 for_each_set_bit(tag, completed_reqs, hba->nutrs) {
5991 struct scsi_cmnd *cmd = scsi_host_find_tag(hba->host, tag);
5992
5993 if (!cmd)
5994 continue;
5995 if (scsi_cmd_to_rq(cmd)->cmd_flags & REQ_POLLED)
5996 __clear_bit(tag, completed_reqs);
5997 }
5998 }
5999
6000 /*
6001 * Return: > 0 if one or more commands have been completed or 0 if no
6002 * requests have been completed.
6003 */
ufshcd_poll(struct Scsi_Host * shost,unsigned int queue_num)6004 static int ufshcd_poll(struct Scsi_Host *shost, unsigned int queue_num)
6005 {
6006 struct ufs_hba *hba = shost_priv(shost);
6007 unsigned long completed_reqs, flags;
6008 u32 tr_doorbell;
6009 struct ufs_hw_queue *hwq;
6010
6011 if (hba->mcq_enabled) {
6012 hwq = &hba->uhq[queue_num];
6013
6014 return ufshcd_mcq_poll_cqe_lock(hba, hwq);
6015 }
6016
6017 spin_lock_irqsave(&hba->outstanding_lock, flags);
6018 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
6019 completed_reqs = ~tr_doorbell & hba->outstanding_reqs;
6020 WARN_ONCE(completed_reqs & ~hba->outstanding_reqs,
6021 "completed: %#lx; outstanding: %#lx\n", completed_reqs,
6022 hba->outstanding_reqs);
6023 if (queue_num == UFSHCD_POLL_FROM_INTERRUPT_CONTEXT) {
6024 /* Do not complete polled requests from interrupt context. */
6025 ufshcd_clear_polled(hba, &completed_reqs);
6026 }
6027 hba->outstanding_reqs &= ~completed_reqs;
6028 spin_unlock_irqrestore(&hba->outstanding_lock, flags);
6029
6030 if (completed_reqs)
6031 __ufshcd_transfer_req_compl(hba, completed_reqs);
6032
6033 return completed_reqs != 0;
6034 }
6035
ufshcd_mcq_force_compl_one(struct request * rq,void * priv)6036 static bool ufshcd_mcq_force_compl_one(struct request *rq, void *priv)
6037 {
6038 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
6039 struct scsi_device *sdev = rq->q->queuedata;
6040 struct Scsi_Host *shost = sdev->host;
6041 struct ufs_hba *hba = shost_priv(shost);
6042 struct ufs_hw_queue *hwq = ufshcd_mcq_req_to_hwq(hba, rq);
6043
6044 if (blk_mq_is_reserved_rq(rq) || !hwq)
6045 return true;
6046
6047 ufshcd_mcq_compl_all_cqes_lock(hba, hwq);
6048
6049 /*
6050 * For those cmds of which the cqes are not present in the cq, complete
6051 * them explicitly.
6052 */
6053 scoped_guard(spinlock_irqsave, &hwq->cq_lock) {
6054 if (!test_bit(SCMD_STATE_COMPLETE, &cmd->state)) {
6055 set_host_byte(cmd, DID_REQUEUE);
6056 ufshcd_release_scsi_cmd(hba, cmd);
6057 scsi_done(cmd);
6058 }
6059 }
6060
6061 return true;
6062 }
6063
ufshcd_mcq_compl_one(struct request * rq,void * priv)6064 static bool ufshcd_mcq_compl_one(struct request *rq, void *priv)
6065 {
6066 struct scsi_device *sdev = rq->q->queuedata;
6067 struct Scsi_Host *shost = sdev->host;
6068 struct ufs_hba *hba = shost_priv(shost);
6069 struct ufs_hw_queue *hwq = ufshcd_mcq_req_to_hwq(hba, rq);
6070
6071 if (!blk_mq_is_reserved_rq(rq) && hwq)
6072 ufshcd_mcq_poll_cqe_lock(hba, hwq);
6073
6074 return true;
6075 }
6076
6077 /**
6078 * ufshcd_mcq_compl_pending_transfer - MCQ mode function. It is
6079 * invoked from the error handler context or ufshcd_host_reset_and_restore()
6080 * to complete the pending transfers and free the resources associated with
6081 * the scsi command.
6082 *
6083 * @hba: per adapter instance
6084 * @force_compl: This flag is set to true when invoked
6085 * from ufshcd_host_reset_and_restore() in which case it requires special
6086 * handling because the host controller has been reset by ufshcd_hba_stop().
6087 */
ufshcd_mcq_compl_pending_transfer(struct ufs_hba * hba,bool force_compl)6088 static void ufshcd_mcq_compl_pending_transfer(struct ufs_hba *hba,
6089 bool force_compl)
6090 {
6091 blk_mq_tagset_busy_iter(&hba->host->tag_set,
6092 force_compl ? ufshcd_mcq_force_compl_one :
6093 ufshcd_mcq_compl_one,
6094 NULL);
6095 }
6096
6097 /**
6098 * ufshcd_transfer_req_compl - handle SCSI and query command completion
6099 * @hba: per adapter instance
6100 *
6101 * Return:
6102 * IRQ_HANDLED - If interrupt is valid
6103 * IRQ_NONE - If invalid interrupt
6104 */
ufshcd_transfer_req_compl(struct ufs_hba * hba)6105 static irqreturn_t ufshcd_transfer_req_compl(struct ufs_hba *hba)
6106 {
6107 /* Resetting interrupt aggregation counters first and reading the
6108 * DOOR_BELL afterward allows us to handle all the completed requests.
6109 * In order to prevent other interrupts starvation the DB is read once
6110 * after reset. The down side of this solution is the possibility of
6111 * false interrupt if device completes another request after resetting
6112 * aggregation and before reading the DB.
6113 */
6114 if (ufshcd_is_intr_aggr_allowed(hba) &&
6115 !(hba->quirks & UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR))
6116 ufshcd_reset_intr_aggr(hba);
6117
6118 if (ufs_fail_completion(hba))
6119 return IRQ_HANDLED;
6120
6121 /*
6122 * Ignore the ufshcd_poll() return value and return IRQ_HANDLED since we
6123 * do not want polling to trigger spurious interrupt complaints.
6124 */
6125 ufshcd_poll(hba->host, UFSHCD_POLL_FROM_INTERRUPT_CONTEXT);
6126
6127 return IRQ_HANDLED;
6128 }
6129
__ufshcd_write_ee_control(struct ufs_hba * hba,u32 ee_ctrl_mask)6130 int __ufshcd_write_ee_control(struct ufs_hba *hba, u32 ee_ctrl_mask)
6131 {
6132 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
6133 QUERY_ATTR_IDN_EE_CONTROL, 0, 0,
6134 &ee_ctrl_mask);
6135 }
6136
ufshcd_write_ee_control(struct ufs_hba * hba)6137 int ufshcd_write_ee_control(struct ufs_hba *hba)
6138 {
6139 int err;
6140
6141 mutex_lock(&hba->ee_ctrl_mutex);
6142 err = __ufshcd_write_ee_control(hba, hba->ee_ctrl_mask);
6143 mutex_unlock(&hba->ee_ctrl_mutex);
6144 if (err)
6145 dev_err(hba->dev, "%s: failed to write ee control %d\n",
6146 __func__, err);
6147 return err;
6148 }
6149
ufshcd_update_ee_control(struct ufs_hba * hba,u16 * mask,const u16 * other_mask,u16 set,u16 clr)6150 int ufshcd_update_ee_control(struct ufs_hba *hba, u16 *mask,
6151 const u16 *other_mask, u16 set, u16 clr)
6152 {
6153 u16 new_mask, ee_ctrl_mask;
6154 int err = 0;
6155
6156 mutex_lock(&hba->ee_ctrl_mutex);
6157 new_mask = (*mask & ~clr) | set;
6158 ee_ctrl_mask = new_mask | *other_mask;
6159 if (ee_ctrl_mask != hba->ee_ctrl_mask)
6160 err = __ufshcd_write_ee_control(hba, ee_ctrl_mask);
6161 /* Still need to update 'mask' even if 'ee_ctrl_mask' was unchanged */
6162 if (!err) {
6163 hba->ee_ctrl_mask = ee_ctrl_mask;
6164 *mask = new_mask;
6165 }
6166 mutex_unlock(&hba->ee_ctrl_mutex);
6167 return err;
6168 }
6169
6170 /**
6171 * ufshcd_disable_ee - disable exception event
6172 * @hba: per-adapter instance
6173 * @mask: exception event to disable
6174 *
6175 * Disables exception event in the device so that the EVENT_ALERT
6176 * bit is not set.
6177 *
6178 * Return: zero on success, non-zero error value on failure.
6179 */
ufshcd_disable_ee(struct ufs_hba * hba,u16 mask)6180 static inline int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
6181 {
6182 return ufshcd_update_ee_drv_mask(hba, 0, mask);
6183 }
6184
6185 /**
6186 * ufshcd_enable_ee - enable exception event
6187 * @hba: per-adapter instance
6188 * @mask: exception event to enable
6189 *
6190 * Enable corresponding exception event in the device to allow
6191 * device to alert host in critical scenarios.
6192 *
6193 * Return: zero on success, non-zero error value on failure.
6194 */
ufshcd_enable_ee(struct ufs_hba * hba,u16 mask)6195 static inline int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
6196 {
6197 return ufshcd_update_ee_drv_mask(hba, mask, 0);
6198 }
6199
6200 /**
6201 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
6202 * @hba: per-adapter instance
6203 *
6204 * Allow device to manage background operations on its own. Enabling
6205 * this might lead to inconsistent latencies during normal data transfers
6206 * as the device is allowed to manage its own way of handling background
6207 * operations.
6208 *
6209 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
6210 * < 0 if another error occurred.
6211 */
ufshcd_enable_auto_bkops(struct ufs_hba * hba)6212 static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
6213 {
6214 int err = 0;
6215
6216 if (hba->auto_bkops_enabled)
6217 goto out;
6218
6219 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
6220 QUERY_FLAG_IDN_BKOPS_EN, 0, NULL);
6221 if (err) {
6222 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
6223 __func__, err);
6224 goto out;
6225 }
6226
6227 hba->auto_bkops_enabled = true;
6228 trace_ufshcd_auto_bkops_state(hba, "Enabled");
6229
6230 /* No need of URGENT_BKOPS exception from the device */
6231 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
6232 if (err)
6233 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
6234 __func__, err);
6235 out:
6236 return err;
6237 }
6238
6239 /**
6240 * ufshcd_disable_auto_bkops - block device in doing background operations
6241 * @hba: per-adapter instance
6242 *
6243 * Disabling background operations improves command response latency but
6244 * has drawback of device moving into critical state where the device is
6245 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
6246 * host is idle so that BKOPS are managed effectively without any negative
6247 * impacts.
6248 *
6249 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
6250 * < 0 if another error occurred.
6251 */
ufshcd_disable_auto_bkops(struct ufs_hba * hba)6252 static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
6253 {
6254 int err = 0;
6255
6256 if (!hba->auto_bkops_enabled)
6257 goto out;
6258
6259 /*
6260 * If host assisted BKOPs is to be enabled, make sure
6261 * urgent bkops exception is allowed.
6262 */
6263 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
6264 if (err) {
6265 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
6266 __func__, err);
6267 goto out;
6268 }
6269
6270 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
6271 QUERY_FLAG_IDN_BKOPS_EN, 0, NULL);
6272 if (err) {
6273 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
6274 __func__, err);
6275 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
6276 goto out;
6277 }
6278
6279 hba->auto_bkops_enabled = false;
6280 trace_ufshcd_auto_bkops_state(hba, "Disabled");
6281 hba->urgent_bkops_lvl = BKOPS_STATUS_PERF_IMPACT;
6282 hba->is_urgent_bkops_lvl_checked = false;
6283 out:
6284 return err;
6285 }
6286
6287 /**
6288 * ufshcd_force_reset_auto_bkops - force reset auto bkops state
6289 * @hba: per adapter instance
6290 *
6291 * After a device reset the device may toggle the BKOPS_EN flag
6292 * to default value. The s/w tracking variables should be updated
6293 * as well. This function would change the auto-bkops state based on
6294 * UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND.
6295 */
ufshcd_force_reset_auto_bkops(struct ufs_hba * hba)6296 static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
6297 {
6298 if (ufshcd_keep_autobkops_enabled_except_suspend(hba)) {
6299 hba->auto_bkops_enabled = false;
6300 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
6301 ufshcd_enable_auto_bkops(hba);
6302 } else {
6303 hba->auto_bkops_enabled = true;
6304 hba->ee_ctrl_mask &= ~MASK_EE_URGENT_BKOPS;
6305 ufshcd_disable_auto_bkops(hba);
6306 }
6307 hba->urgent_bkops_lvl = BKOPS_STATUS_PERF_IMPACT;
6308 hba->is_urgent_bkops_lvl_checked = false;
6309 }
6310
ufshcd_get_bkops_status(struct ufs_hba * hba,u32 * status)6311 static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
6312 {
6313 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
6314 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
6315 }
6316
6317 /**
6318 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
6319 * @hba: per-adapter instance
6320 *
6321 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
6322 * flag in the device to permit background operations if the device
6323 * bkops_status is greater than or equal to the "hba->urgent_bkops_lvl",
6324 * disable otherwise.
6325 *
6326 * Return: 0 for success, non-zero in case of failure.
6327 *
6328 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
6329 * to know whether auto bkops is enabled or disabled after this function
6330 * returns control to it.
6331 */
ufshcd_bkops_ctrl(struct ufs_hba * hba)6332 static int ufshcd_bkops_ctrl(struct ufs_hba *hba)
6333 {
6334 enum bkops_status status = hba->urgent_bkops_lvl;
6335 u32 curr_status = 0;
6336 int err;
6337
6338 err = ufshcd_get_bkops_status(hba, &curr_status);
6339 if (err) {
6340 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
6341 __func__, err);
6342 goto out;
6343 } else if (curr_status > BKOPS_STATUS_MAX) {
6344 dev_err(hba->dev, "%s: invalid BKOPS status %d\n",
6345 __func__, curr_status);
6346 err = -EINVAL;
6347 goto out;
6348 }
6349
6350 if (curr_status >= status)
6351 err = ufshcd_enable_auto_bkops(hba);
6352 else
6353 err = ufshcd_disable_auto_bkops(hba);
6354 out:
6355 return err;
6356 }
6357
ufshcd_get_ee_status(struct ufs_hba * hba,u32 * status)6358 static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
6359 {
6360 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
6361 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
6362 }
6363
ufshcd_bkops_exception_event_handler(struct ufs_hba * hba)6364 static void ufshcd_bkops_exception_event_handler(struct ufs_hba *hba)
6365 {
6366 int err;
6367 u32 curr_status = 0;
6368
6369 if (hba->is_urgent_bkops_lvl_checked)
6370 goto enable_auto_bkops;
6371
6372 err = ufshcd_get_bkops_status(hba, &curr_status);
6373 if (err) {
6374 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
6375 __func__, err);
6376 goto out;
6377 }
6378
6379 /*
6380 * We are seeing that some devices are raising the urgent bkops
6381 * exception events even when BKOPS status doesn't indicate performace
6382 * impacted or critical. Handle these device by determining their urgent
6383 * bkops status at runtime.
6384 */
6385 if ((curr_status > BKOPS_STATUS_NO_OP) && (curr_status < BKOPS_STATUS_PERF_IMPACT)) {
6386 dev_err(hba->dev, "%s: device raised urgent BKOPS exception for bkops status %d\n",
6387 __func__, curr_status);
6388 /* update the current status as the urgent bkops level */
6389 hba->urgent_bkops_lvl = curr_status;
6390 hba->is_urgent_bkops_lvl_checked = true;
6391 }
6392
6393 enable_auto_bkops:
6394 err = ufshcd_enable_auto_bkops(hba);
6395 out:
6396 if (err < 0)
6397 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
6398 __func__, err);
6399 }
6400
__ufshcd_wb_toggle(struct ufs_hba * hba,bool set,enum flag_idn idn)6401 static int __ufshcd_wb_toggle(struct ufs_hba *hba, bool set, enum flag_idn idn)
6402 {
6403 u8 index;
6404 enum query_opcode opcode = set ? UPIU_QUERY_OPCODE_SET_FLAG :
6405 UPIU_QUERY_OPCODE_CLEAR_FLAG;
6406
6407 index = ufshcd_wb_get_query_index(hba);
6408 return ufshcd_query_flag_retry(hba, opcode, idn, index, NULL);
6409 }
6410
ufshcd_wb_toggle(struct ufs_hba * hba,bool enable)6411 int ufshcd_wb_toggle(struct ufs_hba *hba, bool enable)
6412 {
6413 int ret;
6414
6415 if (!ufshcd_is_wb_allowed(hba) ||
6416 hba->dev_info.wb_enabled == enable)
6417 return 0;
6418
6419 ret = __ufshcd_wb_toggle(hba, enable, QUERY_FLAG_IDN_WB_EN);
6420 if (ret) {
6421 dev_err(hba->dev, "%s: Write Booster %s failed %d\n",
6422 __func__, enable ? "enabling" : "disabling", ret);
6423 return ret;
6424 }
6425
6426 hba->dev_info.wb_enabled = enable;
6427 dev_dbg(hba->dev, "%s: Write Booster %s\n",
6428 __func__, enable ? "enabled" : "disabled");
6429
6430 return ret;
6431 }
6432
ufshcd_wb_toggle_buf_flush_during_h8(struct ufs_hba * hba,bool enable)6433 static void ufshcd_wb_toggle_buf_flush_during_h8(struct ufs_hba *hba,
6434 bool enable)
6435 {
6436 int ret;
6437
6438 ret = __ufshcd_wb_toggle(hba, enable,
6439 QUERY_FLAG_IDN_WB_BUFF_FLUSH_DURING_HIBERN8);
6440 if (ret) {
6441 dev_err(hba->dev, "%s: WB-Buf Flush during H8 %s failed %d\n",
6442 __func__, enable ? "enabling" : "disabling", ret);
6443 return;
6444 }
6445 dev_dbg(hba->dev, "%s: WB-Buf Flush during H8 %s\n",
6446 __func__, enable ? "enabled" : "disabled");
6447 }
6448
ufshcd_wb_toggle_buf_flush(struct ufs_hba * hba,bool enable)6449 int ufshcd_wb_toggle_buf_flush(struct ufs_hba *hba, bool enable)
6450 {
6451 int ret;
6452
6453 if (!ufshcd_is_wb_allowed(hba) ||
6454 hba->dev_info.wb_buf_flush_enabled == enable)
6455 return 0;
6456
6457 ret = __ufshcd_wb_toggle(hba, enable, QUERY_FLAG_IDN_WB_BUFF_FLUSH_EN);
6458 if (ret) {
6459 dev_err(hba->dev, "%s: WB-Buf Flush %s failed %d\n",
6460 __func__, enable ? "enabling" : "disabling", ret);
6461 return ret;
6462 }
6463
6464 hba->dev_info.wb_buf_flush_enabled = enable;
6465 dev_dbg(hba->dev, "%s: WB-Buf Flush %s\n",
6466 __func__, enable ? "enabled" : "disabled");
6467
6468 return ret;
6469 }
6470
ufshcd_wb_set_resize_en(struct ufs_hba * hba,enum wb_resize_en en_mode)6471 int ufshcd_wb_set_resize_en(struct ufs_hba *hba, enum wb_resize_en en_mode)
6472 {
6473 int ret;
6474 u8 index;
6475
6476 index = ufshcd_wb_get_query_index(hba);
6477 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
6478 QUERY_ATTR_IDN_WB_BUF_RESIZE_EN, index, 0, &en_mode);
6479 if (ret)
6480 dev_err(hba->dev, "%s: Enable WB buf resize operation failed %d\n",
6481 __func__, ret);
6482
6483 return ret;
6484 }
6485
ufshcd_wb_curr_buff_threshold_check(struct ufs_hba * hba,u32 avail_buf)6486 static bool ufshcd_wb_curr_buff_threshold_check(struct ufs_hba *hba,
6487 u32 avail_buf)
6488 {
6489 u32 cur_buf;
6490 int ret;
6491 u8 index;
6492
6493 index = ufshcd_wb_get_query_index(hba);
6494 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
6495 QUERY_ATTR_IDN_CURR_WB_BUFF_SIZE,
6496 index, 0, &cur_buf);
6497 if (ret) {
6498 dev_err(hba->dev, "%s: dCurWriteBoosterBufferSize read failed %d\n",
6499 __func__, ret);
6500 return false;
6501 }
6502
6503 if (!cur_buf) {
6504 dev_warn_once(hba->dev, "dCurWBBuf: %d WB disabled until free-space is available\n",
6505 cur_buf);
6506 return false;
6507 }
6508 /* Let it continue to flush when available buffer exceeds threshold */
6509 return avail_buf < hba->vps->wb_flush_threshold;
6510 }
6511
ufshcd_wb_force_disable(struct ufs_hba * hba)6512 static void ufshcd_wb_force_disable(struct ufs_hba *hba)
6513 {
6514 if (ufshcd_is_wb_buf_flush_allowed(hba))
6515 ufshcd_wb_toggle_buf_flush(hba, false);
6516
6517 ufshcd_wb_toggle_buf_flush_during_h8(hba, false);
6518 ufshcd_wb_toggle(hba, false);
6519 hba->caps &= ~UFSHCD_CAP_WB_EN;
6520
6521 dev_info(hba->dev, "%s: WB force disabled\n", __func__);
6522 }
6523
ufshcd_is_wb_buf_lifetime_available(struct ufs_hba * hba)6524 static bool ufshcd_is_wb_buf_lifetime_available(struct ufs_hba *hba)
6525 {
6526 u32 lifetime;
6527 int ret;
6528 u8 index;
6529
6530 index = ufshcd_wb_get_query_index(hba);
6531 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
6532 QUERY_ATTR_IDN_WB_BUFF_LIFE_TIME_EST,
6533 index, 0, &lifetime);
6534 if (ret) {
6535 dev_err(hba->dev,
6536 "%s: bWriteBoosterBufferLifeTimeEst read failed %d\n",
6537 __func__, ret);
6538 return false;
6539 }
6540
6541 if (lifetime == UFS_WB_EXCEED_LIFETIME) {
6542 dev_err(hba->dev, "%s: WB buf lifetime is exhausted 0x%02X\n",
6543 __func__, lifetime);
6544 return false;
6545 }
6546
6547 dev_dbg(hba->dev, "%s: WB buf lifetime is 0x%02X\n",
6548 __func__, lifetime);
6549
6550 return true;
6551 }
6552
ufshcd_wb_need_flush(struct ufs_hba * hba)6553 static bool ufshcd_wb_need_flush(struct ufs_hba *hba)
6554 {
6555 int ret;
6556 u32 avail_buf;
6557 u8 index;
6558
6559 if (!ufshcd_is_wb_allowed(hba))
6560 return false;
6561
6562 if (!ufshcd_is_wb_buf_lifetime_available(hba)) {
6563 ufshcd_wb_force_disable(hba);
6564 return false;
6565 }
6566
6567 /*
6568 * With user-space reduction enabled, it's enough to enable flush
6569 * by checking only the available buffer. The threshold
6570 * defined here is > 90% full.
6571 * With user-space preserved enabled, the current-buffer
6572 * should be checked too because the wb buffer size can reduce
6573 * when disk tends to be full. This info is provided by current
6574 * buffer (dCurrentWriteBoosterBufferSize).
6575 */
6576 index = ufshcd_wb_get_query_index(hba);
6577 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
6578 QUERY_ATTR_IDN_AVAIL_WB_BUFF_SIZE,
6579 index, 0, &avail_buf);
6580 if (ret) {
6581 dev_warn(hba->dev, "%s: dAvailableWriteBoosterBufferSize read failed %d\n",
6582 __func__, ret);
6583 return false;
6584 }
6585
6586 if (!hba->dev_info.b_presrv_uspc_en)
6587 return avail_buf <= UFS_WB_BUF_REMAIN_PERCENT(10);
6588
6589 return ufshcd_wb_curr_buff_threshold_check(hba, avail_buf);
6590 }
6591
ufshcd_rpm_dev_flush_recheck_work(struct work_struct * work)6592 static void ufshcd_rpm_dev_flush_recheck_work(struct work_struct *work)
6593 {
6594 struct ufs_hba *hba = container_of(to_delayed_work(work),
6595 struct ufs_hba,
6596 rpm_dev_flush_recheck_work);
6597 /*
6598 * To prevent unnecessary VCC power drain after device finishes
6599 * WriteBooster buffer flush or Auto BKOPs, force runtime resume
6600 * after a certain delay to recheck the threshold by next runtime
6601 * suspend.
6602 */
6603 ufshcd_rpm_get_sync(hba);
6604 ufshcd_rpm_put_sync(hba);
6605 }
6606
6607 /**
6608 * ufshcd_exception_event_handler - handle exceptions raised by device
6609 * @work: pointer to work data
6610 *
6611 * Read bExceptionEventStatus attribute from the device and handle the
6612 * exception event accordingly.
6613 */
ufshcd_exception_event_handler(struct work_struct * work)6614 static void ufshcd_exception_event_handler(struct work_struct *work)
6615 {
6616 struct ufs_hba *hba;
6617 int err;
6618 u32 status = 0;
6619 hba = container_of(work, struct ufs_hba, eeh_work);
6620
6621 err = ufshcd_get_ee_status(hba, &status);
6622 if (err) {
6623 dev_err(hba->dev, "%s: failed to get exception status %d\n",
6624 __func__, err);
6625 return;
6626 }
6627
6628 trace_ufshcd_exception_event(hba, status);
6629
6630 if (status & hba->ee_drv_mask & MASK_EE_URGENT_BKOPS)
6631 ufshcd_bkops_exception_event_handler(hba);
6632
6633 if (status & hba->ee_drv_mask & MASK_EE_URGENT_TEMP)
6634 ufs_hwmon_notify_event(hba, status & MASK_EE_URGENT_TEMP);
6635
6636 if (status & hba->ee_drv_mask & MASK_EE_HEALTH_CRITICAL) {
6637 hba->critical_health_count++;
6638 sysfs_notify(&hba->dev->kobj, NULL, "critical_health");
6639 }
6640
6641 if (status & hba->ee_drv_mask & MASK_EE_DEV_LVL_EXCEPTION) {
6642 atomic_inc(&hba->dev_lvl_exception_count);
6643 sysfs_notify(&hba->dev->kobj, NULL, "device_lvl_exception_count");
6644 }
6645
6646 ufs_debugfs_exception_event(hba, status);
6647 }
6648
6649 /* Complete requests that have door-bell cleared */
ufshcd_complete_requests(struct ufs_hba * hba,bool force_compl)6650 static void ufshcd_complete_requests(struct ufs_hba *hba, bool force_compl)
6651 {
6652 if (hba->mcq_enabled)
6653 ufshcd_mcq_compl_pending_transfer(hba, force_compl);
6654 else
6655 ufshcd_transfer_req_compl(hba);
6656
6657 ufshcd_tmc_handler(hba);
6658 }
6659
6660 /**
6661 * ufshcd_quirk_dl_nac_errors - This function checks if error handling is
6662 * to recover from the DL NAC errors or not.
6663 * @hba: per-adapter instance
6664 *
6665 * Return: true if error handling is required, false otherwise.
6666 */
ufshcd_quirk_dl_nac_errors(struct ufs_hba * hba)6667 static bool ufshcd_quirk_dl_nac_errors(struct ufs_hba *hba)
6668 {
6669 unsigned long flags;
6670 bool err_handling = true;
6671
6672 spin_lock_irqsave(hba->host->host_lock, flags);
6673 /*
6674 * UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS only workaround the
6675 * device fatal error and/or DL NAC & REPLAY timeout errors.
6676 */
6677 if (hba->saved_err & (CONTROLLER_FATAL_ERROR | SYSTEM_BUS_FATAL_ERROR))
6678 goto out;
6679
6680 if ((hba->saved_err & DEVICE_FATAL_ERROR) ||
6681 ((hba->saved_err & UIC_ERROR) &&
6682 (hba->saved_uic_err & UFSHCD_UIC_DL_TCx_REPLAY_ERROR)))
6683 goto out;
6684
6685 if ((hba->saved_err & UIC_ERROR) &&
6686 (hba->saved_uic_err & UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)) {
6687 int err;
6688 /*
6689 * wait for 50ms to see if we can get any other errors or not.
6690 */
6691 spin_unlock_irqrestore(hba->host->host_lock, flags);
6692 msleep(50);
6693 spin_lock_irqsave(hba->host->host_lock, flags);
6694
6695 /*
6696 * now check if we have got any other severe errors other than
6697 * DL NAC error?
6698 */
6699 if ((hba->saved_err & INT_FATAL_ERRORS) ||
6700 ((hba->saved_err & UIC_ERROR) &&
6701 (hba->saved_uic_err & ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)))
6702 goto out;
6703
6704 /*
6705 * As DL NAC is the only error received so far, send out NOP
6706 * command to confirm if link is still active or not.
6707 * - If we don't get any response then do error recovery.
6708 * - If we get response then clear the DL NAC error bit.
6709 */
6710
6711 spin_unlock_irqrestore(hba->host->host_lock, flags);
6712 err = ufshcd_verify_dev_init(hba);
6713 spin_lock_irqsave(hba->host->host_lock, flags);
6714
6715 if (err)
6716 goto out;
6717
6718 /* Link seems to be alive hence ignore the DL NAC errors */
6719 if (hba->saved_uic_err == UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)
6720 hba->saved_err &= ~UIC_ERROR;
6721 /* clear NAC error */
6722 hba->saved_uic_err &= ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
6723 if (!hba->saved_uic_err)
6724 err_handling = false;
6725 }
6726 out:
6727 spin_unlock_irqrestore(hba->host->host_lock, flags);
6728 return err_handling;
6729 }
6730
6731 /* host lock must be held before calling this func */
ufshcd_is_saved_err_fatal(struct ufs_hba * hba)6732 static inline bool ufshcd_is_saved_err_fatal(struct ufs_hba *hba)
6733 {
6734 return (hba->saved_uic_err & UFSHCD_UIC_DL_PA_INIT_ERROR) ||
6735 (hba->saved_err & (INT_FATAL_ERRORS | UFSHCD_UIC_HIBERN8_MASK));
6736 }
6737
ufshcd_schedule_eh_work(struct ufs_hba * hba)6738 void ufshcd_schedule_eh_work(struct ufs_hba *hba)
6739 {
6740 lockdep_assert_held(hba->host->host_lock);
6741
6742 /* handle fatal errors only when link is not in error state */
6743 if (hba->ufshcd_state != UFSHCD_STATE_ERROR) {
6744 if (hba->force_reset || ufshcd_is_link_broken(hba) ||
6745 ufshcd_is_saved_err_fatal(hba))
6746 hba->ufshcd_state = UFSHCD_STATE_EH_SCHEDULED_FATAL;
6747 else
6748 hba->ufshcd_state = UFSHCD_STATE_EH_SCHEDULED_NON_FATAL;
6749 queue_work(hba->eh_wq, &hba->eh_work);
6750 }
6751 }
6752
ufshcd_force_error_recovery(struct ufs_hba * hba)6753 void ufshcd_force_error_recovery(struct ufs_hba *hba)
6754 {
6755 spin_lock_irq(hba->host->host_lock);
6756 hba->force_reset = true;
6757 ufshcd_schedule_eh_work(hba);
6758 spin_unlock_irq(hba->host->host_lock);
6759 }
6760 EXPORT_SYMBOL_GPL(ufshcd_force_error_recovery);
6761
ufshcd_clk_scaling_allow(struct ufs_hba * hba,bool allow)6762 static void ufshcd_clk_scaling_allow(struct ufs_hba *hba, bool allow)
6763 {
6764 mutex_lock(&hba->wb_mutex);
6765 down_write(&hba->clk_scaling_lock);
6766 hba->clk_scaling.is_allowed = allow;
6767 up_write(&hba->clk_scaling_lock);
6768 mutex_unlock(&hba->wb_mutex);
6769 }
6770
ufshcd_clk_scaling_suspend(struct ufs_hba * hba,bool suspend)6771 static void ufshcd_clk_scaling_suspend(struct ufs_hba *hba, bool suspend)
6772 {
6773 if (suspend) {
6774 if (hba->clk_scaling.is_enabled)
6775 ufshcd_suspend_clkscaling(hba);
6776 ufshcd_clk_scaling_allow(hba, false);
6777 } else {
6778 ufshcd_clk_scaling_allow(hba, true);
6779 if (hba->clk_scaling.is_enabled)
6780 ufshcd_resume_clkscaling(hba);
6781 }
6782 }
6783
ufshcd_err_handling_prepare(struct ufs_hba * hba)6784 static void ufshcd_err_handling_prepare(struct ufs_hba *hba)
6785 {
6786 /*
6787 * A WLUN resume failure could potentially lead to the HBA being
6788 * runtime suspended, so take an extra reference on hba->dev.
6789 */
6790 pm_runtime_get_sync(hba->dev);
6791 ufshcd_rpm_get_sync(hba);
6792 if (pm_runtime_status_suspended(&hba->ufs_device_wlun->sdev_gendev) ||
6793 hba->is_sys_suspended) {
6794 enum ufs_pm_op pm_op;
6795
6796 /*
6797 * Don't assume anything of resume, if
6798 * resume fails, irq and clocks can be OFF, and powers
6799 * can be OFF or in LPM.
6800 */
6801 ufshcd_setup_hba_vreg(hba, true);
6802 ufshcd_enable_irq(hba);
6803 ufshcd_setup_vreg(hba, true);
6804 ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
6805 ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
6806 ufshcd_hold(hba);
6807 if (!ufshcd_is_clkgating_allowed(hba))
6808 ufshcd_setup_clocks(hba, true);
6809 pm_op = hba->is_sys_suspended ? UFS_SYSTEM_PM : UFS_RUNTIME_PM;
6810 ufshcd_vops_resume(hba, pm_op);
6811 } else {
6812 ufshcd_hold(hba);
6813 if (ufshcd_is_clkscaling_supported(hba) &&
6814 hba->clk_scaling.is_enabled)
6815 ufshcd_suspend_clkscaling(hba);
6816 ufshcd_clk_scaling_allow(hba, false);
6817 }
6818 /* Wait for ongoing ufshcd_queuecommand() calls to finish. */
6819 blk_mq_quiesce_tagset(&hba->host->tag_set);
6820 cancel_work_sync(&hba->eeh_work);
6821 }
6822
ufshcd_err_handling_unprepare(struct ufs_hba * hba)6823 static void ufshcd_err_handling_unprepare(struct ufs_hba *hba)
6824 {
6825 blk_mq_unquiesce_tagset(&hba->host->tag_set);
6826 ufshcd_release(hba);
6827 if (ufshcd_is_clkscaling_supported(hba))
6828 ufshcd_clk_scaling_suspend(hba, false);
6829 ufshcd_rpm_put(hba);
6830 pm_runtime_put(hba->dev);
6831 }
6832
ufshcd_err_handling_should_stop(struct ufs_hba * hba)6833 static inline bool ufshcd_err_handling_should_stop(struct ufs_hba *hba)
6834 {
6835 return (!hba->is_powered || hba->shutting_down ||
6836 !hba->ufs_device_wlun ||
6837 hba->ufshcd_state == UFSHCD_STATE_ERROR ||
6838 (!(hba->saved_err || hba->saved_uic_err || hba->force_reset ||
6839 ufshcd_is_link_broken(hba))));
6840 }
6841
6842 #ifdef CONFIG_PM
ufshcd_recover_pm_error(struct ufs_hba * hba)6843 static void ufshcd_recover_pm_error(struct ufs_hba *hba)
6844 {
6845 struct scsi_target *starget = hba->ufs_device_wlun->sdev_target;
6846 struct Scsi_Host *shost = hba->host;
6847 struct scsi_device *sdev;
6848 struct request_queue *q;
6849 bool resume_sdev_queues = false;
6850
6851 hba->is_sys_suspended = false;
6852
6853 /*
6854 * Ensure the parent's error status is cleared before proceeding
6855 * to the child, as the parent must be active to activate the child.
6856 */
6857 if (hba->dev->power.runtime_error) {
6858 /* hba->dev has no functional parent thus simplily set RPM_ACTIVE */
6859 pm_runtime_set_active(hba->dev);
6860 resume_sdev_queues = true;
6861 }
6862
6863 if (hba->ufs_device_wlun->sdev_gendev.power.runtime_error) {
6864 /*
6865 * starget, parent of wlun, might be suspended if wlun resume failed.
6866 * Make sure parent is resumed before set child (wlun) active.
6867 */
6868 pm_runtime_get_sync(&starget->dev);
6869 pm_runtime_set_active(&hba->ufs_device_wlun->sdev_gendev);
6870 pm_runtime_put_sync(&starget->dev);
6871 resume_sdev_queues = true;
6872 }
6873
6874 /*
6875 * If wlun device had runtime error, we also need to resume those
6876 * consumer scsi devices in case any of them has failed to be
6877 * resumed due to supplier runtime resume failure. This is to unblock
6878 * blk_queue_enter in case there are bios waiting inside it.
6879 */
6880 if (resume_sdev_queues) {
6881 shost_for_each_device(sdev, shost) {
6882 q = sdev->request_queue;
6883 if (q->dev && (q->rpm_status == RPM_SUSPENDED ||
6884 q->rpm_status == RPM_SUSPENDING))
6885 pm_request_resume(q->dev);
6886 }
6887 }
6888 }
6889 #else
ufshcd_recover_pm_error(struct ufs_hba * hba)6890 static inline void ufshcd_recover_pm_error(struct ufs_hba *hba)
6891 {
6892 }
6893 #endif
6894
ufshcd_is_pwr_mode_restore_needed(struct ufs_hba * hba)6895 static bool ufshcd_is_pwr_mode_restore_needed(struct ufs_hba *hba)
6896 {
6897 struct ufs_pa_layer_attr *pwr_info = &hba->pwr_info;
6898 u32 mode;
6899
6900 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_PWRMODE), &mode);
6901
6902 if (pwr_info->pwr_rx != ((mode >> PWRMODE_RX_OFFSET) & PWRMODE_MASK))
6903 return true;
6904
6905 if (pwr_info->pwr_tx != (mode & PWRMODE_MASK))
6906 return true;
6907
6908 return false;
6909 }
6910
ufshcd_abort_one(struct request * rq,void * priv)6911 static bool ufshcd_abort_one(struct request *rq, void *priv)
6912 {
6913 int *ret = priv;
6914 u32 tag = rq->tag;
6915 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
6916 struct scsi_device *sdev = cmd->device;
6917 struct Scsi_Host *shost = sdev->host;
6918 struct ufs_hba *hba = shost_priv(shost);
6919
6920 if (blk_mq_is_reserved_rq(rq))
6921 return true;
6922
6923 *ret = ufshcd_try_to_abort_task(hba, tag);
6924 dev_err(hba->dev, "Aborting tag %d / CDB %#02x %s\n", tag,
6925 ufshcd_is_scsi_cmd(cmd) ? cmd->cmnd[0] : -1,
6926 *ret ? "failed" : "succeeded");
6927
6928 return *ret == 0;
6929 }
6930
6931 /**
6932 * ufshcd_abort_all - Abort all pending commands.
6933 * @hba: Host bus adapter pointer.
6934 *
6935 * Return: true if and only if the host controller needs to be reset.
6936 */
ufshcd_abort_all(struct ufs_hba * hba)6937 static bool ufshcd_abort_all(struct ufs_hba *hba)
6938 {
6939 int tag, ret = 0;
6940
6941 blk_mq_tagset_busy_iter(&hba->host->tag_set, ufshcd_abort_one, &ret);
6942 if (ret)
6943 goto out;
6944
6945 /* Clear pending task management requests */
6946 for_each_set_bit(tag, &hba->outstanding_tasks, hba->nutmrs) {
6947 ret = ufshcd_clear_tm_cmd(hba, tag);
6948 if (ret)
6949 goto out;
6950 }
6951
6952 out:
6953 /* Complete the requests that are cleared by s/w */
6954 ufshcd_complete_requests(hba, false);
6955
6956 return ret != 0;
6957 }
6958
6959 /**
6960 * ufshcd_err_handler - handle UFS errors that require s/w attention
6961 * @work: pointer to work structure
6962 */
ufshcd_err_handler(struct work_struct * work)6963 static void ufshcd_err_handler(struct work_struct *work)
6964 {
6965 int retries = MAX_ERR_HANDLER_RETRIES;
6966 struct ufs_hba *hba;
6967 unsigned long flags;
6968 bool needs_restore;
6969 bool needs_reset;
6970 int pmc_err;
6971
6972 hba = container_of(work, struct ufs_hba, eh_work);
6973
6974 dev_info(hba->dev,
6975 "%s started; HBA state %s; powered %d; shutting down %d; saved_err = 0x%x; saved_uic_err = 0x%x; force_reset = %d%s\n",
6976 __func__, ufshcd_state_name[hba->ufshcd_state],
6977 hba->is_powered, hba->shutting_down, hba->saved_err,
6978 hba->saved_uic_err, hba->force_reset,
6979 ufshcd_is_link_broken(hba) ? "; link is broken" : "");
6980
6981 if (hba->ufs_device_wlun) {
6982 /*
6983 * Use ufshcd_rpm_get_noresume() here to safely perform link
6984 * recovery even if an error occurs during runtime suspend or
6985 * runtime resume. This avoids potential deadlocks that could
6986 * happen if we tried to resume the device while a PM operation
6987 * is already in progress.
6988 */
6989 ufshcd_rpm_get_noresume(hba);
6990 if (hba->pm_op_in_progress) {
6991 ufshcd_link_recovery(hba);
6992 ufshcd_rpm_put(hba);
6993 return;
6994 }
6995 ufshcd_rpm_put(hba);
6996 }
6997
6998 down(&hba->host_sem);
6999 spin_lock_irqsave(hba->host->host_lock, flags);
7000 if (ufshcd_err_handling_should_stop(hba)) {
7001 if (hba->ufshcd_state != UFSHCD_STATE_ERROR)
7002 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
7003 spin_unlock_irqrestore(hba->host->host_lock, flags);
7004 up(&hba->host_sem);
7005 return;
7006 }
7007 spin_unlock_irqrestore(hba->host->host_lock, flags);
7008
7009 ufshcd_err_handling_prepare(hba);
7010
7011 spin_lock_irqsave(hba->host->host_lock, flags);
7012 ufshcd_set_eh_in_progress(hba);
7013 spin_unlock_irqrestore(hba->host->host_lock, flags);
7014
7015 /* Complete requests that have door-bell cleared by h/w */
7016 ufshcd_complete_requests(hba, false);
7017 spin_lock_irqsave(hba->host->host_lock, flags);
7018 again:
7019 needs_restore = false;
7020 needs_reset = false;
7021
7022 if (hba->ufshcd_state != UFSHCD_STATE_ERROR)
7023 hba->ufshcd_state = UFSHCD_STATE_RESET;
7024 /*
7025 * A full reset and restore might have happened after preparation
7026 * is finished, double check whether we should stop.
7027 */
7028 if (ufshcd_err_handling_should_stop(hba))
7029 goto skip_err_handling;
7030
7031 if ((hba->dev_quirks & UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) &&
7032 !hba->force_reset) {
7033 bool ret;
7034
7035 spin_unlock_irqrestore(hba->host->host_lock, flags);
7036 /* release the lock as ufshcd_quirk_dl_nac_errors() may sleep */
7037 ret = ufshcd_quirk_dl_nac_errors(hba);
7038 spin_lock_irqsave(hba->host->host_lock, flags);
7039 if (!ret && ufshcd_err_handling_should_stop(hba))
7040 goto skip_err_handling;
7041 }
7042
7043 if ((hba->saved_err & (INT_FATAL_ERRORS | UFSHCD_UIC_HIBERN8_MASK)) ||
7044 (hba->saved_uic_err &&
7045 (hba->saved_uic_err != UFSHCD_UIC_PA_GENERIC_ERROR))) {
7046 bool pr_prdt = !!(hba->saved_err & SYSTEM_BUS_FATAL_ERROR);
7047
7048 spin_unlock_irqrestore(hba->host->host_lock, flags);
7049 ufshcd_print_host_state(hba);
7050 ufshcd_print_pwr_info(hba);
7051 ufshcd_print_tx_eq_params(hba);
7052 ufshcd_print_evt_hist(hba);
7053 ufshcd_print_tmrs(hba, hba->outstanding_tasks);
7054 ufshcd_print_trs_all(hba, pr_prdt);
7055 spin_lock_irqsave(hba->host->host_lock, flags);
7056 }
7057
7058 /*
7059 * if host reset is required then skip clearing the pending
7060 * transfers forcefully because they will get cleared during
7061 * host reset and restore
7062 */
7063 if (hba->force_reset || ufshcd_is_link_broken(hba) ||
7064 ufshcd_is_saved_err_fatal(hba) ||
7065 ((hba->saved_err & UIC_ERROR) &&
7066 (hba->saved_uic_err & (UFSHCD_UIC_DL_NAC_RECEIVED_ERROR |
7067 UFSHCD_UIC_DL_TCx_REPLAY_ERROR)))) {
7068 needs_reset = true;
7069 goto do_reset;
7070 }
7071
7072 /*
7073 * If LINERESET was caught, UFS might have been put to PWM mode,
7074 * check if power mode restore is needed.
7075 */
7076 if (hba->saved_uic_err & UFSHCD_UIC_PA_GENERIC_ERROR) {
7077 hba->saved_uic_err &= ~UFSHCD_UIC_PA_GENERIC_ERROR;
7078 if (!hba->saved_uic_err)
7079 hba->saved_err &= ~UIC_ERROR;
7080 spin_unlock_irqrestore(hba->host->host_lock, flags);
7081 if (ufshcd_is_pwr_mode_restore_needed(hba))
7082 needs_restore = true;
7083 spin_lock_irqsave(hba->host->host_lock, flags);
7084 if (!hba->saved_err && !needs_restore)
7085 goto skip_err_handling;
7086 }
7087
7088 hba->silence_err_logs = true;
7089 /* release lock as clear command might sleep */
7090 spin_unlock_irqrestore(hba->host->host_lock, flags);
7091
7092 needs_reset = ufshcd_abort_all(hba);
7093
7094 spin_lock_irqsave(hba->host->host_lock, flags);
7095 hba->silence_err_logs = false;
7096 if (needs_reset)
7097 goto do_reset;
7098
7099 /*
7100 * After all reqs and tasks are cleared from doorbell,
7101 * now it is safe to retore power mode.
7102 */
7103 if (needs_restore) {
7104 spin_unlock_irqrestore(hba->host->host_lock, flags);
7105 /*
7106 * Hold the scaling lock just in case dev cmds
7107 * are sent via bsg and/or sysfs.
7108 */
7109 down_write(&hba->clk_scaling_lock);
7110 pmc_err = ufshcd_config_pwr_mode(hba, &hba->pwr_info,
7111 UFSHCD_PMC_POLICY_FORCE);
7112 if (pmc_err) {
7113 needs_reset = true;
7114 dev_err(hba->dev, "%s: Failed to restore power mode, err = %d\n",
7115 __func__, pmc_err);
7116 }
7117 ufshcd_print_pwr_info(hba);
7118 up_write(&hba->clk_scaling_lock);
7119 spin_lock_irqsave(hba->host->host_lock, flags);
7120 }
7121
7122 do_reset:
7123 /* Fatal errors need reset */
7124 if (needs_reset) {
7125 int err;
7126
7127 hba->force_reset = false;
7128 spin_unlock_irqrestore(hba->host->host_lock, flags);
7129 err = ufshcd_reset_and_restore(hba);
7130 if (err)
7131 dev_err(hba->dev, "%s: reset and restore failed with err %d\n",
7132 __func__, err);
7133 else
7134 ufshcd_recover_pm_error(hba);
7135 spin_lock_irqsave(hba->host->host_lock, flags);
7136 }
7137
7138 skip_err_handling:
7139 if (!needs_reset) {
7140 if (hba->ufshcd_state == UFSHCD_STATE_RESET)
7141 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
7142 if (hba->saved_err || hba->saved_uic_err)
7143 dev_err_ratelimited(hba->dev, "%s: exit: saved_err 0x%x saved_uic_err 0x%x",
7144 __func__, hba->saved_err, hba->saved_uic_err);
7145 }
7146 /* Exit in an operational state or dead */
7147 if (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL &&
7148 hba->ufshcd_state != UFSHCD_STATE_ERROR) {
7149 if (--retries)
7150 goto again;
7151 hba->ufshcd_state = UFSHCD_STATE_ERROR;
7152 }
7153 ufshcd_clear_eh_in_progress(hba);
7154 spin_unlock_irqrestore(hba->host->host_lock, flags);
7155 ufshcd_err_handling_unprepare(hba);
7156 up(&hba->host_sem);
7157
7158 dev_info(hba->dev, "%s finished; HBA state %s\n", __func__,
7159 ufshcd_state_name[hba->ufshcd_state]);
7160 }
7161
7162 /**
7163 * ufshcd_update_uic_error - check and set fatal UIC error flags.
7164 * @hba: per-adapter instance
7165 *
7166 * Return:
7167 * IRQ_HANDLED - If interrupt is valid
7168 * IRQ_NONE - If invalid interrupt
7169 */
ufshcd_update_uic_error(struct ufs_hba * hba)7170 static irqreturn_t ufshcd_update_uic_error(struct ufs_hba *hba)
7171 {
7172 u32 reg;
7173 irqreturn_t retval = IRQ_NONE;
7174
7175 /* PHY layer error */
7176 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER);
7177 if ((reg & UIC_PHY_ADAPTER_LAYER_ERROR) &&
7178 (reg & UIC_PHY_ADAPTER_LAYER_ERROR_CODE_MASK)) {
7179 ufshcd_update_evt_hist(hba, UFS_EVT_PA_ERR, reg);
7180 /*
7181 * To know whether this error is fatal or not, DB timeout
7182 * must be checked but this error is handled separately.
7183 */
7184 if (reg & UIC_PHY_ADAPTER_LAYER_LANE_ERR_MASK)
7185 dev_dbg(hba->dev, "%s: UIC Lane error reported\n",
7186 __func__);
7187
7188 /* Got a LINERESET indication. */
7189 if (reg & UIC_PHY_ADAPTER_LAYER_GENERIC_ERROR) {
7190 struct uic_command *cmd = NULL;
7191
7192 hba->uic_error |= UFSHCD_UIC_PA_GENERIC_ERROR;
7193 if (hba->uic_async_done && hba->active_uic_cmd)
7194 cmd = hba->active_uic_cmd;
7195 /*
7196 * Ignore the LINERESET during power mode change
7197 * operation via DME_SET command.
7198 */
7199 if (cmd && (cmd->command == UIC_CMD_DME_SET))
7200 hba->uic_error &= ~UFSHCD_UIC_PA_GENERIC_ERROR;
7201 }
7202 retval |= IRQ_HANDLED;
7203 }
7204
7205 /* PA_INIT_ERROR is fatal and needs UIC reset */
7206 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
7207 if ((reg & UIC_DATA_LINK_LAYER_ERROR) &&
7208 (reg & UIC_DATA_LINK_LAYER_ERROR_CODE_MASK)) {
7209 ufshcd_update_evt_hist(hba, UFS_EVT_DL_ERR, reg);
7210
7211 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
7212 hba->uic_error |= UFSHCD_UIC_DL_PA_INIT_ERROR;
7213 else if (hba->dev_quirks &
7214 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
7215 if (reg & UIC_DATA_LINK_LAYER_ERROR_NAC_RECEIVED)
7216 hba->uic_error |=
7217 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
7218 else if (reg & UIC_DATA_LINK_LAYER_ERROR_TCx_REPLAY_TIMEOUT)
7219 hba->uic_error |= UFSHCD_UIC_DL_TCx_REPLAY_ERROR;
7220 }
7221 retval |= IRQ_HANDLED;
7222 }
7223
7224 /* UIC NL/TL/DME errors needs software retry */
7225 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_NETWORK_LAYER);
7226 if ((reg & UIC_NETWORK_LAYER_ERROR) &&
7227 (reg & UIC_NETWORK_LAYER_ERROR_CODE_MASK)) {
7228 ufshcd_update_evt_hist(hba, UFS_EVT_NL_ERR, reg);
7229 hba->uic_error |= UFSHCD_UIC_NL_ERROR;
7230 retval |= IRQ_HANDLED;
7231 }
7232
7233 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_TRANSPORT_LAYER);
7234 if ((reg & UIC_TRANSPORT_LAYER_ERROR) &&
7235 (reg & UIC_TRANSPORT_LAYER_ERROR_CODE_MASK)) {
7236 ufshcd_update_evt_hist(hba, UFS_EVT_TL_ERR, reg);
7237 hba->uic_error |= UFSHCD_UIC_TL_ERROR;
7238 retval |= IRQ_HANDLED;
7239 }
7240
7241 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DME);
7242 if (reg & UIC_DME_ERROR) {
7243 ufshcd_update_evt_hist(hba, UFS_EVT_DME_ERR, reg);
7244
7245 if (reg & UIC_DME_ERROR_CODE_MASK)
7246 hba->uic_error |= UFSHCD_UIC_DME_ERROR;
7247
7248 if (reg & UIC_DME_QOS_MASK) {
7249 atomic_set(&hba->dme_qos_notification,
7250 reg & UIC_DME_QOS_MASK);
7251 if (hba->dme_qos_sysfs_handle)
7252 sysfs_notify_dirent(hba->dme_qos_sysfs_handle);
7253 }
7254
7255 retval |= IRQ_HANDLED;
7256 }
7257
7258 dev_dbg(hba->dev, "%s: UIC error flags = 0x%08x\n",
7259 __func__, hba->uic_error);
7260 return retval;
7261 }
7262
7263 /**
7264 * ufshcd_check_errors - Check for errors that need s/w attention
7265 * @hba: per-adapter instance
7266 * @intr_status: interrupt status generated by the controller
7267 *
7268 * Return:
7269 * IRQ_HANDLED - If interrupt is valid
7270 * IRQ_NONE - If invalid interrupt
7271 */
ufshcd_check_errors(struct ufs_hba * hba,u32 intr_status)7272 static irqreturn_t ufshcd_check_errors(struct ufs_hba *hba, u32 intr_status)
7273 {
7274 bool queue_eh_work = false;
7275 irqreturn_t retval = IRQ_NONE;
7276
7277 guard(spinlock_irqsave)(hba->host->host_lock);
7278 hba->errors |= UFSHCD_ERROR_MASK & intr_status;
7279
7280 if (hba->errors & INT_FATAL_ERRORS) {
7281 ufshcd_update_evt_hist(hba, UFS_EVT_FATAL_ERR,
7282 hba->errors);
7283 queue_eh_work = true;
7284 }
7285
7286 if (hba->errors & UIC_ERROR) {
7287 hba->uic_error = 0;
7288 retval = ufshcd_update_uic_error(hba);
7289 if (hba->uic_error)
7290 queue_eh_work = true;
7291 }
7292
7293 if (hba->errors & UFSHCD_UIC_HIBERN8_MASK) {
7294 dev_err(hba->dev,
7295 "%s: Auto Hibern8 %s failed - status: 0x%08x, upmcrs: 0x%08x\n",
7296 __func__, (hba->errors & UIC_HIBERNATE_ENTER) ?
7297 "Enter" : "Exit",
7298 hba->errors, ufshcd_get_upmcrs(hba));
7299 ufshcd_update_evt_hist(hba, UFS_EVT_AUTO_HIBERN8_ERR,
7300 hba->errors);
7301 ufshcd_set_link_broken(hba);
7302 queue_eh_work = true;
7303 }
7304
7305 if (queue_eh_work) {
7306 /*
7307 * update the transfer error masks to sticky bits, let's do this
7308 * irrespective of current ufshcd_state.
7309 */
7310 hba->saved_err |= hba->errors;
7311 hba->saved_uic_err |= hba->uic_error;
7312
7313 /* dump controller state before resetting */
7314 if ((hba->saved_err &
7315 (INT_FATAL_ERRORS | UFSHCD_UIC_HIBERN8_MASK)) ||
7316 (hba->saved_uic_err &&
7317 (hba->saved_uic_err != UFSHCD_UIC_PA_GENERIC_ERROR))) {
7318 dev_err(hba->dev, "%s: saved_err 0x%x saved_uic_err 0x%x\n",
7319 __func__, hba->saved_err,
7320 hba->saved_uic_err);
7321 ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE,
7322 "host_regs: ");
7323 ufshcd_print_pwr_info(hba);
7324 ufshcd_print_tx_eq_params(hba);
7325 }
7326 ufshcd_schedule_eh_work(hba);
7327 retval |= IRQ_HANDLED;
7328 }
7329 /*
7330 * if (!queue_eh_work) -
7331 * Other errors are either non-fatal where host recovers
7332 * itself without s/w intervention or errors that will be
7333 * handled by the SCSI core layer.
7334 */
7335 hba->errors = 0;
7336 hba->uic_error = 0;
7337
7338 return retval;
7339 }
7340
7341 /**
7342 * ufshcd_tmc_handler - handle task management function completion
7343 * @hba: per adapter instance
7344 *
7345 * Return:
7346 * IRQ_HANDLED - If interrupt is valid
7347 * IRQ_NONE - If invalid interrupt
7348 */
ufshcd_tmc_handler(struct ufs_hba * hba)7349 static irqreturn_t ufshcd_tmc_handler(struct ufs_hba *hba)
7350 {
7351 unsigned long flags, pending, issued;
7352 irqreturn_t ret = IRQ_NONE;
7353 int tag;
7354
7355 spin_lock_irqsave(hba->host->host_lock, flags);
7356 pending = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
7357 issued = hba->outstanding_tasks & ~pending;
7358 for_each_set_bit(tag, &issued, hba->nutmrs) {
7359 struct request *req = hba->tmf_rqs[tag];
7360 struct completion *c = req->end_io_data;
7361
7362 complete(c);
7363 ret = IRQ_HANDLED;
7364 }
7365 spin_unlock_irqrestore(hba->host->host_lock, flags);
7366
7367 return ret;
7368 }
7369
7370 /**
7371 * ufshcd_handle_mcq_cq_events - handle MCQ completion queue events
7372 * @hba: per adapter instance
7373 * @reset_iag: true, to reset MCQ IAG counter and timer of the CQ
7374 *
7375 * Return: IRQ_HANDLED if interrupt is handled.
7376 */
ufshcd_handle_mcq_cq_events(struct ufs_hba * hba,bool reset_iag)7377 static irqreturn_t ufshcd_handle_mcq_cq_events(struct ufs_hba *hba, bool reset_iag)
7378 {
7379 struct ufs_hw_queue *hwq;
7380 unsigned long outstanding_cqs;
7381 unsigned int nr_queues;
7382 int i, ret;
7383 u32 events, reg;
7384
7385 ret = ufshcd_vops_get_outstanding_cqs(hba, &outstanding_cqs);
7386 if (ret)
7387 outstanding_cqs = (1ULL << hba->nr_hw_queues) - 1;
7388
7389 /* Exclude the poll queues */
7390 nr_queues = hba->nr_hw_queues - hba->nr_queues[HCTX_TYPE_POLL];
7391 for_each_set_bit(i, &outstanding_cqs, nr_queues) {
7392 hwq = &hba->uhq[i];
7393
7394 events = ufshcd_mcq_read_cqis(hba, i);
7395 if (events)
7396 ufshcd_mcq_write_cqis(hba, events, i);
7397
7398 if (reset_iag) {
7399 reg = ufshcd_mcq_read_mcqiacr(hba, i);
7400 reg |= INT_AGGR_COUNTER_AND_TIMER_RESET;
7401 ufshcd_mcq_write_mcqiacr(hba, reg, i);
7402 }
7403
7404 if (events & UFSHCD_MCQ_CQIS_TAIL_ENT_PUSH_STS)
7405 ufshcd_mcq_poll_cqe_lock(hba, hwq);
7406 }
7407
7408 return IRQ_HANDLED;
7409 }
7410
7411 /**
7412 * ufshcd_sl_intr - Interrupt service routine
7413 * @hba: per adapter instance
7414 * @intr_status: contains interrupts generated by the controller
7415 *
7416 * Return:
7417 * IRQ_HANDLED - If interrupt is valid
7418 * IRQ_NONE - If invalid interrupt
7419 */
ufshcd_sl_intr(struct ufs_hba * hba,u32 intr_status)7420 static irqreturn_t ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
7421 {
7422 irqreturn_t retval = IRQ_NONE;
7423
7424 if (intr_status & UFSHCD_UIC_MASK)
7425 retval |= ufshcd_uic_cmd_compl(hba, intr_status);
7426
7427 if (intr_status & UFSHCD_ERROR_MASK || hba->errors)
7428 retval |= ufshcd_check_errors(hba, intr_status);
7429
7430 if (intr_status & UTP_TASK_REQ_COMPL)
7431 retval |= ufshcd_tmc_handler(hba);
7432
7433 if (intr_status & UTP_TRANSFER_REQ_COMPL)
7434 retval |= ufshcd_transfer_req_compl(hba);
7435
7436 if (intr_status & MCQ_CQ_EVENT_STATUS)
7437 retval |= ufshcd_handle_mcq_cq_events(hba, false);
7438
7439 if (intr_status & MCQ_IAG_EVENT_STATUS)
7440 retval |= ufshcd_handle_mcq_cq_events(hba, true);
7441
7442 return retval;
7443 }
7444
7445 /**
7446 * ufshcd_intr - Main interrupt service routine
7447 * @irq: irq number
7448 * @__hba: pointer to adapter instance
7449 *
7450 * Return:
7451 * IRQ_HANDLED - If interrupt is valid
7452 * IRQ_NONE - If invalid interrupt
7453 */
ufshcd_intr(int irq,void * __hba)7454 static irqreturn_t ufshcd_intr(int irq, void *__hba)
7455 {
7456 u32 last_intr_status, intr_status, enabled_intr_status = 0;
7457 irqreturn_t retval = IRQ_NONE;
7458 struct ufs_hba *hba = __hba;
7459 int retries = hba->nutrs;
7460
7461 last_intr_status = intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
7462
7463 /*
7464 * There could be max of hba->nutrs reqs in flight and in worst case
7465 * if the reqs get finished 1 by 1 after the interrupt status is
7466 * read, make sure we handle them by checking the interrupt status
7467 * again in a loop until we process all of the reqs before returning.
7468 */
7469 while (intr_status && retries--) {
7470 enabled_intr_status =
7471 intr_status & ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
7472 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
7473 if (enabled_intr_status)
7474 retval |= ufshcd_sl_intr(hba, enabled_intr_status);
7475
7476 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
7477 }
7478
7479 if (enabled_intr_status && retval == IRQ_NONE &&
7480 (!(enabled_intr_status & UTP_TRANSFER_REQ_COMPL) ||
7481 hba->outstanding_reqs) && !ufshcd_eh_in_progress(hba)) {
7482 dev_err(hba->dev, "%s: Unhandled interrupt 0x%08x (0x%08x, 0x%08x)\n",
7483 __func__,
7484 intr_status,
7485 last_intr_status,
7486 enabled_intr_status);
7487 ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE, "host_regs: ");
7488 }
7489
7490 return retval;
7491 }
7492
ufshcd_clear_tm_cmd(struct ufs_hba * hba,int tag)7493 static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag)
7494 {
7495 int err = 0;
7496 u32 mask = 1 << tag;
7497
7498 if (!test_bit(tag, &hba->outstanding_tasks))
7499 goto out;
7500
7501 ufshcd_utmrl_clear(hba, tag);
7502
7503 /* poll for max. 1 sec to clear door bell register by h/w */
7504 err = ufshcd_wait_for_register(hba,
7505 REG_UTP_TASK_REQ_DOOR_BELL,
7506 mask, 0, 1000, 1000);
7507
7508 dev_err(hba->dev, "Clearing task management function with tag %d %s\n",
7509 tag, err < 0 ? "failed" : "succeeded");
7510
7511 out:
7512 return err;
7513 }
7514
__ufshcd_issue_tm_cmd(struct ufs_hba * hba,struct utp_task_req_desc * treq,u8 tm_function)7515 static int __ufshcd_issue_tm_cmd(struct ufs_hba *hba,
7516 struct utp_task_req_desc *treq, u8 tm_function)
7517 {
7518 struct request_queue *q = hba->tmf_queue;
7519 struct Scsi_Host *host = hba->host;
7520 DECLARE_COMPLETION_ONSTACK(wait);
7521 struct request *req;
7522 unsigned long flags;
7523 int task_tag, err;
7524
7525 /*
7526 * blk_mq_alloc_request() is used here only to get a free tag.
7527 */
7528 req = blk_mq_alloc_request(q, REQ_OP_DRV_OUT, 0);
7529 if (IS_ERR(req))
7530 return PTR_ERR(req);
7531
7532 req->end_io_data = &wait;
7533 ufshcd_hold(hba);
7534
7535 spin_lock_irqsave(host->host_lock, flags);
7536
7537 task_tag = req->tag;
7538 hba->tmf_rqs[req->tag] = req;
7539 treq->upiu_req.req_header.task_tag = task_tag;
7540
7541 memcpy(hba->utmrdl_base_addr + task_tag, treq, sizeof(*treq));
7542 ufshcd_vops_setup_task_mgmt(hba, task_tag, tm_function);
7543
7544 __set_bit(task_tag, &hba->outstanding_tasks);
7545
7546 spin_unlock_irqrestore(host->host_lock, flags);
7547
7548 /* send command to the controller */
7549 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TASK_REQ_DOOR_BELL);
7550
7551 ufshcd_add_tm_upiu_trace(hba, task_tag, UFS_TM_SEND);
7552
7553 /* wait until the task management command is completed */
7554 err = wait_for_completion_io_timeout(&wait,
7555 msecs_to_jiffies(TM_CMD_TIMEOUT));
7556 if (!err) {
7557 ufshcd_add_tm_upiu_trace(hba, task_tag, UFS_TM_ERR);
7558 dev_err(hba->dev, "%s: task management cmd 0x%.2x timed-out\n",
7559 __func__, tm_function);
7560 if (ufshcd_clear_tm_cmd(hba, task_tag))
7561 dev_WARN(hba->dev, "%s: unable to clear tm cmd (slot %d) after timeout\n",
7562 __func__, task_tag);
7563 err = -ETIMEDOUT;
7564 } else {
7565 err = 0;
7566 memcpy(treq, hba->utmrdl_base_addr + task_tag, sizeof(*treq));
7567
7568 ufshcd_add_tm_upiu_trace(hba, task_tag, UFS_TM_COMP);
7569 }
7570
7571 spin_lock_irqsave(hba->host->host_lock, flags);
7572 hba->tmf_rqs[req->tag] = NULL;
7573 __clear_bit(task_tag, &hba->outstanding_tasks);
7574 spin_unlock_irqrestore(hba->host->host_lock, flags);
7575
7576 ufshcd_release(hba);
7577 blk_mq_free_request(req);
7578
7579 return err;
7580 }
7581
7582 /**
7583 * ufshcd_issue_tm_cmd - issues task management commands to controller
7584 * @hba: per adapter instance
7585 * @lun_id: LUN ID to which TM command is sent
7586 * @task_id: task ID to which the TM command is applicable
7587 * @tm_function: task management function opcode
7588 * @tm_response: task management service response return value
7589 *
7590 * Return: non-zero value on error, zero on success.
7591 */
ufshcd_issue_tm_cmd(struct ufs_hba * hba,int lun_id,int task_id,u8 tm_function,u8 * tm_response)7592 static int ufshcd_issue_tm_cmd(struct ufs_hba *hba, int lun_id, int task_id,
7593 u8 tm_function, u8 *tm_response)
7594 {
7595 struct utp_task_req_desc treq = { };
7596 enum utp_ocs ocs_value;
7597 int err;
7598
7599 /* Configure task request descriptor */
7600 treq.header.interrupt = 1;
7601 treq.header.ocs = OCS_INVALID_COMMAND_STATUS;
7602
7603 /* Configure task request UPIU */
7604 treq.upiu_req.req_header.transaction_code = UPIU_TRANSACTION_TASK_REQ;
7605 treq.upiu_req.req_header.lun = lun_id;
7606 treq.upiu_req.req_header.tm_function = tm_function;
7607
7608 /*
7609 * The host shall provide the same value for LUN field in the basic
7610 * header and for Input Parameter.
7611 */
7612 treq.upiu_req.input_param1 = cpu_to_be32(lun_id);
7613 treq.upiu_req.input_param2 = cpu_to_be32(task_id);
7614
7615 err = __ufshcd_issue_tm_cmd(hba, &treq, tm_function);
7616 if (err == -ETIMEDOUT)
7617 return err;
7618
7619 ocs_value = treq.header.ocs & MASK_OCS;
7620 if (ocs_value != OCS_SUCCESS)
7621 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n",
7622 __func__, ocs_value);
7623 else if (tm_response)
7624 *tm_response = be32_to_cpu(treq.upiu_rsp.output_param1) &
7625 MASK_TM_SERVICE_RESP;
7626 return err;
7627 }
7628
7629 /**
7630 * ufshcd_issue_devman_upiu_cmd - API for sending "utrd" type requests
7631 * @hba: per-adapter instance
7632 * @req_upiu: upiu request
7633 * @rsp_upiu: upiu reply
7634 * @desc_buff: pointer to descriptor buffer, NULL if NA
7635 * @buff_len: descriptor size, 0 if NA
7636 * @cmd_type: specifies the type (NOP, Query...)
7637 * @desc_op: descriptor operation
7638 *
7639 * Those type of requests uses UTP Transfer Request Descriptor - utrd.
7640 * Therefore, it "rides" the device management infrastructure: uses its tag and
7641 * tasks work queues.
7642 *
7643 * Since there is only one available tag for device management commands,
7644 * the caller is expected to hold the hba->dev_cmd.lock mutex.
7645 *
7646 * Return: 0 upon success; < 0 upon failure.
7647 */
ufshcd_issue_devman_upiu_cmd(struct ufs_hba * hba,struct utp_upiu_req * req_upiu,struct utp_upiu_req * rsp_upiu,u8 * desc_buff,int * buff_len,enum dev_cmd_type cmd_type,enum query_opcode desc_op)7648 static int ufshcd_issue_devman_upiu_cmd(struct ufs_hba *hba,
7649 struct utp_upiu_req *req_upiu,
7650 struct utp_upiu_req *rsp_upiu,
7651 u8 *desc_buff, int *buff_len,
7652 enum dev_cmd_type cmd_type,
7653 enum query_opcode desc_op)
7654 {
7655 struct scsi_cmnd *cmd = ufshcd_get_dev_mgmt_cmd(hba);
7656 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
7657 u32 tag;
7658 int err = 0;
7659 u8 upiu_flags;
7660
7661 /* Protects use of hba->dev_cmd. */
7662 lockdep_assert_held(&hba->dev_cmd.lock);
7663
7664 if (WARN_ON_ONCE(!cmd))
7665 return -ENOMEM;
7666
7667 tag = scsi_cmd_to_rq(cmd)->tag;
7668
7669 ufshcd_setup_dev_cmd(hba, cmd, cmd_type, 0, tag);
7670
7671 ufshcd_prepare_req_desc_hdr(hba, lrbp, &upiu_flags, DMA_NONE, 0);
7672
7673 /* update the task tag in the request upiu */
7674 req_upiu->header.task_tag = tag;
7675
7676 /* just copy the upiu request as it is */
7677 memcpy(lrbp->ucd_req_ptr, req_upiu, sizeof(*lrbp->ucd_req_ptr));
7678 if (desc_buff && desc_op == UPIU_QUERY_OPCODE_WRITE_DESC) {
7679 /* The Data Segment Area is optional depending upon the query
7680 * function value. for WRITE DESCRIPTOR, the data segment
7681 * follows right after the tsf.
7682 */
7683 memcpy(lrbp->ucd_req_ptr + 1, desc_buff, *buff_len);
7684 *buff_len = 0;
7685 }
7686
7687 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
7688
7689 err = ufshcd_issue_dev_cmd(hba, cmd, tag, dev_cmd_timeout);
7690 if (err)
7691 goto put_dev_mgmt_cmd;
7692
7693 /* just copy the upiu response as it is */
7694 memcpy(rsp_upiu, lrbp->ucd_rsp_ptr, sizeof(*rsp_upiu));
7695 if (desc_buff && (desc_op == UPIU_QUERY_OPCODE_READ_DESC ||
7696 desc_op == UPIU_QUERY_OPCODE_AGGREGATED_READ)) {
7697 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr + sizeof(*rsp_upiu);
7698 u16 resp_len = be16_to_cpu(lrbp->ucd_rsp_ptr->header
7699 .data_segment_length);
7700
7701 if (*buff_len >= resp_len) {
7702 memcpy(desc_buff, descp, resp_len);
7703 *buff_len = resp_len;
7704 } else {
7705 dev_warn(hba->dev,
7706 "%s: rsp size %d is bigger than buffer size %d",
7707 __func__, resp_len, *buff_len);
7708 *buff_len = 0;
7709 err = -EINVAL;
7710 }
7711 }
7712
7713 put_dev_mgmt_cmd:
7714 ufshcd_put_dev_mgmt_cmd(cmd);
7715
7716 return err;
7717 }
7718
7719 /**
7720 * ufshcd_exec_raw_upiu_cmd - API function for sending raw upiu commands
7721 * @hba: per-adapter instance
7722 * @req_upiu: upiu request
7723 * @rsp_upiu: upiu reply - only 8 DW as we do not support scsi commands
7724 * @msgcode: message code, one of UPIU Transaction Codes Initiator to Target
7725 * @desc_buff: pointer to descriptor buffer, NULL if NA
7726 * @buff_len: descriptor size, 0 if NA
7727 * @desc_op: descriptor operation
7728 *
7729 * Supports UTP Transfer requests (nop and query), and UTP Task
7730 * Management requests.
7731 * It is up to the caller to fill the upiu conent properly, as it will
7732 * be copied without any further input validations.
7733 *
7734 * Return: 0 upon success; < 0 upon failure.
7735 */
ufshcd_exec_raw_upiu_cmd(struct ufs_hba * hba,struct utp_upiu_req * req_upiu,struct utp_upiu_req * rsp_upiu,enum upiu_request_transaction msgcode,u8 * desc_buff,int * buff_len,enum query_opcode desc_op)7736 int ufshcd_exec_raw_upiu_cmd(struct ufs_hba *hba,
7737 struct utp_upiu_req *req_upiu,
7738 struct utp_upiu_req *rsp_upiu,
7739 enum upiu_request_transaction msgcode,
7740 u8 *desc_buff, int *buff_len,
7741 enum query_opcode desc_op)
7742 {
7743 int err;
7744 enum dev_cmd_type cmd_type = DEV_CMD_TYPE_QUERY;
7745 struct utp_task_req_desc treq = { };
7746 enum utp_ocs ocs_value;
7747 u8 tm_f = req_upiu->header.tm_function;
7748
7749 switch (msgcode) {
7750 case UPIU_TRANSACTION_NOP_OUT:
7751 cmd_type = DEV_CMD_TYPE_NOP;
7752 fallthrough;
7753 case UPIU_TRANSACTION_QUERY_REQ:
7754 ufshcd_dev_man_lock(hba);
7755 err = ufshcd_issue_devman_upiu_cmd(hba, req_upiu, rsp_upiu,
7756 desc_buff, buff_len,
7757 cmd_type, desc_op);
7758 ufshcd_dev_man_unlock(hba);
7759
7760 break;
7761 case UPIU_TRANSACTION_TASK_REQ:
7762 treq.header.interrupt = 1;
7763 treq.header.ocs = OCS_INVALID_COMMAND_STATUS;
7764
7765 memcpy(&treq.upiu_req, req_upiu, sizeof(*req_upiu));
7766
7767 err = __ufshcd_issue_tm_cmd(hba, &treq, tm_f);
7768 if (err == -ETIMEDOUT)
7769 break;
7770
7771 ocs_value = treq.header.ocs & MASK_OCS;
7772 if (ocs_value != OCS_SUCCESS) {
7773 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n", __func__,
7774 ocs_value);
7775 break;
7776 }
7777
7778 memcpy(rsp_upiu, &treq.upiu_rsp, sizeof(*rsp_upiu));
7779
7780 break;
7781 default:
7782 err = -EINVAL;
7783
7784 break;
7785 }
7786
7787 return err;
7788 }
7789
7790 /**
7791 * ufshcd_advanced_rpmb_req_handler - handle advanced RPMB request
7792 * @hba: per adapter instance
7793 * @req_upiu: upiu request
7794 * @rsp_upiu: upiu reply
7795 * @req_ehs: EHS field which contains Advanced RPMB Request Message
7796 * @rsp_ehs: EHS field which returns Advanced RPMB Response Message
7797 * @sg_cnt: The number of sg lists actually used
7798 * @sg_list: Pointer to SG list when DATA IN/OUT UPIU is required in ARPMB operation
7799 * @dir: DMA direction
7800 *
7801 * Return: 0 upon success; > 0 in case the UFS device reported an OCS error;
7802 * < 0 if another error occurred.
7803 */
ufshcd_advanced_rpmb_req_handler(struct ufs_hba * hba,struct utp_upiu_req * req_upiu,struct utp_upiu_req * rsp_upiu,struct ufs_ehs * req_ehs,struct ufs_ehs * rsp_ehs,int sg_cnt,struct scatterlist * sg_list,enum dma_data_direction dir)7804 int ufshcd_advanced_rpmb_req_handler(struct ufs_hba *hba, struct utp_upiu_req *req_upiu,
7805 struct utp_upiu_req *rsp_upiu, struct ufs_ehs *req_ehs,
7806 struct ufs_ehs *rsp_ehs, int sg_cnt, struct scatterlist *sg_list,
7807 enum dma_data_direction dir)
7808 {
7809 struct scsi_cmnd *cmd;
7810 struct ufshcd_lrb *lrbp;
7811 u32 tag;
7812 int err = 0;
7813 int result;
7814 u8 upiu_flags;
7815 u8 *ehs_data;
7816 u16 ehs_len;
7817 int ehs = (hba->capabilities & MASK_EHSLUTRD_SUPPORTED) ? 2 : 0;
7818
7819 ufshcd_dev_man_lock(hba);
7820
7821 cmd = ufshcd_get_dev_mgmt_cmd(hba);
7822
7823 if (WARN_ON_ONCE(!cmd)) {
7824 err = -ENOMEM;
7825 goto unlock;
7826 }
7827
7828 lrbp = scsi_cmd_priv(cmd);
7829 tag = scsi_cmd_to_rq(cmd)->tag;
7830
7831 ufshcd_setup_dev_cmd(hba, cmd, DEV_CMD_TYPE_RPMB, UFS_UPIU_RPMB_WLUN,
7832 tag);
7833
7834 ufshcd_prepare_req_desc_hdr(hba, lrbp, &upiu_flags, DMA_NONE, ehs);
7835
7836 /* update the task tag */
7837 req_upiu->header.task_tag = tag;
7838
7839 /* copy the UPIU(contains CDB) request as it is */
7840 memcpy(lrbp->ucd_req_ptr, req_upiu, sizeof(*lrbp->ucd_req_ptr));
7841 /* Copy EHS, starting with byte32, immediately after the CDB package */
7842 memcpy(lrbp->ucd_req_ptr + 1, req_ehs, sizeof(*req_ehs));
7843
7844 if (dir != DMA_NONE && sg_list)
7845 ufshcd_sgl_to_prdt(hba, lrbp, sg_cnt, sg_list);
7846
7847 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
7848
7849 err = ufshcd_issue_dev_cmd(hba, cmd, tag, ADVANCED_RPMB_REQ_TIMEOUT);
7850 if (err)
7851 goto put_dev_mgmt_cmd;
7852
7853 err = ufshcd_dev_cmd_completion(hba, lrbp);
7854 if (!err) {
7855 /* Just copy the upiu response as it is */
7856 memcpy(rsp_upiu, lrbp->ucd_rsp_ptr, sizeof(*rsp_upiu));
7857 /* Get the response UPIU result */
7858 result = (lrbp->ucd_rsp_ptr->header.response << 8) |
7859 lrbp->ucd_rsp_ptr->header.status;
7860
7861 ehs_len = lrbp->ucd_rsp_ptr->header.ehs_length;
7862 /*
7863 * Since the bLength in EHS indicates the total size of the EHS Header and EHS Data
7864 * in 32 Byte units, the value of the bLength Request/Response for Advanced RPMB
7865 * Message is 02h
7866 */
7867 if (ehs_len == 2 && rsp_ehs) {
7868 /* EHS data starts from byte32 of the devman UCD response area. */
7869 ehs_data = (u8 *)lrbp->ucd_rsp_ptr + EHS_OFFSET_IN_RESPONSE;
7870 memcpy(rsp_ehs, ehs_data, ehs_len * 32);
7871 }
7872 }
7873
7874 put_dev_mgmt_cmd:
7875 ufshcd_put_dev_mgmt_cmd(cmd);
7876
7877 unlock:
7878 ufshcd_dev_man_unlock(hba);
7879
7880 return err ? : result;
7881 }
7882
ufshcd_clear_lu_cmds(struct request * req,void * priv)7883 static bool ufshcd_clear_lu_cmds(struct request *req, void *priv)
7884 {
7885 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
7886 struct scsi_device *sdev = cmd->device;
7887 struct Scsi_Host *shost = sdev->host;
7888 struct ufs_hba *hba = shost_priv(shost);
7889 const u64 lun = *(u64 *)priv;
7890 const u32 tag = req->tag;
7891
7892 if (blk_mq_is_reserved_rq(req) || sdev->lun != lun)
7893 return true;
7894
7895 if (ufshcd_clear_cmd(hba, tag) < 0) {
7896 dev_err(hba->dev, "%s: failed to clear request %d\n", __func__,
7897 tag);
7898 return true;
7899 }
7900
7901 if (hba->mcq_enabled) {
7902 struct ufs_hw_queue *hwq = ufshcd_mcq_req_to_hwq(hba, req);
7903
7904 if (hwq)
7905 ufshcd_mcq_poll_cqe_lock(hba, hwq);
7906 return true;
7907 }
7908
7909 ufshcd_compl_one_cqe(hba, tag, NULL);
7910 return true;
7911 }
7912
7913 /**
7914 * ufshcd_eh_device_reset_handler() - Reset a single logical unit.
7915 * @cmd: SCSI command pointer
7916 *
7917 * Return: SUCCESS or FAILED.
7918 */
ufshcd_eh_device_reset_handler(struct scsi_cmnd * cmd)7919 static int ufshcd_eh_device_reset_handler(struct scsi_cmnd *cmd)
7920 {
7921 struct Scsi_Host *host;
7922 struct ufs_hba *hba;
7923 int err;
7924 u8 resp = 0xF, lun;
7925
7926 host = cmd->device->host;
7927 hba = shost_priv(host);
7928
7929 lun = ufshcd_scsi_to_upiu_lun(cmd->device->lun);
7930 err = ufshcd_issue_tm_cmd(hba, lun, 0, UFS_LOGICAL_RESET, &resp);
7931 if (err) {
7932 } else if (resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
7933 err = resp;
7934 } else {
7935 /* clear the commands that were pending for corresponding LUN */
7936 blk_mq_tagset_busy_iter(&hba->host->tag_set,
7937 ufshcd_clear_lu_cmds,
7938 &cmd->device->lun);
7939 }
7940
7941 hba->req_abort_count = 0;
7942 ufshcd_update_evt_hist(hba, UFS_EVT_DEV_RESET, (u32)err);
7943 if (!err) {
7944 err = SUCCESS;
7945 } else {
7946 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
7947 err = FAILED;
7948 }
7949 return err;
7950 }
7951
ufshcd_set_req_abort_skip(struct ufs_hba * hba,unsigned long bitmap)7952 static void ufshcd_set_req_abort_skip(struct ufs_hba *hba, unsigned long bitmap)
7953 {
7954 int tag;
7955
7956 for_each_set_bit(tag, &bitmap, hba->nutrs) {
7957 struct scsi_cmnd *cmd = ufshcd_tag_to_cmd(hba, tag);
7958 struct ufshcd_lrb *lrbp;
7959
7960 if (!cmd)
7961 continue;
7962
7963 lrbp = scsi_cmd_priv(cmd);
7964 lrbp->req_abort_skip = true;
7965 }
7966 }
7967
7968 /**
7969 * ufshcd_try_to_abort_task - abort a specific task
7970 * @hba: Pointer to adapter instance
7971 * @tag: Tag of the task to be aborted
7972 *
7973 * Abort the pending command in device by sending UFS_ABORT_TASK task management
7974 * command, and in host controller by clearing the door-bell register. There can
7975 * be race between controller sending the command to the device while abort is
7976 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
7977 * really issued and then try to abort it.
7978 *
7979 * Return: zero on success, non-zero on failure.
7980 */
ufshcd_try_to_abort_task(struct ufs_hba * hba,int tag)7981 int ufshcd_try_to_abort_task(struct ufs_hba *hba, int tag)
7982 {
7983 struct scsi_cmnd *cmd = ufshcd_tag_to_cmd(hba, tag);
7984 struct ufshcd_lrb *lrbp;
7985 int err;
7986 int poll_cnt;
7987 u8 resp = 0xF;
7988
7989 if (!cmd)
7990 return -EINVAL;
7991
7992 lrbp = scsi_cmd_priv(cmd);
7993
7994 for (poll_cnt = 100; poll_cnt; poll_cnt--) {
7995 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, tag, UFS_QUERY_TASK,
7996 &resp);
7997 if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED) {
7998 /* cmd pending in the device */
7999 dev_err(hba->dev, "%s: cmd pending in the device. tag = %d\n",
8000 __func__, tag);
8001 break;
8002 } else if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
8003 /*
8004 * cmd not pending in the device, check if it is
8005 * in transition.
8006 */
8007 dev_info(
8008 hba->dev,
8009 "%s: cmd with tag %d not pending in the device.\n",
8010 __func__, tag);
8011 if (!ufshcd_cmd_inflight(cmd)) {
8012 dev_info(hba->dev,
8013 "%s: cmd with tag=%d completed.\n",
8014 __func__, tag);
8015 return 0;
8016 }
8017 usleep_range(100, 200);
8018 } else {
8019 dev_err(hba->dev,
8020 "%s: no response from device. tag = %d, err %d\n",
8021 __func__, tag, err);
8022 return err ? : resp;
8023 }
8024 }
8025
8026 if (!poll_cnt)
8027 return -EBUSY;
8028
8029 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, tag, UFS_ABORT_TASK, &resp);
8030 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
8031 if (!err) {
8032 err = resp; /* service response error */
8033 dev_err(hba->dev, "%s: issued. tag = %d, err %d\n",
8034 __func__, tag, err);
8035 }
8036 return err;
8037 }
8038
8039 err = ufshcd_clear_cmd(hba, tag);
8040 if (err)
8041 dev_err(hba->dev, "%s: Failed clearing cmd at tag %d, err %d\n",
8042 __func__, tag, err);
8043
8044 return err;
8045 }
8046
8047 /**
8048 * ufshcd_abort - scsi host template eh_abort_handler callback
8049 * @cmd: SCSI command pointer
8050 *
8051 * Return: SUCCESS or FAILED.
8052 */
ufshcd_abort(struct scsi_cmnd * cmd)8053 static int ufshcd_abort(struct scsi_cmnd *cmd)
8054 {
8055 struct Scsi_Host *host = cmd->device->host;
8056 struct ufs_hba *hba = shost_priv(host);
8057 struct request *rq = scsi_cmd_to_rq(cmd);
8058 int tag = rq->tag;
8059 struct ufshcd_lrb *lrbp = scsi_cmd_priv(cmd);
8060 unsigned long flags;
8061 int err = FAILED;
8062 bool outstanding;
8063 u32 reg;
8064
8065 ufshcd_hold(hba);
8066
8067 if (!hba->mcq_enabled) {
8068 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
8069 if (!test_bit(tag, &hba->outstanding_reqs)) {
8070 /* If command is already aborted/completed, return FAILED. */
8071 dev_err(hba->dev,
8072 "%s: cmd at tag %d already completed, outstanding=0x%lx, doorbell=0x%x\n",
8073 __func__, tag, hba->outstanding_reqs, reg);
8074 goto release;
8075 }
8076 }
8077
8078 /* Print Transfer Request of aborted task */
8079 dev_info(hba->dev, "%s: Device abort task at tag %d\n", __func__, tag);
8080
8081 /*
8082 * Print detailed info about aborted request.
8083 * As more than one request might get aborted at the same time,
8084 * print full information only for the first aborted request in order
8085 * to reduce repeated printouts. For other aborted requests only print
8086 * basic details.
8087 */
8088 if (ufshcd_is_scsi_cmd(cmd))
8089 scsi_print_command(cmd);
8090 if (!hba->req_abort_count) {
8091 ufshcd_update_evt_hist(hba, UFS_EVT_ABORT, tag);
8092 ufshcd_print_evt_hist(hba);
8093 ufshcd_print_host_state(hba);
8094 ufshcd_print_pwr_info(hba);
8095 ufshcd_print_tx_eq_params(hba);
8096 ufshcd_print_tr(hba, cmd, true);
8097 } else {
8098 ufshcd_print_tr(hba, cmd, false);
8099 }
8100 hba->req_abort_count++;
8101
8102 if (!hba->mcq_enabled && !(reg & (1 << tag))) {
8103 /* only execute this code in single doorbell mode */
8104 dev_err(hba->dev,
8105 "%s: cmd was completed, but without a notifying intr, tag = %d",
8106 __func__, tag);
8107 __ufshcd_transfer_req_compl(hba, 1UL << tag);
8108 goto release;
8109 }
8110
8111 /*
8112 * Task abort to the device W-LUN is illegal. When this command
8113 * will fail, due to spec violation, scsi err handling next step
8114 * will be to send LU reset which, again, is a spec violation.
8115 * To avoid these unnecessary/illegal steps, first we clean up
8116 * the lrb taken by this cmd and re-set it in outstanding_reqs,
8117 * then queue the eh_work and bail.
8118 */
8119 if (lrbp->lun == UFS_UPIU_UFS_DEVICE_WLUN) {
8120 ufshcd_update_evt_hist(hba, UFS_EVT_ABORT, lrbp->lun);
8121
8122 spin_lock_irqsave(host->host_lock, flags);
8123 hba->force_reset = true;
8124 ufshcd_schedule_eh_work(hba);
8125 spin_unlock_irqrestore(host->host_lock, flags);
8126 goto release;
8127 }
8128
8129 if (hba->mcq_enabled) {
8130 /* MCQ mode. Branch off to handle abort for mcq mode */
8131 err = ufshcd_mcq_abort(cmd);
8132 goto release;
8133 }
8134
8135 /* Skip task abort in case previous aborts failed and report failure */
8136 if (lrbp->req_abort_skip) {
8137 dev_err(hba->dev, "%s: skipping abort\n", __func__);
8138 ufshcd_set_req_abort_skip(hba, hba->outstanding_reqs);
8139 goto release;
8140 }
8141
8142 if (blk_mq_is_reserved_rq(rq))
8143 err = ufshcd_clear_cmd(hba, tag);
8144 else
8145 err = ufshcd_try_to_abort_task(hba, tag);
8146 if (err) {
8147 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
8148 ufshcd_set_req_abort_skip(hba, hba->outstanding_reqs);
8149 err = FAILED;
8150 goto release;
8151 }
8152
8153 /*
8154 * Clear the corresponding bit from outstanding_reqs since the command
8155 * has been aborted successfully.
8156 */
8157 spin_lock_irqsave(&hba->outstanding_lock, flags);
8158 outstanding = __test_and_clear_bit(tag, &hba->outstanding_reqs);
8159 spin_unlock_irqrestore(&hba->outstanding_lock, flags);
8160
8161 if (outstanding)
8162 ufshcd_release_scsi_cmd(hba, cmd);
8163
8164 err = SUCCESS;
8165
8166 release:
8167 /* Matches the ufshcd_hold() call at the start of this function. */
8168 ufshcd_release(hba);
8169 return err;
8170 }
8171
8172 /**
8173 * ufshcd_process_probe_result - Process the ufshcd_probe_hba() result.
8174 * @hba: UFS host controller instance.
8175 * @probe_start: time when the ufshcd_probe_hba() call started.
8176 * @ret: ufshcd_probe_hba() return value.
8177 */
ufshcd_process_probe_result(struct ufs_hba * hba,ktime_t probe_start,int ret)8178 static void ufshcd_process_probe_result(struct ufs_hba *hba,
8179 ktime_t probe_start, int ret)
8180 {
8181 unsigned long flags;
8182
8183 spin_lock_irqsave(hba->host->host_lock, flags);
8184 if (ret)
8185 hba->ufshcd_state = UFSHCD_STATE_ERROR;
8186 else if (hba->ufshcd_state == UFSHCD_STATE_RESET)
8187 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
8188 spin_unlock_irqrestore(hba->host->host_lock, flags);
8189
8190 trace_ufshcd_init(hba, ret,
8191 ktime_to_us(ktime_sub(ktime_get(), probe_start)),
8192 hba->curr_dev_pwr_mode, hba->uic_link_state);
8193 }
8194
8195 /**
8196 * ufshcd_host_reset_and_restore - reset and restore host controller
8197 * @hba: per-adapter instance
8198 *
8199 * Note that host controller reset may issue DME_RESET to
8200 * local and remote (device) Uni-Pro stack and the attributes
8201 * are reset to default state.
8202 *
8203 * Return: zero on success, non-zero on failure.
8204 */
ufshcd_host_reset_and_restore(struct ufs_hba * hba)8205 static int ufshcd_host_reset_and_restore(struct ufs_hba *hba)
8206 {
8207 int err;
8208
8209 /*
8210 * Stop the host controller and complete the requests
8211 * cleared by h/w
8212 */
8213 ufshcd_hba_stop(hba);
8214 hba->silence_err_logs = true;
8215 ufshcd_complete_requests(hba, true);
8216 hba->silence_err_logs = false;
8217
8218 /* scale up clocks to max frequency before full reinitialization */
8219 if (ufshcd_is_clkscaling_supported(hba))
8220 ufshcd_scale_clks(hba, ULONG_MAX, true);
8221
8222 err = ufshcd_hba_enable(hba);
8223
8224 /* Establish the link again and restore the device */
8225 if (!err) {
8226 ktime_t probe_start = ktime_get();
8227
8228 err = ufshcd_device_init(hba, /*init_dev_params=*/false);
8229 if (!err)
8230 err = ufshcd_probe_hba(hba, false);
8231 ufshcd_process_probe_result(hba, probe_start, err);
8232 }
8233
8234 if (err)
8235 dev_err(hba->dev, "%s: Host init failed %d\n", __func__, err);
8236 ufshcd_update_evt_hist(hba, UFS_EVT_HOST_RESET, (u32)err);
8237 return err;
8238 }
8239
8240 /**
8241 * ufshcd_reset_and_restore - reset and re-initialize host/device
8242 * @hba: per-adapter instance
8243 *
8244 * Reset and recover device, host and re-establish link. This
8245 * is helpful to recover the communication in fatal error conditions.
8246 *
8247 * Return: zero on success, non-zero on failure.
8248 */
ufshcd_reset_and_restore(struct ufs_hba * hba)8249 static int ufshcd_reset_and_restore(struct ufs_hba *hba)
8250 {
8251 u32 saved_err = 0;
8252 u32 saved_uic_err = 0;
8253 int err = 0;
8254 unsigned long flags;
8255 int retries = MAX_HOST_RESET_RETRIES;
8256
8257 spin_lock_irqsave(hba->host->host_lock, flags);
8258 do {
8259 /*
8260 * This is a fresh start, cache and clear saved error first,
8261 * in case new error generated during reset and restore.
8262 */
8263 saved_err |= hba->saved_err;
8264 saved_uic_err |= hba->saved_uic_err;
8265 hba->saved_err = 0;
8266 hba->saved_uic_err = 0;
8267 hba->force_reset = false;
8268 hba->ufshcd_state = UFSHCD_STATE_RESET;
8269 spin_unlock_irqrestore(hba->host->host_lock, flags);
8270
8271 /* Reset the attached device */
8272 ufshcd_device_reset(hba);
8273
8274 err = ufshcd_host_reset_and_restore(hba);
8275
8276 spin_lock_irqsave(hba->host->host_lock, flags);
8277 if (err)
8278 continue;
8279 /* Do not exit unless operational or dead */
8280 if (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL &&
8281 hba->ufshcd_state != UFSHCD_STATE_ERROR &&
8282 hba->ufshcd_state != UFSHCD_STATE_EH_SCHEDULED_NON_FATAL)
8283 err = -EAGAIN;
8284 } while (err && --retries);
8285
8286 /*
8287 * Inform scsi mid-layer that we did reset and allow to handle
8288 * Unit Attention properly.
8289 */
8290 scsi_report_bus_reset(hba->host, 0);
8291 if (err) {
8292 hba->ufshcd_state = UFSHCD_STATE_ERROR;
8293 hba->saved_err |= saved_err;
8294 hba->saved_uic_err |= saved_uic_err;
8295 }
8296 spin_unlock_irqrestore(hba->host->host_lock, flags);
8297
8298 return err;
8299 }
8300
8301 /**
8302 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
8303 * @cmd: SCSI command pointer
8304 *
8305 * Return: SUCCESS or FAILED.
8306 */
ufshcd_eh_host_reset_handler(struct scsi_cmnd * cmd)8307 static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd)
8308 {
8309 int err = SUCCESS;
8310 unsigned long flags;
8311 struct ufs_hba *hba;
8312
8313 hba = shost_priv(cmd->device->host);
8314
8315 /*
8316 * If runtime PM sent SSU and got a timeout, scsi_error_handler is
8317 * stuck in this function waiting for flush_work(&hba->eh_work). And
8318 * ufshcd_err_handler(eh_work) is stuck waiting for runtime PM. Do
8319 * ufshcd_link_recovery instead of eh_work to prevent deadlock.
8320 */
8321 if (hba->pm_op_in_progress) {
8322 if (ufshcd_link_recovery(hba))
8323 err = FAILED;
8324
8325 return err;
8326 }
8327
8328 spin_lock_irqsave(hba->host->host_lock, flags);
8329 hba->force_reset = true;
8330 ufshcd_schedule_eh_work(hba);
8331 dev_err(hba->dev, "%s: reset in progress - 1\n", __func__);
8332 spin_unlock_irqrestore(hba->host->host_lock, flags);
8333
8334 flush_work(&hba->eh_work);
8335
8336 spin_lock_irqsave(hba->host->host_lock, flags);
8337 if (hba->ufshcd_state == UFSHCD_STATE_ERROR)
8338 err = FAILED;
8339 spin_unlock_irqrestore(hba->host->host_lock, flags);
8340
8341 return err;
8342 }
8343
8344 /**
8345 * ufshcd_get_max_icc_level - calculate the ICC level
8346 * @sup_curr_uA: max. current supported by the regulator
8347 * @start_scan: row at the desc table to start scan from
8348 * @buff: power descriptor buffer
8349 *
8350 * Return: calculated max ICC level for specific regulator.
8351 */
ufshcd_get_max_icc_level(int sup_curr_uA,u32 start_scan,const char * buff)8352 static u32 ufshcd_get_max_icc_level(int sup_curr_uA, u32 start_scan,
8353 const char *buff)
8354 {
8355 int i;
8356 int curr_uA;
8357 u16 data;
8358 u16 unit;
8359
8360 for (i = start_scan; i >= 0; i--) {
8361 data = get_unaligned_be16(&buff[2 * i]);
8362 unit = (data & ATTR_ICC_LVL_UNIT_MASK) >>
8363 ATTR_ICC_LVL_UNIT_OFFSET;
8364 curr_uA = data & ATTR_ICC_LVL_VALUE_MASK;
8365 switch (unit) {
8366 case UFSHCD_NANO_AMP:
8367 curr_uA = curr_uA / 1000;
8368 break;
8369 case UFSHCD_MILI_AMP:
8370 curr_uA = curr_uA * 1000;
8371 break;
8372 case UFSHCD_AMP:
8373 curr_uA = curr_uA * 1000 * 1000;
8374 break;
8375 case UFSHCD_MICRO_AMP:
8376 default:
8377 break;
8378 }
8379 if (sup_curr_uA >= curr_uA)
8380 break;
8381 }
8382 if (i < 0) {
8383 i = 0;
8384 pr_err("%s: Couldn't find valid icc_level = %d", __func__, i);
8385 }
8386
8387 return (u32)i;
8388 }
8389
8390 /**
8391 * ufshcd_find_max_sup_active_icc_level - calculate the max ICC level
8392 * In case regulators are not initialized we'll return 0
8393 * @hba: per-adapter instance
8394 * @desc_buf: power descriptor buffer to extract ICC levels from.
8395 *
8396 * Return: calculated ICC level.
8397 */
ufshcd_find_max_sup_active_icc_level(struct ufs_hba * hba,const u8 * desc_buf)8398 static u32 ufshcd_find_max_sup_active_icc_level(struct ufs_hba *hba,
8399 const u8 *desc_buf)
8400 {
8401 u32 icc_level = 0;
8402
8403 if (!hba->vreg_info.vcc || !hba->vreg_info.vccq ||
8404 !hba->vreg_info.vccq2) {
8405 /*
8406 * Using dev_dbg to avoid messages during runtime PM to avoid
8407 * never-ending cycles of messages written back to storage by
8408 * user space causing runtime resume, causing more messages and
8409 * so on.
8410 */
8411 dev_dbg(hba->dev,
8412 "%s: Regulator capability was not set, actvIccLevel=%d",
8413 __func__, icc_level);
8414 goto out;
8415 }
8416
8417 if (hba->vreg_info.vcc->max_uA)
8418 icc_level = ufshcd_get_max_icc_level(
8419 hba->vreg_info.vcc->max_uA,
8420 POWER_DESC_MAX_ACTV_ICC_LVLS - 1,
8421 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCC_0]);
8422
8423 if (hba->vreg_info.vccq->max_uA)
8424 icc_level = ufshcd_get_max_icc_level(
8425 hba->vreg_info.vccq->max_uA,
8426 icc_level,
8427 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ_0]);
8428
8429 if (hba->vreg_info.vccq2->max_uA)
8430 icc_level = ufshcd_get_max_icc_level(
8431 hba->vreg_info.vccq2->max_uA,
8432 icc_level,
8433 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ2_0]);
8434 out:
8435 return icc_level;
8436 }
8437
ufshcd_set_active_icc_lvl(struct ufs_hba * hba)8438 static void ufshcd_set_active_icc_lvl(struct ufs_hba *hba)
8439 {
8440 int ret;
8441 u8 *desc_buf;
8442 u32 icc_level;
8443
8444 desc_buf = kzalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
8445 if (!desc_buf)
8446 return;
8447
8448 ret = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_POWER, 0, 0,
8449 desc_buf, QUERY_DESC_MAX_SIZE);
8450 if (ret) {
8451 dev_err(hba->dev,
8452 "%s: Failed reading power descriptor ret = %d",
8453 __func__, ret);
8454 goto out;
8455 }
8456
8457 icc_level = ufshcd_find_max_sup_active_icc_level(hba, desc_buf);
8458 dev_dbg(hba->dev, "%s: setting icc_level 0x%x", __func__, icc_level);
8459
8460 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
8461 QUERY_ATTR_IDN_ACTIVE_ICC_LVL, 0, 0, &icc_level);
8462
8463 if (ret)
8464 dev_err(hba->dev,
8465 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
8466 __func__, icc_level, ret);
8467
8468 out:
8469 kfree(desc_buf);
8470 }
8471
ufshcd_blk_pm_runtime_init(struct scsi_device * sdev)8472 static inline void ufshcd_blk_pm_runtime_init(struct scsi_device *sdev)
8473 {
8474 struct Scsi_Host *shost = sdev->host;
8475
8476 scsi_autopm_get_device(sdev);
8477 blk_pm_runtime_init(sdev->request_queue, &sdev->sdev_gendev);
8478 if (sdev->rpm_autosuspend)
8479 pm_runtime_set_autosuspend_delay(&sdev->sdev_gendev,
8480 shost->rpm_autosuspend_delay);
8481 scsi_autopm_put_device(sdev);
8482 }
8483
8484 /**
8485 * ufshcd_scsi_add_wlus - Adds required W-LUs
8486 * @hba: per-adapter instance
8487 *
8488 * UFS device specification requires the UFS devices to support 4 well known
8489 * logical units:
8490 * "REPORT_LUNS" (address: 01h)
8491 * "UFS Device" (address: 50h)
8492 * "RPMB" (address: 44h)
8493 * "BOOT" (address: 30h)
8494 * UFS device's power management needs to be controlled by "POWER CONDITION"
8495 * field of SSU (START STOP UNIT) command. But this "power condition" field
8496 * will take effect only when its sent to "UFS device" well known logical unit
8497 * hence we require the scsi_device instance to represent this logical unit in
8498 * order for the UFS host driver to send the SSU command for power management.
8499 *
8500 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
8501 * Block) LU so user space process can control this LU. User space may also
8502 * want to have access to BOOT LU.
8503 *
8504 * This function adds scsi device instances for each of all well known LUs
8505 * (except "REPORT LUNS" LU).
8506 *
8507 * Return: zero on success (all required W-LUs are added successfully),
8508 * non-zero error value on failure (if failed to add any of the required W-LU).
8509 */
ufshcd_scsi_add_wlus(struct ufs_hba * hba)8510 static int ufshcd_scsi_add_wlus(struct ufs_hba *hba)
8511 {
8512 int ret = 0;
8513 struct scsi_device *sdev_boot, *sdev_rpmb;
8514
8515 hba->ufs_device_wlun = __scsi_add_device(hba->host, 0, 0,
8516 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN), NULL);
8517 if (IS_ERR(hba->ufs_device_wlun)) {
8518 ret = PTR_ERR(hba->ufs_device_wlun);
8519 hba->ufs_device_wlun = NULL;
8520 goto out;
8521 }
8522 scsi_device_put(hba->ufs_device_wlun);
8523
8524 sdev_rpmb = __scsi_add_device(hba->host, 0, 0,
8525 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN), NULL);
8526 if (IS_ERR(sdev_rpmb)) {
8527 ret = PTR_ERR(sdev_rpmb);
8528 hba->ufs_rpmb_wlun = NULL;
8529 dev_err(hba->dev, "%s: RPMB WLUN not found\n", __func__);
8530 goto remove_ufs_device_wlun;
8531 }
8532 hba->ufs_rpmb_wlun = sdev_rpmb;
8533 ufshcd_blk_pm_runtime_init(sdev_rpmb);
8534 scsi_device_put(sdev_rpmb);
8535
8536 sdev_boot = __scsi_add_device(hba->host, 0, 0,
8537 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN), NULL);
8538 if (IS_ERR(sdev_boot)) {
8539 dev_err(hba->dev, "%s: BOOT WLUN not found\n", __func__);
8540 } else {
8541 ufshcd_blk_pm_runtime_init(sdev_boot);
8542 scsi_device_put(sdev_boot);
8543 }
8544 goto out;
8545
8546 remove_ufs_device_wlun:
8547 scsi_remove_device(hba->ufs_device_wlun);
8548 out:
8549 return ret;
8550 }
8551
ufshcd_wb_probe(struct ufs_hba * hba,const u8 * desc_buf)8552 static void ufshcd_wb_probe(struct ufs_hba *hba, const u8 *desc_buf)
8553 {
8554 struct ufs_dev_info *dev_info = &hba->dev_info;
8555 u8 lun;
8556 u32 d_lu_wb_buf_alloc;
8557 u32 ext_ufs_feature;
8558
8559 if (!ufshcd_is_wb_allowed(hba))
8560 return;
8561
8562 /*
8563 * Probe WB only for UFS-2.2 and UFS-3.1 (and later) devices or
8564 * UFS devices with quirk UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES
8565 * enabled
8566 */
8567 if (!(dev_info->wspecversion >= 0x310 ||
8568 dev_info->wspecversion == 0x220 ||
8569 (hba->dev_quirks & UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES)))
8570 goto wb_disabled;
8571
8572 ext_ufs_feature = get_unaligned_be32(desc_buf +
8573 DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP);
8574
8575 if (!(ext_ufs_feature & UFS_DEV_WRITE_BOOSTER_SUP))
8576 goto wb_disabled;
8577
8578 /*
8579 * WB may be supported but not configured while provisioning. The spec
8580 * says, in dedicated wb buffer mode, a max of 1 lun would have wb
8581 * buffer configured.
8582 */
8583 dev_info->wb_buffer_type = desc_buf[DEVICE_DESC_PARAM_WB_TYPE];
8584
8585 dev_info->ext_wb_sup = get_unaligned_be16(desc_buf +
8586 DEVICE_DESC_PARAM_EXT_WB_SUP);
8587
8588 dev_info->b_presrv_uspc_en =
8589 desc_buf[DEVICE_DESC_PARAM_WB_PRESRV_USRSPC_EN];
8590
8591 if (dev_info->wb_buffer_type == WB_BUF_MODE_SHARED) {
8592 if (!get_unaligned_be32(desc_buf +
8593 DEVICE_DESC_PARAM_WB_SHARED_ALLOC_UNITS))
8594 goto wb_disabled;
8595 } else {
8596 for (lun = 0; lun < UFS_UPIU_MAX_WB_LUN_ID; lun++) {
8597 d_lu_wb_buf_alloc = 0;
8598 ufshcd_read_unit_desc_param(hba,
8599 lun,
8600 UNIT_DESC_PARAM_WB_BUF_ALLOC_UNITS,
8601 (u8 *)&d_lu_wb_buf_alloc,
8602 sizeof(d_lu_wb_buf_alloc));
8603 if (d_lu_wb_buf_alloc) {
8604 dev_info->wb_dedicated_lu = lun;
8605 break;
8606 }
8607 }
8608
8609 if (!d_lu_wb_buf_alloc)
8610 goto wb_disabled;
8611 }
8612
8613 if (!ufshcd_is_wb_buf_lifetime_available(hba))
8614 goto wb_disabled;
8615
8616 return;
8617
8618 wb_disabled:
8619 hba->caps &= ~UFSHCD_CAP_WB_EN;
8620 }
8621
ufshcd_temp_notif_probe(struct ufs_hba * hba,const u8 * desc_buf)8622 static void ufshcd_temp_notif_probe(struct ufs_hba *hba, const u8 *desc_buf)
8623 {
8624 struct ufs_dev_info *dev_info = &hba->dev_info;
8625 u32 ext_ufs_feature;
8626 u8 mask = 0;
8627
8628 if (!(hba->caps & UFSHCD_CAP_TEMP_NOTIF) || dev_info->wspecversion < 0x300)
8629 return;
8630
8631 ext_ufs_feature = get_unaligned_be32(desc_buf + DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP);
8632
8633 if (ext_ufs_feature & UFS_DEV_LOW_TEMP_NOTIF)
8634 mask |= MASK_EE_TOO_LOW_TEMP;
8635
8636 if (ext_ufs_feature & UFS_DEV_HIGH_TEMP_NOTIF)
8637 mask |= MASK_EE_TOO_HIGH_TEMP;
8638
8639 if (mask) {
8640 ufshcd_enable_ee(hba, mask);
8641 ufs_hwmon_probe(hba, mask);
8642 }
8643 }
8644
ufshcd_device_lvl_exception_probe(struct ufs_hba * hba,u8 * desc_buf)8645 static void ufshcd_device_lvl_exception_probe(struct ufs_hba *hba, u8 *desc_buf)
8646 {
8647 u32 ext_ufs_feature;
8648
8649 if (hba->dev_info.wspecversion < 0x410)
8650 return;
8651
8652 ext_ufs_feature = get_unaligned_be32(desc_buf +
8653 DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP);
8654 if (!(ext_ufs_feature & UFS_DEV_LVL_EXCEPTION_SUP))
8655 return;
8656
8657 atomic_set(&hba->dev_lvl_exception_count, 0);
8658 ufshcd_enable_ee(hba, MASK_EE_DEV_LVL_EXCEPTION);
8659 }
8660
ufshcd_set_rtt(struct ufs_hba * hba)8661 static void ufshcd_set_rtt(struct ufs_hba *hba)
8662 {
8663 struct ufs_dev_info *dev_info = &hba->dev_info;
8664 u32 rtt = 0;
8665 u32 dev_rtt = 0;
8666
8667 /* RTT override makes sense only for UFS-4.0 and above */
8668 if (dev_info->wspecversion < 0x400)
8669 return;
8670
8671 if (ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
8672 QUERY_ATTR_IDN_MAX_NUM_OF_RTT, 0, 0, &dev_rtt)) {
8673 dev_err(hba->dev, "failed reading bMaxNumOfRTT\n");
8674 return;
8675 }
8676
8677 /* do not override if it was already written */
8678 if (dev_rtt != DEFAULT_MAX_NUM_RTT)
8679 return;
8680
8681 rtt = min_t(int, dev_info->rtt_cap, hba->nortt);
8682
8683 if (rtt == dev_rtt)
8684 return;
8685
8686 if (ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
8687 QUERY_ATTR_IDN_MAX_NUM_OF_RTT, 0, 0, &rtt))
8688 dev_err(hba->dev, "failed writing bMaxNumOfRTT\n");
8689 }
8690
ufshcd_fixup_dev_quirks(struct ufs_hba * hba,const struct ufs_dev_quirk * fixups)8691 void ufshcd_fixup_dev_quirks(struct ufs_hba *hba,
8692 const struct ufs_dev_quirk *fixups)
8693 {
8694 const struct ufs_dev_quirk *f;
8695 struct ufs_dev_info *dev_info = &hba->dev_info;
8696
8697 if (!fixups)
8698 return;
8699
8700 for (f = fixups; f->quirk; f++) {
8701 if ((f->wmanufacturerid == dev_info->wmanufacturerid ||
8702 f->wmanufacturerid == UFS_ANY_VENDOR) &&
8703 ((dev_info->model &&
8704 STR_PRFX_EQUAL(f->model, dev_info->model)) ||
8705 !strcmp(f->model, UFS_ANY_MODEL)))
8706 hba->dev_quirks |= f->quirk;
8707 }
8708 }
8709 EXPORT_SYMBOL_GPL(ufshcd_fixup_dev_quirks);
8710
ufs_fixup_device_setup(struct ufs_hba * hba)8711 static void ufs_fixup_device_setup(struct ufs_hba *hba)
8712 {
8713 /* fix by general quirk table */
8714 ufshcd_fixup_dev_quirks(hba, ufs_fixups);
8715
8716 /* allow vendors to fix quirks */
8717 ufshcd_vops_fixup_dev_quirks(hba);
8718 }
8719
ufshcd_update_rtc(struct ufs_hba * hba)8720 static void ufshcd_update_rtc(struct ufs_hba *hba)
8721 {
8722 struct timespec64 ts64;
8723 int err;
8724 u32 val;
8725
8726 ktime_get_real_ts64(&ts64);
8727
8728 if (ts64.tv_sec < hba->dev_info.rtc_time_baseline) {
8729 dev_warn_once(hba->dev, "%s: Current time precedes previous setting!\n", __func__);
8730 return;
8731 }
8732
8733 /*
8734 * The Absolute RTC mode has a 136-year limit, spanning from 2010 to 2146. If a time beyond
8735 * 2146 is required, it is recommended to choose the relative RTC mode.
8736 */
8737 val = ts64.tv_sec - hba->dev_info.rtc_time_baseline;
8738
8739 /* Skip update RTC if RPM state is not RPM_ACTIVE */
8740 if (ufshcd_rpm_get_if_active(hba) <= 0)
8741 return;
8742
8743 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR, QUERY_ATTR_IDN_SECONDS_PASSED,
8744 0, 0, &val);
8745 ufshcd_rpm_put(hba);
8746
8747 if (err)
8748 dev_err(hba->dev, "%s: Failed to update rtc %d\n", __func__, err);
8749 else if (hba->dev_info.rtc_type == UFS_RTC_RELATIVE)
8750 hba->dev_info.rtc_time_baseline = ts64.tv_sec;
8751 }
8752
ufshcd_rtc_work(struct work_struct * work)8753 static void ufshcd_rtc_work(struct work_struct *work)
8754 {
8755 struct ufs_hba *hba;
8756
8757 hba = container_of(to_delayed_work(work), struct ufs_hba, ufs_rtc_update_work);
8758
8759 /* Update RTC only when there are no requests in progress and UFSHCI is operational */
8760 if (!ufshcd_is_ufs_dev_busy(hba) &&
8761 hba->ufshcd_state == UFSHCD_STATE_OPERATIONAL &&
8762 !hba->clk_gating.active_reqs)
8763 ufshcd_update_rtc(hba);
8764
8765 if (ufshcd_is_ufs_dev_active(hba) && hba->dev_info.rtc_update_period)
8766 schedule_delayed_work(&hba->ufs_rtc_update_work,
8767 msecs_to_jiffies(hba->dev_info.rtc_update_period));
8768 }
8769
ufs_init_rtc(struct ufs_hba * hba,u8 * desc_buf)8770 static void ufs_init_rtc(struct ufs_hba *hba, u8 *desc_buf)
8771 {
8772 u16 periodic_rtc_update = get_unaligned_be16(&desc_buf[DEVICE_DESC_PARAM_FRQ_RTC]);
8773 struct ufs_dev_info *dev_info = &hba->dev_info;
8774
8775 if (periodic_rtc_update & UFS_RTC_TIME_BASELINE) {
8776 dev_info->rtc_type = UFS_RTC_ABSOLUTE;
8777
8778 /*
8779 * The concept of measuring time in Linux as the number of seconds elapsed since
8780 * 00:00:00 UTC on January 1, 1970, and UFS ABS RTC is elapsed from January 1st
8781 * 2010 00:00, here we need to adjust ABS baseline.
8782 */
8783 dev_info->rtc_time_baseline = mktime64(2010, 1, 1, 0, 0, 0) -
8784 mktime64(1970, 1, 1, 0, 0, 0);
8785 } else {
8786 dev_info->rtc_type = UFS_RTC_RELATIVE;
8787 dev_info->rtc_time_baseline = 0;
8788 }
8789
8790 /*
8791 * We ignore TIME_PERIOD defined in wPeriodicRTCUpdate because Spec does not clearly state
8792 * how to calculate the specific update period for each time unit. And we disable periodic
8793 * RTC update work, let user configure by sysfs node according to specific circumstance.
8794 */
8795 dev_info->rtc_update_period = 0;
8796 }
8797
8798 /**
8799 * ufshcd_create_device_id - Generate unique device identifier string
8800 * @hba: per-adapter instance
8801 * @desc_buf: device descriptor buffer
8802 *
8803 * Creates a unique device ID string combining manufacturer ID, spec version,
8804 * model name, serial number (as hex), device version, and manufacture date.
8805 *
8806 * Returns: Allocated device ID string on success, NULL on failure
8807 */
ufshcd_create_device_id(struct ufs_hba * hba,u8 * desc_buf)8808 static char *ufshcd_create_device_id(struct ufs_hba *hba, u8 *desc_buf)
8809 {
8810 struct ufs_dev_info *dev_info = &hba->dev_info;
8811 u16 manufacture_date;
8812 u16 device_version;
8813 u8 *serial_number;
8814 char *serial_hex;
8815 char *device_id;
8816 u8 serial_index;
8817 int serial_len;
8818 int ret;
8819
8820 serial_index = desc_buf[DEVICE_DESC_PARAM_SN];
8821
8822 ret = ufshcd_read_string_desc(hba, serial_index, &serial_number, SD_RAW);
8823 if (ret < 0) {
8824 dev_err(hba->dev, "Failed reading Serial Number. err = %d\n", ret);
8825 return NULL;
8826 }
8827
8828 device_version = get_unaligned_be16(&desc_buf[DEVICE_DESC_PARAM_DEV_VER]);
8829 manufacture_date = get_unaligned_be16(&desc_buf[DEVICE_DESC_PARAM_MANF_DATE]);
8830
8831 serial_len = ret;
8832 /* Allocate buffer for hex string: 2 chars per byte + null terminator */
8833 serial_hex = kzalloc(serial_len * 2 + 1, GFP_KERNEL);
8834 if (!serial_hex) {
8835 kfree(serial_number);
8836 return NULL;
8837 }
8838
8839 bin2hex(serial_hex, serial_number, serial_len);
8840
8841 /*
8842 * Device ID format is ABI with secure world - do not change without firmware
8843 * coordination.
8844 */
8845 device_id = kasprintf(GFP_KERNEL, "%04X-%04X-%s-%s-%04X-%04X",
8846 dev_info->wmanufacturerid, dev_info->wspecversion,
8847 dev_info->model, serial_hex, device_version,
8848 manufacture_date);
8849
8850 kfree(serial_hex);
8851 kfree(serial_number);
8852
8853 if (!device_id)
8854 dev_warn(hba->dev, "Failed to allocate unique device ID\n");
8855
8856 return device_id;
8857 }
8858
ufs_get_device_desc(struct ufs_hba * hba)8859 static int ufs_get_device_desc(struct ufs_hba *hba)
8860 {
8861 struct ufs_dev_info *dev_info = &hba->dev_info;
8862 struct Scsi_Host *shost = hba->host;
8863 int err;
8864 u8 model_index;
8865 u8 *desc_buf;
8866
8867 desc_buf = kzalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
8868 if (!desc_buf) {
8869 err = -ENOMEM;
8870 goto out;
8871 }
8872
8873 err = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_DEVICE, 0, 0, desc_buf,
8874 QUERY_DESC_MAX_SIZE);
8875 if (err) {
8876 dev_err(hba->dev, "%s: Failed reading Device Desc. err = %d\n",
8877 __func__, err);
8878 goto out;
8879 }
8880
8881 /*
8882 * getting vendor (manufacturerID) and Bank Index in big endian
8883 * format
8884 */
8885 dev_info->wmanufacturerid = desc_buf[DEVICE_DESC_PARAM_MANF_ID] << 8 |
8886 desc_buf[DEVICE_DESC_PARAM_MANF_ID + 1];
8887
8888 /* getting Specification Version in big endian format */
8889 dev_info->wspecversion = desc_buf[DEVICE_DESC_PARAM_SPEC_VER] << 8 |
8890 desc_buf[DEVICE_DESC_PARAM_SPEC_VER + 1];
8891 dev_info->bqueuedepth = desc_buf[DEVICE_DESC_PARAM_Q_DPTH];
8892
8893 /*
8894 * According to the UFS standard, the UFS device queue depth
8895 * (bQueueDepth) must be in the range 1..255 if the shared queueing
8896 * architecture is supported. bQueueDepth is zero if the shared queueing
8897 * architecture is not supported.
8898 */
8899 if (dev_info->bqueuedepth)
8900 shost->cmd_per_lun = min(hba->nutrs, dev_info->bqueuedepth) -
8901 UFSHCD_NUM_RESERVED;
8902 else
8903 shost->cmd_per_lun = shost->can_queue;
8904
8905 dev_info->rtt_cap = desc_buf[DEVICE_DESC_PARAM_RTT_CAP];
8906
8907 dev_info->hid_sup = get_unaligned_be32(desc_buf +
8908 DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP) &
8909 UFS_DEV_HID_SUPPORT;
8910
8911 model_index = desc_buf[DEVICE_DESC_PARAM_PRDCT_NAME];
8912
8913 err = ufshcd_read_string_desc(hba, model_index,
8914 &dev_info->model, SD_ASCII_STD);
8915 if (err < 0) {
8916 dev_err(hba->dev, "%s: Failed reading Product Name. err = %d\n",
8917 __func__, err);
8918 goto out;
8919 }
8920
8921 /* Generate unique device ID */
8922 dev_info->device_id = ufshcd_create_device_id(hba, desc_buf);
8923
8924 hba->luns_avail = desc_buf[DEVICE_DESC_PARAM_NUM_LU] +
8925 desc_buf[DEVICE_DESC_PARAM_NUM_WLU];
8926
8927 ufs_fixup_device_setup(hba);
8928
8929 ufshcd_wb_probe(hba, desc_buf);
8930
8931 ufshcd_temp_notif_probe(hba, desc_buf);
8932
8933 if (dev_info->wspecversion >= 0x410) {
8934 hba->critical_health_count = 0;
8935 ufshcd_enable_ee(hba, MASK_EE_HEALTH_CRITICAL);
8936 }
8937
8938 ufs_init_rtc(hba, desc_buf);
8939
8940 ufshcd_device_lvl_exception_probe(hba, desc_buf);
8941
8942 /*
8943 * ufshcd_read_string_desc returns size of the string
8944 * reset the error value
8945 */
8946 err = 0;
8947
8948 out:
8949 kfree(desc_buf);
8950 return err;
8951 }
8952
ufs_put_device_desc(struct ufs_hba * hba)8953 static void ufs_put_device_desc(struct ufs_hba *hba)
8954 {
8955 struct ufs_dev_info *dev_info = &hba->dev_info;
8956
8957 kfree(dev_info->model);
8958 dev_info->model = NULL;
8959 kfree(dev_info->device_id);
8960 dev_info->device_id = NULL;
8961 }
8962
8963 /**
8964 * ufshcd_quirk_tune_host_pa_tactivate - Ensures that host PA_TACTIVATE is
8965 * less than device PA_TACTIVATE time.
8966 * @hba: per-adapter instance
8967 *
8968 * Some UFS devices require host PA_TACTIVATE to be lower than device
8969 * PA_TACTIVATE, we need to enable UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE quirk
8970 * for such devices.
8971 *
8972 * Return: zero on success, non-zero error value on failure.
8973 */
ufshcd_quirk_tune_host_pa_tactivate(struct ufs_hba * hba)8974 static int ufshcd_quirk_tune_host_pa_tactivate(struct ufs_hba *hba)
8975 {
8976 int ret = 0;
8977 u32 granularity, peer_granularity;
8978 u32 pa_tactivate, peer_pa_tactivate;
8979 u32 pa_tactivate_us, peer_pa_tactivate_us;
8980 static const u8 gran_to_us_table[] = {1, 4, 8, 16, 32, 100};
8981
8982 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
8983 &granularity);
8984 if (ret)
8985 goto out;
8986
8987 ret = ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
8988 &peer_granularity);
8989 if (ret)
8990 goto out;
8991
8992 if ((granularity < PA_GRANULARITY_MIN_VAL) ||
8993 (granularity > PA_GRANULARITY_MAX_VAL)) {
8994 dev_err(hba->dev, "%s: invalid host PA_GRANULARITY %d",
8995 __func__, granularity);
8996 return -EINVAL;
8997 }
8998
8999 if ((peer_granularity < PA_GRANULARITY_MIN_VAL) ||
9000 (peer_granularity > PA_GRANULARITY_MAX_VAL)) {
9001 dev_err(hba->dev, "%s: invalid device PA_GRANULARITY %d",
9002 __func__, peer_granularity);
9003 return -EINVAL;
9004 }
9005
9006 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_TACTIVATE), &pa_tactivate);
9007 if (ret)
9008 goto out;
9009
9010 ret = ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_TACTIVATE),
9011 &peer_pa_tactivate);
9012 if (ret)
9013 goto out;
9014
9015 pa_tactivate_us = pa_tactivate * gran_to_us_table[granularity - 1];
9016 peer_pa_tactivate_us = peer_pa_tactivate *
9017 gran_to_us_table[peer_granularity - 1];
9018
9019 if (pa_tactivate_us >= peer_pa_tactivate_us) {
9020 u32 new_peer_pa_tactivate;
9021
9022 new_peer_pa_tactivate = pa_tactivate_us /
9023 gran_to_us_table[peer_granularity - 1];
9024 new_peer_pa_tactivate++;
9025 ret = ufshcd_dme_peer_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
9026 new_peer_pa_tactivate);
9027 }
9028
9029 out:
9030 return ret;
9031 }
9032
9033 /**
9034 * ufshcd_quirk_override_pa_h8time - Ensures proper adjustment of PA_HIBERN8TIME.
9035 * @hba: per-adapter instance
9036 *
9037 * Some UFS devices require specific adjustments to the PA_HIBERN8TIME parameter
9038 * to ensure proper hibernation timing. This function retrieves the current
9039 * PA_HIBERN8TIME value and increments it by 100us.
9040 */
ufshcd_quirk_override_pa_h8time(struct ufs_hba * hba)9041 static void ufshcd_quirk_override_pa_h8time(struct ufs_hba *hba)
9042 {
9043 u32 pa_h8time;
9044 int ret;
9045
9046 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_HIBERN8TIME), &pa_h8time);
9047 if (ret) {
9048 dev_err(hba->dev, "Failed to get PA_HIBERN8TIME: %d\n", ret);
9049 return;
9050 }
9051
9052 /* Increment by 1 to increase hibernation time by 100 µs */
9053 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME), pa_h8time + 1);
9054 if (ret)
9055 dev_err(hba->dev, "Failed updating PA_HIBERN8TIME: %d\n", ret);
9056 }
9057
ufshcd_tune_unipro_params(struct ufs_hba * hba)9058 static void ufshcd_tune_unipro_params(struct ufs_hba *hba)
9059 {
9060 ufshcd_vops_apply_dev_quirks(hba);
9061
9062 if (hba->dev_quirks & UFS_DEVICE_QUIRK_PA_TACTIVATE)
9063 /* set 1ms timeout for PA_TACTIVATE */
9064 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE), 10);
9065
9066 if (hba->dev_quirks & UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE)
9067 ufshcd_quirk_tune_host_pa_tactivate(hba);
9068
9069 if (hba->dev_quirks & UFS_DEVICE_QUIRK_PA_HIBER8TIME)
9070 ufshcd_quirk_override_pa_h8time(hba);
9071
9072 ufshcd_apply_valid_tx_eq_settings(hba);
9073 }
9074
ufshcd_clear_dbg_ufs_stats(struct ufs_hba * hba)9075 static void ufshcd_clear_dbg_ufs_stats(struct ufs_hba *hba)
9076 {
9077 hba->ufs_stats.hibern8_exit_cnt = 0;
9078 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
9079 hba->req_abort_count = 0;
9080 }
9081
ufshcd_device_geo_params_init(struct ufs_hba * hba)9082 static int ufshcd_device_geo_params_init(struct ufs_hba *hba)
9083 {
9084 int err;
9085 u8 *desc_buf;
9086
9087 desc_buf = kzalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
9088 if (!desc_buf) {
9089 err = -ENOMEM;
9090 goto out;
9091 }
9092
9093 err = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_GEOMETRY, 0, 0,
9094 desc_buf, QUERY_DESC_MAX_SIZE);
9095 if (err) {
9096 dev_err(hba->dev, "%s: Failed reading Geometry Desc. err = %d\n",
9097 __func__, err);
9098 goto out;
9099 }
9100
9101 if (desc_buf[GEOMETRY_DESC_PARAM_MAX_NUM_LUN] == 1)
9102 hba->dev_info.max_lu_supported = 32;
9103 else if (desc_buf[GEOMETRY_DESC_PARAM_MAX_NUM_LUN] == 0)
9104 hba->dev_info.max_lu_supported = 8;
9105
9106 hba->dev_info.rpmb_io_size = desc_buf[GEOMETRY_DESC_PARAM_RPMB_RW_SIZE];
9107
9108 out:
9109 kfree(desc_buf);
9110 return err;
9111 }
9112
9113 struct ufs_ref_clk {
9114 unsigned long freq_hz;
9115 enum ufs_ref_clk_freq val;
9116 };
9117
9118 static const struct ufs_ref_clk ufs_ref_clk_freqs[] = {
9119 {19200000, REF_CLK_FREQ_19_2_MHZ},
9120 {26000000, REF_CLK_FREQ_26_MHZ},
9121 {38400000, REF_CLK_FREQ_38_4_MHZ},
9122 {52000000, REF_CLK_FREQ_52_MHZ},
9123 {0, REF_CLK_FREQ_INVAL},
9124 };
9125
9126 static enum ufs_ref_clk_freq
ufs_get_bref_clk_from_hz(unsigned long freq)9127 ufs_get_bref_clk_from_hz(unsigned long freq)
9128 {
9129 int i;
9130
9131 for (i = 0; ufs_ref_clk_freqs[i].freq_hz; i++)
9132 if (ufs_ref_clk_freqs[i].freq_hz == freq)
9133 return ufs_ref_clk_freqs[i].val;
9134
9135 return REF_CLK_FREQ_INVAL;
9136 }
9137
ufshcd_parse_dev_ref_clk_freq(struct ufs_hba * hba,struct clk * refclk)9138 void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk)
9139 {
9140 unsigned long freq;
9141
9142 freq = clk_get_rate(refclk);
9143
9144 hba->dev_ref_clk_freq =
9145 ufs_get_bref_clk_from_hz(freq);
9146
9147 if (hba->dev_ref_clk_freq == REF_CLK_FREQ_INVAL)
9148 dev_err(hba->dev,
9149 "invalid ref_clk setting = %ld\n", freq);
9150 }
9151
ufshcd_set_dev_ref_clk(struct ufs_hba * hba)9152 static int ufshcd_set_dev_ref_clk(struct ufs_hba *hba)
9153 {
9154 int err;
9155 u32 ref_clk;
9156 u32 freq = hba->dev_ref_clk_freq;
9157
9158 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
9159 QUERY_ATTR_IDN_REF_CLK_FREQ, 0, 0, &ref_clk);
9160
9161 if (err) {
9162 dev_err(hba->dev, "failed reading bRefClkFreq. err = %d\n",
9163 err);
9164 goto out;
9165 }
9166
9167 if (ref_clk == freq)
9168 goto out; /* nothing to update */
9169
9170 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
9171 QUERY_ATTR_IDN_REF_CLK_FREQ, 0, 0, &freq);
9172
9173 if (err) {
9174 dev_err(hba->dev, "bRefClkFreq setting to %lu Hz failed\n",
9175 ufs_ref_clk_freqs[freq].freq_hz);
9176 goto out;
9177 }
9178
9179 dev_dbg(hba->dev, "bRefClkFreq setting to %lu Hz succeeded\n",
9180 ufs_ref_clk_freqs[freq].freq_hz);
9181
9182 out:
9183 return err;
9184 }
9185
ufshcd_device_params_init(struct ufs_hba * hba)9186 static int ufshcd_device_params_init(struct ufs_hba *hba)
9187 {
9188 bool flag;
9189 int ret;
9190
9191 /* Init UFS geometry descriptor related parameters */
9192 ret = ufshcd_device_geo_params_init(hba);
9193 if (ret)
9194 goto out;
9195
9196 /* Check and apply UFS device quirks */
9197 ret = ufs_get_device_desc(hba);
9198 if (ret) {
9199 dev_err(hba->dev, "%s: Failed getting device info. err = %d\n",
9200 __func__, ret);
9201 goto out;
9202 }
9203
9204 ufshcd_set_rtt(hba);
9205
9206 ufshcd_get_ref_clk_gating_wait(hba);
9207
9208 if (!ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
9209 QUERY_FLAG_IDN_PWR_ON_WPE, 0, &flag))
9210 hba->dev_info.f_power_on_wp_en = flag;
9211
9212 /* Probe maximum power mode co-supported by both UFS host and device */
9213 if (ufshcd_get_max_pwr_mode(hba))
9214 dev_err(hba->dev,
9215 "%s: Failed getting max supported power mode\n",
9216 __func__);
9217
9218 ufshcd_retrieve_tx_eq_settings(hba);
9219 out:
9220 return ret;
9221 }
9222
ufshcd_set_timestamp_attr(struct ufs_hba * hba)9223 static void ufshcd_set_timestamp_attr(struct ufs_hba *hba)
9224 {
9225 struct ufs_dev_info *dev_info = &hba->dev_info;
9226 u64 ts_ns;
9227 int err;
9228
9229 if (dev_info->wspecversion < 0x400 ||
9230 hba->dev_quirks & UFS_DEVICE_QUIRK_NO_TIMESTAMP_SUPPORT)
9231 return;
9232
9233 ts_ns = ktime_get_real_ns();
9234 err = ufshcd_query_attr_qword(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
9235 QUERY_ATTR_IDN_TIMESTAMP, 0, 0, &ts_ns);
9236 if (err)
9237 dev_err(hba->dev, "%s: failed to set timestamp %d\n",
9238 __func__, err);
9239 }
9240
9241 /**
9242 * ufshcd_add_lus - probe and add UFS logical units
9243 * @hba: per-adapter instance
9244 *
9245 * Return: 0 upon success; < 0 upon failure.
9246 */
ufshcd_add_lus(struct ufs_hba * hba)9247 static int ufshcd_add_lus(struct ufs_hba *hba)
9248 {
9249 int ret;
9250
9251 /* Add required well known logical units to scsi mid layer */
9252 ret = ufshcd_scsi_add_wlus(hba);
9253 if (ret)
9254 goto out;
9255
9256 /* Initialize devfreq after UFS device is detected */
9257 if (ufshcd_is_clkscaling_supported(hba)) {
9258 memcpy(&hba->clk_scaling.saved_pwr_info,
9259 &hba->pwr_info,
9260 sizeof(struct ufs_pa_layer_attr));
9261 hba->clk_scaling.is_allowed = true;
9262
9263 ret = ufshcd_devfreq_init(hba);
9264 if (ret)
9265 goto out;
9266
9267 hba->clk_scaling.is_enabled = true;
9268 ufshcd_init_clk_scaling_sysfs(hba);
9269 }
9270
9271 /*
9272 * The RTC update code accesses the hba->ufs_device_wlun->sdev_gendev
9273 * pointer and hence must only be started after the WLUN pointer has
9274 * been initialized by ufshcd_scsi_add_wlus().
9275 */
9276 schedule_delayed_work(&hba->ufs_rtc_update_work,
9277 msecs_to_jiffies(UFS_RTC_UPDATE_INTERVAL_MS));
9278
9279 ufs_bsg_probe(hba);
9280 scsi_scan_host(hba->host);
9281 ufs_rpmb_probe(hba);
9282
9283 out:
9284 return ret;
9285 }
9286
9287 /* SDB - Single Doorbell */
ufshcd_release_sdb_queue(struct ufs_hba * hba,int nutrs)9288 static void ufshcd_release_sdb_queue(struct ufs_hba *hba, int nutrs)
9289 {
9290 size_t ucdl_size, utrdl_size;
9291
9292 ucdl_size = ufshcd_get_ucd_size(hba) * (nutrs - UFSHCD_NUM_RESERVED);
9293 dmam_free_coherent(hba->dev, ucdl_size, hba->ucdl_base_addr,
9294 hba->ucdl_dma_addr);
9295
9296 utrdl_size = sizeof(struct utp_transfer_req_desc) * nutrs;
9297 dmam_free_coherent(hba->dev, utrdl_size, hba->utrdl_base_addr,
9298 hba->utrdl_dma_addr);
9299 }
9300
ufshcd_alloc_mcq(struct ufs_hba * hba)9301 static int ufshcd_alloc_mcq(struct ufs_hba *hba)
9302 {
9303 int ret;
9304 int old_nutrs = hba->nutrs;
9305
9306 ret = ufshcd_get_hba_mac(hba);
9307 if (ret < 0)
9308 return ret;
9309
9310 hba->nutrs = ret;
9311 ret = ufshcd_mcq_init(hba);
9312 if (ret)
9313 goto err;
9314
9315 /*
9316 * Previously allocated memory for nutrs may not be enough in MCQ mode.
9317 * Number of supported tags in MCQ mode may be larger than SDB mode.
9318 */
9319 if (hba->nutrs != old_nutrs) {
9320 ufshcd_release_sdb_queue(hba, old_nutrs);
9321 ret = ufshcd_memory_alloc(hba);
9322 if (ret)
9323 goto err;
9324 ufshcd_host_memory_configure(hba);
9325 }
9326
9327 ret = ufshcd_mcq_memory_alloc(hba);
9328 if (ret)
9329 goto err;
9330
9331 hba->host->can_queue = hba->nutrs - UFSHCD_NUM_RESERVED;
9332
9333 return 0;
9334 err:
9335 hba->nutrs = old_nutrs;
9336 return ret;
9337 }
9338
ufshcd_config_mcq(struct ufs_hba * hba)9339 static void ufshcd_config_mcq(struct ufs_hba *hba)
9340 {
9341 int ret;
9342
9343 ret = ufshcd_mcq_vops_config_esi(hba);
9344 hba->mcq_esi_enabled = !ret;
9345 dev_info(hba->dev, "ESI %sconfigured\n", ret ? "is not " : "");
9346
9347 ufshcd_mcq_make_queues_operational(hba);
9348 ufshcd_mcq_config_mac(hba, hba->nutrs);
9349
9350 dev_info(hba->dev, "MCQ configured, nr_queues=%d, io_queues=%d, read_queue=%d, poll_queues=%d, queue_depth=%d\n",
9351 hba->nr_hw_queues, hba->nr_queues[HCTX_TYPE_DEFAULT],
9352 hba->nr_queues[HCTX_TYPE_READ], hba->nr_queues[HCTX_TYPE_POLL],
9353 hba->nutrs);
9354 }
9355
9356 /**
9357 * ufshcd_get_op_mode - get UFS operating mode.
9358 * @hba: per-adapter instance
9359 *
9360 * Use the PA_PWRMODE value to represent the operating mode of UFS.
9361 *
9362 */
ufshcd_get_op_mode(struct ufs_hba * hba)9363 static enum ufs_op_mode ufshcd_get_op_mode(struct ufs_hba *hba)
9364 {
9365 u32 mode;
9366 u8 rx_mode;
9367 u8 tx_mode;
9368
9369 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_PWRMODE), &mode);
9370 rx_mode = (mode >> PWRMODE_RX_OFFSET) & PWRMODE_MASK;
9371 tx_mode = mode & PWRMODE_MASK;
9372
9373 if ((rx_mode == SLOW_MODE || rx_mode == SLOWAUTO_MODE) &&
9374 (tx_mode == SLOW_MODE || tx_mode == SLOWAUTO_MODE))
9375 return LS_MODE;
9376
9377 return HS_MODE;
9378 }
9379
ufshcd_post_device_init(struct ufs_hba * hba)9380 static int ufshcd_post_device_init(struct ufs_hba *hba)
9381 {
9382 int ret;
9383
9384 ufshcd_tune_unipro_params(hba);
9385
9386 /* UFS device is also active now */
9387 ufshcd_set_ufs_dev_active(hba);
9388
9389 /* Indicate that DME QoS Monitor has been reset */
9390 atomic_set(&hba->dme_qos_notification, 0x1);
9391 if (hba->dme_qos_sysfs_handle)
9392 sysfs_notify_dirent(hba->dme_qos_sysfs_handle);
9393
9394 ufshcd_force_reset_auto_bkops(hba);
9395
9396 ufshcd_set_timestamp_attr(hba);
9397
9398 if (!hba->max_pwr_info.is_valid)
9399 return 0;
9400
9401 /*
9402 * Set the right value to bRefClkFreq in LS_MODE before attempting to
9403 * switch to HS gears.
9404 */
9405 if (ufshcd_get_op_mode(hba) == LS_MODE &&
9406 hba->dev_ref_clk_freq != REF_CLK_FREQ_INVAL)
9407 ufshcd_set_dev_ref_clk(hba);
9408
9409 /* Gear up to HS gear. */
9410 ret = ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info,
9411 UFSHCD_PMC_POLICY_DONT_FORCE);
9412 if (ret) {
9413 dev_err(hba->dev, "%s: Failed setting power mode, err = %d\n",
9414 __func__, ret);
9415 return ret;
9416 }
9417
9418 return 0;
9419 }
9420
ufshcd_device_init(struct ufs_hba * hba,bool init_dev_params)9421 static int ufshcd_device_init(struct ufs_hba *hba, bool init_dev_params)
9422 {
9423 int ret;
9424
9425 WARN_ON_ONCE(!hba->scsi_host_added);
9426
9427 hba->ufshcd_state = UFSHCD_STATE_RESET;
9428
9429 ret = ufshcd_link_startup(hba);
9430 if (ret)
9431 return ret;
9432
9433 if (hba->quirks & UFSHCD_QUIRK_SKIP_PH_CONFIGURATION)
9434 return ret;
9435
9436 /* Debug counters initialization */
9437 ufshcd_clear_dbg_ufs_stats(hba);
9438
9439 /* UniPro link is active now */
9440 ufshcd_set_link_active(hba);
9441
9442 /* Reconfigure MCQ upon reset */
9443 if (hba->mcq_enabled && !init_dev_params) {
9444 ufshcd_config_mcq(hba);
9445 ufshcd_mcq_enable(hba);
9446 }
9447
9448 /* Verify device initialization by sending NOP OUT UPIU */
9449 ret = ufshcd_verify_dev_init(hba);
9450 if (ret)
9451 return ret;
9452
9453 /* Initiate UFS initialization, and waiting until completion */
9454 ret = ufshcd_complete_dev_init(hba);
9455 if (ret)
9456 return ret;
9457
9458 /*
9459 * Initialize UFS device parameters used by driver, these
9460 * parameters are associated with UFS descriptors.
9461 */
9462 if (init_dev_params) {
9463 ret = ufshcd_device_params_init(hba);
9464 if (ret)
9465 return ret;
9466 if (is_mcq_supported(hba) &&
9467 hba->quirks & UFSHCD_QUIRK_REINIT_AFTER_MAX_GEAR_SWITCH) {
9468 ufshcd_config_mcq(hba);
9469 ufshcd_mcq_enable(hba);
9470 }
9471 }
9472
9473 return ufshcd_post_device_init(hba);
9474 }
9475
9476 /**
9477 * ufshcd_probe_hba - probe hba to detect device and initialize it
9478 * @hba: per-adapter instance
9479 * @init_dev_params: whether or not to call ufshcd_device_params_init().
9480 *
9481 * Execute link-startup and verify device initialization
9482 *
9483 * Return: 0 upon success; < 0 upon failure.
9484 */
ufshcd_probe_hba(struct ufs_hba * hba,bool init_dev_params)9485 static int ufshcd_probe_hba(struct ufs_hba *hba, bool init_dev_params)
9486 {
9487 int ret;
9488
9489 if (!hba->pm_op_in_progress &&
9490 (hba->quirks & UFSHCD_QUIRK_REINIT_AFTER_MAX_GEAR_SWITCH)) {
9491 /* Reset the device and controller before doing reinit */
9492 ufshcd_device_reset(hba);
9493 ufs_put_device_desc(hba);
9494 ufshcd_hba_stop(hba);
9495 ret = ufshcd_hba_enable(hba);
9496 if (ret) {
9497 dev_err(hba->dev, "Host controller enable failed\n");
9498 ufshcd_print_evt_hist(hba);
9499 ufshcd_print_host_state(hba);
9500 return ret;
9501 }
9502
9503 /* Reinit the device */
9504 ret = ufshcd_device_init(hba, init_dev_params);
9505 if (ret)
9506 return ret;
9507 }
9508
9509 ufshcd_print_pwr_info(hba);
9510
9511 /*
9512 * bActiveICCLevel is volatile for UFS device (as per latest v2.1 spec)
9513 * and for removable UFS card as well, hence always set the parameter.
9514 * Note: Error handler may issue the device reset hence resetting
9515 * bActiveICCLevel as well so it is always safe to set this here.
9516 */
9517 ufshcd_set_active_icc_lvl(hba);
9518
9519 /* Enable UFS Write Booster if supported */
9520 ufshcd_configure_wb(hba);
9521
9522 if (hba->ee_usr_mask)
9523 ufshcd_write_ee_control(hba);
9524 ufshcd_configure_auto_hibern8(hba);
9525
9526 return 0;
9527 }
9528
9529 /**
9530 * ufshcd_async_scan - asynchronous execution for probing hba
9531 * @data: data pointer to pass to this function
9532 * @cookie: cookie data
9533 */
ufshcd_async_scan(void * data,async_cookie_t cookie)9534 static void ufshcd_async_scan(void *data, async_cookie_t cookie)
9535 {
9536 struct ufs_hba *hba = (struct ufs_hba *)data;
9537 ktime_t probe_start;
9538 int ret;
9539
9540 down(&hba->host_sem);
9541 /* Initialize hba, detect and initialize UFS device */
9542 probe_start = ktime_get();
9543 ret = ufshcd_probe_hba(hba, true);
9544 ufshcd_process_probe_result(hba, probe_start, ret);
9545 up(&hba->host_sem);
9546 if (ret)
9547 goto out;
9548
9549 /* Probe and add UFS logical units */
9550 ret = ufshcd_add_lus(hba);
9551
9552 out:
9553 pm_runtime_put_sync(hba->dev);
9554
9555 if (ret)
9556 dev_err(hba->dev, "%s failed: %d\n", __func__, ret);
9557 }
9558
ufshcd_eh_timed_out(struct scsi_cmnd * scmd)9559 static enum scsi_timeout_action ufshcd_eh_timed_out(struct scsi_cmnd *scmd)
9560 {
9561 struct ufs_hba *hba = shost_priv(scmd->device->host);
9562
9563 if (!hba->pm_op_in_progress) {
9564 /* Activate the error handler in the SCSI core. */
9565 return SCSI_EH_NOT_HANDLED;
9566 }
9567
9568 /*
9569 * Handle the timeout directly to prevent a deadlock between
9570 * ufshcd_set_dev_pwr_mode() and ufshcd_err_handler().
9571 */
9572 ufshcd_link_recovery(hba);
9573 dev_info(hba->dev, "%s() finished; outstanding_tasks = %#lx.\n",
9574 __func__, hba->outstanding_tasks);
9575
9576 /*
9577 * ufshcd_link_recovery() may already have completed @scmd, e.g. via
9578 * the existing MCQ force-completion path.
9579 */
9580 if (!test_bit(SCMD_STATE_COMPLETE, &scmd->state)) {
9581 if (!hba->mcq_enabled) {
9582 unsigned long flags;
9583 struct request *rq = scsi_cmd_to_rq(scmd);
9584
9585 spin_lock_irqsave(&hba->outstanding_lock, flags);
9586 __clear_bit(rq->tag, &hba->outstanding_reqs);
9587 spin_unlock_irqrestore(&hba->outstanding_lock, flags);
9588 }
9589
9590 if (ufshcd_is_scsi_cmd(scmd)) {
9591 set_host_byte(scmd, DID_REQUEUE);
9592 ufshcd_release_scsi_cmd(hba, scmd);
9593 } else {
9594 set_host_byte(scmd, DID_TIME_OUT);
9595 }
9596
9597 scsi_done(scmd);
9598 }
9599
9600 return SCSI_EH_DONE;
9601 }
9602
9603 static const struct attribute_group *ufshcd_driver_groups[] = {
9604 &ufs_sysfs_unit_descriptor_group,
9605 &ufs_sysfs_lun_attributes_group,
9606 NULL,
9607 };
9608
9609 static struct ufs_hba_variant_params ufs_hba_vps = {
9610 .hba_enable_delay_us = 1000,
9611 .wb_flush_threshold = UFS_WB_BUF_REMAIN_PERCENT(40),
9612 .devfreq_profile.polling_ms = 100,
9613 .devfreq_profile.target = ufshcd_devfreq_target,
9614 .devfreq_profile.get_dev_status = ufshcd_devfreq_get_dev_status,
9615 .ondemand_data.upthreshold = 70,
9616 .ondemand_data.downdifferential = 5,
9617 };
9618
9619 static const struct scsi_host_template ufshcd_driver_template = {
9620 .module = THIS_MODULE,
9621 .name = UFSHCD,
9622 .proc_name = UFSHCD,
9623 .map_queues = ufshcd_map_queues,
9624 .cmd_size = sizeof(struct ufshcd_lrb),
9625 .init_cmd_priv = ufshcd_init_cmd_priv,
9626 .queuecommand = ufshcd_queuecommand,
9627 .queue_reserved_command = ufshcd_queue_reserved_command,
9628 .nr_reserved_cmds = UFSHCD_NUM_RESERVED,
9629 .mq_poll = ufshcd_poll,
9630 .sdev_init = ufshcd_sdev_init,
9631 .sdev_configure = ufshcd_sdev_configure,
9632 .sdev_destroy = ufshcd_sdev_destroy,
9633 .change_queue_depth = ufshcd_change_queue_depth,
9634 .eh_abort_handler = ufshcd_abort,
9635 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
9636 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
9637 .eh_timed_out = ufshcd_eh_timed_out,
9638 .this_id = -1,
9639 .sg_tablesize = SG_ALL,
9640 .max_segment_size = PRDT_DATA_BYTE_COUNT_MAX,
9641 .max_sectors = SZ_1M / SECTOR_SIZE,
9642 .max_host_blocked = 1,
9643 .host_tagset = true,
9644 .track_queue_depth = 1,
9645 .skip_settle_delay = 1,
9646 .sdev_groups = ufshcd_driver_groups,
9647 };
9648
ufshcd_config_vreg_load(struct device * dev,struct ufs_vreg * vreg,int ua)9649 static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg *vreg,
9650 int ua)
9651 {
9652 int ret;
9653
9654 if (!vreg)
9655 return 0;
9656
9657 /*
9658 * "set_load" operation shall be required on those regulators
9659 * which specifically configured current limitation. Otherwise
9660 * zero max_uA may cause unexpected behavior when regulator is
9661 * enabled or set as high power mode.
9662 */
9663 if (!vreg->max_uA)
9664 return 0;
9665
9666 ret = regulator_set_load(vreg->reg, ua);
9667 if (ret < 0) {
9668 dev_err(dev, "%s: %s set load (ua=%d) failed, err=%d\n",
9669 __func__, vreg->name, ua, ret);
9670 }
9671
9672 return ret;
9673 }
9674
ufshcd_config_vreg_lpm(struct ufs_hba * hba,struct ufs_vreg * vreg)9675 static inline int ufshcd_config_vreg_lpm(struct ufs_hba *hba,
9676 struct ufs_vreg *vreg)
9677 {
9678 return ufshcd_config_vreg_load(hba->dev, vreg, UFS_VREG_LPM_LOAD_UA);
9679 }
9680
ufshcd_config_vreg_hpm(struct ufs_hba * hba,struct ufs_vreg * vreg)9681 static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
9682 struct ufs_vreg *vreg)
9683 {
9684 if (!vreg)
9685 return 0;
9686
9687 return ufshcd_config_vreg_load(hba->dev, vreg, vreg->max_uA);
9688 }
9689
ufshcd_config_vreg(struct device * dev,struct ufs_vreg * vreg,bool on)9690 static int ufshcd_config_vreg(struct device *dev,
9691 struct ufs_vreg *vreg, bool on)
9692 {
9693 if (regulator_count_voltages(vreg->reg) <= 0)
9694 return 0;
9695
9696 return ufshcd_config_vreg_load(dev, vreg, on ? vreg->max_uA : 0);
9697 }
9698
ufshcd_enable_vreg(struct device * dev,struct ufs_vreg * vreg)9699 static int ufshcd_enable_vreg(struct device *dev, struct ufs_vreg *vreg)
9700 {
9701 int ret = 0;
9702
9703 if (!vreg || vreg->enabled)
9704 goto out;
9705
9706 ret = ufshcd_config_vreg(dev, vreg, true);
9707 if (!ret)
9708 ret = regulator_enable(vreg->reg);
9709
9710 if (!ret)
9711 vreg->enabled = true;
9712 else
9713 dev_err(dev, "%s: %s enable failed, err=%d\n",
9714 __func__, vreg->name, ret);
9715 out:
9716 return ret;
9717 }
9718
ufshcd_disable_vreg(struct device * dev,struct ufs_vreg * vreg)9719 static int ufshcd_disable_vreg(struct device *dev, struct ufs_vreg *vreg)
9720 {
9721 int ret = 0;
9722
9723 if (!vreg || !vreg->enabled || vreg->always_on)
9724 goto out;
9725
9726 ret = regulator_disable(vreg->reg);
9727
9728 if (!ret) {
9729 /* ignore errors on applying disable config */
9730 ufshcd_config_vreg(dev, vreg, false);
9731 vreg->enabled = false;
9732 } else {
9733 dev_err(dev, "%s: %s disable failed, err=%d\n",
9734 __func__, vreg->name, ret);
9735 }
9736 out:
9737 return ret;
9738 }
9739
ufshcd_setup_vreg(struct ufs_hba * hba,bool on)9740 static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on)
9741 {
9742 int ret = 0;
9743 struct device *dev = hba->dev;
9744 struct ufs_vreg_info *info = &hba->vreg_info;
9745
9746 ret = ufshcd_toggle_vreg(dev, info->vcc, on);
9747 if (ret)
9748 goto out;
9749
9750 ret = ufshcd_toggle_vreg(dev, info->vccq, on);
9751 if (ret)
9752 goto out;
9753
9754 ret = ufshcd_toggle_vreg(dev, info->vccq2, on);
9755
9756 out:
9757 if (ret) {
9758 ufshcd_toggle_vreg(dev, info->vccq2, false);
9759 ufshcd_toggle_vreg(dev, info->vccq, false);
9760 ufshcd_toggle_vreg(dev, info->vcc, false);
9761 }
9762 return ret;
9763 }
9764
ufshcd_setup_hba_vreg(struct ufs_hba * hba,bool on)9765 static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on)
9766 {
9767 struct ufs_vreg_info *info = &hba->vreg_info;
9768
9769 return ufshcd_toggle_vreg(hba->dev, info->vdd_hba, on);
9770 }
9771
ufshcd_get_vreg(struct device * dev,struct ufs_vreg * vreg)9772 int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg)
9773 {
9774 int ret = 0;
9775
9776 if (!vreg)
9777 goto out;
9778
9779 vreg->reg = devm_regulator_get(dev, vreg->name);
9780 if (IS_ERR(vreg->reg)) {
9781 ret = PTR_ERR(vreg->reg);
9782 dev_err(dev, "%s: %s get failed, err=%d\n",
9783 __func__, vreg->name, ret);
9784 }
9785 out:
9786 return ret;
9787 }
9788 EXPORT_SYMBOL_GPL(ufshcd_get_vreg);
9789
ufshcd_init_vreg(struct ufs_hba * hba)9790 static int ufshcd_init_vreg(struct ufs_hba *hba)
9791 {
9792 int ret = 0;
9793 struct device *dev = hba->dev;
9794 struct ufs_vreg_info *info = &hba->vreg_info;
9795
9796 ret = ufshcd_get_vreg(dev, info->vcc);
9797 if (ret)
9798 goto out;
9799
9800 ret = ufshcd_get_vreg(dev, info->vccq);
9801 if (!ret)
9802 ret = ufshcd_get_vreg(dev, info->vccq2);
9803 out:
9804 return ret;
9805 }
9806
ufshcd_init_hba_vreg(struct ufs_hba * hba)9807 static int ufshcd_init_hba_vreg(struct ufs_hba *hba)
9808 {
9809 struct ufs_vreg_info *info = &hba->vreg_info;
9810
9811 return ufshcd_get_vreg(hba->dev, info->vdd_hba);
9812 }
9813
ufshcd_setup_clocks(struct ufs_hba * hba,bool on)9814 static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on)
9815 {
9816 int ret = 0;
9817 struct ufs_clk_info *clki;
9818 struct list_head *head = &hba->clk_list_head;
9819 ktime_t start = ktime_get();
9820 bool clk_state_changed = false;
9821
9822 if (list_empty(head))
9823 goto out;
9824
9825 ret = ufshcd_vops_setup_clocks(hba, on, PRE_CHANGE);
9826 if (ret)
9827 return ret;
9828
9829 list_for_each_entry(clki, head, list) {
9830 if (!IS_ERR_OR_NULL(clki->clk)) {
9831 /*
9832 * Don't disable clocks which are needed
9833 * to keep the link active.
9834 */
9835 if (ufshcd_is_link_active(hba) &&
9836 clki->keep_link_active)
9837 continue;
9838
9839 clk_state_changed = on ^ clki->enabled;
9840 if (on && !clki->enabled) {
9841 ret = clk_prepare_enable(clki->clk);
9842 if (ret) {
9843 dev_err(hba->dev, "%s: %s prepare enable failed, %d\n",
9844 __func__, clki->name, ret);
9845 goto out;
9846 }
9847 } else if (!on && clki->enabled) {
9848 clk_disable_unprepare(clki->clk);
9849 }
9850 clki->enabled = on;
9851 dev_dbg(hba->dev, "%s: clk: %s %sabled\n", __func__,
9852 clki->name, on ? "en" : "dis");
9853 }
9854 }
9855
9856 ret = ufshcd_vops_setup_clocks(hba, on, POST_CHANGE);
9857 if (ret)
9858 return ret;
9859
9860 if (!ufshcd_is_clkscaling_supported(hba))
9861 ufshcd_pm_qos_update(hba, on);
9862 out:
9863 if (ret) {
9864 list_for_each_entry(clki, head, list) {
9865 if (!IS_ERR_OR_NULL(clki->clk) && clki->enabled)
9866 clk_disable_unprepare(clki->clk);
9867 }
9868 } else if (!ret && on && hba->clk_gating.is_initialized) {
9869 scoped_guard(spinlock_irqsave, &hba->clk_gating.lock)
9870 hba->clk_gating.state = CLKS_ON;
9871 trace_ufshcd_clk_gating(hba,
9872 hba->clk_gating.state);
9873 }
9874
9875 if (clk_state_changed)
9876 trace_ufshcd_profile_clk_gating(hba,
9877 (on ? "on" : "off"),
9878 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
9879 return ret;
9880 }
9881
ufshcd_parse_ref_clk_property(struct ufs_hba * hba)9882 static enum ufs_ref_clk_freq ufshcd_parse_ref_clk_property(struct ufs_hba *hba)
9883 {
9884 u32 freq;
9885 int ret = device_property_read_u32(hba->dev, "ref-clk-freq", &freq);
9886
9887 if (ret) {
9888 dev_dbg(hba->dev, "Cannot query 'ref-clk-freq' property = %d", ret);
9889 return REF_CLK_FREQ_INVAL;
9890 }
9891
9892 return ufs_get_bref_clk_from_hz(freq);
9893 }
9894
ufshcd_init_clocks(struct ufs_hba * hba)9895 static int ufshcd_init_clocks(struct ufs_hba *hba)
9896 {
9897 int ret = 0;
9898 struct ufs_clk_info *clki;
9899 struct device *dev = hba->dev;
9900 struct list_head *head = &hba->clk_list_head;
9901
9902 if (list_empty(head))
9903 goto out;
9904
9905 list_for_each_entry(clki, head, list) {
9906 if (!clki->name)
9907 continue;
9908
9909 clki->clk = devm_clk_get(dev, clki->name);
9910 if (IS_ERR(clki->clk)) {
9911 ret = PTR_ERR(clki->clk);
9912 dev_err(dev, "%s: %s clk get failed, %d\n",
9913 __func__, clki->name, ret);
9914 goto out;
9915 }
9916
9917 /*
9918 * Parse device ref clk freq as per device tree "ref_clk".
9919 * Default dev_ref_clk_freq is set to REF_CLK_FREQ_INVAL
9920 * in ufshcd_alloc_host().
9921 */
9922 if (!strcmp(clki->name, "ref_clk"))
9923 ufshcd_parse_dev_ref_clk_freq(hba, clki->clk);
9924
9925 if (clki->max_freq) {
9926 ret = clk_set_rate(clki->clk, clki->max_freq);
9927 if (ret) {
9928 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
9929 __func__, clki->name,
9930 clki->max_freq, ret);
9931 goto out;
9932 }
9933 clki->curr_freq = clki->max_freq;
9934 }
9935 dev_dbg(dev, "%s: clk: %s, rate: %lu\n", __func__,
9936 clki->name, clk_get_rate(clki->clk));
9937 }
9938
9939 /* Set Max. frequency for all clocks */
9940 if (hba->use_pm_opp) {
9941 ret = ufshcd_opp_set_rate(hba, ULONG_MAX);
9942 if (ret) {
9943 dev_err(hba->dev, "%s: failed to set OPP: %d", __func__,
9944 ret);
9945 goto out;
9946 }
9947 }
9948
9949 out:
9950 return ret;
9951 }
9952
ufshcd_variant_hba_init(struct ufs_hba * hba)9953 static int ufshcd_variant_hba_init(struct ufs_hba *hba)
9954 {
9955 int err = ufshcd_vops_init(hba);
9956
9957 if (err)
9958 dev_err_probe(hba->dev, err,
9959 "%s: variant %s init failed with err %d\n",
9960 __func__, ufshcd_get_var_name(hba), err);
9961 return err;
9962 }
9963
ufshcd_hba_init(struct ufs_hba * hba)9964 static int ufshcd_hba_init(struct ufs_hba *hba)
9965 {
9966 int err;
9967
9968 /*
9969 * Handle host controller power separately from the UFS device power
9970 * rails as it will help controlling the UFS host controller power
9971 * collapse easily which is different than UFS device power collapse.
9972 * Also, enable the host controller power before we go ahead with rest
9973 * of the initialization here.
9974 */
9975 err = ufshcd_init_hba_vreg(hba);
9976 if (err)
9977 goto out;
9978
9979 err = ufshcd_setup_hba_vreg(hba, true);
9980 if (err)
9981 goto out;
9982
9983 err = ufshcd_init_clocks(hba);
9984 if (err)
9985 goto out_disable_hba_vreg;
9986
9987 if (hba->dev_ref_clk_freq == REF_CLK_FREQ_INVAL)
9988 hba->dev_ref_clk_freq = ufshcd_parse_ref_clk_property(hba);
9989
9990 err = ufshcd_setup_clocks(hba, true);
9991 if (err)
9992 goto out_disable_hba_vreg;
9993
9994 err = ufshcd_init_vreg(hba);
9995 if (err)
9996 goto out_disable_clks;
9997
9998 err = ufshcd_setup_vreg(hba, true);
9999 if (err)
10000 goto out_disable_clks;
10001
10002 err = ufshcd_variant_hba_init(hba);
10003 if (err)
10004 goto out_disable_vreg;
10005
10006 ufs_debugfs_hba_init(hba);
10007 ufs_fault_inject_hba_init(hba);
10008
10009 hba->is_powered = true;
10010 goto out;
10011
10012 out_disable_vreg:
10013 ufshcd_setup_vreg(hba, false);
10014 out_disable_clks:
10015 ufshcd_setup_clocks(hba, false);
10016 out_disable_hba_vreg:
10017 ufshcd_setup_hba_vreg(hba, false);
10018 out:
10019 return err;
10020 }
10021
ufshcd_hba_exit(struct ufs_hba * hba)10022 static void ufshcd_hba_exit(struct ufs_hba *hba)
10023 {
10024 if (hba->is_powered) {
10025 ufshcd_pm_qos_exit(hba);
10026 ufshcd_exit_clk_scaling(hba);
10027 ufshcd_exit_clk_gating(hba);
10028 if (hba->eh_wq)
10029 destroy_workqueue(hba->eh_wq);
10030 ufs_debugfs_hba_exit(hba);
10031 ufshcd_vops_exit(hba);
10032 ufshcd_setup_vreg(hba, false);
10033 ufshcd_setup_clocks(hba, false);
10034 ufshcd_setup_hba_vreg(hba, false);
10035 hba->is_powered = false;
10036 ufs_put_device_desc(hba);
10037 }
10038 sysfs_put(hba->dme_qos_sysfs_handle);
10039 }
10040
ufshcd_execute_start_stop(struct scsi_device * sdev,enum ufs_dev_pwr_mode pwr_mode,struct scsi_sense_hdr * sshdr)10041 static int ufshcd_execute_start_stop(struct scsi_device *sdev,
10042 enum ufs_dev_pwr_mode pwr_mode,
10043 struct scsi_sense_hdr *sshdr)
10044 {
10045 const unsigned char cdb[6] = { START_STOP, 0, 0, 0, pwr_mode << 4, 0 };
10046 struct scsi_failure failure_defs[] = {
10047 {
10048 .allowed = 2,
10049 .result = SCMD_FAILURE_RESULT_ANY,
10050 },
10051 };
10052 struct scsi_failures failures = {
10053 .failure_definitions = failure_defs,
10054 };
10055 const struct scsi_exec_args args = {
10056 .failures = &failures,
10057 .sshdr = sshdr,
10058 .req_flags = BLK_MQ_REQ_PM,
10059 .scmd_flags = SCMD_FAIL_IF_RECOVERING,
10060 };
10061
10062 return scsi_execute_cmd(sdev, cdb, REQ_OP_DRV_IN, /*buffer=*/NULL,
10063 /*bufflen=*/0, /*timeout=*/10 * HZ, /*retries=*/0,
10064 &args);
10065 }
10066
10067 /**
10068 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
10069 * power mode
10070 * @hba: per adapter instance
10071 * @pwr_mode: device power mode to set
10072 *
10073 * Return: 0 if requested power mode is set successfully;
10074 * < 0 if failed to set the requested power mode.
10075 */
ufshcd_set_dev_pwr_mode(struct ufs_hba * hba,enum ufs_dev_pwr_mode pwr_mode)10076 static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
10077 enum ufs_dev_pwr_mode pwr_mode)
10078 {
10079 struct scsi_sense_hdr sshdr;
10080 struct scsi_device *sdp;
10081 unsigned long flags;
10082 int ret;
10083
10084 spin_lock_irqsave(hba->host->host_lock, flags);
10085 sdp = hba->ufs_device_wlun;
10086 if (sdp && scsi_device_online(sdp))
10087 ret = scsi_device_get(sdp);
10088 else
10089 ret = -ENODEV;
10090 spin_unlock_irqrestore(hba->host->host_lock, flags);
10091
10092 if (ret)
10093 return ret;
10094
10095 /*
10096 * If scsi commands fail, the scsi mid-layer schedules scsi error-
10097 * handling, which would wait for host to be resumed. Since we know
10098 * we are functional while we are here, skip host resume in error
10099 * handling context.
10100 */
10101 WRITE_ONCE(hba->host->eh_noresume, 1);
10102
10103 /*
10104 * Current function would be generally called from the power management
10105 * callbacks hence set the RQF_PM flag so that it doesn't resume the
10106 * already suspended childs.
10107 */
10108 ret = ufshcd_execute_start_stop(sdp, pwr_mode, &sshdr);
10109 if (ret) {
10110 sdev_printk(KERN_WARNING, sdp,
10111 "START_STOP failed for power mode: %d, result %x\n",
10112 pwr_mode, ret);
10113 if (ret > 0) {
10114 if (scsi_sense_valid(&sshdr))
10115 scsi_print_sense_hdr(sdp, NULL, &sshdr);
10116 ret = -EIO;
10117 }
10118 } else {
10119 hba->curr_dev_pwr_mode = pwr_mode;
10120 }
10121
10122 scsi_device_put(sdp);
10123 WRITE_ONCE(hba->host->eh_noresume, 0);
10124 return ret;
10125 }
10126
ufshcd_link_state_transition(struct ufs_hba * hba,enum uic_link_state req_link_state,bool check_for_bkops)10127 static int ufshcd_link_state_transition(struct ufs_hba *hba,
10128 enum uic_link_state req_link_state,
10129 bool check_for_bkops)
10130 {
10131 int ret = 0;
10132
10133 if (req_link_state == hba->uic_link_state)
10134 return 0;
10135
10136 if (req_link_state == UIC_LINK_HIBERN8_STATE) {
10137 ret = ufshcd_uic_hibern8_enter(hba);
10138 if (!ret) {
10139 ufshcd_set_link_hibern8(hba);
10140 } else {
10141 dev_err(hba->dev, "%s: hibern8 enter failed %d\n",
10142 __func__, ret);
10143 goto out;
10144 }
10145 }
10146 /*
10147 * If autobkops is enabled, link can't be turned off because
10148 * turning off the link would also turn off the device, except in the
10149 * case of DeepSleep where the device is expected to remain powered.
10150 */
10151 else if ((req_link_state == UIC_LINK_OFF_STATE) &&
10152 (!check_for_bkops || !hba->auto_bkops_enabled)) {
10153 /*
10154 * Let's make sure that link is in low power mode, we are doing
10155 * this currently by putting the link in Hibern8. Otherway to
10156 * put the link in low power mode is to send the DME end point
10157 * to device and then send the DME reset command to local
10158 * unipro. But putting the link in hibern8 is much faster.
10159 *
10160 * Note also that putting the link in Hibern8 is a requirement
10161 * for entering DeepSleep.
10162 */
10163 ret = ufshcd_uic_hibern8_enter(hba);
10164 if (ret) {
10165 dev_err(hba->dev, "%s: hibern8 enter failed %d\n",
10166 __func__, ret);
10167 goto out;
10168 }
10169 /*
10170 * Change controller state to "reset state" which
10171 * should also put the link in off/reset state
10172 */
10173 ufshcd_hba_stop(hba);
10174 /*
10175 * TODO: Check if we need any delay to make sure that
10176 * controller is reset
10177 */
10178 ufshcd_set_link_off(hba);
10179 }
10180
10181 out:
10182 return ret;
10183 }
10184
ufshcd_vreg_set_lpm(struct ufs_hba * hba)10185 static void ufshcd_vreg_set_lpm(struct ufs_hba *hba)
10186 {
10187 bool vcc_off = false;
10188
10189 /*
10190 * It seems some UFS devices may keep drawing more than sleep current
10191 * (atleast for 500us) from UFS rails (especially from VCCQ rail).
10192 * To avoid this situation, add 2ms delay before putting these UFS
10193 * rails in LPM mode.
10194 */
10195 if (!ufshcd_is_link_active(hba) &&
10196 hba->dev_quirks & UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM)
10197 usleep_range(2000, 2100);
10198
10199 /*
10200 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
10201 * power.
10202 *
10203 * If UFS device and link is in OFF state, all power supplies (VCC,
10204 * VCCQ, VCCQ2) can be turned off if power on write protect is not
10205 * required. If UFS link is inactive (Hibern8 or OFF state) and device
10206 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
10207 *
10208 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
10209 * in low power state which would save some power.
10210 *
10211 * If Write Booster is enabled and the device needs to flush the WB
10212 * buffer OR if bkops status is urgent for WB, keep Vcc on.
10213 */
10214 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
10215 !hba->dev_info.is_lu_power_on_wp) {
10216 ufshcd_setup_vreg(hba, false);
10217 vcc_off = true;
10218 } else if (!ufshcd_is_ufs_dev_active(hba)) {
10219 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
10220 vcc_off = true;
10221 if (ufshcd_is_link_hibern8(hba) || ufshcd_is_link_off(hba)) {
10222 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
10223 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq2);
10224 }
10225 }
10226
10227 /*
10228 * All UFS devices require delay after VCC power rail is turned-off.
10229 */
10230 if (vcc_off && hba->vreg_info.vcc && !hba->vreg_info.vcc->always_on)
10231 usleep_range(hba->vcc_off_delay_us,
10232 hba->vcc_off_delay_us + 100);
10233 }
10234
10235 #ifdef CONFIG_PM
ufshcd_vreg_set_hpm(struct ufs_hba * hba)10236 static int ufshcd_vreg_set_hpm(struct ufs_hba *hba)
10237 {
10238 bool vcc_on = false;
10239 int ret = 0;
10240
10241 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
10242 !hba->dev_info.is_lu_power_on_wp) {
10243 ret = ufshcd_setup_vreg(hba, true);
10244 vcc_on = true;
10245 } else if (!ufshcd_is_ufs_dev_active(hba)) {
10246 if (!ufshcd_is_link_active(hba)) {
10247 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
10248 if (ret)
10249 goto vcc_disable;
10250 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
10251 if (ret)
10252 goto vccq_lpm;
10253 }
10254 ret = ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, true);
10255 vcc_on = true;
10256 }
10257 goto out;
10258
10259 vccq_lpm:
10260 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
10261 vcc_disable:
10262 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
10263 out:
10264 /*
10265 * On platforms with a slow VCC ramp-up, a delay is needed after
10266 * turning on VCC to ensure the voltage is stable before the
10267 * reference clock is enabled.
10268 */
10269 if (hba->quirks & UFSHCD_QUIRK_VCC_ON_DELAY && !ret && vcc_on &&
10270 hba->vreg_info.vcc && !hba->vreg_info.vcc->always_on)
10271 usleep_range(1000, 1100);
10272
10273 return ret;
10274 }
10275 #endif /* CONFIG_PM */
10276
ufshcd_hba_vreg_set_lpm(struct ufs_hba * hba)10277 static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba)
10278 {
10279 if (ufshcd_is_link_off(hba) || ufshcd_can_aggressive_pc(hba))
10280 ufshcd_setup_hba_vreg(hba, false);
10281 }
10282
ufshcd_hba_vreg_set_hpm(struct ufs_hba * hba)10283 static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba)
10284 {
10285 if (ufshcd_is_link_off(hba) || ufshcd_can_aggressive_pc(hba))
10286 ufshcd_setup_hba_vreg(hba, true);
10287 }
10288
__ufshcd_wl_suspend(struct ufs_hba * hba,enum ufs_pm_op pm_op)10289 static int __ufshcd_wl_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
10290 {
10291 int ret = 0;
10292 bool check_for_bkops;
10293 enum ufs_pm_level pm_lvl;
10294 enum ufs_dev_pwr_mode req_dev_pwr_mode;
10295 enum uic_link_state req_link_state;
10296
10297 hba->pm_op_in_progress = true;
10298 if (pm_op != UFS_SHUTDOWN_PM) {
10299 pm_lvl = pm_op == UFS_RUNTIME_PM ?
10300 hba->rpm_lvl : hba->spm_lvl;
10301 req_dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl);
10302 req_link_state = ufs_get_pm_lvl_to_link_pwr_state(pm_lvl);
10303 } else {
10304 req_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE;
10305 req_link_state = UIC_LINK_OFF_STATE;
10306 }
10307
10308 /*
10309 * If we can't transition into any of the low power modes
10310 * just gate the clocks.
10311 */
10312 ufshcd_hold(hba);
10313 hba->clk_gating.is_suspended = true;
10314
10315 if (ufshcd_is_clkscaling_supported(hba))
10316 ufshcd_clk_scaling_suspend(hba, true);
10317
10318 if (req_dev_pwr_mode == UFS_ACTIVE_PWR_MODE &&
10319 req_link_state == UIC_LINK_ACTIVE_STATE) {
10320 ufshcd_disable_auto_bkops(hba);
10321 flush_work(&hba->eeh_work);
10322 cancel_delayed_work_sync(&hba->ufs_rtc_update_work);
10323 goto vops_suspend;
10324 }
10325
10326 if ((req_dev_pwr_mode == hba->curr_dev_pwr_mode) &&
10327 (req_link_state == hba->uic_link_state))
10328 goto enable_scaling;
10329
10330 /* UFS device & link must be active before we enter in this function */
10331 if (!ufshcd_is_ufs_dev_active(hba) || !ufshcd_is_link_active(hba)) {
10332 /* Wait err handler finish or trigger err recovery */
10333 if (!ufshcd_eh_in_progress(hba))
10334 ufshcd_force_error_recovery(hba);
10335 ret = -EBUSY;
10336 goto enable_scaling;
10337 }
10338
10339 if (pm_op == UFS_RUNTIME_PM) {
10340 if (ufshcd_can_autobkops_during_suspend(hba)) {
10341 /*
10342 * The device is idle with no requests in the queue,
10343 * allow background operations if bkops status shows
10344 * that performance might be impacted.
10345 */
10346 ret = ufshcd_bkops_ctrl(hba);
10347 if (ret) {
10348 /*
10349 * If return err in suspend flow, IO will hang.
10350 * Trigger error handler and break suspend for
10351 * error recovery.
10352 */
10353 ufshcd_force_error_recovery(hba);
10354 ret = -EBUSY;
10355 goto enable_scaling;
10356 }
10357 } else {
10358 /* make sure that auto bkops is disabled */
10359 ufshcd_disable_auto_bkops(hba);
10360 }
10361 /*
10362 * If device needs to do BKOP or WB buffer flush during
10363 * Hibern8, keep device power mode as "active power mode"
10364 * and VCC supply.
10365 */
10366 hba->dev_info.b_rpm_dev_flush_capable =
10367 hba->auto_bkops_enabled ||
10368 (((req_link_state == UIC_LINK_HIBERN8_STATE) ||
10369 ((req_link_state == UIC_LINK_ACTIVE_STATE) &&
10370 ufshcd_is_auto_hibern8_enabled(hba))) &&
10371 ufshcd_wb_need_flush(hba));
10372 }
10373
10374 flush_work(&hba->eeh_work);
10375 cancel_delayed_work_sync(&hba->ufs_rtc_update_work);
10376
10377 ret = ufshcd_vops_suspend(hba, pm_op, PRE_CHANGE);
10378 if (ret)
10379 goto enable_scaling;
10380
10381 if (req_dev_pwr_mode != hba->curr_dev_pwr_mode) {
10382 if (pm_op != UFS_RUNTIME_PM)
10383 /* ensure that bkops is disabled */
10384 ufshcd_disable_auto_bkops(hba);
10385
10386 if (!hba->dev_info.b_rpm_dev_flush_capable) {
10387 ret = ufshcd_set_dev_pwr_mode(hba, req_dev_pwr_mode);
10388 if (ret && pm_op != UFS_SHUTDOWN_PM) {
10389 /*
10390 * If return err in suspend flow, IO will hang.
10391 * Trigger error handler and break suspend for
10392 * error recovery.
10393 */
10394 ufshcd_force_error_recovery(hba);
10395 ret = -EBUSY;
10396 }
10397 if (ret)
10398 goto enable_scaling;
10399 }
10400 }
10401
10402 /*
10403 * In the case of DeepSleep, the device is expected to remain powered
10404 * with the link off, so do not check for bkops.
10405 */
10406 check_for_bkops = !ufshcd_is_ufs_dev_deepsleep(hba);
10407 ret = ufshcd_link_state_transition(hba, req_link_state, check_for_bkops);
10408 if (ret && pm_op != UFS_SHUTDOWN_PM) {
10409 /*
10410 * If return err in suspend flow, IO will hang.
10411 * Trigger error handler and break suspend for
10412 * error recovery.
10413 */
10414 ufshcd_force_error_recovery(hba);
10415 ret = -EBUSY;
10416 }
10417 if (ret)
10418 goto set_dev_active;
10419
10420 vops_suspend:
10421 /*
10422 * Call vendor specific suspend callback. As these callbacks may access
10423 * vendor specific host controller register space call them before the
10424 * host clocks are ON.
10425 */
10426 ret = ufshcd_vops_suspend(hba, pm_op, POST_CHANGE);
10427 if (ret)
10428 goto set_link_active;
10429
10430 goto out;
10431
10432 set_link_active:
10433 /*
10434 * Device hardware reset is required to exit DeepSleep. Also, for
10435 * DeepSleep, the link is off so host reset and restore will be done
10436 * further below.
10437 */
10438 if (ufshcd_is_ufs_dev_deepsleep(hba)) {
10439 ufshcd_device_reset(hba);
10440 WARN_ON(!ufshcd_is_link_off(hba));
10441 }
10442 if (ufshcd_is_link_hibern8(hba) && !ufshcd_uic_hibern8_exit(hba))
10443 ufshcd_set_link_active(hba);
10444 else if (ufshcd_is_link_off(hba))
10445 ufshcd_host_reset_and_restore(hba);
10446 set_dev_active:
10447 /* Can also get here needing to exit DeepSleep */
10448 if (ufshcd_is_ufs_dev_deepsleep(hba)) {
10449 ufshcd_device_reset(hba);
10450 ufshcd_host_reset_and_restore(hba);
10451 }
10452 if (!ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE))
10453 ufshcd_disable_auto_bkops(hba);
10454 enable_scaling:
10455 if (ufshcd_is_clkscaling_supported(hba))
10456 ufshcd_clk_scaling_suspend(hba, false);
10457
10458 hba->dev_info.b_rpm_dev_flush_capable = false;
10459 out:
10460 if (hba->dev_info.b_rpm_dev_flush_capable) {
10461 schedule_delayed_work(&hba->rpm_dev_flush_recheck_work,
10462 msecs_to_jiffies(RPM_DEV_FLUSH_RECHECK_WORK_DELAY_MS));
10463 }
10464
10465 if (ret) {
10466 ufshcd_update_evt_hist(hba, UFS_EVT_WL_SUSP_ERR, (u32)ret);
10467 hba->clk_gating.is_suspended = false;
10468 ufshcd_release(hba);
10469 }
10470 hba->pm_op_in_progress = false;
10471 return ret;
10472 }
10473
10474 #ifdef CONFIG_PM
__ufshcd_wl_resume(struct ufs_hba * hba,enum ufs_pm_op pm_op)10475 static int __ufshcd_wl_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
10476 {
10477 int ret;
10478 enum uic_link_state old_link_state = hba->uic_link_state;
10479
10480 hba->pm_op_in_progress = true;
10481
10482 /*
10483 * Call vendor specific resume callback. As these callbacks may access
10484 * vendor specific host controller register space call them when the
10485 * host clocks are ON.
10486 */
10487 ret = ufshcd_vops_resume(hba, pm_op);
10488 if (ret)
10489 goto out;
10490
10491 /* For DeepSleep, the only supported option is to have the link off */
10492 WARN_ON(ufshcd_is_ufs_dev_deepsleep(hba) && !ufshcd_is_link_off(hba));
10493
10494 if (ufshcd_is_link_hibern8(hba)) {
10495 ret = ufshcd_uic_hibern8_exit(hba);
10496 if (!ret) {
10497 ufshcd_set_link_active(hba);
10498 } else {
10499 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
10500 __func__, ret);
10501 /*
10502 * If the h8 exit fails during the runtime resume
10503 * process, it becomes stuck and cannot be recovered
10504 * through the error handler. To fix this, use link
10505 * recovery instead of the error handler.
10506 */
10507 ret = ufshcd_link_recovery(hba);
10508 if (ret)
10509 goto vendor_suspend;
10510 }
10511 } else if (ufshcd_is_link_off(hba)) {
10512 /*
10513 * A full initialization of the host and the device is
10514 * required since the link was put to off during suspend.
10515 * Note, in the case of DeepSleep, the device will exit
10516 * DeepSleep due to device reset.
10517 */
10518 ret = ufshcd_reset_and_restore(hba);
10519 /*
10520 * ufshcd_reset_and_restore() should have already
10521 * set the link state as active
10522 */
10523 if (ret || !ufshcd_is_link_active(hba))
10524 goto vendor_suspend;
10525 }
10526
10527 if (!ufshcd_is_ufs_dev_active(hba)) {
10528 ret = ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE);
10529 if (ret)
10530 goto set_old_link_state;
10531 ufshcd_set_timestamp_attr(hba);
10532 }
10533
10534 schedule_delayed_work(&hba->ufs_rtc_update_work,
10535 msecs_to_jiffies(UFS_RTC_UPDATE_INTERVAL_MS));
10536
10537 if (ufshcd_keep_autobkops_enabled_except_suspend(hba))
10538 ufshcd_enable_auto_bkops(hba);
10539 else
10540 /*
10541 * If BKOPs operations are urgently needed at this moment then
10542 * keep auto-bkops enabled or else disable it.
10543 */
10544 ufshcd_bkops_ctrl(hba);
10545
10546 if (hba->ee_usr_mask)
10547 ufshcd_write_ee_control(hba);
10548
10549 if (ufshcd_is_clkscaling_supported(hba))
10550 ufshcd_clk_scaling_suspend(hba, false);
10551
10552 if (hba->dev_info.b_rpm_dev_flush_capable) {
10553 hba->dev_info.b_rpm_dev_flush_capable = false;
10554 cancel_delayed_work(&hba->rpm_dev_flush_recheck_work);
10555 }
10556
10557 ufshcd_configure_auto_hibern8(hba);
10558
10559 goto out;
10560
10561 set_old_link_state:
10562 ufshcd_link_state_transition(hba, old_link_state, 0);
10563 vendor_suspend:
10564 ufshcd_vops_suspend(hba, pm_op, PRE_CHANGE);
10565 ufshcd_vops_suspend(hba, pm_op, POST_CHANGE);
10566 out:
10567 if (ret)
10568 ufshcd_update_evt_hist(hba, UFS_EVT_WL_RES_ERR, (u32)ret);
10569 hba->clk_gating.is_suspended = false;
10570 ufshcd_release(hba);
10571 hba->pm_op_in_progress = false;
10572 return ret;
10573 }
10574
ufshcd_wl_runtime_suspend(struct device * dev)10575 static int ufshcd_wl_runtime_suspend(struct device *dev)
10576 {
10577 struct scsi_device *sdev = to_scsi_device(dev);
10578 struct ufs_hba *hba;
10579 int ret;
10580 ktime_t start = ktime_get();
10581
10582 hba = shost_priv(sdev->host);
10583
10584 ret = __ufshcd_wl_suspend(hba, UFS_RUNTIME_PM);
10585 if (ret)
10586 dev_err(&sdev->sdev_gendev, "%s failed: %d\n", __func__, ret);
10587
10588 trace_ufshcd_wl_runtime_suspend(hba, ret,
10589 ktime_to_us(ktime_sub(ktime_get(), start)),
10590 hba->curr_dev_pwr_mode, hba->uic_link_state);
10591
10592 return ret;
10593 }
10594
ufshcd_wl_runtime_resume(struct device * dev)10595 static int ufshcd_wl_runtime_resume(struct device *dev)
10596 {
10597 struct scsi_device *sdev = to_scsi_device(dev);
10598 struct ufs_hba *hba;
10599 int ret = 0;
10600 ktime_t start = ktime_get();
10601
10602 hba = shost_priv(sdev->host);
10603
10604 ret = __ufshcd_wl_resume(hba, UFS_RUNTIME_PM);
10605 if (ret)
10606 dev_err(&sdev->sdev_gendev, "%s failed: %d\n", __func__, ret);
10607
10608 trace_ufshcd_wl_runtime_resume(hba, ret,
10609 ktime_to_us(ktime_sub(ktime_get(), start)),
10610 hba->curr_dev_pwr_mode, hba->uic_link_state);
10611
10612 return ret;
10613 }
10614 #endif
10615
10616 #ifdef CONFIG_PM_SLEEP
ufshcd_wl_suspend(struct device * dev)10617 static int ufshcd_wl_suspend(struct device *dev)
10618 {
10619 struct scsi_device *sdev = to_scsi_device(dev);
10620 struct ufs_hba *hba;
10621 int ret = 0;
10622 ktime_t start = ktime_get();
10623
10624 hba = shost_priv(sdev->host);
10625 down(&hba->host_sem);
10626
10627 if (pm_runtime_suspended(dev))
10628 goto out;
10629
10630 ret = __ufshcd_wl_suspend(hba, UFS_SYSTEM_PM);
10631 if (ret) {
10632 dev_err(&sdev->sdev_gendev, "%s failed: %d\n", __func__, ret);
10633 up(&hba->host_sem);
10634 }
10635
10636 out:
10637 if (!ret)
10638 hba->is_sys_suspended = true;
10639 trace_ufshcd_wl_suspend(hba, ret,
10640 ktime_to_us(ktime_sub(ktime_get(), start)),
10641 hba->curr_dev_pwr_mode, hba->uic_link_state);
10642
10643 return ret;
10644 }
10645
ufshcd_wl_resume(struct device * dev)10646 static int ufshcd_wl_resume(struct device *dev)
10647 {
10648 struct scsi_device *sdev = to_scsi_device(dev);
10649 struct ufs_hba *hba;
10650 int ret = 0;
10651 ktime_t start = ktime_get();
10652
10653 hba = shost_priv(sdev->host);
10654
10655 if (pm_runtime_suspended(dev))
10656 goto out;
10657
10658 ret = __ufshcd_wl_resume(hba, UFS_SYSTEM_PM);
10659 if (ret)
10660 dev_err(&sdev->sdev_gendev, "%s failed: %d\n", __func__, ret);
10661 out:
10662 trace_ufshcd_wl_resume(hba, ret,
10663 ktime_to_us(ktime_sub(ktime_get(), start)),
10664 hba->curr_dev_pwr_mode, hba->uic_link_state);
10665 if (!ret)
10666 hba->is_sys_suspended = false;
10667 up(&hba->host_sem);
10668 return ret;
10669 }
10670 #endif
10671
10672 /**
10673 * ufshcd_suspend - helper function for suspend operations
10674 * @hba: per adapter instance
10675 *
10676 * This function will put disable irqs, turn off clocks
10677 * and set vreg and hba-vreg in lpm mode.
10678 *
10679 * Return: 0 upon success; < 0 upon failure.
10680 */
ufshcd_suspend(struct ufs_hba * hba)10681 static int ufshcd_suspend(struct ufs_hba *hba)
10682 {
10683 int ret;
10684
10685 if (!hba->is_powered)
10686 return 0;
10687 /*
10688 * Disable the host irq as host controller as there won't be any
10689 * host controller transaction expected till resume.
10690 */
10691 ufshcd_disable_irq(hba);
10692 ret = ufshcd_setup_clocks(hba, false);
10693 if (ret) {
10694 ufshcd_enable_irq(hba);
10695 goto out;
10696 }
10697 if (ufshcd_is_clkgating_allowed(hba)) {
10698 hba->clk_gating.state = CLKS_OFF;
10699 trace_ufshcd_clk_gating(hba,
10700 hba->clk_gating.state);
10701 }
10702
10703 ufshcd_vreg_set_lpm(hba);
10704 /* Put the host controller in low power mode if possible */
10705 ufshcd_hba_vreg_set_lpm(hba);
10706 ufshcd_pm_qos_update(hba, false);
10707 out:
10708 if (ret)
10709 ufshcd_update_evt_hist(hba, UFS_EVT_SUSPEND_ERR, (u32)ret);
10710 return ret;
10711 }
10712
10713 #ifdef CONFIG_PM
10714 /**
10715 * ufshcd_resume - helper function for resume operations
10716 * @hba: per adapter instance
10717 *
10718 * This function basically turns on the regulators, clocks and
10719 * irqs of the hba.
10720 *
10721 * Return: 0 for success and non-zero for failure.
10722 */
ufshcd_resume(struct ufs_hba * hba)10723 static int ufshcd_resume(struct ufs_hba *hba)
10724 {
10725 int ret;
10726
10727 if (!hba->is_powered)
10728 return 0;
10729
10730 ufshcd_hba_vreg_set_hpm(hba);
10731 ret = ufshcd_vreg_set_hpm(hba);
10732 if (ret)
10733 goto out;
10734
10735 /* Make sure clocks are enabled before accessing controller */
10736 ret = ufshcd_setup_clocks(hba, true);
10737 if (ret)
10738 goto disable_vreg;
10739
10740 /* enable the host irq as host controller would be active soon */
10741 ufshcd_enable_irq(hba);
10742
10743 goto out;
10744
10745 disable_vreg:
10746 ufshcd_vreg_set_lpm(hba);
10747 out:
10748 if (ret)
10749 ufshcd_update_evt_hist(hba, UFS_EVT_RESUME_ERR, (u32)ret);
10750 return ret;
10751 }
10752 #endif /* CONFIG_PM */
10753
10754 #ifdef CONFIG_PM_SLEEP
10755 /**
10756 * ufshcd_system_suspend - system suspend callback
10757 * @dev: Device associated with the UFS controller.
10758 *
10759 * Executed before putting the system into a sleep state in which the contents
10760 * of main memory are preserved.
10761 *
10762 * Return: 0 for success and non-zero for failure.
10763 */
ufshcd_system_suspend(struct device * dev)10764 int ufshcd_system_suspend(struct device *dev)
10765 {
10766 struct ufs_hba *hba = dev_get_drvdata(dev);
10767 int ret = 0;
10768 ktime_t start = ktime_get();
10769
10770 if (pm_runtime_suspended(hba->dev))
10771 goto out;
10772
10773 ret = ufshcd_suspend(hba);
10774 out:
10775 trace_ufshcd_system_suspend(hba, ret,
10776 ktime_to_us(ktime_sub(ktime_get(), start)),
10777 hba->curr_dev_pwr_mode, hba->uic_link_state);
10778 return ret;
10779 }
10780 EXPORT_SYMBOL(ufshcd_system_suspend);
10781
10782 /**
10783 * ufshcd_system_resume - system resume callback
10784 * @dev: Device associated with the UFS controller.
10785 *
10786 * Executed after waking the system up from a sleep state in which the contents
10787 * of main memory were preserved.
10788 *
10789 * Return: 0 for success and non-zero for failure.
10790 */
ufshcd_system_resume(struct device * dev)10791 int ufshcd_system_resume(struct device *dev)
10792 {
10793 struct ufs_hba *hba = dev_get_drvdata(dev);
10794 ktime_t start = ktime_get();
10795 int ret = 0;
10796
10797 if (pm_runtime_suspended(hba->dev))
10798 goto out;
10799
10800 ret = ufshcd_resume(hba);
10801
10802 out:
10803 trace_ufshcd_system_resume(hba, ret,
10804 ktime_to_us(ktime_sub(ktime_get(), start)),
10805 hba->curr_dev_pwr_mode, hba->uic_link_state);
10806
10807 return ret;
10808 }
10809 EXPORT_SYMBOL(ufshcd_system_resume);
10810 #endif /* CONFIG_PM_SLEEP */
10811
10812 #ifdef CONFIG_PM
10813 /**
10814 * ufshcd_runtime_suspend - runtime suspend callback
10815 * @dev: Device associated with the UFS controller.
10816 *
10817 * Check the description of ufshcd_suspend() function for more details.
10818 *
10819 * Return: 0 for success and non-zero for failure.
10820 */
ufshcd_runtime_suspend(struct device * dev)10821 int ufshcd_runtime_suspend(struct device *dev)
10822 {
10823 struct ufs_hba *hba = dev_get_drvdata(dev);
10824 int ret;
10825 ktime_t start = ktime_get();
10826
10827 ret = ufshcd_suspend(hba);
10828
10829 trace_ufshcd_runtime_suspend(hba, ret,
10830 ktime_to_us(ktime_sub(ktime_get(), start)),
10831 hba->curr_dev_pwr_mode, hba->uic_link_state);
10832 return ret;
10833 }
10834 EXPORT_SYMBOL(ufshcd_runtime_suspend);
10835
10836 /**
10837 * ufshcd_runtime_resume - runtime resume routine
10838 * @dev: Device associated with the UFS controller.
10839 *
10840 * This function basically brings controller
10841 * to active state. Following operations are done in this function:
10842 *
10843 * 1. Turn on all the controller related clocks
10844 * 2. Turn ON VCC rail
10845 *
10846 * Return: 0 upon success; < 0 upon failure.
10847 */
ufshcd_runtime_resume(struct device * dev)10848 int ufshcd_runtime_resume(struct device *dev)
10849 {
10850 struct ufs_hba *hba = dev_get_drvdata(dev);
10851 int ret;
10852 ktime_t start = ktime_get();
10853
10854 ret = ufshcd_resume(hba);
10855
10856 trace_ufshcd_runtime_resume(hba, ret,
10857 ktime_to_us(ktime_sub(ktime_get(), start)),
10858 hba->curr_dev_pwr_mode, hba->uic_link_state);
10859 return ret;
10860 }
10861 EXPORT_SYMBOL(ufshcd_runtime_resume);
10862 #endif /* CONFIG_PM */
10863
ufshcd_wl_shutdown(struct scsi_device * sdev)10864 static void ufshcd_wl_shutdown(struct scsi_device *sdev)
10865 {
10866 struct ufs_hba *hba = shost_priv(sdev->host);
10867
10868 down(&hba->host_sem);
10869 hba->shutting_down = true;
10870 up(&hba->host_sem);
10871
10872 /* Turn on everything while shutting down */
10873 ufshcd_rpm_get_sync(hba);
10874
10875 ufshcd_store_tx_eq_settings(hba);
10876
10877 scsi_device_quiesce(sdev);
10878 shost_for_each_device(sdev, hba->host) {
10879 if (sdev == hba->ufs_device_wlun)
10880 continue;
10881 mutex_lock(&sdev->state_mutex);
10882 scsi_device_set_state(sdev, SDEV_OFFLINE);
10883 mutex_unlock(&sdev->state_mutex);
10884 }
10885 __ufshcd_wl_suspend(hba, UFS_SHUTDOWN_PM);
10886
10887 /*
10888 * Next, turn off the UFS controller and the UFS regulators. Disable
10889 * clocks.
10890 */
10891 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba))
10892 ufshcd_suspend(hba);
10893
10894 hba->is_powered = false;
10895 }
10896
10897 /**
10898 * ufshcd_remove - de-allocate SCSI host and host memory space
10899 * data structure memory
10900 * @hba: per adapter instance
10901 */
ufshcd_remove(struct ufs_hba * hba)10902 void ufshcd_remove(struct ufs_hba *hba)
10903 {
10904 if (hba->ufs_device_wlun)
10905 ufshcd_rpm_get_sync(hba);
10906 ufs_hwmon_remove(hba);
10907 ufs_bsg_remove(hba);
10908 ufs_rpmb_remove(hba);
10909 ufs_sysfs_remove_nodes(hba->dev);
10910 cancel_delayed_work_sync(&hba->ufs_rtc_update_work);
10911 blk_mq_destroy_queue(hba->tmf_queue);
10912 blk_put_queue(hba->tmf_queue);
10913 blk_mq_free_tag_set(&hba->tmf_tag_set);
10914 if (hba->scsi_host_added)
10915 scsi_remove_host(hba->host);
10916 /* disable interrupts */
10917 ufshcd_disable_intr(hba, hba->intr_mask);
10918 ufshcd_hba_stop(hba);
10919 ufshcd_hba_exit(hba);
10920 }
10921 EXPORT_SYMBOL_GPL(ufshcd_remove);
10922
10923 #ifdef CONFIG_PM_SLEEP
ufshcd_system_freeze(struct device * dev)10924 int ufshcd_system_freeze(struct device *dev)
10925 {
10926
10927 return ufshcd_system_suspend(dev);
10928
10929 }
10930 EXPORT_SYMBOL_GPL(ufshcd_system_freeze);
10931
ufshcd_system_restore(struct device * dev)10932 int ufshcd_system_restore(struct device *dev)
10933 {
10934
10935 struct ufs_hba *hba = dev_get_drvdata(dev);
10936 int ret;
10937
10938 ret = ufshcd_system_resume(dev);
10939 if (ret)
10940 return ret;
10941
10942 /* Configure UTRL and UTMRL base address registers */
10943 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
10944 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
10945 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
10946 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
10947 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
10948 REG_UTP_TASK_REQ_LIST_BASE_L);
10949 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
10950 REG_UTP_TASK_REQ_LIST_BASE_H);
10951 /*
10952 * Make sure that UTRL and UTMRL base address registers
10953 * are updated with the latest queue addresses. Only after
10954 * updating these addresses, we can queue the new commands.
10955 */
10956 ufshcd_readl(hba, REG_UTP_TASK_REQ_LIST_BASE_H);
10957
10958 return 0;
10959
10960 }
10961 EXPORT_SYMBOL_GPL(ufshcd_system_restore);
10962
ufshcd_system_thaw(struct device * dev)10963 int ufshcd_system_thaw(struct device *dev)
10964 {
10965 return ufshcd_system_resume(dev);
10966 }
10967 EXPORT_SYMBOL_GPL(ufshcd_system_thaw);
10968 #endif /* CONFIG_PM_SLEEP */
10969
10970 /**
10971 * ufshcd_set_dma_mask - Set dma mask based on the controller
10972 * addressing capability
10973 * @hba: per adapter instance
10974 *
10975 * Return: 0 for success, non-zero for failure.
10976 */
ufshcd_set_dma_mask(struct ufs_hba * hba)10977 static int ufshcd_set_dma_mask(struct ufs_hba *hba)
10978 {
10979 if (hba->vops && hba->vops->set_dma_mask)
10980 return hba->vops->set_dma_mask(hba);
10981 if (hba->capabilities & MASK_64_ADDRESSING_SUPPORT) {
10982 if (!dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(64)))
10983 return 0;
10984 }
10985 return dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(32));
10986 }
10987
10988 /**
10989 * ufshcd_devres_release - devres cleanup handler, invoked during release of
10990 * hba->dev
10991 * @host: pointer to SCSI host
10992 */
ufshcd_devres_release(void * host)10993 static void ufshcd_devres_release(void *host)
10994 {
10995 scsi_host_put(host);
10996 }
10997
10998 /**
10999 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
11000 * @dev: pointer to device handle
11001 * @hba_handle: driver private handle
11002 *
11003 * Return: 0 on success, non-zero value on failure.
11004 *
11005 * NOTE: There is no corresponding ufshcd_dealloc_host() because this function
11006 * keeps track of its allocations using devres and deallocates everything on
11007 * device removal automatically.
11008 */
ufshcd_alloc_host(struct device * dev,struct ufs_hba ** hba_handle)11009 int ufshcd_alloc_host(struct device *dev, struct ufs_hba **hba_handle)
11010 {
11011 struct Scsi_Host *host;
11012 struct ufs_hba *hba;
11013 int err = 0;
11014
11015 if (!dev) {
11016 dev_err(dev,
11017 "Invalid memory reference for dev is NULL\n");
11018 err = -ENODEV;
11019 goto out_error;
11020 }
11021
11022 host = scsi_host_alloc(&ufshcd_driver_template,
11023 sizeof(struct ufs_hba));
11024 if (!host) {
11025 dev_err(dev, "scsi_host_alloc failed\n");
11026 err = -ENOMEM;
11027 goto out_error;
11028 }
11029
11030 err = devm_add_action_or_reset(dev, ufshcd_devres_release,
11031 host);
11032 if (err)
11033 return err;
11034
11035 host->nr_maps = HCTX_TYPE_POLL + 1;
11036 hba = shost_priv(host);
11037 hba->host = host;
11038 hba->dev = dev;
11039 hba->dev_ref_clk_freq = REF_CLK_FREQ_INVAL;
11040 hba->nop_out_timeout = NOP_OUT_TIMEOUT;
11041 ufshcd_set_sg_entry_size(hba, sizeof(struct ufshcd_sg_entry));
11042 INIT_LIST_HEAD(&hba->clk_list_head);
11043 INIT_LIST_HEAD(&hba->rpmbs);
11044 spin_lock_init(&hba->outstanding_lock);
11045
11046 *hba_handle = hba;
11047
11048 out_error:
11049 return err;
11050 }
11051 EXPORT_SYMBOL(ufshcd_alloc_host);
11052
11053 /* This function exists because blk_mq_alloc_tag_set() requires this. */
ufshcd_queue_tmf(struct blk_mq_hw_ctx * hctx,const struct blk_mq_queue_data * qd)11054 static blk_status_t ufshcd_queue_tmf(struct blk_mq_hw_ctx *hctx,
11055 const struct blk_mq_queue_data *qd)
11056 {
11057 WARN_ON_ONCE(true);
11058 return BLK_STS_NOTSUPP;
11059 }
11060
11061 static const struct blk_mq_ops ufshcd_tmf_ops = {
11062 .queue_rq = ufshcd_queue_tmf,
11063 };
11064
ufshcd_add_scsi_host(struct ufs_hba * hba)11065 static int ufshcd_add_scsi_host(struct ufs_hba *hba)
11066 {
11067 int err;
11068
11069 WARN_ON_ONCE(!hba->host->can_queue);
11070 WARN_ON_ONCE(!hba->host->cmd_per_lun);
11071
11072 if (is_mcq_supported(hba)) {
11073 ufshcd_mcq_enable(hba);
11074 err = ufshcd_alloc_mcq(hba);
11075 if (err) {
11076 /* Continue with SDB mode */
11077 ufshcd_mcq_disable(hba);
11078 use_mcq_mode = false;
11079 dev_err(hba->dev, "MCQ mode is disabled, err=%d\n",
11080 err);
11081 }
11082 }
11083 if (!is_mcq_supported(hba) && !hba->lsdb_sup) {
11084 dev_err(hba->dev,
11085 "%s: failed to initialize (legacy doorbell mode not supported)\n",
11086 __func__);
11087 return -EINVAL;
11088 }
11089
11090 err = scsi_add_host(hba->host, hba->dev);
11091 if (err) {
11092 dev_err(hba->dev, "scsi_add_host failed\n");
11093 return err;
11094 }
11095 hba->scsi_host_added = true;
11096
11097 hba->tmf_tag_set = (struct blk_mq_tag_set) {
11098 .nr_hw_queues = 1,
11099 .queue_depth = hba->nutmrs,
11100 .ops = &ufshcd_tmf_ops,
11101 };
11102 err = blk_mq_alloc_tag_set(&hba->tmf_tag_set);
11103 if (err < 0)
11104 goto remove_scsi_host;
11105 hba->tmf_queue = blk_mq_alloc_queue(&hba->tmf_tag_set, NULL, NULL);
11106 if (IS_ERR(hba->tmf_queue)) {
11107 err = PTR_ERR(hba->tmf_queue);
11108 goto free_tmf_tag_set;
11109 }
11110 hba->tmf_rqs = devm_kcalloc(hba->dev, hba->nutmrs,
11111 sizeof(*hba->tmf_rqs), GFP_KERNEL);
11112 if (!hba->tmf_rqs) {
11113 err = -ENOMEM;
11114 goto free_tmf_queue;
11115 }
11116
11117 return 0;
11118
11119 free_tmf_queue:
11120 blk_mq_destroy_queue(hba->tmf_queue);
11121 blk_put_queue(hba->tmf_queue);
11122
11123 free_tmf_tag_set:
11124 blk_mq_free_tag_set(&hba->tmf_tag_set);
11125
11126 remove_scsi_host:
11127 if (hba->scsi_host_added)
11128 scsi_remove_host(hba->host);
11129
11130 return err;
11131 }
11132
11133 /**
11134 * ufshcd_init - Driver initialization routine
11135 * @hba: per-adapter instance
11136 * @mmio_base: base register address
11137 * @irq: Interrupt line of device
11138 *
11139 * Return: 0 on success; < 0 on failure.
11140 */
ufshcd_init(struct ufs_hba * hba,void __iomem * mmio_base,unsigned int irq)11141 int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
11142 {
11143 int err;
11144 struct Scsi_Host *host = hba->host;
11145 struct device *dev = hba->dev;
11146
11147 /*
11148 * dev_set_drvdata() must be called before any callbacks are registered
11149 * that use dev_get_drvdata() (frequency scaling, clock scaling, hwmon,
11150 * sysfs).
11151 */
11152 dev_set_drvdata(dev, hba);
11153
11154 if (!mmio_base) {
11155 dev_err(hba->dev,
11156 "Invalid memory reference for mmio_base is NULL\n");
11157 err = -ENODEV;
11158 goto out_error;
11159 }
11160
11161 hba->mmio_base = mmio_base;
11162 hba->irq = irq;
11163 hba->vps = &ufs_hba_vps;
11164
11165 /*
11166 * Initialize clk_gating.lock early since it is being used in
11167 * ufshcd_setup_clocks()
11168 */
11169 spin_lock_init(&hba->clk_gating.lock);
11170
11171 /* Initialize mutex for PM QoS request synchronization */
11172 mutex_init(&hba->pm_qos_mutex);
11173
11174 /*
11175 * Set the default power management level for runtime and system PM.
11176 * Host controller drivers can override them in their
11177 * 'ufs_hba_variant_ops::init' callback.
11178 *
11179 * Default power saving mode is to keep UFS link in Hibern8 state
11180 * and UFS device in sleep state.
11181 */
11182 hba->rpm_lvl = ufs_get_desired_pm_lvl_for_dev_link_state(
11183 UFS_SLEEP_PWR_MODE,
11184 UIC_LINK_HIBERN8_STATE);
11185 hba->spm_lvl = ufs_get_desired_pm_lvl_for_dev_link_state(
11186 UFS_SLEEP_PWR_MODE,
11187 UIC_LINK_HIBERN8_STATE);
11188
11189 /*
11190 * Most ufs devices require 1ms delay after vcc is powered off before
11191 * it can be powered on again. Set the default to 2ms. The platform
11192 * drivers can override this setting as needed.
11193 */
11194 hba->vcc_off_delay_us = 2000;
11195
11196 err = ufshcd_hba_init(hba);
11197 if (err)
11198 goto out_error;
11199
11200 /* Read capabilities registers */
11201 err = ufshcd_hba_capabilities(hba);
11202 if (err)
11203 goto out_disable;
11204
11205 /* Get UFS version supported by the controller */
11206 hba->ufs_version = ufshcd_get_ufs_version(hba);
11207
11208 /* Get Interrupt bit mask per version */
11209 hba->intr_mask = ufshcd_get_intr_mask(hba);
11210
11211 err = ufshcd_set_dma_mask(hba);
11212 if (err) {
11213 dev_err(hba->dev, "set dma mask failed\n");
11214 goto out_disable;
11215 }
11216
11217 /* Allocate memory for host memory space */
11218 err = ufshcd_memory_alloc(hba);
11219 if (err) {
11220 dev_err(hba->dev, "Memory allocation failed\n");
11221 goto out_disable;
11222 }
11223
11224 /* Configure LRB */
11225 ufshcd_host_memory_configure(hba);
11226
11227 host->can_queue = hba->nutrs - UFSHCD_NUM_RESERVED;
11228 /*
11229 * Set the queue depth for WLUNs. ufs_get_device_desc() will increase
11230 * host->cmd_per_lun to a larger value.
11231 */
11232 host->cmd_per_lun = 1;
11233 host->max_id = UFSHCD_MAX_ID;
11234 host->max_lun = UFS_MAX_LUNS;
11235 host->max_channel = UFSHCD_MAX_CHANNEL;
11236 host->unique_id = host->host_no;
11237 host->max_cmd_len = UFS_CDB_SIZE;
11238 host->queuecommand_may_block = !!(hba->caps & UFSHCD_CAP_CLK_GATING);
11239
11240 /* Use default RPM delay if host not set */
11241 if (host->rpm_autosuspend_delay == 0)
11242 host->rpm_autosuspend_delay = RPM_AUTOSUSPEND_DELAY_MS;
11243
11244 hba->max_pwr_info.is_valid = false;
11245
11246 /* Initialize work queues */
11247 hba->eh_wq = alloc_ordered_workqueue("ufs_eh_wq_%d", WQ_MEM_RECLAIM,
11248 hba->host->host_no);
11249 if (!hba->eh_wq) {
11250 dev_err(hba->dev, "%s: failed to create eh workqueue\n",
11251 __func__);
11252 err = -ENOMEM;
11253 goto out_disable;
11254 }
11255 INIT_WORK(&hba->eh_work, ufshcd_err_handler);
11256 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
11257
11258 sema_init(&hba->host_sem, 1);
11259
11260 /* Initialize UIC command mutex */
11261 mutex_init(&hba->uic_cmd_mutex);
11262
11263 /* Initialize mutex for device management commands */
11264 mutex_init(&hba->dev_cmd.lock);
11265
11266 /* Initialize mutex for exception event control */
11267 mutex_init(&hba->ee_ctrl_mutex);
11268
11269 mutex_init(&hba->wb_mutex);
11270
11271 init_rwsem(&hba->clk_scaling_lock);
11272
11273 ufshcd_init_clk_gating(hba);
11274
11275 ufshcd_init_clk_scaling(hba);
11276
11277 /*
11278 * In order to avoid any spurious interrupt immediately after
11279 * registering UFS controller interrupt handler, clear any pending UFS
11280 * interrupt status and disable all the UFS interrupts.
11281 */
11282 ufshcd_writel(hba, ufshcd_readl(hba, REG_INTERRUPT_STATUS),
11283 REG_INTERRUPT_STATUS);
11284 ufshcd_writel(hba, 0, REG_INTERRUPT_ENABLE);
11285 /*
11286 * Make sure that UFS interrupts are disabled and any pending interrupt
11287 * status is cleared before registering UFS interrupt handler.
11288 */
11289 ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
11290
11291 /* IRQ registration */
11292 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
11293 if (err) {
11294 dev_err(hba->dev, "request irq failed\n");
11295 goto out_disable;
11296 } else {
11297 hba->is_irq_enabled = true;
11298 }
11299
11300 /* Reset the attached device */
11301 ufshcd_device_reset(hba);
11302
11303 ufshcd_init_crypto(hba);
11304
11305 /* Host controller enable */
11306 err = ufshcd_hba_enable(hba);
11307 if (err) {
11308 dev_err(hba->dev, "Host controller enable failed\n");
11309 ufshcd_print_evt_hist(hba);
11310 ufshcd_print_host_state(hba);
11311 goto out_disable;
11312 }
11313
11314 INIT_DELAYED_WORK(&hba->rpm_dev_flush_recheck_work, ufshcd_rpm_dev_flush_recheck_work);
11315 INIT_DELAYED_WORK(&hba->ufs_rtc_update_work, ufshcd_rtc_work);
11316
11317 /* Set the default auto-hiberate idle timer value to 150 ms */
11318 if (ufshcd_is_auto_hibern8_supported(hba) && !hba->ahit) {
11319 hba->ahit = FIELD_PREP(UFSHCI_AHIBERN8_TIMER_MASK, 150) |
11320 FIELD_PREP(UFSHCI_AHIBERN8_SCALE_MASK, 3);
11321 }
11322
11323 err = ufshcd_add_scsi_host(hba);
11324 if (err)
11325 goto out_disable;
11326
11327 /* Hold auto suspend until async scan completes */
11328 pm_runtime_get_sync(dev);
11329
11330 /*
11331 * We are assuming that device wasn't put in sleep/power-down
11332 * state exclusively during the boot stage before kernel.
11333 * This assumption helps avoid doing link startup twice during
11334 * ufshcd_probe_hba().
11335 */
11336 ufshcd_set_ufs_dev_active(hba);
11337
11338 /* Initialize hba, detect and initialize UFS device */
11339 ktime_t probe_start = ktime_get();
11340
11341 hba->ufshcd_state = UFSHCD_STATE_RESET;
11342
11343 err = ufshcd_link_startup(hba);
11344 if (err)
11345 goto out_disable;
11346
11347 if (hba->mcq_enabled)
11348 ufshcd_config_mcq(hba);
11349
11350 if (hba->quirks & UFSHCD_QUIRK_SKIP_PH_CONFIGURATION)
11351 goto initialized;
11352
11353 /* Debug counters initialization */
11354 ufshcd_clear_dbg_ufs_stats(hba);
11355
11356 /* UniPro link is active now */
11357 ufshcd_set_link_active(hba);
11358
11359 /* Verify device initialization by sending NOP OUT UPIU */
11360 err = ufshcd_verify_dev_init(hba);
11361 if (err)
11362 goto out_disable;
11363
11364 /* Initiate UFS initialization, and waiting until completion */
11365 err = ufshcd_complete_dev_init(hba);
11366 if (err)
11367 goto out_disable;
11368
11369 err = ufshcd_device_params_init(hba);
11370 if (err)
11371 goto out_disable;
11372
11373 err = ufshcd_post_device_init(hba);
11374
11375 initialized:
11376 ufshcd_process_probe_result(hba, probe_start, err);
11377 if (err)
11378 goto out_disable;
11379
11380 ufs_sysfs_add_nodes(hba->dev);
11381 hba->dme_qos_sysfs_handle = sysfs_get_dirent(hba->dev->kobj.sd,
11382 "dme_qos_notification");
11383 async_schedule(ufshcd_async_scan, hba);
11384
11385 device_enable_async_suspend(dev);
11386 ufshcd_pm_qos_init(hba);
11387 return 0;
11388
11389 out_disable:
11390 hba->is_irq_enabled = false;
11391 ufshcd_hba_exit(hba);
11392 out_error:
11393 return err > 0 ? -EIO : err;
11394 }
11395 EXPORT_SYMBOL_GPL(ufshcd_init);
11396
ufshcd_resume_complete(struct device * dev)11397 void ufshcd_resume_complete(struct device *dev)
11398 {
11399 struct ufs_hba *hba = dev_get_drvdata(dev);
11400
11401 if (hba->complete_put) {
11402 ufshcd_rpm_put(hba);
11403 hba->complete_put = false;
11404 }
11405 }
11406 EXPORT_SYMBOL_GPL(ufshcd_resume_complete);
11407
ufshcd_rpm_ok_for_spm(struct ufs_hba * hba)11408 static bool ufshcd_rpm_ok_for_spm(struct ufs_hba *hba)
11409 {
11410 struct device *dev = &hba->ufs_device_wlun->sdev_gendev;
11411 enum ufs_dev_pwr_mode dev_pwr_mode;
11412 enum uic_link_state link_state;
11413 unsigned long flags;
11414 bool res;
11415
11416 spin_lock_irqsave(&dev->power.lock, flags);
11417 dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(hba->spm_lvl);
11418 link_state = ufs_get_pm_lvl_to_link_pwr_state(hba->spm_lvl);
11419 res = pm_runtime_suspended(dev) &&
11420 hba->curr_dev_pwr_mode == dev_pwr_mode &&
11421 hba->uic_link_state == link_state &&
11422 !hba->dev_info.b_rpm_dev_flush_capable;
11423 spin_unlock_irqrestore(&dev->power.lock, flags);
11424
11425 return res;
11426 }
11427
__ufshcd_suspend_prepare(struct device * dev,bool rpm_ok_for_spm)11428 int __ufshcd_suspend_prepare(struct device *dev, bool rpm_ok_for_spm)
11429 {
11430 struct ufs_hba *hba = dev_get_drvdata(dev);
11431 int ret;
11432
11433 /*
11434 * SCSI assumes that runtime-pm and system-pm for scsi drivers
11435 * are same. And it doesn't wake up the device for system-suspend
11436 * if it's runtime suspended. But ufs doesn't follow that.
11437 * Refer ufshcd_resume_complete()
11438 */
11439 if (hba->ufs_device_wlun) {
11440 /* Prevent runtime suspend */
11441 ufshcd_rpm_get_noresume(hba);
11442 /*
11443 * Check if already runtime suspended in same state as system
11444 * suspend would be.
11445 */
11446 if (!rpm_ok_for_spm || !ufshcd_rpm_ok_for_spm(hba)) {
11447 /* RPM state is not ok for SPM, so runtime resume */
11448 ret = ufshcd_rpm_resume(hba);
11449 if (ret < 0 && ret != -EACCES) {
11450 ufshcd_rpm_put(hba);
11451 return ret;
11452 }
11453 }
11454 hba->complete_put = true;
11455 }
11456 return 0;
11457 }
11458 EXPORT_SYMBOL_GPL(__ufshcd_suspend_prepare);
11459
ufshcd_suspend_prepare(struct device * dev)11460 int ufshcd_suspend_prepare(struct device *dev)
11461 {
11462 return __ufshcd_suspend_prepare(dev, true);
11463 }
11464 EXPORT_SYMBOL_GPL(ufshcd_suspend_prepare);
11465
11466 #ifdef CONFIG_PM_SLEEP
ufshcd_wl_poweroff(struct device * dev)11467 static int ufshcd_wl_poweroff(struct device *dev)
11468 {
11469 struct scsi_device *sdev = to_scsi_device(dev);
11470 struct ufs_hba *hba = shost_priv(sdev->host);
11471
11472 __ufshcd_wl_suspend(hba, UFS_SHUTDOWN_PM);
11473 return 0;
11474 }
11475 #endif
11476
ufshcd_wl_probe(struct scsi_device * sdev)11477 static int ufshcd_wl_probe(struct scsi_device *sdev)
11478 {
11479 struct device *dev = &sdev->sdev_gendev;
11480
11481 if (!is_device_wlun(sdev))
11482 return -ENODEV;
11483
11484 blk_pm_runtime_init(sdev->request_queue, dev);
11485 pm_runtime_set_autosuspend_delay(dev, 0);
11486 pm_runtime_allow(dev);
11487
11488 return 0;
11489 }
11490
ufshcd_wl_remove(struct scsi_device * sdev)11491 static void ufshcd_wl_remove(struct scsi_device *sdev)
11492 {
11493 struct device *dev = &sdev->sdev_gendev;
11494
11495 pm_runtime_forbid(dev);
11496 }
11497
11498 static const struct dev_pm_ops ufshcd_wl_pm_ops = {
11499 #ifdef CONFIG_PM_SLEEP
11500 .suspend = ufshcd_wl_suspend,
11501 .resume = ufshcd_wl_resume,
11502 .freeze = ufshcd_wl_suspend,
11503 .thaw = ufshcd_wl_resume,
11504 .poweroff = ufshcd_wl_poweroff,
11505 .restore = ufshcd_wl_resume,
11506 #endif
11507 SET_RUNTIME_PM_OPS(ufshcd_wl_runtime_suspend, ufshcd_wl_runtime_resume, NULL)
11508 };
11509
ufshcd_check_header_layout(void)11510 static void ufshcd_check_header_layout(void)
11511 {
11512 /*
11513 * gcc compilers before version 10 cannot do constant-folding for
11514 * sub-byte bitfields. Hence skip the layout checks for gcc 9 and
11515 * before.
11516 */
11517 if (IS_ENABLED(CONFIG_CC_IS_GCC) && CONFIG_GCC_VERSION < 100000)
11518 return;
11519
11520 BUILD_BUG_ON(((u8 *)&(struct request_desc_header){
11521 .cci = 3})[0] != 3);
11522
11523 BUILD_BUG_ON(((u8 *)&(struct request_desc_header){
11524 .ehs_length = 2})[1] != 2);
11525
11526 BUILD_BUG_ON(((u8 *)&(struct request_desc_header){
11527 .enable_crypto = 1})[2]
11528 != 0x80);
11529
11530 BUILD_BUG_ON((((u8 *)&(struct request_desc_header){
11531 .command_type = 5,
11532 .data_direction = 3,
11533 .interrupt = 1,
11534 })[3]) != ((5 << 4) | (3 << 1) | 1));
11535
11536 BUILD_BUG_ON(((__le32 *)&(struct request_desc_header){
11537 .dunl = cpu_to_le32(0xdeadbeef)})[1] !=
11538 cpu_to_le32(0xdeadbeef));
11539
11540 BUILD_BUG_ON(((u8 *)&(struct request_desc_header){
11541 .ocs = 4})[8] != 4);
11542
11543 BUILD_BUG_ON(((u8 *)&(struct request_desc_header){
11544 .cds = 5})[9] != 5);
11545
11546 BUILD_BUG_ON(((__le32 *)&(struct request_desc_header){
11547 .dunu = cpu_to_le32(0xbadcafe)})[3] !=
11548 cpu_to_le32(0xbadcafe));
11549
11550 BUILD_BUG_ON(((u8 *)&(struct utp_upiu_header){
11551 .iid = 0xf })[4] != 0xf0);
11552
11553 BUILD_BUG_ON(((u8 *)&(struct utp_upiu_header){
11554 .command_set_type = 0xf })[4] != 0xf);
11555 }
11556
11557 /*
11558 * ufs_dev_wlun_template - describes ufs device wlun
11559 * ufs-device wlun - used to send pm commands
11560 * All luns are consumers of ufs-device wlun.
11561 *
11562 * Currently, no sd driver is present for wluns.
11563 * Hence the no specific pm operations are performed.
11564 * With ufs design, SSU should be sent to ufs-device wlun.
11565 * Hence register a scsi driver for ufs wluns only.
11566 */
11567 static struct scsi_driver ufs_dev_wlun_template = {
11568 .probe = ufshcd_wl_probe,
11569 .remove = ufshcd_wl_remove,
11570 .shutdown = ufshcd_wl_shutdown,
11571 .gendrv = {
11572 .name = "ufs_device_wlun",
11573 .pm = &ufshcd_wl_pm_ops,
11574 },
11575 };
11576
ufshcd_core_init(void)11577 static int __init ufshcd_core_init(void)
11578 {
11579 int ret;
11580
11581 ufshcd_check_header_layout();
11582
11583 ufs_debugfs_init();
11584
11585 ret = scsi_register_driver(&ufs_dev_wlun_template);
11586 if (ret)
11587 ufs_debugfs_exit();
11588 return ret;
11589 }
11590
ufshcd_core_exit(void)11591 static void __exit ufshcd_core_exit(void)
11592 {
11593 ufs_debugfs_exit();
11594 scsi_unregister_driver(&ufs_dev_wlun_template);
11595 }
11596
11597 module_init(ufshcd_core_init);
11598 module_exit(ufshcd_core_exit);
11599
11600 MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
11601 MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
11602 MODULE_DESCRIPTION("Generic UFS host controller driver Core");
11603 MODULE_SOFTDEP("pre: governor_simpleondemand");
11604 MODULE_LICENSE("GPL");
11605