1 // SPDX-License-Identifier: GPL-2.0-or-later
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.
12 #include <linux/async.h>
13 #include <linux/devfreq.h>
14 #include <linux/nls.h>
16 #include <linux/bitfield.h>
17 #include <linux/blk-pm.h>
18 #include <linux/blkdev.h>
20 #include "ufs_quirks.h"
22 #include "ufs-sysfs.h"
24 #include "ufshcd-crypto.h"
25 #include <asm/unaligned.h>
26 #include <linux/blkdev.h>
28 #define CREATE_TRACE_POINTS
29 #include <trace/events/ufs.h>
31 #define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
34 /* UIC command timeout, unit: ms */
35 #define UIC_CMD_TIMEOUT 500
37 /* NOP OUT retries waiting for NOP IN response */
38 #define NOP_OUT_RETRIES 10
39 /* Timeout after 50 msecs if NOP OUT hangs without response */
40 #define NOP_OUT_TIMEOUT 50 /* msecs */
42 /* Query request retries */
43 #define QUERY_REQ_RETRIES 3
44 /* Query request timeout */
45 #define QUERY_REQ_TIMEOUT 1500 /* 1.5 seconds */
47 /* Task management command timeout */
48 #define TM_CMD_TIMEOUT 100 /* msecs */
50 /* maximum number of retries for a general UIC command */
51 #define UFS_UIC_COMMAND_RETRIES 3
53 /* maximum number of link-startup retries */
54 #define DME_LINKSTARTUP_RETRIES 3
56 /* Maximum retries for Hibern8 enter */
57 #define UIC_HIBERN8_ENTER_RETRIES 3
59 /* maximum number of reset retries before giving up */
60 #define MAX_HOST_RESET_RETRIES 5
62 /* Expose the flag value from utp_upiu_query.value */
63 #define MASK_QUERY_UPIU_FLAG_LOC 0xFF
65 /* Interrupt aggregation default timeout, unit: 40us */
66 #define INT_AGGR_DEF_TO 0x02
68 /* default delay of autosuspend: 2000 ms */
69 #define RPM_AUTOSUSPEND_DELAY_MS 2000
71 /* Default delay of RPM device flush delayed work */
72 #define RPM_DEV_FLUSH_RECHECK_WORK_DELAY_MS 5000
74 /* Default value of wait time before gating device ref clock */
75 #define UFSHCD_REF_CLK_GATING_WAIT_US 0xFF /* microsecs */
77 /* Polling time to wait for fDeviceInit */
78 #define FDEVICEINIT_COMPL_TIMEOUT 1500 /* millisecs */
80 #define ufshcd_toggle_vreg(_dev, _vreg, _on) \
84 _ret = ufshcd_enable_vreg(_dev, _vreg); \
86 _ret = ufshcd_disable_vreg(_dev, _vreg); \
90 #define ufshcd_hex_dump(prefix_str, buf, len) do { \
91 size_t __len = (len); \
92 print_hex_dump(KERN_ERR, prefix_str, \
93 __len > 4 ? DUMP_PREFIX_OFFSET : DUMP_PREFIX_NONE,\
94 16, 4, buf, __len, false); \
97 int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
103 if (offset % 4 != 0 || len % 4 != 0) /* keep readl happy */
106 regs = kzalloc(len, GFP_ATOMIC);
110 for (pos = 0; pos < len; pos += 4)
111 regs[pos / 4] = ufshcd_readl(hba, offset + pos);
113 ufshcd_hex_dump(prefix, regs, len);
118 EXPORT_SYMBOL_GPL(ufshcd_dump_regs);
121 UFSHCD_MAX_CHANNEL = 0,
123 UFSHCD_CMD_PER_LUN = 32,
124 UFSHCD_CAN_QUEUE = 32,
131 UFSHCD_STATE_OPERATIONAL,
132 UFSHCD_STATE_EH_SCHEDULED_FATAL,
133 UFSHCD_STATE_EH_SCHEDULED_NON_FATAL,
136 /* UFSHCD error handling flags */
138 UFSHCD_EH_IN_PROGRESS = (1 << 0),
141 /* UFSHCD UIC layer error flags */
143 UFSHCD_UIC_DL_PA_INIT_ERROR = (1 << 0), /* Data link layer error */
144 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR = (1 << 1), /* Data link layer error */
145 UFSHCD_UIC_DL_TCx_REPLAY_ERROR = (1 << 2), /* Data link layer error */
146 UFSHCD_UIC_NL_ERROR = (1 << 3), /* Network layer error */
147 UFSHCD_UIC_TL_ERROR = (1 << 4), /* Transport Layer error */
148 UFSHCD_UIC_DME_ERROR = (1 << 5), /* DME error */
149 UFSHCD_UIC_PA_GENERIC_ERROR = (1 << 6), /* Generic PA error */
152 #define ufshcd_set_eh_in_progress(h) \
153 ((h)->eh_flags |= UFSHCD_EH_IN_PROGRESS)
154 #define ufshcd_eh_in_progress(h) \
155 ((h)->eh_flags & UFSHCD_EH_IN_PROGRESS)
156 #define ufshcd_clear_eh_in_progress(h) \
157 ((h)->eh_flags &= ~UFSHCD_EH_IN_PROGRESS)
159 struct ufs_pm_lvl_states ufs_pm_lvl_states[] = {
160 {UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE},
161 {UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE},
162 {UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE},
163 {UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE},
164 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE},
165 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE},
168 static inline enum ufs_dev_pwr_mode
169 ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl)
171 return ufs_pm_lvl_states[lvl].dev_state;
174 static inline enum uic_link_state
175 ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl)
177 return ufs_pm_lvl_states[lvl].link_state;
180 static inline enum ufs_pm_level
181 ufs_get_desired_pm_lvl_for_dev_link_state(enum ufs_dev_pwr_mode dev_state,
182 enum uic_link_state link_state)
184 enum ufs_pm_level lvl;
186 for (lvl = UFS_PM_LVL_0; lvl < UFS_PM_LVL_MAX; lvl++) {
187 if ((ufs_pm_lvl_states[lvl].dev_state == dev_state) &&
188 (ufs_pm_lvl_states[lvl].link_state == link_state))
192 /* if no match found, return the level 0 */
196 static struct ufs_dev_fix ufs_fixups[] = {
197 /* UFS cards deviations table */
198 UFS_FIX(UFS_VENDOR_MICRON, UFS_ANY_MODEL,
199 UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM),
200 UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
201 UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM |
202 UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE |
203 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS),
204 UFS_FIX(UFS_VENDOR_SKHYNIX, UFS_ANY_MODEL,
205 UFS_DEVICE_QUIRK_HOST_PA_SAVECONFIGTIME),
206 UFS_FIX(UFS_VENDOR_SKHYNIX, "hB8aL1" /*H28U62301AMR*/,
207 UFS_DEVICE_QUIRK_HOST_VS_DEBUGSAVECONFIGTIME),
208 UFS_FIX(UFS_VENDOR_TOSHIBA, UFS_ANY_MODEL,
209 UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM),
210 UFS_FIX(UFS_VENDOR_TOSHIBA, "THGLF2G9C8KBADG",
211 UFS_DEVICE_QUIRK_PA_TACTIVATE),
212 UFS_FIX(UFS_VENDOR_TOSHIBA, "THGLF2G9D8KBADG",
213 UFS_DEVICE_QUIRK_PA_TACTIVATE),
217 static irqreturn_t ufshcd_tmc_handler(struct ufs_hba *hba);
218 static void ufshcd_async_scan(void *data, async_cookie_t cookie);
219 static int ufshcd_reset_and_restore(struct ufs_hba *hba);
220 static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd);
221 static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag);
222 static void ufshcd_hba_exit(struct ufs_hba *hba);
223 static int ufshcd_probe_hba(struct ufs_hba *hba, bool async);
224 static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
226 static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on);
227 static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
228 static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba);
229 static int ufshcd_host_reset_and_restore(struct ufs_hba *hba);
230 static void ufshcd_resume_clkscaling(struct ufs_hba *hba);
231 static void ufshcd_suspend_clkscaling(struct ufs_hba *hba);
232 static void __ufshcd_suspend_clkscaling(struct ufs_hba *hba);
233 static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up);
234 static irqreturn_t ufshcd_intr(int irq, void *__hba);
235 static int ufshcd_change_power_mode(struct ufs_hba *hba,
236 struct ufs_pa_layer_attr *pwr_mode);
237 static void ufshcd_schedule_eh_work(struct ufs_hba *hba);
238 static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on);
239 static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on);
240 static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
241 struct ufs_vreg *vreg);
242 static int ufshcd_try_to_abort_task(struct ufs_hba *hba, int tag);
243 static int ufshcd_wb_buf_flush_enable(struct ufs_hba *hba);
244 static int ufshcd_wb_buf_flush_disable(struct ufs_hba *hba);
245 static int ufshcd_wb_ctrl(struct ufs_hba *hba, bool enable);
246 static int ufshcd_wb_toggle_flush_during_h8(struct ufs_hba *hba, bool set);
247 static inline void ufshcd_wb_toggle_flush(struct ufs_hba *hba, bool enable);
249 static inline bool ufshcd_valid_tag(struct ufs_hba *hba, int tag)
251 return tag >= 0 && tag < hba->nutrs;
254 static inline void ufshcd_enable_irq(struct ufs_hba *hba)
256 if (!hba->is_irq_enabled) {
257 enable_irq(hba->irq);
258 hba->is_irq_enabled = true;
262 static inline void ufshcd_disable_irq(struct ufs_hba *hba)
264 if (hba->is_irq_enabled) {
265 disable_irq(hba->irq);
266 hba->is_irq_enabled = false;
270 static inline void ufshcd_wb_config(struct ufs_hba *hba)
274 if (!ufshcd_is_wb_allowed(hba))
277 ret = ufshcd_wb_ctrl(hba, true);
279 dev_err(hba->dev, "%s: Enable WB failed: %d\n", __func__, ret);
281 dev_info(hba->dev, "%s: Write Booster Configured\n", __func__);
282 ret = ufshcd_wb_toggle_flush_during_h8(hba, true);
284 dev_err(hba->dev, "%s: En WB flush during H8: failed: %d\n",
286 ufshcd_wb_toggle_flush(hba, true);
289 static void ufshcd_scsi_unblock_requests(struct ufs_hba *hba)
291 if (atomic_dec_and_test(&hba->scsi_block_reqs_cnt))
292 scsi_unblock_requests(hba->host);
295 static void ufshcd_scsi_block_requests(struct ufs_hba *hba)
297 if (atomic_inc_return(&hba->scsi_block_reqs_cnt) == 1)
298 scsi_block_requests(hba->host);
301 static void ufshcd_add_cmd_upiu_trace(struct ufs_hba *hba, unsigned int tag,
304 struct utp_upiu_req *rq = hba->lrb[tag].ucd_req_ptr;
306 trace_ufshcd_upiu(dev_name(hba->dev), str, &rq->header, &rq->sc.cdb);
309 static void ufshcd_add_query_upiu_trace(struct ufs_hba *hba, unsigned int tag,
312 struct utp_upiu_req *rq = hba->lrb[tag].ucd_req_ptr;
314 trace_ufshcd_upiu(dev_name(hba->dev), str, &rq->header, &rq->qr);
317 static void ufshcd_add_tm_upiu_trace(struct ufs_hba *hba, unsigned int tag,
320 int off = (int)tag - hba->nutrs;
321 struct utp_task_req_desc *descp = &hba->utmrdl_base_addr[off];
323 trace_ufshcd_upiu(dev_name(hba->dev), str, &descp->req_header,
324 &descp->input_param1);
327 static void ufshcd_add_uic_command_trace(struct ufs_hba *hba,
328 struct uic_command *ucmd,
333 if (!trace_ufshcd_uic_command_enabled())
336 if (!strcmp(str, "send"))
339 cmd = ufshcd_readl(hba, REG_UIC_COMMAND);
341 trace_ufshcd_uic_command(dev_name(hba->dev), str, cmd,
342 ufshcd_readl(hba, REG_UIC_COMMAND_ARG_1),
343 ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2),
344 ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3));
347 static void ufshcd_add_command_trace(struct ufs_hba *hba,
348 unsigned int tag, const char *str)
353 struct ufshcd_lrb *lrbp = &hba->lrb[tag];
354 struct scsi_cmnd *cmd = lrbp->cmd;
355 int transfer_len = -1;
357 if (!trace_ufshcd_command_enabled()) {
358 /* trace UPIU W/O tracing command */
360 ufshcd_add_cmd_upiu_trace(hba, tag, str);
364 if (cmd) { /* data phase exists */
365 /* trace UPIU also */
366 ufshcd_add_cmd_upiu_trace(hba, tag, str);
367 opcode = cmd->cmnd[0];
368 if ((opcode == READ_10) || (opcode == WRITE_10)) {
370 * Currently we only fully trace read(10) and write(10)
373 if (cmd->request && cmd->request->bio)
374 lba = cmd->request->bio->bi_iter.bi_sector;
375 transfer_len = be32_to_cpu(
376 lrbp->ucd_req_ptr->sc.exp_data_transfer_len);
380 intr = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
381 doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
382 trace_ufshcd_command(dev_name(hba->dev), str, tag,
383 doorbell, transfer_len, intr, lba, opcode);
386 static void ufshcd_print_clk_freqs(struct ufs_hba *hba)
388 struct ufs_clk_info *clki;
389 struct list_head *head = &hba->clk_list_head;
391 if (list_empty(head))
394 list_for_each_entry(clki, head, list) {
395 if (!IS_ERR_OR_NULL(clki->clk) && clki->min_freq &&
397 dev_err(hba->dev, "clk: %s, rate: %u\n",
398 clki->name, clki->curr_freq);
402 static void ufshcd_print_err_hist(struct ufs_hba *hba,
403 struct ufs_err_reg_hist *err_hist,
409 for (i = 0; i < UFS_ERR_REG_HIST_LENGTH; i++) {
410 int p = (i + err_hist->pos) % UFS_ERR_REG_HIST_LENGTH;
412 if (err_hist->tstamp[p] == 0)
414 dev_err(hba->dev, "%s[%d] = 0x%x at %lld us\n", err_name, p,
415 err_hist->reg[p], ktime_to_us(err_hist->tstamp[p]));
420 dev_err(hba->dev, "No record of %s\n", err_name);
423 static void ufshcd_print_host_regs(struct ufs_hba *hba)
425 ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE, "host_regs: ");
427 ufshcd_print_err_hist(hba, &hba->ufs_stats.pa_err, "pa_err");
428 ufshcd_print_err_hist(hba, &hba->ufs_stats.dl_err, "dl_err");
429 ufshcd_print_err_hist(hba, &hba->ufs_stats.nl_err, "nl_err");
430 ufshcd_print_err_hist(hba, &hba->ufs_stats.tl_err, "tl_err");
431 ufshcd_print_err_hist(hba, &hba->ufs_stats.dme_err, "dme_err");
432 ufshcd_print_err_hist(hba, &hba->ufs_stats.auto_hibern8_err,
434 ufshcd_print_err_hist(hba, &hba->ufs_stats.fatal_err, "fatal_err");
435 ufshcd_print_err_hist(hba, &hba->ufs_stats.link_startup_err,
436 "link_startup_fail");
437 ufshcd_print_err_hist(hba, &hba->ufs_stats.resume_err, "resume_fail");
438 ufshcd_print_err_hist(hba, &hba->ufs_stats.suspend_err,
440 ufshcd_print_err_hist(hba, &hba->ufs_stats.dev_reset, "dev_reset");
441 ufshcd_print_err_hist(hba, &hba->ufs_stats.host_reset, "host_reset");
442 ufshcd_print_err_hist(hba, &hba->ufs_stats.task_abort, "task_abort");
444 ufshcd_vops_dbg_register_dump(hba);
448 void ufshcd_print_trs(struct ufs_hba *hba, unsigned long bitmap, bool pr_prdt)
450 struct ufshcd_lrb *lrbp;
454 for_each_set_bit(tag, &bitmap, hba->nutrs) {
455 lrbp = &hba->lrb[tag];
457 dev_err(hba->dev, "UPIU[%d] - issue time %lld us\n",
458 tag, ktime_to_us(lrbp->issue_time_stamp));
459 dev_err(hba->dev, "UPIU[%d] - complete time %lld us\n",
460 tag, ktime_to_us(lrbp->compl_time_stamp));
462 "UPIU[%d] - Transfer Request Descriptor phys@0x%llx\n",
463 tag, (u64)lrbp->utrd_dma_addr);
465 ufshcd_hex_dump("UPIU TRD: ", lrbp->utr_descriptor_ptr,
466 sizeof(struct utp_transfer_req_desc));
467 dev_err(hba->dev, "UPIU[%d] - Request UPIU phys@0x%llx\n", tag,
468 (u64)lrbp->ucd_req_dma_addr);
469 ufshcd_hex_dump("UPIU REQ: ", lrbp->ucd_req_ptr,
470 sizeof(struct utp_upiu_req));
471 dev_err(hba->dev, "UPIU[%d] - Response UPIU phys@0x%llx\n", tag,
472 (u64)lrbp->ucd_rsp_dma_addr);
473 ufshcd_hex_dump("UPIU RSP: ", lrbp->ucd_rsp_ptr,
474 sizeof(struct utp_upiu_rsp));
476 prdt_length = le16_to_cpu(
477 lrbp->utr_descriptor_ptr->prd_table_length);
478 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN)
479 prdt_length /= sizeof(struct ufshcd_sg_entry);
482 "UPIU[%d] - PRDT - %d entries phys@0x%llx\n",
484 (u64)lrbp->ucd_prdt_dma_addr);
487 ufshcd_hex_dump("UPIU PRDT: ", lrbp->ucd_prdt_ptr,
488 sizeof(struct ufshcd_sg_entry) * prdt_length);
492 static void ufshcd_print_tmrs(struct ufs_hba *hba, unsigned long bitmap)
496 for_each_set_bit(tag, &bitmap, hba->nutmrs) {
497 struct utp_task_req_desc *tmrdp = &hba->utmrdl_base_addr[tag];
499 dev_err(hba->dev, "TM[%d] - Task Management Header\n", tag);
500 ufshcd_hex_dump("", tmrdp, sizeof(*tmrdp));
504 static void ufshcd_print_host_state(struct ufs_hba *hba)
506 struct scsi_device *sdev_ufs = hba->sdev_ufs_device;
508 dev_err(hba->dev, "UFS Host state=%d\n", hba->ufshcd_state);
509 dev_err(hba->dev, "outstanding reqs=0x%lx tasks=0x%lx\n",
510 hba->outstanding_reqs, hba->outstanding_tasks);
511 dev_err(hba->dev, "saved_err=0x%x, saved_uic_err=0x%x\n",
512 hba->saved_err, hba->saved_uic_err);
513 dev_err(hba->dev, "Device power mode=%d, UIC link state=%d\n",
514 hba->curr_dev_pwr_mode, hba->uic_link_state);
515 dev_err(hba->dev, "PM in progress=%d, sys. suspended=%d\n",
516 hba->pm_op_in_progress, hba->is_sys_suspended);
517 dev_err(hba->dev, "Auto BKOPS=%d, Host self-block=%d\n",
518 hba->auto_bkops_enabled, hba->host->host_self_blocked);
519 dev_err(hba->dev, "Clk gate=%d\n", hba->clk_gating.state);
521 "last_hibern8_exit_tstamp at %lld us, hibern8_exit_cnt=%d\n",
522 ktime_to_us(hba->ufs_stats.last_hibern8_exit_tstamp),
523 hba->ufs_stats.hibern8_exit_cnt);
524 dev_err(hba->dev, "last intr at %lld us, last intr status=0x%x\n",
525 ktime_to_us(hba->ufs_stats.last_intr_ts),
526 hba->ufs_stats.last_intr_status);
527 dev_err(hba->dev, "error handling flags=0x%x, req. abort count=%d\n",
528 hba->eh_flags, hba->req_abort_count);
529 dev_err(hba->dev, "hba->ufs_version=0x%x, Host capabilities=0x%x, caps=0x%x\n",
530 hba->ufs_version, hba->capabilities, hba->caps);
531 dev_err(hba->dev, "quirks=0x%x, dev. quirks=0x%x\n", hba->quirks,
534 dev_err(hba->dev, "UFS dev info: %.8s %.16s rev %.4s\n",
535 sdev_ufs->vendor, sdev_ufs->model, sdev_ufs->rev);
537 ufshcd_print_clk_freqs(hba);
541 * ufshcd_print_pwr_info - print power params as saved in hba
543 * @hba: per-adapter instance
545 static void ufshcd_print_pwr_info(struct ufs_hba *hba)
547 static const char * const names[] = {
557 dev_err(hba->dev, "%s:[RX, TX]: gear=[%d, %d], lane[%d, %d], pwr[%s, %s], rate = %d\n",
559 hba->pwr_info.gear_rx, hba->pwr_info.gear_tx,
560 hba->pwr_info.lane_rx, hba->pwr_info.lane_tx,
561 names[hba->pwr_info.pwr_rx],
562 names[hba->pwr_info.pwr_tx],
563 hba->pwr_info.hs_rate);
566 void ufshcd_delay_us(unsigned long us, unsigned long tolerance)
574 usleep_range(us, us + tolerance);
576 EXPORT_SYMBOL_GPL(ufshcd_delay_us);
579 * ufshcd_wait_for_register - wait for register value to change
580 * @hba: per-adapter interface
581 * @reg: mmio register offset
582 * @mask: mask to apply to the read register value
583 * @val: value to wait for
584 * @interval_us: polling interval in microseconds
585 * @timeout_ms: timeout in milliseconds
588 * -ETIMEDOUT on error, zero on success.
590 int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
591 u32 val, unsigned long interval_us,
592 unsigned long timeout_ms)
595 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
597 /* ignore bits that we don't intend to wait on */
600 while ((ufshcd_readl(hba, reg) & mask) != val) {
601 usleep_range(interval_us, interval_us + 50);
602 if (time_after(jiffies, timeout)) {
603 if ((ufshcd_readl(hba, reg) & mask) != val)
613 * ufshcd_get_intr_mask - Get the interrupt bit mask
614 * @hba: Pointer to adapter instance
616 * Returns interrupt bit mask per version
618 static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
622 switch (hba->ufs_version) {
623 case UFSHCI_VERSION_10:
624 intr_mask = INTERRUPT_MASK_ALL_VER_10;
626 case UFSHCI_VERSION_11:
627 case UFSHCI_VERSION_20:
628 intr_mask = INTERRUPT_MASK_ALL_VER_11;
630 case UFSHCI_VERSION_21:
632 intr_mask = INTERRUPT_MASK_ALL_VER_21;
640 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
641 * @hba: Pointer to adapter instance
643 * Returns UFSHCI version supported by the controller
645 static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
647 if (hba->quirks & UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION)
648 return ufshcd_vops_get_ufs_hci_version(hba);
650 return ufshcd_readl(hba, REG_UFS_VERSION);
654 * ufshcd_is_device_present - Check if any device connected to
655 * the host controller
656 * @hba: pointer to adapter instance
658 * Returns true if device present, false if no device detected
660 static inline bool ufshcd_is_device_present(struct ufs_hba *hba)
662 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) &
663 DEVICE_PRESENT) ? true : false;
667 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
668 * @lrbp: pointer to local command reference block
670 * This function is used to get the OCS field from UTRD
671 * Returns the OCS field in the UTRD
673 static inline int ufshcd_get_tr_ocs(struct ufshcd_lrb *lrbp)
675 return le32_to_cpu(lrbp->utr_descriptor_ptr->header.dword_2) & MASK_OCS;
679 * ufshcd_utrl_clear - Clear a bit in UTRLCLR register
680 * @hba: per adapter instance
681 * @pos: position of the bit to be cleared
683 static inline void ufshcd_utrl_clear(struct ufs_hba *hba, u32 pos)
685 if (hba->quirks & UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR)
686 ufshcd_writel(hba, (1 << pos), REG_UTP_TRANSFER_REQ_LIST_CLEAR);
688 ufshcd_writel(hba, ~(1 << pos),
689 REG_UTP_TRANSFER_REQ_LIST_CLEAR);
693 * ufshcd_utmrl_clear - Clear a bit in UTRMLCLR register
694 * @hba: per adapter instance
695 * @pos: position of the bit to be cleared
697 static inline void ufshcd_utmrl_clear(struct ufs_hba *hba, u32 pos)
699 if (hba->quirks & UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR)
700 ufshcd_writel(hba, (1 << pos), REG_UTP_TASK_REQ_LIST_CLEAR);
702 ufshcd_writel(hba, ~(1 << pos), REG_UTP_TASK_REQ_LIST_CLEAR);
706 * ufshcd_outstanding_req_clear - Clear a bit in outstanding request field
707 * @hba: per adapter instance
708 * @tag: position of the bit to be cleared
710 static inline void ufshcd_outstanding_req_clear(struct ufs_hba *hba, int tag)
712 __clear_bit(tag, &hba->outstanding_reqs);
716 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
717 * @reg: Register value of host controller status
719 * Returns integer, 0 on Success and positive value if failed
721 static inline int ufshcd_get_lists_status(u32 reg)
723 return !((reg & UFSHCD_STATUS_READY) == UFSHCD_STATUS_READY);
727 * ufshcd_get_uic_cmd_result - Get the UIC command result
728 * @hba: Pointer to adapter instance
730 * This function gets the result of UIC command completion
731 * Returns 0 on success, non zero value on error
733 static inline int ufshcd_get_uic_cmd_result(struct ufs_hba *hba)
735 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2) &
736 MASK_UIC_COMMAND_RESULT;
740 * ufshcd_get_dme_attr_val - Get the value of attribute returned by UIC command
741 * @hba: Pointer to adapter instance
743 * This function gets UIC command argument3
744 * Returns 0 on success, non zero value on error
746 static inline u32 ufshcd_get_dme_attr_val(struct ufs_hba *hba)
748 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
752 * ufshcd_get_req_rsp - returns the TR response transaction type
753 * @ucd_rsp_ptr: pointer to response UPIU
756 ufshcd_get_req_rsp(struct utp_upiu_rsp *ucd_rsp_ptr)
758 return be32_to_cpu(ucd_rsp_ptr->header.dword_0) >> 24;
762 * ufshcd_get_rsp_upiu_result - Get the result from response UPIU
763 * @ucd_rsp_ptr: pointer to response UPIU
765 * This function gets the response status and scsi_status from response UPIU
766 * Returns the response result code.
769 ufshcd_get_rsp_upiu_result(struct utp_upiu_rsp *ucd_rsp_ptr)
771 return be32_to_cpu(ucd_rsp_ptr->header.dword_1) & MASK_RSP_UPIU_RESULT;
775 * ufshcd_get_rsp_upiu_data_seg_len - Get the data segment length
777 * @ucd_rsp_ptr: pointer to response UPIU
779 * Return the data segment length.
781 static inline unsigned int
782 ufshcd_get_rsp_upiu_data_seg_len(struct utp_upiu_rsp *ucd_rsp_ptr)
784 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
785 MASK_RSP_UPIU_DATA_SEG_LEN;
789 * ufshcd_is_exception_event - Check if the device raised an exception event
790 * @ucd_rsp_ptr: pointer to response UPIU
792 * The function checks if the device raised an exception event indicated in
793 * the Device Information field of response UPIU.
795 * Returns true if exception is raised, false otherwise.
797 static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp *ucd_rsp_ptr)
799 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
800 MASK_RSP_EXCEPTION_EVENT ? true : false;
804 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
805 * @hba: per adapter instance
808 ufshcd_reset_intr_aggr(struct ufs_hba *hba)
810 ufshcd_writel(hba, INT_AGGR_ENABLE |
811 INT_AGGR_COUNTER_AND_TIMER_RESET,
812 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
816 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
817 * @hba: per adapter instance
818 * @cnt: Interrupt aggregation counter threshold
819 * @tmout: Interrupt aggregation timeout value
822 ufshcd_config_intr_aggr(struct ufs_hba *hba, u8 cnt, u8 tmout)
824 ufshcd_writel(hba, INT_AGGR_ENABLE | INT_AGGR_PARAM_WRITE |
825 INT_AGGR_COUNTER_THLD_VAL(cnt) |
826 INT_AGGR_TIMEOUT_VAL(tmout),
827 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
831 * ufshcd_disable_intr_aggr - Disables interrupt aggregation.
832 * @hba: per adapter instance
834 static inline void ufshcd_disable_intr_aggr(struct ufs_hba *hba)
836 ufshcd_writel(hba, 0, REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
840 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
841 * When run-stop registers are set to 1, it indicates the
842 * host controller that it can process the requests
843 * @hba: per adapter instance
845 static void ufshcd_enable_run_stop_reg(struct ufs_hba *hba)
847 ufshcd_writel(hba, UTP_TASK_REQ_LIST_RUN_STOP_BIT,
848 REG_UTP_TASK_REQ_LIST_RUN_STOP);
849 ufshcd_writel(hba, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT,
850 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP);
854 * ufshcd_hba_start - Start controller initialization sequence
855 * @hba: per adapter instance
857 static inline void ufshcd_hba_start(struct ufs_hba *hba)
859 u32 val = CONTROLLER_ENABLE;
861 if (ufshcd_crypto_enable(hba))
862 val |= CRYPTO_GENERAL_ENABLE;
864 ufshcd_writel(hba, val, REG_CONTROLLER_ENABLE);
868 * ufshcd_is_hba_active - Get controller state
869 * @hba: per adapter instance
871 * Returns false if controller is active, true otherwise
873 static inline bool ufshcd_is_hba_active(struct ufs_hba *hba)
875 return (ufshcd_readl(hba, REG_CONTROLLER_ENABLE) & CONTROLLER_ENABLE)
879 u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba)
881 /* HCI version 1.0 and 1.1 supports UniPro 1.41 */
882 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
883 (hba->ufs_version == UFSHCI_VERSION_11))
884 return UFS_UNIPRO_VER_1_41;
886 return UFS_UNIPRO_VER_1_6;
888 EXPORT_SYMBOL(ufshcd_get_local_unipro_ver);
890 static bool ufshcd_is_unipro_pa_params_tuning_req(struct ufs_hba *hba)
893 * If both host and device support UniPro ver1.6 or later, PA layer
894 * parameters tuning happens during link startup itself.
896 * We can manually tune PA layer parameters if either host or device
897 * doesn't support UniPro ver 1.6 or later. But to keep manual tuning
898 * logic simple, we will only do manual tuning if local unipro version
899 * doesn't support ver1.6 or later.
901 if (ufshcd_get_local_unipro_ver(hba) < UFS_UNIPRO_VER_1_6)
908 * ufshcd_set_clk_freq - set UFS controller clock frequencies
909 * @hba: per adapter instance
910 * @scale_up: If True, set max possible frequency othewise set low frequency
912 * Returns 0 if successful
913 * Returns < 0 for any other errors
915 static int ufshcd_set_clk_freq(struct ufs_hba *hba, bool scale_up)
918 struct ufs_clk_info *clki;
919 struct list_head *head = &hba->clk_list_head;
921 if (list_empty(head))
924 list_for_each_entry(clki, head, list) {
925 if (!IS_ERR_OR_NULL(clki->clk)) {
926 if (scale_up && clki->max_freq) {
927 if (clki->curr_freq == clki->max_freq)
930 ret = clk_set_rate(clki->clk, clki->max_freq);
932 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
933 __func__, clki->name,
934 clki->max_freq, ret);
937 trace_ufshcd_clk_scaling(dev_name(hba->dev),
938 "scaled up", clki->name,
942 clki->curr_freq = clki->max_freq;
944 } else if (!scale_up && clki->min_freq) {
945 if (clki->curr_freq == clki->min_freq)
948 ret = clk_set_rate(clki->clk, clki->min_freq);
950 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
951 __func__, clki->name,
952 clki->min_freq, ret);
955 trace_ufshcd_clk_scaling(dev_name(hba->dev),
956 "scaled down", clki->name,
959 clki->curr_freq = clki->min_freq;
962 dev_dbg(hba->dev, "%s: clk: %s, rate: %lu\n", __func__,
963 clki->name, clk_get_rate(clki->clk));
971 * ufshcd_scale_clks - scale up or scale down UFS controller clocks
972 * @hba: per adapter instance
973 * @scale_up: True if scaling up and false if scaling down
975 * Returns 0 if successful
976 * Returns < 0 for any other errors
978 static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up)
981 ktime_t start = ktime_get();
983 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, PRE_CHANGE);
987 ret = ufshcd_set_clk_freq(hba, scale_up);
991 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, POST_CHANGE);
993 ufshcd_set_clk_freq(hba, !scale_up);
996 trace_ufshcd_profile_clk_scaling(dev_name(hba->dev),
997 (scale_up ? "up" : "down"),
998 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
1003 * ufshcd_is_devfreq_scaling_required - check if scaling is required or not
1004 * @hba: per adapter instance
1005 * @scale_up: True if scaling up and false if scaling down
1007 * Returns true if scaling is required, false otherwise.
1009 static bool ufshcd_is_devfreq_scaling_required(struct ufs_hba *hba,
1012 struct ufs_clk_info *clki;
1013 struct list_head *head = &hba->clk_list_head;
1015 if (list_empty(head))
1018 list_for_each_entry(clki, head, list) {
1019 if (!IS_ERR_OR_NULL(clki->clk)) {
1020 if (scale_up && clki->max_freq) {
1021 if (clki->curr_freq == clki->max_freq)
1024 } else if (!scale_up && clki->min_freq) {
1025 if (clki->curr_freq == clki->min_freq)
1035 static int ufshcd_wait_for_doorbell_clr(struct ufs_hba *hba,
1036 u64 wait_timeout_us)
1038 unsigned long flags;
1042 bool timeout = false, do_last_check = false;
1045 ufshcd_hold(hba, false);
1046 spin_lock_irqsave(hba->host->host_lock, flags);
1048 * Wait for all the outstanding tasks/transfer requests.
1049 * Verify by checking the doorbell registers are clear.
1051 start = ktime_get();
1053 if (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL) {
1058 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
1059 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
1060 if (!tm_doorbell && !tr_doorbell) {
1063 } else if (do_last_check) {
1067 spin_unlock_irqrestore(hba->host->host_lock, flags);
1069 if (ktime_to_us(ktime_sub(ktime_get(), start)) >
1073 * We might have scheduled out for long time so make
1074 * sure to check if doorbells are cleared by this time
1077 do_last_check = true;
1079 spin_lock_irqsave(hba->host->host_lock, flags);
1080 } while (tm_doorbell || tr_doorbell);
1084 "%s: timedout waiting for doorbell to clear (tm=0x%x, tr=0x%x)\n",
1085 __func__, tm_doorbell, tr_doorbell);
1089 spin_unlock_irqrestore(hba->host->host_lock, flags);
1090 ufshcd_release(hba);
1095 * ufshcd_scale_gear - scale up/down UFS gear
1096 * @hba: per adapter instance
1097 * @scale_up: True for scaling up gear and false for scaling down
1099 * Returns 0 for success,
1100 * Returns -EBUSY if scaling can't happen at this time
1101 * Returns non-zero for any other errors
1103 static int ufshcd_scale_gear(struct ufs_hba *hba, bool scale_up)
1105 #define UFS_MIN_GEAR_TO_SCALE_DOWN UFS_HS_G1
1107 struct ufs_pa_layer_attr new_pwr_info;
1110 memcpy(&new_pwr_info, &hba->clk_scaling.saved_pwr_info.info,
1111 sizeof(struct ufs_pa_layer_attr));
1113 memcpy(&new_pwr_info, &hba->pwr_info,
1114 sizeof(struct ufs_pa_layer_attr));
1116 if (hba->pwr_info.gear_tx > UFS_MIN_GEAR_TO_SCALE_DOWN
1117 || hba->pwr_info.gear_rx > UFS_MIN_GEAR_TO_SCALE_DOWN) {
1118 /* save the current power mode */
1119 memcpy(&hba->clk_scaling.saved_pwr_info.info,
1121 sizeof(struct ufs_pa_layer_attr));
1123 /* scale down gear */
1124 new_pwr_info.gear_tx = UFS_MIN_GEAR_TO_SCALE_DOWN;
1125 new_pwr_info.gear_rx = UFS_MIN_GEAR_TO_SCALE_DOWN;
1129 /* check if the power mode needs to be changed or not? */
1130 ret = ufshcd_config_pwr_mode(hba, &new_pwr_info);
1132 dev_err(hba->dev, "%s: failed err %d, old gear: (tx %d rx %d), new gear: (tx %d rx %d)",
1134 hba->pwr_info.gear_tx, hba->pwr_info.gear_rx,
1135 new_pwr_info.gear_tx, new_pwr_info.gear_rx);
1140 static int ufshcd_clock_scaling_prepare(struct ufs_hba *hba)
1142 #define DOORBELL_CLR_TOUT_US (1000 * 1000) /* 1 sec */
1145 * make sure that there are no outstanding requests when
1146 * clock scaling is in progress
1148 ufshcd_scsi_block_requests(hba);
1149 down_write(&hba->clk_scaling_lock);
1150 if (ufshcd_wait_for_doorbell_clr(hba, DOORBELL_CLR_TOUT_US)) {
1152 up_write(&hba->clk_scaling_lock);
1153 ufshcd_scsi_unblock_requests(hba);
1159 static void ufshcd_clock_scaling_unprepare(struct ufs_hba *hba)
1161 up_write(&hba->clk_scaling_lock);
1162 ufshcd_scsi_unblock_requests(hba);
1166 * ufshcd_devfreq_scale - scale up/down UFS clocks and gear
1167 * @hba: per adapter instance
1168 * @scale_up: True for scaling up and false for scalin down
1170 * Returns 0 for success,
1171 * Returns -EBUSY if scaling can't happen at this time
1172 * Returns non-zero for any other errors
1174 static int ufshcd_devfreq_scale(struct ufs_hba *hba, bool scale_up)
1178 /* let's not get into low power until clock scaling is completed */
1179 ufshcd_hold(hba, false);
1181 ret = ufshcd_clock_scaling_prepare(hba);
1185 /* scale down the gear before scaling down clocks */
1187 ret = ufshcd_scale_gear(hba, false);
1192 ret = ufshcd_scale_clks(hba, scale_up);
1195 ufshcd_scale_gear(hba, true);
1199 /* scale up the gear after scaling up clocks */
1201 ret = ufshcd_scale_gear(hba, true);
1203 ufshcd_scale_clks(hba, false);
1208 /* Enable Write Booster if we have scaled up else disable it */
1209 up_write(&hba->clk_scaling_lock);
1210 ufshcd_wb_ctrl(hba, scale_up);
1211 down_write(&hba->clk_scaling_lock);
1214 ufshcd_clock_scaling_unprepare(hba);
1216 ufshcd_release(hba);
1220 static void ufshcd_clk_scaling_suspend_work(struct work_struct *work)
1222 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1223 clk_scaling.suspend_work);
1224 unsigned long irq_flags;
1226 spin_lock_irqsave(hba->host->host_lock, irq_flags);
1227 if (hba->clk_scaling.active_reqs || hba->clk_scaling.is_suspended) {
1228 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1231 hba->clk_scaling.is_suspended = true;
1232 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1234 __ufshcd_suspend_clkscaling(hba);
1237 static void ufshcd_clk_scaling_resume_work(struct work_struct *work)
1239 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1240 clk_scaling.resume_work);
1241 unsigned long irq_flags;
1243 spin_lock_irqsave(hba->host->host_lock, irq_flags);
1244 if (!hba->clk_scaling.is_suspended) {
1245 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1248 hba->clk_scaling.is_suspended = false;
1249 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1251 devfreq_resume_device(hba->devfreq);
1254 static int ufshcd_devfreq_target(struct device *dev,
1255 unsigned long *freq, u32 flags)
1258 struct ufs_hba *hba = dev_get_drvdata(dev);
1260 bool scale_up, sched_clk_scaling_suspend_work = false;
1261 struct list_head *clk_list = &hba->clk_list_head;
1262 struct ufs_clk_info *clki;
1263 unsigned long irq_flags;
1265 if (!ufshcd_is_clkscaling_supported(hba))
1268 clki = list_first_entry(&hba->clk_list_head, struct ufs_clk_info, list);
1269 /* Override with the closest supported frequency */
1270 *freq = (unsigned long) clk_round_rate(clki->clk, *freq);
1271 spin_lock_irqsave(hba->host->host_lock, irq_flags);
1272 if (ufshcd_eh_in_progress(hba)) {
1273 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1277 if (!hba->clk_scaling.active_reqs)
1278 sched_clk_scaling_suspend_work = true;
1280 if (list_empty(clk_list)) {
1281 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1285 /* Decide based on the rounded-off frequency and update */
1286 scale_up = (*freq == clki->max_freq) ? true : false;
1288 *freq = clki->min_freq;
1289 /* Update the frequency */
1290 if (!ufshcd_is_devfreq_scaling_required(hba, scale_up)) {
1291 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1293 goto out; /* no state change required */
1295 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1297 start = ktime_get();
1298 ret = ufshcd_devfreq_scale(hba, scale_up);
1300 trace_ufshcd_profile_clk_scaling(dev_name(hba->dev),
1301 (scale_up ? "up" : "down"),
1302 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
1305 if (sched_clk_scaling_suspend_work)
1306 queue_work(hba->clk_scaling.workq,
1307 &hba->clk_scaling.suspend_work);
1312 static bool ufshcd_is_busy(struct request *req, void *priv, bool reserved)
1316 WARN_ON_ONCE(reserved);
1321 /* Whether or not any tag is in use by a request that is in progress. */
1322 static bool ufshcd_any_tag_in_use(struct ufs_hba *hba)
1324 struct request_queue *q = hba->cmd_queue;
1327 blk_mq_tagset_busy_iter(q->tag_set, ufshcd_is_busy, &busy);
1331 static int ufshcd_devfreq_get_dev_status(struct device *dev,
1332 struct devfreq_dev_status *stat)
1334 struct ufs_hba *hba = dev_get_drvdata(dev);
1335 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
1336 unsigned long flags;
1337 struct list_head *clk_list = &hba->clk_list_head;
1338 struct ufs_clk_info *clki;
1341 if (!ufshcd_is_clkscaling_supported(hba))
1344 memset(stat, 0, sizeof(*stat));
1346 spin_lock_irqsave(hba->host->host_lock, flags);
1347 curr_t = ktime_get();
1348 if (!scaling->window_start_t)
1351 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1353 * If current frequency is 0, then the ondemand governor considers
1354 * there's no initial frequency set. And it always requests to set
1355 * to max. frequency.
1357 stat->current_frequency = clki->curr_freq;
1358 if (scaling->is_busy_started)
1359 scaling->tot_busy_t += ktime_us_delta(curr_t,
1360 scaling->busy_start_t);
1362 stat->total_time = ktime_us_delta(curr_t, scaling->window_start_t);
1363 stat->busy_time = scaling->tot_busy_t;
1365 scaling->window_start_t = curr_t;
1366 scaling->tot_busy_t = 0;
1368 if (hba->outstanding_reqs) {
1369 scaling->busy_start_t = curr_t;
1370 scaling->is_busy_started = true;
1372 scaling->busy_start_t = 0;
1373 scaling->is_busy_started = false;
1375 spin_unlock_irqrestore(hba->host->host_lock, flags);
1379 static int ufshcd_devfreq_init(struct ufs_hba *hba)
1381 struct list_head *clk_list = &hba->clk_list_head;
1382 struct ufs_clk_info *clki;
1383 struct devfreq *devfreq;
1386 /* Skip devfreq if we don't have any clocks in the list */
1387 if (list_empty(clk_list))
1390 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1391 dev_pm_opp_add(hba->dev, clki->min_freq, 0);
1392 dev_pm_opp_add(hba->dev, clki->max_freq, 0);
1394 ufshcd_vops_config_scaling_param(hba, &hba->vps->devfreq_profile,
1395 &hba->vps->ondemand_data);
1396 devfreq = devfreq_add_device(hba->dev,
1397 &hba->vps->devfreq_profile,
1398 DEVFREQ_GOV_SIMPLE_ONDEMAND,
1399 &hba->vps->ondemand_data);
1400 if (IS_ERR(devfreq)) {
1401 ret = PTR_ERR(devfreq);
1402 dev_err(hba->dev, "Unable to register with devfreq %d\n", ret);
1404 dev_pm_opp_remove(hba->dev, clki->min_freq);
1405 dev_pm_opp_remove(hba->dev, clki->max_freq);
1409 hba->devfreq = devfreq;
1414 static void ufshcd_devfreq_remove(struct ufs_hba *hba)
1416 struct list_head *clk_list = &hba->clk_list_head;
1417 struct ufs_clk_info *clki;
1422 devfreq_remove_device(hba->devfreq);
1423 hba->devfreq = NULL;
1425 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1426 dev_pm_opp_remove(hba->dev, clki->min_freq);
1427 dev_pm_opp_remove(hba->dev, clki->max_freq);
1430 static void __ufshcd_suspend_clkscaling(struct ufs_hba *hba)
1432 unsigned long flags;
1434 devfreq_suspend_device(hba->devfreq);
1435 spin_lock_irqsave(hba->host->host_lock, flags);
1436 hba->clk_scaling.window_start_t = 0;
1437 spin_unlock_irqrestore(hba->host->host_lock, flags);
1440 static void ufshcd_suspend_clkscaling(struct ufs_hba *hba)
1442 unsigned long flags;
1443 bool suspend = false;
1445 if (!ufshcd_is_clkscaling_supported(hba))
1448 spin_lock_irqsave(hba->host->host_lock, flags);
1449 if (!hba->clk_scaling.is_suspended) {
1451 hba->clk_scaling.is_suspended = true;
1453 spin_unlock_irqrestore(hba->host->host_lock, flags);
1456 __ufshcd_suspend_clkscaling(hba);
1459 static void ufshcd_resume_clkscaling(struct ufs_hba *hba)
1461 unsigned long flags;
1462 bool resume = false;
1464 if (!ufshcd_is_clkscaling_supported(hba))
1467 spin_lock_irqsave(hba->host->host_lock, flags);
1468 if (hba->clk_scaling.is_suspended) {
1470 hba->clk_scaling.is_suspended = false;
1472 spin_unlock_irqrestore(hba->host->host_lock, flags);
1475 devfreq_resume_device(hba->devfreq);
1478 static ssize_t ufshcd_clkscale_enable_show(struct device *dev,
1479 struct device_attribute *attr, char *buf)
1481 struct ufs_hba *hba = dev_get_drvdata(dev);
1483 return snprintf(buf, PAGE_SIZE, "%d\n", hba->clk_scaling.is_allowed);
1486 static ssize_t ufshcd_clkscale_enable_store(struct device *dev,
1487 struct device_attribute *attr, const char *buf, size_t count)
1489 struct ufs_hba *hba = dev_get_drvdata(dev);
1493 if (kstrtou32(buf, 0, &value))
1497 if (value == hba->clk_scaling.is_allowed)
1500 pm_runtime_get_sync(hba->dev);
1501 ufshcd_hold(hba, false);
1503 cancel_work_sync(&hba->clk_scaling.suspend_work);
1504 cancel_work_sync(&hba->clk_scaling.resume_work);
1506 hba->clk_scaling.is_allowed = value;
1509 ufshcd_resume_clkscaling(hba);
1511 ufshcd_suspend_clkscaling(hba);
1512 err = ufshcd_devfreq_scale(hba, true);
1514 dev_err(hba->dev, "%s: failed to scale clocks up %d\n",
1518 ufshcd_release(hba);
1519 pm_runtime_put_sync(hba->dev);
1524 static void ufshcd_clkscaling_init_sysfs(struct ufs_hba *hba)
1526 hba->clk_scaling.enable_attr.show = ufshcd_clkscale_enable_show;
1527 hba->clk_scaling.enable_attr.store = ufshcd_clkscale_enable_store;
1528 sysfs_attr_init(&hba->clk_scaling.enable_attr.attr);
1529 hba->clk_scaling.enable_attr.attr.name = "clkscale_enable";
1530 hba->clk_scaling.enable_attr.attr.mode = 0644;
1531 if (device_create_file(hba->dev, &hba->clk_scaling.enable_attr))
1532 dev_err(hba->dev, "Failed to create sysfs for clkscale_enable\n");
1535 static void ufshcd_ungate_work(struct work_struct *work)
1538 unsigned long flags;
1539 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1540 clk_gating.ungate_work);
1542 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
1544 spin_lock_irqsave(hba->host->host_lock, flags);
1545 if (hba->clk_gating.state == CLKS_ON) {
1546 spin_unlock_irqrestore(hba->host->host_lock, flags);
1550 spin_unlock_irqrestore(hba->host->host_lock, flags);
1551 ufshcd_setup_clocks(hba, true);
1553 ufshcd_enable_irq(hba);
1555 /* Exit from hibern8 */
1556 if (ufshcd_can_hibern8_during_gating(hba)) {
1557 /* Prevent gating in this path */
1558 hba->clk_gating.is_suspended = true;
1559 if (ufshcd_is_link_hibern8(hba)) {
1560 ret = ufshcd_uic_hibern8_exit(hba);
1562 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
1565 ufshcd_set_link_active(hba);
1567 hba->clk_gating.is_suspended = false;
1570 ufshcd_scsi_unblock_requests(hba);
1574 * ufshcd_hold - Enable clocks that were gated earlier due to ufshcd_release.
1575 * Also, exit from hibern8 mode and set the link as active.
1576 * @hba: per adapter instance
1577 * @async: This indicates whether caller should ungate clocks asynchronously.
1579 int ufshcd_hold(struct ufs_hba *hba, bool async)
1583 unsigned long flags;
1585 if (!ufshcd_is_clkgating_allowed(hba))
1587 spin_lock_irqsave(hba->host->host_lock, flags);
1588 hba->clk_gating.active_reqs++;
1591 switch (hba->clk_gating.state) {
1594 * Wait for the ungate work to complete if in progress.
1595 * Though the clocks may be in ON state, the link could
1596 * still be in hibner8 state if hibern8 is allowed
1597 * during clock gating.
1598 * Make sure we exit hibern8 state also in addition to
1601 if (ufshcd_can_hibern8_during_gating(hba) &&
1602 ufshcd_is_link_hibern8(hba)) {
1605 hba->clk_gating.active_reqs--;
1608 spin_unlock_irqrestore(hba->host->host_lock, flags);
1609 flush_result = flush_work(&hba->clk_gating.ungate_work);
1610 if (hba->clk_gating.is_suspended && !flush_result)
1612 spin_lock_irqsave(hba->host->host_lock, flags);
1617 if (cancel_delayed_work(&hba->clk_gating.gate_work)) {
1618 hba->clk_gating.state = CLKS_ON;
1619 trace_ufshcd_clk_gating(dev_name(hba->dev),
1620 hba->clk_gating.state);
1624 * If we are here, it means gating work is either done or
1625 * currently running. Hence, fall through to cancel gating
1626 * work and to enable clocks.
1630 ufshcd_scsi_block_requests(hba);
1631 hba->clk_gating.state = REQ_CLKS_ON;
1632 trace_ufshcd_clk_gating(dev_name(hba->dev),
1633 hba->clk_gating.state);
1634 queue_work(hba->clk_gating.clk_gating_workq,
1635 &hba->clk_gating.ungate_work);
1637 * fall through to check if we should wait for this
1638 * work to be done or not.
1644 hba->clk_gating.active_reqs--;
1648 spin_unlock_irqrestore(hba->host->host_lock, flags);
1649 flush_work(&hba->clk_gating.ungate_work);
1650 /* Make sure state is CLKS_ON before returning */
1651 spin_lock_irqsave(hba->host->host_lock, flags);
1654 dev_err(hba->dev, "%s: clk gating is in invalid state %d\n",
1655 __func__, hba->clk_gating.state);
1658 spin_unlock_irqrestore(hba->host->host_lock, flags);
1662 EXPORT_SYMBOL_GPL(ufshcd_hold);
1664 static void ufshcd_gate_work(struct work_struct *work)
1666 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1667 clk_gating.gate_work.work);
1668 unsigned long flags;
1671 spin_lock_irqsave(hba->host->host_lock, flags);
1673 * In case you are here to cancel this work the gating state
1674 * would be marked as REQ_CLKS_ON. In this case save time by
1675 * skipping the gating work and exit after changing the clock
1678 if (hba->clk_gating.is_suspended ||
1679 (hba->clk_gating.state != REQ_CLKS_OFF)) {
1680 hba->clk_gating.state = CLKS_ON;
1681 trace_ufshcd_clk_gating(dev_name(hba->dev),
1682 hba->clk_gating.state);
1686 if (hba->clk_gating.active_reqs
1687 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
1688 || ufshcd_any_tag_in_use(hba) || hba->outstanding_tasks
1689 || hba->active_uic_cmd || hba->uic_async_done)
1692 spin_unlock_irqrestore(hba->host->host_lock, flags);
1694 /* put the link into hibern8 mode before turning off clocks */
1695 if (ufshcd_can_hibern8_during_gating(hba)) {
1696 ret = ufshcd_uic_hibern8_enter(hba);
1698 hba->clk_gating.state = CLKS_ON;
1699 dev_err(hba->dev, "%s: hibern8 enter failed %d\n",
1701 trace_ufshcd_clk_gating(dev_name(hba->dev),
1702 hba->clk_gating.state);
1705 ufshcd_set_link_hibern8(hba);
1708 ufshcd_disable_irq(hba);
1710 if (!ufshcd_is_link_active(hba))
1711 ufshcd_setup_clocks(hba, false);
1713 /* If link is active, device ref_clk can't be switched off */
1714 __ufshcd_setup_clocks(hba, false, true);
1717 * In case you are here to cancel this work the gating state
1718 * would be marked as REQ_CLKS_ON. In this case keep the state
1719 * as REQ_CLKS_ON which would anyway imply that clocks are off
1720 * and a request to turn them on is pending. By doing this way,
1721 * we keep the state machine in tact and this would ultimately
1722 * prevent from doing cancel work multiple times when there are
1723 * new requests arriving before the current cancel work is done.
1725 spin_lock_irqsave(hba->host->host_lock, flags);
1726 if (hba->clk_gating.state == REQ_CLKS_OFF) {
1727 hba->clk_gating.state = CLKS_OFF;
1728 trace_ufshcd_clk_gating(dev_name(hba->dev),
1729 hba->clk_gating.state);
1732 spin_unlock_irqrestore(hba->host->host_lock, flags);
1737 /* host lock must be held before calling this variant */
1738 static void __ufshcd_release(struct ufs_hba *hba)
1740 if (!ufshcd_is_clkgating_allowed(hba))
1743 hba->clk_gating.active_reqs--;
1745 if (hba->clk_gating.active_reqs || hba->clk_gating.is_suspended ||
1746 hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL ||
1747 ufshcd_any_tag_in_use(hba) || hba->outstanding_tasks ||
1748 hba->active_uic_cmd || hba->uic_async_done)
1751 hba->clk_gating.state = REQ_CLKS_OFF;
1752 trace_ufshcd_clk_gating(dev_name(hba->dev), hba->clk_gating.state);
1753 queue_delayed_work(hba->clk_gating.clk_gating_workq,
1754 &hba->clk_gating.gate_work,
1755 msecs_to_jiffies(hba->clk_gating.delay_ms));
1758 void ufshcd_release(struct ufs_hba *hba)
1760 unsigned long flags;
1762 spin_lock_irqsave(hba->host->host_lock, flags);
1763 __ufshcd_release(hba);
1764 spin_unlock_irqrestore(hba->host->host_lock, flags);
1766 EXPORT_SYMBOL_GPL(ufshcd_release);
1768 static ssize_t ufshcd_clkgate_delay_show(struct device *dev,
1769 struct device_attribute *attr, char *buf)
1771 struct ufs_hba *hba = dev_get_drvdata(dev);
1773 return snprintf(buf, PAGE_SIZE, "%lu\n", hba->clk_gating.delay_ms);
1776 static ssize_t ufshcd_clkgate_delay_store(struct device *dev,
1777 struct device_attribute *attr, const char *buf, size_t count)
1779 struct ufs_hba *hba = dev_get_drvdata(dev);
1780 unsigned long flags, value;
1782 if (kstrtoul(buf, 0, &value))
1785 spin_lock_irqsave(hba->host->host_lock, flags);
1786 hba->clk_gating.delay_ms = value;
1787 spin_unlock_irqrestore(hba->host->host_lock, flags);
1791 static ssize_t ufshcd_clkgate_enable_show(struct device *dev,
1792 struct device_attribute *attr, char *buf)
1794 struct ufs_hba *hba = dev_get_drvdata(dev);
1796 return snprintf(buf, PAGE_SIZE, "%d\n", hba->clk_gating.is_enabled);
1799 static ssize_t ufshcd_clkgate_enable_store(struct device *dev,
1800 struct device_attribute *attr, const char *buf, size_t count)
1802 struct ufs_hba *hba = dev_get_drvdata(dev);
1803 unsigned long flags;
1806 if (kstrtou32(buf, 0, &value))
1810 if (value == hba->clk_gating.is_enabled)
1814 ufshcd_release(hba);
1816 spin_lock_irqsave(hba->host->host_lock, flags);
1817 hba->clk_gating.active_reqs++;
1818 spin_unlock_irqrestore(hba->host->host_lock, flags);
1821 hba->clk_gating.is_enabled = value;
1826 static void ufshcd_init_clk_scaling(struct ufs_hba *hba)
1828 char wq_name[sizeof("ufs_clkscaling_00")];
1830 if (!ufshcd_is_clkscaling_supported(hba))
1833 INIT_WORK(&hba->clk_scaling.suspend_work,
1834 ufshcd_clk_scaling_suspend_work);
1835 INIT_WORK(&hba->clk_scaling.resume_work,
1836 ufshcd_clk_scaling_resume_work);
1838 snprintf(wq_name, sizeof(wq_name), "ufs_clkscaling_%d",
1839 hba->host->host_no);
1840 hba->clk_scaling.workq = create_singlethread_workqueue(wq_name);
1842 ufshcd_clkscaling_init_sysfs(hba);
1845 static void ufshcd_exit_clk_scaling(struct ufs_hba *hba)
1847 if (!ufshcd_is_clkscaling_supported(hba))
1850 destroy_workqueue(hba->clk_scaling.workq);
1851 ufshcd_devfreq_remove(hba);
1854 static void ufshcd_init_clk_gating(struct ufs_hba *hba)
1856 char wq_name[sizeof("ufs_clk_gating_00")];
1858 if (!ufshcd_is_clkgating_allowed(hba))
1861 hba->clk_gating.state = CLKS_ON;
1863 hba->clk_gating.delay_ms = 150;
1864 INIT_DELAYED_WORK(&hba->clk_gating.gate_work, ufshcd_gate_work);
1865 INIT_WORK(&hba->clk_gating.ungate_work, ufshcd_ungate_work);
1867 snprintf(wq_name, ARRAY_SIZE(wq_name), "ufs_clk_gating_%d",
1868 hba->host->host_no);
1869 hba->clk_gating.clk_gating_workq = alloc_ordered_workqueue(wq_name,
1872 hba->clk_gating.is_enabled = true;
1874 hba->clk_gating.delay_attr.show = ufshcd_clkgate_delay_show;
1875 hba->clk_gating.delay_attr.store = ufshcd_clkgate_delay_store;
1876 sysfs_attr_init(&hba->clk_gating.delay_attr.attr);
1877 hba->clk_gating.delay_attr.attr.name = "clkgate_delay_ms";
1878 hba->clk_gating.delay_attr.attr.mode = 0644;
1879 if (device_create_file(hba->dev, &hba->clk_gating.delay_attr))
1880 dev_err(hba->dev, "Failed to create sysfs for clkgate_delay\n");
1882 hba->clk_gating.enable_attr.show = ufshcd_clkgate_enable_show;
1883 hba->clk_gating.enable_attr.store = ufshcd_clkgate_enable_store;
1884 sysfs_attr_init(&hba->clk_gating.enable_attr.attr);
1885 hba->clk_gating.enable_attr.attr.name = "clkgate_enable";
1886 hba->clk_gating.enable_attr.attr.mode = 0644;
1887 if (device_create_file(hba->dev, &hba->clk_gating.enable_attr))
1888 dev_err(hba->dev, "Failed to create sysfs for clkgate_enable\n");
1891 static void ufshcd_exit_clk_gating(struct ufs_hba *hba)
1893 if (!ufshcd_is_clkgating_allowed(hba))
1895 device_remove_file(hba->dev, &hba->clk_gating.delay_attr);
1896 device_remove_file(hba->dev, &hba->clk_gating.enable_attr);
1897 cancel_work_sync(&hba->clk_gating.ungate_work);
1898 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
1899 destroy_workqueue(hba->clk_gating.clk_gating_workq);
1902 /* Must be called with host lock acquired */
1903 static void ufshcd_clk_scaling_start_busy(struct ufs_hba *hba)
1905 bool queue_resume_work = false;
1906 ktime_t curr_t = ktime_get();
1908 if (!ufshcd_is_clkscaling_supported(hba))
1911 if (!hba->clk_scaling.active_reqs++)
1912 queue_resume_work = true;
1914 if (!hba->clk_scaling.is_allowed || hba->pm_op_in_progress)
1917 if (queue_resume_work)
1918 queue_work(hba->clk_scaling.workq,
1919 &hba->clk_scaling.resume_work);
1921 if (!hba->clk_scaling.window_start_t) {
1922 hba->clk_scaling.window_start_t = curr_t;
1923 hba->clk_scaling.tot_busy_t = 0;
1924 hba->clk_scaling.is_busy_started = false;
1927 if (!hba->clk_scaling.is_busy_started) {
1928 hba->clk_scaling.busy_start_t = curr_t;
1929 hba->clk_scaling.is_busy_started = true;
1933 static void ufshcd_clk_scaling_update_busy(struct ufs_hba *hba)
1935 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
1937 if (!ufshcd_is_clkscaling_supported(hba))
1940 if (!hba->outstanding_reqs && scaling->is_busy_started) {
1941 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
1942 scaling->busy_start_t));
1943 scaling->busy_start_t = 0;
1944 scaling->is_busy_started = false;
1948 * ufshcd_send_command - Send SCSI or device management commands
1949 * @hba: per adapter instance
1950 * @task_tag: Task tag of the command
1953 void ufshcd_send_command(struct ufs_hba *hba, unsigned int task_tag)
1955 struct ufshcd_lrb *lrbp = &hba->lrb[task_tag];
1957 lrbp->issue_time_stamp = ktime_get();
1958 lrbp->compl_time_stamp = ktime_set(0, 0);
1959 ufshcd_vops_setup_xfer_req(hba, task_tag, (lrbp->cmd ? true : false));
1960 ufshcd_add_command_trace(hba, task_tag, "send");
1961 ufshcd_clk_scaling_start_busy(hba);
1962 __set_bit(task_tag, &hba->outstanding_reqs);
1963 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
1964 /* Make sure that doorbell is committed immediately */
1969 * ufshcd_copy_sense_data - Copy sense data in case of check condition
1970 * @lrbp: pointer to local reference block
1972 static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
1975 if (lrbp->sense_buffer &&
1976 ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
1979 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
1980 len_to_copy = min_t(int, UFS_SENSE_SIZE, len);
1982 memcpy(lrbp->sense_buffer, lrbp->ucd_rsp_ptr->sr.sense_data,
1988 * ufshcd_copy_query_response() - Copy the Query Response and the data
1990 * @hba: per adapter instance
1991 * @lrbp: pointer to local reference block
1994 int ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1996 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
1998 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
2000 /* Get the descriptor */
2001 if (hba->dev_cmd.query.descriptor &&
2002 lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
2003 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr +
2004 GENERAL_UPIU_REQUEST_SIZE;
2008 /* data segment length */
2009 resp_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
2010 MASK_QUERY_DATA_SEG_LEN;
2011 buf_len = be16_to_cpu(
2012 hba->dev_cmd.query.request.upiu_req.length);
2013 if (likely(buf_len >= resp_len)) {
2014 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len);
2017 "%s: rsp size %d is bigger than buffer size %d",
2018 __func__, resp_len, buf_len);
2027 * ufshcd_hba_capabilities - Read controller capabilities
2028 * @hba: per adapter instance
2030 * Return: 0 on success, negative on error.
2032 static inline int ufshcd_hba_capabilities(struct ufs_hba *hba)
2036 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
2038 /* nutrs and nutmrs are 0 based values */
2039 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS) + 1;
2041 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
2043 /* Read crypto capabilities */
2044 err = ufshcd_hba_init_crypto_capabilities(hba);
2046 dev_err(hba->dev, "crypto setup failed\n");
2052 * ufshcd_ready_for_uic_cmd - Check if controller is ready
2053 * to accept UIC commands
2054 * @hba: per adapter instance
2055 * Return true on success, else false
2057 static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
2059 if (ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY)
2066 * ufshcd_get_upmcrs - Get the power mode change request status
2067 * @hba: Pointer to adapter instance
2069 * This function gets the UPMCRS field of HCS register
2070 * Returns value of UPMCRS field
2072 static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
2074 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
2078 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
2079 * @hba: per adapter instance
2080 * @uic_cmd: UIC command
2082 * Mutex must be held.
2085 ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2087 WARN_ON(hba->active_uic_cmd);
2089 hba->active_uic_cmd = uic_cmd;
2092 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
2093 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
2094 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
2096 ufshcd_add_uic_command_trace(hba, uic_cmd, "send");
2099 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
2104 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
2105 * @hba: per adapter instance
2106 * @uic_cmd: UIC command
2108 * Must be called with mutex held.
2109 * Returns 0 only if success.
2112 ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2115 unsigned long flags;
2117 if (wait_for_completion_timeout(&uic_cmd->done,
2118 msecs_to_jiffies(UIC_CMD_TIMEOUT)))
2119 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
2123 spin_lock_irqsave(hba->host->host_lock, flags);
2124 hba->active_uic_cmd = NULL;
2125 spin_unlock_irqrestore(hba->host->host_lock, flags);
2131 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
2132 * @hba: per adapter instance
2133 * @uic_cmd: UIC command
2134 * @completion: initialize the completion only if this is set to true
2136 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
2137 * with mutex held and host_lock locked.
2138 * Returns 0 only if success.
2141 __ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd,
2144 if (!ufshcd_ready_for_uic_cmd(hba)) {
2146 "Controller not ready to accept UIC commands\n");
2151 init_completion(&uic_cmd->done);
2153 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
2159 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
2160 * @hba: per adapter instance
2161 * @uic_cmd: UIC command
2163 * Returns 0 only if success.
2165 int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
2168 unsigned long flags;
2170 ufshcd_hold(hba, false);
2171 mutex_lock(&hba->uic_cmd_mutex);
2172 ufshcd_add_delay_before_dme_cmd(hba);
2174 spin_lock_irqsave(hba->host->host_lock, flags);
2175 ret = __ufshcd_send_uic_cmd(hba, uic_cmd, true);
2176 spin_unlock_irqrestore(hba->host->host_lock, flags);
2178 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
2180 mutex_unlock(&hba->uic_cmd_mutex);
2182 ufshcd_release(hba);
2187 * ufshcd_map_sg - Map scatter-gather list to prdt
2188 * @hba: per adapter instance
2189 * @lrbp: pointer to local reference block
2191 * Returns 0 in case of success, non-zero value in case of failure
2193 static int ufshcd_map_sg(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2195 struct ufshcd_sg_entry *prd_table;
2196 struct scatterlist *sg;
2197 struct scsi_cmnd *cmd;
2202 sg_segments = scsi_dma_map(cmd);
2203 if (sg_segments < 0)
2208 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN)
2209 lrbp->utr_descriptor_ptr->prd_table_length =
2210 cpu_to_le16((sg_segments *
2211 sizeof(struct ufshcd_sg_entry)));
2213 lrbp->utr_descriptor_ptr->prd_table_length =
2214 cpu_to_le16((u16) (sg_segments));
2216 prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
2218 scsi_for_each_sg(cmd, sg, sg_segments, i) {
2220 cpu_to_le32(((u32) sg_dma_len(sg))-1);
2221 prd_table[i].base_addr =
2222 cpu_to_le32(lower_32_bits(sg->dma_address));
2223 prd_table[i].upper_addr =
2224 cpu_to_le32(upper_32_bits(sg->dma_address));
2225 prd_table[i].reserved = 0;
2228 lrbp->utr_descriptor_ptr->prd_table_length = 0;
2235 * ufshcd_enable_intr - enable interrupts
2236 * @hba: per adapter instance
2237 * @intrs: interrupt bits
2239 static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
2241 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
2243 if (hba->ufs_version == UFSHCI_VERSION_10) {
2245 rw = set & INTERRUPT_MASK_RW_VER_10;
2246 set = rw | ((set ^ intrs) & intrs);
2251 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
2255 * ufshcd_disable_intr - disable interrupts
2256 * @hba: per adapter instance
2257 * @intrs: interrupt bits
2259 static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
2261 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
2263 if (hba->ufs_version == UFSHCI_VERSION_10) {
2265 rw = (set & INTERRUPT_MASK_RW_VER_10) &
2266 ~(intrs & INTERRUPT_MASK_RW_VER_10);
2267 set = rw | ((set & intrs) & ~INTERRUPT_MASK_RW_VER_10);
2273 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
2277 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
2278 * descriptor according to request
2279 * @lrbp: pointer to local reference block
2280 * @upiu_flags: flags required in the header
2281 * @cmd_dir: requests data direction
2283 static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb *lrbp,
2284 u8 *upiu_flags, enum dma_data_direction cmd_dir)
2286 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
2292 if (cmd_dir == DMA_FROM_DEVICE) {
2293 data_direction = UTP_DEVICE_TO_HOST;
2294 *upiu_flags = UPIU_CMD_FLAGS_READ;
2295 } else if (cmd_dir == DMA_TO_DEVICE) {
2296 data_direction = UTP_HOST_TO_DEVICE;
2297 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
2299 data_direction = UTP_NO_DATA_TRANSFER;
2300 *upiu_flags = UPIU_CMD_FLAGS_NONE;
2303 dword_0 = data_direction | (lrbp->command_type
2304 << UPIU_COMMAND_TYPE_OFFSET);
2306 dword_0 |= UTP_REQ_DESC_INT_CMD;
2308 /* Prepare crypto related dwords */
2309 ufshcd_prepare_req_desc_hdr_crypto(lrbp, &dword_0, &dword_1, &dword_3);
2311 /* Transfer request descriptor header fields */
2312 req_desc->header.dword_0 = cpu_to_le32(dword_0);
2313 req_desc->header.dword_1 = cpu_to_le32(dword_1);
2315 * assigning invalid value for command status. Controller
2316 * updates OCS on command completion, with the command
2319 req_desc->header.dword_2 =
2320 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
2321 req_desc->header.dword_3 = cpu_to_le32(dword_3);
2323 req_desc->prd_table_length = 0;
2327 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
2329 * @lrbp: local reference block pointer
2330 * @upiu_flags: flags
2333 void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u8 upiu_flags)
2335 struct scsi_cmnd *cmd = lrbp->cmd;
2336 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2337 unsigned short cdb_len;
2339 /* command descriptor fields */
2340 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
2341 UPIU_TRANSACTION_COMMAND, upiu_flags,
2342 lrbp->lun, lrbp->task_tag);
2343 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
2344 UPIU_COMMAND_SET_TYPE_SCSI, 0, 0, 0);
2346 /* Total EHS length and Data segment length will be zero */
2347 ucd_req_ptr->header.dword_2 = 0;
2349 ucd_req_ptr->sc.exp_data_transfer_len = cpu_to_be32(cmd->sdb.length);
2351 cdb_len = min_t(unsigned short, cmd->cmd_len, UFS_CDB_SIZE);
2352 memset(ucd_req_ptr->sc.cdb, 0, UFS_CDB_SIZE);
2353 memcpy(ucd_req_ptr->sc.cdb, cmd->cmnd, cdb_len);
2355 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
2359 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
2362 * @lrbp: local reference block pointer
2363 * @upiu_flags: flags
2365 static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
2366 struct ufshcd_lrb *lrbp, u8 upiu_flags)
2368 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2369 struct ufs_query *query = &hba->dev_cmd.query;
2370 u16 len = be16_to_cpu(query->request.upiu_req.length);
2372 /* Query request header */
2373 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
2374 UPIU_TRANSACTION_QUERY_REQ, upiu_flags,
2375 lrbp->lun, lrbp->task_tag);
2376 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
2377 0, query->request.query_func, 0, 0);
2379 /* Data segment length only need for WRITE_DESC */
2380 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
2381 ucd_req_ptr->header.dword_2 =
2382 UPIU_HEADER_DWORD(0, 0, (len >> 8), (u8)len);
2384 ucd_req_ptr->header.dword_2 = 0;
2386 /* Copy the Query Request buffer as is */
2387 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
2390 /* Copy the Descriptor */
2391 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
2392 memcpy(ucd_req_ptr + 1, query->descriptor, len);
2394 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
2397 static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb *lrbp)
2399 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2401 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
2403 /* command descriptor fields */
2404 ucd_req_ptr->header.dword_0 =
2406 UPIU_TRANSACTION_NOP_OUT, 0, 0, lrbp->task_tag);
2407 /* clear rest of the fields of basic header */
2408 ucd_req_ptr->header.dword_1 = 0;
2409 ucd_req_ptr->header.dword_2 = 0;
2411 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
2415 * ufshcd_compose_devman_upiu - UFS Protocol Information Unit(UPIU)
2416 * for Device Management Purposes
2417 * @hba: per adapter instance
2418 * @lrbp: pointer to local reference block
2420 static int ufshcd_compose_devman_upiu(struct ufs_hba *hba,
2421 struct ufshcd_lrb *lrbp)
2426 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
2427 (hba->ufs_version == UFSHCI_VERSION_11))
2428 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
2430 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
2432 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
2433 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
2434 ufshcd_prepare_utp_query_req_upiu(hba, lrbp, upiu_flags);
2435 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
2436 ufshcd_prepare_utp_nop_upiu(lrbp);
2444 * ufshcd_comp_scsi_upiu - UFS Protocol Information Unit(UPIU)
2446 * @hba: per adapter instance
2447 * @lrbp: pointer to local reference block
2449 static int ufshcd_comp_scsi_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2454 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
2455 (hba->ufs_version == UFSHCI_VERSION_11))
2456 lrbp->command_type = UTP_CMD_TYPE_SCSI;
2458 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
2460 if (likely(lrbp->cmd)) {
2461 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags,
2462 lrbp->cmd->sc_data_direction);
2463 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp, upiu_flags);
2472 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
2473 * @upiu_wlun_id: UPIU W-LUN id
2475 * Returns SCSI W-LUN id
2477 static inline u16 ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)
2479 return (upiu_wlun_id & ~UFS_UPIU_WLUN_ID) | SCSI_W_LUN_BASE;
2482 static void ufshcd_init_lrb(struct ufs_hba *hba, struct ufshcd_lrb *lrb, int i)
2484 struct utp_transfer_cmd_desc *cmd_descp = hba->ucdl_base_addr;
2485 struct utp_transfer_req_desc *utrdlp = hba->utrdl_base_addr;
2486 dma_addr_t cmd_desc_element_addr = hba->ucdl_dma_addr +
2487 i * sizeof(struct utp_transfer_cmd_desc);
2488 u16 response_offset = offsetof(struct utp_transfer_cmd_desc,
2490 u16 prdt_offset = offsetof(struct utp_transfer_cmd_desc, prd_table);
2492 lrb->utr_descriptor_ptr = utrdlp + i;
2493 lrb->utrd_dma_addr = hba->utrdl_dma_addr +
2494 i * sizeof(struct utp_transfer_req_desc);
2495 lrb->ucd_req_ptr = (struct utp_upiu_req *)(cmd_descp + i);
2496 lrb->ucd_req_dma_addr = cmd_desc_element_addr;
2497 lrb->ucd_rsp_ptr = (struct utp_upiu_rsp *)cmd_descp[i].response_upiu;
2498 lrb->ucd_rsp_dma_addr = cmd_desc_element_addr + response_offset;
2499 lrb->ucd_prdt_ptr = (struct ufshcd_sg_entry *)cmd_descp[i].prd_table;
2500 lrb->ucd_prdt_dma_addr = cmd_desc_element_addr + prdt_offset;
2504 * ufshcd_queuecommand - main entry point for SCSI requests
2505 * @host: SCSI host pointer
2506 * @cmd: command from SCSI Midlayer
2508 * Returns 0 for success, non-zero in case of failure
2510 static int ufshcd_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
2512 struct ufshcd_lrb *lrbp;
2513 struct ufs_hba *hba;
2514 unsigned long flags;
2518 hba = shost_priv(host);
2520 tag = cmd->request->tag;
2521 if (!ufshcd_valid_tag(hba, tag)) {
2523 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
2524 __func__, tag, cmd, cmd->request);
2528 if (!down_read_trylock(&hba->clk_scaling_lock))
2529 return SCSI_MLQUEUE_HOST_BUSY;
2531 hba->req_abort_count = 0;
2533 err = ufshcd_hold(hba, true);
2535 err = SCSI_MLQUEUE_HOST_BUSY;
2538 WARN_ON(ufshcd_is_clkgating_allowed(hba) &&
2539 (hba->clk_gating.state != CLKS_ON));
2541 lrbp = &hba->lrb[tag];
2545 lrbp->sense_bufflen = UFS_SENSE_SIZE;
2546 lrbp->sense_buffer = cmd->sense_buffer;
2547 lrbp->task_tag = tag;
2548 lrbp->lun = ufshcd_scsi_to_upiu_lun(cmd->device->lun);
2549 lrbp->intr_cmd = !ufshcd_is_intr_aggr_allowed(hba) ? true : false;
2551 ufshcd_prepare_lrbp_crypto(cmd->request, lrbp);
2553 lrbp->req_abort_skip = false;
2555 ufshcd_comp_scsi_upiu(hba, lrbp);
2557 err = ufshcd_map_sg(hba, lrbp);
2560 ufshcd_release(hba);
2563 /* Make sure descriptors are ready before ringing the doorbell */
2566 spin_lock_irqsave(hba->host->host_lock, flags);
2567 switch (hba->ufshcd_state) {
2568 case UFSHCD_STATE_OPERATIONAL:
2569 case UFSHCD_STATE_EH_SCHEDULED_NON_FATAL:
2571 case UFSHCD_STATE_EH_SCHEDULED_FATAL:
2573 * pm_runtime_get_sync() is used at error handling preparation
2574 * stage. If a scsi cmd, e.g. the SSU cmd, is sent from hba's
2575 * PM ops, it can never be finished if we let SCSI layer keep
2576 * retrying it, which gets err handler stuck forever. Neither
2577 * can we let the scsi cmd pass through, because UFS is in bad
2578 * state, the scsi cmd may eventually time out, which will get
2579 * err handler blocked for too long. So, just fail the scsi cmd
2580 * sent from PM ops, err handler can recover PM error anyways.
2582 if (hba->pm_op_in_progress) {
2583 hba->force_reset = true;
2584 set_host_byte(cmd, DID_BAD_TARGET);
2588 case UFSHCD_STATE_RESET:
2589 err = SCSI_MLQUEUE_HOST_BUSY;
2591 case UFSHCD_STATE_ERROR:
2592 set_host_byte(cmd, DID_ERROR);
2595 dev_WARN_ONCE(hba->dev, 1, "%s: invalid state %d\n",
2596 __func__, hba->ufshcd_state);
2597 set_host_byte(cmd, DID_BAD_TARGET);
2600 ufshcd_send_command(hba, tag);
2601 spin_unlock_irqrestore(hba->host->host_lock, flags);
2605 scsi_dma_unmap(lrbp->cmd);
2607 spin_unlock_irqrestore(hba->host->host_lock, flags);
2608 ufshcd_release(hba);
2610 cmd->scsi_done(cmd);
2612 up_read(&hba->clk_scaling_lock);
2616 static int ufshcd_compose_dev_cmd(struct ufs_hba *hba,
2617 struct ufshcd_lrb *lrbp, enum dev_cmd_type cmd_type, int tag)
2620 lrbp->sense_bufflen = 0;
2621 lrbp->sense_buffer = NULL;
2622 lrbp->task_tag = tag;
2623 lrbp->lun = 0; /* device management cmd is not specific to any LUN */
2624 lrbp->intr_cmd = true; /* No interrupt aggregation */
2625 ufshcd_prepare_lrbp_crypto(NULL, lrbp);
2626 hba->dev_cmd.type = cmd_type;
2628 return ufshcd_compose_devman_upiu(hba, lrbp);
2632 ufshcd_clear_cmd(struct ufs_hba *hba, int tag)
2635 unsigned long flags;
2636 u32 mask = 1 << tag;
2638 /* clear outstanding transaction before retry */
2639 spin_lock_irqsave(hba->host->host_lock, flags);
2640 ufshcd_utrl_clear(hba, tag);
2641 spin_unlock_irqrestore(hba->host->host_lock, flags);
2644 * wait for for h/w to clear corresponding bit in door-bell.
2645 * max. wait is 1 sec.
2647 err = ufshcd_wait_for_register(hba,
2648 REG_UTP_TRANSFER_REQ_DOOR_BELL,
2649 mask, ~mask, 1000, 1000);
2655 ufshcd_check_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2657 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
2659 /* Get the UPIU response */
2660 query_res->response = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr) >>
2661 UPIU_RSP_CODE_OFFSET;
2662 return query_res->response;
2666 * ufshcd_dev_cmd_completion() - handles device management command responses
2667 * @hba: per adapter instance
2668 * @lrbp: pointer to local reference block
2671 ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2676 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
2677 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
2680 case UPIU_TRANSACTION_NOP_IN:
2681 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
2683 dev_err(hba->dev, "%s: unexpected response %x\n",
2687 case UPIU_TRANSACTION_QUERY_RSP:
2688 err = ufshcd_check_query_response(hba, lrbp);
2690 err = ufshcd_copy_query_response(hba, lrbp);
2692 case UPIU_TRANSACTION_REJECT_UPIU:
2693 /* TODO: handle Reject UPIU Response */
2695 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
2700 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
2708 static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
2709 struct ufshcd_lrb *lrbp, int max_timeout)
2712 unsigned long time_left;
2713 unsigned long flags;
2715 time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
2716 msecs_to_jiffies(max_timeout));
2718 /* Make sure descriptors are ready before ringing the doorbell */
2720 spin_lock_irqsave(hba->host->host_lock, flags);
2721 hba->dev_cmd.complete = NULL;
2722 if (likely(time_left)) {
2723 err = ufshcd_get_tr_ocs(lrbp);
2725 err = ufshcd_dev_cmd_completion(hba, lrbp);
2727 spin_unlock_irqrestore(hba->host->host_lock, flags);
2731 dev_dbg(hba->dev, "%s: dev_cmd request timedout, tag %d\n",
2732 __func__, lrbp->task_tag);
2733 if (!ufshcd_clear_cmd(hba, lrbp->task_tag))
2734 /* successfully cleared the command, retry if needed */
2737 * in case of an error, after clearing the doorbell,
2738 * we also need to clear the outstanding_request
2741 ufshcd_outstanding_req_clear(hba, lrbp->task_tag);
2748 * ufshcd_exec_dev_cmd - API for sending device management requests
2750 * @cmd_type: specifies the type (NOP, Query...)
2751 * @timeout: time in seconds
2753 * NOTE: Since there is only one available tag for device management commands,
2754 * it is expected you hold the hba->dev_cmd.lock mutex.
2756 static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
2757 enum dev_cmd_type cmd_type, int timeout)
2759 struct request_queue *q = hba->cmd_queue;
2760 struct request *req;
2761 struct ufshcd_lrb *lrbp;
2764 struct completion wait;
2765 unsigned long flags;
2767 down_read(&hba->clk_scaling_lock);
2770 * Get free slot, sleep if slots are unavailable.
2771 * Even though we use wait_event() which sleeps indefinitely,
2772 * the maximum wait time is bounded by SCSI request timeout.
2774 req = blk_get_request(q, REQ_OP_DRV_OUT, 0);
2780 WARN_ON_ONCE(!ufshcd_valid_tag(hba, tag));
2782 init_completion(&wait);
2783 lrbp = &hba->lrb[tag];
2785 err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
2789 hba->dev_cmd.complete = &wait;
2791 ufshcd_add_query_upiu_trace(hba, tag, "query_send");
2792 /* Make sure descriptors are ready before ringing the doorbell */
2794 spin_lock_irqsave(hba->host->host_lock, flags);
2795 ufshcd_send_command(hba, tag);
2796 spin_unlock_irqrestore(hba->host->host_lock, flags);
2798 err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
2800 ufshcd_add_query_upiu_trace(hba, tag,
2801 err ? "query_complete_err" : "query_complete");
2804 blk_put_request(req);
2806 up_read(&hba->clk_scaling_lock);
2811 * ufshcd_init_query() - init the query response and request parameters
2812 * @hba: per-adapter instance
2813 * @request: address of the request pointer to be initialized
2814 * @response: address of the response pointer to be initialized
2815 * @opcode: operation to perform
2816 * @idn: flag idn to access
2817 * @index: LU number to access
2818 * @selector: query/flag/descriptor further identification
2820 static inline void ufshcd_init_query(struct ufs_hba *hba,
2821 struct ufs_query_req **request, struct ufs_query_res **response,
2822 enum query_opcode opcode, u8 idn, u8 index, u8 selector)
2824 *request = &hba->dev_cmd.query.request;
2825 *response = &hba->dev_cmd.query.response;
2826 memset(*request, 0, sizeof(struct ufs_query_req));
2827 memset(*response, 0, sizeof(struct ufs_query_res));
2828 (*request)->upiu_req.opcode = opcode;
2829 (*request)->upiu_req.idn = idn;
2830 (*request)->upiu_req.index = index;
2831 (*request)->upiu_req.selector = selector;
2834 static int ufshcd_query_flag_retry(struct ufs_hba *hba,
2835 enum query_opcode opcode, enum flag_idn idn, u8 index, bool *flag_res)
2840 for (retries = 0; retries < QUERY_REQ_RETRIES; retries++) {
2841 ret = ufshcd_query_flag(hba, opcode, idn, index, flag_res);
2844 "%s: failed with error %d, retries %d\n",
2845 __func__, ret, retries);
2852 "%s: query attribute, opcode %d, idn %d, failed with error %d after %d retires\n",
2853 __func__, opcode, idn, ret, retries);
2858 * ufshcd_query_flag() - API function for sending flag query requests
2859 * @hba: per-adapter instance
2860 * @opcode: flag query to perform
2861 * @idn: flag idn to access
2862 * @index: flag index to access
2863 * @flag_res: the flag value after the query request completes
2865 * Returns 0 for success, non-zero in case of failure
2867 int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
2868 enum flag_idn idn, u8 index, bool *flag_res)
2870 struct ufs_query_req *request = NULL;
2871 struct ufs_query_res *response = NULL;
2872 int err, selector = 0;
2873 int timeout = QUERY_REQ_TIMEOUT;
2877 ufshcd_hold(hba, false);
2878 mutex_lock(&hba->dev_cmd.lock);
2879 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
2883 case UPIU_QUERY_OPCODE_SET_FLAG:
2884 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
2885 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
2886 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
2888 case UPIU_QUERY_OPCODE_READ_FLAG:
2889 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
2891 /* No dummy reads */
2892 dev_err(hba->dev, "%s: Invalid argument for read request\n",
2900 "%s: Expected query flag opcode but got = %d\n",
2906 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, timeout);
2910 "%s: Sending flag query for idn %d failed, err = %d\n",
2911 __func__, idn, err);
2916 *flag_res = (be32_to_cpu(response->upiu_res.value) &
2917 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
2920 mutex_unlock(&hba->dev_cmd.lock);
2921 ufshcd_release(hba);
2926 * ufshcd_query_attr - API function for sending attribute requests
2927 * @hba: per-adapter instance
2928 * @opcode: attribute opcode
2929 * @idn: attribute idn to access
2930 * @index: index field
2931 * @selector: selector field
2932 * @attr_val: the attribute value after the query request completes
2934 * Returns 0 for success, non-zero in case of failure
2936 int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
2937 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
2939 struct ufs_query_req *request = NULL;
2940 struct ufs_query_res *response = NULL;
2945 ufshcd_hold(hba, false);
2947 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
2953 mutex_lock(&hba->dev_cmd.lock);
2954 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
2958 case UPIU_QUERY_OPCODE_WRITE_ATTR:
2959 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
2960 request->upiu_req.value = cpu_to_be32(*attr_val);
2962 case UPIU_QUERY_OPCODE_READ_ATTR:
2963 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
2966 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
2972 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
2975 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, err = %d\n",
2976 __func__, opcode, idn, index, err);
2980 *attr_val = be32_to_cpu(response->upiu_res.value);
2983 mutex_unlock(&hba->dev_cmd.lock);
2985 ufshcd_release(hba);
2990 * ufshcd_query_attr_retry() - API function for sending query
2991 * attribute with retries
2992 * @hba: per-adapter instance
2993 * @opcode: attribute opcode
2994 * @idn: attribute idn to access
2995 * @index: index field
2996 * @selector: selector field
2997 * @attr_val: the attribute value after the query request
3000 * Returns 0 for success, non-zero in case of failure
3002 static int ufshcd_query_attr_retry(struct ufs_hba *hba,
3003 enum query_opcode opcode, enum attr_idn idn, u8 index, u8 selector,
3009 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
3010 ret = ufshcd_query_attr(hba, opcode, idn, index,
3011 selector, attr_val);
3013 dev_dbg(hba->dev, "%s: failed with error %d, retries %d\n",
3014 __func__, ret, retries);
3021 "%s: query attribute, idn %d, failed with error %d after %d retires\n",
3022 __func__, idn, ret, QUERY_REQ_RETRIES);
3026 static int __ufshcd_query_descriptor(struct ufs_hba *hba,
3027 enum query_opcode opcode, enum desc_idn idn, u8 index,
3028 u8 selector, u8 *desc_buf, int *buf_len)
3030 struct ufs_query_req *request = NULL;
3031 struct ufs_query_res *response = NULL;
3036 ufshcd_hold(hba, false);
3038 dev_err(hba->dev, "%s: descriptor buffer required for opcode 0x%x\n",
3044 if (*buf_len < QUERY_DESC_MIN_SIZE || *buf_len > QUERY_DESC_MAX_SIZE) {
3045 dev_err(hba->dev, "%s: descriptor buffer size (%d) is out of range\n",
3046 __func__, *buf_len);
3051 mutex_lock(&hba->dev_cmd.lock);
3052 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
3054 hba->dev_cmd.query.descriptor = desc_buf;
3055 request->upiu_req.length = cpu_to_be16(*buf_len);
3058 case UPIU_QUERY_OPCODE_WRITE_DESC:
3059 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
3061 case UPIU_QUERY_OPCODE_READ_DESC:
3062 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
3066 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
3072 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
3075 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, err = %d\n",
3076 __func__, opcode, idn, index, err);
3080 *buf_len = be16_to_cpu(response->upiu_res.length);
3083 hba->dev_cmd.query.descriptor = NULL;
3084 mutex_unlock(&hba->dev_cmd.lock);
3086 ufshcd_release(hba);
3091 * ufshcd_query_descriptor_retry - API function for sending descriptor requests
3092 * @hba: per-adapter instance
3093 * @opcode: attribute opcode
3094 * @idn: attribute idn to access
3095 * @index: index field
3096 * @selector: selector field
3097 * @desc_buf: the buffer that contains the descriptor
3098 * @buf_len: length parameter passed to the device
3100 * Returns 0 for success, non-zero in case of failure.
3101 * The buf_len parameter will contain, on return, the length parameter
3102 * received on the response.
3104 int ufshcd_query_descriptor_retry(struct ufs_hba *hba,
3105 enum query_opcode opcode,
3106 enum desc_idn idn, u8 index,
3108 u8 *desc_buf, int *buf_len)
3113 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
3114 err = __ufshcd_query_descriptor(hba, opcode, idn, index,
3115 selector, desc_buf, buf_len);
3116 if (!err || err == -EINVAL)
3124 * ufshcd_map_desc_id_to_length - map descriptor IDN to its length
3125 * @hba: Pointer to adapter instance
3126 * @desc_id: descriptor idn value
3127 * @desc_len: mapped desc length (out)
3129 void ufshcd_map_desc_id_to_length(struct ufs_hba *hba, enum desc_idn desc_id,
3132 if (desc_id >= QUERY_DESC_IDN_MAX || desc_id == QUERY_DESC_IDN_RFU_0 ||
3133 desc_id == QUERY_DESC_IDN_RFU_1)
3136 *desc_len = hba->desc_size[desc_id];
3138 EXPORT_SYMBOL(ufshcd_map_desc_id_to_length);
3140 static void ufshcd_update_desc_length(struct ufs_hba *hba,
3141 enum desc_idn desc_id, int desc_index,
3142 unsigned char desc_len)
3144 if (hba->desc_size[desc_id] == QUERY_DESC_MAX_SIZE &&
3145 desc_id != QUERY_DESC_IDN_STRING && desc_index != UFS_RPMB_UNIT)
3146 /* For UFS 3.1, the normal unit descriptor is 10 bytes larger
3147 * than the RPMB unit, however, both descriptors share the same
3148 * desc_idn, to cover both unit descriptors with one length, we
3149 * choose the normal unit descriptor length by desc_index.
3151 hba->desc_size[desc_id] = desc_len;
3155 * ufshcd_read_desc_param - read the specified descriptor parameter
3156 * @hba: Pointer to adapter instance
3157 * @desc_id: descriptor idn value
3158 * @desc_index: descriptor index
3159 * @param_offset: offset of the parameter to read
3160 * @param_read_buf: pointer to buffer where parameter would be read
3161 * @param_size: sizeof(param_read_buf)
3163 * Return 0 in case of success, non-zero otherwise
3165 int ufshcd_read_desc_param(struct ufs_hba *hba,
3166 enum desc_idn desc_id,
3175 bool is_kmalloc = true;
3178 if (desc_id >= QUERY_DESC_IDN_MAX || !param_size)
3181 /* Get the length of descriptor */
3182 ufshcd_map_desc_id_to_length(hba, desc_id, &buff_len);
3184 dev_err(hba->dev, "%s: Failed to get desc length", __func__);
3188 /* Check whether we need temp memory */
3189 if (param_offset != 0 || param_size < buff_len) {
3190 desc_buf = kmalloc(buff_len, GFP_KERNEL);
3194 desc_buf = param_read_buf;
3198 /* Request for full descriptor */
3199 ret = ufshcd_query_descriptor_retry(hba, UPIU_QUERY_OPCODE_READ_DESC,
3200 desc_id, desc_index, 0,
3201 desc_buf, &buff_len);
3204 dev_err(hba->dev, "%s: Failed reading descriptor. desc_id %d, desc_index %d, param_offset %d, ret %d",
3205 __func__, desc_id, desc_index, param_offset, ret);
3210 if (desc_buf[QUERY_DESC_DESC_TYPE_OFFSET] != desc_id) {
3211 dev_err(hba->dev, "%s: invalid desc_id %d in descriptor header",
3212 __func__, desc_buf[QUERY_DESC_DESC_TYPE_OFFSET]);
3217 /* Update descriptor length */
3218 buff_len = desc_buf[QUERY_DESC_LENGTH_OFFSET];
3219 ufshcd_update_desc_length(hba, desc_id, desc_index, buff_len);
3221 /* Check wherher we will not copy more data, than available */
3222 if (is_kmalloc && (param_offset + param_size) > buff_len)
3223 param_size = buff_len - param_offset;
3226 memcpy(param_read_buf, &desc_buf[param_offset], param_size);
3234 * struct uc_string_id - unicode string
3236 * @len: size of this descriptor inclusive
3237 * @type: descriptor type
3238 * @uc: unicode string character
3240 struct uc_string_id {
3246 /* replace non-printable or non-ASCII characters with spaces */
3247 static inline char ufshcd_remove_non_printable(u8 ch)
3249 return (ch >= 0x20 && ch <= 0x7e) ? ch : ' ';
3253 * ufshcd_read_string_desc - read string descriptor
3254 * @hba: pointer to adapter instance
3255 * @desc_index: descriptor index
3256 * @buf: pointer to buffer where descriptor would be read,
3257 * the caller should free the memory.
3258 * @ascii: if true convert from unicode to ascii characters
3259 * null terminated string.
3262 * * string size on success.
3263 * * -ENOMEM: on allocation failure
3264 * * -EINVAL: on a wrong parameter
3266 int ufshcd_read_string_desc(struct ufs_hba *hba, u8 desc_index,
3267 u8 **buf, bool ascii)
3269 struct uc_string_id *uc_str;
3276 uc_str = kzalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
3280 ret = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_STRING, desc_index, 0,
3281 (u8 *)uc_str, QUERY_DESC_MAX_SIZE);
3283 dev_err(hba->dev, "Reading String Desc failed after %d retries. err = %d\n",
3284 QUERY_REQ_RETRIES, ret);
3289 if (uc_str->len <= QUERY_DESC_HDR_SIZE) {
3290 dev_dbg(hba->dev, "String Desc is of zero length\n");
3299 /* remove header and divide by 2 to move from UTF16 to UTF8 */
3300 ascii_len = (uc_str->len - QUERY_DESC_HDR_SIZE) / 2 + 1;
3301 str = kzalloc(ascii_len, GFP_KERNEL);
3308 * the descriptor contains string in UTF16 format
3309 * we need to convert to utf-8 so it can be displayed
3311 ret = utf16s_to_utf8s(uc_str->uc,
3312 uc_str->len - QUERY_DESC_HDR_SIZE,
3313 UTF16_BIG_ENDIAN, str, ascii_len);
3315 /* replace non-printable or non-ASCII characters with spaces */
3316 for (i = 0; i < ret; i++)
3317 str[i] = ufshcd_remove_non_printable(str[i]);
3322 str = kmemdup(uc_str, uc_str->len, GFP_KERNEL);
3336 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
3337 * @hba: Pointer to adapter instance
3339 * @param_offset: offset of the parameter to read
3340 * @param_read_buf: pointer to buffer where parameter would be read
3341 * @param_size: sizeof(param_read_buf)
3343 * Return 0 in case of success, non-zero otherwise
3345 static inline int ufshcd_read_unit_desc_param(struct ufs_hba *hba,
3347 enum unit_desc_param param_offset,
3352 * Unit descriptors are only available for general purpose LUs (LUN id
3353 * from 0 to 7) and RPMB Well known LU.
3355 if (!ufs_is_valid_unit_desc_lun(&hba->dev_info, lun))
3358 return ufshcd_read_desc_param(hba, QUERY_DESC_IDN_UNIT, lun,
3359 param_offset, param_read_buf, param_size);
3362 static int ufshcd_get_ref_clk_gating_wait(struct ufs_hba *hba)
3365 u32 gating_wait = UFSHCD_REF_CLK_GATING_WAIT_US;
3367 if (hba->dev_info.wspecversion >= 0x300) {
3368 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
3369 QUERY_ATTR_IDN_REF_CLK_GATING_WAIT_TIME, 0, 0,
3372 dev_err(hba->dev, "Failed reading bRefClkGatingWait. err = %d, use default %uus\n",
3375 if (gating_wait == 0) {
3376 gating_wait = UFSHCD_REF_CLK_GATING_WAIT_US;
3377 dev_err(hba->dev, "Undefined ref clk gating wait time, use default %uus\n",
3381 hba->dev_info.clk_gating_wait_us = gating_wait;
3388 * ufshcd_memory_alloc - allocate memory for host memory space data structures
3389 * @hba: per adapter instance
3391 * 1. Allocate DMA memory for Command Descriptor array
3392 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
3393 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
3394 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
3396 * 4. Allocate memory for local reference block(lrb).
3398 * Returns 0 for success, non-zero in case of failure
3400 static int ufshcd_memory_alloc(struct ufs_hba *hba)
3402 size_t utmrdl_size, utrdl_size, ucdl_size;
3404 /* Allocate memory for UTP command descriptors */
3405 ucdl_size = (sizeof(struct utp_transfer_cmd_desc) * hba->nutrs);
3406 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
3408 &hba->ucdl_dma_addr,
3412 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
3413 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
3414 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
3415 * be aligned to 128 bytes as well
3417 if (!hba->ucdl_base_addr ||
3418 WARN_ON(hba->ucdl_dma_addr & (PAGE_SIZE - 1))) {
3420 "Command Descriptor Memory allocation failed\n");
3425 * Allocate memory for UTP Transfer descriptors
3426 * UFSHCI requires 1024 byte alignment of UTRD
3428 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
3429 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
3431 &hba->utrdl_dma_addr,
3433 if (!hba->utrdl_base_addr ||
3434 WARN_ON(hba->utrdl_dma_addr & (PAGE_SIZE - 1))) {
3436 "Transfer Descriptor Memory allocation failed\n");
3441 * Allocate memory for UTP Task Management descriptors
3442 * UFSHCI requires 1024 byte alignment of UTMRD
3444 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
3445 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
3447 &hba->utmrdl_dma_addr,
3449 if (!hba->utmrdl_base_addr ||
3450 WARN_ON(hba->utmrdl_dma_addr & (PAGE_SIZE - 1))) {
3452 "Task Management Descriptor Memory allocation failed\n");
3456 /* Allocate memory for local reference block */
3457 hba->lrb = devm_kcalloc(hba->dev,
3458 hba->nutrs, sizeof(struct ufshcd_lrb),
3461 dev_err(hba->dev, "LRB Memory allocation failed\n");
3470 * ufshcd_host_memory_configure - configure local reference block with
3472 * @hba: per adapter instance
3474 * Configure Host memory space
3475 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
3477 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
3479 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
3480 * into local reference block.
3482 static void ufshcd_host_memory_configure(struct ufs_hba *hba)
3484 struct utp_transfer_req_desc *utrdlp;
3485 dma_addr_t cmd_desc_dma_addr;
3486 dma_addr_t cmd_desc_element_addr;
3487 u16 response_offset;
3492 utrdlp = hba->utrdl_base_addr;
3495 offsetof(struct utp_transfer_cmd_desc, response_upiu);
3497 offsetof(struct utp_transfer_cmd_desc, prd_table);
3499 cmd_desc_size = sizeof(struct utp_transfer_cmd_desc);
3500 cmd_desc_dma_addr = hba->ucdl_dma_addr;
3502 for (i = 0; i < hba->nutrs; i++) {
3503 /* Configure UTRD with command descriptor base address */
3504 cmd_desc_element_addr =
3505 (cmd_desc_dma_addr + (cmd_desc_size * i));
3506 utrdlp[i].command_desc_base_addr_lo =
3507 cpu_to_le32(lower_32_bits(cmd_desc_element_addr));
3508 utrdlp[i].command_desc_base_addr_hi =
3509 cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
3511 /* Response upiu and prdt offset should be in double words */
3512 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN) {
3513 utrdlp[i].response_upiu_offset =
3514 cpu_to_le16(response_offset);
3515 utrdlp[i].prd_table_offset =
3516 cpu_to_le16(prdt_offset);
3517 utrdlp[i].response_upiu_length =
3518 cpu_to_le16(ALIGNED_UPIU_SIZE);
3520 utrdlp[i].response_upiu_offset =
3521 cpu_to_le16(response_offset >> 2);
3522 utrdlp[i].prd_table_offset =
3523 cpu_to_le16(prdt_offset >> 2);
3524 utrdlp[i].response_upiu_length =
3525 cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
3528 ufshcd_init_lrb(hba, &hba->lrb[i], i);
3533 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
3534 * @hba: per adapter instance
3536 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
3537 * in order to initialize the Unipro link startup procedure.
3538 * Once the Unipro links are up, the device connected to the controller
3541 * Returns 0 on success, non-zero value on failure
3543 static int ufshcd_dme_link_startup(struct ufs_hba *hba)
3545 struct uic_command uic_cmd = {0};
3548 uic_cmd.command = UIC_CMD_DME_LINK_STARTUP;
3550 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3553 "dme-link-startup: error code %d\n", ret);
3557 * ufshcd_dme_reset - UIC command for DME_RESET
3558 * @hba: per adapter instance
3560 * DME_RESET command is issued in order to reset UniPro stack.
3561 * This function now deals with cold reset.
3563 * Returns 0 on success, non-zero value on failure
3565 static int ufshcd_dme_reset(struct ufs_hba *hba)
3567 struct uic_command uic_cmd = {0};
3570 uic_cmd.command = UIC_CMD_DME_RESET;
3572 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3575 "dme-reset: error code %d\n", ret);
3581 * ufshcd_dme_enable - UIC command for DME_ENABLE
3582 * @hba: per adapter instance
3584 * DME_ENABLE command is issued in order to enable UniPro stack.
3586 * Returns 0 on success, non-zero value on failure
3588 static int ufshcd_dme_enable(struct ufs_hba *hba)
3590 struct uic_command uic_cmd = {0};
3593 uic_cmd.command = UIC_CMD_DME_ENABLE;
3595 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3598 "dme-reset: error code %d\n", ret);
3603 static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba)
3605 #define MIN_DELAY_BEFORE_DME_CMDS_US 1000
3606 unsigned long min_sleep_time_us;
3608 if (!(hba->quirks & UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS))
3612 * last_dme_cmd_tstamp will be 0 only for 1st call to
3615 if (unlikely(!ktime_to_us(hba->last_dme_cmd_tstamp))) {
3616 min_sleep_time_us = MIN_DELAY_BEFORE_DME_CMDS_US;
3618 unsigned long delta =
3619 (unsigned long) ktime_to_us(
3620 ktime_sub(ktime_get(),
3621 hba->last_dme_cmd_tstamp));
3623 if (delta < MIN_DELAY_BEFORE_DME_CMDS_US)
3625 MIN_DELAY_BEFORE_DME_CMDS_US - delta;
3627 return; /* no more delay required */
3630 /* allow sleep for extra 50us if needed */
3631 usleep_range(min_sleep_time_us, min_sleep_time_us + 50);
3635 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
3636 * @hba: per adapter instance
3637 * @attr_sel: uic command argument1
3638 * @attr_set: attribute set type as uic command argument2
3639 * @mib_val: setting value as uic command argument3
3640 * @peer: indicate whether peer or local
3642 * Returns 0 on success, non-zero value on failure
3644 int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
3645 u8 attr_set, u32 mib_val, u8 peer)
3647 struct uic_command uic_cmd = {0};
3648 static const char *const action[] = {
3652 const char *set = action[!!peer];
3654 int retries = UFS_UIC_COMMAND_RETRIES;
3656 uic_cmd.command = peer ?
3657 UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET;
3658 uic_cmd.argument1 = attr_sel;
3659 uic_cmd.argument2 = UIC_ARG_ATTR_TYPE(attr_set);
3660 uic_cmd.argument3 = mib_val;
3663 /* for peer attributes we retry upon failure */
3664 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3666 dev_dbg(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
3667 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
3668 } while (ret && peer && --retries);
3671 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x failed %d retries\n",
3672 set, UIC_GET_ATTR_ID(attr_sel), mib_val,
3673 UFS_UIC_COMMAND_RETRIES - retries);
3677 EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
3680 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
3681 * @hba: per adapter instance
3682 * @attr_sel: uic command argument1
3683 * @mib_val: the value of the attribute as returned by the UIC command
3684 * @peer: indicate whether peer or local
3686 * Returns 0 on success, non-zero value on failure
3688 int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
3689 u32 *mib_val, u8 peer)
3691 struct uic_command uic_cmd = {0};
3692 static const char *const action[] = {
3696 const char *get = action[!!peer];
3698 int retries = UFS_UIC_COMMAND_RETRIES;
3699 struct ufs_pa_layer_attr orig_pwr_info;
3700 struct ufs_pa_layer_attr temp_pwr_info;
3701 bool pwr_mode_change = false;
3703 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)) {
3704 orig_pwr_info = hba->pwr_info;
3705 temp_pwr_info = orig_pwr_info;
3707 if (orig_pwr_info.pwr_tx == FAST_MODE ||
3708 orig_pwr_info.pwr_rx == FAST_MODE) {
3709 temp_pwr_info.pwr_tx = FASTAUTO_MODE;
3710 temp_pwr_info.pwr_rx = FASTAUTO_MODE;
3711 pwr_mode_change = true;
3712 } else if (orig_pwr_info.pwr_tx == SLOW_MODE ||
3713 orig_pwr_info.pwr_rx == SLOW_MODE) {
3714 temp_pwr_info.pwr_tx = SLOWAUTO_MODE;
3715 temp_pwr_info.pwr_rx = SLOWAUTO_MODE;
3716 pwr_mode_change = true;
3718 if (pwr_mode_change) {
3719 ret = ufshcd_change_power_mode(hba, &temp_pwr_info);
3725 uic_cmd.command = peer ?
3726 UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET;
3727 uic_cmd.argument1 = attr_sel;
3730 /* for peer attributes we retry upon failure */
3731 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3733 dev_dbg(hba->dev, "%s: attr-id 0x%x error code %d\n",
3734 get, UIC_GET_ATTR_ID(attr_sel), ret);
3735 } while (ret && peer && --retries);
3738 dev_err(hba->dev, "%s: attr-id 0x%x failed %d retries\n",
3739 get, UIC_GET_ATTR_ID(attr_sel),
3740 UFS_UIC_COMMAND_RETRIES - retries);
3742 if (mib_val && !ret)
3743 *mib_val = uic_cmd.argument3;
3745 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)
3747 ufshcd_change_power_mode(hba, &orig_pwr_info);
3751 EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
3754 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
3755 * state) and waits for it to take effect.
3757 * @hba: per adapter instance
3758 * @cmd: UIC command to execute
3760 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
3761 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
3762 * and device UniPro link and hence it's final completion would be indicated by
3763 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
3764 * addition to normal UIC command completion Status (UCCS). This function only
3765 * returns after the relevant status bits indicate the completion.
3767 * Returns 0 on success, non-zero value on failure
3769 static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
3771 struct completion uic_async_done;
3772 unsigned long flags;
3775 bool reenable_intr = false;
3777 mutex_lock(&hba->uic_cmd_mutex);
3778 init_completion(&uic_async_done);
3779 ufshcd_add_delay_before_dme_cmd(hba);
3781 spin_lock_irqsave(hba->host->host_lock, flags);
3782 if (ufshcd_is_link_broken(hba)) {
3786 hba->uic_async_done = &uic_async_done;
3787 if (ufshcd_readl(hba, REG_INTERRUPT_ENABLE) & UIC_COMMAND_COMPL) {
3788 ufshcd_disable_intr(hba, UIC_COMMAND_COMPL);
3790 * Make sure UIC command completion interrupt is disabled before
3791 * issuing UIC command.
3794 reenable_intr = true;
3796 ret = __ufshcd_send_uic_cmd(hba, cmd, false);
3797 spin_unlock_irqrestore(hba->host->host_lock, flags);
3800 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
3801 cmd->command, cmd->argument3, ret);
3805 if (!wait_for_completion_timeout(hba->uic_async_done,
3806 msecs_to_jiffies(UIC_CMD_TIMEOUT))) {
3808 "pwr ctrl cmd 0x%x with mode 0x%x completion timeout\n",
3809 cmd->command, cmd->argument3);
3814 status = ufshcd_get_upmcrs(hba);
3815 if (status != PWR_LOCAL) {
3817 "pwr ctrl cmd 0x%x failed, host upmcrs:0x%x\n",
3818 cmd->command, status);
3819 ret = (status != PWR_OK) ? status : -1;
3823 ufshcd_print_host_state(hba);
3824 ufshcd_print_pwr_info(hba);
3825 ufshcd_print_host_regs(hba);
3828 spin_lock_irqsave(hba->host->host_lock, flags);
3829 hba->active_uic_cmd = NULL;
3830 hba->uic_async_done = NULL;
3832 ufshcd_enable_intr(hba, UIC_COMMAND_COMPL);
3834 ufshcd_set_link_broken(hba);
3835 ufshcd_schedule_eh_work(hba);
3838 spin_unlock_irqrestore(hba->host->host_lock, flags);
3839 mutex_unlock(&hba->uic_cmd_mutex);
3845 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
3846 * using DME_SET primitives.
3847 * @hba: per adapter instance
3848 * @mode: powr mode value
3850 * Returns 0 on success, non-zero value on failure
3852 static int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
3854 struct uic_command uic_cmd = {0};
3857 if (hba->quirks & UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP) {
3858 ret = ufshcd_dme_set(hba,
3859 UIC_ARG_MIB_SEL(PA_RXHSUNTERMCAP, 0), 1);
3861 dev_err(hba->dev, "%s: failed to enable PA_RXHSUNTERMCAP ret %d\n",
3867 uic_cmd.command = UIC_CMD_DME_SET;
3868 uic_cmd.argument1 = UIC_ARG_MIB(PA_PWRMODE);
3869 uic_cmd.argument3 = mode;
3870 ufshcd_hold(hba, false);
3871 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
3872 ufshcd_release(hba);
3878 int ufshcd_link_recovery(struct ufs_hba *hba)
3881 unsigned long flags;
3883 spin_lock_irqsave(hba->host->host_lock, flags);
3884 hba->ufshcd_state = UFSHCD_STATE_RESET;
3885 ufshcd_set_eh_in_progress(hba);
3886 spin_unlock_irqrestore(hba->host->host_lock, flags);
3888 /* Reset the attached device */
3889 ufshcd_vops_device_reset(hba);
3891 ret = ufshcd_host_reset_and_restore(hba);
3893 spin_lock_irqsave(hba->host->host_lock, flags);
3895 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3896 ufshcd_clear_eh_in_progress(hba);
3897 spin_unlock_irqrestore(hba->host->host_lock, flags);
3900 dev_err(hba->dev, "%s: link recovery failed, err %d",
3905 EXPORT_SYMBOL_GPL(ufshcd_link_recovery);
3907 static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
3910 struct uic_command uic_cmd = {0};
3911 ktime_t start = ktime_get();
3913 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_ENTER, PRE_CHANGE);
3915 uic_cmd.command = UIC_CMD_DME_HIBER_ENTER;
3916 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
3917 trace_ufshcd_profile_hibern8(dev_name(hba->dev), "enter",
3918 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
3921 dev_err(hba->dev, "%s: hibern8 enter failed. ret = %d\n",
3924 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_ENTER,
3930 int ufshcd_uic_hibern8_exit(struct ufs_hba *hba)
3932 struct uic_command uic_cmd = {0};
3934 ktime_t start = ktime_get();
3936 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_EXIT, PRE_CHANGE);
3938 uic_cmd.command = UIC_CMD_DME_HIBER_EXIT;
3939 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
3940 trace_ufshcd_profile_hibern8(dev_name(hba->dev), "exit",
3941 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
3944 dev_err(hba->dev, "%s: hibern8 exit failed. ret = %d\n",
3947 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_EXIT,
3949 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_get();
3950 hba->ufs_stats.hibern8_exit_cnt++;
3955 EXPORT_SYMBOL_GPL(ufshcd_uic_hibern8_exit);
3957 void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit)
3959 unsigned long flags;
3960 bool update = false;
3962 if (!ufshcd_is_auto_hibern8_supported(hba))
3965 spin_lock_irqsave(hba->host->host_lock, flags);
3966 if (hba->ahit != ahit) {
3970 spin_unlock_irqrestore(hba->host->host_lock, flags);
3972 if (update && !pm_runtime_suspended(hba->dev)) {
3973 pm_runtime_get_sync(hba->dev);
3974 ufshcd_hold(hba, false);
3975 ufshcd_auto_hibern8_enable(hba);
3976 ufshcd_release(hba);
3977 pm_runtime_put(hba->dev);
3980 EXPORT_SYMBOL_GPL(ufshcd_auto_hibern8_update);
3982 void ufshcd_auto_hibern8_enable(struct ufs_hba *hba)
3984 unsigned long flags;
3986 if (!ufshcd_is_auto_hibern8_supported(hba))
3989 spin_lock_irqsave(hba->host->host_lock, flags);
3990 ufshcd_writel(hba, hba->ahit, REG_AUTO_HIBERNATE_IDLE_TIMER);
3991 spin_unlock_irqrestore(hba->host->host_lock, flags);
3995 * ufshcd_init_pwr_info - setting the POR (power on reset)
3996 * values in hba power info
3997 * @hba: per-adapter instance
3999 static void ufshcd_init_pwr_info(struct ufs_hba *hba)
4001 hba->pwr_info.gear_rx = UFS_PWM_G1;
4002 hba->pwr_info.gear_tx = UFS_PWM_G1;
4003 hba->pwr_info.lane_rx = 1;
4004 hba->pwr_info.lane_tx = 1;
4005 hba->pwr_info.pwr_rx = SLOWAUTO_MODE;
4006 hba->pwr_info.pwr_tx = SLOWAUTO_MODE;
4007 hba->pwr_info.hs_rate = 0;
4011 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
4012 * @hba: per-adapter instance
4014 static int ufshcd_get_max_pwr_mode(struct ufs_hba *hba)
4016 struct ufs_pa_layer_attr *pwr_info = &hba->max_pwr_info.info;
4018 if (hba->max_pwr_info.is_valid)
4021 pwr_info->pwr_tx = FAST_MODE;
4022 pwr_info->pwr_rx = FAST_MODE;
4023 pwr_info->hs_rate = PA_HS_MODE_B;
4025 /* Get the connected lane count */
4026 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
4027 &pwr_info->lane_rx);
4028 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
4029 &pwr_info->lane_tx);
4031 if (!pwr_info->lane_rx || !pwr_info->lane_tx) {
4032 dev_err(hba->dev, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
4040 * First, get the maximum gears of HS speed.
4041 * If a zero value, it means there is no HSGEAR capability.
4042 * Then, get the maximum gears of PWM speed.
4044 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &pwr_info->gear_rx);
4045 if (!pwr_info->gear_rx) {
4046 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
4047 &pwr_info->gear_rx);
4048 if (!pwr_info->gear_rx) {
4049 dev_err(hba->dev, "%s: invalid max pwm rx gear read = %d\n",
4050 __func__, pwr_info->gear_rx);
4053 pwr_info->pwr_rx = SLOW_MODE;
4056 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR),
4057 &pwr_info->gear_tx);
4058 if (!pwr_info->gear_tx) {
4059 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
4060 &pwr_info->gear_tx);
4061 if (!pwr_info->gear_tx) {
4062 dev_err(hba->dev, "%s: invalid max pwm tx gear read = %d\n",
4063 __func__, pwr_info->gear_tx);
4066 pwr_info->pwr_tx = SLOW_MODE;
4069 hba->max_pwr_info.is_valid = true;
4073 static int ufshcd_change_power_mode(struct ufs_hba *hba,
4074 struct ufs_pa_layer_attr *pwr_mode)
4078 /* if already configured to the requested pwr_mode */
4079 if (!hba->force_pmc &&
4080 pwr_mode->gear_rx == hba->pwr_info.gear_rx &&
4081 pwr_mode->gear_tx == hba->pwr_info.gear_tx &&
4082 pwr_mode->lane_rx == hba->pwr_info.lane_rx &&
4083 pwr_mode->lane_tx == hba->pwr_info.lane_tx &&
4084 pwr_mode->pwr_rx == hba->pwr_info.pwr_rx &&
4085 pwr_mode->pwr_tx == hba->pwr_info.pwr_tx &&
4086 pwr_mode->hs_rate == hba->pwr_info.hs_rate) {
4087 dev_dbg(hba->dev, "%s: power already configured\n", __func__);
4092 * Configure attributes for power mode change with below.
4093 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
4094 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
4097 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), pwr_mode->gear_rx);
4098 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES),
4100 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
4101 pwr_mode->pwr_rx == FAST_MODE)
4102 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), TRUE);
4104 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), FALSE);
4106 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), pwr_mode->gear_tx);
4107 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES),
4109 if (pwr_mode->pwr_tx == FASTAUTO_MODE ||
4110 pwr_mode->pwr_tx == FAST_MODE)
4111 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), TRUE);
4113 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), FALSE);
4115 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
4116 pwr_mode->pwr_tx == FASTAUTO_MODE ||
4117 pwr_mode->pwr_rx == FAST_MODE ||
4118 pwr_mode->pwr_tx == FAST_MODE)
4119 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES),
4122 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA0),
4123 DL_FC0ProtectionTimeOutVal_Default);
4124 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA1),
4125 DL_TC0ReplayTimeOutVal_Default);
4126 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA2),
4127 DL_AFC0ReqTimeOutVal_Default);
4128 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA3),
4129 DL_FC1ProtectionTimeOutVal_Default);
4130 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA4),
4131 DL_TC1ReplayTimeOutVal_Default);
4132 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA5),
4133 DL_AFC1ReqTimeOutVal_Default);
4135 ufshcd_dme_set(hba, UIC_ARG_MIB(DME_LocalFC0ProtectionTimeOutVal),
4136 DL_FC0ProtectionTimeOutVal_Default);
4137 ufshcd_dme_set(hba, UIC_ARG_MIB(DME_LocalTC0ReplayTimeOutVal),
4138 DL_TC0ReplayTimeOutVal_Default);
4139 ufshcd_dme_set(hba, UIC_ARG_MIB(DME_LocalAFC0ReqTimeOutVal),
4140 DL_AFC0ReqTimeOutVal_Default);
4142 ret = ufshcd_uic_change_pwr_mode(hba, pwr_mode->pwr_rx << 4
4143 | pwr_mode->pwr_tx);
4147 "%s: power mode change failed %d\n", __func__, ret);
4149 ufshcd_vops_pwr_change_notify(hba, POST_CHANGE, NULL,
4152 memcpy(&hba->pwr_info, pwr_mode,
4153 sizeof(struct ufs_pa_layer_attr));
4160 * ufshcd_config_pwr_mode - configure a new power mode
4161 * @hba: per-adapter instance
4162 * @desired_pwr_mode: desired power configuration
4164 int ufshcd_config_pwr_mode(struct ufs_hba *hba,
4165 struct ufs_pa_layer_attr *desired_pwr_mode)
4167 struct ufs_pa_layer_attr final_params = { 0 };
4170 ret = ufshcd_vops_pwr_change_notify(hba, PRE_CHANGE,
4171 desired_pwr_mode, &final_params);
4174 memcpy(&final_params, desired_pwr_mode, sizeof(final_params));
4176 ret = ufshcd_change_power_mode(hba, &final_params);
4180 EXPORT_SYMBOL_GPL(ufshcd_config_pwr_mode);
4183 * ufshcd_complete_dev_init() - checks device readiness
4184 * @hba: per-adapter instance
4186 * Set fDeviceInit flag and poll until device toggles it.
4188 static int ufshcd_complete_dev_init(struct ufs_hba *hba)
4191 bool flag_res = true;
4194 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
4195 QUERY_FLAG_IDN_FDEVICEINIT, 0, NULL);
4198 "%s setting fDeviceInit flag failed with error %d\n",
4203 /* Poll fDeviceInit flag to be cleared */
4204 timeout = ktime_add_ms(ktime_get(), FDEVICEINIT_COMPL_TIMEOUT);
4206 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_READ_FLAG,
4207 QUERY_FLAG_IDN_FDEVICEINIT, 0, &flag_res);
4210 usleep_range(5000, 10000);
4211 } while (ktime_before(ktime_get(), timeout));
4215 "%s reading fDeviceInit flag failed with error %d\n",
4217 } else if (flag_res) {
4219 "%s fDeviceInit was not cleared by the device\n",
4228 * ufshcd_make_hba_operational - Make UFS controller operational
4229 * @hba: per adapter instance
4231 * To bring UFS host controller to operational state,
4232 * 1. Enable required interrupts
4233 * 2. Configure interrupt aggregation
4234 * 3. Program UTRL and UTMRL base address
4235 * 4. Configure run-stop-registers
4237 * Returns 0 on success, non-zero value on failure
4239 int ufshcd_make_hba_operational(struct ufs_hba *hba)
4244 /* Enable required interrupts */
4245 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
4247 /* Configure interrupt aggregation */
4248 if (ufshcd_is_intr_aggr_allowed(hba))
4249 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
4251 ufshcd_disable_intr_aggr(hba);
4253 /* Configure UTRL and UTMRL base address registers */
4254 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
4255 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
4256 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
4257 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
4258 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
4259 REG_UTP_TASK_REQ_LIST_BASE_L);
4260 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
4261 REG_UTP_TASK_REQ_LIST_BASE_H);
4264 * Make sure base address and interrupt setup are updated before
4265 * enabling the run/stop registers below.
4270 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
4272 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
4273 if (!(ufshcd_get_lists_status(reg))) {
4274 ufshcd_enable_run_stop_reg(hba);
4277 "Host controller not ready to process requests");
4283 EXPORT_SYMBOL_GPL(ufshcd_make_hba_operational);
4286 * ufshcd_hba_stop - Send controller to reset state
4287 * @hba: per adapter instance
4289 static inline void ufshcd_hba_stop(struct ufs_hba *hba)
4291 unsigned long flags;
4295 * Obtain the host lock to prevent that the controller is disabled
4296 * while the UFS interrupt handler is active on another CPU.
4298 spin_lock_irqsave(hba->host->host_lock, flags);
4299 ufshcd_writel(hba, CONTROLLER_DISABLE, REG_CONTROLLER_ENABLE);
4300 spin_unlock_irqrestore(hba->host->host_lock, flags);
4302 err = ufshcd_wait_for_register(hba, REG_CONTROLLER_ENABLE,
4303 CONTROLLER_ENABLE, CONTROLLER_DISABLE,
4306 dev_err(hba->dev, "%s: Controller disable failed\n", __func__);
4310 * ufshcd_hba_execute_hce - initialize the controller
4311 * @hba: per adapter instance
4313 * The controller resets itself and controller firmware initialization
4314 * sequence kicks off. When controller is ready it will set
4315 * the Host Controller Enable bit to 1.
4317 * Returns 0 on success, non-zero value on failure
4319 static int ufshcd_hba_execute_hce(struct ufs_hba *hba)
4323 if (!ufshcd_is_hba_active(hba))
4324 /* change controller state to "reset state" */
4325 ufshcd_hba_stop(hba);
4327 /* UniPro link is disabled at this point */
4328 ufshcd_set_link_off(hba);
4330 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
4332 /* start controller initialization sequence */
4333 ufshcd_hba_start(hba);
4336 * To initialize a UFS host controller HCE bit must be set to 1.
4337 * During initialization the HCE bit value changes from 1->0->1.
4338 * When the host controller completes initialization sequence
4339 * it sets the value of HCE bit to 1. The same HCE bit is read back
4340 * to check if the controller has completed initialization sequence.
4341 * So without this delay the value HCE = 1, set in the previous
4342 * instruction might be read back.
4343 * This delay can be changed based on the controller.
4345 ufshcd_delay_us(hba->vps->hba_enable_delay_us, 100);
4347 /* wait for the host controller to complete initialization */
4349 while (ufshcd_is_hba_active(hba)) {
4354 "Controller enable failed\n");
4357 usleep_range(1000, 1100);
4360 /* enable UIC related interrupts */
4361 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
4363 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
4368 int ufshcd_hba_enable(struct ufs_hba *hba)
4372 if (hba->quirks & UFSHCI_QUIRK_BROKEN_HCE) {
4373 ufshcd_set_link_off(hba);
4374 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
4376 /* enable UIC related interrupts */
4377 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
4378 ret = ufshcd_dme_reset(hba);
4380 ret = ufshcd_dme_enable(hba);
4382 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
4385 "Host controller enable failed with non-hce\n");
4388 ret = ufshcd_hba_execute_hce(hba);
4393 EXPORT_SYMBOL_GPL(ufshcd_hba_enable);
4395 static int ufshcd_disable_tx_lcc(struct ufs_hba *hba, bool peer)
4397 int tx_lanes = 0, i, err = 0;
4400 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
4403 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
4405 for (i = 0; i < tx_lanes; i++) {
4407 err = ufshcd_dme_set(hba,
4408 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
4409 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
4412 err = ufshcd_dme_peer_set(hba,
4413 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
4414 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
4417 dev_err(hba->dev, "%s: TX LCC Disable failed, peer = %d, lane = %d, err = %d",
4418 __func__, peer, i, err);
4426 static inline int ufshcd_disable_device_tx_lcc(struct ufs_hba *hba)
4428 return ufshcd_disable_tx_lcc(hba, true);
4431 void ufshcd_update_reg_hist(struct ufs_err_reg_hist *reg_hist,
4434 reg_hist->reg[reg_hist->pos] = reg;
4435 reg_hist->tstamp[reg_hist->pos] = ktime_get();
4436 reg_hist->pos = (reg_hist->pos + 1) % UFS_ERR_REG_HIST_LENGTH;
4438 EXPORT_SYMBOL_GPL(ufshcd_update_reg_hist);
4441 * ufshcd_link_startup - Initialize unipro link startup
4442 * @hba: per adapter instance
4444 * Returns 0 for success, non-zero in case of failure
4446 static int ufshcd_link_startup(struct ufs_hba *hba)
4449 int retries = DME_LINKSTARTUP_RETRIES;
4450 bool link_startup_again = false;
4453 * If UFS device isn't active then we will have to issue link startup
4454 * 2 times to make sure the device state move to active.
4456 if (!ufshcd_is_ufs_dev_active(hba))
4457 link_startup_again = true;
4461 ufshcd_vops_link_startup_notify(hba, PRE_CHANGE);
4463 ret = ufshcd_dme_link_startup(hba);
4465 /* check if device is detected by inter-connect layer */
4466 if (!ret && !ufshcd_is_device_present(hba)) {
4467 ufshcd_update_reg_hist(&hba->ufs_stats.link_startup_err,
4469 dev_err(hba->dev, "%s: Device not present\n", __func__);
4475 * DME link lost indication is only received when link is up,
4476 * but we can't be sure if the link is up until link startup
4477 * succeeds. So reset the local Uni-Pro and try again.
4479 if (ret && ufshcd_hba_enable(hba)) {
4480 ufshcd_update_reg_hist(&hba->ufs_stats.link_startup_err,
4484 } while (ret && retries--);
4487 /* failed to get the link up... retire */
4488 ufshcd_update_reg_hist(&hba->ufs_stats.link_startup_err,
4493 if (link_startup_again) {
4494 link_startup_again = false;
4495 retries = DME_LINKSTARTUP_RETRIES;
4499 /* Mark that link is up in PWM-G1, 1-lane, SLOW-AUTO mode */
4500 ufshcd_init_pwr_info(hba);
4501 ufshcd_print_pwr_info(hba);
4503 if (hba->quirks & UFSHCD_QUIRK_BROKEN_LCC) {
4504 ret = ufshcd_disable_device_tx_lcc(hba);
4509 /* Include any host controller configuration via UIC commands */
4510 ret = ufshcd_vops_link_startup_notify(hba, POST_CHANGE);
4514 /* Clear UECPA once due to LINERESET has happened during LINK_STARTUP */
4515 ufshcd_readl(hba, REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER);
4516 ret = ufshcd_make_hba_operational(hba);
4519 dev_err(hba->dev, "link startup failed %d\n", ret);
4520 ufshcd_print_host_state(hba);
4521 ufshcd_print_pwr_info(hba);
4522 ufshcd_print_host_regs(hba);
4528 * ufshcd_verify_dev_init() - Verify device initialization
4529 * @hba: per-adapter instance
4531 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
4532 * device Transport Protocol (UTP) layer is ready after a reset.
4533 * If the UTP layer at the device side is not initialized, it may
4534 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
4535 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
4537 static int ufshcd_verify_dev_init(struct ufs_hba *hba)
4542 ufshcd_hold(hba, false);
4543 mutex_lock(&hba->dev_cmd.lock);
4544 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
4545 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
4548 if (!err || err == -ETIMEDOUT)
4551 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
4553 mutex_unlock(&hba->dev_cmd.lock);
4554 ufshcd_release(hba);
4557 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
4562 * ufshcd_set_queue_depth - set lun queue depth
4563 * @sdev: pointer to SCSI device
4565 * Read bLUQueueDepth value and activate scsi tagged command
4566 * queueing. For WLUN, queue depth is set to 1. For best-effort
4567 * cases (bLUQueueDepth = 0) the queue depth is set to a maximum
4568 * value that host can queue.
4570 static void ufshcd_set_queue_depth(struct scsi_device *sdev)
4574 struct ufs_hba *hba;
4576 hba = shost_priv(sdev->host);
4578 lun_qdepth = hba->nutrs;
4579 ret = ufshcd_read_unit_desc_param(hba,
4580 ufshcd_scsi_to_upiu_lun(sdev->lun),
4581 UNIT_DESC_PARAM_LU_Q_DEPTH,
4583 sizeof(lun_qdepth));
4585 /* Some WLUN doesn't support unit descriptor */
4586 if (ret == -EOPNOTSUPP)
4588 else if (!lun_qdepth)
4589 /* eventually, we can figure out the real queue depth */
4590 lun_qdepth = hba->nutrs;
4592 lun_qdepth = min_t(int, lun_qdepth, hba->nutrs);
4594 dev_dbg(hba->dev, "%s: activate tcq with queue depth %d\n",
4595 __func__, lun_qdepth);
4596 scsi_change_queue_depth(sdev, lun_qdepth);
4600 * ufshcd_get_lu_wp - returns the "b_lu_write_protect" from UNIT DESCRIPTOR
4601 * @hba: per-adapter instance
4602 * @lun: UFS device lun id
4603 * @b_lu_write_protect: pointer to buffer to hold the LU's write protect info
4605 * Returns 0 in case of success and b_lu_write_protect status would be returned
4606 * @b_lu_write_protect parameter.
4607 * Returns -ENOTSUPP if reading b_lu_write_protect is not supported.
4608 * Returns -EINVAL in case of invalid parameters passed to this function.
4610 static int ufshcd_get_lu_wp(struct ufs_hba *hba,
4612 u8 *b_lu_write_protect)
4616 if (!b_lu_write_protect)
4619 * According to UFS device spec, RPMB LU can't be write
4620 * protected so skip reading bLUWriteProtect parameter for
4621 * it. For other W-LUs, UNIT DESCRIPTOR is not available.
4623 else if (lun >= hba->dev_info.max_lu_supported)
4626 ret = ufshcd_read_unit_desc_param(hba,
4628 UNIT_DESC_PARAM_LU_WR_PROTECT,
4630 sizeof(*b_lu_write_protect));
4635 * ufshcd_get_lu_power_on_wp_status - get LU's power on write protect
4637 * @hba: per-adapter instance
4638 * @sdev: pointer to SCSI device
4641 static inline void ufshcd_get_lu_power_on_wp_status(struct ufs_hba *hba,
4642 struct scsi_device *sdev)
4644 if (hba->dev_info.f_power_on_wp_en &&
4645 !hba->dev_info.is_lu_power_on_wp) {
4646 u8 b_lu_write_protect;
4648 if (!ufshcd_get_lu_wp(hba, ufshcd_scsi_to_upiu_lun(sdev->lun),
4649 &b_lu_write_protect) &&
4650 (b_lu_write_protect == UFS_LU_POWER_ON_WP))
4651 hba->dev_info.is_lu_power_on_wp = true;
4656 * ufshcd_slave_alloc - handle initial SCSI device configurations
4657 * @sdev: pointer to SCSI device
4661 static int ufshcd_slave_alloc(struct scsi_device *sdev)
4663 struct ufs_hba *hba;
4665 hba = shost_priv(sdev->host);
4667 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
4668 sdev->use_10_for_ms = 1;
4670 /* DBD field should be set to 1 in mode sense(10) */
4671 sdev->set_dbd_for_ms = 1;
4673 /* allow SCSI layer to restart the device in case of errors */
4674 sdev->allow_restart = 1;
4676 /* REPORT SUPPORTED OPERATION CODES is not supported */
4677 sdev->no_report_opcodes = 1;
4679 /* WRITE_SAME command is not supported */
4680 sdev->no_write_same = 1;
4682 ufshcd_set_queue_depth(sdev);
4684 ufshcd_get_lu_power_on_wp_status(hba, sdev);
4690 * ufshcd_change_queue_depth - change queue depth
4691 * @sdev: pointer to SCSI device
4692 * @depth: required depth to set
4694 * Change queue depth and make sure the max. limits are not crossed.
4696 static int ufshcd_change_queue_depth(struct scsi_device *sdev, int depth)
4698 struct ufs_hba *hba = shost_priv(sdev->host);
4700 if (depth > hba->nutrs)
4702 return scsi_change_queue_depth(sdev, depth);
4706 * ufshcd_slave_configure - adjust SCSI device configurations
4707 * @sdev: pointer to SCSI device
4709 static int ufshcd_slave_configure(struct scsi_device *sdev)
4711 struct ufs_hba *hba = shost_priv(sdev->host);
4712 struct request_queue *q = sdev->request_queue;
4714 blk_queue_update_dma_pad(q, PRDT_DATA_BYTE_COUNT_PAD - 1);
4716 if (ufshcd_is_rpm_autosuspend_allowed(hba))
4717 sdev->rpm_autosuspend = 1;
4719 ufshcd_crypto_setup_rq_keyslot_manager(hba, q);
4725 * ufshcd_slave_destroy - remove SCSI device configurations
4726 * @sdev: pointer to SCSI device
4728 static void ufshcd_slave_destroy(struct scsi_device *sdev)
4730 struct ufs_hba *hba;
4732 hba = shost_priv(sdev->host);
4733 /* Drop the reference as it won't be needed anymore */
4734 if (ufshcd_scsi_to_upiu_lun(sdev->lun) == UFS_UPIU_UFS_DEVICE_WLUN) {
4735 unsigned long flags;
4737 spin_lock_irqsave(hba->host->host_lock, flags);
4738 hba->sdev_ufs_device = NULL;
4739 spin_unlock_irqrestore(hba->host->host_lock, flags);
4744 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
4745 * @lrbp: pointer to local reference block of completed command
4746 * @scsi_status: SCSI command status
4748 * Returns value base on SCSI command status
4751 ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
4755 switch (scsi_status) {
4756 case SAM_STAT_CHECK_CONDITION:
4757 ufshcd_copy_sense_data(lrbp);
4760 result |= DID_OK << 16 |
4761 COMMAND_COMPLETE << 8 |
4764 case SAM_STAT_TASK_SET_FULL:
4766 case SAM_STAT_TASK_ABORTED:
4767 ufshcd_copy_sense_data(lrbp);
4768 result |= scsi_status;
4771 result |= DID_ERROR << 16;
4773 } /* end of switch */
4779 * ufshcd_transfer_rsp_status - Get overall status of the response
4780 * @hba: per adapter instance
4781 * @lrbp: pointer to local reference block of completed command
4783 * Returns result of the command to notify SCSI midlayer
4786 ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
4792 /* overall command status of utrd */
4793 ocs = ufshcd_get_tr_ocs(lrbp);
4795 if (hba->quirks & UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR) {
4796 if (be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_1) &
4797 MASK_RSP_UPIU_RESULT)
4803 result = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
4804 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
4806 case UPIU_TRANSACTION_RESPONSE:
4808 * get the response UPIU result to extract
4809 * the SCSI command status
4811 result = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr);
4814 * get the result based on SCSI status response
4815 * to notify the SCSI midlayer of the command status
4817 scsi_status = result & MASK_SCSI_STATUS;
4818 result = ufshcd_scsi_cmd_status(lrbp, scsi_status);
4821 * Currently we are only supporting BKOPs exception
4822 * events hence we can ignore BKOPs exception event
4823 * during power management callbacks. BKOPs exception
4824 * event is not expected to be raised in runtime suspend
4825 * callback as it allows the urgent bkops.
4826 * During system suspend, we are anyway forcefully
4827 * disabling the bkops and if urgent bkops is needed
4828 * it will be enabled on system resume. Long term
4829 * solution could be to abort the system suspend if
4830 * UFS device needs urgent BKOPs.
4832 if (!hba->pm_op_in_progress &&
4833 ufshcd_is_exception_event(lrbp->ucd_rsp_ptr) &&
4834 schedule_work(&hba->eeh_work)) {
4836 * Prevent suspend once eeh_work is scheduled
4837 * to avoid deadlock between ufshcd_suspend
4838 * and exception event handler.
4840 pm_runtime_get_noresume(hba->dev);
4843 case UPIU_TRANSACTION_REJECT_UPIU:
4844 /* TODO: handle Reject UPIU Response */
4845 result = DID_ERROR << 16;
4847 "Reject UPIU not fully implemented\n");
4851 "Unexpected request response code = %x\n",
4853 result = DID_ERROR << 16;
4858 result |= DID_ABORT << 16;
4860 case OCS_INVALID_COMMAND_STATUS:
4861 result |= DID_REQUEUE << 16;
4863 case OCS_INVALID_CMD_TABLE_ATTR:
4864 case OCS_INVALID_PRDT_ATTR:
4865 case OCS_MISMATCH_DATA_BUF_SIZE:
4866 case OCS_MISMATCH_RESP_UPIU_SIZE:
4867 case OCS_PEER_COMM_FAILURE:
4868 case OCS_FATAL_ERROR:
4869 case OCS_DEVICE_FATAL_ERROR:
4870 case OCS_INVALID_CRYPTO_CONFIG:
4871 case OCS_GENERAL_CRYPTO_ERROR:
4873 result |= DID_ERROR << 16;
4875 "OCS error from controller = %x for tag %d\n",
4876 ocs, lrbp->task_tag);
4877 ufshcd_print_host_regs(hba);
4878 ufshcd_print_host_state(hba);
4880 } /* end of switch */
4882 if ((host_byte(result) != DID_OK) && !hba->silence_err_logs)
4883 ufshcd_print_trs(hba, 1 << lrbp->task_tag, true);
4888 * ufshcd_uic_cmd_compl - handle completion of uic command
4889 * @hba: per adapter instance
4890 * @intr_status: interrupt status generated by the controller
4893 * IRQ_HANDLED - If interrupt is valid
4894 * IRQ_NONE - If invalid interrupt
4896 static irqreturn_t ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
4898 irqreturn_t retval = IRQ_NONE;
4900 if ((intr_status & UIC_COMMAND_COMPL) && hba->active_uic_cmd) {
4901 hba->active_uic_cmd->argument2 |=
4902 ufshcd_get_uic_cmd_result(hba);
4903 hba->active_uic_cmd->argument3 =
4904 ufshcd_get_dme_attr_val(hba);
4905 complete(&hba->active_uic_cmd->done);
4906 retval = IRQ_HANDLED;
4909 if ((intr_status & UFSHCD_UIC_PWR_MASK) && hba->uic_async_done) {
4910 complete(hba->uic_async_done);
4911 retval = IRQ_HANDLED;
4914 if (retval == IRQ_HANDLED)
4915 ufshcd_add_uic_command_trace(hba, hba->active_uic_cmd,
4921 * __ufshcd_transfer_req_compl - handle SCSI and query command completion
4922 * @hba: per adapter instance
4923 * @completed_reqs: requests to complete
4925 static void __ufshcd_transfer_req_compl(struct ufs_hba *hba,
4926 unsigned long completed_reqs)
4928 struct ufshcd_lrb *lrbp;
4929 struct scsi_cmnd *cmd;
4933 for_each_set_bit(index, &completed_reqs, hba->nutrs) {
4934 lrbp = &hba->lrb[index];
4935 lrbp->compl_time_stamp = ktime_get();
4938 ufshcd_add_command_trace(hba, index, "complete");
4939 result = ufshcd_transfer_rsp_status(hba, lrbp);
4940 scsi_dma_unmap(cmd);
4941 cmd->result = result;
4942 /* Mark completed command as NULL in LRB */
4944 /* Do not touch lrbp after scsi done */
4945 cmd->scsi_done(cmd);
4946 __ufshcd_release(hba);
4947 } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE ||
4948 lrbp->command_type == UTP_CMD_TYPE_UFS_STORAGE) {
4949 if (hba->dev_cmd.complete) {
4950 ufshcd_add_command_trace(hba, index,
4952 complete(hba->dev_cmd.complete);
4955 if (ufshcd_is_clkscaling_supported(hba))
4956 hba->clk_scaling.active_reqs--;
4959 /* clear corresponding bits of completed commands */
4960 hba->outstanding_reqs ^= completed_reqs;
4962 ufshcd_clk_scaling_update_busy(hba);
4966 * ufshcd_transfer_req_compl - handle SCSI and query command completion
4967 * @hba: per adapter instance
4970 * IRQ_HANDLED - If interrupt is valid
4971 * IRQ_NONE - If invalid interrupt
4973 static irqreturn_t ufshcd_transfer_req_compl(struct ufs_hba *hba)
4975 unsigned long completed_reqs;
4978 /* Resetting interrupt aggregation counters first and reading the
4979 * DOOR_BELL afterward allows us to handle all the completed requests.
4980 * In order to prevent other interrupts starvation the DB is read once
4981 * after reset. The down side of this solution is the possibility of
4982 * false interrupt if device completes another request after resetting
4983 * aggregation and before reading the DB.
4985 if (ufshcd_is_intr_aggr_allowed(hba) &&
4986 !(hba->quirks & UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR))
4987 ufshcd_reset_intr_aggr(hba);
4989 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
4990 completed_reqs = tr_doorbell ^ hba->outstanding_reqs;
4992 if (completed_reqs) {
4993 __ufshcd_transfer_req_compl(hba, completed_reqs);
5001 * ufshcd_disable_ee - disable exception event
5002 * @hba: per-adapter instance
5003 * @mask: exception event to disable
5005 * Disables exception event in the device so that the EVENT_ALERT
5008 * Returns zero on success, non-zero error value on failure.
5010 static int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
5015 if (!(hba->ee_ctrl_mask & mask))
5018 val = hba->ee_ctrl_mask & ~mask;
5019 val &= MASK_EE_STATUS;
5020 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
5021 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
5023 hba->ee_ctrl_mask &= ~mask;
5029 * ufshcd_enable_ee - enable exception event
5030 * @hba: per-adapter instance
5031 * @mask: exception event to enable
5033 * Enable corresponding exception event in the device to allow
5034 * device to alert host in critical scenarios.
5036 * Returns zero on success, non-zero error value on failure.
5038 static int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
5043 if (hba->ee_ctrl_mask & mask)
5046 val = hba->ee_ctrl_mask | mask;
5047 val &= MASK_EE_STATUS;
5048 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
5049 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
5051 hba->ee_ctrl_mask |= mask;
5057 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
5058 * @hba: per-adapter instance
5060 * Allow device to manage background operations on its own. Enabling
5061 * this might lead to inconsistent latencies during normal data transfers
5062 * as the device is allowed to manage its own way of handling background
5065 * Returns zero on success, non-zero on failure.
5067 static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
5071 if (hba->auto_bkops_enabled)
5074 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
5075 QUERY_FLAG_IDN_BKOPS_EN, 0, NULL);
5077 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
5082 hba->auto_bkops_enabled = true;
5083 trace_ufshcd_auto_bkops_state(dev_name(hba->dev), "Enabled");
5085 /* No need of URGENT_BKOPS exception from the device */
5086 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
5088 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
5095 * ufshcd_disable_auto_bkops - block device in doing background operations
5096 * @hba: per-adapter instance
5098 * Disabling background operations improves command response latency but
5099 * has drawback of device moving into critical state where the device is
5100 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
5101 * host is idle so that BKOPS are managed effectively without any negative
5104 * Returns zero on success, non-zero on failure.
5106 static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
5110 if (!hba->auto_bkops_enabled)
5114 * If host assisted BKOPs is to be enabled, make sure
5115 * urgent bkops exception is allowed.
5117 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
5119 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
5124 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
5125 QUERY_FLAG_IDN_BKOPS_EN, 0, NULL);
5127 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
5129 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
5133 hba->auto_bkops_enabled = false;
5134 trace_ufshcd_auto_bkops_state(dev_name(hba->dev), "Disabled");
5135 hba->is_urgent_bkops_lvl_checked = false;
5141 * ufshcd_force_reset_auto_bkops - force reset auto bkops state
5142 * @hba: per adapter instance
5144 * After a device reset the device may toggle the BKOPS_EN flag
5145 * to default value. The s/w tracking variables should be updated
5146 * as well. This function would change the auto-bkops state based on
5147 * UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND.
5149 static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
5151 if (ufshcd_keep_autobkops_enabled_except_suspend(hba)) {
5152 hba->auto_bkops_enabled = false;
5153 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
5154 ufshcd_enable_auto_bkops(hba);
5156 hba->auto_bkops_enabled = true;
5157 hba->ee_ctrl_mask &= ~MASK_EE_URGENT_BKOPS;
5158 ufshcd_disable_auto_bkops(hba);
5160 hba->urgent_bkops_lvl = BKOPS_STATUS_PERF_IMPACT;
5161 hba->is_urgent_bkops_lvl_checked = false;
5164 static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
5166 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
5167 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
5171 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
5172 * @hba: per-adapter instance
5173 * @status: bkops_status value
5175 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
5176 * flag in the device to permit background operations if the device
5177 * bkops_status is greater than or equal to "status" argument passed to
5178 * this function, disable otherwise.
5180 * Returns 0 for success, non-zero in case of failure.
5182 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
5183 * to know whether auto bkops is enabled or disabled after this function
5184 * returns control to it.
5186 static int ufshcd_bkops_ctrl(struct ufs_hba *hba,
5187 enum bkops_status status)
5190 u32 curr_status = 0;
5192 err = ufshcd_get_bkops_status(hba, &curr_status);
5194 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
5197 } else if (curr_status > BKOPS_STATUS_MAX) {
5198 dev_err(hba->dev, "%s: invalid BKOPS status %d\n",
5199 __func__, curr_status);
5204 if (curr_status >= status)
5205 err = ufshcd_enable_auto_bkops(hba);
5207 err = ufshcd_disable_auto_bkops(hba);
5213 * ufshcd_urgent_bkops - handle urgent bkops exception event
5214 * @hba: per-adapter instance
5216 * Enable fBackgroundOpsEn flag in the device to permit background
5219 * If BKOPs is enabled, this function returns 0, 1 if the bkops in not enabled
5220 * and negative error value for any other failure.
5222 static int ufshcd_urgent_bkops(struct ufs_hba *hba)
5224 return ufshcd_bkops_ctrl(hba, hba->urgent_bkops_lvl);
5227 static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
5229 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
5230 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
5233 static void ufshcd_bkops_exception_event_handler(struct ufs_hba *hba)
5236 u32 curr_status = 0;
5238 if (hba->is_urgent_bkops_lvl_checked)
5239 goto enable_auto_bkops;
5241 err = ufshcd_get_bkops_status(hba, &curr_status);
5243 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
5249 * We are seeing that some devices are raising the urgent bkops
5250 * exception events even when BKOPS status doesn't indicate performace
5251 * impacted or critical. Handle these device by determining their urgent
5252 * bkops status at runtime.
5254 if (curr_status < BKOPS_STATUS_PERF_IMPACT) {
5255 dev_err(hba->dev, "%s: device raised urgent BKOPS exception for bkops status %d\n",
5256 __func__, curr_status);
5257 /* update the current status as the urgent bkops level */
5258 hba->urgent_bkops_lvl = curr_status;
5259 hba->is_urgent_bkops_lvl_checked = true;
5263 err = ufshcd_enable_auto_bkops(hba);
5266 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
5270 static int ufshcd_wb_ctrl(struct ufs_hba *hba, bool enable)
5274 enum query_opcode opcode;
5276 if (!ufshcd_is_wb_allowed(hba))
5279 if (!(enable ^ hba->wb_enabled))
5282 opcode = UPIU_QUERY_OPCODE_SET_FLAG;
5284 opcode = UPIU_QUERY_OPCODE_CLEAR_FLAG;
5286 index = ufshcd_wb_get_query_index(hba);
5287 ret = ufshcd_query_flag_retry(hba, opcode,
5288 QUERY_FLAG_IDN_WB_EN, index, NULL);
5290 dev_err(hba->dev, "%s write booster %s failed %d\n",
5291 __func__, enable ? "enable" : "disable", ret);
5295 hba->wb_enabled = enable;
5296 dev_dbg(hba->dev, "%s write booster %s %d\n",
5297 __func__, enable ? "enable" : "disable", ret);
5302 static int ufshcd_wb_toggle_flush_during_h8(struct ufs_hba *hba, bool set)
5308 val = UPIU_QUERY_OPCODE_SET_FLAG;
5310 val = UPIU_QUERY_OPCODE_CLEAR_FLAG;
5312 index = ufshcd_wb_get_query_index(hba);
5313 return ufshcd_query_flag_retry(hba, val,
5314 QUERY_FLAG_IDN_WB_BUFF_FLUSH_DURING_HIBERN8,
5318 static inline void ufshcd_wb_toggle_flush(struct ufs_hba *hba, bool enable)
5320 if (hba->quirks & UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL)
5324 ufshcd_wb_buf_flush_enable(hba);
5326 ufshcd_wb_buf_flush_disable(hba);
5330 static int ufshcd_wb_buf_flush_enable(struct ufs_hba *hba)
5335 if (!ufshcd_is_wb_allowed(hba) || hba->wb_buf_flush_enabled)
5338 index = ufshcd_wb_get_query_index(hba);
5339 ret = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
5340 QUERY_FLAG_IDN_WB_BUFF_FLUSH_EN,
5343 dev_err(hba->dev, "%s WB - buf flush enable failed %d\n",
5346 hba->wb_buf_flush_enabled = true;
5348 dev_dbg(hba->dev, "WB - Flush enabled: %d\n", ret);
5352 static int ufshcd_wb_buf_flush_disable(struct ufs_hba *hba)
5357 if (!ufshcd_is_wb_allowed(hba) || !hba->wb_buf_flush_enabled)
5360 index = ufshcd_wb_get_query_index(hba);
5361 ret = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
5362 QUERY_FLAG_IDN_WB_BUFF_FLUSH_EN,
5365 dev_warn(hba->dev, "%s: WB - buf flush disable failed %d\n",
5368 hba->wb_buf_flush_enabled = false;
5369 dev_dbg(hba->dev, "WB - Flush disabled: %d\n", ret);
5375 static bool ufshcd_wb_presrv_usrspc_keep_vcc_on(struct ufs_hba *hba,
5382 index = ufshcd_wb_get_query_index(hba);
5383 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
5384 QUERY_ATTR_IDN_CURR_WB_BUFF_SIZE,
5385 index, 0, &cur_buf);
5387 dev_err(hba->dev, "%s dCurWriteBoosterBufferSize read failed %d\n",
5393 dev_info(hba->dev, "dCurWBBuf: %d WB disabled until free-space is available\n",
5397 /* Let it continue to flush when available buffer exceeds threshold */
5398 if (avail_buf < hba->vps->wb_flush_threshold)
5404 static bool ufshcd_wb_need_flush(struct ufs_hba *hba)
5410 if (!ufshcd_is_wb_allowed(hba))
5413 * The ufs device needs the vcc to be ON to flush.
5414 * With user-space reduction enabled, it's enough to enable flush
5415 * by checking only the available buffer. The threshold
5416 * defined here is > 90% full.
5417 * With user-space preserved enabled, the current-buffer
5418 * should be checked too because the wb buffer size can reduce
5419 * when disk tends to be full. This info is provided by current
5420 * buffer (dCurrentWriteBoosterBufferSize). There's no point in
5421 * keeping vcc on when current buffer is empty.
5423 index = ufshcd_wb_get_query_index(hba);
5424 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
5425 QUERY_ATTR_IDN_AVAIL_WB_BUFF_SIZE,
5426 index, 0, &avail_buf);
5428 dev_warn(hba->dev, "%s dAvailableWriteBoosterBufferSize read failed %d\n",
5433 if (!hba->dev_info.b_presrv_uspc_en) {
5434 if (avail_buf <= UFS_WB_BUF_REMAIN_PERCENT(10))
5439 return ufshcd_wb_presrv_usrspc_keep_vcc_on(hba, avail_buf);
5442 static void ufshcd_rpm_dev_flush_recheck_work(struct work_struct *work)
5444 struct ufs_hba *hba = container_of(to_delayed_work(work),
5446 rpm_dev_flush_recheck_work);
5448 * To prevent unnecessary VCC power drain after device finishes
5449 * WriteBooster buffer flush or Auto BKOPs, force runtime resume
5450 * after a certain delay to recheck the threshold by next runtime
5453 pm_runtime_get_sync(hba->dev);
5454 pm_runtime_put_sync(hba->dev);
5458 * ufshcd_exception_event_handler - handle exceptions raised by device
5459 * @work: pointer to work data
5461 * Read bExceptionEventStatus attribute from the device and handle the
5462 * exception event accordingly.
5464 static void ufshcd_exception_event_handler(struct work_struct *work)
5466 struct ufs_hba *hba;
5469 hba = container_of(work, struct ufs_hba, eeh_work);
5471 pm_runtime_get_sync(hba->dev);
5472 ufshcd_scsi_block_requests(hba);
5473 err = ufshcd_get_ee_status(hba, &status);
5475 dev_err(hba->dev, "%s: failed to get exception status %d\n",
5480 status &= hba->ee_ctrl_mask;
5482 if (status & MASK_EE_URGENT_BKOPS)
5483 ufshcd_bkops_exception_event_handler(hba);
5486 ufshcd_scsi_unblock_requests(hba);
5488 * pm_runtime_get_noresume is called while scheduling
5489 * eeh_work to avoid suspend racing with exception work.
5490 * Hence decrement usage counter using pm_runtime_put_noidle
5491 * to allow suspend on completion of exception event handler.
5493 pm_runtime_put_noidle(hba->dev);
5494 pm_runtime_put(hba->dev);
5498 /* Complete requests that have door-bell cleared */
5499 static void ufshcd_complete_requests(struct ufs_hba *hba)
5501 ufshcd_transfer_req_compl(hba);
5502 ufshcd_tmc_handler(hba);
5506 * ufshcd_quirk_dl_nac_errors - This function checks if error handling is
5507 * to recover from the DL NAC errors or not.
5508 * @hba: per-adapter instance
5510 * Returns true if error handling is required, false otherwise
5512 static bool ufshcd_quirk_dl_nac_errors(struct ufs_hba *hba)
5514 unsigned long flags;
5515 bool err_handling = true;
5517 spin_lock_irqsave(hba->host->host_lock, flags);
5519 * UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS only workaround the
5520 * device fatal error and/or DL NAC & REPLAY timeout errors.
5522 if (hba->saved_err & (CONTROLLER_FATAL_ERROR | SYSTEM_BUS_FATAL_ERROR))
5525 if ((hba->saved_err & DEVICE_FATAL_ERROR) ||
5526 ((hba->saved_err & UIC_ERROR) &&
5527 (hba->saved_uic_err & UFSHCD_UIC_DL_TCx_REPLAY_ERROR)))
5530 if ((hba->saved_err & UIC_ERROR) &&
5531 (hba->saved_uic_err & UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)) {
5534 * wait for 50ms to see if we can get any other errors or not.
5536 spin_unlock_irqrestore(hba->host->host_lock, flags);
5538 spin_lock_irqsave(hba->host->host_lock, flags);
5541 * now check if we have got any other severe errors other than
5544 if ((hba->saved_err & INT_FATAL_ERRORS) ||
5545 ((hba->saved_err & UIC_ERROR) &&
5546 (hba->saved_uic_err & ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)))
5550 * As DL NAC is the only error received so far, send out NOP
5551 * command to confirm if link is still active or not.
5552 * - If we don't get any response then do error recovery.
5553 * - If we get response then clear the DL NAC error bit.
5556 spin_unlock_irqrestore(hba->host->host_lock, flags);
5557 err = ufshcd_verify_dev_init(hba);
5558 spin_lock_irqsave(hba->host->host_lock, flags);
5563 /* Link seems to be alive hence ignore the DL NAC errors */
5564 if (hba->saved_uic_err == UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)
5565 hba->saved_err &= ~UIC_ERROR;
5566 /* clear NAC error */
5567 hba->saved_uic_err &= ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
5568 if (!hba->saved_uic_err)
5569 err_handling = false;
5572 spin_unlock_irqrestore(hba->host->host_lock, flags);
5573 return err_handling;
5576 /* host lock must be held before calling this func */
5577 static inline bool ufshcd_is_saved_err_fatal(struct ufs_hba *hba)
5579 return (hba->saved_uic_err & UFSHCD_UIC_DL_PA_INIT_ERROR) ||
5580 (hba->saved_err & (INT_FATAL_ERRORS | UFSHCD_UIC_HIBERN8_MASK));
5583 /* host lock must be held before calling this func */
5584 static inline void ufshcd_schedule_eh_work(struct ufs_hba *hba)
5586 /* handle fatal errors only when link is not in error state */
5587 if (hba->ufshcd_state != UFSHCD_STATE_ERROR) {
5588 if (hba->force_reset || ufshcd_is_link_broken(hba) ||
5589 ufshcd_is_saved_err_fatal(hba))
5590 hba->ufshcd_state = UFSHCD_STATE_EH_SCHEDULED_FATAL;
5592 hba->ufshcd_state = UFSHCD_STATE_EH_SCHEDULED_NON_FATAL;
5593 queue_work(hba->eh_wq, &hba->eh_work);
5597 static void ufshcd_err_handling_prepare(struct ufs_hba *hba)
5599 pm_runtime_get_sync(hba->dev);
5600 if (pm_runtime_suspended(hba->dev)) {
5602 * Don't assume anything of pm_runtime_get_sync(), if
5603 * resume fails, irq and clocks can be OFF, and powers
5604 * can be OFF or in LPM.
5606 ufshcd_setup_hba_vreg(hba, true);
5607 ufshcd_enable_irq(hba);
5608 ufshcd_setup_vreg(hba, true);
5609 ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
5610 ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
5611 ufshcd_hold(hba, false);
5612 if (!ufshcd_is_clkgating_allowed(hba))
5613 ufshcd_setup_clocks(hba, true);
5614 ufshcd_release(hba);
5615 ufshcd_vops_resume(hba, UFS_RUNTIME_PM);
5617 ufshcd_hold(hba, false);
5618 if (hba->clk_scaling.is_allowed) {
5619 cancel_work_sync(&hba->clk_scaling.suspend_work);
5620 cancel_work_sync(&hba->clk_scaling.resume_work);
5621 ufshcd_suspend_clkscaling(hba);
5626 static void ufshcd_err_handling_unprepare(struct ufs_hba *hba)
5628 ufshcd_release(hba);
5629 if (hba->clk_scaling.is_allowed)
5630 ufshcd_resume_clkscaling(hba);
5631 pm_runtime_put(hba->dev);
5634 static inline bool ufshcd_err_handling_should_stop(struct ufs_hba *hba)
5636 return (hba->ufshcd_state == UFSHCD_STATE_ERROR ||
5637 (!(hba->saved_err || hba->saved_uic_err || hba->force_reset ||
5638 ufshcd_is_link_broken(hba))));
5642 static void ufshcd_recover_pm_error(struct ufs_hba *hba)
5644 struct Scsi_Host *shost = hba->host;
5645 struct scsi_device *sdev;
5646 struct request_queue *q;
5650 * Set RPM status of hba device to RPM_ACTIVE,
5651 * this also clears its runtime error.
5653 ret = pm_runtime_set_active(hba->dev);
5655 * If hba device had runtime error, we also need to resume those
5656 * scsi devices under hba in case any of them has failed to be
5657 * resumed due to hba runtime resume failure. This is to unblock
5658 * blk_queue_enter in case there are bios waiting inside it.
5661 shost_for_each_device(sdev, shost) {
5662 q = sdev->request_queue;
5663 if (q->dev && (q->rpm_status == RPM_SUSPENDED ||
5664 q->rpm_status == RPM_SUSPENDING))
5665 pm_request_resume(q->dev);
5670 static inline void ufshcd_recover_pm_error(struct ufs_hba *hba)
5675 static bool ufshcd_is_pwr_mode_restore_needed(struct ufs_hba *hba)
5677 struct ufs_pa_layer_attr *pwr_info = &hba->pwr_info;
5680 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_PWRMODE), &mode);
5682 if (pwr_info->pwr_rx != ((mode >> PWRMODE_RX_OFFSET) & PWRMODE_MASK))
5685 if (pwr_info->pwr_tx != (mode & PWRMODE_MASK))
5692 * ufshcd_err_handler - handle UFS errors that require s/w attention
5693 * @work: pointer to work structure
5695 static void ufshcd_err_handler(struct work_struct *work)
5697 struct ufs_hba *hba;
5698 unsigned long flags;
5699 bool err_xfer = false;
5700 bool err_tm = false;
5701 int err = 0, pmc_err;
5703 bool needs_reset = false, needs_restore = false;
5705 hba = container_of(work, struct ufs_hba, eh_work);
5707 spin_lock_irqsave(hba->host->host_lock, flags);
5708 if (ufshcd_err_handling_should_stop(hba)) {
5709 if (hba->ufshcd_state != UFSHCD_STATE_ERROR)
5710 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
5711 spin_unlock_irqrestore(hba->host->host_lock, flags);
5714 ufshcd_set_eh_in_progress(hba);
5715 spin_unlock_irqrestore(hba->host->host_lock, flags);
5716 ufshcd_err_handling_prepare(hba);
5717 spin_lock_irqsave(hba->host->host_lock, flags);
5718 ufshcd_scsi_block_requests(hba);
5720 * A full reset and restore might have happened after preparation
5721 * is finished, double check whether we should stop.
5723 if (ufshcd_err_handling_should_stop(hba)) {
5724 if (hba->ufshcd_state != UFSHCD_STATE_ERROR)
5725 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
5728 hba->ufshcd_state = UFSHCD_STATE_RESET;
5730 /* Complete requests that have door-bell cleared by h/w */
5731 ufshcd_complete_requests(hba);
5733 if (hba->dev_quirks & UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
5736 spin_unlock_irqrestore(hba->host->host_lock, flags);
5737 /* release the lock as ufshcd_quirk_dl_nac_errors() may sleep */
5738 ret = ufshcd_quirk_dl_nac_errors(hba);
5739 spin_lock_irqsave(hba->host->host_lock, flags);
5740 if (!ret && !hba->force_reset && ufshcd_is_link_active(hba))
5741 goto skip_err_handling;
5744 if (hba->force_reset || ufshcd_is_link_broken(hba) ||
5745 ufshcd_is_saved_err_fatal(hba) ||
5746 ((hba->saved_err & UIC_ERROR) &&
5747 (hba->saved_uic_err & (UFSHCD_UIC_DL_NAC_RECEIVED_ERROR |
5748 UFSHCD_UIC_DL_TCx_REPLAY_ERROR))))
5751 if ((hba->saved_err & (INT_FATAL_ERRORS | UFSHCD_UIC_HIBERN8_MASK)) ||
5752 (hba->saved_uic_err &&
5753 (hba->saved_uic_err != UFSHCD_UIC_PA_GENERIC_ERROR))) {
5754 bool pr_prdt = !!(hba->saved_err & SYSTEM_BUS_FATAL_ERROR);
5756 spin_unlock_irqrestore(hba->host->host_lock, flags);
5757 ufshcd_print_host_state(hba);
5758 ufshcd_print_pwr_info(hba);
5759 ufshcd_print_host_regs(hba);
5760 ufshcd_print_tmrs(hba, hba->outstanding_tasks);
5761 ufshcd_print_trs(hba, hba->outstanding_reqs, pr_prdt);
5762 spin_lock_irqsave(hba->host->host_lock, flags);
5766 * if host reset is required then skip clearing the pending
5767 * transfers forcefully because they will get cleared during
5768 * host reset and restore
5774 * If LINERESET was caught, UFS might have been put to PWM mode,
5775 * check if power mode restore is needed.
5777 if (hba->saved_uic_err & UFSHCD_UIC_PA_GENERIC_ERROR) {
5778 hba->saved_uic_err &= ~UFSHCD_UIC_PA_GENERIC_ERROR;
5779 if (!hba->saved_uic_err)
5780 hba->saved_err &= ~UIC_ERROR;
5781 spin_unlock_irqrestore(hba->host->host_lock, flags);
5782 if (ufshcd_is_pwr_mode_restore_needed(hba))
5783 needs_restore = true;
5784 spin_lock_irqsave(hba->host->host_lock, flags);
5785 if (!hba->saved_err && !needs_restore)
5786 goto skip_err_handling;
5789 hba->silence_err_logs = true;
5790 /* release lock as clear command might sleep */
5791 spin_unlock_irqrestore(hba->host->host_lock, flags);
5792 /* Clear pending transfer requests */
5793 for_each_set_bit(tag, &hba->outstanding_reqs, hba->nutrs) {
5794 if (ufshcd_try_to_abort_task(hba, tag)) {
5796 goto lock_skip_pending_xfer_clear;
5800 /* Clear pending task management requests */
5801 for_each_set_bit(tag, &hba->outstanding_tasks, hba->nutmrs) {
5802 if (ufshcd_clear_tm_cmd(hba, tag)) {
5804 goto lock_skip_pending_xfer_clear;
5808 lock_skip_pending_xfer_clear:
5809 spin_lock_irqsave(hba->host->host_lock, flags);
5811 /* Complete the requests that are cleared by s/w */
5812 ufshcd_complete_requests(hba);
5813 hba->silence_err_logs = false;
5815 if (err_xfer || err_tm) {
5821 * After all reqs and tasks are cleared from doorbell,
5822 * now it is safe to retore power mode.
5824 if (needs_restore) {
5825 spin_unlock_irqrestore(hba->host->host_lock, flags);
5827 * Hold the scaling lock just in case dev cmds
5828 * are sent via bsg and/or sysfs.
5830 down_write(&hba->clk_scaling_lock);
5831 hba->force_pmc = true;
5832 pmc_err = ufshcd_config_pwr_mode(hba, &(hba->pwr_info));
5835 dev_err(hba->dev, "%s: Failed to restore power mode, err = %d\n",
5838 hba->force_pmc = false;
5839 ufshcd_print_pwr_info(hba);
5840 up_write(&hba->clk_scaling_lock);
5841 spin_lock_irqsave(hba->host->host_lock, flags);
5845 /* Fatal errors need reset */
5847 unsigned long max_doorbells = (1UL << hba->nutrs) - 1;
5850 * ufshcd_reset_and_restore() does the link reinitialization
5851 * which will need atleast one empty doorbell slot to send the
5852 * device management commands (NOP and query commands).
5853 * If there is no slot empty at this moment then free up last
5856 if (hba->outstanding_reqs == max_doorbells)
5857 __ufshcd_transfer_req_compl(hba,
5858 (1UL << (hba->nutrs - 1)));
5860 hba->force_reset = false;
5861 spin_unlock_irqrestore(hba->host->host_lock, flags);
5862 err = ufshcd_reset_and_restore(hba);
5864 dev_err(hba->dev, "%s: reset and restore failed with err %d\n",
5867 ufshcd_recover_pm_error(hba);
5868 spin_lock_irqsave(hba->host->host_lock, flags);
5873 if (hba->ufshcd_state == UFSHCD_STATE_RESET)
5874 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
5875 if (hba->saved_err || hba->saved_uic_err)
5876 dev_err_ratelimited(hba->dev, "%s: exit: saved_err 0x%x saved_uic_err 0x%x",
5877 __func__, hba->saved_err, hba->saved_uic_err);
5881 ufshcd_clear_eh_in_progress(hba);
5882 spin_unlock_irqrestore(hba->host->host_lock, flags);
5883 ufshcd_scsi_unblock_requests(hba);
5884 ufshcd_err_handling_unprepare(hba);
5888 * ufshcd_update_uic_error - check and set fatal UIC error flags.
5889 * @hba: per-adapter instance
5892 * IRQ_HANDLED - If interrupt is valid
5893 * IRQ_NONE - If invalid interrupt
5895 static irqreturn_t ufshcd_update_uic_error(struct ufs_hba *hba)
5898 irqreturn_t retval = IRQ_NONE;
5900 /* PHY layer error */
5901 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER);
5902 if ((reg & UIC_PHY_ADAPTER_LAYER_ERROR) &&
5903 (reg & UIC_PHY_ADAPTER_LAYER_ERROR_CODE_MASK)) {
5904 ufshcd_update_reg_hist(&hba->ufs_stats.pa_err, reg);
5906 * To know whether this error is fatal or not, DB timeout
5907 * must be checked but this error is handled separately.
5909 if (reg & UIC_PHY_ADAPTER_LAYER_LANE_ERR_MASK)
5910 dev_dbg(hba->dev, "%s: UIC Lane error reported\n",
5913 /* Got a LINERESET indication. */
5914 if (reg & UIC_PHY_ADAPTER_LAYER_GENERIC_ERROR) {
5915 struct uic_command *cmd = NULL;
5917 hba->uic_error |= UFSHCD_UIC_PA_GENERIC_ERROR;
5918 if (hba->uic_async_done && hba->active_uic_cmd)
5919 cmd = hba->active_uic_cmd;
5921 * Ignore the LINERESET during power mode change
5922 * operation via DME_SET command.
5924 if (cmd && (cmd->command == UIC_CMD_DME_SET))
5925 hba->uic_error &= ~UFSHCD_UIC_PA_GENERIC_ERROR;
5927 retval |= IRQ_HANDLED;
5930 /* PA_INIT_ERROR is fatal and needs UIC reset */
5931 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
5932 if ((reg & UIC_DATA_LINK_LAYER_ERROR) &&
5933 (reg & UIC_DATA_LINK_LAYER_ERROR_CODE_MASK)) {
5934 ufshcd_update_reg_hist(&hba->ufs_stats.dl_err, reg);
5936 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
5937 hba->uic_error |= UFSHCD_UIC_DL_PA_INIT_ERROR;
5938 else if (hba->dev_quirks &
5939 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
5940 if (reg & UIC_DATA_LINK_LAYER_ERROR_NAC_RECEIVED)
5942 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
5943 else if (reg & UIC_DATA_LINK_LAYER_ERROR_TCx_REPLAY_TIMEOUT)
5944 hba->uic_error |= UFSHCD_UIC_DL_TCx_REPLAY_ERROR;
5946 retval |= IRQ_HANDLED;
5949 /* UIC NL/TL/DME errors needs software retry */
5950 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_NETWORK_LAYER);
5951 if ((reg & UIC_NETWORK_LAYER_ERROR) &&
5952 (reg & UIC_NETWORK_LAYER_ERROR_CODE_MASK)) {
5953 ufshcd_update_reg_hist(&hba->ufs_stats.nl_err, reg);
5954 hba->uic_error |= UFSHCD_UIC_NL_ERROR;
5955 retval |= IRQ_HANDLED;
5958 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_TRANSPORT_LAYER);
5959 if ((reg & UIC_TRANSPORT_LAYER_ERROR) &&
5960 (reg & UIC_TRANSPORT_LAYER_ERROR_CODE_MASK)) {
5961 ufshcd_update_reg_hist(&hba->ufs_stats.tl_err, reg);
5962 hba->uic_error |= UFSHCD_UIC_TL_ERROR;
5963 retval |= IRQ_HANDLED;
5966 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DME);
5967 if ((reg & UIC_DME_ERROR) &&
5968 (reg & UIC_DME_ERROR_CODE_MASK)) {
5969 ufshcd_update_reg_hist(&hba->ufs_stats.dme_err, reg);
5970 hba->uic_error |= UFSHCD_UIC_DME_ERROR;
5971 retval |= IRQ_HANDLED;
5974 dev_dbg(hba->dev, "%s: UIC error flags = 0x%08x\n",
5975 __func__, hba->uic_error);
5979 static bool ufshcd_is_auto_hibern8_error(struct ufs_hba *hba,
5982 if (!ufshcd_is_auto_hibern8_supported(hba) ||
5983 !ufshcd_is_auto_hibern8_enabled(hba))
5986 if (!(intr_mask & UFSHCD_UIC_HIBERN8_MASK))
5989 if (hba->active_uic_cmd &&
5990 (hba->active_uic_cmd->command == UIC_CMD_DME_HIBER_ENTER ||
5991 hba->active_uic_cmd->command == UIC_CMD_DME_HIBER_EXIT))
5998 * ufshcd_check_errors - Check for errors that need s/w attention
5999 * @hba: per-adapter instance
6002 * IRQ_HANDLED - If interrupt is valid
6003 * IRQ_NONE - If invalid interrupt
6005 static irqreturn_t ufshcd_check_errors(struct ufs_hba *hba)
6007 bool queue_eh_work = false;
6008 irqreturn_t retval = IRQ_NONE;
6010 if (hba->errors & INT_FATAL_ERRORS) {
6011 ufshcd_update_reg_hist(&hba->ufs_stats.fatal_err, hba->errors);
6012 queue_eh_work = true;
6015 if (hba->errors & UIC_ERROR) {
6017 retval = ufshcd_update_uic_error(hba);
6019 queue_eh_work = true;
6022 if (hba->errors & UFSHCD_UIC_HIBERN8_MASK) {
6024 "%s: Auto Hibern8 %s failed - status: 0x%08x, upmcrs: 0x%08x\n",
6025 __func__, (hba->errors & UIC_HIBERNATE_ENTER) ?
6027 hba->errors, ufshcd_get_upmcrs(hba));
6028 ufshcd_update_reg_hist(&hba->ufs_stats.auto_hibern8_err,
6030 ufshcd_set_link_broken(hba);
6031 queue_eh_work = true;
6034 if (queue_eh_work) {
6036 * update the transfer error masks to sticky bits, let's do this
6037 * irrespective of current ufshcd_state.
6039 hba->saved_err |= hba->errors;
6040 hba->saved_uic_err |= hba->uic_error;
6042 /* dump controller state before resetting */
6043 if ((hba->saved_err & (INT_FATAL_ERRORS)) ||
6044 (hba->saved_uic_err &&
6045 (hba->saved_uic_err != UFSHCD_UIC_PA_GENERIC_ERROR))) {
6046 dev_err(hba->dev, "%s: saved_err 0x%x saved_uic_err 0x%x\n",
6047 __func__, hba->saved_err,
6048 hba->saved_uic_err);
6049 ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE,
6051 ufshcd_print_pwr_info(hba);
6053 ufshcd_schedule_eh_work(hba);
6054 retval |= IRQ_HANDLED;
6057 * if (!queue_eh_work) -
6058 * Other errors are either non-fatal where host recovers
6059 * itself without s/w intervention or errors that will be
6060 * handled by the SCSI core layer.
6066 struct ufs_hba *hba;
6067 unsigned long pending;
6071 static bool ufshcd_compl_tm(struct request *req, void *priv, bool reserved)
6073 struct ctm_info *const ci = priv;
6074 struct completion *c;
6076 WARN_ON_ONCE(reserved);
6077 if (test_bit(req->tag, &ci->pending))
6080 c = req->end_io_data;
6087 * ufshcd_tmc_handler - handle task management function completion
6088 * @hba: per adapter instance
6091 * IRQ_HANDLED - If interrupt is valid
6092 * IRQ_NONE - If invalid interrupt
6094 static irqreturn_t ufshcd_tmc_handler(struct ufs_hba *hba)
6096 struct request_queue *q = hba->tmf_queue;
6097 struct ctm_info ci = {
6099 .pending = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL),
6102 blk_mq_tagset_busy_iter(q->tag_set, ufshcd_compl_tm, &ci);
6103 return ci.ncpl ? IRQ_HANDLED : IRQ_NONE;
6107 * ufshcd_sl_intr - Interrupt service routine
6108 * @hba: per adapter instance
6109 * @intr_status: contains interrupts generated by the controller
6112 * IRQ_HANDLED - If interrupt is valid
6113 * IRQ_NONE - If invalid interrupt
6115 static irqreturn_t ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
6117 irqreturn_t retval = IRQ_NONE;
6119 hba->errors = UFSHCD_ERROR_MASK & intr_status;
6121 if (ufshcd_is_auto_hibern8_error(hba, intr_status))
6122 hba->errors |= (UFSHCD_UIC_HIBERN8_MASK & intr_status);
6125 retval |= ufshcd_check_errors(hba);
6127 if (intr_status & UFSHCD_UIC_MASK)
6128 retval |= ufshcd_uic_cmd_compl(hba, intr_status);
6130 if (intr_status & UTP_TASK_REQ_COMPL)
6131 retval |= ufshcd_tmc_handler(hba);
6133 if (intr_status & UTP_TRANSFER_REQ_COMPL)
6134 retval |= ufshcd_transfer_req_compl(hba);
6140 * ufshcd_intr - Main interrupt service routine
6142 * @__hba: pointer to adapter instance
6145 * IRQ_HANDLED - If interrupt is valid
6146 * IRQ_NONE - If invalid interrupt
6148 static irqreturn_t ufshcd_intr(int irq, void *__hba)
6150 u32 intr_status, enabled_intr_status = 0;
6151 irqreturn_t retval = IRQ_NONE;
6152 struct ufs_hba *hba = __hba;
6153 int retries = hba->nutrs;
6155 spin_lock(hba->host->host_lock);
6156 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
6157 hba->ufs_stats.last_intr_status = intr_status;
6158 hba->ufs_stats.last_intr_ts = ktime_get();
6161 * There could be max of hba->nutrs reqs in flight and in worst case
6162 * if the reqs get finished 1 by 1 after the interrupt status is
6163 * read, make sure we handle them by checking the interrupt status
6164 * again in a loop until we process all of the reqs before returning.
6166 while (intr_status && retries--) {
6167 enabled_intr_status =
6168 intr_status & ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
6170 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
6171 if (enabled_intr_status)
6172 retval |= ufshcd_sl_intr(hba, enabled_intr_status);
6174 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
6177 if (enabled_intr_status && retval == IRQ_NONE) {
6178 dev_err(hba->dev, "%s: Unhandled interrupt 0x%08x\n",
6179 __func__, intr_status);
6180 ufshcd_dump_regs(hba, 0, UFSHCI_REG_SPACE_SIZE, "host_regs: ");
6183 spin_unlock(hba->host->host_lock);
6187 static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag)
6190 u32 mask = 1 << tag;
6191 unsigned long flags;
6193 if (!test_bit(tag, &hba->outstanding_tasks))
6196 spin_lock_irqsave(hba->host->host_lock, flags);
6197 ufshcd_utmrl_clear(hba, tag);
6198 spin_unlock_irqrestore(hba->host->host_lock, flags);
6200 /* poll for max. 1 sec to clear door bell register by h/w */
6201 err = ufshcd_wait_for_register(hba,
6202 REG_UTP_TASK_REQ_DOOR_BELL,
6203 mask, 0, 1000, 1000);
6208 static int __ufshcd_issue_tm_cmd(struct ufs_hba *hba,
6209 struct utp_task_req_desc *treq, u8 tm_function)
6211 struct request_queue *q = hba->tmf_queue;
6212 struct Scsi_Host *host = hba->host;
6213 DECLARE_COMPLETION_ONSTACK(wait);
6214 struct request *req;
6215 unsigned long flags;
6216 int free_slot, task_tag, err;
6219 * Get free slot, sleep if slots are unavailable.
6220 * Even though we use wait_event() which sleeps indefinitely,
6221 * the maximum wait time is bounded by %TM_CMD_TIMEOUT.
6223 req = blk_get_request(q, REQ_OP_DRV_OUT, BLK_MQ_REQ_RESERVED);
6224 req->end_io_data = &wait;
6225 free_slot = req->tag;
6226 WARN_ON_ONCE(free_slot < 0 || free_slot >= hba->nutmrs);
6227 ufshcd_hold(hba, false);
6229 spin_lock_irqsave(host->host_lock, flags);
6230 task_tag = hba->nutrs + free_slot;
6232 treq->req_header.dword_0 |= cpu_to_be32(task_tag);
6234 memcpy(hba->utmrdl_base_addr + free_slot, treq, sizeof(*treq));
6235 ufshcd_vops_setup_task_mgmt(hba, free_slot, tm_function);
6237 /* send command to the controller */
6238 __set_bit(free_slot, &hba->outstanding_tasks);
6240 /* Make sure descriptors are ready before ringing the task doorbell */
6243 ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
6244 /* Make sure that doorbell is committed immediately */
6247 spin_unlock_irqrestore(host->host_lock, flags);
6249 ufshcd_add_tm_upiu_trace(hba, task_tag, "tm_send");
6251 /* wait until the task management command is completed */
6252 err = wait_for_completion_io_timeout(&wait,
6253 msecs_to_jiffies(TM_CMD_TIMEOUT));
6256 * Make sure that ufshcd_compl_tm() does not trigger a
6259 req->end_io_data = NULL;
6260 ufshcd_add_tm_upiu_trace(hba, task_tag, "tm_complete_err");
6261 dev_err(hba->dev, "%s: task management cmd 0x%.2x timed-out\n",
6262 __func__, tm_function);
6263 if (ufshcd_clear_tm_cmd(hba, free_slot))
6264 dev_WARN(hba->dev, "%s: unable clear tm cmd (slot %d) after timeout\n",
6265 __func__, free_slot);
6269 memcpy(treq, hba->utmrdl_base_addr + free_slot, sizeof(*treq));
6271 ufshcd_add_tm_upiu_trace(hba, task_tag, "tm_complete");
6274 spin_lock_irqsave(hba->host->host_lock, flags);
6275 __clear_bit(free_slot, &hba->outstanding_tasks);
6276 spin_unlock_irqrestore(hba->host->host_lock, flags);
6278 blk_put_request(req);
6280 ufshcd_release(hba);
6285 * ufshcd_issue_tm_cmd - issues task management commands to controller
6286 * @hba: per adapter instance
6287 * @lun_id: LUN ID to which TM command is sent
6288 * @task_id: task ID to which the TM command is applicable
6289 * @tm_function: task management function opcode
6290 * @tm_response: task management service response return value
6292 * Returns non-zero value on error, zero on success.
6294 static int ufshcd_issue_tm_cmd(struct ufs_hba *hba, int lun_id, int task_id,
6295 u8 tm_function, u8 *tm_response)
6297 struct utp_task_req_desc treq = { { 0 }, };
6300 /* Configure task request descriptor */
6301 treq.header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
6302 treq.header.dword_2 = cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
6304 /* Configure task request UPIU */
6305 treq.req_header.dword_0 = cpu_to_be32(lun_id << 8) |
6306 cpu_to_be32(UPIU_TRANSACTION_TASK_REQ << 24);
6307 treq.req_header.dword_1 = cpu_to_be32(tm_function << 16);
6310 * The host shall provide the same value for LUN field in the basic
6311 * header and for Input Parameter.
6313 treq.input_param1 = cpu_to_be32(lun_id);
6314 treq.input_param2 = cpu_to_be32(task_id);
6316 err = __ufshcd_issue_tm_cmd(hba, &treq, tm_function);
6317 if (err == -ETIMEDOUT)
6320 ocs_value = le32_to_cpu(treq.header.dword_2) & MASK_OCS;
6321 if (ocs_value != OCS_SUCCESS)
6322 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n",
6323 __func__, ocs_value);
6324 else if (tm_response)
6325 *tm_response = be32_to_cpu(treq.output_param1) &
6326 MASK_TM_SERVICE_RESP;
6331 * ufshcd_issue_devman_upiu_cmd - API for sending "utrd" type requests
6332 * @hba: per-adapter instance
6333 * @req_upiu: upiu request
6334 * @rsp_upiu: upiu reply
6335 * @desc_buff: pointer to descriptor buffer, NULL if NA
6336 * @buff_len: descriptor size, 0 if NA
6337 * @cmd_type: specifies the type (NOP, Query...)
6338 * @desc_op: descriptor operation
6340 * Those type of requests uses UTP Transfer Request Descriptor - utrd.
6341 * Therefore, it "rides" the device management infrastructure: uses its tag and
6342 * tasks work queues.
6344 * Since there is only one available tag for device management commands,
6345 * the caller is expected to hold the hba->dev_cmd.lock mutex.
6347 static int ufshcd_issue_devman_upiu_cmd(struct ufs_hba *hba,
6348 struct utp_upiu_req *req_upiu,
6349 struct utp_upiu_req *rsp_upiu,
6350 u8 *desc_buff, int *buff_len,
6351 enum dev_cmd_type cmd_type,
6352 enum query_opcode desc_op)
6354 struct request_queue *q = hba->cmd_queue;
6355 struct request *req;
6356 struct ufshcd_lrb *lrbp;
6359 struct completion wait;
6360 unsigned long flags;
6363 down_read(&hba->clk_scaling_lock);
6365 req = blk_get_request(q, REQ_OP_DRV_OUT, 0);
6371 WARN_ON_ONCE(!ufshcd_valid_tag(hba, tag));
6373 init_completion(&wait);
6374 lrbp = &hba->lrb[tag];
6378 lrbp->sense_bufflen = 0;
6379 lrbp->sense_buffer = NULL;
6380 lrbp->task_tag = tag;
6382 lrbp->intr_cmd = true;
6383 ufshcd_prepare_lrbp_crypto(NULL, lrbp);
6384 hba->dev_cmd.type = cmd_type;
6386 switch (hba->ufs_version) {
6387 case UFSHCI_VERSION_10:
6388 case UFSHCI_VERSION_11:
6389 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
6392 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
6396 /* update the task tag in the request upiu */
6397 req_upiu->header.dword_0 |= cpu_to_be32(tag);
6399 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
6401 /* just copy the upiu request as it is */
6402 memcpy(lrbp->ucd_req_ptr, req_upiu, sizeof(*lrbp->ucd_req_ptr));
6403 if (desc_buff && desc_op == UPIU_QUERY_OPCODE_WRITE_DESC) {
6404 /* The Data Segment Area is optional depending upon the query
6405 * function value. for WRITE DESCRIPTOR, the data segment
6406 * follows right after the tsf.
6408 memcpy(lrbp->ucd_req_ptr + 1, desc_buff, *buff_len);
6412 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
6414 hba->dev_cmd.complete = &wait;
6416 /* Make sure descriptors are ready before ringing the doorbell */
6418 spin_lock_irqsave(hba->host->host_lock, flags);
6419 ufshcd_send_command(hba, tag);
6420 spin_unlock_irqrestore(hba->host->host_lock, flags);
6423 * ignore the returning value here - ufshcd_check_query_response is
6424 * bound to fail since dev_cmd.query and dev_cmd.type were left empty.
6425 * read the response directly ignoring all errors.
6427 ufshcd_wait_for_dev_cmd(hba, lrbp, QUERY_REQ_TIMEOUT);
6429 /* just copy the upiu response as it is */
6430 memcpy(rsp_upiu, lrbp->ucd_rsp_ptr, sizeof(*rsp_upiu));
6431 if (desc_buff && desc_op == UPIU_QUERY_OPCODE_READ_DESC) {
6432 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr + sizeof(*rsp_upiu);
6433 u16 resp_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
6434 MASK_QUERY_DATA_SEG_LEN;
6436 if (*buff_len >= resp_len) {
6437 memcpy(desc_buff, descp, resp_len);
6438 *buff_len = resp_len;
6441 "%s: rsp size %d is bigger than buffer size %d",
6442 __func__, resp_len, *buff_len);
6448 blk_put_request(req);
6450 up_read(&hba->clk_scaling_lock);
6455 * ufshcd_exec_raw_upiu_cmd - API function for sending raw upiu commands
6456 * @hba: per-adapter instance
6457 * @req_upiu: upiu request
6458 * @rsp_upiu: upiu reply - only 8 DW as we do not support scsi commands
6459 * @msgcode: message code, one of UPIU Transaction Codes Initiator to Target
6460 * @desc_buff: pointer to descriptor buffer, NULL if NA
6461 * @buff_len: descriptor size, 0 if NA
6462 * @desc_op: descriptor operation
6464 * Supports UTP Transfer requests (nop and query), and UTP Task
6465 * Management requests.
6466 * It is up to the caller to fill the upiu conent properly, as it will
6467 * be copied without any further input validations.
6469 int ufshcd_exec_raw_upiu_cmd(struct ufs_hba *hba,
6470 struct utp_upiu_req *req_upiu,
6471 struct utp_upiu_req *rsp_upiu,
6473 u8 *desc_buff, int *buff_len,
6474 enum query_opcode desc_op)
6477 enum dev_cmd_type cmd_type = DEV_CMD_TYPE_QUERY;
6478 struct utp_task_req_desc treq = { { 0 }, };
6480 u8 tm_f = be32_to_cpu(req_upiu->header.dword_1) >> 16 & MASK_TM_FUNC;
6483 case UPIU_TRANSACTION_NOP_OUT:
6484 cmd_type = DEV_CMD_TYPE_NOP;
6486 case UPIU_TRANSACTION_QUERY_REQ:
6487 ufshcd_hold(hba, false);
6488 mutex_lock(&hba->dev_cmd.lock);
6489 err = ufshcd_issue_devman_upiu_cmd(hba, req_upiu, rsp_upiu,
6490 desc_buff, buff_len,
6492 mutex_unlock(&hba->dev_cmd.lock);
6493 ufshcd_release(hba);
6496 case UPIU_TRANSACTION_TASK_REQ:
6497 treq.header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
6498 treq.header.dword_2 = cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
6500 memcpy(&treq.req_header, req_upiu, sizeof(*req_upiu));
6502 err = __ufshcd_issue_tm_cmd(hba, &treq, tm_f);
6503 if (err == -ETIMEDOUT)
6506 ocs_value = le32_to_cpu(treq.header.dword_2) & MASK_OCS;
6507 if (ocs_value != OCS_SUCCESS) {
6508 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n", __func__,
6513 memcpy(rsp_upiu, &treq.rsp_header, sizeof(*rsp_upiu));
6526 * ufshcd_eh_device_reset_handler - device reset handler registered to
6528 * @cmd: SCSI command pointer
6530 * Returns SUCCESS/FAILED
6532 static int ufshcd_eh_device_reset_handler(struct scsi_cmnd *cmd)
6534 struct Scsi_Host *host;
6535 struct ufs_hba *hba;
6540 struct ufshcd_lrb *lrbp;
6541 unsigned long flags;
6543 host = cmd->device->host;
6544 hba = shost_priv(host);
6545 tag = cmd->request->tag;
6547 lrbp = &hba->lrb[tag];
6548 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, 0, UFS_LOGICAL_RESET, &resp);
6549 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
6555 /* clear the commands that were pending for corresponding LUN */
6556 for_each_set_bit(pos, &hba->outstanding_reqs, hba->nutrs) {
6557 if (hba->lrb[pos].lun == lrbp->lun) {
6558 err = ufshcd_clear_cmd(hba, pos);
6563 spin_lock_irqsave(host->host_lock, flags);
6564 ufshcd_transfer_req_compl(hba);
6565 spin_unlock_irqrestore(host->host_lock, flags);
6568 hba->req_abort_count = 0;
6569 ufshcd_update_reg_hist(&hba->ufs_stats.dev_reset, (u32)err);
6573 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
6579 static void ufshcd_set_req_abort_skip(struct ufs_hba *hba, unsigned long bitmap)
6581 struct ufshcd_lrb *lrbp;
6584 for_each_set_bit(tag, &bitmap, hba->nutrs) {
6585 lrbp = &hba->lrb[tag];
6586 lrbp->req_abort_skip = true;
6591 * ufshcd_try_to_abort_task - abort a specific task
6592 * @cmd: SCSI command pointer
6594 * Abort the pending command in device by sending UFS_ABORT_TASK task management
6595 * command, and in host controller by clearing the door-bell register. There can
6596 * be race between controller sending the command to the device while abort is
6597 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
6598 * really issued and then try to abort it.
6600 * Returns zero on success, non-zero on failure
6602 static int ufshcd_try_to_abort_task(struct ufs_hba *hba, int tag)
6604 struct ufshcd_lrb *lrbp = &hba->lrb[tag];
6610 for (poll_cnt = 100; poll_cnt; poll_cnt--) {
6611 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
6612 UFS_QUERY_TASK, &resp);
6613 if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED) {
6614 /* cmd pending in the device */
6615 dev_err(hba->dev, "%s: cmd pending in the device. tag = %d\n",
6618 } else if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
6620 * cmd not pending in the device, check if it is
6623 dev_err(hba->dev, "%s: cmd at tag %d not pending in the device.\n",
6625 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
6626 if (reg & (1 << tag)) {
6627 /* sleep for max. 200us to stabilize */
6628 usleep_range(100, 200);
6631 /* command completed already */
6632 dev_err(hba->dev, "%s: cmd at tag %d successfully cleared from DB.\n",
6637 "%s: no response from device. tag = %d, err %d\n",
6638 __func__, tag, err);
6640 err = resp; /* service response error */
6650 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
6651 UFS_ABORT_TASK, &resp);
6652 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
6654 err = resp; /* service response error */
6655 dev_err(hba->dev, "%s: issued. tag = %d, err %d\n",
6656 __func__, tag, err);
6661 err = ufshcd_clear_cmd(hba, tag);
6663 dev_err(hba->dev, "%s: Failed clearing cmd at tag %d, err %d\n",
6664 __func__, tag, err);
6671 * ufshcd_abort - scsi host template eh_abort_handler callback
6672 * @cmd: SCSI command pointer
6674 * Returns SUCCESS/FAILED
6676 static int ufshcd_abort(struct scsi_cmnd *cmd)
6678 struct Scsi_Host *host;
6679 struct ufs_hba *hba;
6680 unsigned long flags;
6683 struct ufshcd_lrb *lrbp;
6686 host = cmd->device->host;
6687 hba = shost_priv(host);
6688 tag = cmd->request->tag;
6689 lrbp = &hba->lrb[tag];
6690 if (!ufshcd_valid_tag(hba, tag)) {
6692 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
6693 __func__, tag, cmd, cmd->request);
6698 * Task abort to the device W-LUN is illegal. When this command
6699 * will fail, due to spec violation, scsi err handling next step
6700 * will be to send LU reset which, again, is a spec violation.
6701 * To avoid these unnecessary/illegal step we skip to the last error
6702 * handling stage: reset and restore.
6704 if (lrbp->lun == UFS_UPIU_UFS_DEVICE_WLUN)
6705 return ufshcd_eh_host_reset_handler(cmd);
6707 ufshcd_hold(hba, false);
6708 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
6709 /* If command is already aborted/completed, return SUCCESS */
6710 if (!(test_bit(tag, &hba->outstanding_reqs))) {
6712 "%s: cmd at tag %d already completed, outstanding=0x%lx, doorbell=0x%x\n",
6713 __func__, tag, hba->outstanding_reqs, reg);
6717 /* Print Transfer Request of aborted task */
6718 dev_info(hba->dev, "%s: Device abort task at tag %d\n", __func__, tag);
6721 * Print detailed info about aborted request.
6722 * As more than one request might get aborted at the same time,
6723 * print full information only for the first aborted request in order
6724 * to reduce repeated printouts. For other aborted requests only print
6727 scsi_print_command(hba->lrb[tag].cmd);
6728 if (!hba->req_abort_count) {
6729 ufshcd_update_reg_hist(&hba->ufs_stats.task_abort, 0);
6730 ufshcd_print_host_regs(hba);
6731 ufshcd_print_host_state(hba);
6732 ufshcd_print_pwr_info(hba);
6733 ufshcd_print_trs(hba, 1 << tag, true);
6735 ufshcd_print_trs(hba, 1 << tag, false);
6737 hba->req_abort_count++;
6739 if (!(reg & (1 << tag))) {
6741 "%s: cmd was completed, but without a notifying intr, tag = %d",
6746 /* Skip task abort in case previous aborts failed and report failure */
6747 if (lrbp->req_abort_skip)
6750 err = ufshcd_try_to_abort_task(hba, tag);
6754 spin_lock_irqsave(host->host_lock, flags);
6755 __ufshcd_transfer_req_compl(hba, (1UL << tag));
6756 spin_unlock_irqrestore(host->host_lock, flags);
6760 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
6761 ufshcd_set_req_abort_skip(hba, hba->outstanding_reqs);
6766 * This ufshcd_release() corresponds to the original scsi cmd that got
6767 * aborted here (as we won't get any IRQ for it).
6769 ufshcd_release(hba);
6774 * ufshcd_host_reset_and_restore - reset and restore host controller
6775 * @hba: per-adapter instance
6777 * Note that host controller reset may issue DME_RESET to
6778 * local and remote (device) Uni-Pro stack and the attributes
6779 * are reset to default state.
6781 * Returns zero on success, non-zero on failure
6783 static int ufshcd_host_reset_and_restore(struct ufs_hba *hba)
6786 unsigned long flags;
6789 * Stop the host controller and complete the requests
6792 ufshcd_hba_stop(hba);
6794 spin_lock_irqsave(hba->host->host_lock, flags);
6795 hba->silence_err_logs = true;
6796 ufshcd_complete_requests(hba);
6797 hba->silence_err_logs = false;
6798 spin_unlock_irqrestore(hba->host->host_lock, flags);
6800 /* scale up clocks to max frequency before full reinitialization */
6801 ufshcd_set_clk_freq(hba, true);
6803 err = ufshcd_hba_enable(hba);
6807 /* Establish the link again and restore the device */
6808 err = ufshcd_probe_hba(hba, false);
6812 dev_err(hba->dev, "%s: Host init failed %d\n", __func__, err);
6813 ufshcd_update_reg_hist(&hba->ufs_stats.host_reset, (u32)err);
6818 * ufshcd_reset_and_restore - reset and re-initialize host/device
6819 * @hba: per-adapter instance
6821 * Reset and recover device, host and re-establish link. This
6822 * is helpful to recover the communication in fatal error conditions.
6824 * Returns zero on success, non-zero on failure
6826 static int ufshcd_reset_and_restore(struct ufs_hba *hba)
6831 unsigned long flags;
6832 int retries = MAX_HOST_RESET_RETRIES;
6835 * This is a fresh start, cache and clear saved error first,
6836 * in case new error generated during reset and restore.
6838 spin_lock_irqsave(hba->host->host_lock, flags);
6839 saved_err = hba->saved_err;
6840 saved_uic_err = hba->saved_uic_err;
6842 hba->saved_uic_err = 0;
6843 spin_unlock_irqrestore(hba->host->host_lock, flags);
6846 /* Reset the attached device */
6847 ufshcd_vops_device_reset(hba);
6849 err = ufshcd_host_reset_and_restore(hba);
6850 } while (err && --retries);
6852 spin_lock_irqsave(hba->host->host_lock, flags);
6854 * Inform scsi mid-layer that we did reset and allow to handle
6855 * Unit Attention properly.
6857 scsi_report_bus_reset(hba->host, 0);
6859 hba->saved_err |= saved_err;
6860 hba->saved_uic_err |= saved_uic_err;
6862 spin_unlock_irqrestore(hba->host->host_lock, flags);
6868 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
6869 * @cmd: SCSI command pointer
6871 * Returns SUCCESS/FAILED
6873 static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd)
6876 unsigned long flags;
6877 struct ufs_hba *hba;
6879 hba = shost_priv(cmd->device->host);
6881 spin_lock_irqsave(hba->host->host_lock, flags);
6882 hba->force_reset = true;
6883 ufshcd_schedule_eh_work(hba);
6884 dev_err(hba->dev, "%s: reset in progress - 1\n", __func__);
6885 spin_unlock_irqrestore(hba->host->host_lock, flags);
6887 flush_work(&hba->eh_work);
6889 spin_lock_irqsave(hba->host->host_lock, flags);
6890 if (hba->ufshcd_state == UFSHCD_STATE_ERROR)
6892 spin_unlock_irqrestore(hba->host->host_lock, flags);
6898 * ufshcd_get_max_icc_level - calculate the ICC level
6899 * @sup_curr_uA: max. current supported by the regulator
6900 * @start_scan: row at the desc table to start scan from
6901 * @buff: power descriptor buffer
6903 * Returns calculated max ICC level for specific regulator
6905 static u32 ufshcd_get_max_icc_level(int sup_curr_uA, u32 start_scan, char *buff)
6912 for (i = start_scan; i >= 0; i--) {
6913 data = be16_to_cpup((__be16 *)&buff[2 * i]);
6914 unit = (data & ATTR_ICC_LVL_UNIT_MASK) >>
6915 ATTR_ICC_LVL_UNIT_OFFSET;
6916 curr_uA = data & ATTR_ICC_LVL_VALUE_MASK;
6918 case UFSHCD_NANO_AMP:
6919 curr_uA = curr_uA / 1000;
6921 case UFSHCD_MILI_AMP:
6922 curr_uA = curr_uA * 1000;
6925 curr_uA = curr_uA * 1000 * 1000;
6927 case UFSHCD_MICRO_AMP:
6931 if (sup_curr_uA >= curr_uA)
6936 pr_err("%s: Couldn't find valid icc_level = %d", __func__, i);
6943 * ufshcd_calc_icc_level - calculate the max ICC level
6944 * In case regulators are not initialized we'll return 0
6945 * @hba: per-adapter instance
6946 * @desc_buf: power descriptor buffer to extract ICC levels from.
6947 * @len: length of desc_buff
6949 * Returns calculated ICC level
6951 static u32 ufshcd_find_max_sup_active_icc_level(struct ufs_hba *hba,
6952 u8 *desc_buf, int len)
6956 if (!hba->vreg_info.vcc || !hba->vreg_info.vccq ||
6957 !hba->vreg_info.vccq2) {
6959 "%s: Regulator capability was not set, actvIccLevel=%d",
6960 __func__, icc_level);
6964 if (hba->vreg_info.vcc && hba->vreg_info.vcc->max_uA)
6965 icc_level = ufshcd_get_max_icc_level(
6966 hba->vreg_info.vcc->max_uA,
6967 POWER_DESC_MAX_ACTV_ICC_LVLS - 1,
6968 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCC_0]);
6970 if (hba->vreg_info.vccq && hba->vreg_info.vccq->max_uA)
6971 icc_level = ufshcd_get_max_icc_level(
6972 hba->vreg_info.vccq->max_uA,
6974 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ_0]);
6976 if (hba->vreg_info.vccq2 && hba->vreg_info.vccq2->max_uA)
6977 icc_level = ufshcd_get_max_icc_level(
6978 hba->vreg_info.vccq2->max_uA,
6980 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ2_0]);
6985 static void ufshcd_set_active_icc_lvl(struct ufs_hba *hba)
6988 int buff_len = hba->desc_size[QUERY_DESC_IDN_POWER];
6992 desc_buf = kmalloc(buff_len, GFP_KERNEL);
6996 ret = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_POWER, 0, 0,
6997 desc_buf, buff_len);
7000 "%s: Failed reading power descriptor.len = %d ret = %d",
7001 __func__, buff_len, ret);
7005 icc_level = ufshcd_find_max_sup_active_icc_level(hba, desc_buf,
7007 dev_dbg(hba->dev, "%s: setting icc_level 0x%x", __func__, icc_level);
7009 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
7010 QUERY_ATTR_IDN_ACTIVE_ICC_LVL, 0, 0, &icc_level);
7014 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
7015 __func__, icc_level, ret);
7021 static inline void ufshcd_blk_pm_runtime_init(struct scsi_device *sdev)
7023 scsi_autopm_get_device(sdev);
7024 blk_pm_runtime_init(sdev->request_queue, &sdev->sdev_gendev);
7025 if (sdev->rpm_autosuspend)
7026 pm_runtime_set_autosuspend_delay(&sdev->sdev_gendev,
7027 RPM_AUTOSUSPEND_DELAY_MS);
7028 scsi_autopm_put_device(sdev);
7032 * ufshcd_scsi_add_wlus - Adds required W-LUs
7033 * @hba: per-adapter instance
7035 * UFS device specification requires the UFS devices to support 4 well known
7037 * "REPORT_LUNS" (address: 01h)
7038 * "UFS Device" (address: 50h)
7039 * "RPMB" (address: 44h)
7040 * "BOOT" (address: 30h)
7041 * UFS device's power management needs to be controlled by "POWER CONDITION"
7042 * field of SSU (START STOP UNIT) command. But this "power condition" field
7043 * will take effect only when its sent to "UFS device" well known logical unit
7044 * hence we require the scsi_device instance to represent this logical unit in
7045 * order for the UFS host driver to send the SSU command for power management.
7047 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
7048 * Block) LU so user space process can control this LU. User space may also
7049 * want to have access to BOOT LU.
7051 * This function adds scsi device instances for each of all well known LUs
7052 * (except "REPORT LUNS" LU).
7054 * Returns zero on success (all required W-LUs are added successfully),
7055 * non-zero error value on failure (if failed to add any of the required W-LU).
7057 static int ufshcd_scsi_add_wlus(struct ufs_hba *hba)
7060 struct scsi_device *sdev_rpmb;
7061 struct scsi_device *sdev_boot;
7063 hba->sdev_ufs_device = __scsi_add_device(hba->host, 0, 0,
7064 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN), NULL);
7065 if (IS_ERR(hba->sdev_ufs_device)) {
7066 ret = PTR_ERR(hba->sdev_ufs_device);
7067 hba->sdev_ufs_device = NULL;
7070 ufshcd_blk_pm_runtime_init(hba->sdev_ufs_device);
7071 scsi_device_put(hba->sdev_ufs_device);
7073 sdev_rpmb = __scsi_add_device(hba->host, 0, 0,
7074 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN), NULL);
7075 if (IS_ERR(sdev_rpmb)) {
7076 ret = PTR_ERR(sdev_rpmb);
7077 goto remove_sdev_ufs_device;
7079 ufshcd_blk_pm_runtime_init(sdev_rpmb);
7080 scsi_device_put(sdev_rpmb);
7082 sdev_boot = __scsi_add_device(hba->host, 0, 0,
7083 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN), NULL);
7084 if (IS_ERR(sdev_boot)) {
7085 dev_err(hba->dev, "%s: BOOT WLUN not found\n", __func__);
7087 ufshcd_blk_pm_runtime_init(sdev_boot);
7088 scsi_device_put(sdev_boot);
7092 remove_sdev_ufs_device:
7093 scsi_remove_device(hba->sdev_ufs_device);
7098 static void ufshcd_wb_probe(struct ufs_hba *hba, u8 *desc_buf)
7100 struct ufs_dev_info *dev_info = &hba->dev_info;
7102 u32 d_lu_wb_buf_alloc;
7104 if (!ufshcd_is_wb_allowed(hba))
7107 * Probe WB only for UFS-2.2 and UFS-3.1 (and later) devices or
7108 * UFS devices with quirk UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES
7111 if (!(dev_info->wspecversion >= 0x310 ||
7112 dev_info->wspecversion == 0x220 ||
7113 (hba->dev_quirks & UFS_DEVICE_QUIRK_SUPPORT_EXTENDED_FEATURES)))
7116 if (hba->desc_size[QUERY_DESC_IDN_DEVICE] <
7117 DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP + 4)
7120 dev_info->d_ext_ufs_feature_sup =
7121 get_unaligned_be32(desc_buf +
7122 DEVICE_DESC_PARAM_EXT_UFS_FEATURE_SUP);
7124 if (!(dev_info->d_ext_ufs_feature_sup & UFS_DEV_WRITE_BOOSTER_SUP))
7128 * WB may be supported but not configured while provisioning.
7129 * The spec says, in dedicated wb buffer mode,
7130 * a max of 1 lun would have wb buffer configured.
7131 * Now only shared buffer mode is supported.
7133 dev_info->b_wb_buffer_type =
7134 desc_buf[DEVICE_DESC_PARAM_WB_TYPE];
7136 dev_info->b_presrv_uspc_en =
7137 desc_buf[DEVICE_DESC_PARAM_WB_PRESRV_USRSPC_EN];
7139 if (dev_info->b_wb_buffer_type == WB_BUF_MODE_SHARED) {
7140 dev_info->d_wb_alloc_units =
7141 get_unaligned_be32(desc_buf +
7142 DEVICE_DESC_PARAM_WB_SHARED_ALLOC_UNITS);
7143 if (!dev_info->d_wb_alloc_units)
7146 for (lun = 0; lun < UFS_UPIU_MAX_WB_LUN_ID; lun++) {
7147 d_lu_wb_buf_alloc = 0;
7148 ufshcd_read_unit_desc_param(hba,
7150 UNIT_DESC_PARAM_WB_BUF_ALLOC_UNITS,
7151 (u8 *)&d_lu_wb_buf_alloc,
7152 sizeof(d_lu_wb_buf_alloc));
7153 if (d_lu_wb_buf_alloc) {
7154 dev_info->wb_dedicated_lu = lun;
7159 if (!d_lu_wb_buf_alloc)
7165 hba->caps &= ~UFSHCD_CAP_WB_EN;
7168 void ufshcd_fixup_dev_quirks(struct ufs_hba *hba, struct ufs_dev_fix *fixups)
7170 struct ufs_dev_fix *f;
7171 struct ufs_dev_info *dev_info = &hba->dev_info;
7176 for (f = fixups; f->quirk; f++) {
7177 if ((f->wmanufacturerid == dev_info->wmanufacturerid ||
7178 f->wmanufacturerid == UFS_ANY_VENDOR) &&
7179 ((dev_info->model &&
7180 STR_PRFX_EQUAL(f->model, dev_info->model)) ||
7181 !strcmp(f->model, UFS_ANY_MODEL)))
7182 hba->dev_quirks |= f->quirk;
7185 EXPORT_SYMBOL_GPL(ufshcd_fixup_dev_quirks);
7187 static void ufs_fixup_device_setup(struct ufs_hba *hba)
7189 /* fix by general quirk table */
7190 ufshcd_fixup_dev_quirks(hba, ufs_fixups);
7192 /* allow vendors to fix quirks */
7193 ufshcd_vops_fixup_dev_quirks(hba);
7196 static int ufs_get_device_desc(struct ufs_hba *hba)
7201 struct ufs_dev_info *dev_info = &hba->dev_info;
7203 desc_buf = kmalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
7209 err = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_DEVICE, 0, 0, desc_buf,
7210 hba->desc_size[QUERY_DESC_IDN_DEVICE]);
7212 dev_err(hba->dev, "%s: Failed reading Device Desc. err = %d\n",
7218 * getting vendor (manufacturerID) and Bank Index in big endian
7221 dev_info->wmanufacturerid = desc_buf[DEVICE_DESC_PARAM_MANF_ID] << 8 |
7222 desc_buf[DEVICE_DESC_PARAM_MANF_ID + 1];
7224 /* getting Specification Version in big endian format */
7225 dev_info->wspecversion = desc_buf[DEVICE_DESC_PARAM_SPEC_VER] << 8 |
7226 desc_buf[DEVICE_DESC_PARAM_SPEC_VER + 1];
7228 model_index = desc_buf[DEVICE_DESC_PARAM_PRDCT_NAME];
7230 err = ufshcd_read_string_desc(hba, model_index,
7231 &dev_info->model, SD_ASCII_STD);
7233 dev_err(hba->dev, "%s: Failed reading Product Name. err = %d\n",
7238 ufs_fixup_device_setup(hba);
7240 ufshcd_wb_probe(hba, desc_buf);
7243 * ufshcd_read_string_desc returns size of the string
7244 * reset the error value
7253 static void ufs_put_device_desc(struct ufs_hba *hba)
7255 struct ufs_dev_info *dev_info = &hba->dev_info;
7257 kfree(dev_info->model);
7258 dev_info->model = NULL;
7262 * ufshcd_tune_pa_tactivate - Tunes PA_TActivate of local UniPro
7263 * @hba: per-adapter instance
7265 * PA_TActivate parameter can be tuned manually if UniPro version is less than
7266 * 1.61. PA_TActivate needs to be greater than or equal to peerM-PHY's
7267 * RX_MIN_ACTIVATETIME_CAPABILITY attribute. This optimal value can help reduce
7268 * the hibern8 exit latency.
7270 * Returns zero on success, non-zero error value on failure.
7272 static int ufshcd_tune_pa_tactivate(struct ufs_hba *hba)
7275 u32 peer_rx_min_activatetime = 0, tuned_pa_tactivate;
7277 ret = ufshcd_dme_peer_get(hba,
7279 RX_MIN_ACTIVATETIME_CAPABILITY,
7280 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
7281 &peer_rx_min_activatetime);
7285 /* make sure proper unit conversion is applied */
7286 tuned_pa_tactivate =
7287 ((peer_rx_min_activatetime * RX_MIN_ACTIVATETIME_UNIT_US)
7288 / PA_TACTIVATE_TIME_UNIT_US);
7289 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
7290 tuned_pa_tactivate);
7297 * ufshcd_tune_pa_hibern8time - Tunes PA_Hibern8Time of local UniPro
7298 * @hba: per-adapter instance
7300 * PA_Hibern8Time parameter can be tuned manually if UniPro version is less than
7301 * 1.61. PA_Hibern8Time needs to be maximum of local M-PHY's
7302 * TX_HIBERN8TIME_CAPABILITY & peer M-PHY's RX_HIBERN8TIME_CAPABILITY.
7303 * This optimal value can help reduce the hibern8 exit latency.
7305 * Returns zero on success, non-zero error value on failure.
7307 static int ufshcd_tune_pa_hibern8time(struct ufs_hba *hba)
7310 u32 local_tx_hibern8_time_cap = 0, peer_rx_hibern8_time_cap = 0;
7311 u32 max_hibern8_time, tuned_pa_hibern8time;
7313 ret = ufshcd_dme_get(hba,
7314 UIC_ARG_MIB_SEL(TX_HIBERN8TIME_CAPABILITY,
7315 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(0)),
7316 &local_tx_hibern8_time_cap);
7320 ret = ufshcd_dme_peer_get(hba,
7321 UIC_ARG_MIB_SEL(RX_HIBERN8TIME_CAPABILITY,
7322 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
7323 &peer_rx_hibern8_time_cap);
7327 max_hibern8_time = max(local_tx_hibern8_time_cap,
7328 peer_rx_hibern8_time_cap);
7329 /* make sure proper unit conversion is applied */
7330 tuned_pa_hibern8time = ((max_hibern8_time * HIBERN8TIME_UNIT_US)
7331 / PA_HIBERN8_TIME_UNIT_US);
7332 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME),
7333 tuned_pa_hibern8time);
7339 * ufshcd_quirk_tune_host_pa_tactivate - Ensures that host PA_TACTIVATE is
7340 * less than device PA_TACTIVATE time.
7341 * @hba: per-adapter instance
7343 * Some UFS devices require host PA_TACTIVATE to be lower than device
7344 * PA_TACTIVATE, we need to enable UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE quirk
7347 * Returns zero on success, non-zero error value on failure.
7349 static int ufshcd_quirk_tune_host_pa_tactivate(struct ufs_hba *hba)
7352 u32 granularity, peer_granularity;
7353 u32 pa_tactivate, peer_pa_tactivate;
7354 u32 pa_tactivate_us, peer_pa_tactivate_us;
7355 u8 gran_to_us_table[] = {1, 4, 8, 16, 32, 100};
7357 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
7362 ret = ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
7367 if ((granularity < PA_GRANULARITY_MIN_VAL) ||
7368 (granularity > PA_GRANULARITY_MAX_VAL)) {
7369 dev_err(hba->dev, "%s: invalid host PA_GRANULARITY %d",
7370 __func__, granularity);
7374 if ((peer_granularity < PA_GRANULARITY_MIN_VAL) ||
7375 (peer_granularity > PA_GRANULARITY_MAX_VAL)) {
7376 dev_err(hba->dev, "%s: invalid device PA_GRANULARITY %d",
7377 __func__, peer_granularity);
7381 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_TACTIVATE), &pa_tactivate);
7385 ret = ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_TACTIVATE),
7386 &peer_pa_tactivate);
7390 pa_tactivate_us = pa_tactivate * gran_to_us_table[granularity - 1];
7391 peer_pa_tactivate_us = peer_pa_tactivate *
7392 gran_to_us_table[peer_granularity - 1];
7394 if (pa_tactivate_us > peer_pa_tactivate_us) {
7395 u32 new_peer_pa_tactivate;
7397 new_peer_pa_tactivate = pa_tactivate_us /
7398 gran_to_us_table[peer_granularity - 1];
7399 new_peer_pa_tactivate++;
7400 ret = ufshcd_dme_peer_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
7401 new_peer_pa_tactivate);
7408 static void ufshcd_tune_unipro_params(struct ufs_hba *hba)
7410 if (ufshcd_is_unipro_pa_params_tuning_req(hba)) {
7411 ufshcd_tune_pa_tactivate(hba);
7412 ufshcd_tune_pa_hibern8time(hba);
7415 ufshcd_vops_apply_dev_quirks(hba);
7417 if (hba->dev_quirks & UFS_DEVICE_QUIRK_PA_TACTIVATE)
7418 /* set 1ms timeout for PA_TACTIVATE */
7419 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE), 10);
7421 if (hba->dev_quirks & UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE)
7422 ufshcd_quirk_tune_host_pa_tactivate(hba);
7425 static void ufshcd_clear_dbg_ufs_stats(struct ufs_hba *hba)
7427 hba->ufs_stats.hibern8_exit_cnt = 0;
7428 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
7429 hba->req_abort_count = 0;
7432 static int ufshcd_device_geo_params_init(struct ufs_hba *hba)
7438 buff_len = hba->desc_size[QUERY_DESC_IDN_GEOMETRY];
7439 desc_buf = kmalloc(buff_len, GFP_KERNEL);
7445 err = ufshcd_read_desc_param(hba, QUERY_DESC_IDN_GEOMETRY, 0, 0,
7446 desc_buf, buff_len);
7448 dev_err(hba->dev, "%s: Failed reading Geometry Desc. err = %d\n",
7453 if (desc_buf[GEOMETRY_DESC_PARAM_MAX_NUM_LUN] == 1)
7454 hba->dev_info.max_lu_supported = 32;
7455 else if (desc_buf[GEOMETRY_DESC_PARAM_MAX_NUM_LUN] == 0)
7456 hba->dev_info.max_lu_supported = 8;
7463 static struct ufs_ref_clk ufs_ref_clk_freqs[] = {
7464 {19200000, REF_CLK_FREQ_19_2_MHZ},
7465 {26000000, REF_CLK_FREQ_26_MHZ},
7466 {38400000, REF_CLK_FREQ_38_4_MHZ},
7467 {52000000, REF_CLK_FREQ_52_MHZ},
7468 {0, REF_CLK_FREQ_INVAL},
7471 static enum ufs_ref_clk_freq
7472 ufs_get_bref_clk_from_hz(unsigned long freq)
7476 for (i = 0; ufs_ref_clk_freqs[i].freq_hz; i++)
7477 if (ufs_ref_clk_freqs[i].freq_hz == freq)
7478 return ufs_ref_clk_freqs[i].val;
7480 return REF_CLK_FREQ_INVAL;
7483 void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk)
7487 freq = clk_get_rate(refclk);
7489 hba->dev_ref_clk_freq =
7490 ufs_get_bref_clk_from_hz(freq);
7492 if (hba->dev_ref_clk_freq == REF_CLK_FREQ_INVAL)
7494 "invalid ref_clk setting = %ld\n", freq);
7497 static int ufshcd_set_dev_ref_clk(struct ufs_hba *hba)
7501 u32 freq = hba->dev_ref_clk_freq;
7503 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
7504 QUERY_ATTR_IDN_REF_CLK_FREQ, 0, 0, &ref_clk);
7507 dev_err(hba->dev, "failed reading bRefClkFreq. err = %d\n",
7512 if (ref_clk == freq)
7513 goto out; /* nothing to update */
7515 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
7516 QUERY_ATTR_IDN_REF_CLK_FREQ, 0, 0, &freq);
7519 dev_err(hba->dev, "bRefClkFreq setting to %lu Hz failed\n",
7520 ufs_ref_clk_freqs[freq].freq_hz);
7524 dev_dbg(hba->dev, "bRefClkFreq setting to %lu Hz succeeded\n",
7525 ufs_ref_clk_freqs[freq].freq_hz);
7531 static int ufshcd_device_params_init(struct ufs_hba *hba)
7536 /* Init device descriptor sizes */
7537 for (i = 0; i < QUERY_DESC_IDN_MAX; i++)
7538 hba->desc_size[i] = QUERY_DESC_MAX_SIZE;
7540 /* Init UFS geometry descriptor related parameters */
7541 ret = ufshcd_device_geo_params_init(hba);
7545 /* Check and apply UFS device quirks */
7546 ret = ufs_get_device_desc(hba);
7548 dev_err(hba->dev, "%s: Failed getting device info. err = %d\n",
7553 ufshcd_get_ref_clk_gating_wait(hba);
7555 if (!ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
7556 QUERY_FLAG_IDN_PWR_ON_WPE, 0, &flag))
7557 hba->dev_info.f_power_on_wp_en = flag;
7559 /* Probe maximum power mode co-supported by both UFS host and device */
7560 if (ufshcd_get_max_pwr_mode(hba))
7562 "%s: Failed getting max supported power mode\n",
7569 * ufshcd_add_lus - probe and add UFS logical units
7570 * @hba: per-adapter instance
7572 static int ufshcd_add_lus(struct ufs_hba *hba)
7576 /* Add required well known logical units to scsi mid layer */
7577 ret = ufshcd_scsi_add_wlus(hba);
7581 /* Initialize devfreq after UFS device is detected */
7582 if (ufshcd_is_clkscaling_supported(hba)) {
7583 memcpy(&hba->clk_scaling.saved_pwr_info.info,
7585 sizeof(struct ufs_pa_layer_attr));
7586 hba->clk_scaling.saved_pwr_info.is_valid = true;
7587 if (!hba->devfreq) {
7588 ret = ufshcd_devfreq_init(hba);
7593 hba->clk_scaling.is_allowed = true;
7597 scsi_scan_host(hba->host);
7598 pm_runtime_put_sync(hba->dev);
7605 * ufshcd_probe_hba - probe hba to detect device and initialize
7606 * @hba: per-adapter instance
7607 * @async: asynchronous execution or not
7609 * Execute link-startup and verify device initialization
7611 static int ufshcd_probe_hba(struct ufs_hba *hba, bool async)
7614 unsigned long flags;
7615 ktime_t start = ktime_get();
7617 ret = ufshcd_link_startup(hba);
7621 /* Debug counters initialization */
7622 ufshcd_clear_dbg_ufs_stats(hba);
7624 /* UniPro link is active now */
7625 ufshcd_set_link_active(hba);
7627 /* Verify device initialization by sending NOP OUT UPIU */
7628 ret = ufshcd_verify_dev_init(hba);
7632 /* Initiate UFS initialization, and waiting until completion */
7633 ret = ufshcd_complete_dev_init(hba);
7638 * Initialize UFS device parameters used by driver, these
7639 * parameters are associated with UFS descriptors.
7642 ret = ufshcd_device_params_init(hba);
7647 ufshcd_tune_unipro_params(hba);
7649 /* UFS device is also active now */
7650 ufshcd_set_ufs_dev_active(hba);
7651 ufshcd_force_reset_auto_bkops(hba);
7652 hba->wlun_dev_clr_ua = true;
7654 /* Gear up to HS gear if supported */
7655 if (hba->max_pwr_info.is_valid) {
7657 * Set the right value to bRefClkFreq before attempting to
7658 * switch to HS gears.
7660 if (hba->dev_ref_clk_freq != REF_CLK_FREQ_INVAL)
7661 ufshcd_set_dev_ref_clk(hba);
7662 ret = ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info);
7664 dev_err(hba->dev, "%s: Failed setting power mode, err = %d\n",
7668 ufshcd_print_pwr_info(hba);
7672 * bActiveICCLevel is volatile for UFS device (as per latest v2.1 spec)
7673 * and for removable UFS card as well, hence always set the parameter.
7674 * Note: Error handler may issue the device reset hence resetting
7675 * bActiveICCLevel as well so it is always safe to set this here.
7677 ufshcd_set_active_icc_lvl(hba);
7679 ufshcd_wb_config(hba);
7680 /* Enable Auto-Hibernate if configured */
7681 ufshcd_auto_hibern8_enable(hba);
7684 spin_lock_irqsave(hba->host->host_lock, flags);
7686 hba->ufshcd_state = UFSHCD_STATE_ERROR;
7687 else if (hba->ufshcd_state == UFSHCD_STATE_RESET)
7688 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
7689 spin_unlock_irqrestore(hba->host->host_lock, flags);
7691 trace_ufshcd_init(dev_name(hba->dev), ret,
7692 ktime_to_us(ktime_sub(ktime_get(), start)),
7693 hba->curr_dev_pwr_mode, hba->uic_link_state);
7698 * ufshcd_async_scan - asynchronous execution for probing hba
7699 * @data: data pointer to pass to this function
7700 * @cookie: cookie data
7702 static void ufshcd_async_scan(void *data, async_cookie_t cookie)
7704 struct ufs_hba *hba = (struct ufs_hba *)data;
7707 /* Initialize hba, detect and initialize UFS device */
7708 ret = ufshcd_probe_hba(hba, true);
7712 /* Probe and add UFS logical units */
7713 ret = ufshcd_add_lus(hba);
7716 * If we failed to initialize the device or the device is not
7717 * present, turn off the power/clocks etc.
7720 pm_runtime_put_sync(hba->dev);
7721 ufshcd_exit_clk_scaling(hba);
7722 ufshcd_hba_exit(hba);
7726 static const struct attribute_group *ufshcd_driver_groups[] = {
7727 &ufs_sysfs_unit_descriptor_group,
7728 &ufs_sysfs_lun_attributes_group,
7732 static struct ufs_hba_variant_params ufs_hba_vps = {
7733 .hba_enable_delay_us = 1000,
7734 .wb_flush_threshold = UFS_WB_BUF_REMAIN_PERCENT(40),
7735 .devfreq_profile.polling_ms = 100,
7736 .devfreq_profile.target = ufshcd_devfreq_target,
7737 .devfreq_profile.get_dev_status = ufshcd_devfreq_get_dev_status,
7738 .ondemand_data.upthreshold = 70,
7739 .ondemand_data.downdifferential = 5,
7742 static struct scsi_host_template ufshcd_driver_template = {
7743 .module = THIS_MODULE,
7745 .proc_name = UFSHCD,
7746 .queuecommand = ufshcd_queuecommand,
7747 .slave_alloc = ufshcd_slave_alloc,
7748 .slave_configure = ufshcd_slave_configure,
7749 .slave_destroy = ufshcd_slave_destroy,
7750 .change_queue_depth = ufshcd_change_queue_depth,
7751 .eh_abort_handler = ufshcd_abort,
7752 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
7753 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
7755 .sg_tablesize = SG_ALL,
7756 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
7757 .can_queue = UFSHCD_CAN_QUEUE,
7758 .max_segment_size = PRDT_DATA_BYTE_COUNT_MAX,
7759 .max_host_blocked = 1,
7760 .track_queue_depth = 1,
7761 .sdev_groups = ufshcd_driver_groups,
7762 .dma_boundary = PAGE_SIZE - 1,
7763 .rpm_autosuspend_delay = RPM_AUTOSUSPEND_DELAY_MS,
7766 static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg *vreg,
7775 * "set_load" operation shall be required on those regulators
7776 * which specifically configured current limitation. Otherwise
7777 * zero max_uA may cause unexpected behavior when regulator is
7778 * enabled or set as high power mode.
7783 ret = regulator_set_load(vreg->reg, ua);
7785 dev_err(dev, "%s: %s set load (ua=%d) failed, err=%d\n",
7786 __func__, vreg->name, ua, ret);
7792 static inline int ufshcd_config_vreg_lpm(struct ufs_hba *hba,
7793 struct ufs_vreg *vreg)
7795 return ufshcd_config_vreg_load(hba->dev, vreg, UFS_VREG_LPM_LOAD_UA);
7798 static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
7799 struct ufs_vreg *vreg)
7804 return ufshcd_config_vreg_load(hba->dev, vreg, vreg->max_uA);
7807 static int ufshcd_config_vreg(struct device *dev,
7808 struct ufs_vreg *vreg, bool on)
7811 struct regulator *reg;
7813 int min_uV, uA_load;
7820 if (regulator_count_voltages(reg) > 0) {
7821 uA_load = on ? vreg->max_uA : 0;
7822 ret = ufshcd_config_vreg_load(dev, vreg, uA_load);
7826 if (vreg->min_uV && vreg->max_uV) {
7827 min_uV = on ? vreg->min_uV : 0;
7828 ret = regulator_set_voltage(reg, min_uV, vreg->max_uV);
7831 "%s: %s set voltage failed, err=%d\n",
7832 __func__, name, ret);
7839 static int ufshcd_enable_vreg(struct device *dev, struct ufs_vreg *vreg)
7843 if (!vreg || vreg->enabled)
7846 ret = ufshcd_config_vreg(dev, vreg, true);
7848 ret = regulator_enable(vreg->reg);
7851 vreg->enabled = true;
7853 dev_err(dev, "%s: %s enable failed, err=%d\n",
7854 __func__, vreg->name, ret);
7859 static int ufshcd_disable_vreg(struct device *dev, struct ufs_vreg *vreg)
7863 if (!vreg || !vreg->enabled)
7866 ret = regulator_disable(vreg->reg);
7869 /* ignore errors on applying disable config */
7870 ufshcd_config_vreg(dev, vreg, false);
7871 vreg->enabled = false;
7873 dev_err(dev, "%s: %s disable failed, err=%d\n",
7874 __func__, vreg->name, ret);
7880 static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on)
7883 struct device *dev = hba->dev;
7884 struct ufs_vreg_info *info = &hba->vreg_info;
7886 ret = ufshcd_toggle_vreg(dev, info->vcc, on);
7890 ret = ufshcd_toggle_vreg(dev, info->vccq, on);
7894 ret = ufshcd_toggle_vreg(dev, info->vccq2, on);
7898 ufshcd_toggle_vreg(dev, info->vccq2, false);
7899 ufshcd_toggle_vreg(dev, info->vccq, false);
7900 ufshcd_toggle_vreg(dev, info->vcc, false);
7905 static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on)
7907 struct ufs_vreg_info *info = &hba->vreg_info;
7909 return ufshcd_toggle_vreg(hba->dev, info->vdd_hba, on);
7912 static int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg)
7919 vreg->reg = devm_regulator_get(dev, vreg->name);
7920 if (IS_ERR(vreg->reg)) {
7921 ret = PTR_ERR(vreg->reg);
7922 dev_err(dev, "%s: %s get failed, err=%d\n",
7923 __func__, vreg->name, ret);
7929 static int ufshcd_init_vreg(struct ufs_hba *hba)
7932 struct device *dev = hba->dev;
7933 struct ufs_vreg_info *info = &hba->vreg_info;
7935 ret = ufshcd_get_vreg(dev, info->vcc);
7939 ret = ufshcd_get_vreg(dev, info->vccq);
7941 ret = ufshcd_get_vreg(dev, info->vccq2);
7946 static int ufshcd_init_hba_vreg(struct ufs_hba *hba)
7948 struct ufs_vreg_info *info = &hba->vreg_info;
7951 return ufshcd_get_vreg(hba->dev, info->vdd_hba);
7956 static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
7960 struct ufs_clk_info *clki;
7961 struct list_head *head = &hba->clk_list_head;
7962 unsigned long flags;
7963 ktime_t start = ktime_get();
7964 bool clk_state_changed = false;
7966 if (list_empty(head))
7969 ret = ufshcd_vops_setup_clocks(hba, on, PRE_CHANGE);
7973 list_for_each_entry(clki, head, list) {
7974 if (!IS_ERR_OR_NULL(clki->clk)) {
7975 if (skip_ref_clk && !strcmp(clki->name, "ref_clk"))
7978 clk_state_changed = on ^ clki->enabled;
7979 if (on && !clki->enabled) {
7980 ret = clk_prepare_enable(clki->clk);
7982 dev_err(hba->dev, "%s: %s prepare enable failed, %d\n",
7983 __func__, clki->name, ret);
7986 } else if (!on && clki->enabled) {
7987 clk_disable_unprepare(clki->clk);
7990 dev_dbg(hba->dev, "%s: clk: %s %sabled\n", __func__,
7991 clki->name, on ? "en" : "dis");
7995 ret = ufshcd_vops_setup_clocks(hba, on, POST_CHANGE);
8001 list_for_each_entry(clki, head, list) {
8002 if (!IS_ERR_OR_NULL(clki->clk) && clki->enabled)
8003 clk_disable_unprepare(clki->clk);
8005 } else if (!ret && on) {
8006 spin_lock_irqsave(hba->host->host_lock, flags);
8007 hba->clk_gating.state = CLKS_ON;
8008 trace_ufshcd_clk_gating(dev_name(hba->dev),
8009 hba->clk_gating.state);
8010 spin_unlock_irqrestore(hba->host->host_lock, flags);
8013 if (clk_state_changed)
8014 trace_ufshcd_profile_clk_gating(dev_name(hba->dev),
8015 (on ? "on" : "off"),
8016 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
8020 static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on)
8022 return __ufshcd_setup_clocks(hba, on, false);
8025 static int ufshcd_init_clocks(struct ufs_hba *hba)
8028 struct ufs_clk_info *clki;
8029 struct device *dev = hba->dev;
8030 struct list_head *head = &hba->clk_list_head;
8032 if (list_empty(head))
8035 list_for_each_entry(clki, head, list) {
8039 clki->clk = devm_clk_get(dev, clki->name);
8040 if (IS_ERR(clki->clk)) {
8041 ret = PTR_ERR(clki->clk);
8042 dev_err(dev, "%s: %s clk get failed, %d\n",
8043 __func__, clki->name, ret);
8048 * Parse device ref clk freq as per device tree "ref_clk".
8049 * Default dev_ref_clk_freq is set to REF_CLK_FREQ_INVAL
8050 * in ufshcd_alloc_host().
8052 if (!strcmp(clki->name, "ref_clk"))
8053 ufshcd_parse_dev_ref_clk_freq(hba, clki->clk);
8055 if (clki->max_freq) {
8056 ret = clk_set_rate(clki->clk, clki->max_freq);
8058 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
8059 __func__, clki->name,
8060 clki->max_freq, ret);
8063 clki->curr_freq = clki->max_freq;
8065 dev_dbg(dev, "%s: clk: %s, rate: %lu\n", __func__,
8066 clki->name, clk_get_rate(clki->clk));
8072 static int ufshcd_variant_hba_init(struct ufs_hba *hba)
8079 err = ufshcd_vops_init(hba);
8083 err = ufshcd_vops_setup_regulators(hba, true);
8085 ufshcd_vops_exit(hba);
8088 dev_err(hba->dev, "%s: variant %s init failed err %d\n",
8089 __func__, ufshcd_get_var_name(hba), err);
8093 static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
8098 ufshcd_vops_setup_regulators(hba, false);
8100 ufshcd_vops_exit(hba);
8103 static int ufshcd_hba_init(struct ufs_hba *hba)
8108 * Handle host controller power separately from the UFS device power
8109 * rails as it will help controlling the UFS host controller power
8110 * collapse easily which is different than UFS device power collapse.
8111 * Also, enable the host controller power before we go ahead with rest
8112 * of the initialization here.
8114 err = ufshcd_init_hba_vreg(hba);
8118 err = ufshcd_setup_hba_vreg(hba, true);
8122 err = ufshcd_init_clocks(hba);
8124 goto out_disable_hba_vreg;
8126 err = ufshcd_setup_clocks(hba, true);
8128 goto out_disable_hba_vreg;
8130 err = ufshcd_init_vreg(hba);
8132 goto out_disable_clks;
8134 err = ufshcd_setup_vreg(hba, true);
8136 goto out_disable_clks;
8138 err = ufshcd_variant_hba_init(hba);
8140 goto out_disable_vreg;
8142 hba->is_powered = true;
8146 ufshcd_setup_vreg(hba, false);
8148 ufshcd_setup_clocks(hba, false);
8149 out_disable_hba_vreg:
8150 ufshcd_setup_hba_vreg(hba, false);
8155 static void ufshcd_hba_exit(struct ufs_hba *hba)
8157 if (hba->is_powered) {
8158 ufshcd_variant_hba_exit(hba);
8159 ufshcd_setup_vreg(hba, false);
8160 ufshcd_suspend_clkscaling(hba);
8161 if (ufshcd_is_clkscaling_supported(hba))
8163 ufshcd_suspend_clkscaling(hba);
8164 ufshcd_setup_clocks(hba, false);
8165 ufshcd_setup_hba_vreg(hba, false);
8166 hba->is_powered = false;
8167 ufs_put_device_desc(hba);
8172 ufshcd_send_request_sense(struct ufs_hba *hba, struct scsi_device *sdp)
8174 unsigned char cmd[6] = {REQUEST_SENSE,
8183 buffer = kzalloc(UFS_SENSE_SIZE, GFP_KERNEL);
8189 ret = scsi_execute(sdp, cmd, DMA_FROM_DEVICE, buffer,
8190 UFS_SENSE_SIZE, NULL, NULL,
8191 msecs_to_jiffies(1000), 3, 0, RQF_PM, NULL);
8193 pr_err("%s: failed with err %d\n", __func__, ret);
8201 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
8203 * @hba: per adapter instance
8204 * @pwr_mode: device power mode to set
8206 * Returns 0 if requested power mode is set successfully
8207 * Returns non-zero if failed to set the requested power mode
8209 static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
8210 enum ufs_dev_pwr_mode pwr_mode)
8212 unsigned char cmd[6] = { START_STOP };
8213 struct scsi_sense_hdr sshdr;
8214 struct scsi_device *sdp;
8215 unsigned long flags;
8218 spin_lock_irqsave(hba->host->host_lock, flags);
8219 sdp = hba->sdev_ufs_device;
8221 ret = scsi_device_get(sdp);
8222 if (!ret && !scsi_device_online(sdp)) {
8224 scsi_device_put(sdp);
8229 spin_unlock_irqrestore(hba->host->host_lock, flags);
8235 * If scsi commands fail, the scsi mid-layer schedules scsi error-
8236 * handling, which would wait for host to be resumed. Since we know
8237 * we are functional while we are here, skip host resume in error
8240 hba->host->eh_noresume = 1;
8241 if (hba->wlun_dev_clr_ua) {
8242 ret = ufshcd_send_request_sense(hba, sdp);
8245 /* Unit attention condition is cleared now */
8246 hba->wlun_dev_clr_ua = false;
8249 cmd[4] = pwr_mode << 4;
8252 * Current function would be generally called from the power management
8253 * callbacks hence set the RQF_PM flag so that it doesn't resume the
8254 * already suspended childs.
8256 ret = scsi_execute(sdp, cmd, DMA_NONE, NULL, 0, NULL, &sshdr,
8257 START_STOP_TIMEOUT, 0, 0, RQF_PM, NULL);
8259 sdev_printk(KERN_WARNING, sdp,
8260 "START_STOP failed for power mode: %d, result %x\n",
8262 if (driver_byte(ret) == DRIVER_SENSE)
8263 scsi_print_sense_hdr(sdp, NULL, &sshdr);
8267 hba->curr_dev_pwr_mode = pwr_mode;
8269 scsi_device_put(sdp);
8270 hba->host->eh_noresume = 0;
8274 static int ufshcd_link_state_transition(struct ufs_hba *hba,
8275 enum uic_link_state req_link_state,
8276 int check_for_bkops)
8280 if (req_link_state == hba->uic_link_state)
8283 if (req_link_state == UIC_LINK_HIBERN8_STATE) {
8284 ret = ufshcd_uic_hibern8_enter(hba);
8286 ufshcd_set_link_hibern8(hba);
8288 dev_err(hba->dev, "%s: hibern8 enter failed %d\n",
8294 * If autobkops is enabled, link can't be turned off because
8295 * turning off the link would also turn off the device.
8297 else if ((req_link_state == UIC_LINK_OFF_STATE) &&
8298 (!check_for_bkops || !hba->auto_bkops_enabled)) {
8300 * Let's make sure that link is in low power mode, we are doing
8301 * this currently by putting the link in Hibern8. Otherway to
8302 * put the link in low power mode is to send the DME end point
8303 * to device and then send the DME reset command to local
8304 * unipro. But putting the link in hibern8 is much faster.
8306 ret = ufshcd_uic_hibern8_enter(hba);
8308 dev_err(hba->dev, "%s: hibern8 enter failed %d\n",
8313 * Change controller state to "reset state" which
8314 * should also put the link in off/reset state
8316 ufshcd_hba_stop(hba);
8318 * TODO: Check if we need any delay to make sure that
8319 * controller is reset
8321 ufshcd_set_link_off(hba);
8328 static void ufshcd_vreg_set_lpm(struct ufs_hba *hba)
8330 bool vcc_off = false;
8333 * It seems some UFS devices may keep drawing more than sleep current
8334 * (atleast for 500us) from UFS rails (especially from VCCQ rail).
8335 * To avoid this situation, add 2ms delay before putting these UFS
8336 * rails in LPM mode.
8338 if (!ufshcd_is_link_active(hba) &&
8339 hba->dev_quirks & UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM)
8340 usleep_range(2000, 2100);
8343 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
8346 * If UFS device and link is in OFF state, all power supplies (VCC,
8347 * VCCQ, VCCQ2) can be turned off if power on write protect is not
8348 * required. If UFS link is inactive (Hibern8 or OFF state) and device
8349 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
8351 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
8352 * in low power state which would save some power.
8354 * If Write Booster is enabled and the device needs to flush the WB
8355 * buffer OR if bkops status is urgent for WB, keep Vcc on.
8357 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
8358 !hba->dev_info.is_lu_power_on_wp) {
8359 ufshcd_setup_vreg(hba, false);
8361 } else if (!ufshcd_is_ufs_dev_active(hba)) {
8362 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
8364 if (!ufshcd_is_link_active(hba)) {
8365 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
8366 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq2);
8371 * Some UFS devices require delay after VCC power rail is turned-off.
8373 if (vcc_off && hba->vreg_info.vcc &&
8374 hba->dev_quirks & UFS_DEVICE_QUIRK_DELAY_AFTER_LPM)
8375 usleep_range(5000, 5100);
8378 static int ufshcd_vreg_set_hpm(struct ufs_hba *hba)
8382 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
8383 !hba->dev_info.is_lu_power_on_wp) {
8384 ret = ufshcd_setup_vreg(hba, true);
8385 } else if (!ufshcd_is_ufs_dev_active(hba)) {
8386 if (!ret && !ufshcd_is_link_active(hba)) {
8387 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
8390 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
8394 ret = ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, true);
8399 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
8401 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
8406 static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba)
8408 if (ufshcd_is_link_off(hba))
8409 ufshcd_setup_hba_vreg(hba, false);
8412 static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba)
8414 if (ufshcd_is_link_off(hba))
8415 ufshcd_setup_hba_vreg(hba, true);
8419 * ufshcd_suspend - helper function for suspend operations
8420 * @hba: per adapter instance
8421 * @pm_op: desired low power operation type
8423 * This function will try to put the UFS device and link into low power
8424 * mode based on the "rpm_lvl" (Runtime PM level) or "spm_lvl"
8425 * (System PM level).
8427 * If this function is called during shutdown, it will make sure that
8428 * both UFS device and UFS link is powered off.
8430 * NOTE: UFS device & link must be active before we enter in this function.
8432 * Returns 0 for success and non-zero for failure
8434 static int ufshcd_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
8437 enum ufs_pm_level pm_lvl;
8438 enum ufs_dev_pwr_mode req_dev_pwr_mode;
8439 enum uic_link_state req_link_state;
8441 hba->pm_op_in_progress = 1;
8442 if (!ufshcd_is_shutdown_pm(pm_op)) {
8443 pm_lvl = ufshcd_is_runtime_pm(pm_op) ?
8444 hba->rpm_lvl : hba->spm_lvl;
8445 req_dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl);
8446 req_link_state = ufs_get_pm_lvl_to_link_pwr_state(pm_lvl);
8448 req_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE;
8449 req_link_state = UIC_LINK_OFF_STATE;
8453 * If we can't transition into any of the low power modes
8454 * just gate the clocks.
8456 ufshcd_hold(hba, false);
8457 hba->clk_gating.is_suspended = true;
8459 if (hba->clk_scaling.is_allowed) {
8460 cancel_work_sync(&hba->clk_scaling.suspend_work);
8461 cancel_work_sync(&hba->clk_scaling.resume_work);
8462 ufshcd_suspend_clkscaling(hba);
8465 if (req_dev_pwr_mode == UFS_ACTIVE_PWR_MODE &&
8466 req_link_state == UIC_LINK_ACTIVE_STATE) {
8470 if ((req_dev_pwr_mode == hba->curr_dev_pwr_mode) &&
8471 (req_link_state == hba->uic_link_state))
8474 /* UFS device & link must be active before we enter in this function */
8475 if (!ufshcd_is_ufs_dev_active(hba) || !ufshcd_is_link_active(hba)) {
8480 if (ufshcd_is_runtime_pm(pm_op)) {
8481 if (ufshcd_can_autobkops_during_suspend(hba)) {
8483 * The device is idle with no requests in the queue,
8484 * allow background operations if bkops status shows
8485 * that performance might be impacted.
8487 ret = ufshcd_urgent_bkops(hba);
8491 /* make sure that auto bkops is disabled */
8492 ufshcd_disable_auto_bkops(hba);
8495 * If device needs to do BKOP or WB buffer flush during
8496 * Hibern8, keep device power mode as "active power mode"
8499 hba->dev_info.b_rpm_dev_flush_capable =
8500 hba->auto_bkops_enabled ||
8501 (((req_link_state == UIC_LINK_HIBERN8_STATE) ||
8502 ((req_link_state == UIC_LINK_ACTIVE_STATE) &&
8503 ufshcd_is_auto_hibern8_enabled(hba))) &&
8504 ufshcd_wb_need_flush(hba));
8507 if (req_dev_pwr_mode != hba->curr_dev_pwr_mode) {
8508 if ((ufshcd_is_runtime_pm(pm_op) && !hba->auto_bkops_enabled) ||
8509 !ufshcd_is_runtime_pm(pm_op)) {
8510 /* ensure that bkops is disabled */
8511 ufshcd_disable_auto_bkops(hba);
8514 if (!hba->dev_info.b_rpm_dev_flush_capable) {
8515 ret = ufshcd_set_dev_pwr_mode(hba, req_dev_pwr_mode);
8521 flush_work(&hba->eeh_work);
8522 ret = ufshcd_link_state_transition(hba, req_link_state, 1);
8524 goto set_dev_active;
8526 ufshcd_vreg_set_lpm(hba);
8530 * Call vendor specific suspend callback. As these callbacks may access
8531 * vendor specific host controller register space call them before the
8532 * host clocks are ON.
8534 ret = ufshcd_vops_suspend(hba, pm_op);
8536 goto set_link_active;
8538 * Disable the host irq as host controller as there won't be any
8539 * host controller transaction expected till resume.
8541 ufshcd_disable_irq(hba);
8543 if (!ufshcd_is_link_active(hba))
8544 ufshcd_setup_clocks(hba, false);
8546 /* If link is active, device ref_clk can't be switched off */
8547 __ufshcd_setup_clocks(hba, false, true);
8549 if (ufshcd_is_clkgating_allowed(hba)) {
8550 hba->clk_gating.state = CLKS_OFF;
8551 trace_ufshcd_clk_gating(dev_name(hba->dev),
8552 hba->clk_gating.state);
8555 /* Put the host controller in low power mode if possible */
8556 ufshcd_hba_vreg_set_lpm(hba);
8560 if (hba->clk_scaling.is_allowed)
8561 ufshcd_resume_clkscaling(hba);
8562 ufshcd_vreg_set_hpm(hba);
8563 if (ufshcd_is_link_hibern8(hba) && !ufshcd_uic_hibern8_exit(hba))
8564 ufshcd_set_link_active(hba);
8565 else if (ufshcd_is_link_off(hba))
8566 ufshcd_host_reset_and_restore(hba);
8568 if (!ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE))
8569 ufshcd_disable_auto_bkops(hba);
8571 if (hba->clk_scaling.is_allowed)
8572 ufshcd_resume_clkscaling(hba);
8573 hba->clk_gating.is_suspended = false;
8574 hba->dev_info.b_rpm_dev_flush_capable = false;
8575 ufshcd_release(hba);
8577 if (hba->dev_info.b_rpm_dev_flush_capable) {
8578 schedule_delayed_work(&hba->rpm_dev_flush_recheck_work,
8579 msecs_to_jiffies(RPM_DEV_FLUSH_RECHECK_WORK_DELAY_MS));
8582 hba->pm_op_in_progress = 0;
8585 ufshcd_update_reg_hist(&hba->ufs_stats.suspend_err, (u32)ret);
8590 * ufshcd_resume - helper function for resume operations
8591 * @hba: per adapter instance
8592 * @pm_op: runtime PM or system PM
8594 * This function basically brings the UFS device, UniPro link and controller
8597 * Returns 0 for success and non-zero for failure
8599 static int ufshcd_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
8602 enum uic_link_state old_link_state;
8604 hba->pm_op_in_progress = 1;
8605 old_link_state = hba->uic_link_state;
8607 ufshcd_hba_vreg_set_hpm(hba);
8608 /* Make sure clocks are enabled before accessing controller */
8609 ret = ufshcd_setup_clocks(hba, true);
8613 /* enable the host irq as host controller would be active soon */
8614 ufshcd_enable_irq(hba);
8616 ret = ufshcd_vreg_set_hpm(hba);
8618 goto disable_irq_and_vops_clks;
8621 * Call vendor specific resume callback. As these callbacks may access
8622 * vendor specific host controller register space call them when the
8623 * host clocks are ON.
8625 ret = ufshcd_vops_resume(hba, pm_op);
8629 if (ufshcd_is_link_hibern8(hba)) {
8630 ret = ufshcd_uic_hibern8_exit(hba);
8632 ufshcd_set_link_active(hba);
8634 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
8636 goto vendor_suspend;
8638 } else if (ufshcd_is_link_off(hba)) {
8640 * A full initialization of the host and the device is
8641 * required since the link was put to off during suspend.
8643 ret = ufshcd_reset_and_restore(hba);
8645 * ufshcd_reset_and_restore() should have already
8646 * set the link state as active
8648 if (ret || !ufshcd_is_link_active(hba))
8649 goto vendor_suspend;
8652 if (!ufshcd_is_ufs_dev_active(hba)) {
8653 ret = ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE);
8655 goto set_old_link_state;
8658 if (ufshcd_keep_autobkops_enabled_except_suspend(hba))
8659 ufshcd_enable_auto_bkops(hba);
8662 * If BKOPs operations are urgently needed at this moment then
8663 * keep auto-bkops enabled or else disable it.
8665 ufshcd_urgent_bkops(hba);
8667 hba->clk_gating.is_suspended = false;
8669 if (hba->clk_scaling.is_allowed)
8670 ufshcd_resume_clkscaling(hba);
8672 /* Enable Auto-Hibernate if configured */
8673 ufshcd_auto_hibern8_enable(hba);
8675 if (hba->dev_info.b_rpm_dev_flush_capable) {
8676 hba->dev_info.b_rpm_dev_flush_capable = false;
8677 cancel_delayed_work(&hba->rpm_dev_flush_recheck_work);
8680 /* Schedule clock gating in case of no access to UFS device yet */
8681 ufshcd_release(hba);
8686 ufshcd_link_state_transition(hba, old_link_state, 0);
8688 ufshcd_vops_suspend(hba, pm_op);
8690 ufshcd_vreg_set_lpm(hba);
8691 disable_irq_and_vops_clks:
8692 ufshcd_disable_irq(hba);
8693 if (hba->clk_scaling.is_allowed)
8694 ufshcd_suspend_clkscaling(hba);
8695 ufshcd_setup_clocks(hba, false);
8696 if (ufshcd_is_clkgating_allowed(hba)) {
8697 hba->clk_gating.state = CLKS_OFF;
8698 trace_ufshcd_clk_gating(dev_name(hba->dev),
8699 hba->clk_gating.state);
8702 hba->pm_op_in_progress = 0;
8704 ufshcd_update_reg_hist(&hba->ufs_stats.resume_err, (u32)ret);
8709 * ufshcd_system_suspend - system suspend routine
8710 * @hba: per adapter instance
8712 * Check the description of ufshcd_suspend() function for more details.
8714 * Returns 0 for success and non-zero for failure
8716 int ufshcd_system_suspend(struct ufs_hba *hba)
8719 ktime_t start = ktime_get();
8721 if (!hba || !hba->is_powered)
8724 if ((ufs_get_pm_lvl_to_dev_pwr_mode(hba->spm_lvl) ==
8725 hba->curr_dev_pwr_mode) &&
8726 (ufs_get_pm_lvl_to_link_pwr_state(hba->spm_lvl) ==
8727 hba->uic_link_state))
8730 if (pm_runtime_suspended(hba->dev)) {
8732 * UFS device and/or UFS link low power states during runtime
8733 * suspend seems to be different than what is expected during
8734 * system suspend. Hence runtime resume the devic & link and
8735 * let the system suspend low power states to take effect.
8736 * TODO: If resume takes longer time, we might have optimize
8737 * it in future by not resuming everything if possible.
8739 ret = ufshcd_runtime_resume(hba);
8744 ret = ufshcd_suspend(hba, UFS_SYSTEM_PM);
8746 trace_ufshcd_system_suspend(dev_name(hba->dev), ret,
8747 ktime_to_us(ktime_sub(ktime_get(), start)),
8748 hba->curr_dev_pwr_mode, hba->uic_link_state);
8750 hba->is_sys_suspended = true;
8753 EXPORT_SYMBOL(ufshcd_system_suspend);
8756 * ufshcd_system_resume - system resume routine
8757 * @hba: per adapter instance
8759 * Returns 0 for success and non-zero for failure
8762 int ufshcd_system_resume(struct ufs_hba *hba)
8765 ktime_t start = ktime_get();
8770 if (!hba->is_powered || pm_runtime_suspended(hba->dev))
8772 * Let the runtime resume take care of resuming
8773 * if runtime suspended.
8777 ret = ufshcd_resume(hba, UFS_SYSTEM_PM);
8779 trace_ufshcd_system_resume(dev_name(hba->dev), ret,
8780 ktime_to_us(ktime_sub(ktime_get(), start)),
8781 hba->curr_dev_pwr_mode, hba->uic_link_state);
8783 hba->is_sys_suspended = false;
8786 EXPORT_SYMBOL(ufshcd_system_resume);
8789 * ufshcd_runtime_suspend - runtime suspend routine
8790 * @hba: per adapter instance
8792 * Check the description of ufshcd_suspend() function for more details.
8794 * Returns 0 for success and non-zero for failure
8796 int ufshcd_runtime_suspend(struct ufs_hba *hba)
8799 ktime_t start = ktime_get();
8804 if (!hba->is_powered)
8807 ret = ufshcd_suspend(hba, UFS_RUNTIME_PM);
8809 trace_ufshcd_runtime_suspend(dev_name(hba->dev), ret,
8810 ktime_to_us(ktime_sub(ktime_get(), start)),
8811 hba->curr_dev_pwr_mode, hba->uic_link_state);
8814 EXPORT_SYMBOL(ufshcd_runtime_suspend);
8817 * ufshcd_runtime_resume - runtime resume routine
8818 * @hba: per adapter instance
8820 * This function basically brings the UFS device, UniPro link and controller
8821 * to active state. Following operations are done in this function:
8823 * 1. Turn on all the controller related clocks
8824 * 2. Bring the UniPro link out of Hibernate state
8825 * 3. If UFS device is in sleep state, turn ON VCC rail and bring the UFS device
8827 * 4. If auto-bkops is enabled on the device, disable it.
8829 * So following would be the possible power state after this function return
8831 * S1: UFS device in Active state with VCC rail ON
8832 * UniPro link in Active state
8833 * All the UFS/UniPro controller clocks are ON
8835 * Returns 0 for success and non-zero for failure
8837 int ufshcd_runtime_resume(struct ufs_hba *hba)
8840 ktime_t start = ktime_get();
8845 if (!hba->is_powered)
8848 ret = ufshcd_resume(hba, UFS_RUNTIME_PM);
8850 trace_ufshcd_runtime_resume(dev_name(hba->dev), ret,
8851 ktime_to_us(ktime_sub(ktime_get(), start)),
8852 hba->curr_dev_pwr_mode, hba->uic_link_state);
8855 EXPORT_SYMBOL(ufshcd_runtime_resume);
8857 int ufshcd_runtime_idle(struct ufs_hba *hba)
8861 EXPORT_SYMBOL(ufshcd_runtime_idle);
8864 * ufshcd_shutdown - shutdown routine
8865 * @hba: per adapter instance
8867 * This function would power off both UFS device and UFS link.
8869 * Returns 0 always to allow force shutdown even in case of errors.
8871 int ufshcd_shutdown(struct ufs_hba *hba)
8875 if (!hba->is_powered)
8878 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba))
8881 if (pm_runtime_suspended(hba->dev)) {
8882 ret = ufshcd_runtime_resume(hba);
8887 ret = ufshcd_suspend(hba, UFS_SHUTDOWN_PM);
8890 dev_err(hba->dev, "%s failed, err %d\n", __func__, ret);
8891 /* allow force shutdown even in case of errors */
8894 EXPORT_SYMBOL(ufshcd_shutdown);
8897 * ufshcd_remove - de-allocate SCSI host and host memory space
8898 * data structure memory
8899 * @hba: per adapter instance
8901 void ufshcd_remove(struct ufs_hba *hba)
8903 ufs_bsg_remove(hba);
8904 ufs_sysfs_remove_nodes(hba->dev);
8905 blk_cleanup_queue(hba->tmf_queue);
8906 blk_mq_free_tag_set(&hba->tmf_tag_set);
8907 blk_cleanup_queue(hba->cmd_queue);
8908 scsi_remove_host(hba->host);
8909 /* disable interrupts */
8910 ufshcd_disable_intr(hba, hba->intr_mask);
8911 ufshcd_hba_stop(hba);
8913 ufshcd_exit_clk_scaling(hba);
8914 ufshcd_exit_clk_gating(hba);
8915 if (ufshcd_is_clkscaling_supported(hba))
8916 device_remove_file(hba->dev, &hba->clk_scaling.enable_attr);
8917 ufshcd_hba_exit(hba);
8919 EXPORT_SYMBOL_GPL(ufshcd_remove);
8922 * ufshcd_dealloc_host - deallocate Host Bus Adapter (HBA)
8923 * @hba: pointer to Host Bus Adapter (HBA)
8925 void ufshcd_dealloc_host(struct ufs_hba *hba)
8927 ufshcd_crypto_destroy_keyslot_manager(hba);
8928 scsi_host_put(hba->host);
8930 EXPORT_SYMBOL_GPL(ufshcd_dealloc_host);
8933 * ufshcd_set_dma_mask - Set dma mask based on the controller
8934 * addressing capability
8935 * @hba: per adapter instance
8937 * Returns 0 for success, non-zero for failure
8939 static int ufshcd_set_dma_mask(struct ufs_hba *hba)
8941 if (hba->capabilities & MASK_64_ADDRESSING_SUPPORT) {
8942 if (!dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(64)))
8945 return dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(32));
8949 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
8950 * @dev: pointer to device handle
8951 * @hba_handle: driver private handle
8952 * Returns 0 on success, non-zero value on failure
8954 int ufshcd_alloc_host(struct device *dev, struct ufs_hba **hba_handle)
8956 struct Scsi_Host *host;
8957 struct ufs_hba *hba;
8962 "Invalid memory reference for dev is NULL\n");
8967 host = scsi_host_alloc(&ufshcd_driver_template,
8968 sizeof(struct ufs_hba));
8970 dev_err(dev, "scsi_host_alloc failed\n");
8974 hba = shost_priv(host);
8978 hba->dev_ref_clk_freq = REF_CLK_FREQ_INVAL;
8980 INIT_LIST_HEAD(&hba->clk_list_head);
8985 EXPORT_SYMBOL(ufshcd_alloc_host);
8987 /* This function exists because blk_mq_alloc_tag_set() requires this. */
8988 static blk_status_t ufshcd_queue_tmf(struct blk_mq_hw_ctx *hctx,
8989 const struct blk_mq_queue_data *qd)
8992 return BLK_STS_NOTSUPP;
8995 static const struct blk_mq_ops ufshcd_tmf_ops = {
8996 .queue_rq = ufshcd_queue_tmf,
9000 * ufshcd_init - Driver initialization routine
9001 * @hba: per-adapter instance
9002 * @mmio_base: base register address
9003 * @irq: Interrupt line of device
9004 * Returns 0 on success, non-zero value on failure
9006 int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
9009 struct Scsi_Host *host = hba->host;
9010 struct device *dev = hba->dev;
9011 char eh_wq_name[sizeof("ufs_eh_wq_00")];
9015 "Invalid memory reference for mmio_base is NULL\n");
9020 hba->mmio_base = mmio_base;
9022 hba->vps = &ufs_hba_vps;
9024 err = ufshcd_hba_init(hba);
9028 /* Read capabilities registers */
9029 err = ufshcd_hba_capabilities(hba);
9033 /* Get UFS version supported by the controller */
9034 hba->ufs_version = ufshcd_get_ufs_version(hba);
9036 if ((hba->ufs_version != UFSHCI_VERSION_10) &&
9037 (hba->ufs_version != UFSHCI_VERSION_11) &&
9038 (hba->ufs_version != UFSHCI_VERSION_20) &&
9039 (hba->ufs_version != UFSHCI_VERSION_21))
9040 dev_err(hba->dev, "invalid UFS version 0x%x\n",
9043 /* Get Interrupt bit mask per version */
9044 hba->intr_mask = ufshcd_get_intr_mask(hba);
9046 err = ufshcd_set_dma_mask(hba);
9048 dev_err(hba->dev, "set dma mask failed\n");
9052 /* Allocate memory for host memory space */
9053 err = ufshcd_memory_alloc(hba);
9055 dev_err(hba->dev, "Memory allocation failed\n");
9060 ufshcd_host_memory_configure(hba);
9062 host->can_queue = hba->nutrs;
9063 host->cmd_per_lun = hba->nutrs;
9064 host->max_id = UFSHCD_MAX_ID;
9065 host->max_lun = UFS_MAX_LUNS;
9066 host->max_channel = UFSHCD_MAX_CHANNEL;
9067 host->unique_id = host->host_no;
9068 host->max_cmd_len = UFS_CDB_SIZE;
9070 hba->max_pwr_info.is_valid = false;
9072 /* Initialize work queues */
9073 snprintf(eh_wq_name, sizeof(eh_wq_name), "ufs_eh_wq_%d",
9074 hba->host->host_no);
9075 hba->eh_wq = create_singlethread_workqueue(eh_wq_name);
9077 dev_err(hba->dev, "%s: failed to create eh workqueue\n",
9082 INIT_WORK(&hba->eh_work, ufshcd_err_handler);
9083 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
9085 /* Initialize UIC command mutex */
9086 mutex_init(&hba->uic_cmd_mutex);
9088 /* Initialize mutex for device management commands */
9089 mutex_init(&hba->dev_cmd.lock);
9091 init_rwsem(&hba->clk_scaling_lock);
9093 ufshcd_init_clk_gating(hba);
9095 ufshcd_init_clk_scaling(hba);
9098 * In order to avoid any spurious interrupt immediately after
9099 * registering UFS controller interrupt handler, clear any pending UFS
9100 * interrupt status and disable all the UFS interrupts.
9102 ufshcd_writel(hba, ufshcd_readl(hba, REG_INTERRUPT_STATUS),
9103 REG_INTERRUPT_STATUS);
9104 ufshcd_writel(hba, 0, REG_INTERRUPT_ENABLE);
9106 * Make sure that UFS interrupts are disabled and any pending interrupt
9107 * status is cleared before registering UFS interrupt handler.
9111 /* IRQ registration */
9112 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
9114 dev_err(hba->dev, "request irq failed\n");
9117 hba->is_irq_enabled = true;
9120 err = scsi_add_host(host, hba->dev);
9122 dev_err(hba->dev, "scsi_add_host failed\n");
9126 hba->cmd_queue = blk_mq_init_queue(&hba->host->tag_set);
9127 if (IS_ERR(hba->cmd_queue)) {
9128 err = PTR_ERR(hba->cmd_queue);
9129 goto out_remove_scsi_host;
9132 hba->tmf_tag_set = (struct blk_mq_tag_set) {
9134 .queue_depth = hba->nutmrs,
9135 .ops = &ufshcd_tmf_ops,
9136 .flags = BLK_MQ_F_NO_SCHED,
9138 err = blk_mq_alloc_tag_set(&hba->tmf_tag_set);
9140 goto free_cmd_queue;
9141 hba->tmf_queue = blk_mq_init_queue(&hba->tmf_tag_set);
9142 if (IS_ERR(hba->tmf_queue)) {
9143 err = PTR_ERR(hba->tmf_queue);
9144 goto free_tmf_tag_set;
9147 /* Reset the attached device */
9148 ufshcd_vops_device_reset(hba);
9150 ufshcd_init_crypto(hba);
9152 /* Host controller enable */
9153 err = ufshcd_hba_enable(hba);
9155 dev_err(hba->dev, "Host controller enable failed\n");
9156 ufshcd_print_host_regs(hba);
9157 ufshcd_print_host_state(hba);
9158 goto free_tmf_queue;
9162 * Set the default power management level for runtime and system PM.
9163 * Default power saving mode is to keep UFS link in Hibern8 state
9164 * and UFS device in sleep state.
9166 hba->rpm_lvl = ufs_get_desired_pm_lvl_for_dev_link_state(
9168 UIC_LINK_HIBERN8_STATE);
9169 hba->spm_lvl = ufs_get_desired_pm_lvl_for_dev_link_state(
9171 UIC_LINK_HIBERN8_STATE);
9173 INIT_DELAYED_WORK(&hba->rpm_dev_flush_recheck_work,
9174 ufshcd_rpm_dev_flush_recheck_work);
9176 /* Set the default auto-hiberate idle timer value to 150 ms */
9177 if (ufshcd_is_auto_hibern8_supported(hba) && !hba->ahit) {
9178 hba->ahit = FIELD_PREP(UFSHCI_AHIBERN8_TIMER_MASK, 150) |
9179 FIELD_PREP(UFSHCI_AHIBERN8_SCALE_MASK, 3);
9182 /* Hold auto suspend until async scan completes */
9183 pm_runtime_get_sync(dev);
9184 atomic_set(&hba->scsi_block_reqs_cnt, 0);
9186 * We are assuming that device wasn't put in sleep/power-down
9187 * state exclusively during the boot stage before kernel.
9188 * This assumption helps avoid doing link startup twice during
9189 * ufshcd_probe_hba().
9191 ufshcd_set_ufs_dev_active(hba);
9193 async_schedule(ufshcd_async_scan, hba);
9194 ufs_sysfs_add_nodes(hba->dev);
9199 blk_cleanup_queue(hba->tmf_queue);
9201 blk_mq_free_tag_set(&hba->tmf_tag_set);
9203 blk_cleanup_queue(hba->cmd_queue);
9204 out_remove_scsi_host:
9205 scsi_remove_host(hba->host);
9207 ufshcd_exit_clk_scaling(hba);
9208 ufshcd_exit_clk_gating(hba);
9210 hba->is_irq_enabled = false;
9211 ufshcd_hba_exit(hba);
9215 EXPORT_SYMBOL_GPL(ufshcd_init);
9219 MODULE_DESCRIPTION("Generic UFS host controller driver Core");
9220 MODULE_LICENSE("GPL");
9221 MODULE_VERSION(UFSHCD_DRIVER_VERSION);