blob: 79591934ef45349d06c1ba2c4df5a21bd2cfa820 [file] [log] [blame]
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301/*
Vinayak Holikattie0eca632013-02-25 21:44:33 +05302 * Universal Flash Storage Host controller driver Core
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303 *
4 * This code is based on drivers/scsi/ufs/ufshcd.c
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305 * Copyright (C) 2011-2013 Samsung India Software Operations
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02006 * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307 *
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05308 * Authors:
9 * Santosh Yaraganavi <santosh.sy@samsung.com>
10 * Vinayak Holikatti <h.vinayak@samsung.com>
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053011 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +053016 * See the COPYING file in the top-level directory or visit
17 * <http://www.gnu.org/licenses/gpl-2.0.html>
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053018 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +053024 * This program is provided "AS IS" and "WITH ALL FAULTS" and
25 * without warranty of any kind. You are solely responsible for
26 * determining the appropriateness of using and distributing
27 * the program and assume all risks associated with your exercise
28 * of rights with respect to the program, including but not limited
29 * to infringement of third party rights, the risks and costs of
30 * program errors, damage to or loss of data, programs or equipment,
31 * and unavailability or interruption of operations. Under no
32 * circumstances will the contributor of this Program be liable for
33 * any damages of any kind arising from your use or distribution of
34 * this program.
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +030035 *
36 * The Linux Foundation chooses to take subject only to the GPLv2
37 * license terms, and distributes only under these terms.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053038 */
39
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053040#include <linux/async.h>
Sahitya Tummala856b3482014-09-25 15:32:34 +030041#include <linux/devfreq.h>
Yaniv Gardib573d482016-03-10 17:37:09 +020042#include <linux/nls.h>
Yaniv Gardi54b879b2016-03-10 17:37:05 +020043#include <linux/of.h>
Adrian Hunterad448372018-03-20 15:07:38 +020044#include <linux/bitfield.h>
Vinayak Holikattie0eca632013-02-25 21:44:33 +053045#include "ufshcd.h"
Yaniv Gardic58ab7a2016-03-10 17:37:10 +020046#include "ufs_quirks.h"
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +053047#include "unipro.h"
Stanislav Nijnikovcbb68132018-02-15 14:14:01 +020048#include "ufs-sysfs.h"
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053049
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -080050#define CREATE_TRACE_POINTS
51#include <trace/events/ufs.h>
52
Gilad Bronerdcea0bf2016-10-17 17:09:48 -070053#define UFSHCD_REQ_SENSE_SIZE 18
54
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053055#define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
56 UTP_TASK_REQ_COMPL |\
57 UFSHCD_ERROR_MASK)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053058/* UIC command timeout, unit: ms */
59#define UIC_CMD_TIMEOUT 500
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053060
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053061/* NOP OUT retries waiting for NOP IN response */
62#define NOP_OUT_RETRIES 10
63/* Timeout after 30 msecs if NOP OUT hangs without response */
64#define NOP_OUT_TIMEOUT 30 /* msecs */
65
Dolev Raviv68078d52013-07-30 00:35:58 +053066/* Query request retries */
subhashj@codeaurora.org10fe5882016-11-23 16:31:52 -080067#define QUERY_REQ_RETRIES 3
Dolev Raviv68078d52013-07-30 00:35:58 +053068/* Query request timeout */
subhashj@codeaurora.org10fe5882016-11-23 16:31:52 -080069#define QUERY_REQ_TIMEOUT 1500 /* 1.5 seconds */
Dolev Raviv68078d52013-07-30 00:35:58 +053070
Sujit Reddy Thummae2933132014-05-26 10:59:12 +053071/* Task management command timeout */
72#define TM_CMD_TIMEOUT 100 /* msecs */
73
Yaniv Gardi64238fb2016-02-01 15:02:43 +020074/* maximum number of retries for a general UIC command */
75#define UFS_UIC_COMMAND_RETRIES 3
76
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +030077/* maximum number of link-startup retries */
78#define DME_LINKSTARTUP_RETRIES 3
79
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +020080/* Maximum retries for Hibern8 enter */
81#define UIC_HIBERN8_ENTER_RETRIES 3
82
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +030083/* maximum number of reset retries before giving up */
84#define MAX_HOST_RESET_RETRIES 5
85
Dolev Raviv68078d52013-07-30 00:35:58 +053086/* Expose the flag value from utp_upiu_query.value */
87#define MASK_QUERY_UPIU_FLAG_LOC 0xFF
88
Seungwon Jeon7d568652013-08-31 21:40:20 +053089/* Interrupt aggregation default timeout, unit: 40us */
90#define INT_AGGR_DEF_TO 0x02
91
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +030092#define ufshcd_toggle_vreg(_dev, _vreg, _on) \
93 ({ \
94 int _ret; \
95 if (_on) \
96 _ret = ufshcd_enable_vreg(_dev, _vreg); \
97 else \
98 _ret = ufshcd_disable_vreg(_dev, _vreg); \
99 _ret; \
100 })
101
Dolev Raviv66cc8202016-12-22 18:39:42 -0800102#define ufshcd_hex_dump(prefix_str, buf, len) \
103print_hex_dump(KERN_ERR, prefix_str, DUMP_PREFIX_OFFSET, 16, 4, buf, len, false)
104
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530105enum {
106 UFSHCD_MAX_CHANNEL = 0,
107 UFSHCD_MAX_ID = 1,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530108 UFSHCD_CMD_PER_LUN = 32,
109 UFSHCD_CAN_QUEUE = 32,
110};
111
112/* UFSHCD states */
113enum {
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530114 UFSHCD_STATE_RESET,
115 UFSHCD_STATE_ERROR,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530116 UFSHCD_STATE_OPERATIONAL,
Zang Leigang141f8162016-11-16 11:29:37 +0800117 UFSHCD_STATE_EH_SCHEDULED,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530118};
119
120/* UFSHCD error handling flags */
121enum {
122 UFSHCD_EH_IN_PROGRESS = (1 << 0),
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530123};
124
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530125/* UFSHCD UIC layer error flags */
126enum {
127 UFSHCD_UIC_DL_PA_INIT_ERROR = (1 << 0), /* Data link layer error */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +0200128 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR = (1 << 1), /* Data link layer error */
129 UFSHCD_UIC_DL_TCx_REPLAY_ERROR = (1 << 2), /* Data link layer error */
130 UFSHCD_UIC_NL_ERROR = (1 << 3), /* Network layer error */
131 UFSHCD_UIC_TL_ERROR = (1 << 4), /* Transport Layer error */
132 UFSHCD_UIC_DME_ERROR = (1 << 5), /* DME error */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530133};
134
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530135#define ufshcd_set_eh_in_progress(h) \
Tomohiro Kusumi9c490d22017-03-28 16:49:26 +0300136 ((h)->eh_flags |= UFSHCD_EH_IN_PROGRESS)
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530137#define ufshcd_eh_in_progress(h) \
Tomohiro Kusumi9c490d22017-03-28 16:49:26 +0300138 ((h)->eh_flags & UFSHCD_EH_IN_PROGRESS)
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530139#define ufshcd_clear_eh_in_progress(h) \
Tomohiro Kusumi9c490d22017-03-28 16:49:26 +0300140 ((h)->eh_flags &= ~UFSHCD_EH_IN_PROGRESS)
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530141
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300142#define ufshcd_set_ufs_dev_active(h) \
143 ((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
144#define ufshcd_set_ufs_dev_sleep(h) \
145 ((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
146#define ufshcd_set_ufs_dev_poweroff(h) \
147 ((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
148#define ufshcd_is_ufs_dev_active(h) \
149 ((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
150#define ufshcd_is_ufs_dev_sleep(h) \
151 ((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
152#define ufshcd_is_ufs_dev_poweroff(h) \
153 ((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
154
Stanislav Nijnikovcbb68132018-02-15 14:14:01 +0200155struct ufs_pm_lvl_states ufs_pm_lvl_states[] = {
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300156 {UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE},
157 {UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE},
158 {UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE},
159 {UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE},
160 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE},
161 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE},
162};
163
164static inline enum ufs_dev_pwr_mode
165ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl)
166{
167 return ufs_pm_lvl_states[lvl].dev_state;
168}
169
170static inline enum uic_link_state
171ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl)
172{
173 return ufs_pm_lvl_states[lvl].link_state;
174}
175
subhashj@codeaurora.org0c8f7582016-12-22 18:41:11 -0800176static inline enum ufs_pm_level
177ufs_get_desired_pm_lvl_for_dev_link_state(enum ufs_dev_pwr_mode dev_state,
178 enum uic_link_state link_state)
179{
180 enum ufs_pm_level lvl;
181
182 for (lvl = UFS_PM_LVL_0; lvl < UFS_PM_LVL_MAX; lvl++) {
183 if ((ufs_pm_lvl_states[lvl].dev_state == dev_state) &&
184 (ufs_pm_lvl_states[lvl].link_state == link_state))
185 return lvl;
186 }
187
188 /* if no match found, return the level 0 */
189 return UFS_PM_LVL_0;
190}
191
Subhash Jadavani56d4a182016-12-05 19:25:32 -0800192static struct ufs_dev_fix ufs_fixups[] = {
193 /* UFS cards deviations table */
194 UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
195 UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM),
196 UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL, UFS_DEVICE_NO_VCCQ),
197 UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
198 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS),
199 UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
200 UFS_DEVICE_NO_FASTAUTO),
201 UFS_FIX(UFS_VENDOR_SAMSUNG, UFS_ANY_MODEL,
202 UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE),
203 UFS_FIX(UFS_VENDOR_TOSHIBA, UFS_ANY_MODEL,
204 UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM),
205 UFS_FIX(UFS_VENDOR_TOSHIBA, "THGLF2G9C8KBADG",
206 UFS_DEVICE_QUIRK_PA_TACTIVATE),
207 UFS_FIX(UFS_VENDOR_TOSHIBA, "THGLF2G9D8KBADG",
208 UFS_DEVICE_QUIRK_PA_TACTIVATE),
209 UFS_FIX(UFS_VENDOR_SKHYNIX, UFS_ANY_MODEL, UFS_DEVICE_NO_VCCQ),
210 UFS_FIX(UFS_VENDOR_SKHYNIX, UFS_ANY_MODEL,
211 UFS_DEVICE_QUIRK_HOST_PA_SAVECONFIGTIME),
212
213 END_FIX
214};
215
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530216static void ufshcd_tmc_handler(struct ufs_hba *hba);
217static void ufshcd_async_scan(void *data, async_cookie_t cookie);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530218static int ufshcd_reset_and_restore(struct ufs_hba *hba);
Dolev Ravive7d38252016-12-22 18:40:07 -0800219static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530220static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +0300221static void ufshcd_hba_exit(struct ufs_hba *hba);
222static int ufshcd_probe_hba(struct ufs_hba *hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300223static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
224 bool skip_ref_clk);
225static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on);
Yaniv Gardi60f01872016-03-10 17:37:11 +0200226static int ufshcd_set_vccq_rail_unused(struct ufs_hba *hba, bool unused);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300227static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
228static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
Yaniv Gardicad2e032015-03-31 17:37:14 +0300229static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300230static int ufshcd_host_reset_and_restore(struct ufs_hba *hba);
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -0800231static void ufshcd_resume_clkscaling(struct ufs_hba *hba);
232static void ufshcd_suspend_clkscaling(struct ufs_hba *hba);
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -0800233static void __ufshcd_suspend_clkscaling(struct ufs_hba *hba);
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -0800234static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300235static irqreturn_t ufshcd_intr(int irq, void *__hba);
Yaniv Gardi874237f2015-05-17 18:55:03 +0300236static int ufshcd_change_power_mode(struct ufs_hba *hba,
237 struct ufs_pa_layer_attr *pwr_mode);
Yaniv Gardi14497322016-02-01 15:02:39 +0200238static inline bool ufshcd_valid_tag(struct ufs_hba *hba, int tag)
239{
240 return tag >= 0 && tag < hba->nutrs;
241}
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300242
243static inline int ufshcd_enable_irq(struct ufs_hba *hba)
244{
245 int ret = 0;
246
247 if (!hba->is_irq_enabled) {
248 ret = request_irq(hba->irq, ufshcd_intr, IRQF_SHARED, UFSHCD,
249 hba);
250 if (ret)
251 dev_err(hba->dev, "%s: request_irq failed, ret=%d\n",
252 __func__, ret);
253 hba->is_irq_enabled = true;
254 }
255
256 return ret;
257}
258
259static inline void ufshcd_disable_irq(struct ufs_hba *hba)
260{
261 if (hba->is_irq_enabled) {
262 free_irq(hba->irq, hba);
263 hba->is_irq_enabled = false;
264 }
265}
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530266
Yaniv Gardib573d482016-03-10 17:37:09 +0200267/* replace non-printable or non-ASCII characters with spaces */
268static inline void ufshcd_remove_non_printable(char *val)
269{
270 if (!val)
271 return;
272
273 if (*val < 0x20 || *val > 0x7e)
274 *val = ' ';
275}
276
Lee Susman1a07f2d2016-12-22 18:42:03 -0800277static void ufshcd_add_command_trace(struct ufs_hba *hba,
278 unsigned int tag, const char *str)
279{
280 sector_t lba = -1;
281 u8 opcode = 0;
282 u32 intr, doorbell;
283 struct ufshcd_lrb *lrbp;
284 int transfer_len = -1;
285
286 if (!trace_ufshcd_command_enabled())
287 return;
288
289 lrbp = &hba->lrb[tag];
290
291 if (lrbp->cmd) { /* data phase exists */
292 opcode = (u8)(*lrbp->cmd->cmnd);
293 if ((opcode == READ_10) || (opcode == WRITE_10)) {
294 /*
295 * Currently we only fully trace read(10) and write(10)
296 * commands
297 */
298 if (lrbp->cmd->request && lrbp->cmd->request->bio)
299 lba =
300 lrbp->cmd->request->bio->bi_iter.bi_sector;
301 transfer_len = be32_to_cpu(
302 lrbp->ucd_req_ptr->sc.exp_data_transfer_len);
303 }
304 }
305
306 intr = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
307 doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
308 trace_ufshcd_command(dev_name(hba->dev), str, tag,
309 doorbell, transfer_len, intr, lba, opcode);
310}
311
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800312static void ufshcd_print_clk_freqs(struct ufs_hba *hba)
313{
314 struct ufs_clk_info *clki;
315 struct list_head *head = &hba->clk_list_head;
316
Szymon Mielczarek566ec9a2017-06-05 11:36:54 +0300317 if (list_empty(head))
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800318 return;
319
320 list_for_each_entry(clki, head, list) {
321 if (!IS_ERR_OR_NULL(clki->clk) && clki->min_freq &&
322 clki->max_freq)
323 dev_err(hba->dev, "clk: %s, rate: %u\n",
324 clki->name, clki->curr_freq);
325 }
326}
327
328static void ufshcd_print_uic_err_hist(struct ufs_hba *hba,
329 struct ufs_uic_err_reg_hist *err_hist, char *err_name)
330{
331 int i;
332
333 for (i = 0; i < UIC_ERR_REG_HIST_LENGTH; i++) {
334 int p = (i + err_hist->pos - 1) % UIC_ERR_REG_HIST_LENGTH;
335
336 if (err_hist->reg[p] == 0)
337 continue;
338 dev_err(hba->dev, "%s[%d] = 0x%x at %lld us\n", err_name, i,
339 err_hist->reg[p], ktime_to_us(err_hist->tstamp[p]));
340 }
341}
342
Dolev Raviv66cc8202016-12-22 18:39:42 -0800343static void ufshcd_print_host_regs(struct ufs_hba *hba)
344{
345 /*
346 * hex_dump reads its data without the readl macro. This might
347 * cause inconsistency issues on some platform, as the printed
348 * values may be from cache and not the most recent value.
349 * To know whether you are looking at an un-cached version verify
350 * that IORESOURCE_MEM flag is on when xxx_get_resource() is invoked
351 * during platform/pci probe function.
352 */
353 ufshcd_hex_dump("host regs: ", hba->mmio_base, UFSHCI_REG_SPACE_SIZE);
354 dev_err(hba->dev, "hba->ufs_version = 0x%x, hba->capabilities = 0x%x\n",
355 hba->ufs_version, hba->capabilities);
356 dev_err(hba->dev,
357 "hba->outstanding_reqs = 0x%x, hba->outstanding_tasks = 0x%x\n",
358 (u32)hba->outstanding_reqs, (u32)hba->outstanding_tasks);
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800359 dev_err(hba->dev,
360 "last_hibern8_exit_tstamp at %lld us, hibern8_exit_cnt = %d\n",
361 ktime_to_us(hba->ufs_stats.last_hibern8_exit_tstamp),
362 hba->ufs_stats.hibern8_exit_cnt);
363
364 ufshcd_print_uic_err_hist(hba, &hba->ufs_stats.pa_err, "pa_err");
365 ufshcd_print_uic_err_hist(hba, &hba->ufs_stats.dl_err, "dl_err");
366 ufshcd_print_uic_err_hist(hba, &hba->ufs_stats.nl_err, "nl_err");
367 ufshcd_print_uic_err_hist(hba, &hba->ufs_stats.tl_err, "tl_err");
368 ufshcd_print_uic_err_hist(hba, &hba->ufs_stats.dme_err, "dme_err");
369
370 ufshcd_print_clk_freqs(hba);
371
372 if (hba->vops && hba->vops->dbg_register_dump)
373 hba->vops->dbg_register_dump(hba);
Dolev Raviv66cc8202016-12-22 18:39:42 -0800374}
375
376static
377void ufshcd_print_trs(struct ufs_hba *hba, unsigned long bitmap, bool pr_prdt)
378{
379 struct ufshcd_lrb *lrbp;
Gilad Broner7fabb772017-02-03 16:56:50 -0800380 int prdt_length;
Dolev Raviv66cc8202016-12-22 18:39:42 -0800381 int tag;
382
383 for_each_set_bit(tag, &bitmap, hba->nutrs) {
384 lrbp = &hba->lrb[tag];
385
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800386 dev_err(hba->dev, "UPIU[%d] - issue time %lld us\n",
387 tag, ktime_to_us(lrbp->issue_time_stamp));
Zang Leigang09017182017-09-27 10:06:06 +0800388 dev_err(hba->dev, "UPIU[%d] - complete time %lld us\n",
389 tag, ktime_to_us(lrbp->compl_time_stamp));
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800390 dev_err(hba->dev,
391 "UPIU[%d] - Transfer Request Descriptor phys@0x%llx\n",
392 tag, (u64)lrbp->utrd_dma_addr);
393
Dolev Raviv66cc8202016-12-22 18:39:42 -0800394 ufshcd_hex_dump("UPIU TRD: ", lrbp->utr_descriptor_ptr,
395 sizeof(struct utp_transfer_req_desc));
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800396 dev_err(hba->dev, "UPIU[%d] - Request UPIU phys@0x%llx\n", tag,
397 (u64)lrbp->ucd_req_dma_addr);
Dolev Raviv66cc8202016-12-22 18:39:42 -0800398 ufshcd_hex_dump("UPIU REQ: ", lrbp->ucd_req_ptr,
399 sizeof(struct utp_upiu_req));
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800400 dev_err(hba->dev, "UPIU[%d] - Response UPIU phys@0x%llx\n", tag,
401 (u64)lrbp->ucd_rsp_dma_addr);
Dolev Raviv66cc8202016-12-22 18:39:42 -0800402 ufshcd_hex_dump("UPIU RSP: ", lrbp->ucd_rsp_ptr,
403 sizeof(struct utp_upiu_rsp));
Dolev Raviv66cc8202016-12-22 18:39:42 -0800404
Gilad Broner7fabb772017-02-03 16:56:50 -0800405 prdt_length = le16_to_cpu(
406 lrbp->utr_descriptor_ptr->prd_table_length);
407 dev_err(hba->dev,
408 "UPIU[%d] - PRDT - %d entries phys@0x%llx\n",
409 tag, prdt_length,
410 (u64)lrbp->ucd_prdt_dma_addr);
411
412 if (pr_prdt)
Dolev Raviv66cc8202016-12-22 18:39:42 -0800413 ufshcd_hex_dump("UPIU PRDT: ", lrbp->ucd_prdt_ptr,
Gilad Broner7fabb772017-02-03 16:56:50 -0800414 sizeof(struct ufshcd_sg_entry) * prdt_length);
Dolev Raviv66cc8202016-12-22 18:39:42 -0800415 }
416}
417
418static void ufshcd_print_tmrs(struct ufs_hba *hba, unsigned long bitmap)
419{
420 struct utp_task_req_desc *tmrdp;
421 int tag;
422
423 for_each_set_bit(tag, &bitmap, hba->nutmrs) {
424 tmrdp = &hba->utmrdl_base_addr[tag];
425 dev_err(hba->dev, "TM[%d] - Task Management Header\n", tag);
426 ufshcd_hex_dump("TM TRD: ", &tmrdp->header,
427 sizeof(struct request_desc_header));
428 dev_err(hba->dev, "TM[%d] - Task Management Request UPIU\n",
429 tag);
430 ufshcd_hex_dump("TM REQ: ", tmrdp->task_req_upiu,
431 sizeof(struct utp_upiu_req));
432 dev_err(hba->dev, "TM[%d] - Task Management Response UPIU\n",
433 tag);
434 ufshcd_hex_dump("TM RSP: ", tmrdp->task_rsp_upiu,
435 sizeof(struct utp_task_req_desc));
436 }
437}
438
Gilad Broner6ba65582017-02-03 16:57:28 -0800439static void ufshcd_print_host_state(struct ufs_hba *hba)
440{
441 dev_err(hba->dev, "UFS Host state=%d\n", hba->ufshcd_state);
442 dev_err(hba->dev, "lrb in use=0x%lx, outstanding reqs=0x%lx tasks=0x%lx\n",
Zang Leigange002e652017-08-24 10:57:15 +0800443 hba->lrb_in_use, hba->outstanding_reqs, hba->outstanding_tasks);
Gilad Broner6ba65582017-02-03 16:57:28 -0800444 dev_err(hba->dev, "saved_err=0x%x, saved_uic_err=0x%x\n",
445 hba->saved_err, hba->saved_uic_err);
446 dev_err(hba->dev, "Device power mode=%d, UIC link state=%d\n",
447 hba->curr_dev_pwr_mode, hba->uic_link_state);
448 dev_err(hba->dev, "PM in progress=%d, sys. suspended=%d\n",
449 hba->pm_op_in_progress, hba->is_sys_suspended);
450 dev_err(hba->dev, "Auto BKOPS=%d, Host self-block=%d\n",
451 hba->auto_bkops_enabled, hba->host->host_self_blocked);
452 dev_err(hba->dev, "Clk gate=%d\n", hba->clk_gating.state);
453 dev_err(hba->dev, "error handling flags=0x%x, req. abort count=%d\n",
454 hba->eh_flags, hba->req_abort_count);
455 dev_err(hba->dev, "Host capabilities=0x%x, caps=0x%x\n",
456 hba->capabilities, hba->caps);
457 dev_err(hba->dev, "quirks=0x%x, dev. quirks=0x%x\n", hba->quirks,
458 hba->dev_quirks);
459}
460
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800461/**
462 * ufshcd_print_pwr_info - print power params as saved in hba
463 * power info
464 * @hba: per-adapter instance
465 */
466static void ufshcd_print_pwr_info(struct ufs_hba *hba)
467{
468 static const char * const names[] = {
469 "INVALID MODE",
470 "FAST MODE",
471 "SLOW_MODE",
472 "INVALID MODE",
473 "FASTAUTO_MODE",
474 "SLOWAUTO_MODE",
475 "INVALID MODE",
476 };
477
478 dev_err(hba->dev, "%s:[RX, TX]: gear=[%d, %d], lane[%d, %d], pwr[%s, %s], rate = %d\n",
479 __func__,
480 hba->pwr_info.gear_rx, hba->pwr_info.gear_tx,
481 hba->pwr_info.lane_rx, hba->pwr_info.lane_tx,
482 names[hba->pwr_info.pwr_rx],
483 names[hba->pwr_info.pwr_tx],
484 hba->pwr_info.hs_rate);
485}
486
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530487/*
488 * ufshcd_wait_for_register - wait for register value to change
489 * @hba - per-adapter interface
490 * @reg - mmio register offset
491 * @mask - mask to apply to read register value
492 * @val - wait condition
493 * @interval_us - polling interval in microsecs
494 * @timeout_ms - timeout in millisecs
Yaniv Gardi596585a2016-03-10 17:37:08 +0200495 * @can_sleep - perform sleep or just spin
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530496 *
497 * Returns -ETIMEDOUT on error, zero on success
498 */
Yaniv Gardi596585a2016-03-10 17:37:08 +0200499int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
500 u32 val, unsigned long interval_us,
501 unsigned long timeout_ms, bool can_sleep)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530502{
503 int err = 0;
504 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
505
506 /* ignore bits that we don't intend to wait on */
507 val = val & mask;
508
509 while ((ufshcd_readl(hba, reg) & mask) != val) {
Yaniv Gardi596585a2016-03-10 17:37:08 +0200510 if (can_sleep)
511 usleep_range(interval_us, interval_us + 50);
512 else
513 udelay(interval_us);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530514 if (time_after(jiffies, timeout)) {
515 if ((ufshcd_readl(hba, reg) & mask) != val)
516 err = -ETIMEDOUT;
517 break;
518 }
519 }
520
521 return err;
522}
523
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530524/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530525 * ufshcd_get_intr_mask - Get the interrupt bit mask
Bart Van Assche8aa29f12018-03-01 15:07:20 -0800526 * @hba: Pointer to adapter instance
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530527 *
528 * Returns interrupt bit mask per version
529 */
530static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
531{
Yaniv Gardic01848c2016-12-05 19:25:02 -0800532 u32 intr_mask = 0;
533
534 switch (hba->ufs_version) {
535 case UFSHCI_VERSION_10:
536 intr_mask = INTERRUPT_MASK_ALL_VER_10;
537 break;
Yaniv Gardic01848c2016-12-05 19:25:02 -0800538 case UFSHCI_VERSION_11:
539 case UFSHCI_VERSION_20:
540 intr_mask = INTERRUPT_MASK_ALL_VER_11;
541 break;
Yaniv Gardic01848c2016-12-05 19:25:02 -0800542 case UFSHCI_VERSION_21:
543 default:
544 intr_mask = INTERRUPT_MASK_ALL_VER_21;
Tomohiro Kusumi031d1e02017-03-23 12:49:04 +0200545 break;
Yaniv Gardic01848c2016-12-05 19:25:02 -0800546 }
547
548 return intr_mask;
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530549}
550
551/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530552 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
Bart Van Assche8aa29f12018-03-01 15:07:20 -0800553 * @hba: Pointer to adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530554 *
555 * Returns UFSHCI version supported by the controller
556 */
557static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
558{
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200559 if (hba->quirks & UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION)
560 return ufshcd_vops_get_ufs_hci_version(hba);
Yaniv Gardi9949e702015-05-17 18:55:05 +0300561
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530562 return ufshcd_readl(hba, REG_UFS_VERSION);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530563}
564
565/**
566 * ufshcd_is_device_present - Check if any device connected to
567 * the host controller
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300568 * @hba: pointer to adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530569 *
Tomohiro Kusumic9e60102017-03-28 16:49:24 +0300570 * Returns true if device present, false if no device detected
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530571 */
Tomohiro Kusumic9e60102017-03-28 16:49:24 +0300572static inline bool ufshcd_is_device_present(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530573{
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300574 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) &
Tomohiro Kusumic9e60102017-03-28 16:49:24 +0300575 DEVICE_PRESENT) ? true : false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530576}
577
578/**
579 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
Bart Van Assche8aa29f12018-03-01 15:07:20 -0800580 * @lrbp: pointer to local command reference block
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530581 *
582 * This function is used to get the OCS field from UTRD
583 * Returns the OCS field in the UTRD
584 */
585static inline int ufshcd_get_tr_ocs(struct ufshcd_lrb *lrbp)
586{
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +0530587 return le32_to_cpu(lrbp->utr_descriptor_ptr->header.dword_2) & MASK_OCS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530588}
589
590/**
591 * ufshcd_get_tmr_ocs - Get the UTMRD Overall Command Status
592 * @task_req_descp: pointer to utp_task_req_desc structure
593 *
594 * This function is used to get the OCS field from UTMRD
595 * Returns the OCS field in the UTMRD
596 */
597static inline int
598ufshcd_get_tmr_ocs(struct utp_task_req_desc *task_req_descp)
599{
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +0530600 return le32_to_cpu(task_req_descp->header.dword_2) & MASK_OCS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530601}
602
603/**
604 * ufshcd_get_tm_free_slot - get a free slot for task management request
605 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530606 * @free_slot: pointer to variable with available slot value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530607 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530608 * Get a free tag and lock it until ufshcd_put_tm_slot() is called.
609 * Returns 0 if free slot is not available, else return 1 with tag value
610 * in @free_slot.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530611 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530612static bool ufshcd_get_tm_free_slot(struct ufs_hba *hba, int *free_slot)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530613{
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530614 int tag;
615 bool ret = false;
616
617 if (!free_slot)
618 goto out;
619
620 do {
621 tag = find_first_zero_bit(&hba->tm_slots_in_use, hba->nutmrs);
622 if (tag >= hba->nutmrs)
623 goto out;
624 } while (test_and_set_bit_lock(tag, &hba->tm_slots_in_use));
625
626 *free_slot = tag;
627 ret = true;
628out:
629 return ret;
630}
631
632static inline void ufshcd_put_tm_slot(struct ufs_hba *hba, int slot)
633{
634 clear_bit_unlock(slot, &hba->tm_slots_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530635}
636
637/**
638 * ufshcd_utrl_clear - Clear a bit in UTRLCLR register
639 * @hba: per adapter instance
640 * @pos: position of the bit to be cleared
641 */
642static inline void ufshcd_utrl_clear(struct ufs_hba *hba, u32 pos)
643{
Alim Akhtar1399c5b2018-05-06 15:44:15 +0530644 if (hba->quirks & UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR)
645 ufshcd_writel(hba, (1 << pos), REG_UTP_TRANSFER_REQ_LIST_CLEAR);
646 else
647 ufshcd_writel(hba, ~(1 << pos),
648 REG_UTP_TRANSFER_REQ_LIST_CLEAR);
649}
650
651/**
652 * ufshcd_utmrl_clear - Clear a bit in UTRMLCLR register
653 * @hba: per adapter instance
654 * @pos: position of the bit to be cleared
655 */
656static inline void ufshcd_utmrl_clear(struct ufs_hba *hba, u32 pos)
657{
658 if (hba->quirks & UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR)
659 ufshcd_writel(hba, (1 << pos), REG_UTP_TASK_REQ_LIST_CLEAR);
660 else
661 ufshcd_writel(hba, ~(1 << pos), REG_UTP_TASK_REQ_LIST_CLEAR);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530662}
663
664/**
Yaniv Gardia48353f2016-02-01 15:02:40 +0200665 * ufshcd_outstanding_req_clear - Clear a bit in outstanding request field
666 * @hba: per adapter instance
667 * @tag: position of the bit to be cleared
668 */
669static inline void ufshcd_outstanding_req_clear(struct ufs_hba *hba, int tag)
670{
671 __clear_bit(tag, &hba->outstanding_reqs);
672}
673
674/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530675 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
676 * @reg: Register value of host controller status
677 *
678 * Returns integer, 0 on Success and positive value if failed
679 */
680static inline int ufshcd_get_lists_status(u32 reg)
681{
Tomohiro Kusumi6cf16112017-04-26 20:28:58 +0300682 return !((reg & UFSHCD_STATUS_READY) == UFSHCD_STATUS_READY);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530683}
684
685/**
686 * ufshcd_get_uic_cmd_result - Get the UIC command result
687 * @hba: Pointer to adapter instance
688 *
689 * This function gets the result of UIC command completion
690 * Returns 0 on success, non zero value on error
691 */
692static inline int ufshcd_get_uic_cmd_result(struct ufs_hba *hba)
693{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530694 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2) &
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530695 MASK_UIC_COMMAND_RESULT;
696}
697
698/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +0530699 * ufshcd_get_dme_attr_val - Get the value of attribute returned by UIC command
700 * @hba: Pointer to adapter instance
701 *
702 * This function gets UIC command argument3
703 * Returns 0 on success, non zero value on error
704 */
705static inline u32 ufshcd_get_dme_attr_val(struct ufs_hba *hba)
706{
707 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
708}
709
710/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530711 * ufshcd_get_req_rsp - returns the TR response transaction type
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530712 * @ucd_rsp_ptr: pointer to response UPIU
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530713 */
714static inline int
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530715ufshcd_get_req_rsp(struct utp_upiu_rsp *ucd_rsp_ptr)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530716{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530717 return be32_to_cpu(ucd_rsp_ptr->header.dword_0) >> 24;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530718}
719
720/**
721 * ufshcd_get_rsp_upiu_result - Get the result from response UPIU
722 * @ucd_rsp_ptr: pointer to response UPIU
723 *
724 * This function gets the response status and scsi_status from response UPIU
725 * Returns the response result code.
726 */
727static inline int
728ufshcd_get_rsp_upiu_result(struct utp_upiu_rsp *ucd_rsp_ptr)
729{
730 return be32_to_cpu(ucd_rsp_ptr->header.dword_1) & MASK_RSP_UPIU_RESULT;
731}
732
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530733/*
734 * ufshcd_get_rsp_upiu_data_seg_len - Get the data segment length
735 * from response UPIU
736 * @ucd_rsp_ptr: pointer to response UPIU
737 *
738 * Return the data segment length.
739 */
740static inline unsigned int
741ufshcd_get_rsp_upiu_data_seg_len(struct utp_upiu_rsp *ucd_rsp_ptr)
742{
743 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
744 MASK_RSP_UPIU_DATA_SEG_LEN;
745}
746
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530747/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530748 * ufshcd_is_exception_event - Check if the device raised an exception event
749 * @ucd_rsp_ptr: pointer to response UPIU
750 *
751 * The function checks if the device raised an exception event indicated in
752 * the Device Information field of response UPIU.
753 *
754 * Returns true if exception is raised, false otherwise.
755 */
756static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp *ucd_rsp_ptr)
757{
758 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
759 MASK_RSP_EXCEPTION_EVENT ? true : false;
760}
761
762/**
Seungwon Jeon7d568652013-08-31 21:40:20 +0530763 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530764 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530765 */
766static inline void
Seungwon Jeon7d568652013-08-31 21:40:20 +0530767ufshcd_reset_intr_aggr(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530768{
Seungwon Jeon7d568652013-08-31 21:40:20 +0530769 ufshcd_writel(hba, INT_AGGR_ENABLE |
770 INT_AGGR_COUNTER_AND_TIMER_RESET,
771 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
772}
773
774/**
775 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
776 * @hba: per adapter instance
777 * @cnt: Interrupt aggregation counter threshold
778 * @tmout: Interrupt aggregation timeout value
779 */
780static inline void
781ufshcd_config_intr_aggr(struct ufs_hba *hba, u8 cnt, u8 tmout)
782{
783 ufshcd_writel(hba, INT_AGGR_ENABLE | INT_AGGR_PARAM_WRITE |
784 INT_AGGR_COUNTER_THLD_VAL(cnt) |
785 INT_AGGR_TIMEOUT_VAL(tmout),
786 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530787}
788
789/**
Yaniv Gardib8521902015-05-17 18:54:57 +0300790 * ufshcd_disable_intr_aggr - Disables interrupt aggregation.
791 * @hba: per adapter instance
792 */
793static inline void ufshcd_disable_intr_aggr(struct ufs_hba *hba)
794{
795 ufshcd_writel(hba, 0, REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
796}
797
798/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530799 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
800 * When run-stop registers are set to 1, it indicates the
801 * host controller that it can process the requests
802 * @hba: per adapter instance
803 */
804static void ufshcd_enable_run_stop_reg(struct ufs_hba *hba)
805{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530806 ufshcd_writel(hba, UTP_TASK_REQ_LIST_RUN_STOP_BIT,
807 REG_UTP_TASK_REQ_LIST_RUN_STOP);
808 ufshcd_writel(hba, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT,
809 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530810}
811
812/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530813 * ufshcd_hba_start - Start controller initialization sequence
814 * @hba: per adapter instance
815 */
816static inline void ufshcd_hba_start(struct ufs_hba *hba)
817{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530818 ufshcd_writel(hba, CONTROLLER_ENABLE, REG_CONTROLLER_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530819}
820
821/**
822 * ufshcd_is_hba_active - Get controller state
823 * @hba: per adapter instance
824 *
Tomohiro Kusumic9e60102017-03-28 16:49:24 +0300825 * Returns false if controller is active, true otherwise
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530826 */
Tomohiro Kusumic9e60102017-03-28 16:49:24 +0300827static inline bool ufshcd_is_hba_active(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530828{
Tomohiro Kusumi4a8eec22017-03-28 16:49:25 +0300829 return (ufshcd_readl(hba, REG_CONTROLLER_ENABLE) & CONTROLLER_ENABLE)
830 ? false : true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530831}
832
Yaniv Gardi37113102016-03-10 17:37:16 +0200833u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba)
834{
835 /* HCI version 1.0 and 1.1 supports UniPro 1.41 */
836 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
837 (hba->ufs_version == UFSHCI_VERSION_11))
838 return UFS_UNIPRO_VER_1_41;
839 else
840 return UFS_UNIPRO_VER_1_6;
841}
842EXPORT_SYMBOL(ufshcd_get_local_unipro_ver);
843
844static bool ufshcd_is_unipro_pa_params_tuning_req(struct ufs_hba *hba)
845{
846 /*
847 * If both host and device support UniPro ver1.6 or later, PA layer
848 * parameters tuning happens during link startup itself.
849 *
850 * We can manually tune PA layer parameters if either host or device
851 * doesn't support UniPro ver 1.6 or later. But to keep manual tuning
852 * logic simple, we will only do manual tuning if local unipro version
853 * doesn't support ver1.6 or later.
854 */
855 if (ufshcd_get_local_unipro_ver(hba) < UFS_UNIPRO_VER_1_6)
856 return true;
857 else
858 return false;
859}
860
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -0800861static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up)
862{
863 int ret = 0;
864 struct ufs_clk_info *clki;
865 struct list_head *head = &hba->clk_list_head;
866 ktime_t start = ktime_get();
867 bool clk_state_changed = false;
868
Szymon Mielczarek566ec9a2017-06-05 11:36:54 +0300869 if (list_empty(head))
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -0800870 goto out;
871
872 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, PRE_CHANGE);
873 if (ret)
874 return ret;
875
876 list_for_each_entry(clki, head, list) {
877 if (!IS_ERR_OR_NULL(clki->clk)) {
878 if (scale_up && clki->max_freq) {
879 if (clki->curr_freq == clki->max_freq)
880 continue;
881
882 clk_state_changed = true;
883 ret = clk_set_rate(clki->clk, clki->max_freq);
884 if (ret) {
885 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
886 __func__, clki->name,
887 clki->max_freq, ret);
888 break;
889 }
890 trace_ufshcd_clk_scaling(dev_name(hba->dev),
891 "scaled up", clki->name,
892 clki->curr_freq,
893 clki->max_freq);
894
895 clki->curr_freq = clki->max_freq;
896
897 } else if (!scale_up && clki->min_freq) {
898 if (clki->curr_freq == clki->min_freq)
899 continue;
900
901 clk_state_changed = true;
902 ret = clk_set_rate(clki->clk, clki->min_freq);
903 if (ret) {
904 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
905 __func__, clki->name,
906 clki->min_freq, ret);
907 break;
908 }
909 trace_ufshcd_clk_scaling(dev_name(hba->dev),
910 "scaled down", clki->name,
911 clki->curr_freq,
912 clki->min_freq);
913 clki->curr_freq = clki->min_freq;
914 }
915 }
916 dev_dbg(hba->dev, "%s: clk: %s, rate: %lu\n", __func__,
917 clki->name, clk_get_rate(clki->clk));
918 }
919
920 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, POST_CHANGE);
921
922out:
923 if (clk_state_changed)
924 trace_ufshcd_profile_clk_scaling(dev_name(hba->dev),
925 (scale_up ? "up" : "down"),
926 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
927 return ret;
928}
929
930/**
931 * ufshcd_is_devfreq_scaling_required - check if scaling is required or not
932 * @hba: per adapter instance
933 * @scale_up: True if scaling up and false if scaling down
934 *
935 * Returns true if scaling is required, false otherwise.
936 */
937static bool ufshcd_is_devfreq_scaling_required(struct ufs_hba *hba,
938 bool scale_up)
939{
940 struct ufs_clk_info *clki;
941 struct list_head *head = &hba->clk_list_head;
942
Szymon Mielczarek566ec9a2017-06-05 11:36:54 +0300943 if (list_empty(head))
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -0800944 return false;
945
946 list_for_each_entry(clki, head, list) {
947 if (!IS_ERR_OR_NULL(clki->clk)) {
948 if (scale_up && clki->max_freq) {
949 if (clki->curr_freq == clki->max_freq)
950 continue;
951 return true;
952 } else if (!scale_up && clki->min_freq) {
953 if (clki->curr_freq == clki->min_freq)
954 continue;
955 return true;
956 }
957 }
958 }
959
960 return false;
961}
962
963static int ufshcd_wait_for_doorbell_clr(struct ufs_hba *hba,
964 u64 wait_timeout_us)
965{
966 unsigned long flags;
967 int ret = 0;
968 u32 tm_doorbell;
969 u32 tr_doorbell;
970 bool timeout = false, do_last_check = false;
971 ktime_t start;
972
973 ufshcd_hold(hba, false);
974 spin_lock_irqsave(hba->host->host_lock, flags);
975 /*
976 * Wait for all the outstanding tasks/transfer requests.
977 * Verify by checking the doorbell registers are clear.
978 */
979 start = ktime_get();
980 do {
981 if (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL) {
982 ret = -EBUSY;
983 goto out;
984 }
985
986 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
987 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
988 if (!tm_doorbell && !tr_doorbell) {
989 timeout = false;
990 break;
991 } else if (do_last_check) {
992 break;
993 }
994
995 spin_unlock_irqrestore(hba->host->host_lock, flags);
996 schedule();
997 if (ktime_to_us(ktime_sub(ktime_get(), start)) >
998 wait_timeout_us) {
999 timeout = true;
1000 /*
1001 * We might have scheduled out for long time so make
1002 * sure to check if doorbells are cleared by this time
1003 * or not.
1004 */
1005 do_last_check = true;
1006 }
1007 spin_lock_irqsave(hba->host->host_lock, flags);
1008 } while (tm_doorbell || tr_doorbell);
1009
1010 if (timeout) {
1011 dev_err(hba->dev,
1012 "%s: timedout waiting for doorbell to clear (tm=0x%x, tr=0x%x)\n",
1013 __func__, tm_doorbell, tr_doorbell);
1014 ret = -EBUSY;
1015 }
1016out:
1017 spin_unlock_irqrestore(hba->host->host_lock, flags);
1018 ufshcd_release(hba);
1019 return ret;
1020}
1021
1022/**
1023 * ufshcd_scale_gear - scale up/down UFS gear
1024 * @hba: per adapter instance
1025 * @scale_up: True for scaling up gear and false for scaling down
1026 *
1027 * Returns 0 for success,
1028 * Returns -EBUSY if scaling can't happen at this time
1029 * Returns non-zero for any other errors
1030 */
1031static int ufshcd_scale_gear(struct ufs_hba *hba, bool scale_up)
1032{
1033 #define UFS_MIN_GEAR_TO_SCALE_DOWN UFS_HS_G1
1034 int ret = 0;
1035 struct ufs_pa_layer_attr new_pwr_info;
1036
1037 if (scale_up) {
1038 memcpy(&new_pwr_info, &hba->clk_scaling.saved_pwr_info.info,
1039 sizeof(struct ufs_pa_layer_attr));
1040 } else {
1041 memcpy(&new_pwr_info, &hba->pwr_info,
1042 sizeof(struct ufs_pa_layer_attr));
1043
1044 if (hba->pwr_info.gear_tx > UFS_MIN_GEAR_TO_SCALE_DOWN
1045 || hba->pwr_info.gear_rx > UFS_MIN_GEAR_TO_SCALE_DOWN) {
1046 /* save the current power mode */
1047 memcpy(&hba->clk_scaling.saved_pwr_info.info,
1048 &hba->pwr_info,
1049 sizeof(struct ufs_pa_layer_attr));
1050
1051 /* scale down gear */
1052 new_pwr_info.gear_tx = UFS_MIN_GEAR_TO_SCALE_DOWN;
1053 new_pwr_info.gear_rx = UFS_MIN_GEAR_TO_SCALE_DOWN;
1054 }
1055 }
1056
1057 /* check if the power mode needs to be changed or not? */
1058 ret = ufshcd_change_power_mode(hba, &new_pwr_info);
1059
1060 if (ret)
1061 dev_err(hba->dev, "%s: failed err %d, old gear: (tx %d rx %d), new gear: (tx %d rx %d)",
1062 __func__, ret,
1063 hba->pwr_info.gear_tx, hba->pwr_info.gear_rx,
1064 new_pwr_info.gear_tx, new_pwr_info.gear_rx);
1065
1066 return ret;
1067}
1068
1069static int ufshcd_clock_scaling_prepare(struct ufs_hba *hba)
1070{
1071 #define DOORBELL_CLR_TOUT_US (1000 * 1000) /* 1 sec */
1072 int ret = 0;
1073 /*
1074 * make sure that there are no outstanding requests when
1075 * clock scaling is in progress
1076 */
1077 scsi_block_requests(hba->host);
1078 down_write(&hba->clk_scaling_lock);
1079 if (ufshcd_wait_for_doorbell_clr(hba, DOORBELL_CLR_TOUT_US)) {
1080 ret = -EBUSY;
1081 up_write(&hba->clk_scaling_lock);
1082 scsi_unblock_requests(hba->host);
1083 }
1084
1085 return ret;
1086}
1087
1088static void ufshcd_clock_scaling_unprepare(struct ufs_hba *hba)
1089{
1090 up_write(&hba->clk_scaling_lock);
1091 scsi_unblock_requests(hba->host);
1092}
1093
1094/**
1095 * ufshcd_devfreq_scale - scale up/down UFS clocks and gear
1096 * @hba: per adapter instance
1097 * @scale_up: True for scaling up and false for scalin down
1098 *
1099 * Returns 0 for success,
1100 * Returns -EBUSY if scaling can't happen at this time
1101 * Returns non-zero for any other errors
1102 */
1103static int ufshcd_devfreq_scale(struct ufs_hba *hba, bool scale_up)
1104{
1105 int ret = 0;
1106
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001107 /* let's not get into low power until clock scaling is completed */
1108 ufshcd_hold(hba, false);
1109
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001110 ret = ufshcd_clock_scaling_prepare(hba);
1111 if (ret)
1112 return ret;
1113
1114 /* scale down the gear before scaling down clocks */
1115 if (!scale_up) {
1116 ret = ufshcd_scale_gear(hba, false);
1117 if (ret)
1118 goto out;
1119 }
1120
1121 ret = ufshcd_scale_clks(hba, scale_up);
1122 if (ret) {
1123 if (!scale_up)
1124 ufshcd_scale_gear(hba, true);
1125 goto out;
1126 }
1127
1128 /* scale up the gear after scaling up clocks */
1129 if (scale_up) {
1130 ret = ufshcd_scale_gear(hba, true);
1131 if (ret) {
1132 ufshcd_scale_clks(hba, false);
1133 goto out;
1134 }
1135 }
1136
1137 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, POST_CHANGE);
1138
1139out:
1140 ufshcd_clock_scaling_unprepare(hba);
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001141 ufshcd_release(hba);
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001142 return ret;
1143}
1144
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001145static void ufshcd_clk_scaling_suspend_work(struct work_struct *work)
1146{
1147 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1148 clk_scaling.suspend_work);
1149 unsigned long irq_flags;
1150
1151 spin_lock_irqsave(hba->host->host_lock, irq_flags);
1152 if (hba->clk_scaling.active_reqs || hba->clk_scaling.is_suspended) {
1153 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1154 return;
1155 }
1156 hba->clk_scaling.is_suspended = true;
1157 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1158
1159 __ufshcd_suspend_clkscaling(hba);
1160}
1161
1162static void ufshcd_clk_scaling_resume_work(struct work_struct *work)
1163{
1164 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1165 clk_scaling.resume_work);
1166 unsigned long irq_flags;
1167
1168 spin_lock_irqsave(hba->host->host_lock, irq_flags);
1169 if (!hba->clk_scaling.is_suspended) {
1170 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1171 return;
1172 }
1173 hba->clk_scaling.is_suspended = false;
1174 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1175
1176 devfreq_resume_device(hba->devfreq);
1177}
1178
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001179static int ufshcd_devfreq_target(struct device *dev,
1180 unsigned long *freq, u32 flags)
1181{
1182 int ret = 0;
1183 struct ufs_hba *hba = dev_get_drvdata(dev);
1184 ktime_t start;
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001185 bool scale_up, sched_clk_scaling_suspend_work = false;
Bjorn Andersson092b4552018-05-17 23:26:37 -07001186 struct list_head *clk_list = &hba->clk_list_head;
1187 struct ufs_clk_info *clki;
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001188 unsigned long irq_flags;
1189
1190 if (!ufshcd_is_clkscaling_supported(hba))
1191 return -EINVAL;
1192
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001193 spin_lock_irqsave(hba->host->host_lock, irq_flags);
1194 if (ufshcd_eh_in_progress(hba)) {
1195 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1196 return 0;
1197 }
1198
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001199 if (!hba->clk_scaling.active_reqs)
1200 sched_clk_scaling_suspend_work = true;
1201
Bjorn Andersson092b4552018-05-17 23:26:37 -07001202 if (list_empty(clk_list)) {
1203 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1204 goto out;
1205 }
1206
1207 clki = list_first_entry(&hba->clk_list_head, struct ufs_clk_info, list);
1208 scale_up = (*freq == clki->max_freq) ? true : false;
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001209 if (!ufshcd_is_devfreq_scaling_required(hba, scale_up)) {
1210 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1211 ret = 0;
1212 goto out; /* no state change required */
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001213 }
1214 spin_unlock_irqrestore(hba->host->host_lock, irq_flags);
1215
1216 start = ktime_get();
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001217 ret = ufshcd_devfreq_scale(hba, scale_up);
1218
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001219 trace_ufshcd_profile_clk_scaling(dev_name(hba->dev),
1220 (scale_up ? "up" : "down"),
1221 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
1222
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001223out:
1224 if (sched_clk_scaling_suspend_work)
1225 queue_work(hba->clk_scaling.workq,
1226 &hba->clk_scaling.suspend_work);
1227
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001228 return ret;
1229}
1230
1231
1232static int ufshcd_devfreq_get_dev_status(struct device *dev,
1233 struct devfreq_dev_status *stat)
1234{
1235 struct ufs_hba *hba = dev_get_drvdata(dev);
1236 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
1237 unsigned long flags;
1238
1239 if (!ufshcd_is_clkscaling_supported(hba))
1240 return -EINVAL;
1241
1242 memset(stat, 0, sizeof(*stat));
1243
1244 spin_lock_irqsave(hba->host->host_lock, flags);
1245 if (!scaling->window_start_t)
1246 goto start_window;
1247
1248 if (scaling->is_busy_started)
1249 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
1250 scaling->busy_start_t));
1251
1252 stat->total_time = jiffies_to_usecs((long)jiffies -
1253 (long)scaling->window_start_t);
1254 stat->busy_time = scaling->tot_busy_t;
1255start_window:
1256 scaling->window_start_t = jiffies;
1257 scaling->tot_busy_t = 0;
1258
1259 if (hba->outstanding_reqs) {
1260 scaling->busy_start_t = ktime_get();
1261 scaling->is_busy_started = true;
1262 } else {
1263 scaling->busy_start_t = 0;
1264 scaling->is_busy_started = false;
1265 }
1266 spin_unlock_irqrestore(hba->host->host_lock, flags);
1267 return 0;
1268}
1269
1270static struct devfreq_dev_profile ufs_devfreq_profile = {
1271 .polling_ms = 100,
1272 .target = ufshcd_devfreq_target,
1273 .get_dev_status = ufshcd_devfreq_get_dev_status,
1274};
1275
Bjorn Anderssondeac4442018-05-17 23:26:36 -07001276static int ufshcd_devfreq_init(struct ufs_hba *hba)
1277{
Bjorn Andersson092b4552018-05-17 23:26:37 -07001278 struct list_head *clk_list = &hba->clk_list_head;
1279 struct ufs_clk_info *clki;
Bjorn Anderssondeac4442018-05-17 23:26:36 -07001280 struct devfreq *devfreq;
1281 int ret;
1282
Bjorn Andersson092b4552018-05-17 23:26:37 -07001283 /* Skip devfreq if we don't have any clocks in the list */
1284 if (list_empty(clk_list))
1285 return 0;
1286
1287 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1288 dev_pm_opp_add(hba->dev, clki->min_freq, 0);
1289 dev_pm_opp_add(hba->dev, clki->max_freq, 0);
1290
1291 devfreq = devfreq_add_device(hba->dev,
Bjorn Anderssondeac4442018-05-17 23:26:36 -07001292 &ufs_devfreq_profile,
1293 DEVFREQ_GOV_SIMPLE_ONDEMAND,
1294 NULL);
1295 if (IS_ERR(devfreq)) {
1296 ret = PTR_ERR(devfreq);
1297 dev_err(hba->dev, "Unable to register with devfreq %d\n", ret);
Bjorn Andersson092b4552018-05-17 23:26:37 -07001298
1299 dev_pm_opp_remove(hba->dev, clki->min_freq);
1300 dev_pm_opp_remove(hba->dev, clki->max_freq);
Bjorn Anderssondeac4442018-05-17 23:26:36 -07001301 return ret;
1302 }
1303
1304 hba->devfreq = devfreq;
1305
1306 return 0;
1307}
1308
Bjorn Andersson092b4552018-05-17 23:26:37 -07001309static void ufshcd_devfreq_remove(struct ufs_hba *hba)
1310{
1311 struct list_head *clk_list = &hba->clk_list_head;
1312 struct ufs_clk_info *clki;
1313
1314 if (!hba->devfreq)
1315 return;
1316
1317 devfreq_remove_device(hba->devfreq);
1318 hba->devfreq = NULL;
1319
1320 clki = list_first_entry(clk_list, struct ufs_clk_info, list);
1321 dev_pm_opp_remove(hba->dev, clki->min_freq);
1322 dev_pm_opp_remove(hba->dev, clki->max_freq);
1323}
1324
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001325static void __ufshcd_suspend_clkscaling(struct ufs_hba *hba)
1326{
1327 unsigned long flags;
1328
1329 devfreq_suspend_device(hba->devfreq);
1330 spin_lock_irqsave(hba->host->host_lock, flags);
1331 hba->clk_scaling.window_start_t = 0;
1332 spin_unlock_irqrestore(hba->host->host_lock, flags);
1333}
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001334
Gilad Bronera5082532016-10-17 17:10:00 -07001335static void ufshcd_suspend_clkscaling(struct ufs_hba *hba)
1336{
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001337 unsigned long flags;
1338 bool suspend = false;
1339
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001340 if (!ufshcd_is_clkscaling_supported(hba))
1341 return;
1342
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001343 spin_lock_irqsave(hba->host->host_lock, flags);
1344 if (!hba->clk_scaling.is_suspended) {
1345 suspend = true;
1346 hba->clk_scaling.is_suspended = true;
1347 }
1348 spin_unlock_irqrestore(hba->host->host_lock, flags);
1349
1350 if (suspend)
1351 __ufshcd_suspend_clkscaling(hba);
Gilad Bronera5082532016-10-17 17:10:00 -07001352}
1353
1354static void ufshcd_resume_clkscaling(struct ufs_hba *hba)
1355{
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001356 unsigned long flags;
1357 bool resume = false;
1358
1359 if (!ufshcd_is_clkscaling_supported(hba))
1360 return;
1361
1362 spin_lock_irqsave(hba->host->host_lock, flags);
1363 if (hba->clk_scaling.is_suspended) {
1364 resume = true;
1365 hba->clk_scaling.is_suspended = false;
1366 }
1367 spin_unlock_irqrestore(hba->host->host_lock, flags);
1368
1369 if (resume)
1370 devfreq_resume_device(hba->devfreq);
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001371}
1372
1373static ssize_t ufshcd_clkscale_enable_show(struct device *dev,
1374 struct device_attribute *attr, char *buf)
1375{
1376 struct ufs_hba *hba = dev_get_drvdata(dev);
1377
1378 return snprintf(buf, PAGE_SIZE, "%d\n", hba->clk_scaling.is_allowed);
1379}
1380
1381static ssize_t ufshcd_clkscale_enable_store(struct device *dev,
1382 struct device_attribute *attr, const char *buf, size_t count)
1383{
1384 struct ufs_hba *hba = dev_get_drvdata(dev);
1385 u32 value;
1386 int err;
1387
1388 if (kstrtou32(buf, 0, &value))
1389 return -EINVAL;
1390
1391 value = !!value;
1392 if (value == hba->clk_scaling.is_allowed)
1393 goto out;
1394
1395 pm_runtime_get_sync(hba->dev);
1396 ufshcd_hold(hba, false);
1397
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001398 cancel_work_sync(&hba->clk_scaling.suspend_work);
1399 cancel_work_sync(&hba->clk_scaling.resume_work);
1400
1401 hba->clk_scaling.is_allowed = value;
1402
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001403 if (value) {
1404 ufshcd_resume_clkscaling(hba);
1405 } else {
1406 ufshcd_suspend_clkscaling(hba);
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001407 err = ufshcd_devfreq_scale(hba, true);
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001408 if (err)
1409 dev_err(hba->dev, "%s: failed to scale clocks up %d\n",
1410 __func__, err);
1411 }
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001412
1413 ufshcd_release(hba);
1414 pm_runtime_put_sync(hba->dev);
1415out:
1416 return count;
Gilad Bronera5082532016-10-17 17:10:00 -07001417}
1418
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08001419static void ufshcd_clkscaling_init_sysfs(struct ufs_hba *hba)
1420{
1421 hba->clk_scaling.enable_attr.show = ufshcd_clkscale_enable_show;
1422 hba->clk_scaling.enable_attr.store = ufshcd_clkscale_enable_store;
1423 sysfs_attr_init(&hba->clk_scaling.enable_attr.attr);
1424 hba->clk_scaling.enable_attr.attr.name = "clkscale_enable";
1425 hba->clk_scaling.enable_attr.attr.mode = 0644;
1426 if (device_create_file(hba->dev, &hba->clk_scaling.enable_attr))
1427 dev_err(hba->dev, "Failed to create sysfs for clkscale_enable\n");
1428}
1429
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001430static void ufshcd_ungate_work(struct work_struct *work)
1431{
1432 int ret;
1433 unsigned long flags;
1434 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1435 clk_gating.ungate_work);
1436
1437 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
1438
1439 spin_lock_irqsave(hba->host->host_lock, flags);
1440 if (hba->clk_gating.state == CLKS_ON) {
1441 spin_unlock_irqrestore(hba->host->host_lock, flags);
1442 goto unblock_reqs;
1443 }
1444
1445 spin_unlock_irqrestore(hba->host->host_lock, flags);
1446 ufshcd_setup_clocks(hba, true);
1447
1448 /* Exit from hibern8 */
1449 if (ufshcd_can_hibern8_during_gating(hba)) {
1450 /* Prevent gating in this path */
1451 hba->clk_gating.is_suspended = true;
1452 if (ufshcd_is_link_hibern8(hba)) {
1453 ret = ufshcd_uic_hibern8_exit(hba);
1454 if (ret)
1455 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
1456 __func__, ret);
1457 else
1458 ufshcd_set_link_active(hba);
1459 }
1460 hba->clk_gating.is_suspended = false;
1461 }
1462unblock_reqs:
1463 scsi_unblock_requests(hba->host);
1464}
1465
1466/**
1467 * ufshcd_hold - Enable clocks that were gated earlier due to ufshcd_release.
1468 * Also, exit from hibern8 mode and set the link as active.
1469 * @hba: per adapter instance
1470 * @async: This indicates whether caller should ungate clocks asynchronously.
1471 */
1472int ufshcd_hold(struct ufs_hba *hba, bool async)
1473{
1474 int rc = 0;
1475 unsigned long flags;
1476
1477 if (!ufshcd_is_clkgating_allowed(hba))
1478 goto out;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001479 spin_lock_irqsave(hba->host->host_lock, flags);
1480 hba->clk_gating.active_reqs++;
1481
Yaniv Gardi53c12d02016-02-01 15:02:45 +02001482 if (ufshcd_eh_in_progress(hba)) {
1483 spin_unlock_irqrestore(hba->host->host_lock, flags);
1484 return 0;
1485 }
1486
Sahitya Tummala856b3482014-09-25 15:32:34 +03001487start:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001488 switch (hba->clk_gating.state) {
1489 case CLKS_ON:
Venkat Gopalakrishnanf2a785a2016-10-17 17:10:53 -07001490 /*
1491 * Wait for the ungate work to complete if in progress.
1492 * Though the clocks may be in ON state, the link could
1493 * still be in hibner8 state if hibern8 is allowed
1494 * during clock gating.
1495 * Make sure we exit hibern8 state also in addition to
1496 * clocks being ON.
1497 */
1498 if (ufshcd_can_hibern8_during_gating(hba) &&
1499 ufshcd_is_link_hibern8(hba)) {
1500 spin_unlock_irqrestore(hba->host->host_lock, flags);
1501 flush_work(&hba->clk_gating.ungate_work);
1502 spin_lock_irqsave(hba->host->host_lock, flags);
1503 goto start;
1504 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001505 break;
1506 case REQ_CLKS_OFF:
1507 if (cancel_delayed_work(&hba->clk_gating.gate_work)) {
1508 hba->clk_gating.state = CLKS_ON;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001509 trace_ufshcd_clk_gating(dev_name(hba->dev),
1510 hba->clk_gating.state);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001511 break;
1512 }
1513 /*
Tomohiro Kusumi9c490d22017-03-28 16:49:26 +03001514 * If we are here, it means gating work is either done or
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001515 * currently running. Hence, fall through to cancel gating
1516 * work and to enable clocks.
1517 */
1518 case CLKS_OFF:
1519 scsi_block_requests(hba->host);
1520 hba->clk_gating.state = REQ_CLKS_ON;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001521 trace_ufshcd_clk_gating(dev_name(hba->dev),
1522 hba->clk_gating.state);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001523 schedule_work(&hba->clk_gating.ungate_work);
1524 /*
1525 * fall through to check if we should wait for this
1526 * work to be done or not.
1527 */
1528 case REQ_CLKS_ON:
1529 if (async) {
1530 rc = -EAGAIN;
1531 hba->clk_gating.active_reqs--;
1532 break;
1533 }
1534
1535 spin_unlock_irqrestore(hba->host->host_lock, flags);
1536 flush_work(&hba->clk_gating.ungate_work);
1537 /* Make sure state is CLKS_ON before returning */
Sahitya Tummala856b3482014-09-25 15:32:34 +03001538 spin_lock_irqsave(hba->host->host_lock, flags);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001539 goto start;
1540 default:
1541 dev_err(hba->dev, "%s: clk gating is in invalid state %d\n",
1542 __func__, hba->clk_gating.state);
1543 break;
1544 }
1545 spin_unlock_irqrestore(hba->host->host_lock, flags);
1546out:
1547 return rc;
1548}
Yaniv Gardi6e3fd442015-10-28 13:15:50 +02001549EXPORT_SYMBOL_GPL(ufshcd_hold);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001550
1551static void ufshcd_gate_work(struct work_struct *work)
1552{
1553 struct ufs_hba *hba = container_of(work, struct ufs_hba,
1554 clk_gating.gate_work.work);
1555 unsigned long flags;
1556
1557 spin_lock_irqsave(hba->host->host_lock, flags);
Venkat Gopalakrishnan3f0c06d2016-10-17 17:11:07 -07001558 /*
1559 * In case you are here to cancel this work the gating state
1560 * would be marked as REQ_CLKS_ON. In this case save time by
1561 * skipping the gating work and exit after changing the clock
1562 * state to CLKS_ON.
1563 */
1564 if (hba->clk_gating.is_suspended ||
1565 (hba->clk_gating.state == REQ_CLKS_ON)) {
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001566 hba->clk_gating.state = CLKS_ON;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001567 trace_ufshcd_clk_gating(dev_name(hba->dev),
1568 hba->clk_gating.state);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001569 goto rel_lock;
1570 }
1571
1572 if (hba->clk_gating.active_reqs
1573 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
1574 || hba->lrb_in_use || hba->outstanding_tasks
1575 || hba->active_uic_cmd || hba->uic_async_done)
1576 goto rel_lock;
1577
1578 spin_unlock_irqrestore(hba->host->host_lock, flags);
1579
1580 /* put the link into hibern8 mode before turning off clocks */
1581 if (ufshcd_can_hibern8_during_gating(hba)) {
1582 if (ufshcd_uic_hibern8_enter(hba)) {
1583 hba->clk_gating.state = CLKS_ON;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001584 trace_ufshcd_clk_gating(dev_name(hba->dev),
1585 hba->clk_gating.state);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001586 goto out;
1587 }
1588 ufshcd_set_link_hibern8(hba);
1589 }
1590
1591 if (!ufshcd_is_link_active(hba))
1592 ufshcd_setup_clocks(hba, false);
1593 else
1594 /* If link is active, device ref_clk can't be switched off */
1595 __ufshcd_setup_clocks(hba, false, true);
1596
1597 /*
1598 * In case you are here to cancel this work the gating state
1599 * would be marked as REQ_CLKS_ON. In this case keep the state
1600 * as REQ_CLKS_ON which would anyway imply that clocks are off
1601 * and a request to turn them on is pending. By doing this way,
1602 * we keep the state machine in tact and this would ultimately
1603 * prevent from doing cancel work multiple times when there are
1604 * new requests arriving before the current cancel work is done.
1605 */
1606 spin_lock_irqsave(hba->host->host_lock, flags);
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001607 if (hba->clk_gating.state == REQ_CLKS_OFF) {
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001608 hba->clk_gating.state = CLKS_OFF;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001609 trace_ufshcd_clk_gating(dev_name(hba->dev),
1610 hba->clk_gating.state);
1611 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001612rel_lock:
1613 spin_unlock_irqrestore(hba->host->host_lock, flags);
1614out:
1615 return;
1616}
1617
1618/* host lock must be held before calling this variant */
1619static void __ufshcd_release(struct ufs_hba *hba)
1620{
1621 if (!ufshcd_is_clkgating_allowed(hba))
1622 return;
1623
1624 hba->clk_gating.active_reqs--;
1625
1626 if (hba->clk_gating.active_reqs || hba->clk_gating.is_suspended
1627 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
1628 || hba->lrb_in_use || hba->outstanding_tasks
Yaniv Gardi53c12d02016-02-01 15:02:45 +02001629 || hba->active_uic_cmd || hba->uic_async_done
1630 || ufshcd_eh_in_progress(hba))
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001631 return;
1632
1633 hba->clk_gating.state = REQ_CLKS_OFF;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08001634 trace_ufshcd_clk_gating(dev_name(hba->dev), hba->clk_gating.state);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001635 schedule_delayed_work(&hba->clk_gating.gate_work,
1636 msecs_to_jiffies(hba->clk_gating.delay_ms));
1637}
1638
1639void ufshcd_release(struct ufs_hba *hba)
1640{
1641 unsigned long flags;
1642
1643 spin_lock_irqsave(hba->host->host_lock, flags);
1644 __ufshcd_release(hba);
1645 spin_unlock_irqrestore(hba->host->host_lock, flags);
1646}
Yaniv Gardi6e3fd442015-10-28 13:15:50 +02001647EXPORT_SYMBOL_GPL(ufshcd_release);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001648
1649static ssize_t ufshcd_clkgate_delay_show(struct device *dev,
1650 struct device_attribute *attr, char *buf)
1651{
1652 struct ufs_hba *hba = dev_get_drvdata(dev);
1653
1654 return snprintf(buf, PAGE_SIZE, "%lu\n", hba->clk_gating.delay_ms);
1655}
1656
1657static ssize_t ufshcd_clkgate_delay_store(struct device *dev,
1658 struct device_attribute *attr, const char *buf, size_t count)
1659{
1660 struct ufs_hba *hba = dev_get_drvdata(dev);
1661 unsigned long flags, value;
1662
1663 if (kstrtoul(buf, 0, &value))
1664 return -EINVAL;
1665
1666 spin_lock_irqsave(hba->host->host_lock, flags);
1667 hba->clk_gating.delay_ms = value;
1668 spin_unlock_irqrestore(hba->host->host_lock, flags);
1669 return count;
1670}
1671
Sahitya Tummalab4274112016-12-22 18:40:39 -08001672static ssize_t ufshcd_clkgate_enable_show(struct device *dev,
1673 struct device_attribute *attr, char *buf)
1674{
1675 struct ufs_hba *hba = dev_get_drvdata(dev);
1676
1677 return snprintf(buf, PAGE_SIZE, "%d\n", hba->clk_gating.is_enabled);
1678}
1679
1680static ssize_t ufshcd_clkgate_enable_store(struct device *dev,
1681 struct device_attribute *attr, const char *buf, size_t count)
1682{
1683 struct ufs_hba *hba = dev_get_drvdata(dev);
1684 unsigned long flags;
1685 u32 value;
1686
1687 if (kstrtou32(buf, 0, &value))
1688 return -EINVAL;
1689
1690 value = !!value;
1691 if (value == hba->clk_gating.is_enabled)
1692 goto out;
1693
1694 if (value) {
1695 ufshcd_release(hba);
1696 } else {
1697 spin_lock_irqsave(hba->host->host_lock, flags);
1698 hba->clk_gating.active_reqs++;
1699 spin_unlock_irqrestore(hba->host->host_lock, flags);
1700 }
1701
1702 hba->clk_gating.is_enabled = value;
1703out:
1704 return count;
1705}
1706
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001707static void ufshcd_init_clk_gating(struct ufs_hba *hba)
1708{
1709 if (!ufshcd_is_clkgating_allowed(hba))
1710 return;
1711
1712 hba->clk_gating.delay_ms = 150;
1713 INIT_DELAYED_WORK(&hba->clk_gating.gate_work, ufshcd_gate_work);
1714 INIT_WORK(&hba->clk_gating.ungate_work, ufshcd_ungate_work);
1715
Sahitya Tummalab4274112016-12-22 18:40:39 -08001716 hba->clk_gating.is_enabled = true;
1717
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001718 hba->clk_gating.delay_attr.show = ufshcd_clkgate_delay_show;
1719 hba->clk_gating.delay_attr.store = ufshcd_clkgate_delay_store;
1720 sysfs_attr_init(&hba->clk_gating.delay_attr.attr);
1721 hba->clk_gating.delay_attr.attr.name = "clkgate_delay_ms";
Sahitya Tummalab4274112016-12-22 18:40:39 -08001722 hba->clk_gating.delay_attr.attr.mode = 0644;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001723 if (device_create_file(hba->dev, &hba->clk_gating.delay_attr))
1724 dev_err(hba->dev, "Failed to create sysfs for clkgate_delay\n");
Sahitya Tummalab4274112016-12-22 18:40:39 -08001725
1726 hba->clk_gating.enable_attr.show = ufshcd_clkgate_enable_show;
1727 hba->clk_gating.enable_attr.store = ufshcd_clkgate_enable_store;
1728 sysfs_attr_init(&hba->clk_gating.enable_attr.attr);
1729 hba->clk_gating.enable_attr.attr.name = "clkgate_enable";
1730 hba->clk_gating.enable_attr.attr.mode = 0644;
1731 if (device_create_file(hba->dev, &hba->clk_gating.enable_attr))
1732 dev_err(hba->dev, "Failed to create sysfs for clkgate_enable\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001733}
1734
1735static void ufshcd_exit_clk_gating(struct ufs_hba *hba)
1736{
1737 if (!ufshcd_is_clkgating_allowed(hba))
1738 return;
1739 device_remove_file(hba->dev, &hba->clk_gating.delay_attr);
Sahitya Tummalab4274112016-12-22 18:40:39 -08001740 device_remove_file(hba->dev, &hba->clk_gating.enable_attr);
Akinobu Mita97cd6802014-11-24 14:24:18 +09001741 cancel_work_sync(&hba->clk_gating.ungate_work);
1742 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001743}
1744
Sahitya Tummala856b3482014-09-25 15:32:34 +03001745/* Must be called with host lock acquired */
1746static void ufshcd_clk_scaling_start_busy(struct ufs_hba *hba)
1747{
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001748 bool queue_resume_work = false;
1749
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001750 if (!ufshcd_is_clkscaling_supported(hba))
Sahitya Tummala856b3482014-09-25 15:32:34 +03001751 return;
1752
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08001753 if (!hba->clk_scaling.active_reqs++)
1754 queue_resume_work = true;
1755
1756 if (!hba->clk_scaling.is_allowed || hba->pm_op_in_progress)
1757 return;
1758
1759 if (queue_resume_work)
1760 queue_work(hba->clk_scaling.workq,
1761 &hba->clk_scaling.resume_work);
1762
1763 if (!hba->clk_scaling.window_start_t) {
1764 hba->clk_scaling.window_start_t = jiffies;
1765 hba->clk_scaling.tot_busy_t = 0;
1766 hba->clk_scaling.is_busy_started = false;
1767 }
1768
Sahitya Tummala856b3482014-09-25 15:32:34 +03001769 if (!hba->clk_scaling.is_busy_started) {
1770 hba->clk_scaling.busy_start_t = ktime_get();
1771 hba->clk_scaling.is_busy_started = true;
1772 }
1773}
1774
1775static void ufshcd_clk_scaling_update_busy(struct ufs_hba *hba)
1776{
1777 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
1778
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08001779 if (!ufshcd_is_clkscaling_supported(hba))
Sahitya Tummala856b3482014-09-25 15:32:34 +03001780 return;
1781
1782 if (!hba->outstanding_reqs && scaling->is_busy_started) {
1783 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
1784 scaling->busy_start_t));
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01001785 scaling->busy_start_t = 0;
Sahitya Tummala856b3482014-09-25 15:32:34 +03001786 scaling->is_busy_started = false;
1787 }
1788}
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301789/**
1790 * ufshcd_send_command - Send SCSI or device management commands
1791 * @hba: per adapter instance
1792 * @task_tag: Task tag of the command
1793 */
1794static inline
1795void ufshcd_send_command(struct ufs_hba *hba, unsigned int task_tag)
1796{
Dolev Ravivff8e20c2016-12-22 18:42:18 -08001797 hba->lrb[task_tag].issue_time_stamp = ktime_get();
Zang Leigang09017182017-09-27 10:06:06 +08001798 hba->lrb[task_tag].compl_time_stamp = ktime_set(0, 0);
Sahitya Tummala856b3482014-09-25 15:32:34 +03001799 ufshcd_clk_scaling_start_busy(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301800 __set_bit(task_tag, &hba->outstanding_reqs);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05301801 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Gilad Bronerad1a1b92016-10-17 17:09:36 -07001802 /* Make sure that doorbell is committed immediately */
1803 wmb();
Lee Susman1a07f2d2016-12-22 18:42:03 -08001804 ufshcd_add_command_trace(hba, task_tag, "send");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301805}
1806
1807/**
1808 * ufshcd_copy_sense_data - Copy sense data in case of check condition
Bart Van Assche8aa29f12018-03-01 15:07:20 -08001809 * @lrbp: pointer to local reference block
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301810 */
1811static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
1812{
1813 int len;
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05301814 if (lrbp->sense_buffer &&
1815 ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
Yaniv Gardie3ce73d2016-10-17 17:09:24 -07001816 int len_to_copy;
1817
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301818 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
Yaniv Gardie3ce73d2016-10-17 17:09:24 -07001819 len_to_copy = min_t(int, RESPONSE_UPIU_SENSE_DATA_LENGTH, len);
1820
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301821 memcpy(lrbp->sense_buffer,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301822 lrbp->ucd_rsp_ptr->sr.sense_data,
Gilad Bronerdcea0bf2016-10-17 17:09:48 -07001823 min_t(int, len_to_copy, UFSHCD_REQ_SENSE_SIZE));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301824 }
1825}
1826
1827/**
Dolev Raviv68078d52013-07-30 00:35:58 +05301828 * ufshcd_copy_query_response() - Copy the Query Response and the data
1829 * descriptor
1830 * @hba: per adapter instance
Bart Van Assche8aa29f12018-03-01 15:07:20 -08001831 * @lrbp: pointer to local reference block
Dolev Raviv68078d52013-07-30 00:35:58 +05301832 */
1833static
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001834int ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Dolev Raviv68078d52013-07-30 00:35:58 +05301835{
1836 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
1837
Dolev Raviv68078d52013-07-30 00:35:58 +05301838 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +05301839
Dolev Raviv68078d52013-07-30 00:35:58 +05301840 /* Get the descriptor */
1841 if (lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001842 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr +
Dolev Raviv68078d52013-07-30 00:35:58 +05301843 GENERAL_UPIU_REQUEST_SIZE;
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001844 u16 resp_len;
1845 u16 buf_len;
Dolev Raviv68078d52013-07-30 00:35:58 +05301846
1847 /* data segment length */
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001848 resp_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
Dolev Raviv68078d52013-07-30 00:35:58 +05301849 MASK_QUERY_DATA_SEG_LEN;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001850 buf_len = be16_to_cpu(
1851 hba->dev_cmd.query.request.upiu_req.length);
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001852 if (likely(buf_len >= resp_len)) {
1853 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len);
1854 } else {
1855 dev_warn(hba->dev,
1856 "%s: Response size is bigger than buffer",
1857 __func__);
1858 return -EINVAL;
1859 }
Dolev Raviv68078d52013-07-30 00:35:58 +05301860 }
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001861
1862 return 0;
Dolev Raviv68078d52013-07-30 00:35:58 +05301863}
1864
1865/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301866 * ufshcd_hba_capabilities - Read controller capabilities
1867 * @hba: per adapter instance
1868 */
1869static inline void ufshcd_hba_capabilities(struct ufs_hba *hba)
1870{
Seungwon Jeonb873a2752013-06-26 22:39:26 +05301871 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301872
1873 /* nutrs and nutmrs are 0 based values */
1874 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS) + 1;
1875 hba->nutmrs =
1876 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
1877}
1878
1879/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301880 * ufshcd_ready_for_uic_cmd - Check if controller is ready
1881 * to accept UIC commands
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301882 * @hba: per adapter instance
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301883 * Return true on success, else false
1884 */
1885static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
1886{
1887 if (ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY)
1888 return true;
1889 else
1890 return false;
1891}
1892
1893/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05301894 * ufshcd_get_upmcrs - Get the power mode change request status
1895 * @hba: Pointer to adapter instance
1896 *
1897 * This function gets the UPMCRS field of HCS register
1898 * Returns value of UPMCRS field
1899 */
1900static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
1901{
1902 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
1903}
1904
1905/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301906 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
1907 * @hba: per adapter instance
1908 * @uic_cmd: UIC command
1909 *
1910 * Mutex must be held.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301911 */
1912static inline void
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301913ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301914{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301915 WARN_ON(hba->active_uic_cmd);
1916
1917 hba->active_uic_cmd = uic_cmd;
1918
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301919 /* Write Args */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301920 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
1921 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
1922 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301923
1924 /* Write UIC Cmd */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301925 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
Seungwon Jeonb873a2752013-06-26 22:39:26 +05301926 REG_UIC_COMMAND);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301927}
1928
1929/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301930 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
1931 * @hba: per adapter instance
Bart Van Assche8aa29f12018-03-01 15:07:20 -08001932 * @uic_cmd: UIC command
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301933 *
1934 * Must be called with mutex held.
1935 * Returns 0 only if success.
1936 */
1937static int
1938ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
1939{
1940 int ret;
1941 unsigned long flags;
1942
1943 if (wait_for_completion_timeout(&uic_cmd->done,
1944 msecs_to_jiffies(UIC_CMD_TIMEOUT)))
1945 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
1946 else
1947 ret = -ETIMEDOUT;
1948
1949 spin_lock_irqsave(hba->host->host_lock, flags);
1950 hba->active_uic_cmd = NULL;
1951 spin_unlock_irqrestore(hba->host->host_lock, flags);
1952
1953 return ret;
1954}
1955
1956/**
1957 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
1958 * @hba: per adapter instance
1959 * @uic_cmd: UIC command
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001960 * @completion: initialize the completion only if this is set to true
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301961 *
1962 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001963 * with mutex held and host_lock locked.
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301964 * Returns 0 only if success.
1965 */
1966static int
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001967__ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd,
1968 bool completion)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301969{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301970 if (!ufshcd_ready_for_uic_cmd(hba)) {
1971 dev_err(hba->dev,
1972 "Controller not ready to accept UIC commands\n");
1973 return -EIO;
1974 }
1975
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001976 if (completion)
1977 init_completion(&uic_cmd->done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301978
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301979 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301980
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001981 return 0;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301982}
1983
1984/**
1985 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
1986 * @hba: per adapter instance
1987 * @uic_cmd: UIC command
1988 *
1989 * Returns 0 only if success.
1990 */
1991static int
1992ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
1993{
1994 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001995 unsigned long flags;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301996
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001997 ufshcd_hold(hba, false);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301998 mutex_lock(&hba->uic_cmd_mutex);
Yaniv Gardicad2e032015-03-31 17:37:14 +03001999 ufshcd_add_delay_before_dme_cmd(hba);
2000
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002001 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02002002 ret = __ufshcd_send_uic_cmd(hba, uic_cmd, true);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002003 spin_unlock_irqrestore(hba->host->host_lock, flags);
2004 if (!ret)
2005 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
2006
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302007 mutex_unlock(&hba->uic_cmd_mutex);
2008
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002009 ufshcd_release(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302010 return ret;
2011}
2012
2013/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302014 * ufshcd_map_sg - Map scatter-gather list to prdt
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002015 * @hba: per adapter instance
2016 * @lrbp: pointer to local reference block
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302017 *
2018 * Returns 0 in case of success, non-zero value in case of failure
2019 */
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09002020static int ufshcd_map_sg(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302021{
2022 struct ufshcd_sg_entry *prd_table;
2023 struct scatterlist *sg;
2024 struct scsi_cmnd *cmd;
2025 int sg_segments;
2026 int i;
2027
2028 cmd = lrbp->cmd;
2029 sg_segments = scsi_dma_map(cmd);
2030 if (sg_segments < 0)
2031 return sg_segments;
2032
2033 if (sg_segments) {
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09002034 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN)
2035 lrbp->utr_descriptor_ptr->prd_table_length =
2036 cpu_to_le16((u16)(sg_segments *
2037 sizeof(struct ufshcd_sg_entry)));
2038 else
2039 lrbp->utr_descriptor_ptr->prd_table_length =
2040 cpu_to_le16((u16) (sg_segments));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302041
2042 prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
2043
2044 scsi_for_each_sg(cmd, sg, sg_segments, i) {
2045 prd_table[i].size =
2046 cpu_to_le32(((u32) sg_dma_len(sg))-1);
2047 prd_table[i].base_addr =
2048 cpu_to_le32(lower_32_bits(sg->dma_address));
2049 prd_table[i].upper_addr =
2050 cpu_to_le32(upper_32_bits(sg->dma_address));
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02002051 prd_table[i].reserved = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302052 }
2053 } else {
2054 lrbp->utr_descriptor_ptr->prd_table_length = 0;
2055 }
2056
2057 return 0;
2058}
2059
2060/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302061 * ufshcd_enable_intr - enable interrupts
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302062 * @hba: per adapter instance
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302063 * @intrs: interrupt bits
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302064 */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302065static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302066{
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302067 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
2068
2069 if (hba->ufs_version == UFSHCI_VERSION_10) {
2070 u32 rw;
2071 rw = set & INTERRUPT_MASK_RW_VER_10;
2072 set = rw | ((set ^ intrs) & intrs);
2073 } else {
2074 set |= intrs;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302075 }
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302076
2077 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
2078}
2079
2080/**
2081 * ufshcd_disable_intr - disable interrupts
2082 * @hba: per adapter instance
2083 * @intrs: interrupt bits
2084 */
2085static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
2086{
2087 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
2088
2089 if (hba->ufs_version == UFSHCI_VERSION_10) {
2090 u32 rw;
2091 rw = (set & INTERRUPT_MASK_RW_VER_10) &
2092 ~(intrs & INTERRUPT_MASK_RW_VER_10);
2093 set = rw | ((set & intrs) & ~INTERRUPT_MASK_RW_VER_10);
2094
2095 } else {
2096 set &= ~intrs;
2097 }
2098
2099 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302100}
2101
2102/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302103 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
2104 * descriptor according to request
2105 * @lrbp: pointer to local reference block
2106 * @upiu_flags: flags required in the header
2107 * @cmd_dir: requests data direction
2108 */
2109static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb *lrbp,
Joao Pinto300bb132016-05-11 12:21:27 +01002110 u32 *upiu_flags, enum dma_data_direction cmd_dir)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302111{
2112 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
2113 u32 data_direction;
2114 u32 dword_0;
2115
2116 if (cmd_dir == DMA_FROM_DEVICE) {
2117 data_direction = UTP_DEVICE_TO_HOST;
2118 *upiu_flags = UPIU_CMD_FLAGS_READ;
2119 } else if (cmd_dir == DMA_TO_DEVICE) {
2120 data_direction = UTP_HOST_TO_DEVICE;
2121 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
2122 } else {
2123 data_direction = UTP_NO_DATA_TRANSFER;
2124 *upiu_flags = UPIU_CMD_FLAGS_NONE;
2125 }
2126
2127 dword_0 = data_direction | (lrbp->command_type
2128 << UPIU_COMMAND_TYPE_OFFSET);
2129 if (lrbp->intr_cmd)
2130 dword_0 |= UTP_REQ_DESC_INT_CMD;
2131
2132 /* Transfer request descriptor header fields */
2133 req_desc->header.dword_0 = cpu_to_le32(dword_0);
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02002134 /* dword_1 is reserved, hence it is set to 0 */
2135 req_desc->header.dword_1 = 0;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302136 /*
2137 * assigning invalid value for command status. Controller
2138 * updates OCS on command completion, with the command
2139 * status
2140 */
2141 req_desc->header.dword_2 =
2142 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02002143 /* dword_3 is reserved, hence it is set to 0 */
2144 req_desc->header.dword_3 = 0;
Yaniv Gardi51047262016-02-01 15:02:38 +02002145
2146 req_desc->prd_table_length = 0;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302147}
2148
2149/**
2150 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
2151 * for scsi commands
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002152 * @lrbp: local reference block pointer
2153 * @upiu_flags: flags
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302154 */
2155static
2156void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u32 upiu_flags)
2157{
2158 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02002159 unsigned short cdb_len;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302160
2161 /* command descriptor fields */
2162 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
2163 UPIU_TRANSACTION_COMMAND, upiu_flags,
2164 lrbp->lun, lrbp->task_tag);
2165 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
2166 UPIU_COMMAND_SET_TYPE_SCSI, 0, 0, 0);
2167
2168 /* Total EHS length and Data segment length will be zero */
2169 ucd_req_ptr->header.dword_2 = 0;
2170
2171 ucd_req_ptr->sc.exp_data_transfer_len =
2172 cpu_to_be32(lrbp->cmd->sdb.length);
2173
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02002174 cdb_len = min_t(unsigned short, lrbp->cmd->cmd_len, MAX_CDB_SIZE);
2175 memset(ucd_req_ptr->sc.cdb, 0, MAX_CDB_SIZE);
2176 memcpy(ucd_req_ptr->sc.cdb, lrbp->cmd->cmnd, cdb_len);
2177
2178 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302179}
2180
Dolev Raviv68078d52013-07-30 00:35:58 +05302181/**
2182 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
2183 * for query requsts
2184 * @hba: UFS hba
2185 * @lrbp: local reference block pointer
2186 * @upiu_flags: flags
2187 */
2188static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
2189 struct ufshcd_lrb *lrbp, u32 upiu_flags)
2190{
2191 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2192 struct ufs_query *query = &hba->dev_cmd.query;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05302193 u16 len = be16_to_cpu(query->request.upiu_req.length);
Dolev Raviv68078d52013-07-30 00:35:58 +05302194 u8 *descp = (u8 *)lrbp->ucd_req_ptr + GENERAL_UPIU_REQUEST_SIZE;
2195
2196 /* Query request header */
2197 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
2198 UPIU_TRANSACTION_QUERY_REQ, upiu_flags,
2199 lrbp->lun, lrbp->task_tag);
2200 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
2201 0, query->request.query_func, 0, 0);
2202
Zang Leigang68612852016-08-25 17:39:19 +08002203 /* Data segment length only need for WRITE_DESC */
2204 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
2205 ucd_req_ptr->header.dword_2 =
2206 UPIU_HEADER_DWORD(0, 0, (len >> 8), (u8)len);
2207 else
2208 ucd_req_ptr->header.dword_2 = 0;
Dolev Raviv68078d52013-07-30 00:35:58 +05302209
2210 /* Copy the Query Request buffer as is */
2211 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
2212 QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +05302213
2214 /* Copy the Descriptor */
Dolev Ravivc6d4a832014-06-29 09:40:18 +03002215 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
2216 memcpy(descp, query->descriptor, len);
2217
Yaniv Gardi51047262016-02-01 15:02:38 +02002218 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
Dolev Raviv68078d52013-07-30 00:35:58 +05302219}
2220
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302221static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb *lrbp)
2222{
2223 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
2224
2225 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
2226
2227 /* command descriptor fields */
2228 ucd_req_ptr->header.dword_0 =
2229 UPIU_HEADER_DWORD(
2230 UPIU_TRANSACTION_NOP_OUT, 0, 0, lrbp->task_tag);
Yaniv Gardi51047262016-02-01 15:02:38 +02002231 /* clear rest of the fields of basic header */
2232 ucd_req_ptr->header.dword_1 = 0;
2233 ucd_req_ptr->header.dword_2 = 0;
2234
2235 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302236}
2237
2238/**
Joao Pinto300bb132016-05-11 12:21:27 +01002239 * ufshcd_comp_devman_upiu - UFS Protocol Information Unit(UPIU)
2240 * for Device Management Purposes
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002241 * @hba: per adapter instance
2242 * @lrbp: pointer to local reference block
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302243 */
Joao Pinto300bb132016-05-11 12:21:27 +01002244static int ufshcd_comp_devman_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302245{
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302246 u32 upiu_flags;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302247 int ret = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302248
kehuanlin83dc7e32017-09-06 17:58:39 +08002249 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
2250 (hba->ufs_version == UFSHCI_VERSION_11))
Joao Pinto300bb132016-05-11 12:21:27 +01002251 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
kehuanlin83dc7e32017-09-06 17:58:39 +08002252 else
2253 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
Joao Pinto300bb132016-05-11 12:21:27 +01002254
2255 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
2256 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
2257 ufshcd_prepare_utp_query_req_upiu(hba, lrbp, upiu_flags);
2258 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
2259 ufshcd_prepare_utp_nop_upiu(lrbp);
2260 else
2261 ret = -EINVAL;
2262
2263 return ret;
2264}
2265
2266/**
2267 * ufshcd_comp_scsi_upiu - UFS Protocol Information Unit(UPIU)
2268 * for SCSI Purposes
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002269 * @hba: per adapter instance
2270 * @lrbp: pointer to local reference block
Joao Pinto300bb132016-05-11 12:21:27 +01002271 */
2272static int ufshcd_comp_scsi_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2273{
2274 u32 upiu_flags;
2275 int ret = 0;
2276
kehuanlin83dc7e32017-09-06 17:58:39 +08002277 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
2278 (hba->ufs_version == UFSHCI_VERSION_11))
Joao Pinto300bb132016-05-11 12:21:27 +01002279 lrbp->command_type = UTP_CMD_TYPE_SCSI;
kehuanlin83dc7e32017-09-06 17:58:39 +08002280 else
2281 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
Joao Pinto300bb132016-05-11 12:21:27 +01002282
2283 if (likely(lrbp->cmd)) {
2284 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags,
2285 lrbp->cmd->sc_data_direction);
2286 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp, upiu_flags);
2287 } else {
2288 ret = -EINVAL;
2289 }
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302290
2291 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302292}
2293
2294/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03002295 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002296 * @upiu_wlun_id: UPIU W-LUN id
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03002297 *
2298 * Returns SCSI W-LUN id
2299 */
2300static inline u16 ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)
2301{
2302 return (upiu_wlun_id & ~UFS_UPIU_WLUN_ID) | SCSI_W_LUN_BASE;
2303}
2304
2305/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302306 * ufshcd_queuecommand - main entry point for SCSI requests
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002307 * @host: SCSI host pointer
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302308 * @cmd: command from SCSI Midlayer
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302309 *
2310 * Returns 0 for success, non-zero in case of failure
2311 */
2312static int ufshcd_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
2313{
2314 struct ufshcd_lrb *lrbp;
2315 struct ufs_hba *hba;
2316 unsigned long flags;
2317 int tag;
2318 int err = 0;
2319
2320 hba = shost_priv(host);
2321
2322 tag = cmd->request->tag;
Yaniv Gardi14497322016-02-01 15:02:39 +02002323 if (!ufshcd_valid_tag(hba, tag)) {
2324 dev_err(hba->dev,
2325 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
2326 __func__, tag, cmd, cmd->request);
2327 BUG();
2328 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302329
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08002330 if (!down_read_trylock(&hba->clk_scaling_lock))
2331 return SCSI_MLQUEUE_HOST_BUSY;
2332
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05302333 spin_lock_irqsave(hba->host->host_lock, flags);
2334 switch (hba->ufshcd_state) {
2335 case UFSHCD_STATE_OPERATIONAL:
2336 break;
Zang Leigang141f8162016-11-16 11:29:37 +08002337 case UFSHCD_STATE_EH_SCHEDULED:
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05302338 case UFSHCD_STATE_RESET:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302339 err = SCSI_MLQUEUE_HOST_BUSY;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05302340 goto out_unlock;
2341 case UFSHCD_STATE_ERROR:
2342 set_host_byte(cmd, DID_ERROR);
2343 cmd->scsi_done(cmd);
2344 goto out_unlock;
2345 default:
2346 dev_WARN_ONCE(hba->dev, 1, "%s: invalid state %d\n",
2347 __func__, hba->ufshcd_state);
2348 set_host_byte(cmd, DID_BAD_TARGET);
2349 cmd->scsi_done(cmd);
2350 goto out_unlock;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302351 }
Yaniv Gardi53c12d02016-02-01 15:02:45 +02002352
2353 /* if error handling is in progress, don't issue commands */
2354 if (ufshcd_eh_in_progress(hba)) {
2355 set_host_byte(cmd, DID_ERROR);
2356 cmd->scsi_done(cmd);
2357 goto out_unlock;
2358 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05302359 spin_unlock_irqrestore(hba->host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302360
Gilad Broner7fabb772017-02-03 16:56:50 -08002361 hba->req_abort_count = 0;
2362
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302363 /* acquire the tag to make sure device cmds don't use it */
2364 if (test_and_set_bit_lock(tag, &hba->lrb_in_use)) {
2365 /*
2366 * Dev manage command in progress, requeue the command.
2367 * Requeuing the command helps in cases where the request *may*
2368 * find different tag instead of waiting for dev manage command
2369 * completion.
2370 */
2371 err = SCSI_MLQUEUE_HOST_BUSY;
2372 goto out;
2373 }
2374
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002375 err = ufshcd_hold(hba, true);
2376 if (err) {
2377 err = SCSI_MLQUEUE_HOST_BUSY;
2378 clear_bit_unlock(tag, &hba->lrb_in_use);
2379 goto out;
2380 }
2381 WARN_ON(hba->clk_gating.state != CLKS_ON);
2382
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302383 lrbp = &hba->lrb[tag];
2384
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302385 WARN_ON(lrbp->cmd);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302386 lrbp->cmd = cmd;
Gilad Bronerdcea0bf2016-10-17 17:09:48 -07002387 lrbp->sense_bufflen = UFSHCD_REQ_SENSE_SIZE;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302388 lrbp->sense_buffer = cmd->sense_buffer;
2389 lrbp->task_tag = tag;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002390 lrbp->lun = ufshcd_scsi_to_upiu_lun(cmd->device->lun);
Yaniv Gardib8521902015-05-17 18:54:57 +03002391 lrbp->intr_cmd = !ufshcd_is_intr_aggr_allowed(hba) ? true : false;
Gilad Bronere0b299e2017-02-03 16:56:40 -08002392 lrbp->req_abort_skip = false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302393
Joao Pinto300bb132016-05-11 12:21:27 +01002394 ufshcd_comp_scsi_upiu(hba, lrbp);
2395
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09002396 err = ufshcd_map_sg(hba, lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302397 if (err) {
2398 lrbp->cmd = NULL;
2399 clear_bit_unlock(tag, &hba->lrb_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302400 goto out;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302401 }
Gilad Bronerad1a1b92016-10-17 17:09:36 -07002402 /* Make sure descriptors are ready before ringing the doorbell */
2403 wmb();
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302404
2405 /* issue command to the controller */
2406 spin_lock_irqsave(hba->host->host_lock, flags);
Kiwoong Kim0e675ef2016-11-10 21:14:36 +09002407 ufshcd_vops_setup_xfer_req(hba, tag, (lrbp->cmd ? true : false));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302408 ufshcd_send_command(hba, tag);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05302409out_unlock:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302410 spin_unlock_irqrestore(hba->host->host_lock, flags);
2411out:
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08002412 up_read(&hba->clk_scaling_lock);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302413 return err;
2414}
2415
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302416static int ufshcd_compose_dev_cmd(struct ufs_hba *hba,
2417 struct ufshcd_lrb *lrbp, enum dev_cmd_type cmd_type, int tag)
2418{
2419 lrbp->cmd = NULL;
2420 lrbp->sense_bufflen = 0;
2421 lrbp->sense_buffer = NULL;
2422 lrbp->task_tag = tag;
2423 lrbp->lun = 0; /* device management cmd is not specific to any LUN */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302424 lrbp->intr_cmd = true; /* No interrupt aggregation */
2425 hba->dev_cmd.type = cmd_type;
2426
Joao Pinto300bb132016-05-11 12:21:27 +01002427 return ufshcd_comp_devman_upiu(hba, lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302428}
2429
2430static int
2431ufshcd_clear_cmd(struct ufs_hba *hba, int tag)
2432{
2433 int err = 0;
2434 unsigned long flags;
2435 u32 mask = 1 << tag;
2436
2437 /* clear outstanding transaction before retry */
2438 spin_lock_irqsave(hba->host->host_lock, flags);
2439 ufshcd_utrl_clear(hba, tag);
2440 spin_unlock_irqrestore(hba->host->host_lock, flags);
2441
2442 /*
2443 * wait for for h/w to clear corresponding bit in door-bell.
2444 * max. wait is 1 sec.
2445 */
2446 err = ufshcd_wait_for_register(hba,
2447 REG_UTP_TRANSFER_REQ_DOOR_BELL,
Yaniv Gardi596585a2016-03-10 17:37:08 +02002448 mask, ~mask, 1000, 1000, true);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302449
2450 return err;
2451}
2452
Dolev Ravivc6d4a832014-06-29 09:40:18 +03002453static int
2454ufshcd_check_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2455{
2456 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
2457
2458 /* Get the UPIU response */
2459 query_res->response = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr) >>
2460 UPIU_RSP_CODE_OFFSET;
2461 return query_res->response;
2462}
2463
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302464/**
2465 * ufshcd_dev_cmd_completion() - handles device management command responses
2466 * @hba: per adapter instance
2467 * @lrbp: pointer to local reference block
2468 */
2469static int
2470ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2471{
2472 int resp;
2473 int err = 0;
2474
Dolev Ravivff8e20c2016-12-22 18:42:18 -08002475 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302476 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
2477
2478 switch (resp) {
2479 case UPIU_TRANSACTION_NOP_IN:
2480 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
2481 err = -EINVAL;
2482 dev_err(hba->dev, "%s: unexpected response %x\n",
2483 __func__, resp);
2484 }
2485 break;
Dolev Raviv68078d52013-07-30 00:35:58 +05302486 case UPIU_TRANSACTION_QUERY_RSP:
Dolev Ravivc6d4a832014-06-29 09:40:18 +03002487 err = ufshcd_check_query_response(hba, lrbp);
2488 if (!err)
2489 err = ufshcd_copy_query_response(hba, lrbp);
Dolev Raviv68078d52013-07-30 00:35:58 +05302490 break;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302491 case UPIU_TRANSACTION_REJECT_UPIU:
2492 /* TODO: handle Reject UPIU Response */
2493 err = -EPERM;
2494 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
2495 __func__);
2496 break;
2497 default:
2498 err = -EINVAL;
2499 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
2500 __func__, resp);
2501 break;
2502 }
2503
2504 return err;
2505}
2506
2507static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
2508 struct ufshcd_lrb *lrbp, int max_timeout)
2509{
2510 int err = 0;
2511 unsigned long time_left;
2512 unsigned long flags;
2513
2514 time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
2515 msecs_to_jiffies(max_timeout));
2516
Gilad Bronerad1a1b92016-10-17 17:09:36 -07002517 /* Make sure descriptors are ready before ringing the doorbell */
2518 wmb();
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302519 spin_lock_irqsave(hba->host->host_lock, flags);
2520 hba->dev_cmd.complete = NULL;
2521 if (likely(time_left)) {
2522 err = ufshcd_get_tr_ocs(lrbp);
2523 if (!err)
2524 err = ufshcd_dev_cmd_completion(hba, lrbp);
2525 }
2526 spin_unlock_irqrestore(hba->host->host_lock, flags);
2527
2528 if (!time_left) {
2529 err = -ETIMEDOUT;
Yaniv Gardia48353f2016-02-01 15:02:40 +02002530 dev_dbg(hba->dev, "%s: dev_cmd request timedout, tag %d\n",
2531 __func__, lrbp->task_tag);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302532 if (!ufshcd_clear_cmd(hba, lrbp->task_tag))
Yaniv Gardia48353f2016-02-01 15:02:40 +02002533 /* successfully cleared the command, retry if needed */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302534 err = -EAGAIN;
Yaniv Gardia48353f2016-02-01 15:02:40 +02002535 /*
2536 * in case of an error, after clearing the doorbell,
2537 * we also need to clear the outstanding_request
2538 * field in hba
2539 */
2540 ufshcd_outstanding_req_clear(hba, lrbp->task_tag);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302541 }
2542
2543 return err;
2544}
2545
2546/**
2547 * ufshcd_get_dev_cmd_tag - Get device management command tag
2548 * @hba: per-adapter instance
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002549 * @tag_out: pointer to variable with available slot value
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302550 *
2551 * Get a free slot and lock it until device management command
2552 * completes.
2553 *
2554 * Returns false if free slot is unavailable for locking, else
2555 * return true with tag value in @tag.
2556 */
2557static bool ufshcd_get_dev_cmd_tag(struct ufs_hba *hba, int *tag_out)
2558{
2559 int tag;
2560 bool ret = false;
2561 unsigned long tmp;
2562
2563 if (!tag_out)
2564 goto out;
2565
2566 do {
2567 tmp = ~hba->lrb_in_use;
2568 tag = find_last_bit(&tmp, hba->nutrs);
2569 if (tag >= hba->nutrs)
2570 goto out;
2571 } while (test_and_set_bit_lock(tag, &hba->lrb_in_use));
2572
2573 *tag_out = tag;
2574 ret = true;
2575out:
2576 return ret;
2577}
2578
2579static inline void ufshcd_put_dev_cmd_tag(struct ufs_hba *hba, int tag)
2580{
2581 clear_bit_unlock(tag, &hba->lrb_in_use);
2582}
2583
2584/**
2585 * ufshcd_exec_dev_cmd - API for sending device management requests
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002586 * @hba: UFS hba
2587 * @cmd_type: specifies the type (NOP, Query...)
2588 * @timeout: time in seconds
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302589 *
Dolev Raviv68078d52013-07-30 00:35:58 +05302590 * NOTE: Since there is only one available tag for device management commands,
2591 * it is expected you hold the hba->dev_cmd.lock mutex.
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302592 */
2593static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
2594 enum dev_cmd_type cmd_type, int timeout)
2595{
2596 struct ufshcd_lrb *lrbp;
2597 int err;
2598 int tag;
2599 struct completion wait;
2600 unsigned long flags;
2601
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08002602 down_read(&hba->clk_scaling_lock);
2603
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302604 /*
2605 * Get free slot, sleep if slots are unavailable.
2606 * Even though we use wait_event() which sleeps indefinitely,
2607 * the maximum wait time is bounded by SCSI request timeout.
2608 */
2609 wait_event(hba->dev_cmd.tag_wq, ufshcd_get_dev_cmd_tag(hba, &tag));
2610
2611 init_completion(&wait);
2612 lrbp = &hba->lrb[tag];
2613 WARN_ON(lrbp->cmd);
2614 err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
2615 if (unlikely(err))
2616 goto out_put_tag;
2617
2618 hba->dev_cmd.complete = &wait;
2619
Yaniv Gardie3dfdc52016-02-01 15:02:49 +02002620 /* Make sure descriptors are ready before ringing the doorbell */
2621 wmb();
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302622 spin_lock_irqsave(hba->host->host_lock, flags);
Kiwoong Kim0e675ef2016-11-10 21:14:36 +09002623 ufshcd_vops_setup_xfer_req(hba, tag, (lrbp->cmd ? true : false));
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302624 ufshcd_send_command(hba, tag);
2625 spin_unlock_irqrestore(hba->host->host_lock, flags);
2626
2627 err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
2628
2629out_put_tag:
2630 ufshcd_put_dev_cmd_tag(hba, tag);
2631 wake_up(&hba->dev_cmd.tag_wq);
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08002632 up_read(&hba->clk_scaling_lock);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302633 return err;
2634}
2635
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302636/**
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002637 * ufshcd_init_query() - init the query response and request parameters
2638 * @hba: per-adapter instance
2639 * @request: address of the request pointer to be initialized
2640 * @response: address of the response pointer to be initialized
2641 * @opcode: operation to perform
2642 * @idn: flag idn to access
2643 * @index: LU number to access
2644 * @selector: query/flag/descriptor further identification
2645 */
2646static inline void ufshcd_init_query(struct ufs_hba *hba,
2647 struct ufs_query_req **request, struct ufs_query_res **response,
2648 enum query_opcode opcode, u8 idn, u8 index, u8 selector)
2649{
2650 *request = &hba->dev_cmd.query.request;
2651 *response = &hba->dev_cmd.query.response;
2652 memset(*request, 0, sizeof(struct ufs_query_req));
2653 memset(*response, 0, sizeof(struct ufs_query_res));
2654 (*request)->upiu_req.opcode = opcode;
2655 (*request)->upiu_req.idn = idn;
2656 (*request)->upiu_req.index = index;
2657 (*request)->upiu_req.selector = selector;
2658}
2659
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02002660static int ufshcd_query_flag_retry(struct ufs_hba *hba,
2661 enum query_opcode opcode, enum flag_idn idn, bool *flag_res)
2662{
2663 int ret;
2664 int retries;
2665
2666 for (retries = 0; retries < QUERY_REQ_RETRIES; retries++) {
2667 ret = ufshcd_query_flag(hba, opcode, idn, flag_res);
2668 if (ret)
2669 dev_dbg(hba->dev,
2670 "%s: failed with error %d, retries %d\n",
2671 __func__, ret, retries);
2672 else
2673 break;
2674 }
2675
2676 if (ret)
2677 dev_err(hba->dev,
2678 "%s: query attribute, opcode %d, idn %d, failed with error %d after %d retires\n",
2679 __func__, opcode, idn, ret, retries);
2680 return ret;
2681}
2682
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002683/**
Dolev Raviv68078d52013-07-30 00:35:58 +05302684 * ufshcd_query_flag() - API function for sending flag query requests
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002685 * @hba: per-adapter instance
2686 * @opcode: flag query to perform
2687 * @idn: flag idn to access
2688 * @flag_res: the flag value after the query request completes
Dolev Raviv68078d52013-07-30 00:35:58 +05302689 *
2690 * Returns 0 for success, non-zero in case of failure
2691 */
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02002692int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
Dolev Raviv68078d52013-07-30 00:35:58 +05302693 enum flag_idn idn, bool *flag_res)
2694{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002695 struct ufs_query_req *request = NULL;
2696 struct ufs_query_res *response = NULL;
2697 int err, index = 0, selector = 0;
Yaniv Gardie5ad4062016-02-01 15:02:41 +02002698 int timeout = QUERY_REQ_TIMEOUT;
Dolev Raviv68078d52013-07-30 00:35:58 +05302699
2700 BUG_ON(!hba);
2701
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002702 ufshcd_hold(hba, false);
Dolev Raviv68078d52013-07-30 00:35:58 +05302703 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002704 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
2705 selector);
Dolev Raviv68078d52013-07-30 00:35:58 +05302706
2707 switch (opcode) {
2708 case UPIU_QUERY_OPCODE_SET_FLAG:
2709 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
2710 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
2711 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
2712 break;
2713 case UPIU_QUERY_OPCODE_READ_FLAG:
2714 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
2715 if (!flag_res) {
2716 /* No dummy reads */
2717 dev_err(hba->dev, "%s: Invalid argument for read request\n",
2718 __func__);
2719 err = -EINVAL;
2720 goto out_unlock;
2721 }
2722 break;
2723 default:
2724 dev_err(hba->dev,
2725 "%s: Expected query flag opcode but got = %d\n",
2726 __func__, opcode);
2727 err = -EINVAL;
2728 goto out_unlock;
2729 }
Dolev Raviv68078d52013-07-30 00:35:58 +05302730
Yaniv Gardie5ad4062016-02-01 15:02:41 +02002731 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, timeout);
Dolev Raviv68078d52013-07-30 00:35:58 +05302732
2733 if (err) {
2734 dev_err(hba->dev,
2735 "%s: Sending flag query for idn %d failed, err = %d\n",
2736 __func__, idn, err);
2737 goto out_unlock;
2738 }
2739
2740 if (flag_res)
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05302741 *flag_res = (be32_to_cpu(response->upiu_res.value) &
Dolev Raviv68078d52013-07-30 00:35:58 +05302742 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
2743
2744out_unlock:
2745 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002746 ufshcd_release(hba);
Dolev Raviv68078d52013-07-30 00:35:58 +05302747 return err;
2748}
2749
2750/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302751 * ufshcd_query_attr - API function for sending attribute requests
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002752 * @hba: per-adapter instance
2753 * @opcode: attribute opcode
2754 * @idn: attribute idn to access
2755 * @index: index field
2756 * @selector: selector field
2757 * @attr_val: the attribute value after the query request completes
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302758 *
2759 * Returns 0 for success, non-zero in case of failure
2760*/
Stanislav Nijnikovec92b592018-02-15 14:14:11 +02002761int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
2762 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302763{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002764 struct ufs_query_req *request = NULL;
2765 struct ufs_query_res *response = NULL;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302766 int err;
2767
2768 BUG_ON(!hba);
2769
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002770 ufshcd_hold(hba, false);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302771 if (!attr_val) {
2772 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
2773 __func__, opcode);
2774 err = -EINVAL;
2775 goto out;
2776 }
2777
2778 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002779 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
2780 selector);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302781
2782 switch (opcode) {
2783 case UPIU_QUERY_OPCODE_WRITE_ATTR:
2784 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05302785 request->upiu_req.value = cpu_to_be32(*attr_val);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302786 break;
2787 case UPIU_QUERY_OPCODE_READ_ATTR:
2788 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
2789 break;
2790 default:
2791 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
2792 __func__, opcode);
2793 err = -EINVAL;
2794 goto out_unlock;
2795 }
2796
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002797 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302798
2799 if (err) {
Yaniv Gardi4b761b52016-11-23 16:31:18 -08002800 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, err = %d\n",
2801 __func__, opcode, idn, index, err);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302802 goto out_unlock;
2803 }
2804
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05302805 *attr_val = be32_to_cpu(response->upiu_res.value);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302806
2807out_unlock:
2808 mutex_unlock(&hba->dev_cmd.lock);
2809out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002810 ufshcd_release(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302811 return err;
2812}
2813
2814/**
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02002815 * ufshcd_query_attr_retry() - API function for sending query
2816 * attribute with retries
2817 * @hba: per-adapter instance
2818 * @opcode: attribute opcode
2819 * @idn: attribute idn to access
2820 * @index: index field
2821 * @selector: selector field
2822 * @attr_val: the attribute value after the query request
2823 * completes
2824 *
2825 * Returns 0 for success, non-zero in case of failure
2826*/
2827static int ufshcd_query_attr_retry(struct ufs_hba *hba,
2828 enum query_opcode opcode, enum attr_idn idn, u8 index, u8 selector,
2829 u32 *attr_val)
2830{
2831 int ret = 0;
2832 u32 retries;
2833
2834 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
2835 ret = ufshcd_query_attr(hba, opcode, idn, index,
2836 selector, attr_val);
2837 if (ret)
2838 dev_dbg(hba->dev, "%s: failed with error %d, retries %d\n",
2839 __func__, ret, retries);
2840 else
2841 break;
2842 }
2843
2844 if (ret)
2845 dev_err(hba->dev,
2846 "%s: query attribute, idn %d, failed with error %d after %d retires\n",
2847 __func__, idn, ret, QUERY_REQ_RETRIES);
2848 return ret;
2849}
2850
Yaniv Gardia70e91b2016-03-10 17:37:14 +02002851static int __ufshcd_query_descriptor(struct ufs_hba *hba,
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002852 enum query_opcode opcode, enum desc_idn idn, u8 index,
2853 u8 selector, u8 *desc_buf, int *buf_len)
2854{
2855 struct ufs_query_req *request = NULL;
2856 struct ufs_query_res *response = NULL;
2857 int err;
2858
2859 BUG_ON(!hba);
2860
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002861 ufshcd_hold(hba, false);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002862 if (!desc_buf) {
2863 dev_err(hba->dev, "%s: descriptor buffer required for opcode 0x%x\n",
2864 __func__, opcode);
2865 err = -EINVAL;
2866 goto out;
2867 }
2868
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00002869 if (*buf_len < QUERY_DESC_MIN_SIZE || *buf_len > QUERY_DESC_MAX_SIZE) {
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002870 dev_err(hba->dev, "%s: descriptor buffer size (%d) is out of range\n",
2871 __func__, *buf_len);
2872 err = -EINVAL;
2873 goto out;
2874 }
2875
2876 mutex_lock(&hba->dev_cmd.lock);
2877 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
2878 selector);
2879 hba->dev_cmd.query.descriptor = desc_buf;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03002880 request->upiu_req.length = cpu_to_be16(*buf_len);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002881
2882 switch (opcode) {
2883 case UPIU_QUERY_OPCODE_WRITE_DESC:
2884 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
2885 break;
2886 case UPIU_QUERY_OPCODE_READ_DESC:
2887 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
2888 break;
2889 default:
2890 dev_err(hba->dev,
2891 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
2892 __func__, opcode);
2893 err = -EINVAL;
2894 goto out_unlock;
2895 }
2896
2897 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
2898
2899 if (err) {
Yaniv Gardi4b761b52016-11-23 16:31:18 -08002900 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, index %d, err = %d\n",
2901 __func__, opcode, idn, index, err);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002902 goto out_unlock;
2903 }
2904
2905 hba->dev_cmd.query.descriptor = NULL;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03002906 *buf_len = be16_to_cpu(response->upiu_res.length);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002907
2908out_unlock:
2909 mutex_unlock(&hba->dev_cmd.lock);
2910out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002911 ufshcd_release(hba);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03002912 return err;
2913}
2914
2915/**
Bart Van Assche8aa29f12018-03-01 15:07:20 -08002916 * ufshcd_query_descriptor_retry - API function for sending descriptor requests
2917 * @hba: per-adapter instance
2918 * @opcode: attribute opcode
2919 * @idn: attribute idn to access
2920 * @index: index field
2921 * @selector: selector field
2922 * @desc_buf: the buffer that contains the descriptor
2923 * @buf_len: length parameter passed to the device
Yaniv Gardia70e91b2016-03-10 17:37:14 +02002924 *
2925 * Returns 0 for success, non-zero in case of failure.
2926 * The buf_len parameter will contain, on return, the length parameter
2927 * received on the response.
2928 */
Stanislav Nijnikov2238d312018-02-15 14:14:07 +02002929int ufshcd_query_descriptor_retry(struct ufs_hba *hba,
2930 enum query_opcode opcode,
2931 enum desc_idn idn, u8 index,
2932 u8 selector,
2933 u8 *desc_buf, int *buf_len)
Yaniv Gardia70e91b2016-03-10 17:37:14 +02002934{
2935 int err;
2936 int retries;
2937
2938 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
2939 err = __ufshcd_query_descriptor(hba, opcode, idn, index,
2940 selector, desc_buf, buf_len);
2941 if (!err || err == -EINVAL)
2942 break;
2943 }
2944
2945 return err;
2946}
Yaniv Gardia70e91b2016-03-10 17:37:14 +02002947
2948/**
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00002949 * ufshcd_read_desc_length - read the specified descriptor length from header
2950 * @hba: Pointer to adapter instance
2951 * @desc_id: descriptor idn value
2952 * @desc_index: descriptor index
2953 * @desc_length: pointer to variable to read the length of descriptor
2954 *
2955 * Return 0 in case of success, non-zero otherwise
2956 */
2957static int ufshcd_read_desc_length(struct ufs_hba *hba,
2958 enum desc_idn desc_id,
2959 int desc_index,
2960 int *desc_length)
2961{
2962 int ret;
2963 u8 header[QUERY_DESC_HDR_SIZE];
2964 int header_len = QUERY_DESC_HDR_SIZE;
2965
2966 if (desc_id >= QUERY_DESC_IDN_MAX)
2967 return -EINVAL;
2968
2969 ret = ufshcd_query_descriptor_retry(hba, UPIU_QUERY_OPCODE_READ_DESC,
2970 desc_id, desc_index, 0, header,
2971 &header_len);
2972
2973 if (ret) {
2974 dev_err(hba->dev, "%s: Failed to get descriptor header id %d",
2975 __func__, desc_id);
2976 return ret;
2977 } else if (desc_id != header[QUERY_DESC_DESC_TYPE_OFFSET]) {
2978 dev_warn(hba->dev, "%s: descriptor header id %d and desc_id %d mismatch",
2979 __func__, header[QUERY_DESC_DESC_TYPE_OFFSET],
2980 desc_id);
2981 ret = -EINVAL;
2982 }
2983
2984 *desc_length = header[QUERY_DESC_LENGTH_OFFSET];
2985 return ret;
2986
2987}
2988
2989/**
2990 * ufshcd_map_desc_id_to_length - map descriptor IDN to its length
2991 * @hba: Pointer to adapter instance
2992 * @desc_id: descriptor idn value
2993 * @desc_len: mapped desc length (out)
2994 *
2995 * Return 0 in case of success, non-zero otherwise
2996 */
2997int ufshcd_map_desc_id_to_length(struct ufs_hba *hba,
2998 enum desc_idn desc_id, int *desc_len)
2999{
3000 switch (desc_id) {
3001 case QUERY_DESC_IDN_DEVICE:
3002 *desc_len = hba->desc_size.dev_desc;
3003 break;
3004 case QUERY_DESC_IDN_POWER:
3005 *desc_len = hba->desc_size.pwr_desc;
3006 break;
3007 case QUERY_DESC_IDN_GEOMETRY:
3008 *desc_len = hba->desc_size.geom_desc;
3009 break;
3010 case QUERY_DESC_IDN_CONFIGURATION:
3011 *desc_len = hba->desc_size.conf_desc;
3012 break;
3013 case QUERY_DESC_IDN_UNIT:
3014 *desc_len = hba->desc_size.unit_desc;
3015 break;
3016 case QUERY_DESC_IDN_INTERCONNECT:
3017 *desc_len = hba->desc_size.interc_desc;
3018 break;
3019 case QUERY_DESC_IDN_STRING:
3020 *desc_len = QUERY_DESC_MAX_SIZE;
3021 break;
Stanislav Nijnikovc648c2d2018-02-15 14:14:05 +02003022 case QUERY_DESC_IDN_HEALTH:
3023 *desc_len = hba->desc_size.hlth_desc;
3024 break;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003025 case QUERY_DESC_IDN_RFU_0:
3026 case QUERY_DESC_IDN_RFU_1:
3027 *desc_len = 0;
3028 break;
3029 default:
3030 *desc_len = 0;
3031 return -EINVAL;
3032 }
3033 return 0;
3034}
3035EXPORT_SYMBOL(ufshcd_map_desc_id_to_length);
3036
3037/**
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003038 * ufshcd_read_desc_param - read the specified descriptor parameter
3039 * @hba: Pointer to adapter instance
3040 * @desc_id: descriptor idn value
3041 * @desc_index: descriptor index
3042 * @param_offset: offset of the parameter to read
3043 * @param_read_buf: pointer to buffer where parameter would be read
3044 * @param_size: sizeof(param_read_buf)
3045 *
3046 * Return 0 in case of success, non-zero otherwise
3047 */
Stanislav Nijnikov45bced82018-02-15 14:14:02 +02003048int ufshcd_read_desc_param(struct ufs_hba *hba,
3049 enum desc_idn desc_id,
3050 int desc_index,
3051 u8 param_offset,
3052 u8 *param_read_buf,
3053 u8 param_size)
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003054{
3055 int ret;
3056 u8 *desc_buf;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003057 int buff_len;
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003058 bool is_kmalloc = true;
3059
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003060 /* Safety check */
3061 if (desc_id >= QUERY_DESC_IDN_MAX || !param_size)
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003062 return -EINVAL;
3063
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003064 /* Get the max length of descriptor from structure filled up at probe
3065 * time.
3066 */
3067 ret = ufshcd_map_desc_id_to_length(hba, desc_id, &buff_len);
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003068
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003069 /* Sanity checks */
3070 if (ret || !buff_len) {
3071 dev_err(hba->dev, "%s: Failed to get full descriptor length",
3072 __func__);
3073 return ret;
3074 }
3075
3076 /* Check whether we need temp memory */
3077 if (param_offset != 0 || param_size < buff_len) {
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003078 desc_buf = kmalloc(buff_len, GFP_KERNEL);
3079 if (!desc_buf)
3080 return -ENOMEM;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003081 } else {
3082 desc_buf = param_read_buf;
3083 is_kmalloc = false;
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003084 }
3085
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003086 /* Request for full descriptor */
Yaniv Gardia70e91b2016-03-10 17:37:14 +02003087 ret = ufshcd_query_descriptor_retry(hba, UPIU_QUERY_OPCODE_READ_DESC,
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003088 desc_id, desc_index, 0,
3089 desc_buf, &buff_len);
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003090
subhashj@codeaurora.orgbde44bb2016-11-23 16:31:41 -08003091 if (ret) {
3092 dev_err(hba->dev, "%s: Failed reading descriptor. desc_id %d, desc_index %d, param_offset %d, ret %d",
3093 __func__, desc_id, desc_index, param_offset, ret);
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003094 goto out;
3095 }
3096
subhashj@codeaurora.orgbde44bb2016-11-23 16:31:41 -08003097 /* Sanity check */
3098 if (desc_buf[QUERY_DESC_DESC_TYPE_OFFSET] != desc_id) {
3099 dev_err(hba->dev, "%s: invalid desc_id %d in descriptor header",
3100 __func__, desc_buf[QUERY_DESC_DESC_TYPE_OFFSET]);
3101 ret = -EINVAL;
3102 goto out;
3103 }
3104
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00003105 /* Check wherher we will not copy more data, than available */
3106 if (is_kmalloc && param_size > buff_len)
3107 param_size = buff_len;
subhashj@codeaurora.orgbde44bb2016-11-23 16:31:41 -08003108
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003109 if (is_kmalloc)
3110 memcpy(param_read_buf, &desc_buf[param_offset], param_size);
3111out:
3112 if (is_kmalloc)
3113 kfree(desc_buf);
3114 return ret;
3115}
3116
3117static inline int ufshcd_read_desc(struct ufs_hba *hba,
3118 enum desc_idn desc_id,
3119 int desc_index,
3120 u8 *buf,
3121 u32 size)
3122{
3123 return ufshcd_read_desc_param(hba, desc_id, desc_index, 0, buf, size);
3124}
3125
3126static inline int ufshcd_read_power_desc(struct ufs_hba *hba,
3127 u8 *buf,
3128 u32 size)
3129{
Szymon Mielczarekdbd34a62017-03-29 08:19:21 +02003130 return ufshcd_read_desc(hba, QUERY_DESC_IDN_POWER, 0, buf, size);
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003131}
3132
Tomas Winkler8209b6d2017-01-05 10:45:10 +02003133static int ufshcd_read_device_desc(struct ufs_hba *hba, u8 *buf, u32 size)
Yaniv Gardib573d482016-03-10 17:37:09 +02003134{
3135 return ufshcd_read_desc(hba, QUERY_DESC_IDN_DEVICE, 0, buf, size);
3136}
Yaniv Gardib573d482016-03-10 17:37:09 +02003137
3138/**
3139 * ufshcd_read_string_desc - read string descriptor
3140 * @hba: pointer to adapter instance
3141 * @desc_index: descriptor index
3142 * @buf: pointer to buffer where descriptor would be read
3143 * @size: size of buf
3144 * @ascii: if true convert from unicode to ascii characters
3145 *
3146 * Return 0 in case of success, non-zero otherwise
3147 */
Stanislav Nijnikov2238d312018-02-15 14:14:07 +02003148int ufshcd_read_string_desc(struct ufs_hba *hba, int desc_index,
3149 u8 *buf, u32 size, bool ascii)
Yaniv Gardib573d482016-03-10 17:37:09 +02003150{
3151 int err = 0;
3152
3153 err = ufshcd_read_desc(hba,
3154 QUERY_DESC_IDN_STRING, desc_index, buf, size);
3155
3156 if (err) {
3157 dev_err(hba->dev, "%s: reading String Desc failed after %d retries. err = %d\n",
3158 __func__, QUERY_REQ_RETRIES, err);
3159 goto out;
3160 }
3161
3162 if (ascii) {
3163 int desc_len;
3164 int ascii_len;
3165 int i;
3166 char *buff_ascii;
3167
3168 desc_len = buf[0];
3169 /* remove header and divide by 2 to move from UTF16 to UTF8 */
3170 ascii_len = (desc_len - QUERY_DESC_HDR_SIZE) / 2 + 1;
3171 if (size < ascii_len + QUERY_DESC_HDR_SIZE) {
3172 dev_err(hba->dev, "%s: buffer allocated size is too small\n",
3173 __func__);
3174 err = -ENOMEM;
3175 goto out;
3176 }
3177
3178 buff_ascii = kmalloc(ascii_len, GFP_KERNEL);
3179 if (!buff_ascii) {
3180 err = -ENOMEM;
Tiezhu Yangfcbefc32016-06-25 12:35:22 +08003181 goto out;
Yaniv Gardib573d482016-03-10 17:37:09 +02003182 }
3183
3184 /*
3185 * the descriptor contains string in UTF16 format
3186 * we need to convert to utf-8 so it can be displayed
3187 */
3188 utf16s_to_utf8s((wchar_t *)&buf[QUERY_DESC_HDR_SIZE],
3189 desc_len - QUERY_DESC_HDR_SIZE,
3190 UTF16_BIG_ENDIAN, buff_ascii, ascii_len);
3191
3192 /* replace non-printable or non-ASCII characters with spaces */
3193 for (i = 0; i < ascii_len; i++)
3194 ufshcd_remove_non_printable(&buff_ascii[i]);
3195
3196 memset(buf + QUERY_DESC_HDR_SIZE, 0,
3197 size - QUERY_DESC_HDR_SIZE);
3198 memcpy(buf + QUERY_DESC_HDR_SIZE, buff_ascii, ascii_len);
3199 buf[QUERY_DESC_LENGTH_OFFSET] = ascii_len + QUERY_DESC_HDR_SIZE;
Yaniv Gardib573d482016-03-10 17:37:09 +02003200 kfree(buff_ascii);
3201 }
3202out:
3203 return err;
3204}
Yaniv Gardib573d482016-03-10 17:37:09 +02003205
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003206/**
3207 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
3208 * @hba: Pointer to adapter instance
3209 * @lun: lun id
3210 * @param_offset: offset of the parameter to read
3211 * @param_read_buf: pointer to buffer where parameter would be read
3212 * @param_size: sizeof(param_read_buf)
3213 *
3214 * Return 0 in case of success, non-zero otherwise
3215 */
3216static inline int ufshcd_read_unit_desc_param(struct ufs_hba *hba,
3217 int lun,
3218 enum unit_desc_param param_offset,
3219 u8 *param_read_buf,
3220 u32 param_size)
3221{
3222 /*
3223 * Unit descriptors are only available for general purpose LUs (LUN id
3224 * from 0 to 7) and RPMB Well known LU.
3225 */
Stanislav Nijnikovd829fc82018-02-15 14:14:09 +02003226 if (!ufs_is_valid_unit_desc_lun(lun))
Subhash Jadavanida461ce2014-09-25 15:32:25 +03003227 return -EOPNOTSUPP;
3228
3229 return ufshcd_read_desc_param(hba, QUERY_DESC_IDN_UNIT, lun,
3230 param_offset, param_read_buf, param_size);
3231}
3232
3233/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303234 * ufshcd_memory_alloc - allocate memory for host memory space data structures
3235 * @hba: per adapter instance
3236 *
3237 * 1. Allocate DMA memory for Command Descriptor array
3238 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
3239 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
3240 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
3241 * (UTMRDL)
3242 * 4. Allocate memory for local reference block(lrb).
3243 *
3244 * Returns 0 for success, non-zero in case of failure
3245 */
3246static int ufshcd_memory_alloc(struct ufs_hba *hba)
3247{
3248 size_t utmrdl_size, utrdl_size, ucdl_size;
3249
3250 /* Allocate memory for UTP command descriptors */
3251 ucdl_size = (sizeof(struct utp_transfer_cmd_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09003252 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
3253 ucdl_size,
3254 &hba->ucdl_dma_addr,
3255 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303256
3257 /*
3258 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
3259 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
3260 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
3261 * be aligned to 128 bytes as well
3262 */
3263 if (!hba->ucdl_base_addr ||
3264 WARN_ON(hba->ucdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303265 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303266 "Command Descriptor Memory allocation failed\n");
3267 goto out;
3268 }
3269
3270 /*
3271 * Allocate memory for UTP Transfer descriptors
3272 * UFSHCI requires 1024 byte alignment of UTRD
3273 */
3274 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09003275 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
3276 utrdl_size,
3277 &hba->utrdl_dma_addr,
3278 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303279 if (!hba->utrdl_base_addr ||
3280 WARN_ON(hba->utrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303281 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303282 "Transfer Descriptor Memory allocation failed\n");
3283 goto out;
3284 }
3285
3286 /*
3287 * Allocate memory for UTP Task Management descriptors
3288 * UFSHCI requires 1024 byte alignment of UTMRD
3289 */
3290 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
Seungwon Jeon2953f852013-06-27 13:31:54 +09003291 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
3292 utmrdl_size,
3293 &hba->utmrdl_dma_addr,
3294 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303295 if (!hba->utmrdl_base_addr ||
3296 WARN_ON(hba->utmrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303297 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303298 "Task Management Descriptor Memory allocation failed\n");
3299 goto out;
3300 }
3301
3302 /* Allocate memory for local reference block */
Seungwon Jeon2953f852013-06-27 13:31:54 +09003303 hba->lrb = devm_kzalloc(hba->dev,
3304 hba->nutrs * sizeof(struct ufshcd_lrb),
3305 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303306 if (!hba->lrb) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303307 dev_err(hba->dev, "LRB Memory allocation failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303308 goto out;
3309 }
3310 return 0;
3311out:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303312 return -ENOMEM;
3313}
3314
3315/**
3316 * ufshcd_host_memory_configure - configure local reference block with
3317 * memory offsets
3318 * @hba: per adapter instance
3319 *
3320 * Configure Host memory space
3321 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
3322 * address.
3323 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
3324 * and PRDT offset.
3325 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
3326 * into local reference block.
3327 */
3328static void ufshcd_host_memory_configure(struct ufs_hba *hba)
3329{
3330 struct utp_transfer_cmd_desc *cmd_descp;
3331 struct utp_transfer_req_desc *utrdlp;
3332 dma_addr_t cmd_desc_dma_addr;
3333 dma_addr_t cmd_desc_element_addr;
3334 u16 response_offset;
3335 u16 prdt_offset;
3336 int cmd_desc_size;
3337 int i;
3338
3339 utrdlp = hba->utrdl_base_addr;
3340 cmd_descp = hba->ucdl_base_addr;
3341
3342 response_offset =
3343 offsetof(struct utp_transfer_cmd_desc, response_upiu);
3344 prdt_offset =
3345 offsetof(struct utp_transfer_cmd_desc, prd_table);
3346
3347 cmd_desc_size = sizeof(struct utp_transfer_cmd_desc);
3348 cmd_desc_dma_addr = hba->ucdl_dma_addr;
3349
3350 for (i = 0; i < hba->nutrs; i++) {
3351 /* Configure UTRD with command descriptor base address */
3352 cmd_desc_element_addr =
3353 (cmd_desc_dma_addr + (cmd_desc_size * i));
3354 utrdlp[i].command_desc_base_addr_lo =
3355 cpu_to_le32(lower_32_bits(cmd_desc_element_addr));
3356 utrdlp[i].command_desc_base_addr_hi =
3357 cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
3358
3359 /* Response upiu and prdt offset should be in double words */
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09003360 if (hba->quirks & UFSHCD_QUIRK_PRDT_BYTE_GRAN) {
3361 utrdlp[i].response_upiu_offset =
3362 cpu_to_le16(response_offset);
3363 utrdlp[i].prd_table_offset =
3364 cpu_to_le16(prdt_offset);
3365 utrdlp[i].response_upiu_length =
3366 cpu_to_le16(ALIGNED_UPIU_SIZE);
3367 } else {
3368 utrdlp[i].response_upiu_offset =
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303369 cpu_to_le16((response_offset >> 2));
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09003370 utrdlp[i].prd_table_offset =
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303371 cpu_to_le16((prdt_offset >> 2));
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09003372 utrdlp[i].response_upiu_length =
Sujit Reddy Thumma3ca316c2013-06-26 22:39:30 +05303373 cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
Kiwoong Kim75b1cc42016-11-22 17:06:59 +09003374 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303375
3376 hba->lrb[i].utr_descriptor_ptr = (utrdlp + i);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003377 hba->lrb[i].utrd_dma_addr = hba->utrdl_dma_addr +
3378 (i * sizeof(struct utp_transfer_req_desc));
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303379 hba->lrb[i].ucd_req_ptr =
3380 (struct utp_upiu_req *)(cmd_descp + i);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003381 hba->lrb[i].ucd_req_dma_addr = cmd_desc_element_addr;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303382 hba->lrb[i].ucd_rsp_ptr =
3383 (struct utp_upiu_rsp *)cmd_descp[i].response_upiu;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003384 hba->lrb[i].ucd_rsp_dma_addr = cmd_desc_element_addr +
3385 response_offset;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303386 hba->lrb[i].ucd_prdt_ptr =
3387 (struct ufshcd_sg_entry *)cmd_descp[i].prd_table;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003388 hba->lrb[i].ucd_prdt_dma_addr = cmd_desc_element_addr +
3389 prdt_offset;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303390 }
3391}
3392
3393/**
3394 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
3395 * @hba: per adapter instance
3396 *
3397 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
3398 * in order to initialize the Unipro link startup procedure.
3399 * Once the Unipro links are up, the device connected to the controller
3400 * is detected.
3401 *
3402 * Returns 0 on success, non-zero value on failure
3403 */
3404static int ufshcd_dme_link_startup(struct ufs_hba *hba)
3405{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303406 struct uic_command uic_cmd = {0};
3407 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303408
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303409 uic_cmd.command = UIC_CMD_DME_LINK_STARTUP;
3410
3411 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3412 if (ret)
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003413 dev_dbg(hba->dev,
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303414 "dme-link-startup: error code %d\n", ret);
3415 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303416}
Alim Akhtar4404c5d2018-05-06 15:44:17 +05303417/**
3418 * ufshcd_dme_reset - UIC command for DME_RESET
3419 * @hba: per adapter instance
3420 *
3421 * DME_RESET command is issued in order to reset UniPro stack.
3422 * This function now deal with cold reset.
3423 *
3424 * Returns 0 on success, non-zero value on failure
3425 */
3426static int ufshcd_dme_reset(struct ufs_hba *hba)
3427{
3428 struct uic_command uic_cmd = {0};
3429 int ret;
3430
3431 uic_cmd.command = UIC_CMD_DME_RESET;
3432
3433 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3434 if (ret)
3435 dev_err(hba->dev,
3436 "dme-reset: error code %d\n", ret);
3437
3438 return ret;
3439}
3440
3441/**
3442 * ufshcd_dme_enable - UIC command for DME_ENABLE
3443 * @hba: per adapter instance
3444 *
3445 * DME_ENABLE command is issued in order to enable UniPro stack.
3446 *
3447 * Returns 0 on success, non-zero value on failure
3448 */
3449static int ufshcd_dme_enable(struct ufs_hba *hba)
3450{
3451 struct uic_command uic_cmd = {0};
3452 int ret;
3453
3454 uic_cmd.command = UIC_CMD_DME_ENABLE;
3455
3456 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3457 if (ret)
3458 dev_err(hba->dev,
3459 "dme-reset: error code %d\n", ret);
3460
3461 return ret;
3462}
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303463
Yaniv Gardicad2e032015-03-31 17:37:14 +03003464static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba)
3465{
3466 #define MIN_DELAY_BEFORE_DME_CMDS_US 1000
3467 unsigned long min_sleep_time_us;
3468
3469 if (!(hba->quirks & UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS))
3470 return;
3471
3472 /*
3473 * last_dme_cmd_tstamp will be 0 only for 1st call to
3474 * this function
3475 */
3476 if (unlikely(!ktime_to_us(hba->last_dme_cmd_tstamp))) {
3477 min_sleep_time_us = MIN_DELAY_BEFORE_DME_CMDS_US;
3478 } else {
3479 unsigned long delta =
3480 (unsigned long) ktime_to_us(
3481 ktime_sub(ktime_get(),
3482 hba->last_dme_cmd_tstamp));
3483
3484 if (delta < MIN_DELAY_BEFORE_DME_CMDS_US)
3485 min_sleep_time_us =
3486 MIN_DELAY_BEFORE_DME_CMDS_US - delta;
3487 else
3488 return; /* no more delay required */
3489 }
3490
3491 /* allow sleep for extra 50us if needed */
3492 usleep_range(min_sleep_time_us, min_sleep_time_us + 50);
3493}
3494
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303495/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303496 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
3497 * @hba: per adapter instance
3498 * @attr_sel: uic command argument1
3499 * @attr_set: attribute set type as uic command argument2
3500 * @mib_val: setting value as uic command argument3
3501 * @peer: indicate whether peer or local
3502 *
3503 * Returns 0 on success, non-zero value on failure
3504 */
3505int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
3506 u8 attr_set, u32 mib_val, u8 peer)
3507{
3508 struct uic_command uic_cmd = {0};
3509 static const char *const action[] = {
3510 "dme-set",
3511 "dme-peer-set"
3512 };
3513 const char *set = action[!!peer];
3514 int ret;
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003515 int retries = UFS_UIC_COMMAND_RETRIES;
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303516
3517 uic_cmd.command = peer ?
3518 UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET;
3519 uic_cmd.argument1 = attr_sel;
3520 uic_cmd.argument2 = UIC_ARG_ATTR_TYPE(attr_set);
3521 uic_cmd.argument3 = mib_val;
3522
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003523 do {
3524 /* for peer attributes we retry upon failure */
3525 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3526 if (ret)
3527 dev_dbg(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
3528 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
3529 } while (ret && peer && --retries);
3530
Yaniv Gardif37e9f82016-11-23 16:32:49 -08003531 if (ret)
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003532 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x failed %d retries\n",
Yaniv Gardif37e9f82016-11-23 16:32:49 -08003533 set, UIC_GET_ATTR_ID(attr_sel), mib_val,
3534 UFS_UIC_COMMAND_RETRIES - retries);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303535
3536 return ret;
3537}
3538EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
3539
3540/**
3541 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
3542 * @hba: per adapter instance
3543 * @attr_sel: uic command argument1
3544 * @mib_val: the value of the attribute as returned by the UIC command
3545 * @peer: indicate whether peer or local
3546 *
3547 * Returns 0 on success, non-zero value on failure
3548 */
3549int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
3550 u32 *mib_val, u8 peer)
3551{
3552 struct uic_command uic_cmd = {0};
3553 static const char *const action[] = {
3554 "dme-get",
3555 "dme-peer-get"
3556 };
3557 const char *get = action[!!peer];
3558 int ret;
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003559 int retries = UFS_UIC_COMMAND_RETRIES;
Yaniv Gardi874237f2015-05-17 18:55:03 +03003560 struct ufs_pa_layer_attr orig_pwr_info;
3561 struct ufs_pa_layer_attr temp_pwr_info;
3562 bool pwr_mode_change = false;
3563
3564 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)) {
3565 orig_pwr_info = hba->pwr_info;
3566 temp_pwr_info = orig_pwr_info;
3567
3568 if (orig_pwr_info.pwr_tx == FAST_MODE ||
3569 orig_pwr_info.pwr_rx == FAST_MODE) {
3570 temp_pwr_info.pwr_tx = FASTAUTO_MODE;
3571 temp_pwr_info.pwr_rx = FASTAUTO_MODE;
3572 pwr_mode_change = true;
3573 } else if (orig_pwr_info.pwr_tx == SLOW_MODE ||
3574 orig_pwr_info.pwr_rx == SLOW_MODE) {
3575 temp_pwr_info.pwr_tx = SLOWAUTO_MODE;
3576 temp_pwr_info.pwr_rx = SLOWAUTO_MODE;
3577 pwr_mode_change = true;
3578 }
3579 if (pwr_mode_change) {
3580 ret = ufshcd_change_power_mode(hba, &temp_pwr_info);
3581 if (ret)
3582 goto out;
3583 }
3584 }
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303585
3586 uic_cmd.command = peer ?
3587 UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET;
3588 uic_cmd.argument1 = attr_sel;
3589
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003590 do {
3591 /* for peer attributes we retry upon failure */
3592 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
3593 if (ret)
3594 dev_dbg(hba->dev, "%s: attr-id 0x%x error code %d\n",
3595 get, UIC_GET_ATTR_ID(attr_sel), ret);
3596 } while (ret && peer && --retries);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303597
Yaniv Gardif37e9f82016-11-23 16:32:49 -08003598 if (ret)
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003599 dev_err(hba->dev, "%s: attr-id 0x%x failed %d retries\n",
Yaniv Gardif37e9f82016-11-23 16:32:49 -08003600 get, UIC_GET_ATTR_ID(attr_sel),
3601 UFS_UIC_COMMAND_RETRIES - retries);
Yaniv Gardi64238fb2016-02-01 15:02:43 +02003602
3603 if (mib_val && !ret)
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303604 *mib_val = uic_cmd.argument3;
Yaniv Gardi874237f2015-05-17 18:55:03 +03003605
3606 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)
3607 && pwr_mode_change)
3608 ufshcd_change_power_mode(hba, &orig_pwr_info);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303609out:
3610 return ret;
3611}
3612EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
3613
3614/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003615 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
3616 * state) and waits for it to take effect.
3617 *
3618 * @hba: per adapter instance
3619 * @cmd: UIC command to execute
3620 *
3621 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
3622 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
3623 * and device UniPro link and hence it's final completion would be indicated by
3624 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
3625 * addition to normal UIC command completion Status (UCCS). This function only
3626 * returns after the relevant status bits indicate the completion.
3627 *
3628 * Returns 0 on success, non-zero value on failure
3629 */
3630static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
3631{
3632 struct completion uic_async_done;
3633 unsigned long flags;
3634 u8 status;
3635 int ret;
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02003636 bool reenable_intr = false;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003637
3638 mutex_lock(&hba->uic_cmd_mutex);
3639 init_completion(&uic_async_done);
Yaniv Gardicad2e032015-03-31 17:37:14 +03003640 ufshcd_add_delay_before_dme_cmd(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003641
3642 spin_lock_irqsave(hba->host->host_lock, flags);
3643 hba->uic_async_done = &uic_async_done;
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02003644 if (ufshcd_readl(hba, REG_INTERRUPT_ENABLE) & UIC_COMMAND_COMPL) {
3645 ufshcd_disable_intr(hba, UIC_COMMAND_COMPL);
3646 /*
3647 * Make sure UIC command completion interrupt is disabled before
3648 * issuing UIC command.
3649 */
3650 wmb();
3651 reenable_intr = true;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003652 }
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02003653 ret = __ufshcd_send_uic_cmd(hba, cmd, false);
3654 spin_unlock_irqrestore(hba->host->host_lock, flags);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003655 if (ret) {
3656 dev_err(hba->dev,
3657 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
3658 cmd->command, cmd->argument3, ret);
3659 goto out;
3660 }
3661
3662 if (!wait_for_completion_timeout(hba->uic_async_done,
3663 msecs_to_jiffies(UIC_CMD_TIMEOUT))) {
3664 dev_err(hba->dev,
3665 "pwr ctrl cmd 0x%x with mode 0x%x completion timeout\n",
3666 cmd->command, cmd->argument3);
3667 ret = -ETIMEDOUT;
3668 goto out;
3669 }
3670
3671 status = ufshcd_get_upmcrs(hba);
3672 if (status != PWR_LOCAL) {
3673 dev_err(hba->dev,
Zang Leigang479da362017-09-19 16:50:30 +08003674 "pwr ctrl cmd 0x%x failed, host upmcrs:0x%x\n",
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003675 cmd->command, status);
3676 ret = (status != PWR_OK) ? status : -1;
3677 }
3678out:
Venkat Gopalakrishnan7942f7b2017-02-03 16:58:24 -08003679 if (ret) {
3680 ufshcd_print_host_state(hba);
3681 ufshcd_print_pwr_info(hba);
3682 ufshcd_print_host_regs(hba);
3683 }
3684
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003685 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02003686 hba->active_uic_cmd = NULL;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003687 hba->uic_async_done = NULL;
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02003688 if (reenable_intr)
3689 ufshcd_enable_intr(hba, UIC_COMMAND_COMPL);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003690 spin_unlock_irqrestore(hba->host->host_lock, flags);
3691 mutex_unlock(&hba->uic_cmd_mutex);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003692
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003693 return ret;
3694}
3695
3696/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303697 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
3698 * using DME_SET primitives.
3699 * @hba: per adapter instance
3700 * @mode: powr mode value
3701 *
3702 * Returns 0 on success, non-zero value on failure
3703 */
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05303704static int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303705{
3706 struct uic_command uic_cmd = {0};
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003707 int ret;
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303708
Yaniv Gardic3a2f9e2015-05-17 18:55:01 +03003709 if (hba->quirks & UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP) {
3710 ret = ufshcd_dme_set(hba,
3711 UIC_ARG_MIB_SEL(PA_RXHSUNTERMCAP, 0), 1);
3712 if (ret) {
3713 dev_err(hba->dev, "%s: failed to enable PA_RXHSUNTERMCAP ret %d\n",
3714 __func__, ret);
3715 goto out;
3716 }
3717 }
3718
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303719 uic_cmd.command = UIC_CMD_DME_SET;
3720 uic_cmd.argument1 = UIC_ARG_MIB(PA_PWRMODE);
3721 uic_cmd.argument3 = mode;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003722 ufshcd_hold(hba, false);
3723 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
3724 ufshcd_release(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303725
Yaniv Gardic3a2f9e2015-05-17 18:55:01 +03003726out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003727 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003728}
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303729
Yaniv Gardi53c12d02016-02-01 15:02:45 +02003730static int ufshcd_link_recovery(struct ufs_hba *hba)
3731{
3732 int ret;
3733 unsigned long flags;
3734
3735 spin_lock_irqsave(hba->host->host_lock, flags);
3736 hba->ufshcd_state = UFSHCD_STATE_RESET;
3737 ufshcd_set_eh_in_progress(hba);
3738 spin_unlock_irqrestore(hba->host->host_lock, flags);
3739
3740 ret = ufshcd_host_reset_and_restore(hba);
3741
3742 spin_lock_irqsave(hba->host->host_lock, flags);
3743 if (ret)
3744 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3745 ufshcd_clear_eh_in_progress(hba);
3746 spin_unlock_irqrestore(hba->host->host_lock, flags);
3747
3748 if (ret)
3749 dev_err(hba->dev, "%s: link recovery failed, err %d",
3750 __func__, ret);
3751
3752 return ret;
3753}
3754
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02003755static int __ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003756{
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02003757 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003758 struct uic_command uic_cmd = {0};
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08003759 ktime_t start = ktime_get();
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003760
Kiwoong Kimee32c902016-11-10 21:17:43 +09003761 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_ENTER, PRE_CHANGE);
3762
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003763 uic_cmd.command = UIC_CMD_DME_HIBER_ENTER;
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02003764 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08003765 trace_ufshcd_profile_hibern8(dev_name(hba->dev), "enter",
3766 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003767
Yaniv Gardi53c12d02016-02-01 15:02:45 +02003768 if (ret) {
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02003769 dev_err(hba->dev, "%s: hibern8 enter failed. ret = %d\n",
3770 __func__, ret);
3771
Yaniv Gardi53c12d02016-02-01 15:02:45 +02003772 /*
3773 * If link recovery fails then return error so that caller
3774 * don't retry the hibern8 enter again.
3775 */
3776 if (ufshcd_link_recovery(hba))
3777 ret = -ENOLINK;
Kiwoong Kimee32c902016-11-10 21:17:43 +09003778 } else
3779 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_ENTER,
3780 POST_CHANGE);
Yaniv Gardi53c12d02016-02-01 15:02:45 +02003781
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02003782 return ret;
3783}
3784
3785static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
3786{
3787 int ret = 0, retries;
3788
3789 for (retries = UIC_HIBERN8_ENTER_RETRIES; retries > 0; retries--) {
3790 ret = __ufshcd_uic_hibern8_enter(hba);
3791 if (!ret || ret == -ENOLINK)
3792 goto out;
3793 }
3794out:
3795 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003796}
3797
3798static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba)
3799{
3800 struct uic_command uic_cmd = {0};
3801 int ret;
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08003802 ktime_t start = ktime_get();
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003803
Kiwoong Kimee32c902016-11-10 21:17:43 +09003804 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_EXIT, PRE_CHANGE);
3805
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003806 uic_cmd.command = UIC_CMD_DME_HIBER_EXIT;
3807 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08003808 trace_ufshcd_profile_hibern8(dev_name(hba->dev), "exit",
3809 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
3810
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303811 if (ret) {
Yaniv Gardi53c12d02016-02-01 15:02:45 +02003812 dev_err(hba->dev, "%s: hibern8 exit failed. ret = %d\n",
3813 __func__, ret);
3814 ret = ufshcd_link_recovery(hba);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003815 } else {
Kiwoong Kimee32c902016-11-10 21:17:43 +09003816 ufshcd_vops_hibern8_notify(hba, UIC_CMD_DME_HIBER_EXIT,
3817 POST_CHANGE);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08003818 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_get();
3819 hba->ufs_stats.hibern8_exit_cnt++;
3820 }
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303821
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303822 return ret;
3823}
3824
Adrian Hunterad448372018-03-20 15:07:38 +02003825static void ufshcd_auto_hibern8_enable(struct ufs_hba *hba)
3826{
3827 unsigned long flags;
3828
3829 if (!(hba->capabilities & MASK_AUTO_HIBERN8_SUPPORT) || !hba->ahit)
3830 return;
3831
3832 spin_lock_irqsave(hba->host->host_lock, flags);
3833 ufshcd_writel(hba, hba->ahit, REG_AUTO_HIBERNATE_IDLE_TIMER);
3834 spin_unlock_irqrestore(hba->host->host_lock, flags);
3835}
3836
Yaniv Gardi50646362014-10-23 13:25:13 +03003837 /**
3838 * ufshcd_init_pwr_info - setting the POR (power on reset)
3839 * values in hba power info
3840 * @hba: per-adapter instance
3841 */
3842static void ufshcd_init_pwr_info(struct ufs_hba *hba)
3843{
3844 hba->pwr_info.gear_rx = UFS_PWM_G1;
3845 hba->pwr_info.gear_tx = UFS_PWM_G1;
3846 hba->pwr_info.lane_rx = 1;
3847 hba->pwr_info.lane_tx = 1;
3848 hba->pwr_info.pwr_rx = SLOWAUTO_MODE;
3849 hba->pwr_info.pwr_tx = SLOWAUTO_MODE;
3850 hba->pwr_info.hs_rate = 0;
3851}
3852
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303853/**
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003854 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
3855 * @hba: per-adapter instance
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303856 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003857static int ufshcd_get_max_pwr_mode(struct ufs_hba *hba)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303858{
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003859 struct ufs_pa_layer_attr *pwr_info = &hba->max_pwr_info.info;
3860
3861 if (hba->max_pwr_info.is_valid)
3862 return 0;
3863
subhashj@codeaurora.org2349b532016-11-23 16:33:19 -08003864 pwr_info->pwr_tx = FAST_MODE;
3865 pwr_info->pwr_rx = FAST_MODE;
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003866 pwr_info->hs_rate = PA_HS_MODE_B;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303867
3868 /* Get the connected lane count */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003869 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
3870 &pwr_info->lane_rx);
3871 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
3872 &pwr_info->lane_tx);
3873
3874 if (!pwr_info->lane_rx || !pwr_info->lane_tx) {
3875 dev_err(hba->dev, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
3876 __func__,
3877 pwr_info->lane_rx,
3878 pwr_info->lane_tx);
3879 return -EINVAL;
3880 }
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303881
3882 /*
3883 * First, get the maximum gears of HS speed.
3884 * If a zero value, it means there is no HSGEAR capability.
3885 * Then, get the maximum gears of PWM speed.
3886 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003887 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &pwr_info->gear_rx);
3888 if (!pwr_info->gear_rx) {
3889 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
3890 &pwr_info->gear_rx);
3891 if (!pwr_info->gear_rx) {
3892 dev_err(hba->dev, "%s: invalid max pwm rx gear read = %d\n",
3893 __func__, pwr_info->gear_rx);
3894 return -EINVAL;
3895 }
subhashj@codeaurora.org2349b532016-11-23 16:33:19 -08003896 pwr_info->pwr_rx = SLOW_MODE;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303897 }
3898
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003899 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR),
3900 &pwr_info->gear_tx);
3901 if (!pwr_info->gear_tx) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303902 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003903 &pwr_info->gear_tx);
3904 if (!pwr_info->gear_tx) {
3905 dev_err(hba->dev, "%s: invalid max pwm tx gear read = %d\n",
3906 __func__, pwr_info->gear_tx);
3907 return -EINVAL;
3908 }
subhashj@codeaurora.org2349b532016-11-23 16:33:19 -08003909 pwr_info->pwr_tx = SLOW_MODE;
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003910 }
3911
3912 hba->max_pwr_info.is_valid = true;
3913 return 0;
3914}
3915
3916static int ufshcd_change_power_mode(struct ufs_hba *hba,
3917 struct ufs_pa_layer_attr *pwr_mode)
3918{
3919 int ret;
3920
3921 /* if already configured to the requested pwr_mode */
3922 if (pwr_mode->gear_rx == hba->pwr_info.gear_rx &&
3923 pwr_mode->gear_tx == hba->pwr_info.gear_tx &&
3924 pwr_mode->lane_rx == hba->pwr_info.lane_rx &&
3925 pwr_mode->lane_tx == hba->pwr_info.lane_tx &&
3926 pwr_mode->pwr_rx == hba->pwr_info.pwr_rx &&
3927 pwr_mode->pwr_tx == hba->pwr_info.pwr_tx &&
3928 pwr_mode->hs_rate == hba->pwr_info.hs_rate) {
3929 dev_dbg(hba->dev, "%s: power already configured\n", __func__);
3930 return 0;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303931 }
3932
3933 /*
3934 * Configure attributes for power mode change with below.
3935 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
3936 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
3937 * - PA_HSSERIES
3938 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003939 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), pwr_mode->gear_rx);
3940 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES),
3941 pwr_mode->lane_rx);
3942 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
3943 pwr_mode->pwr_rx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303944 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003945 else
3946 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303947
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003948 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), pwr_mode->gear_tx);
3949 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES),
3950 pwr_mode->lane_tx);
3951 if (pwr_mode->pwr_tx == FASTAUTO_MODE ||
3952 pwr_mode->pwr_tx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303953 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003954 else
3955 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303956
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003957 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
3958 pwr_mode->pwr_tx == FASTAUTO_MODE ||
3959 pwr_mode->pwr_rx == FAST_MODE ||
3960 pwr_mode->pwr_tx == FAST_MODE)
3961 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES),
3962 pwr_mode->hs_rate);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303963
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003964 ret = ufshcd_uic_change_pwr_mode(hba, pwr_mode->pwr_rx << 4
3965 | pwr_mode->pwr_tx);
3966
3967 if (ret) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05303968 dev_err(hba->dev,
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003969 "%s: power mode change failed %d\n", __func__, ret);
3970 } else {
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02003971 ufshcd_vops_pwr_change_notify(hba, POST_CHANGE, NULL,
3972 pwr_mode);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003973
3974 memcpy(&hba->pwr_info, pwr_mode,
3975 sizeof(struct ufs_pa_layer_attr));
3976 }
3977
3978 return ret;
3979}
3980
3981/**
3982 * ufshcd_config_pwr_mode - configure a new power mode
3983 * @hba: per-adapter instance
3984 * @desired_pwr_mode: desired power configuration
3985 */
Alim Akhtar0d846e72018-05-06 15:44:18 +05303986int ufshcd_config_pwr_mode(struct ufs_hba *hba,
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003987 struct ufs_pa_layer_attr *desired_pwr_mode)
3988{
3989 struct ufs_pa_layer_attr final_params = { 0 };
3990 int ret;
3991
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02003992 ret = ufshcd_vops_pwr_change_notify(hba, PRE_CHANGE,
3993 desired_pwr_mode, &final_params);
3994
3995 if (ret)
Dolev Raviv7eb584d2014-09-25 15:32:31 +03003996 memcpy(&final_params, desired_pwr_mode, sizeof(final_params));
3997
3998 ret = ufshcd_change_power_mode(hba, &final_params);
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08003999 if (!ret)
4000 ufshcd_print_pwr_info(hba);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05304001
4002 return ret;
4003}
Alim Akhtar0d846e72018-05-06 15:44:18 +05304004EXPORT_SYMBOL_GPL(ufshcd_config_pwr_mode);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05304005
4006/**
Dolev Raviv68078d52013-07-30 00:35:58 +05304007 * ufshcd_complete_dev_init() - checks device readiness
Bart Van Assche8aa29f12018-03-01 15:07:20 -08004008 * @hba: per-adapter instance
Dolev Raviv68078d52013-07-30 00:35:58 +05304009 *
4010 * Set fDeviceInit flag and poll until device toggles it.
4011 */
4012static int ufshcd_complete_dev_init(struct ufs_hba *hba)
4013{
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02004014 int i;
4015 int err;
Dolev Raviv68078d52013-07-30 00:35:58 +05304016 bool flag_res = 1;
4017
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02004018 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
4019 QUERY_FLAG_IDN_FDEVICEINIT, NULL);
Dolev Raviv68078d52013-07-30 00:35:58 +05304020 if (err) {
4021 dev_err(hba->dev,
4022 "%s setting fDeviceInit flag failed with error %d\n",
4023 __func__, err);
4024 goto out;
4025 }
4026
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02004027 /* poll for max. 1000 iterations for fDeviceInit flag to clear */
4028 for (i = 0; i < 1000 && !err && flag_res; i++)
4029 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
4030 QUERY_FLAG_IDN_FDEVICEINIT, &flag_res);
4031
Dolev Raviv68078d52013-07-30 00:35:58 +05304032 if (err)
4033 dev_err(hba->dev,
4034 "%s reading fDeviceInit flag failed with error %d\n",
4035 __func__, err);
4036 else if (flag_res)
4037 dev_err(hba->dev,
4038 "%s fDeviceInit was not cleared by the device\n",
4039 __func__);
4040
4041out:
4042 return err;
4043}
4044
4045/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304046 * ufshcd_make_hba_operational - Make UFS controller operational
4047 * @hba: per adapter instance
4048 *
4049 * To bring UFS host controller to operational state,
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004050 * 1. Enable required interrupts
4051 * 2. Configure interrupt aggregation
Yaniv Gardi897efe62016-02-01 15:02:48 +02004052 * 3. Program UTRL and UTMRL base address
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004053 * 4. Configure run-stop-registers
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304054 *
4055 * Returns 0 on success, non-zero value on failure
4056 */
4057static int ufshcd_make_hba_operational(struct ufs_hba *hba)
4058{
4059 int err = 0;
4060 u32 reg;
4061
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304062 /* Enable required interrupts */
4063 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
4064
4065 /* Configure interrupt aggregation */
Yaniv Gardib8521902015-05-17 18:54:57 +03004066 if (ufshcd_is_intr_aggr_allowed(hba))
4067 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
4068 else
4069 ufshcd_disable_intr_aggr(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304070
4071 /* Configure UTRL and UTMRL base address registers */
4072 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
4073 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
4074 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
4075 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
4076 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
4077 REG_UTP_TASK_REQ_LIST_BASE_L);
4078 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
4079 REG_UTP_TASK_REQ_LIST_BASE_H);
4080
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304081 /*
Yaniv Gardi897efe62016-02-01 15:02:48 +02004082 * Make sure base address and interrupt setup are updated before
4083 * enabling the run/stop registers below.
4084 */
4085 wmb();
4086
4087 /*
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304088 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304089 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004090 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304091 if (!(ufshcd_get_lists_status(reg))) {
4092 ufshcd_enable_run_stop_reg(hba);
4093 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304094 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304095 "Host controller not ready to process requests");
4096 err = -EIO;
4097 goto out;
4098 }
4099
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304100out:
4101 return err;
4102}
4103
4104/**
Yaniv Gardi596585a2016-03-10 17:37:08 +02004105 * ufshcd_hba_stop - Send controller to reset state
4106 * @hba: per adapter instance
4107 * @can_sleep: perform sleep or just spin
4108 */
4109static inline void ufshcd_hba_stop(struct ufs_hba *hba, bool can_sleep)
4110{
4111 int err;
4112
4113 ufshcd_writel(hba, CONTROLLER_DISABLE, REG_CONTROLLER_ENABLE);
4114 err = ufshcd_wait_for_register(hba, REG_CONTROLLER_ENABLE,
4115 CONTROLLER_ENABLE, CONTROLLER_DISABLE,
4116 10, 1, can_sleep);
4117 if (err)
4118 dev_err(hba->dev, "%s: Controller disable failed\n", __func__);
4119}
4120
4121/**
Alim Akhtar4404c5d2018-05-06 15:44:17 +05304122 * ufshcd_hba_execute_hce - initialize the controller
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304123 * @hba: per adapter instance
4124 *
4125 * The controller resets itself and controller firmware initialization
4126 * sequence kicks off. When controller is ready it will set
4127 * the Host Controller Enable bit to 1.
4128 *
4129 * Returns 0 on success, non-zero value on failure
4130 */
Alim Akhtar4404c5d2018-05-06 15:44:17 +05304131static int ufshcd_hba_execute_hce(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304132{
4133 int retry;
4134
4135 /*
4136 * msleep of 1 and 5 used in this function might result in msleep(20),
4137 * but it was necessary to send the UFS FPGA to reset mode during
4138 * development and testing of this driver. msleep can be changed to
4139 * mdelay and retry count can be reduced based on the controller.
4140 */
Yaniv Gardi596585a2016-03-10 17:37:08 +02004141 if (!ufshcd_is_hba_active(hba))
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304142 /* change controller state to "reset state" */
Yaniv Gardi596585a2016-03-10 17:37:08 +02004143 ufshcd_hba_stop(hba, true);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304144
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004145 /* UniPro link is disabled at this point */
4146 ufshcd_set_link_off(hba);
4147
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02004148 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004149
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304150 /* start controller initialization sequence */
4151 ufshcd_hba_start(hba);
4152
4153 /*
4154 * To initialize a UFS host controller HCE bit must be set to 1.
4155 * During initialization the HCE bit value changes from 1->0->1.
4156 * When the host controller completes initialization sequence
4157 * it sets the value of HCE bit to 1. The same HCE bit is read back
4158 * to check if the controller has completed initialization sequence.
4159 * So without this delay the value HCE = 1, set in the previous
4160 * instruction might be read back.
4161 * This delay can be changed based on the controller.
4162 */
4163 msleep(1);
4164
4165 /* wait for the host controller to complete initialization */
4166 retry = 10;
4167 while (ufshcd_is_hba_active(hba)) {
4168 if (retry) {
4169 retry--;
4170 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304171 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304172 "Controller enable failed\n");
4173 return -EIO;
4174 }
4175 msleep(5);
4176 }
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004177
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004178 /* enable UIC related interrupts */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004179 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004180
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02004181 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004182
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304183 return 0;
4184}
4185
Alim Akhtar4404c5d2018-05-06 15:44:17 +05304186static int ufshcd_hba_enable(struct ufs_hba *hba)
4187{
4188 int ret;
4189
4190 if (hba->quirks & UFSHCI_QUIRK_BROKEN_HCE) {
4191 ufshcd_set_link_off(hba);
4192 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
4193
4194 /* enable UIC related interrupts */
4195 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
4196 ret = ufshcd_dme_reset(hba);
4197 if (!ret) {
4198 ret = ufshcd_dme_enable(hba);
4199 if (!ret)
4200 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
4201 if (ret)
4202 dev_err(hba->dev,
4203 "Host controller enable failed with non-hce\n");
4204 }
4205 } else {
4206 ret = ufshcd_hba_execute_hce(hba);
4207 }
4208
4209 return ret;
4210}
Yaniv Gardi7ca38cf2015-05-17 18:54:59 +03004211static int ufshcd_disable_tx_lcc(struct ufs_hba *hba, bool peer)
4212{
4213 int tx_lanes, i, err = 0;
4214
4215 if (!peer)
4216 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
4217 &tx_lanes);
4218 else
4219 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
4220 &tx_lanes);
4221 for (i = 0; i < tx_lanes; i++) {
4222 if (!peer)
4223 err = ufshcd_dme_set(hba,
4224 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
4225 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
4226 0);
4227 else
4228 err = ufshcd_dme_peer_set(hba,
4229 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
4230 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
4231 0);
4232 if (err) {
4233 dev_err(hba->dev, "%s: TX LCC Disable failed, peer = %d, lane = %d, err = %d",
4234 __func__, peer, i, err);
4235 break;
4236 }
4237 }
4238
4239 return err;
4240}
4241
4242static inline int ufshcd_disable_device_tx_lcc(struct ufs_hba *hba)
4243{
4244 return ufshcd_disable_tx_lcc(hba, true);
4245}
4246
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304247/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304248 * ufshcd_link_startup - Initialize unipro link startup
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304249 * @hba: per adapter instance
4250 *
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304251 * Returns 0 for success, non-zero in case of failure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304252 */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304253static int ufshcd_link_startup(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304254{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304255 int ret;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004256 int retries = DME_LINKSTARTUP_RETRIES;
subhashj@codeaurora.org7caf4892016-11-23 16:32:20 -08004257 bool link_startup_again = false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304258
subhashj@codeaurora.org7caf4892016-11-23 16:32:20 -08004259 /*
4260 * If UFS device isn't active then we will have to issue link startup
4261 * 2 times to make sure the device state move to active.
4262 */
4263 if (!ufshcd_is_ufs_dev_active(hba))
4264 link_startup_again = true;
4265
4266link_startup:
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004267 do {
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02004268 ufshcd_vops_link_startup_notify(hba, PRE_CHANGE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304269
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004270 ret = ufshcd_dme_link_startup(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004271
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004272 /* check if device is detected by inter-connect layer */
4273 if (!ret && !ufshcd_is_device_present(hba)) {
4274 dev_err(hba->dev, "%s: Device not present\n", __func__);
4275 ret = -ENXIO;
4276 goto out;
4277 }
4278
4279 /*
4280 * DME link lost indication is only received when link is up,
4281 * but we can't be sure if the link is up until link startup
4282 * succeeds. So reset the local Uni-Pro and try again.
4283 */
4284 if (ret && ufshcd_hba_enable(hba))
4285 goto out;
4286 } while (ret && retries--);
4287
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304288 if (ret)
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004289 /* failed to get the link up... retire */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304290 goto out;
4291
subhashj@codeaurora.org7caf4892016-11-23 16:32:20 -08004292 if (link_startup_again) {
4293 link_startup_again = false;
4294 retries = DME_LINKSTARTUP_RETRIES;
4295 goto link_startup;
4296 }
4297
subhashj@codeaurora.orgd2aebb92016-12-22 18:41:33 -08004298 /* Mark that link is up in PWM-G1, 1-lane, SLOW-AUTO mode */
4299 ufshcd_init_pwr_info(hba);
4300 ufshcd_print_pwr_info(hba);
4301
Yaniv Gardi7ca38cf2015-05-17 18:54:59 +03004302 if (hba->quirks & UFSHCD_QUIRK_BROKEN_LCC) {
4303 ret = ufshcd_disable_device_tx_lcc(hba);
4304 if (ret)
4305 goto out;
4306 }
4307
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004308 /* Include any host controller configuration via UIC commands */
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02004309 ret = ufshcd_vops_link_startup_notify(hba, POST_CHANGE);
4310 if (ret)
4311 goto out;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004312
4313 ret = ufshcd_make_hba_operational(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304314out:
Venkat Gopalakrishnan7942f7b2017-02-03 16:58:24 -08004315 if (ret) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304316 dev_err(hba->dev, "link startup failed %d\n", ret);
Venkat Gopalakrishnan7942f7b2017-02-03 16:58:24 -08004317 ufshcd_print_host_state(hba);
4318 ufshcd_print_pwr_info(hba);
4319 ufshcd_print_host_regs(hba);
4320 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304321 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304322}
4323
4324/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304325 * ufshcd_verify_dev_init() - Verify device initialization
4326 * @hba: per-adapter instance
4327 *
4328 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
4329 * device Transport Protocol (UTP) layer is ready after a reset.
4330 * If the UTP layer at the device side is not initialized, it may
4331 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
4332 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
4333 */
4334static int ufshcd_verify_dev_init(struct ufs_hba *hba)
4335{
4336 int err = 0;
4337 int retries;
4338
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004339 ufshcd_hold(hba, false);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304340 mutex_lock(&hba->dev_cmd.lock);
4341 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
4342 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
4343 NOP_OUT_TIMEOUT);
4344
4345 if (!err || err == -ETIMEDOUT)
4346 break;
4347
4348 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
4349 }
4350 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004351 ufshcd_release(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304352
4353 if (err)
4354 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
4355 return err;
4356}
4357
4358/**
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004359 * ufshcd_set_queue_depth - set lun queue depth
4360 * @sdev: pointer to SCSI device
4361 *
4362 * Read bLUQueueDepth value and activate scsi tagged command
4363 * queueing. For WLUN, queue depth is set to 1. For best-effort
4364 * cases (bLUQueueDepth = 0) the queue depth is set to a maximum
4365 * value that host can queue.
4366 */
4367static void ufshcd_set_queue_depth(struct scsi_device *sdev)
4368{
4369 int ret = 0;
4370 u8 lun_qdepth;
4371 struct ufs_hba *hba;
4372
4373 hba = shost_priv(sdev->host);
4374
4375 lun_qdepth = hba->nutrs;
Szymon Mielczarekdbd34a62017-03-29 08:19:21 +02004376 ret = ufshcd_read_unit_desc_param(hba,
4377 ufshcd_scsi_to_upiu_lun(sdev->lun),
4378 UNIT_DESC_PARAM_LU_Q_DEPTH,
4379 &lun_qdepth,
4380 sizeof(lun_qdepth));
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004381
4382 /* Some WLUN doesn't support unit descriptor */
4383 if (ret == -EOPNOTSUPP)
4384 lun_qdepth = 1;
4385 else if (!lun_qdepth)
4386 /* eventually, we can figure out the real queue depth */
4387 lun_qdepth = hba->nutrs;
4388 else
4389 lun_qdepth = min_t(int, lun_qdepth, hba->nutrs);
4390
4391 dev_dbg(hba->dev, "%s: activate tcq with queue depth %d\n",
4392 __func__, lun_qdepth);
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004393 scsi_change_queue_depth(sdev, lun_qdepth);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004394}
4395
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004396/*
4397 * ufshcd_get_lu_wp - returns the "b_lu_write_protect" from UNIT DESCRIPTOR
4398 * @hba: per-adapter instance
4399 * @lun: UFS device lun id
4400 * @b_lu_write_protect: pointer to buffer to hold the LU's write protect info
4401 *
4402 * Returns 0 in case of success and b_lu_write_protect status would be returned
4403 * @b_lu_write_protect parameter.
4404 * Returns -ENOTSUPP if reading b_lu_write_protect is not supported.
4405 * Returns -EINVAL in case of invalid parameters passed to this function.
4406 */
4407static int ufshcd_get_lu_wp(struct ufs_hba *hba,
4408 u8 lun,
4409 u8 *b_lu_write_protect)
4410{
4411 int ret;
4412
4413 if (!b_lu_write_protect)
4414 ret = -EINVAL;
4415 /*
4416 * According to UFS device spec, RPMB LU can't be write
4417 * protected so skip reading bLUWriteProtect parameter for
4418 * it. For other W-LUs, UNIT DESCRIPTOR is not available.
4419 */
4420 else if (lun >= UFS_UPIU_MAX_GENERAL_LUN)
4421 ret = -ENOTSUPP;
4422 else
4423 ret = ufshcd_read_unit_desc_param(hba,
4424 lun,
4425 UNIT_DESC_PARAM_LU_WR_PROTECT,
4426 b_lu_write_protect,
4427 sizeof(*b_lu_write_protect));
4428 return ret;
4429}
4430
4431/**
4432 * ufshcd_get_lu_power_on_wp_status - get LU's power on write protect
4433 * status
4434 * @hba: per-adapter instance
4435 * @sdev: pointer to SCSI device
4436 *
4437 */
4438static inline void ufshcd_get_lu_power_on_wp_status(struct ufs_hba *hba,
4439 struct scsi_device *sdev)
4440{
4441 if (hba->dev_info.f_power_on_wp_en &&
4442 !hba->dev_info.is_lu_power_on_wp) {
4443 u8 b_lu_write_protect;
4444
4445 if (!ufshcd_get_lu_wp(hba, ufshcd_scsi_to_upiu_lun(sdev->lun),
4446 &b_lu_write_protect) &&
4447 (b_lu_write_protect == UFS_LU_POWER_ON_WP))
4448 hba->dev_info.is_lu_power_on_wp = true;
4449 }
4450}
4451
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004452/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304453 * ufshcd_slave_alloc - handle initial SCSI device configurations
4454 * @sdev: pointer to SCSI device
4455 *
4456 * Returns success
4457 */
4458static int ufshcd_slave_alloc(struct scsi_device *sdev)
4459{
4460 struct ufs_hba *hba;
4461
4462 hba = shost_priv(sdev->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304463
4464 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
4465 sdev->use_10_for_ms = 1;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304466
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304467 /* allow SCSI layer to restart the device in case of errors */
4468 sdev->allow_restart = 1;
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004469
Sujit Reddy Thummab2a6c522014-07-01 12:22:38 +03004470 /* REPORT SUPPORTED OPERATION CODES is not supported */
4471 sdev->no_report_opcodes = 1;
4472
Sujit Reddy Thumma84af7e82018-01-24 09:52:35 +05304473 /* WRITE_SAME command is not supported */
4474 sdev->no_write_same = 1;
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004475
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004476 ufshcd_set_queue_depth(sdev);
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004477
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004478 ufshcd_get_lu_power_on_wp_status(hba, sdev);
4479
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004480 return 0;
4481}
4482
4483/**
4484 * ufshcd_change_queue_depth - change queue depth
4485 * @sdev: pointer to SCSI device
4486 * @depth: required depth to set
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004487 *
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004488 * Change queue depth and make sure the max. limits are not crossed.
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004489 */
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004490static int ufshcd_change_queue_depth(struct scsi_device *sdev, int depth)
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004491{
4492 struct ufs_hba *hba = shost_priv(sdev->host);
4493
4494 if (depth > hba->nutrs)
4495 depth = hba->nutrs;
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01004496 return scsi_change_queue_depth(sdev, depth);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304497}
4498
4499/**
Akinobu Mitaeeda4742014-07-01 23:00:32 +09004500 * ufshcd_slave_configure - adjust SCSI device configurations
4501 * @sdev: pointer to SCSI device
4502 */
4503static int ufshcd_slave_configure(struct scsi_device *sdev)
4504{
4505 struct request_queue *q = sdev->request_queue;
4506
4507 blk_queue_update_dma_pad(q, PRDT_DATA_BYTE_COUNT_PAD - 1);
4508 blk_queue_max_segment_size(q, PRDT_DATA_BYTE_COUNT_MAX);
4509
4510 return 0;
4511}
4512
4513/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304514 * ufshcd_slave_destroy - remove SCSI device configurations
4515 * @sdev: pointer to SCSI device
4516 */
4517static void ufshcd_slave_destroy(struct scsi_device *sdev)
4518{
4519 struct ufs_hba *hba;
4520
4521 hba = shost_priv(sdev->host);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004522 /* Drop the reference as it won't be needed anymore */
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004523 if (ufshcd_scsi_to_upiu_lun(sdev->lun) == UFS_UPIU_UFS_DEVICE_WLUN) {
4524 unsigned long flags;
4525
4526 spin_lock_irqsave(hba->host->host_lock, flags);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004527 hba->sdev_ufs_device = NULL;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004528 spin_unlock_irqrestore(hba->host->host_lock, flags);
4529 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304530}
4531
4532/**
4533 * ufshcd_task_req_compl - handle task management request completion
4534 * @hba: per adapter instance
4535 * @index: index of the completed request
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304536 * @resp: task management service response
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304537 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304538 * Returns non-zero value on error, zero on success
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304539 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304540static int ufshcd_task_req_compl(struct ufs_hba *hba, u32 index, u8 *resp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304541{
4542 struct utp_task_req_desc *task_req_descp;
4543 struct utp_upiu_task_rsp *task_rsp_upiup;
4544 unsigned long flags;
4545 int ocs_value;
4546 int task_result;
4547
4548 spin_lock_irqsave(hba->host->host_lock, flags);
4549
4550 /* Clear completed tasks from outstanding_tasks */
4551 __clear_bit(index, &hba->outstanding_tasks);
4552
4553 task_req_descp = hba->utmrdl_base_addr;
4554 ocs_value = ufshcd_get_tmr_ocs(&task_req_descp[index]);
4555
4556 if (ocs_value == OCS_SUCCESS) {
4557 task_rsp_upiup = (struct utp_upiu_task_rsp *)
4558 task_req_descp[index].task_rsp_upiu;
Kiwoong Kim8794ee02016-09-09 08:22:22 +09004559 task_result = be32_to_cpu(task_rsp_upiup->output_param1);
4560 task_result = task_result & MASK_TM_SERVICE_RESP;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304561 if (resp)
4562 *resp = (u8)task_result;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304563 } else {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304564 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n",
4565 __func__, ocs_value);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304566 }
4567 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304568
4569 return ocs_value;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304570}
4571
4572/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304573 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
Bart Van Assche8aa29f12018-03-01 15:07:20 -08004574 * @lrbp: pointer to local reference block of completed command
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304575 * @scsi_status: SCSI command status
4576 *
4577 * Returns value base on SCSI command status
4578 */
4579static inline int
4580ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
4581{
4582 int result = 0;
4583
4584 switch (scsi_status) {
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05304585 case SAM_STAT_CHECK_CONDITION:
4586 ufshcd_copy_sense_data(lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304587 case SAM_STAT_GOOD:
4588 result |= DID_OK << 16 |
4589 COMMAND_COMPLETE << 8 |
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05304590 scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304591 break;
4592 case SAM_STAT_TASK_SET_FULL:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05304593 case SAM_STAT_BUSY:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304594 case SAM_STAT_TASK_ABORTED:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05304595 ufshcd_copy_sense_data(lrbp);
4596 result |= scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304597 break;
4598 default:
4599 result |= DID_ERROR << 16;
4600 break;
4601 } /* end of switch */
4602
4603 return result;
4604}
4605
4606/**
4607 * ufshcd_transfer_rsp_status - Get overall status of the response
4608 * @hba: per adapter instance
Bart Van Assche8aa29f12018-03-01 15:07:20 -08004609 * @lrbp: pointer to local reference block of completed command
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304610 *
4611 * Returns result of the command to notify SCSI midlayer
4612 */
4613static inline int
4614ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
4615{
4616 int result = 0;
4617 int scsi_status;
4618 int ocs;
4619
4620 /* overall command status of utrd */
4621 ocs = ufshcd_get_tr_ocs(lrbp);
4622
4623 switch (ocs) {
4624 case OCS_SUCCESS:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304625 result = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08004626 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304627 switch (result) {
4628 case UPIU_TRANSACTION_RESPONSE:
4629 /*
4630 * get the response UPIU result to extract
4631 * the SCSI command status
4632 */
4633 result = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr);
4634
4635 /*
4636 * get the result based on SCSI status response
4637 * to notify the SCSI midlayer of the command status
4638 */
4639 scsi_status = result & MASK_SCSI_STATUS;
4640 result = ufshcd_scsi_cmd_status(lrbp, scsi_status);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304641
Yaniv Gardif05ac2e2016-02-01 15:02:42 +02004642 /*
4643 * Currently we are only supporting BKOPs exception
4644 * events hence we can ignore BKOPs exception event
4645 * during power management callbacks. BKOPs exception
4646 * event is not expected to be raised in runtime suspend
4647 * callback as it allows the urgent bkops.
4648 * During system suspend, we are anyway forcefully
4649 * disabling the bkops and if urgent bkops is needed
4650 * it will be enabled on system resume. Long term
4651 * solution could be to abort the system suspend if
4652 * UFS device needs urgent BKOPs.
4653 */
4654 if (!hba->pm_op_in_progress &&
4655 ufshcd_is_exception_event(lrbp->ucd_rsp_ptr))
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304656 schedule_work(&hba->eeh_work);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304657 break;
4658 case UPIU_TRANSACTION_REJECT_UPIU:
4659 /* TODO: handle Reject UPIU Response */
4660 result = DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304661 dev_err(hba->dev,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304662 "Reject UPIU not fully implemented\n");
4663 break;
4664 default:
4665 result = DID_ERROR << 16;
4666 dev_err(hba->dev,
4667 "Unexpected request response code = %x\n",
4668 result);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304669 break;
4670 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304671 break;
4672 case OCS_ABORTED:
4673 result |= DID_ABORT << 16;
4674 break;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304675 case OCS_INVALID_COMMAND_STATUS:
4676 result |= DID_REQUEUE << 16;
4677 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304678 case OCS_INVALID_CMD_TABLE_ATTR:
4679 case OCS_INVALID_PRDT_ATTR:
4680 case OCS_MISMATCH_DATA_BUF_SIZE:
4681 case OCS_MISMATCH_RESP_UPIU_SIZE:
4682 case OCS_PEER_COMM_FAILURE:
4683 case OCS_FATAL_ERROR:
4684 default:
4685 result |= DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304686 dev_err(hba->dev,
Dolev Ravivff8e20c2016-12-22 18:42:18 -08004687 "OCS error from controller = %x for tag %d\n",
4688 ocs, lrbp->task_tag);
4689 ufshcd_print_host_regs(hba);
Gilad Broner6ba65582017-02-03 16:57:28 -08004690 ufshcd_print_host_state(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304691 break;
4692 } /* end of switch */
4693
Dolev Raviv66cc8202016-12-22 18:39:42 -08004694 if (host_byte(result) != DID_OK)
4695 ufshcd_print_trs(hba, 1 << lrbp->task_tag, true);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304696 return result;
4697}
4698
4699/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304700 * ufshcd_uic_cmd_compl - handle completion of uic command
4701 * @hba: per adapter instance
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05304702 * @intr_status: interrupt status generated by the controller
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304703 */
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05304704static void ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304705{
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05304706 if ((intr_status & UIC_COMMAND_COMPL) && hba->active_uic_cmd) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304707 hba->active_uic_cmd->argument2 |=
4708 ufshcd_get_uic_cmd_result(hba);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05304709 hba->active_uic_cmd->argument3 =
4710 ufshcd_get_dme_attr_val(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304711 complete(&hba->active_uic_cmd->done);
4712 }
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05304713
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004714 if ((intr_status & UFSHCD_UIC_PWR_MASK) && hba->uic_async_done)
4715 complete(hba->uic_async_done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304716}
4717
4718/**
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004719 * __ufshcd_transfer_req_compl - handle SCSI and query command completion
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304720 * @hba: per adapter instance
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004721 * @completed_reqs: requests to complete
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304722 */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004723static void __ufshcd_transfer_req_compl(struct ufs_hba *hba,
4724 unsigned long completed_reqs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304725{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304726 struct ufshcd_lrb *lrbp;
4727 struct scsi_cmnd *cmd;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304728 int result;
4729 int index;
Dolev Ravive9d501b2014-07-01 12:22:37 +03004730
Dolev Ravive9d501b2014-07-01 12:22:37 +03004731 for_each_set_bit(index, &completed_reqs, hba->nutrs) {
4732 lrbp = &hba->lrb[index];
4733 cmd = lrbp->cmd;
4734 if (cmd) {
Lee Susman1a07f2d2016-12-22 18:42:03 -08004735 ufshcd_add_command_trace(hba, index, "complete");
Dolev Ravive9d501b2014-07-01 12:22:37 +03004736 result = ufshcd_transfer_rsp_status(hba, lrbp);
4737 scsi_dma_unmap(cmd);
4738 cmd->result = result;
4739 /* Mark completed command as NULL in LRB */
4740 lrbp->cmd = NULL;
4741 clear_bit_unlock(index, &hba->lrb_in_use);
4742 /* Do not touch lrbp after scsi done */
4743 cmd->scsi_done(cmd);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004744 __ufshcd_release(hba);
Joao Pinto300bb132016-05-11 12:21:27 +01004745 } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE ||
4746 lrbp->command_type == UTP_CMD_TYPE_UFS_STORAGE) {
Lee Susman1a07f2d2016-12-22 18:42:03 -08004747 if (hba->dev_cmd.complete) {
4748 ufshcd_add_command_trace(hba, index,
4749 "dev_complete");
Dolev Ravive9d501b2014-07-01 12:22:37 +03004750 complete(hba->dev_cmd.complete);
Lee Susman1a07f2d2016-12-22 18:42:03 -08004751 }
Dolev Ravive9d501b2014-07-01 12:22:37 +03004752 }
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08004753 if (ufshcd_is_clkscaling_supported(hba))
4754 hba->clk_scaling.active_reqs--;
Zang Leigang09017182017-09-27 10:06:06 +08004755
4756 lrbp->compl_time_stamp = ktime_get();
Dolev Ravive9d501b2014-07-01 12:22:37 +03004757 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304758
4759 /* clear corresponding bits of completed commands */
4760 hba->outstanding_reqs ^= completed_reqs;
4761
Sahitya Tummala856b3482014-09-25 15:32:34 +03004762 ufshcd_clk_scaling_update_busy(hba);
4763
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304764 /* we might have free'd some tags above */
4765 wake_up(&hba->dev_cmd.tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304766}
4767
4768/**
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004769 * ufshcd_transfer_req_compl - handle SCSI and query command completion
4770 * @hba: per adapter instance
4771 */
4772static void ufshcd_transfer_req_compl(struct ufs_hba *hba)
4773{
4774 unsigned long completed_reqs;
4775 u32 tr_doorbell;
4776
4777 /* Resetting interrupt aggregation counters first and reading the
4778 * DOOR_BELL afterward allows us to handle all the completed requests.
4779 * In order to prevent other interrupts starvation the DB is read once
4780 * after reset. The down side of this solution is the possibility of
4781 * false interrupt if device completes another request after resetting
4782 * aggregation and before reading the DB.
4783 */
Alim Akhtar5ac6abc2018-05-06 15:44:16 +05304784 if (ufshcd_is_intr_aggr_allowed(hba) &&
4785 !(hba->quirks & UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR))
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004786 ufshcd_reset_intr_aggr(hba);
4787
4788 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
4789 completed_reqs = tr_doorbell ^ hba->outstanding_reqs;
4790
4791 __ufshcd_transfer_req_compl(hba, completed_reqs);
4792}
4793
4794/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304795 * ufshcd_disable_ee - disable exception event
4796 * @hba: per-adapter instance
4797 * @mask: exception event to disable
4798 *
4799 * Disables exception event in the device so that the EVENT_ALERT
4800 * bit is not set.
4801 *
4802 * Returns zero on success, non-zero error value on failure.
4803 */
4804static int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
4805{
4806 int err = 0;
4807 u32 val;
4808
4809 if (!(hba->ee_ctrl_mask & mask))
4810 goto out;
4811
4812 val = hba->ee_ctrl_mask & ~mask;
Tomohiro Kusumid7e2ddd2017-04-20 15:01:44 +03004813 val &= MASK_EE_STATUS;
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02004814 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304815 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
4816 if (!err)
4817 hba->ee_ctrl_mask &= ~mask;
4818out:
4819 return err;
4820}
4821
4822/**
4823 * ufshcd_enable_ee - enable exception event
4824 * @hba: per-adapter instance
4825 * @mask: exception event to enable
4826 *
4827 * Enable corresponding exception event in the device to allow
4828 * device to alert host in critical scenarios.
4829 *
4830 * Returns zero on success, non-zero error value on failure.
4831 */
4832static int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
4833{
4834 int err = 0;
4835 u32 val;
4836
4837 if (hba->ee_ctrl_mask & mask)
4838 goto out;
4839
4840 val = hba->ee_ctrl_mask | mask;
Tomohiro Kusumid7e2ddd2017-04-20 15:01:44 +03004841 val &= MASK_EE_STATUS;
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02004842 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304843 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
4844 if (!err)
4845 hba->ee_ctrl_mask |= mask;
4846out:
4847 return err;
4848}
4849
4850/**
4851 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
4852 * @hba: per-adapter instance
4853 *
4854 * Allow device to manage background operations on its own. Enabling
4855 * this might lead to inconsistent latencies during normal data transfers
4856 * as the device is allowed to manage its own way of handling background
4857 * operations.
4858 *
4859 * Returns zero on success, non-zero on failure.
4860 */
4861static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
4862{
4863 int err = 0;
4864
4865 if (hba->auto_bkops_enabled)
4866 goto out;
4867
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02004868 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304869 QUERY_FLAG_IDN_BKOPS_EN, NULL);
4870 if (err) {
4871 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
4872 __func__, err);
4873 goto out;
4874 }
4875
4876 hba->auto_bkops_enabled = true;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08004877 trace_ufshcd_auto_bkops_state(dev_name(hba->dev), "Enabled");
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304878
4879 /* No need of URGENT_BKOPS exception from the device */
4880 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
4881 if (err)
4882 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
4883 __func__, err);
4884out:
4885 return err;
4886}
4887
4888/**
4889 * ufshcd_disable_auto_bkops - block device in doing background operations
4890 * @hba: per-adapter instance
4891 *
4892 * Disabling background operations improves command response latency but
4893 * has drawback of device moving into critical state where the device is
4894 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
4895 * host is idle so that BKOPS are managed effectively without any negative
4896 * impacts.
4897 *
4898 * Returns zero on success, non-zero on failure.
4899 */
4900static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
4901{
4902 int err = 0;
4903
4904 if (!hba->auto_bkops_enabled)
4905 goto out;
4906
4907 /*
4908 * If host assisted BKOPs is to be enabled, make sure
4909 * urgent bkops exception is allowed.
4910 */
4911 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
4912 if (err) {
4913 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
4914 __func__, err);
4915 goto out;
4916 }
4917
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02004918 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304919 QUERY_FLAG_IDN_BKOPS_EN, NULL);
4920 if (err) {
4921 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
4922 __func__, err);
4923 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
4924 goto out;
4925 }
4926
4927 hba->auto_bkops_enabled = false;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08004928 trace_ufshcd_auto_bkops_state(dev_name(hba->dev), "Disabled");
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304929out:
4930 return err;
4931}
4932
4933/**
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -08004934 * ufshcd_force_reset_auto_bkops - force reset auto bkops state
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304935 * @hba: per adapter instance
4936 *
4937 * After a device reset the device may toggle the BKOPS_EN flag
4938 * to default value. The s/w tracking variables should be updated
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -08004939 * as well. This function would change the auto-bkops state based on
4940 * UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304941 */
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -08004942static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304943{
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -08004944 if (ufshcd_keep_autobkops_enabled_except_suspend(hba)) {
4945 hba->auto_bkops_enabled = false;
4946 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
4947 ufshcd_enable_auto_bkops(hba);
4948 } else {
4949 hba->auto_bkops_enabled = true;
4950 hba->ee_ctrl_mask &= ~MASK_EE_URGENT_BKOPS;
4951 ufshcd_disable_auto_bkops(hba);
4952 }
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304953}
4954
4955static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
4956{
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02004957 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304958 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
4959}
4960
4961/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004962 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
4963 * @hba: per-adapter instance
4964 * @status: bkops_status value
4965 *
4966 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
4967 * flag in the device to permit background operations if the device
4968 * bkops_status is greater than or equal to "status" argument passed to
4969 * this function, disable otherwise.
4970 *
4971 * Returns 0 for success, non-zero in case of failure.
4972 *
4973 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
4974 * to know whether auto bkops is enabled or disabled after this function
4975 * returns control to it.
4976 */
4977static int ufshcd_bkops_ctrl(struct ufs_hba *hba,
4978 enum bkops_status status)
4979{
4980 int err;
4981 u32 curr_status = 0;
4982
4983 err = ufshcd_get_bkops_status(hba, &curr_status);
4984 if (err) {
4985 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
4986 __func__, err);
4987 goto out;
4988 } else if (curr_status > BKOPS_STATUS_MAX) {
4989 dev_err(hba->dev, "%s: invalid BKOPS status %d\n",
4990 __func__, curr_status);
4991 err = -EINVAL;
4992 goto out;
4993 }
4994
4995 if (curr_status >= status)
4996 err = ufshcd_enable_auto_bkops(hba);
4997 else
4998 err = ufshcd_disable_auto_bkops(hba);
4999out:
5000 return err;
5001}
5002
5003/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305004 * ufshcd_urgent_bkops - handle urgent bkops exception event
5005 * @hba: per-adapter instance
5006 *
5007 * Enable fBackgroundOpsEn flag in the device to permit background
5008 * operations.
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005009 *
5010 * If BKOPs is enabled, this function returns 0, 1 if the bkops in not enabled
5011 * and negative error value for any other failure.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305012 */
5013static int ufshcd_urgent_bkops(struct ufs_hba *hba)
5014{
Yaniv Gardiafdfff52016-03-10 17:37:15 +02005015 return ufshcd_bkops_ctrl(hba, hba->urgent_bkops_lvl);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305016}
5017
5018static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
5019{
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02005020 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305021 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
5022}
5023
Yaniv Gardiafdfff52016-03-10 17:37:15 +02005024static void ufshcd_bkops_exception_event_handler(struct ufs_hba *hba)
5025{
5026 int err;
5027 u32 curr_status = 0;
5028
5029 if (hba->is_urgent_bkops_lvl_checked)
5030 goto enable_auto_bkops;
5031
5032 err = ufshcd_get_bkops_status(hba, &curr_status);
5033 if (err) {
5034 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
5035 __func__, err);
5036 goto out;
5037 }
5038
5039 /*
5040 * We are seeing that some devices are raising the urgent bkops
5041 * exception events even when BKOPS status doesn't indicate performace
5042 * impacted or critical. Handle these device by determining their urgent
5043 * bkops status at runtime.
5044 */
5045 if (curr_status < BKOPS_STATUS_PERF_IMPACT) {
5046 dev_err(hba->dev, "%s: device raised urgent BKOPS exception for bkops status %d\n",
5047 __func__, curr_status);
5048 /* update the current status as the urgent bkops level */
5049 hba->urgent_bkops_lvl = curr_status;
5050 hba->is_urgent_bkops_lvl_checked = true;
5051 }
5052
5053enable_auto_bkops:
5054 err = ufshcd_enable_auto_bkops(hba);
5055out:
5056 if (err < 0)
5057 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
5058 __func__, err);
5059}
5060
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305061/**
5062 * ufshcd_exception_event_handler - handle exceptions raised by device
5063 * @work: pointer to work data
5064 *
5065 * Read bExceptionEventStatus attribute from the device and handle the
5066 * exception event accordingly.
5067 */
5068static void ufshcd_exception_event_handler(struct work_struct *work)
5069{
5070 struct ufs_hba *hba;
5071 int err;
5072 u32 status = 0;
5073 hba = container_of(work, struct ufs_hba, eeh_work);
5074
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05305075 pm_runtime_get_sync(hba->dev);
Maya Erez2e3611e92018-05-03 16:37:16 +05305076 scsi_block_requests(hba->host);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305077 err = ufshcd_get_ee_status(hba, &status);
5078 if (err) {
5079 dev_err(hba->dev, "%s: failed to get exception status %d\n",
5080 __func__, err);
5081 goto out;
5082 }
5083
5084 status &= hba->ee_ctrl_mask;
Yaniv Gardiafdfff52016-03-10 17:37:15 +02005085
5086 if (status & MASK_EE_URGENT_BKOPS)
5087 ufshcd_bkops_exception_event_handler(hba);
5088
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305089out:
Maya Erez2e3611e92018-05-03 16:37:16 +05305090 scsi_unblock_requests(hba->host);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05305091 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305092 return;
5093}
5094
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005095/* Complete requests that have door-bell cleared */
5096static void ufshcd_complete_requests(struct ufs_hba *hba)
5097{
5098 ufshcd_transfer_req_compl(hba);
5099 ufshcd_tmc_handler(hba);
5100}
5101
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305102/**
Yaniv Gardi583fa622016-03-10 17:37:13 +02005103 * ufshcd_quirk_dl_nac_errors - This function checks if error handling is
5104 * to recover from the DL NAC errors or not.
5105 * @hba: per-adapter instance
5106 *
5107 * Returns true if error handling is required, false otherwise
5108 */
5109static bool ufshcd_quirk_dl_nac_errors(struct ufs_hba *hba)
5110{
5111 unsigned long flags;
5112 bool err_handling = true;
5113
5114 spin_lock_irqsave(hba->host->host_lock, flags);
5115 /*
5116 * UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS only workaround the
5117 * device fatal error and/or DL NAC & REPLAY timeout errors.
5118 */
5119 if (hba->saved_err & (CONTROLLER_FATAL_ERROR | SYSTEM_BUS_FATAL_ERROR))
5120 goto out;
5121
5122 if ((hba->saved_err & DEVICE_FATAL_ERROR) ||
5123 ((hba->saved_err & UIC_ERROR) &&
5124 (hba->saved_uic_err & UFSHCD_UIC_DL_TCx_REPLAY_ERROR)))
5125 goto out;
5126
5127 if ((hba->saved_err & UIC_ERROR) &&
5128 (hba->saved_uic_err & UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)) {
5129 int err;
5130 /*
5131 * wait for 50ms to see if we can get any other errors or not.
5132 */
5133 spin_unlock_irqrestore(hba->host->host_lock, flags);
5134 msleep(50);
5135 spin_lock_irqsave(hba->host->host_lock, flags);
5136
5137 /*
5138 * now check if we have got any other severe errors other than
5139 * DL NAC error?
5140 */
5141 if ((hba->saved_err & INT_FATAL_ERRORS) ||
5142 ((hba->saved_err & UIC_ERROR) &&
5143 (hba->saved_uic_err & ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)))
5144 goto out;
5145
5146 /*
5147 * As DL NAC is the only error received so far, send out NOP
5148 * command to confirm if link is still active or not.
5149 * - If we don't get any response then do error recovery.
5150 * - If we get response then clear the DL NAC error bit.
5151 */
5152
5153 spin_unlock_irqrestore(hba->host->host_lock, flags);
5154 err = ufshcd_verify_dev_init(hba);
5155 spin_lock_irqsave(hba->host->host_lock, flags);
5156
5157 if (err)
5158 goto out;
5159
5160 /* Link seems to be alive hence ignore the DL NAC errors */
5161 if (hba->saved_uic_err == UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)
5162 hba->saved_err &= ~UIC_ERROR;
5163 /* clear NAC error */
5164 hba->saved_uic_err &= ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
5165 if (!hba->saved_uic_err) {
5166 err_handling = false;
5167 goto out;
5168 }
5169 }
5170out:
5171 spin_unlock_irqrestore(hba->host->host_lock, flags);
5172 return err_handling;
5173}
5174
5175/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305176 * ufshcd_err_handler - handle UFS errors that require s/w attention
5177 * @work: pointer to work structure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305178 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305179static void ufshcd_err_handler(struct work_struct *work)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305180{
5181 struct ufs_hba *hba;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305182 unsigned long flags;
5183 u32 err_xfer = 0;
5184 u32 err_tm = 0;
5185 int err = 0;
5186 int tag;
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005187 bool needs_reset = false;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305188
5189 hba = container_of(work, struct ufs_hba, eh_work);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305190
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05305191 pm_runtime_get_sync(hba->dev);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005192 ufshcd_hold(hba, false);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305193
5194 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005195 if (hba->ufshcd_state == UFSHCD_STATE_RESET)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305196 goto out;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305197
5198 hba->ufshcd_state = UFSHCD_STATE_RESET;
5199 ufshcd_set_eh_in_progress(hba);
5200
5201 /* Complete requests that have door-bell cleared by h/w */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005202 ufshcd_complete_requests(hba);
Yaniv Gardi583fa622016-03-10 17:37:13 +02005203
5204 if (hba->dev_quirks & UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
5205 bool ret;
5206
5207 spin_unlock_irqrestore(hba->host->host_lock, flags);
5208 /* release the lock as ufshcd_quirk_dl_nac_errors() may sleep */
5209 ret = ufshcd_quirk_dl_nac_errors(hba);
5210 spin_lock_irqsave(hba->host->host_lock, flags);
5211 if (!ret)
5212 goto skip_err_handling;
5213 }
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005214 if ((hba->saved_err & INT_FATAL_ERRORS) ||
5215 ((hba->saved_err & UIC_ERROR) &&
5216 (hba->saved_uic_err & (UFSHCD_UIC_DL_PA_INIT_ERROR |
5217 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR |
5218 UFSHCD_UIC_DL_TCx_REPLAY_ERROR))))
5219 needs_reset = true;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305220
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005221 /*
5222 * if host reset is required then skip clearing the pending
5223 * transfers forcefully because they will automatically get
5224 * cleared after link startup.
5225 */
5226 if (needs_reset)
5227 goto skip_pending_xfer_clear;
5228
5229 /* release lock as clear command might sleep */
5230 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305231 /* Clear pending transfer requests */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005232 for_each_set_bit(tag, &hba->outstanding_reqs, hba->nutrs) {
5233 if (ufshcd_clear_cmd(hba, tag)) {
5234 err_xfer = true;
5235 goto lock_skip_pending_xfer_clear;
5236 }
5237 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305238
5239 /* Clear pending task management requests */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005240 for_each_set_bit(tag, &hba->outstanding_tasks, hba->nutmrs) {
5241 if (ufshcd_clear_tm_cmd(hba, tag)) {
5242 err_tm = true;
5243 goto lock_skip_pending_xfer_clear;
5244 }
5245 }
5246
5247lock_skip_pending_xfer_clear:
5248 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305249
5250 /* Complete the requests that are cleared by s/w */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005251 ufshcd_complete_requests(hba);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305252
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005253 if (err_xfer || err_tm)
5254 needs_reset = true;
5255
5256skip_pending_xfer_clear:
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305257 /* Fatal errors need reset */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005258 if (needs_reset) {
5259 unsigned long max_doorbells = (1UL << hba->nutrs) - 1;
5260
5261 /*
5262 * ufshcd_reset_and_restore() does the link reinitialization
5263 * which will need atleast one empty doorbell slot to send the
5264 * device management commands (NOP and query commands).
5265 * If there is no slot empty at this moment then free up last
5266 * slot forcefully.
5267 */
5268 if (hba->outstanding_reqs == max_doorbells)
5269 __ufshcd_transfer_req_compl(hba,
5270 (1UL << (hba->nutrs - 1)));
5271
5272 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305273 err = ufshcd_reset_and_restore(hba);
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005274 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305275 if (err) {
5276 dev_err(hba->dev, "%s: reset and restore failed\n",
5277 __func__);
5278 hba->ufshcd_state = UFSHCD_STATE_ERROR;
5279 }
5280 /*
5281 * Inform scsi mid-layer that we did reset and allow to handle
5282 * Unit Attention properly.
5283 */
5284 scsi_report_bus_reset(hba->host, 0);
5285 hba->saved_err = 0;
5286 hba->saved_uic_err = 0;
5287 }
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005288
Yaniv Gardi583fa622016-03-10 17:37:13 +02005289skip_err_handling:
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005290 if (!needs_reset) {
5291 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
5292 if (hba->saved_err || hba->saved_uic_err)
5293 dev_err_ratelimited(hba->dev, "%s: exit: saved_err 0x%x saved_uic_err 0x%x",
5294 __func__, hba->saved_err, hba->saved_uic_err);
5295 }
5296
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305297 ufshcd_clear_eh_in_progress(hba);
5298
5299out:
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005300 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305301 scsi_unblock_requests(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005302 ufshcd_release(hba);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05305303 pm_runtime_put_sync(hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305304}
5305
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005306static void ufshcd_update_uic_reg_hist(struct ufs_uic_err_reg_hist *reg_hist,
5307 u32 reg)
5308{
5309 reg_hist->reg[reg_hist->pos] = reg;
5310 reg_hist->tstamp[reg_hist->pos] = ktime_get();
5311 reg_hist->pos = (reg_hist->pos + 1) % UIC_ERR_REG_HIST_LENGTH;
5312}
5313
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305314/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305315 * ufshcd_update_uic_error - check and set fatal UIC error flags.
5316 * @hba: per-adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305317 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305318static void ufshcd_update_uic_error(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305319{
5320 u32 reg;
5321
Dolev Ravivfb7b45f2016-11-23 16:32:32 -08005322 /* PHY layer lane error */
5323 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_PHY_ADAPTER_LAYER);
5324 /* Ignore LINERESET indication, as this is not an error */
5325 if ((reg & UIC_PHY_ADAPTER_LAYER_ERROR) &&
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005326 (reg & UIC_PHY_ADAPTER_LAYER_LANE_ERR_MASK)) {
Dolev Ravivfb7b45f2016-11-23 16:32:32 -08005327 /*
5328 * To know whether this error is fatal or not, DB timeout
5329 * must be checked but this error is handled separately.
5330 */
5331 dev_dbg(hba->dev, "%s: UIC Lane error reported\n", __func__);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005332 ufshcd_update_uic_reg_hist(&hba->ufs_stats.pa_err, reg);
5333 }
Dolev Ravivfb7b45f2016-11-23 16:32:32 -08005334
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305335 /* PA_INIT_ERROR is fatal and needs UIC reset */
5336 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005337 if (reg)
5338 ufshcd_update_uic_reg_hist(&hba->ufs_stats.dl_err, reg);
5339
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305340 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
5341 hba->uic_error |= UFSHCD_UIC_DL_PA_INIT_ERROR;
Yaniv Gardi583fa622016-03-10 17:37:13 +02005342 else if (hba->dev_quirks &
5343 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
5344 if (reg & UIC_DATA_LINK_LAYER_ERROR_NAC_RECEIVED)
5345 hba->uic_error |=
5346 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
5347 else if (reg & UIC_DATA_LINK_LAYER_ERROR_TCx_REPLAY_TIMEOUT)
5348 hba->uic_error |= UFSHCD_UIC_DL_TCx_REPLAY_ERROR;
5349 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305350
5351 /* UIC NL/TL/DME errors needs software retry */
5352 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_NETWORK_LAYER);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005353 if (reg) {
5354 ufshcd_update_uic_reg_hist(&hba->ufs_stats.nl_err, reg);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305355 hba->uic_error |= UFSHCD_UIC_NL_ERROR;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005356 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305357
5358 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_TRANSPORT_LAYER);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005359 if (reg) {
5360 ufshcd_update_uic_reg_hist(&hba->ufs_stats.tl_err, reg);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305361 hba->uic_error |= UFSHCD_UIC_TL_ERROR;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005362 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305363
5364 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DME);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005365 if (reg) {
5366 ufshcd_update_uic_reg_hist(&hba->ufs_stats.dme_err, reg);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305367 hba->uic_error |= UFSHCD_UIC_DME_ERROR;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005368 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305369
5370 dev_dbg(hba->dev, "%s: UIC error flags = 0x%08x\n",
5371 __func__, hba->uic_error);
5372}
5373
5374/**
5375 * ufshcd_check_errors - Check for errors that need s/w attention
5376 * @hba: per-adapter instance
5377 */
5378static void ufshcd_check_errors(struct ufs_hba *hba)
5379{
5380 bool queue_eh_work = false;
5381
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305382 if (hba->errors & INT_FATAL_ERRORS)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305383 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305384
5385 if (hba->errors & UIC_ERROR) {
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305386 hba->uic_error = 0;
5387 ufshcd_update_uic_error(hba);
5388 if (hba->uic_error)
5389 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305390 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305391
5392 if (queue_eh_work) {
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02005393 /*
5394 * update the transfer error masks to sticky bits, let's do this
5395 * irrespective of current ufshcd_state.
5396 */
5397 hba->saved_err |= hba->errors;
5398 hba->saved_uic_err |= hba->uic_error;
5399
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305400 /* handle fatal errors only when link is functional */
5401 if (hba->ufshcd_state == UFSHCD_STATE_OPERATIONAL) {
5402 /* block commands from scsi mid-layer */
5403 scsi_block_requests(hba->host);
5404
Zang Leigang141f8162016-11-16 11:29:37 +08005405 hba->ufshcd_state = UFSHCD_STATE_EH_SCHEDULED;
Dolev Raviv66cc8202016-12-22 18:39:42 -08005406
5407 /* dump controller state before resetting */
5408 if (hba->saved_err & (INT_FATAL_ERRORS | UIC_ERROR)) {
5409 bool pr_prdt = !!(hba->saved_err &
5410 SYSTEM_BUS_FATAL_ERROR);
5411
5412 dev_err(hba->dev, "%s: saved_err 0x%x saved_uic_err 0x%x\n",
5413 __func__, hba->saved_err,
5414 hba->saved_uic_err);
5415
5416 ufshcd_print_host_regs(hba);
5417 ufshcd_print_pwr_info(hba);
5418 ufshcd_print_tmrs(hba, hba->outstanding_tasks);
5419 ufshcd_print_trs(hba, hba->outstanding_reqs,
5420 pr_prdt);
5421 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305422 schedule_work(&hba->eh_work);
5423 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305424 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305425 /*
5426 * if (!queue_eh_work) -
5427 * Other errors are either non-fatal where host recovers
5428 * itself without s/w intervention or errors that will be
5429 * handled by the SCSI core layer.
5430 */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305431}
5432
5433/**
5434 * ufshcd_tmc_handler - handle task management function completion
5435 * @hba: per adapter instance
5436 */
5437static void ufshcd_tmc_handler(struct ufs_hba *hba)
5438{
5439 u32 tm_doorbell;
5440
Seungwon Jeonb873a2752013-06-26 22:39:26 +05305441 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305442 hba->tm_condition = tm_doorbell ^ hba->outstanding_tasks;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305443 wake_up(&hba->tm_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305444}
5445
5446/**
5447 * ufshcd_sl_intr - Interrupt service routine
5448 * @hba: per adapter instance
5449 * @intr_status: contains interrupts generated by the controller
5450 */
5451static void ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
5452{
5453 hba->errors = UFSHCD_ERROR_MASK & intr_status;
5454 if (hba->errors)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305455 ufshcd_check_errors(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305456
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05305457 if (intr_status & UFSHCD_UIC_MASK)
5458 ufshcd_uic_cmd_compl(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305459
5460 if (intr_status & UTP_TASK_REQ_COMPL)
5461 ufshcd_tmc_handler(hba);
5462
5463 if (intr_status & UTP_TRANSFER_REQ_COMPL)
5464 ufshcd_transfer_req_compl(hba);
5465}
5466
5467/**
5468 * ufshcd_intr - Main interrupt service routine
5469 * @irq: irq number
5470 * @__hba: pointer to adapter instance
5471 *
5472 * Returns IRQ_HANDLED - If interrupt is valid
5473 * IRQ_NONE - If invalid interrupt
5474 */
5475static irqreturn_t ufshcd_intr(int irq, void *__hba)
5476{
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02005477 u32 intr_status, enabled_intr_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305478 irqreturn_t retval = IRQ_NONE;
5479 struct ufs_hba *hba = __hba;
5480
5481 spin_lock(hba->host->host_lock);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05305482 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02005483 enabled_intr_status =
5484 intr_status & ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305485
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02005486 if (intr_status)
Seungwon Jeon261ea452013-06-26 22:39:28 +05305487 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02005488
5489 if (enabled_intr_status) {
5490 ufshcd_sl_intr(hba, enabled_intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305491 retval = IRQ_HANDLED;
5492 }
5493 spin_unlock(hba->host->host_lock);
5494 return retval;
5495}
5496
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305497static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag)
5498{
5499 int err = 0;
5500 u32 mask = 1 << tag;
5501 unsigned long flags;
5502
5503 if (!test_bit(tag, &hba->outstanding_tasks))
5504 goto out;
5505
5506 spin_lock_irqsave(hba->host->host_lock, flags);
Alim Akhtar1399c5b2018-05-06 15:44:15 +05305507 ufshcd_utmrl_clear(hba, tag);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305508 spin_unlock_irqrestore(hba->host->host_lock, flags);
5509
5510 /* poll for max. 1 sec to clear door bell register by h/w */
5511 err = ufshcd_wait_for_register(hba,
5512 REG_UTP_TASK_REQ_DOOR_BELL,
Yaniv Gardi596585a2016-03-10 17:37:08 +02005513 mask, 0, 1000, 1000, true);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305514out:
5515 return err;
5516}
5517
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305518/**
5519 * ufshcd_issue_tm_cmd - issues task management commands to controller
5520 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305521 * @lun_id: LUN ID to which TM command is sent
5522 * @task_id: task ID to which the TM command is applicable
5523 * @tm_function: task management function opcode
5524 * @tm_response: task management service response return value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305525 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305526 * Returns non-zero value on error, zero on success.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305527 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305528static int ufshcd_issue_tm_cmd(struct ufs_hba *hba, int lun_id, int task_id,
5529 u8 tm_function, u8 *tm_response)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305530{
5531 struct utp_task_req_desc *task_req_descp;
5532 struct utp_upiu_task_req *task_req_upiup;
5533 struct Scsi_Host *host;
5534 unsigned long flags;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305535 int free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305536 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305537 int task_tag;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305538
5539 host = hba->host;
5540
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305541 /*
5542 * Get free slot, sleep if slots are unavailable.
5543 * Even though we use wait_event() which sleeps indefinitely,
5544 * the maximum wait time is bounded by %TM_CMD_TIMEOUT.
5545 */
5546 wait_event(hba->tm_tag_wq, ufshcd_get_tm_free_slot(hba, &free_slot));
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005547 ufshcd_hold(hba, false);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305548
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305549 spin_lock_irqsave(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305550 task_req_descp = hba->utmrdl_base_addr;
5551 task_req_descp += free_slot;
5552
5553 /* Configure task request descriptor */
5554 task_req_descp->header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
5555 task_req_descp->header.dword_2 =
5556 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
5557
5558 /* Configure task request UPIU */
5559 task_req_upiup =
5560 (struct utp_upiu_task_req *) task_req_descp->task_req_upiu;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305561 task_tag = hba->nutrs + free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305562 task_req_upiup->header.dword_0 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305563 UPIU_HEADER_DWORD(UPIU_TRANSACTION_TASK_REQ, 0,
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305564 lun_id, task_tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305565 task_req_upiup->header.dword_1 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305566 UPIU_HEADER_DWORD(0, tm_function, 0, 0);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03005567 /*
5568 * The host shall provide the same value for LUN field in the basic
5569 * header and for Input Parameter.
5570 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305571 task_req_upiup->input_param1 = cpu_to_be32(lun_id);
5572 task_req_upiup->input_param2 = cpu_to_be32(task_id);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305573
Kiwoong Kimd2877be2016-11-10 21:16:15 +09005574 ufshcd_vops_setup_task_mgmt(hba, free_slot, tm_function);
5575
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305576 /* send command to the controller */
5577 __set_bit(free_slot, &hba->outstanding_tasks);
Yaniv Gardi897efe62016-02-01 15:02:48 +02005578
5579 /* Make sure descriptors are ready before ringing the task doorbell */
5580 wmb();
5581
Seungwon Jeonb873a2752013-06-26 22:39:26 +05305582 ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
Gilad Bronerad1a1b92016-10-17 17:09:36 -07005583 /* Make sure that doorbell is committed immediately */
5584 wmb();
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305585
5586 spin_unlock_irqrestore(host->host_lock, flags);
5587
5588 /* wait until the task management command is completed */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305589 err = wait_event_timeout(hba->tm_wq,
5590 test_bit(free_slot, &hba->tm_condition),
5591 msecs_to_jiffies(TM_CMD_TIMEOUT));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305592 if (!err) {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305593 dev_err(hba->dev, "%s: task management cmd 0x%.2x timed-out\n",
5594 __func__, tm_function);
5595 if (ufshcd_clear_tm_cmd(hba, free_slot))
5596 dev_WARN(hba->dev, "%s: unable clear tm cmd (slot %d) after timeout\n",
5597 __func__, free_slot);
5598 err = -ETIMEDOUT;
5599 } else {
5600 err = ufshcd_task_req_compl(hba, free_slot, tm_response);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305601 }
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305602
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305603 clear_bit(free_slot, &hba->tm_condition);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305604 ufshcd_put_tm_slot(hba, free_slot);
5605 wake_up(&hba->tm_tag_wq);
5606
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005607 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305608 return err;
5609}
5610
5611/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305612 * ufshcd_eh_device_reset_handler - device reset handler registered to
5613 * scsi layer.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305614 * @cmd: SCSI command pointer
5615 *
5616 * Returns SUCCESS/FAILED
5617 */
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305618static int ufshcd_eh_device_reset_handler(struct scsi_cmnd *cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305619{
5620 struct Scsi_Host *host;
5621 struct ufs_hba *hba;
5622 unsigned int tag;
5623 u32 pos;
5624 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305625 u8 resp = 0xF;
5626 struct ufshcd_lrb *lrbp;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305627 unsigned long flags;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305628
5629 host = cmd->device->host;
5630 hba = shost_priv(host);
5631 tag = cmd->request->tag;
5632
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305633 lrbp = &hba->lrb[tag];
5634 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, 0, UFS_LOGICAL_RESET, &resp);
5635 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305636 if (!err)
5637 err = resp;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305638 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305639 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305640
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305641 /* clear the commands that were pending for corresponding LUN */
5642 for_each_set_bit(pos, &hba->outstanding_reqs, hba->nutrs) {
5643 if (hba->lrb[pos].lun == lrbp->lun) {
5644 err = ufshcd_clear_cmd(hba, pos);
5645 if (err)
5646 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305647 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305648 }
5649 spin_lock_irqsave(host->host_lock, flags);
5650 ufshcd_transfer_req_compl(hba);
5651 spin_unlock_irqrestore(host->host_lock, flags);
Gilad Broner7fabb772017-02-03 16:56:50 -08005652
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305653out:
Gilad Broner7fabb772017-02-03 16:56:50 -08005654 hba->req_abort_count = 0;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305655 if (!err) {
5656 err = SUCCESS;
5657 } else {
5658 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
5659 err = FAILED;
5660 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305661 return err;
5662}
5663
Gilad Bronere0b299e2017-02-03 16:56:40 -08005664static void ufshcd_set_req_abort_skip(struct ufs_hba *hba, unsigned long bitmap)
5665{
5666 struct ufshcd_lrb *lrbp;
5667 int tag;
5668
5669 for_each_set_bit(tag, &bitmap, hba->nutrs) {
5670 lrbp = &hba->lrb[tag];
5671 lrbp->req_abort_skip = true;
5672 }
5673}
5674
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305675/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305676 * ufshcd_abort - abort a specific command
5677 * @cmd: SCSI command pointer
5678 *
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305679 * Abort the pending command in device by sending UFS_ABORT_TASK task management
5680 * command, and in host controller by clearing the door-bell register. There can
5681 * be race between controller sending the command to the device while abort is
5682 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
5683 * really issued and then try to abort it.
5684 *
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305685 * Returns SUCCESS/FAILED
5686 */
5687static int ufshcd_abort(struct scsi_cmnd *cmd)
5688{
5689 struct Scsi_Host *host;
5690 struct ufs_hba *hba;
5691 unsigned long flags;
5692 unsigned int tag;
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305693 int err = 0;
5694 int poll_cnt;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305695 u8 resp = 0xF;
5696 struct ufshcd_lrb *lrbp;
Dolev Ravive9d501b2014-07-01 12:22:37 +03005697 u32 reg;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305698
5699 host = cmd->device->host;
5700 hba = shost_priv(host);
5701 tag = cmd->request->tag;
Dolev Ravive7d38252016-12-22 18:40:07 -08005702 lrbp = &hba->lrb[tag];
Yaniv Gardi14497322016-02-01 15:02:39 +02005703 if (!ufshcd_valid_tag(hba, tag)) {
5704 dev_err(hba->dev,
5705 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
5706 __func__, tag, cmd, cmd->request);
5707 BUG();
5708 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305709
Dolev Ravive7d38252016-12-22 18:40:07 -08005710 /*
5711 * Task abort to the device W-LUN is illegal. When this command
5712 * will fail, due to spec violation, scsi err handling next step
5713 * will be to send LU reset which, again, is a spec violation.
5714 * To avoid these unnecessary/illegal step we skip to the last error
5715 * handling stage: reset and restore.
5716 */
5717 if (lrbp->lun == UFS_UPIU_UFS_DEVICE_WLUN)
5718 return ufshcd_eh_host_reset_handler(cmd);
5719
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005720 ufshcd_hold(hba, false);
Dolev Ravive9d501b2014-07-01 12:22:37 +03005721 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Yaniv Gardi14497322016-02-01 15:02:39 +02005722 /* If command is already aborted/completed, return SUCCESS */
5723 if (!(test_bit(tag, &hba->outstanding_reqs))) {
5724 dev_err(hba->dev,
5725 "%s: cmd at tag %d already completed, outstanding=0x%lx, doorbell=0x%x\n",
5726 __func__, tag, hba->outstanding_reqs, reg);
5727 goto out;
5728 }
5729
Dolev Ravive9d501b2014-07-01 12:22:37 +03005730 if (!(reg & (1 << tag))) {
5731 dev_err(hba->dev,
5732 "%s: cmd was completed, but without a notifying intr, tag = %d",
5733 __func__, tag);
5734 }
5735
Dolev Raviv66cc8202016-12-22 18:39:42 -08005736 /* Print Transfer Request of aborted task */
5737 dev_err(hba->dev, "%s: Device abort task at tag %d\n", __func__, tag);
Dolev Raviv66cc8202016-12-22 18:39:42 -08005738
Gilad Broner7fabb772017-02-03 16:56:50 -08005739 /*
5740 * Print detailed info about aborted request.
5741 * As more than one request might get aborted at the same time,
5742 * print full information only for the first aborted request in order
5743 * to reduce repeated printouts. For other aborted requests only print
5744 * basic details.
5745 */
5746 scsi_print_command(hba->lrb[tag].cmd);
5747 if (!hba->req_abort_count) {
5748 ufshcd_print_host_regs(hba);
Gilad Broner6ba65582017-02-03 16:57:28 -08005749 ufshcd_print_host_state(hba);
Gilad Broner7fabb772017-02-03 16:56:50 -08005750 ufshcd_print_pwr_info(hba);
5751 ufshcd_print_trs(hba, 1 << tag, true);
5752 } else {
5753 ufshcd_print_trs(hba, 1 << tag, false);
5754 }
5755 hba->req_abort_count++;
Gilad Bronere0b299e2017-02-03 16:56:40 -08005756
5757 /* Skip task abort in case previous aborts failed and report failure */
5758 if (lrbp->req_abort_skip) {
5759 err = -EIO;
5760 goto out;
5761 }
5762
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305763 for (poll_cnt = 100; poll_cnt; poll_cnt--) {
5764 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
5765 UFS_QUERY_TASK, &resp);
5766 if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED) {
5767 /* cmd pending in the device */
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005768 dev_err(hba->dev, "%s: cmd pending in the device. tag = %d\n",
5769 __func__, tag);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305770 break;
5771 } else if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305772 /*
5773 * cmd not pending in the device, check if it is
5774 * in transition.
5775 */
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005776 dev_err(hba->dev, "%s: cmd at tag %d not pending in the device.\n",
5777 __func__, tag);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305778 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
5779 if (reg & (1 << tag)) {
5780 /* sleep for max. 200us to stabilize */
5781 usleep_range(100, 200);
5782 continue;
5783 }
5784 /* command completed already */
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005785 dev_err(hba->dev, "%s: cmd at tag %d successfully cleared from DB.\n",
5786 __func__, tag);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305787 goto out;
5788 } else {
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005789 dev_err(hba->dev,
5790 "%s: no response from device. tag = %d, err %d\n",
5791 __func__, tag, err);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305792 if (!err)
5793 err = resp; /* service response error */
5794 goto out;
5795 }
5796 }
5797
5798 if (!poll_cnt) {
5799 err = -EBUSY;
5800 goto out;
5801 }
5802
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305803 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
5804 UFS_ABORT_TASK, &resp);
5805 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005806 if (!err) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305807 err = resp; /* service response error */
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005808 dev_err(hba->dev, "%s: issued. tag = %d, err %d\n",
5809 __func__, tag, err);
5810 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305811 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305812 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305813
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305814 err = ufshcd_clear_cmd(hba, tag);
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005815 if (err) {
5816 dev_err(hba->dev, "%s: Failed clearing cmd at tag %d, err %d\n",
5817 __func__, tag, err);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305818 goto out;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08005819 }
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305820
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305821 scsi_dma_unmap(cmd);
5822
5823 spin_lock_irqsave(host->host_lock, flags);
Yaniv Gardia48353f2016-02-01 15:02:40 +02005824 ufshcd_outstanding_req_clear(hba, tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305825 hba->lrb[tag].cmd = NULL;
5826 spin_unlock_irqrestore(host->host_lock, flags);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305827
5828 clear_bit_unlock(tag, &hba->lrb_in_use);
5829 wake_up(&hba->dev_cmd.tag_wq);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005830
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305831out:
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305832 if (!err) {
5833 err = SUCCESS;
5834 } else {
5835 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
Gilad Bronere0b299e2017-02-03 16:56:40 -08005836 ufshcd_set_req_abort_skip(hba, hba->outstanding_reqs);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05305837 err = FAILED;
5838 }
5839
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005840 /*
5841 * This ufshcd_release() corresponds to the original scsi cmd that got
5842 * aborted here (as we won't get any IRQ for it).
5843 */
5844 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305845 return err;
5846}
5847
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305848/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305849 * ufshcd_host_reset_and_restore - reset and restore host controller
5850 * @hba: per-adapter instance
5851 *
5852 * Note that host controller reset may issue DME_RESET to
5853 * local and remote (device) Uni-Pro stack and the attributes
5854 * are reset to default state.
5855 *
5856 * Returns zero on success, non-zero on failure
5857 */
5858static int ufshcd_host_reset_and_restore(struct ufs_hba *hba)
5859{
5860 int err;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305861 unsigned long flags;
5862
5863 /* Reset the host controller */
5864 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardi596585a2016-03-10 17:37:08 +02005865 ufshcd_hba_stop(hba, false);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305866 spin_unlock_irqrestore(hba->host->host_lock, flags);
5867
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08005868 /* scale up clocks to max frequency before full reinitialization */
5869 ufshcd_scale_clks(hba, true);
5870
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305871 err = ufshcd_hba_enable(hba);
5872 if (err)
5873 goto out;
5874
5875 /* Establish the link again and restore the device */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005876 err = ufshcd_probe_hba(hba);
5877
5878 if (!err && (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL))
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305879 err = -EIO;
5880out:
5881 if (err)
5882 dev_err(hba->dev, "%s: Host init failed %d\n", __func__, err);
5883
5884 return err;
5885}
5886
5887/**
5888 * ufshcd_reset_and_restore - reset and re-initialize host/device
5889 * @hba: per-adapter instance
5890 *
5891 * Reset and recover device, host and re-establish link. This
5892 * is helpful to recover the communication in fatal error conditions.
5893 *
5894 * Returns zero on success, non-zero on failure
5895 */
5896static int ufshcd_reset_and_restore(struct ufs_hba *hba)
5897{
5898 int err = 0;
5899 unsigned long flags;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005900 int retries = MAX_HOST_RESET_RETRIES;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305901
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005902 do {
5903 err = ufshcd_host_reset_and_restore(hba);
5904 } while (err && --retries);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305905
5906 /*
5907 * After reset the door-bell might be cleared, complete
5908 * outstanding requests in s/w here.
5909 */
5910 spin_lock_irqsave(hba->host->host_lock, flags);
5911 ufshcd_transfer_req_compl(hba);
5912 ufshcd_tmc_handler(hba);
5913 spin_unlock_irqrestore(hba->host->host_lock, flags);
5914
5915 return err;
5916}
5917
5918/**
5919 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
Bart Van Assche8aa29f12018-03-01 15:07:20 -08005920 * @cmd: SCSI command pointer
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305921 *
5922 * Returns SUCCESS/FAILED
5923 */
5924static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd)
5925{
5926 int err;
5927 unsigned long flags;
5928 struct ufs_hba *hba;
5929
5930 hba = shost_priv(cmd->device->host);
5931
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005932 ufshcd_hold(hba, false);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305933 /*
5934 * Check if there is any race with fatal error handling.
5935 * If so, wait for it to complete. Even though fatal error
5936 * handling does reset and restore in some cases, don't assume
5937 * anything out of it. We are just avoiding race here.
5938 */
5939 do {
5940 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305941 if (!(work_pending(&hba->eh_work) ||
Zang Leigang8dc0da72017-06-24 19:14:32 +08005942 hba->ufshcd_state == UFSHCD_STATE_RESET ||
5943 hba->ufshcd_state == UFSHCD_STATE_EH_SCHEDULED))
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305944 break;
5945 spin_unlock_irqrestore(hba->host->host_lock, flags);
5946 dev_dbg(hba->dev, "%s: reset in progress\n", __func__);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305947 flush_work(&hba->eh_work);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305948 } while (1);
5949
5950 hba->ufshcd_state = UFSHCD_STATE_RESET;
5951 ufshcd_set_eh_in_progress(hba);
5952 spin_unlock_irqrestore(hba->host->host_lock, flags);
5953
5954 err = ufshcd_reset_and_restore(hba);
5955
5956 spin_lock_irqsave(hba->host->host_lock, flags);
5957 if (!err) {
5958 err = SUCCESS;
5959 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
5960 } else {
5961 err = FAILED;
5962 hba->ufshcd_state = UFSHCD_STATE_ERROR;
5963 }
5964 ufshcd_clear_eh_in_progress(hba);
5965 spin_unlock_irqrestore(hba->host->host_lock, flags);
5966
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005967 ufshcd_release(hba);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305968 return err;
5969}
5970
5971/**
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03005972 * ufshcd_get_max_icc_level - calculate the ICC level
5973 * @sup_curr_uA: max. current supported by the regulator
5974 * @start_scan: row at the desc table to start scan from
5975 * @buff: power descriptor buffer
5976 *
5977 * Returns calculated max ICC level for specific regulator
5978 */
5979static u32 ufshcd_get_max_icc_level(int sup_curr_uA, u32 start_scan, char *buff)
5980{
5981 int i;
5982 int curr_uA;
5983 u16 data;
5984 u16 unit;
5985
5986 for (i = start_scan; i >= 0; i--) {
Tomas Winklerd79713f2017-01-05 10:45:11 +02005987 data = be16_to_cpup((__be16 *)&buff[2 * i]);
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03005988 unit = (data & ATTR_ICC_LVL_UNIT_MASK) >>
5989 ATTR_ICC_LVL_UNIT_OFFSET;
5990 curr_uA = data & ATTR_ICC_LVL_VALUE_MASK;
5991 switch (unit) {
5992 case UFSHCD_NANO_AMP:
5993 curr_uA = curr_uA / 1000;
5994 break;
5995 case UFSHCD_MILI_AMP:
5996 curr_uA = curr_uA * 1000;
5997 break;
5998 case UFSHCD_AMP:
5999 curr_uA = curr_uA * 1000 * 1000;
6000 break;
6001 case UFSHCD_MICRO_AMP:
6002 default:
6003 break;
6004 }
6005 if (sup_curr_uA >= curr_uA)
6006 break;
6007 }
6008 if (i < 0) {
6009 i = 0;
6010 pr_err("%s: Couldn't find valid icc_level = %d", __func__, i);
6011 }
6012
6013 return (u32)i;
6014}
6015
6016/**
6017 * ufshcd_calc_icc_level - calculate the max ICC level
6018 * In case regulators are not initialized we'll return 0
6019 * @hba: per-adapter instance
6020 * @desc_buf: power descriptor buffer to extract ICC levels from.
6021 * @len: length of desc_buff
6022 *
6023 * Returns calculated ICC level
6024 */
6025static u32 ufshcd_find_max_sup_active_icc_level(struct ufs_hba *hba,
6026 u8 *desc_buf, int len)
6027{
6028 u32 icc_level = 0;
6029
6030 if (!hba->vreg_info.vcc || !hba->vreg_info.vccq ||
6031 !hba->vreg_info.vccq2) {
6032 dev_err(hba->dev,
6033 "%s: Regulator capability was not set, actvIccLevel=%d",
6034 __func__, icc_level);
6035 goto out;
6036 }
6037
6038 if (hba->vreg_info.vcc)
6039 icc_level = ufshcd_get_max_icc_level(
6040 hba->vreg_info.vcc->max_uA,
6041 POWER_DESC_MAX_ACTV_ICC_LVLS - 1,
6042 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCC_0]);
6043
6044 if (hba->vreg_info.vccq)
6045 icc_level = ufshcd_get_max_icc_level(
6046 hba->vreg_info.vccq->max_uA,
6047 icc_level,
6048 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ_0]);
6049
6050 if (hba->vreg_info.vccq2)
6051 icc_level = ufshcd_get_max_icc_level(
6052 hba->vreg_info.vccq2->max_uA,
6053 icc_level,
6054 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ2_0]);
6055out:
6056 return icc_level;
6057}
6058
6059static void ufshcd_init_icc_levels(struct ufs_hba *hba)
6060{
6061 int ret;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006062 int buff_len = hba->desc_size.pwr_desc;
Kees Cookbbe21d72018-05-02 16:58:09 -07006063 u8 *desc_buf;
6064
6065 desc_buf = kmalloc(buff_len, GFP_KERNEL);
6066 if (!desc_buf)
6067 return;
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03006068
6069 ret = ufshcd_read_power_desc(hba, desc_buf, buff_len);
6070 if (ret) {
6071 dev_err(hba->dev,
6072 "%s: Failed reading power descriptor.len = %d ret = %d",
6073 __func__, buff_len, ret);
Kees Cookbbe21d72018-05-02 16:58:09 -07006074 goto out;
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03006075 }
6076
6077 hba->init_prefetch_data.icc_level =
6078 ufshcd_find_max_sup_active_icc_level(hba,
6079 desc_buf, buff_len);
6080 dev_dbg(hba->dev, "%s: setting icc_level 0x%x",
6081 __func__, hba->init_prefetch_data.icc_level);
6082
Szymon Mielczarekdbd34a62017-03-29 08:19:21 +02006083 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
6084 QUERY_ATTR_IDN_ACTIVE_ICC_LVL, 0, 0,
6085 &hba->init_prefetch_data.icc_level);
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03006086
6087 if (ret)
6088 dev_err(hba->dev,
6089 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
6090 __func__, hba->init_prefetch_data.icc_level , ret);
6091
Kees Cookbbe21d72018-05-02 16:58:09 -07006092out:
6093 kfree(desc_buf);
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03006094}
6095
6096/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006097 * ufshcd_scsi_add_wlus - Adds required W-LUs
6098 * @hba: per-adapter instance
6099 *
6100 * UFS device specification requires the UFS devices to support 4 well known
6101 * logical units:
6102 * "REPORT_LUNS" (address: 01h)
6103 * "UFS Device" (address: 50h)
6104 * "RPMB" (address: 44h)
6105 * "BOOT" (address: 30h)
6106 * UFS device's power management needs to be controlled by "POWER CONDITION"
6107 * field of SSU (START STOP UNIT) command. But this "power condition" field
6108 * will take effect only when its sent to "UFS device" well known logical unit
6109 * hence we require the scsi_device instance to represent this logical unit in
6110 * order for the UFS host driver to send the SSU command for power management.
Bart Van Assche8aa29f12018-03-01 15:07:20 -08006111 *
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006112 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
6113 * Block) LU so user space process can control this LU. User space may also
6114 * want to have access to BOOT LU.
Bart Van Assche8aa29f12018-03-01 15:07:20 -08006115 *
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006116 * This function adds scsi device instances for each of all well known LUs
6117 * (except "REPORT LUNS" LU).
6118 *
6119 * Returns zero on success (all required W-LUs are added successfully),
6120 * non-zero error value on failure (if failed to add any of the required W-LU).
6121 */
6122static int ufshcd_scsi_add_wlus(struct ufs_hba *hba)
6123{
6124 int ret = 0;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03006125 struct scsi_device *sdev_rpmb;
6126 struct scsi_device *sdev_boot;
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006127
6128 hba->sdev_ufs_device = __scsi_add_device(hba->host, 0, 0,
6129 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN), NULL);
6130 if (IS_ERR(hba->sdev_ufs_device)) {
6131 ret = PTR_ERR(hba->sdev_ufs_device);
6132 hba->sdev_ufs_device = NULL;
6133 goto out;
6134 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03006135 scsi_device_put(hba->sdev_ufs_device);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006136
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03006137 sdev_rpmb = __scsi_add_device(hba->host, 0, 0,
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006138 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN), NULL);
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03006139 if (IS_ERR(sdev_rpmb)) {
6140 ret = PTR_ERR(sdev_rpmb);
Huanlin Ke3d21fbd2017-09-22 18:31:47 +08006141 goto remove_sdev_ufs_device;
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006142 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03006143 scsi_device_put(sdev_rpmb);
Huanlin Ke3d21fbd2017-09-22 18:31:47 +08006144
6145 sdev_boot = __scsi_add_device(hba->host, 0, 0,
6146 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN), NULL);
6147 if (IS_ERR(sdev_boot))
6148 dev_err(hba->dev, "%s: BOOT WLUN not found\n", __func__);
6149 else
6150 scsi_device_put(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006151 goto out;
6152
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006153remove_sdev_ufs_device:
6154 scsi_remove_device(hba->sdev_ufs_device);
6155out:
6156 return ret;
6157}
6158
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006159static int ufs_get_device_desc(struct ufs_hba *hba,
6160 struct ufs_dev_desc *dev_desc)
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006161{
6162 int err;
Kees Cookbbe21d72018-05-02 16:58:09 -07006163 size_t buff_len;
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006164 u8 model_index;
Kees Cookbbe21d72018-05-02 16:58:09 -07006165 u8 *desc_buf;
6166
6167 buff_len = max_t(size_t, hba->desc_size.dev_desc,
6168 QUERY_DESC_MAX_SIZE + 1);
6169 desc_buf = kmalloc(buff_len, GFP_KERNEL);
6170 if (!desc_buf) {
6171 err = -ENOMEM;
6172 goto out;
6173 }
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006174
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006175 err = ufshcd_read_device_desc(hba, desc_buf, hba->desc_size.dev_desc);
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006176 if (err) {
6177 dev_err(hba->dev, "%s: Failed reading Device Desc. err = %d\n",
6178 __func__, err);
6179 goto out;
6180 }
6181
6182 /*
6183 * getting vendor (manufacturerID) and Bank Index in big endian
6184 * format
6185 */
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006186 dev_desc->wmanufacturerid = desc_buf[DEVICE_DESC_PARAM_MANF_ID] << 8 |
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006187 desc_buf[DEVICE_DESC_PARAM_MANF_ID + 1];
6188
6189 model_index = desc_buf[DEVICE_DESC_PARAM_PRDCT_NAME];
6190
Kees Cookbbe21d72018-05-02 16:58:09 -07006191 /* Zero-pad entire buffer for string termination. */
6192 memset(desc_buf, 0, buff_len);
6193
6194 err = ufshcd_read_string_desc(hba, model_index, desc_buf,
Bart Van Assche8aa29f12018-03-01 15:07:20 -08006195 QUERY_DESC_MAX_SIZE, true/*ASCII*/);
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006196 if (err) {
6197 dev_err(hba->dev, "%s: Failed reading Product Name. err = %d\n",
6198 __func__, err);
6199 goto out;
6200 }
6201
Kees Cookbbe21d72018-05-02 16:58:09 -07006202 desc_buf[QUERY_DESC_MAX_SIZE] = '\0';
6203 strlcpy(dev_desc->model, (desc_buf + QUERY_DESC_HDR_SIZE),
6204 min_t(u8, desc_buf[QUERY_DESC_LENGTH_OFFSET],
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006205 MAX_MODEL_LEN));
6206
6207 /* Null terminate the model string */
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006208 dev_desc->model[MAX_MODEL_LEN] = '\0';
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006209
6210out:
Kees Cookbbe21d72018-05-02 16:58:09 -07006211 kfree(desc_buf);
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006212 return err;
6213}
6214
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006215static void ufs_fixup_device_setup(struct ufs_hba *hba,
6216 struct ufs_dev_desc *dev_desc)
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006217{
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006218 struct ufs_dev_fix *f;
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006219
6220 for (f = ufs_fixups; f->quirk; f++) {
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006221 if ((f->card.wmanufacturerid == dev_desc->wmanufacturerid ||
6222 f->card.wmanufacturerid == UFS_ANY_VENDOR) &&
6223 (STR_PRFX_EQUAL(f->card.model, dev_desc->model) ||
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02006224 !strcmp(f->card.model, UFS_ANY_MODEL)))
6225 hba->dev_quirks |= f->quirk;
6226 }
6227}
6228
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006229/**
Yaniv Gardi37113102016-03-10 17:37:16 +02006230 * ufshcd_tune_pa_tactivate - Tunes PA_TActivate of local UniPro
6231 * @hba: per-adapter instance
6232 *
6233 * PA_TActivate parameter can be tuned manually if UniPro version is less than
6234 * 1.61. PA_TActivate needs to be greater than or equal to peerM-PHY's
6235 * RX_MIN_ACTIVATETIME_CAPABILITY attribute. This optimal value can help reduce
6236 * the hibern8 exit latency.
6237 *
6238 * Returns zero on success, non-zero error value on failure.
6239 */
6240static int ufshcd_tune_pa_tactivate(struct ufs_hba *hba)
6241{
6242 int ret = 0;
6243 u32 peer_rx_min_activatetime = 0, tuned_pa_tactivate;
6244
6245 ret = ufshcd_dme_peer_get(hba,
6246 UIC_ARG_MIB_SEL(
6247 RX_MIN_ACTIVATETIME_CAPABILITY,
6248 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
6249 &peer_rx_min_activatetime);
6250 if (ret)
6251 goto out;
6252
6253 /* make sure proper unit conversion is applied */
6254 tuned_pa_tactivate =
6255 ((peer_rx_min_activatetime * RX_MIN_ACTIVATETIME_UNIT_US)
6256 / PA_TACTIVATE_TIME_UNIT_US);
6257 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
6258 tuned_pa_tactivate);
6259
6260out:
6261 return ret;
6262}
6263
6264/**
6265 * ufshcd_tune_pa_hibern8time - Tunes PA_Hibern8Time of local UniPro
6266 * @hba: per-adapter instance
6267 *
6268 * PA_Hibern8Time parameter can be tuned manually if UniPro version is less than
6269 * 1.61. PA_Hibern8Time needs to be maximum of local M-PHY's
6270 * TX_HIBERN8TIME_CAPABILITY & peer M-PHY's RX_HIBERN8TIME_CAPABILITY.
6271 * This optimal value can help reduce the hibern8 exit latency.
6272 *
6273 * Returns zero on success, non-zero error value on failure.
6274 */
6275static int ufshcd_tune_pa_hibern8time(struct ufs_hba *hba)
6276{
6277 int ret = 0;
6278 u32 local_tx_hibern8_time_cap = 0, peer_rx_hibern8_time_cap = 0;
6279 u32 max_hibern8_time, tuned_pa_hibern8time;
6280
6281 ret = ufshcd_dme_get(hba,
6282 UIC_ARG_MIB_SEL(TX_HIBERN8TIME_CAPABILITY,
6283 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(0)),
6284 &local_tx_hibern8_time_cap);
6285 if (ret)
6286 goto out;
6287
6288 ret = ufshcd_dme_peer_get(hba,
6289 UIC_ARG_MIB_SEL(RX_HIBERN8TIME_CAPABILITY,
6290 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
6291 &peer_rx_hibern8_time_cap);
6292 if (ret)
6293 goto out;
6294
6295 max_hibern8_time = max(local_tx_hibern8_time_cap,
6296 peer_rx_hibern8_time_cap);
6297 /* make sure proper unit conversion is applied */
6298 tuned_pa_hibern8time = ((max_hibern8_time * HIBERN8TIME_UNIT_US)
6299 / PA_HIBERN8_TIME_UNIT_US);
6300 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME),
6301 tuned_pa_hibern8time);
6302out:
6303 return ret;
6304}
6305
subhashj@codeaurora.orgc6a6db42016-11-23 16:32:08 -08006306/**
6307 * ufshcd_quirk_tune_host_pa_tactivate - Ensures that host PA_TACTIVATE is
6308 * less than device PA_TACTIVATE time.
6309 * @hba: per-adapter instance
6310 *
6311 * Some UFS devices require host PA_TACTIVATE to be lower than device
6312 * PA_TACTIVATE, we need to enable UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE quirk
6313 * for such devices.
6314 *
6315 * Returns zero on success, non-zero error value on failure.
6316 */
6317static int ufshcd_quirk_tune_host_pa_tactivate(struct ufs_hba *hba)
6318{
6319 int ret = 0;
6320 u32 granularity, peer_granularity;
6321 u32 pa_tactivate, peer_pa_tactivate;
6322 u32 pa_tactivate_us, peer_pa_tactivate_us;
6323 u8 gran_to_us_table[] = {1, 4, 8, 16, 32, 100};
6324
6325 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
6326 &granularity);
6327 if (ret)
6328 goto out;
6329
6330 ret = ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
6331 &peer_granularity);
6332 if (ret)
6333 goto out;
6334
6335 if ((granularity < PA_GRANULARITY_MIN_VAL) ||
6336 (granularity > PA_GRANULARITY_MAX_VAL)) {
6337 dev_err(hba->dev, "%s: invalid host PA_GRANULARITY %d",
6338 __func__, granularity);
6339 return -EINVAL;
6340 }
6341
6342 if ((peer_granularity < PA_GRANULARITY_MIN_VAL) ||
6343 (peer_granularity > PA_GRANULARITY_MAX_VAL)) {
6344 dev_err(hba->dev, "%s: invalid device PA_GRANULARITY %d",
6345 __func__, peer_granularity);
6346 return -EINVAL;
6347 }
6348
6349 ret = ufshcd_dme_get(hba, UIC_ARG_MIB(PA_TACTIVATE), &pa_tactivate);
6350 if (ret)
6351 goto out;
6352
6353 ret = ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_TACTIVATE),
6354 &peer_pa_tactivate);
6355 if (ret)
6356 goto out;
6357
6358 pa_tactivate_us = pa_tactivate * gran_to_us_table[granularity - 1];
6359 peer_pa_tactivate_us = peer_pa_tactivate *
6360 gran_to_us_table[peer_granularity - 1];
6361
6362 if (pa_tactivate_us > peer_pa_tactivate_us) {
6363 u32 new_peer_pa_tactivate;
6364
6365 new_peer_pa_tactivate = pa_tactivate_us /
6366 gran_to_us_table[peer_granularity - 1];
6367 new_peer_pa_tactivate++;
6368 ret = ufshcd_dme_peer_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
6369 new_peer_pa_tactivate);
6370 }
6371
6372out:
6373 return ret;
6374}
6375
Yaniv Gardi37113102016-03-10 17:37:16 +02006376static void ufshcd_tune_unipro_params(struct ufs_hba *hba)
6377{
6378 if (ufshcd_is_unipro_pa_params_tuning_req(hba)) {
6379 ufshcd_tune_pa_tactivate(hba);
6380 ufshcd_tune_pa_hibern8time(hba);
6381 }
6382
6383 if (hba->dev_quirks & UFS_DEVICE_QUIRK_PA_TACTIVATE)
6384 /* set 1ms timeout for PA_TACTIVATE */
6385 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE), 10);
subhashj@codeaurora.orgc6a6db42016-11-23 16:32:08 -08006386
6387 if (hba->dev_quirks & UFS_DEVICE_QUIRK_HOST_PA_TACTIVATE)
6388 ufshcd_quirk_tune_host_pa_tactivate(hba);
Subhash Jadavani56d4a182016-12-05 19:25:32 -08006389
6390 ufshcd_vops_apply_dev_quirks(hba);
Yaniv Gardi37113102016-03-10 17:37:16 +02006391}
6392
Dolev Ravivff8e20c2016-12-22 18:42:18 -08006393static void ufshcd_clear_dbg_ufs_stats(struct ufs_hba *hba)
6394{
6395 int err_reg_hist_size = sizeof(struct ufs_uic_err_reg_hist);
6396
6397 hba->ufs_stats.hibern8_exit_cnt = 0;
6398 hba->ufs_stats.last_hibern8_exit_tstamp = ktime_set(0, 0);
6399
6400 memset(&hba->ufs_stats.pa_err, 0, err_reg_hist_size);
6401 memset(&hba->ufs_stats.dl_err, 0, err_reg_hist_size);
6402 memset(&hba->ufs_stats.nl_err, 0, err_reg_hist_size);
6403 memset(&hba->ufs_stats.tl_err, 0, err_reg_hist_size);
6404 memset(&hba->ufs_stats.dme_err, 0, err_reg_hist_size);
Gilad Broner7fabb772017-02-03 16:56:50 -08006405
6406 hba->req_abort_count = 0;
Dolev Ravivff8e20c2016-12-22 18:42:18 -08006407}
6408
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006409static void ufshcd_init_desc_sizes(struct ufs_hba *hba)
6410{
6411 int err;
6412
6413 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_DEVICE, 0,
6414 &hba->desc_size.dev_desc);
6415 if (err)
6416 hba->desc_size.dev_desc = QUERY_DESC_DEVICE_DEF_SIZE;
6417
6418 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_POWER, 0,
6419 &hba->desc_size.pwr_desc);
6420 if (err)
6421 hba->desc_size.pwr_desc = QUERY_DESC_POWER_DEF_SIZE;
6422
6423 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_INTERCONNECT, 0,
6424 &hba->desc_size.interc_desc);
6425 if (err)
6426 hba->desc_size.interc_desc = QUERY_DESC_INTERCONNECT_DEF_SIZE;
6427
6428 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_CONFIGURATION, 0,
6429 &hba->desc_size.conf_desc);
6430 if (err)
6431 hba->desc_size.conf_desc = QUERY_DESC_CONFIGURATION_DEF_SIZE;
6432
6433 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_UNIT, 0,
6434 &hba->desc_size.unit_desc);
6435 if (err)
6436 hba->desc_size.unit_desc = QUERY_DESC_UNIT_DEF_SIZE;
6437
6438 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_GEOMETRY, 0,
6439 &hba->desc_size.geom_desc);
6440 if (err)
6441 hba->desc_size.geom_desc = QUERY_DESC_GEOMETRY_DEF_SIZE;
Stanislav Nijnikovc648c2d2018-02-15 14:14:05 +02006442 err = ufshcd_read_desc_length(hba, QUERY_DESC_IDN_HEALTH, 0,
6443 &hba->desc_size.hlth_desc);
6444 if (err)
6445 hba->desc_size.hlth_desc = QUERY_DESC_HEALTH_DEF_SIZE;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006446}
6447
6448static void ufshcd_def_desc_sizes(struct ufs_hba *hba)
6449{
6450 hba->desc_size.dev_desc = QUERY_DESC_DEVICE_DEF_SIZE;
6451 hba->desc_size.pwr_desc = QUERY_DESC_POWER_DEF_SIZE;
6452 hba->desc_size.interc_desc = QUERY_DESC_INTERCONNECT_DEF_SIZE;
6453 hba->desc_size.conf_desc = QUERY_DESC_CONFIGURATION_DEF_SIZE;
6454 hba->desc_size.unit_desc = QUERY_DESC_UNIT_DEF_SIZE;
6455 hba->desc_size.geom_desc = QUERY_DESC_GEOMETRY_DEF_SIZE;
Stanislav Nijnikovc648c2d2018-02-15 14:14:05 +02006456 hba->desc_size.hlth_desc = QUERY_DESC_HEALTH_DEF_SIZE;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006457}
6458
Yaniv Gardi37113102016-03-10 17:37:16 +02006459/**
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03006460 * ufshcd_probe_hba - probe hba to detect device and initialize
6461 * @hba: per-adapter instance
6462 *
6463 * Execute link-startup and verify device initialization
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306464 */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03006465static int ufshcd_probe_hba(struct ufs_hba *hba)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306466{
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006467 struct ufs_dev_desc card = {0};
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306468 int ret;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08006469 ktime_t start = ktime_get();
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306470
6471 ret = ufshcd_link_startup(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05306472 if (ret)
6473 goto out;
6474
Yaniv Gardiafdfff52016-03-10 17:37:15 +02006475 /* set the default level for urgent bkops */
6476 hba->urgent_bkops_lvl = BKOPS_STATUS_PERF_IMPACT;
6477 hba->is_urgent_bkops_lvl_checked = false;
6478
Dolev Ravivff8e20c2016-12-22 18:42:18 -08006479 /* Debug counters initialization */
6480 ufshcd_clear_dbg_ufs_stats(hba);
6481
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006482 /* UniPro link is active now */
6483 ufshcd_set_link_active(hba);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05306484
Adrian Hunterad448372018-03-20 15:07:38 +02006485 /* Enable Auto-Hibernate if configured */
6486 ufshcd_auto_hibern8_enable(hba);
6487
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05306488 ret = ufshcd_verify_dev_init(hba);
6489 if (ret)
6490 goto out;
6491
Dolev Raviv68078d52013-07-30 00:35:58 +05306492 ret = ufshcd_complete_dev_init(hba);
6493 if (ret)
6494 goto out;
6495
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006496 /* Init check for device descriptor sizes */
6497 ufshcd_init_desc_sizes(hba);
6498
Tomas Winkler93fdd5a2017-01-05 10:45:12 +02006499 ret = ufs_get_device_desc(hba, &card);
6500 if (ret) {
6501 dev_err(hba->dev, "%s: Failed getting device info. err = %d\n",
6502 __func__, ret);
6503 goto out;
6504 }
6505
6506 ufs_fixup_device_setup(hba, &card);
Yaniv Gardi37113102016-03-10 17:37:16 +02006507 ufshcd_tune_unipro_params(hba);
Yaniv Gardi60f01872016-03-10 17:37:11 +02006508
6509 ret = ufshcd_set_vccq_rail_unused(hba,
6510 (hba->dev_quirks & UFS_DEVICE_NO_VCCQ) ? true : false);
6511 if (ret)
6512 goto out;
6513
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006514 /* UFS device is also active now */
6515 ufshcd_set_ufs_dev_active(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05306516 ufshcd_force_reset_auto_bkops(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006517 hba->wlun_dev_clr_ua = true;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05306518
Dolev Raviv7eb584d2014-09-25 15:32:31 +03006519 if (ufshcd_get_max_pwr_mode(hba)) {
6520 dev_err(hba->dev,
6521 "%s: Failed getting max supported power mode\n",
6522 __func__);
6523 } else {
6524 ret = ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info);
Dov Levenglick8643ae62016-10-17 17:10:14 -07006525 if (ret) {
Dolev Raviv7eb584d2014-09-25 15:32:31 +03006526 dev_err(hba->dev, "%s: Failed setting power mode, err = %d\n",
6527 __func__, ret);
Dov Levenglick8643ae62016-10-17 17:10:14 -07006528 goto out;
6529 }
Dolev Raviv7eb584d2014-09-25 15:32:31 +03006530 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006531
Yaniv Gardi53c12d02016-02-01 15:02:45 +02006532 /* set the state as operational after switching to desired gear */
6533 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00006534
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006535 /*
6536 * If we are in error handling context or in power management callbacks
6537 * context, no need to scan the host
6538 */
6539 if (!ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
6540 bool flag;
6541
6542 /* clear any previous UFS device information */
6543 memset(&hba->dev_info, 0, sizeof(hba->dev_info));
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02006544 if (!ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
6545 QUERY_FLAG_IDN_PWR_ON_WPE, &flag))
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006546 hba->dev_info.f_power_on_wp_en = flag;
6547
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03006548 if (!hba->is_init_prefetch)
6549 ufshcd_init_icc_levels(hba);
6550
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03006551 /* Add required well known logical units to scsi mid layer */
6552 if (ufshcd_scsi_add_wlus(hba))
6553 goto out;
6554
subhashj@codeaurora.org0701e492017-02-03 16:58:01 -08006555 /* Initialize devfreq after UFS device is detected */
6556 if (ufshcd_is_clkscaling_supported(hba)) {
6557 memcpy(&hba->clk_scaling.saved_pwr_info.info,
6558 &hba->pwr_info,
6559 sizeof(struct ufs_pa_layer_attr));
6560 hba->clk_scaling.saved_pwr_info.is_valid = true;
6561 if (!hba->devfreq) {
Bjorn Anderssondeac4442018-05-17 23:26:36 -07006562 ret = ufshcd_devfreq_init(hba);
6563 if (ret)
subhashj@codeaurora.org0701e492017-02-03 16:58:01 -08006564 goto out;
subhashj@codeaurora.org0701e492017-02-03 16:58:01 -08006565 }
6566 hba->clk_scaling.is_allowed = true;
6567 }
6568
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05306569 scsi_scan_host(hba->host);
6570 pm_runtime_put_sync(hba->dev);
6571 }
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03006572
6573 if (!hba->is_init_prefetch)
6574 hba->is_init_prefetch = true;
6575
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05306576out:
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03006577 /*
6578 * If we failed to initialize the device or the device is not
6579 * present, turn off the power/clocks etc.
6580 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006581 if (ret && !ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
6582 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03006583 ufshcd_hba_exit(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006584 }
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03006585
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08006586 trace_ufshcd_init(dev_name(hba->dev), ret,
6587 ktime_to_us(ktime_sub(ktime_get(), start)),
Subhash Jadavani73eba2b2017-01-10 16:48:25 -08006588 hba->curr_dev_pwr_mode, hba->uic_link_state);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03006589 return ret;
6590}
6591
6592/**
6593 * ufshcd_async_scan - asynchronous execution for probing hba
6594 * @data: data pointer to pass to this function
6595 * @cookie: cookie data
6596 */
6597static void ufshcd_async_scan(void *data, async_cookie_t cookie)
6598{
6599 struct ufs_hba *hba = (struct ufs_hba *)data;
6600
6601 ufshcd_probe_hba(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306602}
6603
Yaniv Gardif550c652016-03-10 17:37:07 +02006604static enum blk_eh_timer_return ufshcd_eh_timed_out(struct scsi_cmnd *scmd)
6605{
6606 unsigned long flags;
6607 struct Scsi_Host *host;
6608 struct ufs_hba *hba;
6609 int index;
6610 bool found = false;
6611
6612 if (!scmd || !scmd->device || !scmd->device->host)
6613 return BLK_EH_NOT_HANDLED;
6614
6615 host = scmd->device->host;
6616 hba = shost_priv(host);
6617 if (!hba)
6618 return BLK_EH_NOT_HANDLED;
6619
6620 spin_lock_irqsave(host->host_lock, flags);
6621
6622 for_each_set_bit(index, &hba->outstanding_reqs, hba->nutrs) {
6623 if (hba->lrb[index].cmd == scmd) {
6624 found = true;
6625 break;
6626 }
6627 }
6628
6629 spin_unlock_irqrestore(host->host_lock, flags);
6630
6631 /*
6632 * Bypass SCSI error handling and reset the block layer timer if this
6633 * SCSI command was not actually dispatched to UFS driver, otherwise
6634 * let SCSI layer handle the error as usual.
6635 */
6636 return found ? BLK_EH_NOT_HANDLED : BLK_EH_RESET_TIMER;
6637}
6638
Stanislav Nijnikovd829fc82018-02-15 14:14:09 +02006639static const struct attribute_group *ufshcd_driver_groups[] = {
6640 &ufs_sysfs_unit_descriptor_group,
Stanislav Nijnikovec92b592018-02-15 14:14:11 +02006641 &ufs_sysfs_lun_attributes_group,
Stanislav Nijnikovd829fc82018-02-15 14:14:09 +02006642 NULL,
6643};
6644
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306645static struct scsi_host_template ufshcd_driver_template = {
6646 .module = THIS_MODULE,
6647 .name = UFSHCD,
6648 .proc_name = UFSHCD,
6649 .queuecommand = ufshcd_queuecommand,
6650 .slave_alloc = ufshcd_slave_alloc,
Akinobu Mitaeeda4742014-07-01 23:00:32 +09006651 .slave_configure = ufshcd_slave_configure,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306652 .slave_destroy = ufshcd_slave_destroy,
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03006653 .change_queue_depth = ufshcd_change_queue_depth,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306654 .eh_abort_handler = ufshcd_abort,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05306655 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
6656 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
Yaniv Gardif550c652016-03-10 17:37:07 +02006657 .eh_timed_out = ufshcd_eh_timed_out,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306658 .this_id = -1,
6659 .sg_tablesize = SG_ALL,
6660 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
6661 .can_queue = UFSHCD_CAN_QUEUE,
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006662 .max_host_blocked = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +01006663 .track_queue_depth = 1,
Stanislav Nijnikovd829fc82018-02-15 14:14:09 +02006664 .sdev_groups = ufshcd_driver_groups,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306665};
6666
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006667static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg *vreg,
6668 int ua)
6669{
Bjorn Andersson7b16a072015-02-11 19:35:28 -08006670 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006671
Bjorn Andersson7b16a072015-02-11 19:35:28 -08006672 if (!vreg)
6673 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006674
Bjorn Andersson7b16a072015-02-11 19:35:28 -08006675 ret = regulator_set_load(vreg->reg, ua);
6676 if (ret < 0) {
6677 dev_err(dev, "%s: %s set load (ua=%d) failed, err=%d\n",
6678 __func__, vreg->name, ua, ret);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006679 }
6680
6681 return ret;
6682}
6683
6684static inline int ufshcd_config_vreg_lpm(struct ufs_hba *hba,
6685 struct ufs_vreg *vreg)
6686{
Yaniv Gardi60f01872016-03-10 17:37:11 +02006687 if (!vreg)
6688 return 0;
6689 else if (vreg->unused)
6690 return 0;
6691 else
6692 return ufshcd_config_vreg_load(hba->dev, vreg,
6693 UFS_VREG_LPM_LOAD_UA);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006694}
6695
6696static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
6697 struct ufs_vreg *vreg)
6698{
Yaniv Gardi60f01872016-03-10 17:37:11 +02006699 if (!vreg)
6700 return 0;
6701 else if (vreg->unused)
6702 return 0;
6703 else
6704 return ufshcd_config_vreg_load(hba->dev, vreg, vreg->max_uA);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006705}
6706
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006707static int ufshcd_config_vreg(struct device *dev,
6708 struct ufs_vreg *vreg, bool on)
6709{
6710 int ret = 0;
Gustavo A. R. Silva72753592017-11-20 08:12:29 -06006711 struct regulator *reg;
6712 const char *name;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006713 int min_uV, uA_load;
6714
6715 BUG_ON(!vreg);
6716
Gustavo A. R. Silva72753592017-11-20 08:12:29 -06006717 reg = vreg->reg;
6718 name = vreg->name;
6719
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006720 if (regulator_count_voltages(reg) > 0) {
6721 min_uV = on ? vreg->min_uV : 0;
6722 ret = regulator_set_voltage(reg, min_uV, vreg->max_uV);
6723 if (ret) {
6724 dev_err(dev, "%s: %s set voltage failed, err=%d\n",
6725 __func__, name, ret);
6726 goto out;
6727 }
6728
6729 uA_load = on ? vreg->max_uA : 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006730 ret = ufshcd_config_vreg_load(dev, vreg, uA_load);
6731 if (ret)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006732 goto out;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006733 }
6734out:
6735 return ret;
6736}
6737
6738static int ufshcd_enable_vreg(struct device *dev, struct ufs_vreg *vreg)
6739{
6740 int ret = 0;
6741
Yaniv Gardi60f01872016-03-10 17:37:11 +02006742 if (!vreg)
6743 goto out;
6744 else if (vreg->enabled || vreg->unused)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006745 goto out;
6746
6747 ret = ufshcd_config_vreg(dev, vreg, true);
6748 if (!ret)
6749 ret = regulator_enable(vreg->reg);
6750
6751 if (!ret)
6752 vreg->enabled = true;
6753 else
6754 dev_err(dev, "%s: %s enable failed, err=%d\n",
6755 __func__, vreg->name, ret);
6756out:
6757 return ret;
6758}
6759
6760static int ufshcd_disable_vreg(struct device *dev, struct ufs_vreg *vreg)
6761{
6762 int ret = 0;
6763
Yaniv Gardi60f01872016-03-10 17:37:11 +02006764 if (!vreg)
6765 goto out;
6766 else if (!vreg->enabled || vreg->unused)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006767 goto out;
6768
6769 ret = regulator_disable(vreg->reg);
6770
6771 if (!ret) {
6772 /* ignore errors on applying disable config */
6773 ufshcd_config_vreg(dev, vreg, false);
6774 vreg->enabled = false;
6775 } else {
6776 dev_err(dev, "%s: %s disable failed, err=%d\n",
6777 __func__, vreg->name, ret);
6778 }
6779out:
6780 return ret;
6781}
6782
6783static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on)
6784{
6785 int ret = 0;
6786 struct device *dev = hba->dev;
6787 struct ufs_vreg_info *info = &hba->vreg_info;
6788
6789 if (!info)
6790 goto out;
6791
6792 ret = ufshcd_toggle_vreg(dev, info->vcc, on);
6793 if (ret)
6794 goto out;
6795
6796 ret = ufshcd_toggle_vreg(dev, info->vccq, on);
6797 if (ret)
6798 goto out;
6799
6800 ret = ufshcd_toggle_vreg(dev, info->vccq2, on);
6801 if (ret)
6802 goto out;
6803
6804out:
6805 if (ret) {
6806 ufshcd_toggle_vreg(dev, info->vccq2, false);
6807 ufshcd_toggle_vreg(dev, info->vccq, false);
6808 ufshcd_toggle_vreg(dev, info->vcc, false);
6809 }
6810 return ret;
6811}
6812
Raviv Shvili6a771a62014-09-25 15:32:24 +03006813static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on)
6814{
6815 struct ufs_vreg_info *info = &hba->vreg_info;
6816
6817 if (info)
6818 return ufshcd_toggle_vreg(hba->dev, info->vdd_hba, on);
6819
6820 return 0;
6821}
6822
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006823static int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg)
6824{
6825 int ret = 0;
6826
6827 if (!vreg)
6828 goto out;
6829
6830 vreg->reg = devm_regulator_get(dev, vreg->name);
6831 if (IS_ERR(vreg->reg)) {
6832 ret = PTR_ERR(vreg->reg);
6833 dev_err(dev, "%s: %s get failed, err=%d\n",
6834 __func__, vreg->name, ret);
6835 }
6836out:
6837 return ret;
6838}
6839
6840static int ufshcd_init_vreg(struct ufs_hba *hba)
6841{
6842 int ret = 0;
6843 struct device *dev = hba->dev;
6844 struct ufs_vreg_info *info = &hba->vreg_info;
6845
6846 if (!info)
6847 goto out;
6848
6849 ret = ufshcd_get_vreg(dev, info->vcc);
6850 if (ret)
6851 goto out;
6852
6853 ret = ufshcd_get_vreg(dev, info->vccq);
6854 if (ret)
6855 goto out;
6856
6857 ret = ufshcd_get_vreg(dev, info->vccq2);
6858out:
6859 return ret;
6860}
6861
Raviv Shvili6a771a62014-09-25 15:32:24 +03006862static int ufshcd_init_hba_vreg(struct ufs_hba *hba)
6863{
6864 struct ufs_vreg_info *info = &hba->vreg_info;
6865
6866 if (info)
6867 return ufshcd_get_vreg(hba->dev, info->vdd_hba);
6868
6869 return 0;
6870}
6871
Yaniv Gardi60f01872016-03-10 17:37:11 +02006872static int ufshcd_set_vccq_rail_unused(struct ufs_hba *hba, bool unused)
6873{
6874 int ret = 0;
6875 struct ufs_vreg_info *info = &hba->vreg_info;
6876
6877 if (!info)
6878 goto out;
6879 else if (!info->vccq)
6880 goto out;
6881
6882 if (unused) {
6883 /* shut off the rail here */
6884 ret = ufshcd_toggle_vreg(hba->dev, info->vccq, false);
6885 /*
6886 * Mark this rail as no longer used, so it doesn't get enabled
6887 * later by mistake
6888 */
6889 if (!ret)
6890 info->vccq->unused = true;
6891 } else {
6892 /*
6893 * rail should have been already enabled hence just make sure
6894 * that unused flag is cleared.
6895 */
6896 info->vccq->unused = false;
6897 }
6898out:
6899 return ret;
6900}
6901
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006902static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
6903 bool skip_ref_clk)
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006904{
6905 int ret = 0;
6906 struct ufs_clk_info *clki;
6907 struct list_head *head = &hba->clk_list_head;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006908 unsigned long flags;
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08006909 ktime_t start = ktime_get();
6910 bool clk_state_changed = false;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006911
Szymon Mielczarek566ec9a2017-06-05 11:36:54 +03006912 if (list_empty(head))
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006913 goto out;
6914
Subhash Jadavanib3344562018-05-03 16:37:17 +05306915 /*
6916 * vendor specific setup_clocks ops may depend on clocks managed by
6917 * this standard driver hence call the vendor specific setup_clocks
6918 * before disabling the clocks managed here.
6919 */
6920 if (!on) {
6921 ret = ufshcd_vops_setup_clocks(hba, on, PRE_CHANGE);
6922 if (ret)
6923 return ret;
6924 }
Subhash Jadavani1e879e82016-10-06 21:48:22 -07006925
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006926 list_for_each_entry(clki, head, list) {
6927 if (!IS_ERR_OR_NULL(clki->clk)) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006928 if (skip_ref_clk && !strcmp(clki->name, "ref_clk"))
6929 continue;
6930
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08006931 clk_state_changed = on ^ clki->enabled;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006932 if (on && !clki->enabled) {
6933 ret = clk_prepare_enable(clki->clk);
6934 if (ret) {
6935 dev_err(hba->dev, "%s: %s prepare enable failed, %d\n",
6936 __func__, clki->name, ret);
6937 goto out;
6938 }
6939 } else if (!on && clki->enabled) {
6940 clk_disable_unprepare(clki->clk);
6941 }
6942 clki->enabled = on;
6943 dev_dbg(hba->dev, "%s: clk: %s %sabled\n", __func__,
6944 clki->name, on ? "en" : "dis");
6945 }
6946 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006947
Subhash Jadavanib3344562018-05-03 16:37:17 +05306948 /*
6949 * vendor specific setup_clocks ops may depend on clocks managed by
6950 * this standard driver hence call the vendor specific setup_clocks
6951 * after enabling the clocks managed here.
6952 */
6953 if (on) {
6954 ret = ufshcd_vops_setup_clocks(hba, on, POST_CHANGE);
6955 if (ret)
6956 return ret;
6957 }
Subhash Jadavani1e879e82016-10-06 21:48:22 -07006958
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006959out:
6960 if (ret) {
6961 list_for_each_entry(clki, head, list) {
6962 if (!IS_ERR_OR_NULL(clki->clk) && clki->enabled)
6963 clk_disable_unprepare(clki->clk);
6964 }
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08006965 } else if (!ret && on) {
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006966 spin_lock_irqsave(hba->host->host_lock, flags);
6967 hba->clk_gating.state = CLKS_ON;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08006968 trace_ufshcd_clk_gating(dev_name(hba->dev),
6969 hba->clk_gating.state);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006970 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006971 }
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08006972
subhashj@codeaurora.org911a0772016-12-22 18:41:48 -08006973 if (clk_state_changed)
6974 trace_ufshcd_profile_clk_gating(dev_name(hba->dev),
6975 (on ? "on" : "off"),
6976 ktime_to_us(ktime_sub(ktime_get(), start)), ret);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006977 return ret;
6978}
6979
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006980static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on)
6981{
6982 return __ufshcd_setup_clocks(hba, on, false);
6983}
6984
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006985static int ufshcd_init_clocks(struct ufs_hba *hba)
6986{
6987 int ret = 0;
6988 struct ufs_clk_info *clki;
6989 struct device *dev = hba->dev;
6990 struct list_head *head = &hba->clk_list_head;
6991
Szymon Mielczarek566ec9a2017-06-05 11:36:54 +03006992 if (list_empty(head))
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03006993 goto out;
6994
6995 list_for_each_entry(clki, head, list) {
6996 if (!clki->name)
6997 continue;
6998
6999 clki->clk = devm_clk_get(dev, clki->name);
7000 if (IS_ERR(clki->clk)) {
7001 ret = PTR_ERR(clki->clk);
7002 dev_err(dev, "%s: %s clk get failed, %d\n",
7003 __func__, clki->name, ret);
7004 goto out;
7005 }
7006
7007 if (clki->max_freq) {
7008 ret = clk_set_rate(clki->clk, clki->max_freq);
7009 if (ret) {
7010 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
7011 __func__, clki->name,
7012 clki->max_freq, ret);
7013 goto out;
7014 }
Sahitya Tummala856b3482014-09-25 15:32:34 +03007015 clki->curr_freq = clki->max_freq;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03007016 }
7017 dev_dbg(dev, "%s: clk: %s, rate: %lu\n", __func__,
7018 clki->name, clk_get_rate(clki->clk));
7019 }
7020out:
7021 return ret;
7022}
7023
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007024static int ufshcd_variant_hba_init(struct ufs_hba *hba)
7025{
7026 int err = 0;
7027
7028 if (!hba->vops)
7029 goto out;
7030
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007031 err = ufshcd_vops_init(hba);
7032 if (err)
7033 goto out;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007034
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007035 err = ufshcd_vops_setup_regulators(hba, true);
7036 if (err)
7037 goto out_exit;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007038
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007039 goto out;
7040
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007041out_exit:
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007042 ufshcd_vops_exit(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007043out:
7044 if (err)
7045 dev_err(hba->dev, "%s: variant %s init failed err %d\n",
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007046 __func__, ufshcd_get_var_name(hba), err);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007047 return err;
7048}
7049
7050static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
7051{
7052 if (!hba->vops)
7053 return;
7054
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007055 ufshcd_vops_setup_regulators(hba, false);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007056
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007057 ufshcd_vops_exit(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007058}
7059
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007060static int ufshcd_hba_init(struct ufs_hba *hba)
7061{
7062 int err;
7063
Raviv Shvili6a771a62014-09-25 15:32:24 +03007064 /*
7065 * Handle host controller power separately from the UFS device power
7066 * rails as it will help controlling the UFS host controller power
7067 * collapse easily which is different than UFS device power collapse.
7068 * Also, enable the host controller power before we go ahead with rest
7069 * of the initialization here.
7070 */
7071 err = ufshcd_init_hba_vreg(hba);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007072 if (err)
7073 goto out;
7074
Raviv Shvili6a771a62014-09-25 15:32:24 +03007075 err = ufshcd_setup_hba_vreg(hba, true);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007076 if (err)
7077 goto out;
7078
Raviv Shvili6a771a62014-09-25 15:32:24 +03007079 err = ufshcd_init_clocks(hba);
7080 if (err)
7081 goto out_disable_hba_vreg;
7082
7083 err = ufshcd_setup_clocks(hba, true);
7084 if (err)
7085 goto out_disable_hba_vreg;
7086
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03007087 err = ufshcd_init_vreg(hba);
7088 if (err)
7089 goto out_disable_clks;
7090
7091 err = ufshcd_setup_vreg(hba, true);
7092 if (err)
7093 goto out_disable_clks;
7094
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007095 err = ufshcd_variant_hba_init(hba);
7096 if (err)
7097 goto out_disable_vreg;
7098
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03007099 hba->is_powered = true;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007100 goto out;
7101
7102out_disable_vreg:
7103 ufshcd_setup_vreg(hba, false);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03007104out_disable_clks:
7105 ufshcd_setup_clocks(hba, false);
Raviv Shvili6a771a62014-09-25 15:32:24 +03007106out_disable_hba_vreg:
7107 ufshcd_setup_hba_vreg(hba, false);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007108out:
7109 return err;
7110}
7111
7112static void ufshcd_hba_exit(struct ufs_hba *hba)
7113{
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03007114 if (hba->is_powered) {
7115 ufshcd_variant_hba_exit(hba);
7116 ufshcd_setup_vreg(hba, false);
Gilad Bronera5082532016-10-17 17:10:00 -07007117 ufshcd_suspend_clkscaling(hba);
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007118 if (ufshcd_is_clkscaling_supported(hba)) {
subhashj@codeaurora.org0701e492017-02-03 16:58:01 -08007119 if (hba->devfreq)
7120 ufshcd_suspend_clkscaling(hba);
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007121 destroy_workqueue(hba->clk_scaling.workq);
Bjorn Andersson092b4552018-05-17 23:26:37 -07007122 ufshcd_devfreq_remove(hba);
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007123 }
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03007124 ufshcd_setup_clocks(hba, false);
7125 ufshcd_setup_hba_vreg(hba, false);
7126 hba->is_powered = false;
7127 }
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007128}
7129
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007130static int
7131ufshcd_send_request_sense(struct ufs_hba *hba, struct scsi_device *sdp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307132{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007133 unsigned char cmd[6] = {REQUEST_SENSE,
7134 0,
7135 0,
7136 0,
Gilad Bronerdcea0bf2016-10-17 17:09:48 -07007137 UFSHCD_REQ_SENSE_SIZE,
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007138 0};
7139 char *buffer;
7140 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307141
Gilad Bronerdcea0bf2016-10-17 17:09:48 -07007142 buffer = kzalloc(UFSHCD_REQ_SENSE_SIZE, GFP_KERNEL);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007143 if (!buffer) {
7144 ret = -ENOMEM;
7145 goto out;
7146 }
7147
Christoph Hellwigfcbfffe2017-02-23 16:02:37 +01007148 ret = scsi_execute(sdp, cmd, DMA_FROM_DEVICE, buffer,
7149 UFSHCD_REQ_SENSE_SIZE, NULL, NULL,
7150 msecs_to_jiffies(1000), 3, 0, RQF_PM, NULL);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007151 if (ret)
7152 pr_err("%s: failed with err %d\n", __func__, ret);
7153
7154 kfree(buffer);
7155out:
7156 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307157}
7158
7159/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007160 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
7161 * power mode
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307162 * @hba: per adapter instance
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007163 * @pwr_mode: device power mode to set
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307164 *
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007165 * Returns 0 if requested power mode is set successfully
7166 * Returns non-zero if failed to set the requested power mode
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307167 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007168static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
7169 enum ufs_dev_pwr_mode pwr_mode)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307170{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007171 unsigned char cmd[6] = { START_STOP };
7172 struct scsi_sense_hdr sshdr;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03007173 struct scsi_device *sdp;
7174 unsigned long flags;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007175 int ret;
7176
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03007177 spin_lock_irqsave(hba->host->host_lock, flags);
7178 sdp = hba->sdev_ufs_device;
7179 if (sdp) {
7180 ret = scsi_device_get(sdp);
7181 if (!ret && !scsi_device_online(sdp)) {
7182 ret = -ENODEV;
7183 scsi_device_put(sdp);
7184 }
7185 } else {
7186 ret = -ENODEV;
7187 }
7188 spin_unlock_irqrestore(hba->host->host_lock, flags);
7189
7190 if (ret)
7191 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007192
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307193 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007194 * If scsi commands fail, the scsi mid-layer schedules scsi error-
7195 * handling, which would wait for host to be resumed. Since we know
7196 * we are functional while we are here, skip host resume in error
7197 * handling context.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307198 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007199 hba->host->eh_noresume = 1;
7200 if (hba->wlun_dev_clr_ua) {
7201 ret = ufshcd_send_request_sense(hba, sdp);
7202 if (ret)
7203 goto out;
7204 /* Unit attention condition is cleared now */
7205 hba->wlun_dev_clr_ua = false;
7206 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307207
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007208 cmd[4] = pwr_mode << 4;
7209
7210 /*
7211 * Current function would be generally called from the power management
Christoph Hellwige8064022016-10-20 15:12:13 +02007212 * callbacks hence set the RQF_PM flag so that it doesn't resume the
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007213 * already suspended childs.
7214 */
Christoph Hellwigfcbfffe2017-02-23 16:02:37 +01007215 ret = scsi_execute(sdp, cmd, DMA_NONE, NULL, 0, NULL, &sshdr,
7216 START_STOP_TIMEOUT, 0, 0, RQF_PM, NULL);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007217 if (ret) {
7218 sdev_printk(KERN_WARNING, sdp,
Hannes Reineckeef613292014-10-24 14:27:00 +02007219 "START_STOP failed for power mode: %d, result %x\n",
7220 pwr_mode, ret);
Hannes Reinecke21045512015-01-08 07:43:46 +01007221 if (driver_byte(ret) & DRIVER_SENSE)
7222 scsi_print_sense_hdr(sdp, NULL, &sshdr);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007223 }
7224
7225 if (!ret)
7226 hba->curr_dev_pwr_mode = pwr_mode;
7227out:
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03007228 scsi_device_put(sdp);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007229 hba->host->eh_noresume = 0;
7230 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307231}
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307232
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007233static int ufshcd_link_state_transition(struct ufs_hba *hba,
7234 enum uic_link_state req_link_state,
7235 int check_for_bkops)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307236{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007237 int ret = 0;
7238
7239 if (req_link_state == hba->uic_link_state)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307240 return 0;
7241
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007242 if (req_link_state == UIC_LINK_HIBERN8_STATE) {
7243 ret = ufshcd_uic_hibern8_enter(hba);
7244 if (!ret)
7245 ufshcd_set_link_hibern8(hba);
7246 else
7247 goto out;
7248 }
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307249 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007250 * If autobkops is enabled, link can't be turned off because
7251 * turning off the link would also turn off the device.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307252 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007253 else if ((req_link_state == UIC_LINK_OFF_STATE) &&
7254 (!check_for_bkops || (check_for_bkops &&
7255 !hba->auto_bkops_enabled))) {
7256 /*
Yaniv Gardif3099fb2016-03-10 17:37:17 +02007257 * Let's make sure that link is in low power mode, we are doing
7258 * this currently by putting the link in Hibern8. Otherway to
7259 * put the link in low power mode is to send the DME end point
7260 * to device and then send the DME reset command to local
7261 * unipro. But putting the link in hibern8 is much faster.
7262 */
7263 ret = ufshcd_uic_hibern8_enter(hba);
7264 if (ret)
7265 goto out;
7266 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007267 * Change controller state to "reset state" which
7268 * should also put the link in off/reset state
7269 */
Yaniv Gardi596585a2016-03-10 17:37:08 +02007270 ufshcd_hba_stop(hba, true);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007271 /*
7272 * TODO: Check if we need any delay to make sure that
7273 * controller is reset
7274 */
7275 ufshcd_set_link_off(hba);
7276 }
7277
7278out:
7279 return ret;
7280}
7281
7282static void ufshcd_vreg_set_lpm(struct ufs_hba *hba)
7283{
7284 /*
Yaniv Gardib799fdf2016-03-10 17:37:18 +02007285 * It seems some UFS devices may keep drawing more than sleep current
7286 * (atleast for 500us) from UFS rails (especially from VCCQ rail).
7287 * To avoid this situation, add 2ms delay before putting these UFS
7288 * rails in LPM mode.
7289 */
7290 if (!ufshcd_is_link_active(hba) &&
7291 hba->dev_quirks & UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM)
7292 usleep_range(2000, 2100);
7293
7294 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007295 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
7296 * power.
7297 *
7298 * If UFS device and link is in OFF state, all power supplies (VCC,
7299 * VCCQ, VCCQ2) can be turned off if power on write protect is not
7300 * required. If UFS link is inactive (Hibern8 or OFF state) and device
7301 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
7302 *
7303 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
7304 * in low power state which would save some power.
7305 */
7306 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
7307 !hba->dev_info.is_lu_power_on_wp) {
7308 ufshcd_setup_vreg(hba, false);
7309 } else if (!ufshcd_is_ufs_dev_active(hba)) {
7310 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
7311 if (!ufshcd_is_link_active(hba)) {
7312 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
7313 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq2);
7314 }
7315 }
7316}
7317
7318static int ufshcd_vreg_set_hpm(struct ufs_hba *hba)
7319{
7320 int ret = 0;
7321
7322 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
7323 !hba->dev_info.is_lu_power_on_wp) {
7324 ret = ufshcd_setup_vreg(hba, true);
7325 } else if (!ufshcd_is_ufs_dev_active(hba)) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007326 if (!ret && !ufshcd_is_link_active(hba)) {
7327 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
7328 if (ret)
7329 goto vcc_disable;
7330 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
7331 if (ret)
7332 goto vccq_lpm;
7333 }
Subhash Jadavani69d72ac2016-10-27 17:26:24 -07007334 ret = ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, true);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007335 }
7336 goto out;
7337
7338vccq_lpm:
7339 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
7340vcc_disable:
7341 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
7342out:
7343 return ret;
7344}
7345
7346static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba)
7347{
7348 if (ufshcd_is_link_off(hba))
7349 ufshcd_setup_hba_vreg(hba, false);
7350}
7351
7352static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba)
7353{
7354 if (ufshcd_is_link_off(hba))
7355 ufshcd_setup_hba_vreg(hba, true);
7356}
7357
7358/**
7359 * ufshcd_suspend - helper function for suspend operations
7360 * @hba: per adapter instance
7361 * @pm_op: desired low power operation type
7362 *
7363 * This function will try to put the UFS device and link into low power
7364 * mode based on the "rpm_lvl" (Runtime PM level) or "spm_lvl"
7365 * (System PM level).
7366 *
7367 * If this function is called during shutdown, it will make sure that
7368 * both UFS device and UFS link is powered off.
7369 *
7370 * NOTE: UFS device & link must be active before we enter in this function.
7371 *
7372 * Returns 0 for success and non-zero for failure
7373 */
7374static int ufshcd_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
7375{
7376 int ret = 0;
7377 enum ufs_pm_level pm_lvl;
7378 enum ufs_dev_pwr_mode req_dev_pwr_mode;
7379 enum uic_link_state req_link_state;
7380
7381 hba->pm_op_in_progress = 1;
7382 if (!ufshcd_is_shutdown_pm(pm_op)) {
7383 pm_lvl = ufshcd_is_runtime_pm(pm_op) ?
7384 hba->rpm_lvl : hba->spm_lvl;
7385 req_dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl);
7386 req_link_state = ufs_get_pm_lvl_to_link_pwr_state(pm_lvl);
7387 } else {
7388 req_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE;
7389 req_link_state = UIC_LINK_OFF_STATE;
7390 }
7391
7392 /*
7393 * If we can't transition into any of the low power modes
7394 * just gate the clocks.
7395 */
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007396 ufshcd_hold(hba, false);
7397 hba->clk_gating.is_suspended = true;
7398
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007399 if (hba->clk_scaling.is_allowed) {
7400 cancel_work_sync(&hba->clk_scaling.suspend_work);
7401 cancel_work_sync(&hba->clk_scaling.resume_work);
7402 ufshcd_suspend_clkscaling(hba);
7403 }
Subhash Jadavanid6fcf812016-10-27 17:26:09 -07007404
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007405 if (req_dev_pwr_mode == UFS_ACTIVE_PWR_MODE &&
7406 req_link_state == UIC_LINK_ACTIVE_STATE) {
7407 goto disable_clks;
7408 }
7409
7410 if ((req_dev_pwr_mode == hba->curr_dev_pwr_mode) &&
7411 (req_link_state == hba->uic_link_state))
Subhash Jadavanid6fcf812016-10-27 17:26:09 -07007412 goto enable_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007413
7414 /* UFS device & link must be active before we enter in this function */
7415 if (!ufshcd_is_ufs_dev_active(hba) || !ufshcd_is_link_active(hba)) {
7416 ret = -EINVAL;
Subhash Jadavanid6fcf812016-10-27 17:26:09 -07007417 goto enable_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007418 }
7419
7420 if (ufshcd_is_runtime_pm(pm_op)) {
Subhash Jadavani374a2462014-09-25 15:32:35 +03007421 if (ufshcd_can_autobkops_during_suspend(hba)) {
7422 /*
7423 * The device is idle with no requests in the queue,
7424 * allow background operations if bkops status shows
7425 * that performance might be impacted.
7426 */
7427 ret = ufshcd_urgent_bkops(hba);
7428 if (ret)
7429 goto enable_gating;
7430 } else {
7431 /* make sure that auto bkops is disabled */
7432 ufshcd_disable_auto_bkops(hba);
7433 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007434 }
7435
7436 if ((req_dev_pwr_mode != hba->curr_dev_pwr_mode) &&
7437 ((ufshcd_is_runtime_pm(pm_op) && !hba->auto_bkops_enabled) ||
7438 !ufshcd_is_runtime_pm(pm_op))) {
7439 /* ensure that bkops is disabled */
7440 ufshcd_disable_auto_bkops(hba);
7441 ret = ufshcd_set_dev_pwr_mode(hba, req_dev_pwr_mode);
7442 if (ret)
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007443 goto enable_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007444 }
7445
7446 ret = ufshcd_link_state_transition(hba, req_link_state, 1);
7447 if (ret)
7448 goto set_dev_active;
7449
7450 ufshcd_vreg_set_lpm(hba);
7451
7452disable_clks:
7453 /*
7454 * Call vendor specific suspend callback. As these callbacks may access
7455 * vendor specific host controller register space call them before the
7456 * host clocks are ON.
7457 */
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007458 ret = ufshcd_vops_suspend(hba, pm_op);
7459 if (ret)
7460 goto set_link_active;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007461
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007462 if (!ufshcd_is_link_active(hba))
7463 ufshcd_setup_clocks(hba, false);
7464 else
7465 /* If link is active, device ref_clk can't be switched off */
7466 __ufshcd_setup_clocks(hba, false, true);
7467
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007468 hba->clk_gating.state = CLKS_OFF;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007469 trace_ufshcd_clk_gating(dev_name(hba->dev), hba->clk_gating.state);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007470 /*
7471 * Disable the host irq as host controller as there won't be any
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007472 * host controller transaction expected till resume.
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007473 */
7474 ufshcd_disable_irq(hba);
7475 /* Put the host controller in low power mode if possible */
7476 ufshcd_hba_vreg_set_lpm(hba);
7477 goto out;
7478
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007479set_link_active:
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007480 if (hba->clk_scaling.is_allowed)
7481 ufshcd_resume_clkscaling(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007482 ufshcd_vreg_set_hpm(hba);
7483 if (ufshcd_is_link_hibern8(hba) && !ufshcd_uic_hibern8_exit(hba))
7484 ufshcd_set_link_active(hba);
7485 else if (ufshcd_is_link_off(hba))
7486 ufshcd_host_reset_and_restore(hba);
7487set_dev_active:
7488 if (!ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE))
7489 ufshcd_disable_auto_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007490enable_gating:
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007491 if (hba->clk_scaling.is_allowed)
7492 ufshcd_resume_clkscaling(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007493 hba->clk_gating.is_suspended = false;
7494 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007495out:
7496 hba->pm_op_in_progress = 0;
7497 return ret;
7498}
7499
7500/**
7501 * ufshcd_resume - helper function for resume operations
7502 * @hba: per adapter instance
7503 * @pm_op: runtime PM or system PM
7504 *
7505 * This function basically brings the UFS device, UniPro link and controller
7506 * to active state.
7507 *
7508 * Returns 0 for success and non-zero for failure
7509 */
7510static int ufshcd_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
7511{
7512 int ret;
7513 enum uic_link_state old_link_state;
7514
7515 hba->pm_op_in_progress = 1;
7516 old_link_state = hba->uic_link_state;
7517
7518 ufshcd_hba_vreg_set_hpm(hba);
7519 /* Make sure clocks are enabled before accessing controller */
7520 ret = ufshcd_setup_clocks(hba, true);
7521 if (ret)
7522 goto out;
7523
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007524 /* enable the host irq as host controller would be active soon */
7525 ret = ufshcd_enable_irq(hba);
7526 if (ret)
7527 goto disable_irq_and_vops_clks;
7528
7529 ret = ufshcd_vreg_set_hpm(hba);
7530 if (ret)
7531 goto disable_irq_and_vops_clks;
7532
7533 /*
7534 * Call vendor specific resume callback. As these callbacks may access
7535 * vendor specific host controller register space call them when the
7536 * host clocks are ON.
7537 */
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007538 ret = ufshcd_vops_resume(hba, pm_op);
7539 if (ret)
7540 goto disable_vreg;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007541
7542 if (ufshcd_is_link_hibern8(hba)) {
7543 ret = ufshcd_uic_hibern8_exit(hba);
7544 if (!ret)
7545 ufshcd_set_link_active(hba);
7546 else
7547 goto vendor_suspend;
7548 } else if (ufshcd_is_link_off(hba)) {
7549 ret = ufshcd_host_reset_and_restore(hba);
7550 /*
7551 * ufshcd_host_reset_and_restore() should have already
7552 * set the link state as active
7553 */
7554 if (ret || !ufshcd_is_link_active(hba))
7555 goto vendor_suspend;
7556 }
7557
7558 if (!ufshcd_is_ufs_dev_active(hba)) {
7559 ret = ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE);
7560 if (ret)
7561 goto set_old_link_state;
7562 }
7563
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -08007564 if (ufshcd_keep_autobkops_enabled_except_suspend(hba))
7565 ufshcd_enable_auto_bkops(hba);
7566 else
7567 /*
7568 * If BKOPs operations are urgently needed at this moment then
7569 * keep auto-bkops enabled or else disable it.
7570 */
7571 ufshcd_urgent_bkops(hba);
7572
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007573 hba->clk_gating.is_suspended = false;
7574
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08007575 if (hba->clk_scaling.is_allowed)
7576 ufshcd_resume_clkscaling(hba);
Sahitya Tummala856b3482014-09-25 15:32:34 +03007577
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007578 /* Schedule clock gating in case of no access to UFS device yet */
7579 ufshcd_release(hba);
Adrian Hunterad448372018-03-20 15:07:38 +02007580
7581 /* Enable Auto-Hibernate if configured */
7582 ufshcd_auto_hibern8_enable(hba);
7583
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007584 goto out;
7585
7586set_old_link_state:
7587 ufshcd_link_state_transition(hba, old_link_state, 0);
7588vendor_suspend:
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02007589 ufshcd_vops_suspend(hba, pm_op);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007590disable_vreg:
7591 ufshcd_vreg_set_lpm(hba);
7592disable_irq_and_vops_clks:
7593 ufshcd_disable_irq(hba);
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08007594 if (hba->clk_scaling.is_allowed)
7595 ufshcd_suspend_clkscaling(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007596 ufshcd_setup_clocks(hba, false);
7597out:
7598 hba->pm_op_in_progress = 0;
7599 return ret;
7600}
7601
7602/**
7603 * ufshcd_system_suspend - system suspend routine
7604 * @hba: per adapter instance
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007605 *
7606 * Check the description of ufshcd_suspend() function for more details.
7607 *
7608 * Returns 0 for success and non-zero for failure
7609 */
7610int ufshcd_system_suspend(struct ufs_hba *hba)
7611{
7612 int ret = 0;
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007613 ktime_t start = ktime_get();
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007614
7615 if (!hba || !hba->is_powered)
Dolev Raviv233b5942014-10-23 13:25:14 +03007616 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007617
subhashj@codeaurora.org0b257732016-11-23 16:33:08 -08007618 if ((ufs_get_pm_lvl_to_dev_pwr_mode(hba->spm_lvl) ==
7619 hba->curr_dev_pwr_mode) &&
7620 (ufs_get_pm_lvl_to_link_pwr_state(hba->spm_lvl) ==
7621 hba->uic_link_state))
7622 goto out;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007623
subhashj@codeaurora.org0b257732016-11-23 16:33:08 -08007624 if (pm_runtime_suspended(hba->dev)) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007625 /*
7626 * UFS device and/or UFS link low power states during runtime
7627 * suspend seems to be different than what is expected during
7628 * system suspend. Hence runtime resume the devic & link and
7629 * let the system suspend low power states to take effect.
7630 * TODO: If resume takes longer time, we might have optimize
7631 * it in future by not resuming everything if possible.
7632 */
7633 ret = ufshcd_runtime_resume(hba);
7634 if (ret)
7635 goto out;
7636 }
7637
7638 ret = ufshcd_suspend(hba, UFS_SYSTEM_PM);
7639out:
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007640 trace_ufshcd_system_suspend(dev_name(hba->dev), ret,
7641 ktime_to_us(ktime_sub(ktime_get(), start)),
Subhash Jadavani73eba2b2017-01-10 16:48:25 -08007642 hba->curr_dev_pwr_mode, hba->uic_link_state);
Dolev Ravive7850602014-09-25 15:32:36 +03007643 if (!ret)
7644 hba->is_sys_suspended = true;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007645 return ret;
7646}
7647EXPORT_SYMBOL(ufshcd_system_suspend);
7648
7649/**
7650 * ufshcd_system_resume - system resume routine
7651 * @hba: per adapter instance
7652 *
7653 * Returns 0 for success and non-zero for failure
7654 */
7655
7656int ufshcd_system_resume(struct ufs_hba *hba)
7657{
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007658 int ret = 0;
7659 ktime_t start = ktime_get();
7660
Yaniv Gardie3ce73d2016-10-17 17:09:24 -07007661 if (!hba)
7662 return -EINVAL;
7663
7664 if (!hba->is_powered || pm_runtime_suspended(hba->dev))
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007665 /*
7666 * Let the runtime resume take care of resuming
7667 * if runtime suspended.
7668 */
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007669 goto out;
7670 else
7671 ret = ufshcd_resume(hba, UFS_SYSTEM_PM);
7672out:
7673 trace_ufshcd_system_resume(dev_name(hba->dev), ret,
7674 ktime_to_us(ktime_sub(ktime_get(), start)),
Subhash Jadavani73eba2b2017-01-10 16:48:25 -08007675 hba->curr_dev_pwr_mode, hba->uic_link_state);
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007676 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007677}
7678EXPORT_SYMBOL(ufshcd_system_resume);
7679
7680/**
7681 * ufshcd_runtime_suspend - runtime suspend routine
7682 * @hba: per adapter instance
7683 *
7684 * Check the description of ufshcd_suspend() function for more details.
7685 *
7686 * Returns 0 for success and non-zero for failure
7687 */
7688int ufshcd_runtime_suspend(struct ufs_hba *hba)
7689{
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007690 int ret = 0;
7691 ktime_t start = ktime_get();
7692
Yaniv Gardie3ce73d2016-10-17 17:09:24 -07007693 if (!hba)
7694 return -EINVAL;
7695
7696 if (!hba->is_powered)
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007697 goto out;
7698 else
7699 ret = ufshcd_suspend(hba, UFS_RUNTIME_PM);
7700out:
7701 trace_ufshcd_runtime_suspend(dev_name(hba->dev), ret,
7702 ktime_to_us(ktime_sub(ktime_get(), start)),
Subhash Jadavani73eba2b2017-01-10 16:48:25 -08007703 hba->curr_dev_pwr_mode, hba->uic_link_state);
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007704 return ret;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307705}
7706EXPORT_SYMBOL(ufshcd_runtime_suspend);
7707
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007708/**
7709 * ufshcd_runtime_resume - runtime resume routine
7710 * @hba: per adapter instance
7711 *
7712 * This function basically brings the UFS device, UniPro link and controller
7713 * to active state. Following operations are done in this function:
7714 *
7715 * 1. Turn on all the controller related clocks
7716 * 2. Bring the UniPro link out of Hibernate state
7717 * 3. If UFS device is in sleep state, turn ON VCC rail and bring the UFS device
7718 * to active state.
7719 * 4. If auto-bkops is enabled on the device, disable it.
7720 *
7721 * So following would be the possible power state after this function return
7722 * successfully:
7723 * S1: UFS device in Active state with VCC rail ON
7724 * UniPro link in Active state
7725 * All the UFS/UniPro controller clocks are ON
7726 *
7727 * Returns 0 for success and non-zero for failure
7728 */
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307729int ufshcd_runtime_resume(struct ufs_hba *hba)
7730{
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007731 int ret = 0;
7732 ktime_t start = ktime_get();
7733
Yaniv Gardie3ce73d2016-10-17 17:09:24 -07007734 if (!hba)
7735 return -EINVAL;
7736
7737 if (!hba->is_powered)
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007738 goto out;
7739 else
7740 ret = ufshcd_resume(hba, UFS_RUNTIME_PM);
7741out:
7742 trace_ufshcd_runtime_resume(dev_name(hba->dev), ret,
7743 ktime_to_us(ktime_sub(ktime_get(), start)),
Subhash Jadavani73eba2b2017-01-10 16:48:25 -08007744 hba->curr_dev_pwr_mode, hba->uic_link_state);
subhashj@codeaurora.org7ff5ab42016-12-22 18:39:51 -08007745 return ret;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307746}
7747EXPORT_SYMBOL(ufshcd_runtime_resume);
7748
7749int ufshcd_runtime_idle(struct ufs_hba *hba)
7750{
7751 return 0;
7752}
7753EXPORT_SYMBOL(ufshcd_runtime_idle);
7754
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307755/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007756 * ufshcd_shutdown - shutdown routine
7757 * @hba: per adapter instance
7758 *
7759 * This function would power off both UFS device and UFS link.
7760 *
7761 * Returns 0 always to allow force shutdown even in case of errors.
7762 */
7763int ufshcd_shutdown(struct ufs_hba *hba)
7764{
7765 int ret = 0;
7766
7767 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba))
7768 goto out;
7769
7770 if (pm_runtime_suspended(hba->dev)) {
7771 ret = ufshcd_runtime_resume(hba);
7772 if (ret)
7773 goto out;
7774 }
7775
7776 ret = ufshcd_suspend(hba, UFS_SHUTDOWN_PM);
7777out:
7778 if (ret)
7779 dev_err(hba->dev, "%s failed, err %d\n", __func__, ret);
7780 /* allow force shutdown even in case of errors */
7781 return 0;
7782}
7783EXPORT_SYMBOL(ufshcd_shutdown);
7784
7785/**
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307786 * ufshcd_remove - de-allocate SCSI host and host memory space
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307787 * data structure memory
Bart Van Assche8aa29f12018-03-01 15:07:20 -08007788 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307789 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307790void ufshcd_remove(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307791{
Stanislav Nijnikovcbb68132018-02-15 14:14:01 +02007792 ufs_sysfs_remove_nodes(hba->dev);
Akinobu Mitacfdf9c92013-07-30 00:36:03 +05307793 scsi_remove_host(hba->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307794 /* disable interrupts */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05307795 ufshcd_disable_intr(hba, hba->intr_mask);
Yaniv Gardi596585a2016-03-10 17:37:08 +02007796 ufshcd_hba_stop(hba, true);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307797
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007798 ufshcd_exit_clk_gating(hba);
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08007799 if (ufshcd_is_clkscaling_supported(hba))
7800 device_remove_file(hba->dev, &hba->clk_scaling.enable_attr);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007801 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307802}
7803EXPORT_SYMBOL_GPL(ufshcd_remove);
7804
7805/**
Yaniv Gardi47555a52015-10-28 13:15:49 +02007806 * ufshcd_dealloc_host - deallocate Host Bus Adapter (HBA)
7807 * @hba: pointer to Host Bus Adapter (HBA)
7808 */
7809void ufshcd_dealloc_host(struct ufs_hba *hba)
7810{
7811 scsi_host_put(hba->host);
7812}
7813EXPORT_SYMBOL_GPL(ufshcd_dealloc_host);
7814
7815/**
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09007816 * ufshcd_set_dma_mask - Set dma mask based on the controller
7817 * addressing capability
7818 * @hba: per adapter instance
7819 *
7820 * Returns 0 for success, non-zero for failure
7821 */
7822static int ufshcd_set_dma_mask(struct ufs_hba *hba)
7823{
7824 if (hba->capabilities & MASK_64_ADDRESSING_SUPPORT) {
7825 if (!dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(64)))
7826 return 0;
7827 }
7828 return dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(32));
7829}
7830
7831/**
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007832 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307833 * @dev: pointer to device handle
7834 * @hba_handle: driver private handle
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307835 * Returns 0 on success, non-zero value on failure
7836 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007837int ufshcd_alloc_host(struct device *dev, struct ufs_hba **hba_handle)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307838{
7839 struct Scsi_Host *host;
7840 struct ufs_hba *hba;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007841 int err = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307842
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307843 if (!dev) {
7844 dev_err(dev,
7845 "Invalid memory reference for dev is NULL\n");
7846 err = -ENODEV;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307847 goto out_error;
7848 }
7849
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307850 host = scsi_host_alloc(&ufshcd_driver_template,
7851 sizeof(struct ufs_hba));
7852 if (!host) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307853 dev_err(dev, "scsi_host_alloc failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307854 err = -ENOMEM;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307855 goto out_error;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307856 }
7857 hba = shost_priv(host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307858 hba->host = host;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307859 hba->dev = dev;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007860 *hba_handle = hba;
7861
Szymon Mielczarek566ec9a2017-06-05 11:36:54 +03007862 INIT_LIST_HEAD(&hba->clk_list_head);
7863
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007864out_error:
7865 return err;
7866}
7867EXPORT_SYMBOL(ufshcd_alloc_host);
7868
7869/**
7870 * ufshcd_init - Driver initialization routine
7871 * @hba: per-adapter instance
7872 * @mmio_base: base register address
7873 * @irq: Interrupt line of device
7874 * Returns 0 on success, non-zero value on failure
7875 */
7876int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
7877{
7878 int err;
7879 struct Scsi_Host *host = hba->host;
7880 struct device *dev = hba->dev;
7881
7882 if (!mmio_base) {
7883 dev_err(hba->dev,
7884 "Invalid memory reference for mmio_base is NULL\n");
7885 err = -ENODEV;
7886 goto out_error;
7887 }
7888
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307889 hba->mmio_base = mmio_base;
7890 hba->irq = irq;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307891
Potomski, MichalXa4b0e8a2017-02-23 09:05:30 +00007892 /* Set descriptor lengths to specification defaults */
7893 ufshcd_def_desc_sizes(hba);
7894
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03007895 err = ufshcd_hba_init(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03007896 if (err)
7897 goto out_error;
7898
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307899 /* Read capabilities registers */
7900 ufshcd_hba_capabilities(hba);
7901
7902 /* Get UFS version supported by the controller */
7903 hba->ufs_version = ufshcd_get_ufs_version(hba);
7904
Yaniv Gardic01848c2016-12-05 19:25:02 -08007905 if ((hba->ufs_version != UFSHCI_VERSION_10) &&
7906 (hba->ufs_version != UFSHCI_VERSION_11) &&
7907 (hba->ufs_version != UFSHCI_VERSION_20) &&
7908 (hba->ufs_version != UFSHCI_VERSION_21))
7909 dev_err(hba->dev, "invalid UFS version 0x%x\n",
7910 hba->ufs_version);
7911
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05307912 /* Get Interrupt bit mask per version */
7913 hba->intr_mask = ufshcd_get_intr_mask(hba);
7914
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09007915 err = ufshcd_set_dma_mask(hba);
7916 if (err) {
7917 dev_err(hba->dev, "set dma mask failed\n");
7918 goto out_disable;
7919 }
7920
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307921 /* Allocate memory for host memory space */
7922 err = ufshcd_memory_alloc(hba);
7923 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307924 dev_err(hba->dev, "Memory allocation failed\n");
7925 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307926 }
7927
7928 /* Configure LRB */
7929 ufshcd_host_memory_configure(hba);
7930
7931 host->can_queue = hba->nutrs;
7932 host->cmd_per_lun = hba->nutrs;
7933 host->max_id = UFSHCD_MAX_ID;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03007934 host->max_lun = UFS_MAX_LUNS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307935 host->max_channel = UFSHCD_MAX_CHANNEL;
7936 host->unique_id = host->host_no;
7937 host->max_cmd_len = MAX_CDB_SIZE;
7938
Dolev Raviv7eb584d2014-09-25 15:32:31 +03007939 hba->max_pwr_info.is_valid = false;
7940
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307941 /* Initailize wait queue for task management */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05307942 init_waitqueue_head(&hba->tm_wq);
7943 init_waitqueue_head(&hba->tm_tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307944
7945 /* Initialize work queues */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05307946 INIT_WORK(&hba->eh_work, ufshcd_err_handler);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05307947 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307948
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05307949 /* Initialize UIC command mutex */
7950 mutex_init(&hba->uic_cmd_mutex);
7951
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05307952 /* Initialize mutex for device management commands */
7953 mutex_init(&hba->dev_cmd.lock);
7954
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -08007955 init_rwsem(&hba->clk_scaling_lock);
7956
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05307957 /* Initialize device management tag acquire wait queue */
7958 init_waitqueue_head(&hba->dev_cmd.tag_wq);
7959
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007960 ufshcd_init_clk_gating(hba);
Yaniv Gardi199ef132016-03-10 17:37:06 +02007961
7962 /*
7963 * In order to avoid any spurious interrupt immediately after
7964 * registering UFS controller interrupt handler, clear any pending UFS
7965 * interrupt status and disable all the UFS interrupts.
7966 */
7967 ufshcd_writel(hba, ufshcd_readl(hba, REG_INTERRUPT_STATUS),
7968 REG_INTERRUPT_STATUS);
7969 ufshcd_writel(hba, 0, REG_INTERRUPT_ENABLE);
7970 /*
7971 * Make sure that UFS interrupts are disabled and any pending interrupt
7972 * status is cleared before registering UFS interrupt handler.
7973 */
7974 mb();
7975
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307976 /* IRQ registration */
Seungwon Jeon2953f852013-06-27 13:31:54 +09007977 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307978 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307979 dev_err(hba->dev, "request irq failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007980 goto exit_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03007981 } else {
7982 hba->is_irq_enabled = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307983 }
7984
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307985 err = scsi_add_host(host, hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307986 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307987 dev_err(hba->dev, "scsi_add_host failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03007988 goto exit_gating;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307989 }
7990
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05307991 /* Host controller enable */
7992 err = ufshcd_hba_enable(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307993 if (err) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05307994 dev_err(hba->dev, "Host controller enable failed\n");
Dolev Raviv66cc8202016-12-22 18:39:42 -08007995 ufshcd_print_host_regs(hba);
Gilad Broner6ba65582017-02-03 16:57:28 -08007996 ufshcd_print_host_state(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307997 goto out_remove_scsi_host;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05307998 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05307999
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08008000 if (ufshcd_is_clkscaling_supported(hba)) {
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08008001 char wq_name[sizeof("ufs_clkscaling_00")];
8002
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08008003 INIT_WORK(&hba->clk_scaling.suspend_work,
8004 ufshcd_clk_scaling_suspend_work);
8005 INIT_WORK(&hba->clk_scaling.resume_work,
8006 ufshcd_clk_scaling_resume_work);
8007
Tomohiro Kusumid985c6ea2017-03-28 16:49:29 +03008008 snprintf(wq_name, sizeof(wq_name), "ufs_clkscaling_%d",
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -08008009 host->host_no);
8010 hba->clk_scaling.workq = create_singlethread_workqueue(wq_name);
8011
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -08008012 ufshcd_clkscaling_init_sysfs(hba);
Sahitya Tummala856b3482014-09-25 15:32:34 +03008013 }
8014
subhashj@codeaurora.org0c8f7582016-12-22 18:41:11 -08008015 /*
8016 * Set the default power management level for runtime and system PM.
8017 * Default power saving mode is to keep UFS link in Hibern8 state
8018 * and UFS device in sleep state.
8019 */
8020 hba->rpm_lvl = ufs_get_desired_pm_lvl_for_dev_link_state(
8021 UFS_SLEEP_PWR_MODE,
8022 UIC_LINK_HIBERN8_STATE);
8023 hba->spm_lvl = ufs_get_desired_pm_lvl_for_dev_link_state(
8024 UFS_SLEEP_PWR_MODE,
8025 UIC_LINK_HIBERN8_STATE);
8026
Adrian Hunterad448372018-03-20 15:07:38 +02008027 /* Set the default auto-hiberate idle timer value to 150 ms */
8028 if (hba->capabilities & MASK_AUTO_HIBERN8_SUPPORT) {
8029 hba->ahit = FIELD_PREP(UFSHCI_AHIBERN8_TIMER_MASK, 150) |
8030 FIELD_PREP(UFSHCI_AHIBERN8_SCALE_MASK, 3);
8031 }
8032
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05308033 /* Hold auto suspend until async scan completes */
8034 pm_runtime_get_sync(dev);
8035
Subhash Jadavani57d104c2014-09-25 15:32:30 +03008036 /*
subhashj@codeaurora.org7caf4892016-11-23 16:32:20 -08008037 * We are assuming that device wasn't put in sleep/power-down
8038 * state exclusively during the boot stage before kernel.
8039 * This assumption helps avoid doing link startup twice during
8040 * ufshcd_probe_hba().
Subhash Jadavani57d104c2014-09-25 15:32:30 +03008041 */
subhashj@codeaurora.org7caf4892016-11-23 16:32:20 -08008042 ufshcd_set_ufs_dev_active(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03008043
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05308044 async_schedule(ufshcd_async_scan, hba);
Stanislav Nijnikovcbb68132018-02-15 14:14:01 +02008045 ufs_sysfs_add_nodes(hba->dev);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05308046
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05308047 return 0;
8048
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05308049out_remove_scsi_host:
8050 scsi_remove_host(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03008051exit_gating:
8052 ufshcd_exit_clk_gating(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05308053out_disable:
Subhash Jadavani57d104c2014-09-25 15:32:30 +03008054 hba->is_irq_enabled = false;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03008055 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05308056out_error:
8057 return err;
8058}
8059EXPORT_SYMBOL_GPL(ufshcd_init);
8060
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05308061MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
8062MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
Vinayak Holikattie0eca632013-02-25 21:44:33 +05308063MODULE_DESCRIPTION("Generic UFS host controller driver Core");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05308064MODULE_LICENSE("GPL");
8065MODULE_VERSION(UFSHCD_DRIVER_VERSION);