blob: 66f0eb80b93ea105c417e0f16a92146c7da62037 [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>
Vinayak Holikattie0eca632013-02-25 21:44:33 +053044#include "ufshcd.h"
Yaniv Gardic58ab7a2016-03-10 17:37:10 +020045#include "ufs_quirks.h"
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +053046#include "unipro.h"
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053047
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053048#define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
49 UTP_TASK_REQ_COMPL |\
50 UFSHCD_ERROR_MASK)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053051/* UIC command timeout, unit: ms */
52#define UIC_CMD_TIMEOUT 500
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053053
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053054/* NOP OUT retries waiting for NOP IN response */
55#define NOP_OUT_RETRIES 10
56/* Timeout after 30 msecs if NOP OUT hangs without response */
57#define NOP_OUT_TIMEOUT 30 /* msecs */
58
Dolev Raviv68078d52013-07-30 00:35:58 +053059/* Query request retries */
60#define QUERY_REQ_RETRIES 10
61/* Query request timeout */
62#define QUERY_REQ_TIMEOUT 30 /* msec */
Yaniv Gardie5ad4062016-02-01 15:02:41 +020063/*
64 * Query request timeout for fDeviceInit flag
65 * fDeviceInit query response time for some devices is too large that default
66 * QUERY_REQ_TIMEOUT may not be enough for such devices.
67 */
68#define QUERY_FDEVICEINIT_REQ_TIMEOUT 600 /* msec */
Dolev Raviv68078d52013-07-30 00:35:58 +053069
Sujit Reddy Thummae2933132014-05-26 10:59:12 +053070/* Task management command timeout */
71#define TM_CMD_TIMEOUT 100 /* msecs */
72
Yaniv Gardi64238fb2016-02-01 15:02:43 +020073/* maximum number of retries for a general UIC command */
74#define UFS_UIC_COMMAND_RETRIES 3
75
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +030076/* maximum number of link-startup retries */
77#define DME_LINKSTARTUP_RETRIES 3
78
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +020079/* Maximum retries for Hibern8 enter */
80#define UIC_HIBERN8_ENTER_RETRIES 3
81
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +030082/* maximum number of reset retries before giving up */
83#define MAX_HOST_RESET_RETRIES 5
84
Dolev Raviv68078d52013-07-30 00:35:58 +053085/* Expose the flag value from utp_upiu_query.value */
86#define MASK_QUERY_UPIU_FLAG_LOC 0xFF
87
Seungwon Jeon7d568652013-08-31 21:40:20 +053088/* Interrupt aggregation default timeout, unit: 40us */
89#define INT_AGGR_DEF_TO 0x02
90
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +030091#define ufshcd_toggle_vreg(_dev, _vreg, _on) \
92 ({ \
93 int _ret; \
94 if (_on) \
95 _ret = ufshcd_enable_vreg(_dev, _vreg); \
96 else \
97 _ret = ufshcd_disable_vreg(_dev, _vreg); \
98 _ret; \
99 })
100
Subhash Jadavanida461ce2014-09-25 15:32:25 +0300101static u32 ufs_query_desc_max_size[] = {
102 QUERY_DESC_DEVICE_MAX_SIZE,
103 QUERY_DESC_CONFIGURAION_MAX_SIZE,
104 QUERY_DESC_UNIT_MAX_SIZE,
105 QUERY_DESC_RFU_MAX_SIZE,
106 QUERY_DESC_INTERCONNECT_MAX_SIZE,
107 QUERY_DESC_STRING_MAX_SIZE,
108 QUERY_DESC_RFU_MAX_SIZE,
Tomas Winkler1ce21792016-02-09 10:25:40 +0200109 QUERY_DESC_GEOMETRY_MAX_SIZE,
Subhash Jadavanida461ce2014-09-25 15:32:25 +0300110 QUERY_DESC_POWER_MAX_SIZE,
111 QUERY_DESC_RFU_MAX_SIZE,
112};
113
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530114enum {
115 UFSHCD_MAX_CHANNEL = 0,
116 UFSHCD_MAX_ID = 1,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530117 UFSHCD_CMD_PER_LUN = 32,
118 UFSHCD_CAN_QUEUE = 32,
119};
120
121/* UFSHCD states */
122enum {
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530123 UFSHCD_STATE_RESET,
124 UFSHCD_STATE_ERROR,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530125 UFSHCD_STATE_OPERATIONAL,
126};
127
128/* UFSHCD error handling flags */
129enum {
130 UFSHCD_EH_IN_PROGRESS = (1 << 0),
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530131};
132
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530133/* UFSHCD UIC layer error flags */
134enum {
135 UFSHCD_UIC_DL_PA_INIT_ERROR = (1 << 0), /* Data link layer error */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +0200136 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR = (1 << 1), /* Data link layer error */
137 UFSHCD_UIC_DL_TCx_REPLAY_ERROR = (1 << 2), /* Data link layer error */
138 UFSHCD_UIC_NL_ERROR = (1 << 3), /* Network layer error */
139 UFSHCD_UIC_TL_ERROR = (1 << 4), /* Transport Layer error */
140 UFSHCD_UIC_DME_ERROR = (1 << 5), /* DME error */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530141};
142
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530143/* Interrupt configuration options */
144enum {
145 UFSHCD_INT_DISABLE,
146 UFSHCD_INT_ENABLE,
147 UFSHCD_INT_CLEAR,
148};
149
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530150#define ufshcd_set_eh_in_progress(h) \
151 (h->eh_flags |= UFSHCD_EH_IN_PROGRESS)
152#define ufshcd_eh_in_progress(h) \
153 (h->eh_flags & UFSHCD_EH_IN_PROGRESS)
154#define ufshcd_clear_eh_in_progress(h) \
155 (h->eh_flags &= ~UFSHCD_EH_IN_PROGRESS)
156
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300157#define ufshcd_set_ufs_dev_active(h) \
158 ((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
159#define ufshcd_set_ufs_dev_sleep(h) \
160 ((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
161#define ufshcd_set_ufs_dev_poweroff(h) \
162 ((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
163#define ufshcd_is_ufs_dev_active(h) \
164 ((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
165#define ufshcd_is_ufs_dev_sleep(h) \
166 ((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
167#define ufshcd_is_ufs_dev_poweroff(h) \
168 ((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
169
170static struct ufs_pm_lvl_states ufs_pm_lvl_states[] = {
171 {UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE},
172 {UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE},
173 {UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE},
174 {UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE},
175 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE},
176 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE},
177};
178
179static inline enum ufs_dev_pwr_mode
180ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl)
181{
182 return ufs_pm_lvl_states[lvl].dev_state;
183}
184
185static inline enum uic_link_state
186ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl)
187{
188 return ufs_pm_lvl_states[lvl].link_state;
189}
190
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530191static void ufshcd_tmc_handler(struct ufs_hba *hba);
192static void ufshcd_async_scan(void *data, async_cookie_t cookie);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530193static int ufshcd_reset_and_restore(struct ufs_hba *hba);
194static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +0300195static void ufshcd_hba_exit(struct ufs_hba *hba);
196static int ufshcd_probe_hba(struct ufs_hba *hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300197static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
198 bool skip_ref_clk);
199static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on);
Yaniv Gardi60f01872016-03-10 17:37:11 +0200200static int ufshcd_set_vccq_rail_unused(struct ufs_hba *hba, bool unused);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300201static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
202static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
Yaniv Gardicad2e032015-03-31 17:37:14 +0300203static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300204static int ufshcd_host_reset_and_restore(struct ufs_hba *hba);
205static irqreturn_t ufshcd_intr(int irq, void *__hba);
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300206static int ufshcd_config_pwr_mode(struct ufs_hba *hba,
207 struct ufs_pa_layer_attr *desired_pwr_mode);
Yaniv Gardi874237f2015-05-17 18:55:03 +0300208static int ufshcd_change_power_mode(struct ufs_hba *hba,
209 struct ufs_pa_layer_attr *pwr_mode);
Yaniv Gardi14497322016-02-01 15:02:39 +0200210static inline bool ufshcd_valid_tag(struct ufs_hba *hba, int tag)
211{
212 return tag >= 0 && tag < hba->nutrs;
213}
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300214
215static inline int ufshcd_enable_irq(struct ufs_hba *hba)
216{
217 int ret = 0;
218
219 if (!hba->is_irq_enabled) {
220 ret = request_irq(hba->irq, ufshcd_intr, IRQF_SHARED, UFSHCD,
221 hba);
222 if (ret)
223 dev_err(hba->dev, "%s: request_irq failed, ret=%d\n",
224 __func__, ret);
225 hba->is_irq_enabled = true;
226 }
227
228 return ret;
229}
230
231static inline void ufshcd_disable_irq(struct ufs_hba *hba)
232{
233 if (hba->is_irq_enabled) {
234 free_irq(hba->irq, hba);
235 hba->is_irq_enabled = false;
236 }
237}
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530238
Yaniv Gardib573d482016-03-10 17:37:09 +0200239/* replace non-printable or non-ASCII characters with spaces */
240static inline void ufshcd_remove_non_printable(char *val)
241{
242 if (!val)
243 return;
244
245 if (*val < 0x20 || *val > 0x7e)
246 *val = ' ';
247}
248
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530249/*
250 * ufshcd_wait_for_register - wait for register value to change
251 * @hba - per-adapter interface
252 * @reg - mmio register offset
253 * @mask - mask to apply to read register value
254 * @val - wait condition
255 * @interval_us - polling interval in microsecs
256 * @timeout_ms - timeout in millisecs
Yaniv Gardi596585a2016-03-10 17:37:08 +0200257 * @can_sleep - perform sleep or just spin
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530258 *
259 * Returns -ETIMEDOUT on error, zero on success
260 */
Yaniv Gardi596585a2016-03-10 17:37:08 +0200261int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
262 u32 val, unsigned long interval_us,
263 unsigned long timeout_ms, bool can_sleep)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530264{
265 int err = 0;
266 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
267
268 /* ignore bits that we don't intend to wait on */
269 val = val & mask;
270
271 while ((ufshcd_readl(hba, reg) & mask) != val) {
Yaniv Gardi596585a2016-03-10 17:37:08 +0200272 if (can_sleep)
273 usleep_range(interval_us, interval_us + 50);
274 else
275 udelay(interval_us);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530276 if (time_after(jiffies, timeout)) {
277 if ((ufshcd_readl(hba, reg) & mask) != val)
278 err = -ETIMEDOUT;
279 break;
280 }
281 }
282
283 return err;
284}
285
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530286/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530287 * ufshcd_get_intr_mask - Get the interrupt bit mask
288 * @hba - Pointer to adapter instance
289 *
290 * Returns interrupt bit mask per version
291 */
292static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
293{
294 if (hba->ufs_version == UFSHCI_VERSION_10)
295 return INTERRUPT_MASK_ALL_VER_10;
296 else
297 return INTERRUPT_MASK_ALL_VER_11;
298}
299
300/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530301 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
302 * @hba - Pointer to adapter instance
303 *
304 * Returns UFSHCI version supported by the controller
305 */
306static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
307{
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200308 if (hba->quirks & UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION)
309 return ufshcd_vops_get_ufs_hci_version(hba);
Yaniv Gardi9949e702015-05-17 18:55:05 +0300310
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530311 return ufshcd_readl(hba, REG_UFS_VERSION);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530312}
313
314/**
315 * ufshcd_is_device_present - Check if any device connected to
316 * the host controller
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300317 * @hba: pointer to adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530318 *
Venkatraman S73ec5132012-07-10 19:39:23 +0530319 * Returns 1 if device present, 0 if no device detected
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530320 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300321static inline int ufshcd_is_device_present(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530322{
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300323 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) &
324 DEVICE_PRESENT) ? 1 : 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530325}
326
327/**
328 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
329 * @lrb: pointer to local command reference block
330 *
331 * This function is used to get the OCS field from UTRD
332 * Returns the OCS field in the UTRD
333 */
334static inline int ufshcd_get_tr_ocs(struct ufshcd_lrb *lrbp)
335{
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +0530336 return le32_to_cpu(lrbp->utr_descriptor_ptr->header.dword_2) & MASK_OCS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530337}
338
339/**
340 * ufshcd_get_tmr_ocs - Get the UTMRD Overall Command Status
341 * @task_req_descp: pointer to utp_task_req_desc structure
342 *
343 * This function is used to get the OCS field from UTMRD
344 * Returns the OCS field in the UTMRD
345 */
346static inline int
347ufshcd_get_tmr_ocs(struct utp_task_req_desc *task_req_descp)
348{
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +0530349 return le32_to_cpu(task_req_descp->header.dword_2) & MASK_OCS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530350}
351
352/**
353 * ufshcd_get_tm_free_slot - get a free slot for task management request
354 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530355 * @free_slot: pointer to variable with available slot value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530356 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530357 * Get a free tag and lock it until ufshcd_put_tm_slot() is called.
358 * Returns 0 if free slot is not available, else return 1 with tag value
359 * in @free_slot.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530360 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530361static bool ufshcd_get_tm_free_slot(struct ufs_hba *hba, int *free_slot)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530362{
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530363 int tag;
364 bool ret = false;
365
366 if (!free_slot)
367 goto out;
368
369 do {
370 tag = find_first_zero_bit(&hba->tm_slots_in_use, hba->nutmrs);
371 if (tag >= hba->nutmrs)
372 goto out;
373 } while (test_and_set_bit_lock(tag, &hba->tm_slots_in_use));
374
375 *free_slot = tag;
376 ret = true;
377out:
378 return ret;
379}
380
381static inline void ufshcd_put_tm_slot(struct ufs_hba *hba, int slot)
382{
383 clear_bit_unlock(slot, &hba->tm_slots_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530384}
385
386/**
387 * ufshcd_utrl_clear - Clear a bit in UTRLCLR register
388 * @hba: per adapter instance
389 * @pos: position of the bit to be cleared
390 */
391static inline void ufshcd_utrl_clear(struct ufs_hba *hba, u32 pos)
392{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530393 ufshcd_writel(hba, ~(1 << pos), REG_UTP_TRANSFER_REQ_LIST_CLEAR);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530394}
395
396/**
Yaniv Gardia48353f2016-02-01 15:02:40 +0200397 * ufshcd_outstanding_req_clear - Clear a bit in outstanding request field
398 * @hba: per adapter instance
399 * @tag: position of the bit to be cleared
400 */
401static inline void ufshcd_outstanding_req_clear(struct ufs_hba *hba, int tag)
402{
403 __clear_bit(tag, &hba->outstanding_reqs);
404}
405
406/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530407 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
408 * @reg: Register value of host controller status
409 *
410 * Returns integer, 0 on Success and positive value if failed
411 */
412static inline int ufshcd_get_lists_status(u32 reg)
413{
414 /*
415 * The mask 0xFF is for the following HCS register bits
416 * Bit Description
417 * 0 Device Present
418 * 1 UTRLRDY
419 * 2 UTMRLRDY
420 * 3 UCRDY
Yaniv Gardi897efe62016-02-01 15:02:48 +0200421 * 4-7 reserved
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530422 */
Yaniv Gardi897efe62016-02-01 15:02:48 +0200423 return ((reg & 0xFF) >> 1) ^ 0x07;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530424}
425
426/**
427 * ufshcd_get_uic_cmd_result - Get the UIC command result
428 * @hba: Pointer to adapter instance
429 *
430 * This function gets the result of UIC command completion
431 * Returns 0 on success, non zero value on error
432 */
433static inline int ufshcd_get_uic_cmd_result(struct ufs_hba *hba)
434{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530435 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2) &
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530436 MASK_UIC_COMMAND_RESULT;
437}
438
439/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +0530440 * ufshcd_get_dme_attr_val - Get the value of attribute returned by UIC command
441 * @hba: Pointer to adapter instance
442 *
443 * This function gets UIC command argument3
444 * Returns 0 on success, non zero value on error
445 */
446static inline u32 ufshcd_get_dme_attr_val(struct ufs_hba *hba)
447{
448 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
449}
450
451/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530452 * ufshcd_get_req_rsp - returns the TR response transaction type
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530453 * @ucd_rsp_ptr: pointer to response UPIU
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530454 */
455static inline int
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530456ufshcd_get_req_rsp(struct utp_upiu_rsp *ucd_rsp_ptr)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530457{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530458 return be32_to_cpu(ucd_rsp_ptr->header.dword_0) >> 24;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530459}
460
461/**
462 * ufshcd_get_rsp_upiu_result - Get the result from response UPIU
463 * @ucd_rsp_ptr: pointer to response UPIU
464 *
465 * This function gets the response status and scsi_status from response UPIU
466 * Returns the response result code.
467 */
468static inline int
469ufshcd_get_rsp_upiu_result(struct utp_upiu_rsp *ucd_rsp_ptr)
470{
471 return be32_to_cpu(ucd_rsp_ptr->header.dword_1) & MASK_RSP_UPIU_RESULT;
472}
473
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530474/*
475 * ufshcd_get_rsp_upiu_data_seg_len - Get the data segment length
476 * from response UPIU
477 * @ucd_rsp_ptr: pointer to response UPIU
478 *
479 * Return the data segment length.
480 */
481static inline unsigned int
482ufshcd_get_rsp_upiu_data_seg_len(struct utp_upiu_rsp *ucd_rsp_ptr)
483{
484 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
485 MASK_RSP_UPIU_DATA_SEG_LEN;
486}
487
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530488/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530489 * ufshcd_is_exception_event - Check if the device raised an exception event
490 * @ucd_rsp_ptr: pointer to response UPIU
491 *
492 * The function checks if the device raised an exception event indicated in
493 * the Device Information field of response UPIU.
494 *
495 * Returns true if exception is raised, false otherwise.
496 */
497static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp *ucd_rsp_ptr)
498{
499 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
500 MASK_RSP_EXCEPTION_EVENT ? true : false;
501}
502
503/**
Seungwon Jeon7d568652013-08-31 21:40:20 +0530504 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530505 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530506 */
507static inline void
Seungwon Jeon7d568652013-08-31 21:40:20 +0530508ufshcd_reset_intr_aggr(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530509{
Seungwon Jeon7d568652013-08-31 21:40:20 +0530510 ufshcd_writel(hba, INT_AGGR_ENABLE |
511 INT_AGGR_COUNTER_AND_TIMER_RESET,
512 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
513}
514
515/**
516 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
517 * @hba: per adapter instance
518 * @cnt: Interrupt aggregation counter threshold
519 * @tmout: Interrupt aggregation timeout value
520 */
521static inline void
522ufshcd_config_intr_aggr(struct ufs_hba *hba, u8 cnt, u8 tmout)
523{
524 ufshcd_writel(hba, INT_AGGR_ENABLE | INT_AGGR_PARAM_WRITE |
525 INT_AGGR_COUNTER_THLD_VAL(cnt) |
526 INT_AGGR_TIMEOUT_VAL(tmout),
527 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530528}
529
530/**
Yaniv Gardib8521902015-05-17 18:54:57 +0300531 * ufshcd_disable_intr_aggr - Disables interrupt aggregation.
532 * @hba: per adapter instance
533 */
534static inline void ufshcd_disable_intr_aggr(struct ufs_hba *hba)
535{
536 ufshcd_writel(hba, 0, REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
537}
538
539/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530540 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
541 * When run-stop registers are set to 1, it indicates the
542 * host controller that it can process the requests
543 * @hba: per adapter instance
544 */
545static void ufshcd_enable_run_stop_reg(struct ufs_hba *hba)
546{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530547 ufshcd_writel(hba, UTP_TASK_REQ_LIST_RUN_STOP_BIT,
548 REG_UTP_TASK_REQ_LIST_RUN_STOP);
549 ufshcd_writel(hba, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT,
550 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530551}
552
553/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530554 * ufshcd_hba_start - Start controller initialization sequence
555 * @hba: per adapter instance
556 */
557static inline void ufshcd_hba_start(struct ufs_hba *hba)
558{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530559 ufshcd_writel(hba, CONTROLLER_ENABLE, REG_CONTROLLER_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530560}
561
562/**
563 * ufshcd_is_hba_active - Get controller state
564 * @hba: per adapter instance
565 *
566 * Returns zero if controller is active, 1 otherwise
567 */
568static inline int ufshcd_is_hba_active(struct ufs_hba *hba)
569{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530570 return (ufshcd_readl(hba, REG_CONTROLLER_ENABLE) & 0x1) ? 0 : 1;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530571}
572
Yaniv Gardi37113102016-03-10 17:37:16 +0200573u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba)
574{
575 /* HCI version 1.0 and 1.1 supports UniPro 1.41 */
576 if ((hba->ufs_version == UFSHCI_VERSION_10) ||
577 (hba->ufs_version == UFSHCI_VERSION_11))
578 return UFS_UNIPRO_VER_1_41;
579 else
580 return UFS_UNIPRO_VER_1_6;
581}
582EXPORT_SYMBOL(ufshcd_get_local_unipro_ver);
583
584static bool ufshcd_is_unipro_pa_params_tuning_req(struct ufs_hba *hba)
585{
586 /*
587 * If both host and device support UniPro ver1.6 or later, PA layer
588 * parameters tuning happens during link startup itself.
589 *
590 * We can manually tune PA layer parameters if either host or device
591 * doesn't support UniPro ver 1.6 or later. But to keep manual tuning
592 * logic simple, we will only do manual tuning if local unipro version
593 * doesn't support ver1.6 or later.
594 */
595 if (ufshcd_get_local_unipro_ver(hba) < UFS_UNIPRO_VER_1_6)
596 return true;
597 else
598 return false;
599}
600
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300601static void ufshcd_ungate_work(struct work_struct *work)
602{
603 int ret;
604 unsigned long flags;
605 struct ufs_hba *hba = container_of(work, struct ufs_hba,
606 clk_gating.ungate_work);
607
608 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
609
610 spin_lock_irqsave(hba->host->host_lock, flags);
611 if (hba->clk_gating.state == CLKS_ON) {
612 spin_unlock_irqrestore(hba->host->host_lock, flags);
613 goto unblock_reqs;
614 }
615
616 spin_unlock_irqrestore(hba->host->host_lock, flags);
617 ufshcd_setup_clocks(hba, true);
618
619 /* Exit from hibern8 */
620 if (ufshcd_can_hibern8_during_gating(hba)) {
621 /* Prevent gating in this path */
622 hba->clk_gating.is_suspended = true;
623 if (ufshcd_is_link_hibern8(hba)) {
624 ret = ufshcd_uic_hibern8_exit(hba);
625 if (ret)
626 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
627 __func__, ret);
628 else
629 ufshcd_set_link_active(hba);
630 }
631 hba->clk_gating.is_suspended = false;
632 }
633unblock_reqs:
Sahitya Tummala856b3482014-09-25 15:32:34 +0300634 if (ufshcd_is_clkscaling_enabled(hba))
635 devfreq_resume_device(hba->devfreq);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300636 scsi_unblock_requests(hba->host);
637}
638
639/**
640 * ufshcd_hold - Enable clocks that were gated earlier due to ufshcd_release.
641 * Also, exit from hibern8 mode and set the link as active.
642 * @hba: per adapter instance
643 * @async: This indicates whether caller should ungate clocks asynchronously.
644 */
645int ufshcd_hold(struct ufs_hba *hba, bool async)
646{
647 int rc = 0;
648 unsigned long flags;
649
650 if (!ufshcd_is_clkgating_allowed(hba))
651 goto out;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300652 spin_lock_irqsave(hba->host->host_lock, flags);
653 hba->clk_gating.active_reqs++;
654
Yaniv Gardi53c12d02016-02-01 15:02:45 +0200655 if (ufshcd_eh_in_progress(hba)) {
656 spin_unlock_irqrestore(hba->host->host_lock, flags);
657 return 0;
658 }
659
Sahitya Tummala856b3482014-09-25 15:32:34 +0300660start:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300661 switch (hba->clk_gating.state) {
662 case CLKS_ON:
663 break;
664 case REQ_CLKS_OFF:
665 if (cancel_delayed_work(&hba->clk_gating.gate_work)) {
666 hba->clk_gating.state = CLKS_ON;
667 break;
668 }
669 /*
670 * If we here, it means gating work is either done or
671 * currently running. Hence, fall through to cancel gating
672 * work and to enable clocks.
673 */
674 case CLKS_OFF:
675 scsi_block_requests(hba->host);
676 hba->clk_gating.state = REQ_CLKS_ON;
677 schedule_work(&hba->clk_gating.ungate_work);
678 /*
679 * fall through to check if we should wait for this
680 * work to be done or not.
681 */
682 case REQ_CLKS_ON:
683 if (async) {
684 rc = -EAGAIN;
685 hba->clk_gating.active_reqs--;
686 break;
687 }
688
689 spin_unlock_irqrestore(hba->host->host_lock, flags);
690 flush_work(&hba->clk_gating.ungate_work);
691 /* Make sure state is CLKS_ON before returning */
Sahitya Tummala856b3482014-09-25 15:32:34 +0300692 spin_lock_irqsave(hba->host->host_lock, flags);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300693 goto start;
694 default:
695 dev_err(hba->dev, "%s: clk gating is in invalid state %d\n",
696 __func__, hba->clk_gating.state);
697 break;
698 }
699 spin_unlock_irqrestore(hba->host->host_lock, flags);
700out:
701 return rc;
702}
Yaniv Gardi6e3fd442015-10-28 13:15:50 +0200703EXPORT_SYMBOL_GPL(ufshcd_hold);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300704
705static void ufshcd_gate_work(struct work_struct *work)
706{
707 struct ufs_hba *hba = container_of(work, struct ufs_hba,
708 clk_gating.gate_work.work);
709 unsigned long flags;
710
711 spin_lock_irqsave(hba->host->host_lock, flags);
712 if (hba->clk_gating.is_suspended) {
713 hba->clk_gating.state = CLKS_ON;
714 goto rel_lock;
715 }
716
717 if (hba->clk_gating.active_reqs
718 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
719 || hba->lrb_in_use || hba->outstanding_tasks
720 || hba->active_uic_cmd || hba->uic_async_done)
721 goto rel_lock;
722
723 spin_unlock_irqrestore(hba->host->host_lock, flags);
724
725 /* put the link into hibern8 mode before turning off clocks */
726 if (ufshcd_can_hibern8_during_gating(hba)) {
727 if (ufshcd_uic_hibern8_enter(hba)) {
728 hba->clk_gating.state = CLKS_ON;
729 goto out;
730 }
731 ufshcd_set_link_hibern8(hba);
732 }
733
Sahitya Tummala856b3482014-09-25 15:32:34 +0300734 if (ufshcd_is_clkscaling_enabled(hba)) {
735 devfreq_suspend_device(hba->devfreq);
736 hba->clk_scaling.window_start_t = 0;
737 }
738
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300739 if (!ufshcd_is_link_active(hba))
740 ufshcd_setup_clocks(hba, false);
741 else
742 /* If link is active, device ref_clk can't be switched off */
743 __ufshcd_setup_clocks(hba, false, true);
744
745 /*
746 * In case you are here to cancel this work the gating state
747 * would be marked as REQ_CLKS_ON. In this case keep the state
748 * as REQ_CLKS_ON which would anyway imply that clocks are off
749 * and a request to turn them on is pending. By doing this way,
750 * we keep the state machine in tact and this would ultimately
751 * prevent from doing cancel work multiple times when there are
752 * new requests arriving before the current cancel work is done.
753 */
754 spin_lock_irqsave(hba->host->host_lock, flags);
755 if (hba->clk_gating.state == REQ_CLKS_OFF)
756 hba->clk_gating.state = CLKS_OFF;
757
758rel_lock:
759 spin_unlock_irqrestore(hba->host->host_lock, flags);
760out:
761 return;
762}
763
764/* host lock must be held before calling this variant */
765static void __ufshcd_release(struct ufs_hba *hba)
766{
767 if (!ufshcd_is_clkgating_allowed(hba))
768 return;
769
770 hba->clk_gating.active_reqs--;
771
772 if (hba->clk_gating.active_reqs || hba->clk_gating.is_suspended
773 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
774 || hba->lrb_in_use || hba->outstanding_tasks
Yaniv Gardi53c12d02016-02-01 15:02:45 +0200775 || hba->active_uic_cmd || hba->uic_async_done
776 || ufshcd_eh_in_progress(hba))
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300777 return;
778
779 hba->clk_gating.state = REQ_CLKS_OFF;
780 schedule_delayed_work(&hba->clk_gating.gate_work,
781 msecs_to_jiffies(hba->clk_gating.delay_ms));
782}
783
784void ufshcd_release(struct ufs_hba *hba)
785{
786 unsigned long flags;
787
788 spin_lock_irqsave(hba->host->host_lock, flags);
789 __ufshcd_release(hba);
790 spin_unlock_irqrestore(hba->host->host_lock, flags);
791}
Yaniv Gardi6e3fd442015-10-28 13:15:50 +0200792EXPORT_SYMBOL_GPL(ufshcd_release);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300793
794static ssize_t ufshcd_clkgate_delay_show(struct device *dev,
795 struct device_attribute *attr, char *buf)
796{
797 struct ufs_hba *hba = dev_get_drvdata(dev);
798
799 return snprintf(buf, PAGE_SIZE, "%lu\n", hba->clk_gating.delay_ms);
800}
801
802static ssize_t ufshcd_clkgate_delay_store(struct device *dev,
803 struct device_attribute *attr, const char *buf, size_t count)
804{
805 struct ufs_hba *hba = dev_get_drvdata(dev);
806 unsigned long flags, value;
807
808 if (kstrtoul(buf, 0, &value))
809 return -EINVAL;
810
811 spin_lock_irqsave(hba->host->host_lock, flags);
812 hba->clk_gating.delay_ms = value;
813 spin_unlock_irqrestore(hba->host->host_lock, flags);
814 return count;
815}
816
817static void ufshcd_init_clk_gating(struct ufs_hba *hba)
818{
819 if (!ufshcd_is_clkgating_allowed(hba))
820 return;
821
822 hba->clk_gating.delay_ms = 150;
823 INIT_DELAYED_WORK(&hba->clk_gating.gate_work, ufshcd_gate_work);
824 INIT_WORK(&hba->clk_gating.ungate_work, ufshcd_ungate_work);
825
826 hba->clk_gating.delay_attr.show = ufshcd_clkgate_delay_show;
827 hba->clk_gating.delay_attr.store = ufshcd_clkgate_delay_store;
828 sysfs_attr_init(&hba->clk_gating.delay_attr.attr);
829 hba->clk_gating.delay_attr.attr.name = "clkgate_delay_ms";
830 hba->clk_gating.delay_attr.attr.mode = S_IRUGO | S_IWUSR;
831 if (device_create_file(hba->dev, &hba->clk_gating.delay_attr))
832 dev_err(hba->dev, "Failed to create sysfs for clkgate_delay\n");
833}
834
835static void ufshcd_exit_clk_gating(struct ufs_hba *hba)
836{
837 if (!ufshcd_is_clkgating_allowed(hba))
838 return;
839 device_remove_file(hba->dev, &hba->clk_gating.delay_attr);
Akinobu Mita97cd6802014-11-24 14:24:18 +0900840 cancel_work_sync(&hba->clk_gating.ungate_work);
841 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300842}
843
Sahitya Tummala856b3482014-09-25 15:32:34 +0300844/* Must be called with host lock acquired */
845static void ufshcd_clk_scaling_start_busy(struct ufs_hba *hba)
846{
847 if (!ufshcd_is_clkscaling_enabled(hba))
848 return;
849
850 if (!hba->clk_scaling.is_busy_started) {
851 hba->clk_scaling.busy_start_t = ktime_get();
852 hba->clk_scaling.is_busy_started = true;
853 }
854}
855
856static void ufshcd_clk_scaling_update_busy(struct ufs_hba *hba)
857{
858 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
859
860 if (!ufshcd_is_clkscaling_enabled(hba))
861 return;
862
863 if (!hba->outstanding_reqs && scaling->is_busy_started) {
864 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
865 scaling->busy_start_t));
866 scaling->busy_start_t = ktime_set(0, 0);
867 scaling->is_busy_started = false;
868 }
869}
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530870/**
871 * ufshcd_send_command - Send SCSI or device management commands
872 * @hba: per adapter instance
873 * @task_tag: Task tag of the command
874 */
875static inline
876void ufshcd_send_command(struct ufs_hba *hba, unsigned int task_tag)
877{
Sahitya Tummala856b3482014-09-25 15:32:34 +0300878 ufshcd_clk_scaling_start_busy(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530879 __set_bit(task_tag, &hba->outstanding_reqs);
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530880 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530881}
882
883/**
884 * ufshcd_copy_sense_data - Copy sense data in case of check condition
885 * @lrb - pointer to local reference block
886 */
887static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
888{
889 int len;
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530890 if (lrbp->sense_buffer &&
891 ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530892 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530893 memcpy(lrbp->sense_buffer,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530894 lrbp->ucd_rsp_ptr->sr.sense_data,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530895 min_t(int, len, SCSI_SENSE_BUFFERSIZE));
896 }
897}
898
899/**
Dolev Raviv68078d52013-07-30 00:35:58 +0530900 * ufshcd_copy_query_response() - Copy the Query Response and the data
901 * descriptor
902 * @hba: per adapter instance
903 * @lrb - pointer to local reference block
904 */
905static
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300906int ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Dolev Raviv68078d52013-07-30 00:35:58 +0530907{
908 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
909
Dolev Raviv68078d52013-07-30 00:35:58 +0530910 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +0530911
Dolev Raviv68078d52013-07-30 00:35:58 +0530912 /* Get the descriptor */
913 if (lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
Dolev Ravivd44a5f92014-06-29 09:40:17 +0300914 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr +
Dolev Raviv68078d52013-07-30 00:35:58 +0530915 GENERAL_UPIU_REQUEST_SIZE;
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300916 u16 resp_len;
917 u16 buf_len;
Dolev Raviv68078d52013-07-30 00:35:58 +0530918
919 /* data segment length */
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300920 resp_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
Dolev Raviv68078d52013-07-30 00:35:58 +0530921 MASK_QUERY_DATA_SEG_LEN;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +0300922 buf_len = be16_to_cpu(
923 hba->dev_cmd.query.request.upiu_req.length);
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300924 if (likely(buf_len >= resp_len)) {
925 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len);
926 } else {
927 dev_warn(hba->dev,
928 "%s: Response size is bigger than buffer",
929 __func__);
930 return -EINVAL;
931 }
Dolev Raviv68078d52013-07-30 00:35:58 +0530932 }
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300933
934 return 0;
Dolev Raviv68078d52013-07-30 00:35:58 +0530935}
936
937/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530938 * ufshcd_hba_capabilities - Read controller capabilities
939 * @hba: per adapter instance
940 */
941static inline void ufshcd_hba_capabilities(struct ufs_hba *hba)
942{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530943 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530944
945 /* nutrs and nutmrs are 0 based values */
946 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS) + 1;
947 hba->nutmrs =
948 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
949}
950
951/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530952 * ufshcd_ready_for_uic_cmd - Check if controller is ready
953 * to accept UIC commands
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530954 * @hba: per adapter instance
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530955 * Return true on success, else false
956 */
957static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
958{
959 if (ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY)
960 return true;
961 else
962 return false;
963}
964
965/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +0530966 * ufshcd_get_upmcrs - Get the power mode change request status
967 * @hba: Pointer to adapter instance
968 *
969 * This function gets the UPMCRS field of HCS register
970 * Returns value of UPMCRS field
971 */
972static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
973{
974 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
975}
976
977/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530978 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
979 * @hba: per adapter instance
980 * @uic_cmd: UIC command
981 *
982 * Mutex must be held.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530983 */
984static inline void
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530985ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530986{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530987 WARN_ON(hba->active_uic_cmd);
988
989 hba->active_uic_cmd = uic_cmd;
990
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530991 /* Write Args */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530992 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
993 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
994 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530995
996 /* Write UIC Cmd */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530997 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530998 REG_UIC_COMMAND);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530999}
1000
1001/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301002 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
1003 * @hba: per adapter instance
1004 * @uic_command: UIC command
1005 *
1006 * Must be called with mutex held.
1007 * Returns 0 only if success.
1008 */
1009static int
1010ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
1011{
1012 int ret;
1013 unsigned long flags;
1014
1015 if (wait_for_completion_timeout(&uic_cmd->done,
1016 msecs_to_jiffies(UIC_CMD_TIMEOUT)))
1017 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
1018 else
1019 ret = -ETIMEDOUT;
1020
1021 spin_lock_irqsave(hba->host->host_lock, flags);
1022 hba->active_uic_cmd = NULL;
1023 spin_unlock_irqrestore(hba->host->host_lock, flags);
1024
1025 return ret;
1026}
1027
1028/**
1029 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
1030 * @hba: per adapter instance
1031 * @uic_cmd: UIC command
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001032 * @completion: initialize the completion only if this is set to true
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301033 *
1034 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001035 * with mutex held and host_lock locked.
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301036 * Returns 0 only if success.
1037 */
1038static int
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001039__ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd,
1040 bool completion)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301041{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301042 if (!ufshcd_ready_for_uic_cmd(hba)) {
1043 dev_err(hba->dev,
1044 "Controller not ready to accept UIC commands\n");
1045 return -EIO;
1046 }
1047
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001048 if (completion)
1049 init_completion(&uic_cmd->done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301050
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301051 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301052
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001053 return 0;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301054}
1055
1056/**
1057 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
1058 * @hba: per adapter instance
1059 * @uic_cmd: UIC command
1060 *
1061 * Returns 0 only if success.
1062 */
1063static int
1064ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
1065{
1066 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001067 unsigned long flags;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301068
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001069 ufshcd_hold(hba, false);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301070 mutex_lock(&hba->uic_cmd_mutex);
Yaniv Gardicad2e032015-03-31 17:37:14 +03001071 ufshcd_add_delay_before_dme_cmd(hba);
1072
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001073 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02001074 ret = __ufshcd_send_uic_cmd(hba, uic_cmd, true);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03001075 spin_unlock_irqrestore(hba->host->host_lock, flags);
1076 if (!ret)
1077 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
1078
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301079 mutex_unlock(&hba->uic_cmd_mutex);
1080
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001081 ufshcd_release(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301082 return ret;
1083}
1084
1085/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301086 * ufshcd_map_sg - Map scatter-gather list to prdt
1087 * @lrbp - pointer to local reference block
1088 *
1089 * Returns 0 in case of success, non-zero value in case of failure
1090 */
1091static int ufshcd_map_sg(struct ufshcd_lrb *lrbp)
1092{
1093 struct ufshcd_sg_entry *prd_table;
1094 struct scatterlist *sg;
1095 struct scsi_cmnd *cmd;
1096 int sg_segments;
1097 int i;
1098
1099 cmd = lrbp->cmd;
1100 sg_segments = scsi_dma_map(cmd);
1101 if (sg_segments < 0)
1102 return sg_segments;
1103
1104 if (sg_segments) {
1105 lrbp->utr_descriptor_ptr->prd_table_length =
1106 cpu_to_le16((u16) (sg_segments));
1107
1108 prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
1109
1110 scsi_for_each_sg(cmd, sg, sg_segments, i) {
1111 prd_table[i].size =
1112 cpu_to_le32(((u32) sg_dma_len(sg))-1);
1113 prd_table[i].base_addr =
1114 cpu_to_le32(lower_32_bits(sg->dma_address));
1115 prd_table[i].upper_addr =
1116 cpu_to_le32(upper_32_bits(sg->dma_address));
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02001117 prd_table[i].reserved = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301118 }
1119 } else {
1120 lrbp->utr_descriptor_ptr->prd_table_length = 0;
1121 }
1122
1123 return 0;
1124}
1125
1126/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301127 * ufshcd_enable_intr - enable interrupts
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301128 * @hba: per adapter instance
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301129 * @intrs: interrupt bits
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301130 */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301131static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301132{
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301133 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
1134
1135 if (hba->ufs_version == UFSHCI_VERSION_10) {
1136 u32 rw;
1137 rw = set & INTERRUPT_MASK_RW_VER_10;
1138 set = rw | ((set ^ intrs) & intrs);
1139 } else {
1140 set |= intrs;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301141 }
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301142
1143 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
1144}
1145
1146/**
1147 * ufshcd_disable_intr - disable interrupts
1148 * @hba: per adapter instance
1149 * @intrs: interrupt bits
1150 */
1151static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
1152{
1153 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
1154
1155 if (hba->ufs_version == UFSHCI_VERSION_10) {
1156 u32 rw;
1157 rw = (set & INTERRUPT_MASK_RW_VER_10) &
1158 ~(intrs & INTERRUPT_MASK_RW_VER_10);
1159 set = rw | ((set & intrs) & ~INTERRUPT_MASK_RW_VER_10);
1160
1161 } else {
1162 set &= ~intrs;
1163 }
1164
1165 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301166}
1167
1168/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301169 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
1170 * descriptor according to request
1171 * @lrbp: pointer to local reference block
1172 * @upiu_flags: flags required in the header
1173 * @cmd_dir: requests data direction
1174 */
1175static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb *lrbp,
Joao Pinto300bb132016-05-11 12:21:27 +01001176 u32 *upiu_flags, enum dma_data_direction cmd_dir)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301177{
1178 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
1179 u32 data_direction;
1180 u32 dword_0;
1181
1182 if (cmd_dir == DMA_FROM_DEVICE) {
1183 data_direction = UTP_DEVICE_TO_HOST;
1184 *upiu_flags = UPIU_CMD_FLAGS_READ;
1185 } else if (cmd_dir == DMA_TO_DEVICE) {
1186 data_direction = UTP_HOST_TO_DEVICE;
1187 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
1188 } else {
1189 data_direction = UTP_NO_DATA_TRANSFER;
1190 *upiu_flags = UPIU_CMD_FLAGS_NONE;
1191 }
1192
1193 dword_0 = data_direction | (lrbp->command_type
1194 << UPIU_COMMAND_TYPE_OFFSET);
1195 if (lrbp->intr_cmd)
1196 dword_0 |= UTP_REQ_DESC_INT_CMD;
1197
1198 /* Transfer request descriptor header fields */
1199 req_desc->header.dword_0 = cpu_to_le32(dword_0);
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02001200 /* dword_1 is reserved, hence it is set to 0 */
1201 req_desc->header.dword_1 = 0;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301202 /*
1203 * assigning invalid value for command status. Controller
1204 * updates OCS on command completion, with the command
1205 * status
1206 */
1207 req_desc->header.dword_2 =
1208 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02001209 /* dword_3 is reserved, hence it is set to 0 */
1210 req_desc->header.dword_3 = 0;
Yaniv Gardi51047262016-02-01 15:02:38 +02001211
1212 req_desc->prd_table_length = 0;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301213}
1214
1215/**
1216 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
1217 * for scsi commands
1218 * @lrbp - local reference block pointer
1219 * @upiu_flags - flags
1220 */
1221static
1222void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u32 upiu_flags)
1223{
1224 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02001225 unsigned short cdb_len;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301226
1227 /* command descriptor fields */
1228 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
1229 UPIU_TRANSACTION_COMMAND, upiu_flags,
1230 lrbp->lun, lrbp->task_tag);
1231 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
1232 UPIU_COMMAND_SET_TYPE_SCSI, 0, 0, 0);
1233
1234 /* Total EHS length and Data segment length will be zero */
1235 ucd_req_ptr->header.dword_2 = 0;
1236
1237 ucd_req_ptr->sc.exp_data_transfer_len =
1238 cpu_to_be32(lrbp->cmd->sdb.length);
1239
Yaniv Gardi52ac95f2016-02-01 15:02:37 +02001240 cdb_len = min_t(unsigned short, lrbp->cmd->cmd_len, MAX_CDB_SIZE);
1241 memset(ucd_req_ptr->sc.cdb, 0, MAX_CDB_SIZE);
1242 memcpy(ucd_req_ptr->sc.cdb, lrbp->cmd->cmnd, cdb_len);
1243
1244 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301245}
1246
Dolev Raviv68078d52013-07-30 00:35:58 +05301247/**
1248 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
1249 * for query requsts
1250 * @hba: UFS hba
1251 * @lrbp: local reference block pointer
1252 * @upiu_flags: flags
1253 */
1254static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
1255 struct ufshcd_lrb *lrbp, u32 upiu_flags)
1256{
1257 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1258 struct ufs_query *query = &hba->dev_cmd.query;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301259 u16 len = be16_to_cpu(query->request.upiu_req.length);
Dolev Raviv68078d52013-07-30 00:35:58 +05301260 u8 *descp = (u8 *)lrbp->ucd_req_ptr + GENERAL_UPIU_REQUEST_SIZE;
1261
1262 /* Query request header */
1263 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
1264 UPIU_TRANSACTION_QUERY_REQ, upiu_flags,
1265 lrbp->lun, lrbp->task_tag);
1266 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
1267 0, query->request.query_func, 0, 0);
1268
1269 /* Data segment length */
1270 ucd_req_ptr->header.dword_2 = UPIU_HEADER_DWORD(
1271 0, 0, len >> 8, (u8)len);
1272
1273 /* Copy the Query Request buffer as is */
1274 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
1275 QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +05301276
1277 /* Copy the Descriptor */
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001278 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
1279 memcpy(descp, query->descriptor, len);
1280
Yaniv Gardi51047262016-02-01 15:02:38 +02001281 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
Dolev Raviv68078d52013-07-30 00:35:58 +05301282}
1283
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301284static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb *lrbp)
1285{
1286 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1287
1288 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
1289
1290 /* command descriptor fields */
1291 ucd_req_ptr->header.dword_0 =
1292 UPIU_HEADER_DWORD(
1293 UPIU_TRANSACTION_NOP_OUT, 0, 0, lrbp->task_tag);
Yaniv Gardi51047262016-02-01 15:02:38 +02001294 /* clear rest of the fields of basic header */
1295 ucd_req_ptr->header.dword_1 = 0;
1296 ucd_req_ptr->header.dword_2 = 0;
1297
1298 memset(lrbp->ucd_rsp_ptr, 0, sizeof(struct utp_upiu_rsp));
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301299}
1300
1301/**
Joao Pinto300bb132016-05-11 12:21:27 +01001302 * ufshcd_comp_devman_upiu - UFS Protocol Information Unit(UPIU)
1303 * for Device Management Purposes
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301304 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301305 * @lrb - pointer to local reference block
1306 */
Joao Pinto300bb132016-05-11 12:21:27 +01001307static int ufshcd_comp_devman_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301308{
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301309 u32 upiu_flags;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301310 int ret = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301311
Joao Pinto300bb132016-05-11 12:21:27 +01001312 if (hba->ufs_version == UFSHCI_VERSION_20)
1313 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
1314 else
1315 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
1316
1317 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
1318 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
1319 ufshcd_prepare_utp_query_req_upiu(hba, lrbp, upiu_flags);
1320 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
1321 ufshcd_prepare_utp_nop_upiu(lrbp);
1322 else
1323 ret = -EINVAL;
1324
1325 return ret;
1326}
1327
1328/**
1329 * ufshcd_comp_scsi_upiu - UFS Protocol Information Unit(UPIU)
1330 * for SCSI Purposes
1331 * @hba - per adapter instance
1332 * @lrb - pointer to local reference block
1333 */
1334static int ufshcd_comp_scsi_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1335{
1336 u32 upiu_flags;
1337 int ret = 0;
1338
1339 if (hba->ufs_version == UFSHCI_VERSION_20)
1340 lrbp->command_type = UTP_CMD_TYPE_UFS_STORAGE;
1341 else
1342 lrbp->command_type = UTP_CMD_TYPE_SCSI;
1343
1344 if (likely(lrbp->cmd)) {
1345 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags,
1346 lrbp->cmd->sc_data_direction);
1347 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp, upiu_flags);
1348 } else {
1349 ret = -EINVAL;
1350 }
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301351
1352 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301353}
1354
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001355/*
1356 * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
1357 * @scsi_lun: scsi LUN id
1358 *
1359 * Returns UPIU LUN id
1360 */
1361static inline u8 ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun)
1362{
1363 if (scsi_is_wlun(scsi_lun))
1364 return (scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID)
1365 | UFS_UPIU_WLUN_ID;
1366 else
1367 return scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID;
1368}
1369
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301370/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03001371 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
1372 * @scsi_lun: UPIU W-LUN id
1373 *
1374 * Returns SCSI W-LUN id
1375 */
1376static inline u16 ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)
1377{
1378 return (upiu_wlun_id & ~UFS_UPIU_WLUN_ID) | SCSI_W_LUN_BASE;
1379}
1380
1381/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301382 * ufshcd_queuecommand - main entry point for SCSI requests
1383 * @cmd: command from SCSI Midlayer
1384 * @done: call back function
1385 *
1386 * Returns 0 for success, non-zero in case of failure
1387 */
1388static int ufshcd_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
1389{
1390 struct ufshcd_lrb *lrbp;
1391 struct ufs_hba *hba;
1392 unsigned long flags;
1393 int tag;
1394 int err = 0;
1395
1396 hba = shost_priv(host);
1397
1398 tag = cmd->request->tag;
Yaniv Gardi14497322016-02-01 15:02:39 +02001399 if (!ufshcd_valid_tag(hba, tag)) {
1400 dev_err(hba->dev,
1401 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
1402 __func__, tag, cmd, cmd->request);
1403 BUG();
1404 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301405
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301406 spin_lock_irqsave(hba->host->host_lock, flags);
1407 switch (hba->ufshcd_state) {
1408 case UFSHCD_STATE_OPERATIONAL:
1409 break;
1410 case UFSHCD_STATE_RESET:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301411 err = SCSI_MLQUEUE_HOST_BUSY;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301412 goto out_unlock;
1413 case UFSHCD_STATE_ERROR:
1414 set_host_byte(cmd, DID_ERROR);
1415 cmd->scsi_done(cmd);
1416 goto out_unlock;
1417 default:
1418 dev_WARN_ONCE(hba->dev, 1, "%s: invalid state %d\n",
1419 __func__, hba->ufshcd_state);
1420 set_host_byte(cmd, DID_BAD_TARGET);
1421 cmd->scsi_done(cmd);
1422 goto out_unlock;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301423 }
Yaniv Gardi53c12d02016-02-01 15:02:45 +02001424
1425 /* if error handling is in progress, don't issue commands */
1426 if (ufshcd_eh_in_progress(hba)) {
1427 set_host_byte(cmd, DID_ERROR);
1428 cmd->scsi_done(cmd);
1429 goto out_unlock;
1430 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301431 spin_unlock_irqrestore(hba->host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301432
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301433 /* acquire the tag to make sure device cmds don't use it */
1434 if (test_and_set_bit_lock(tag, &hba->lrb_in_use)) {
1435 /*
1436 * Dev manage command in progress, requeue the command.
1437 * Requeuing the command helps in cases where the request *may*
1438 * find different tag instead of waiting for dev manage command
1439 * completion.
1440 */
1441 err = SCSI_MLQUEUE_HOST_BUSY;
1442 goto out;
1443 }
1444
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001445 err = ufshcd_hold(hba, true);
1446 if (err) {
1447 err = SCSI_MLQUEUE_HOST_BUSY;
1448 clear_bit_unlock(tag, &hba->lrb_in_use);
1449 goto out;
1450 }
1451 WARN_ON(hba->clk_gating.state != CLKS_ON);
1452
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301453 lrbp = &hba->lrb[tag];
1454
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301455 WARN_ON(lrbp->cmd);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301456 lrbp->cmd = cmd;
1457 lrbp->sense_bufflen = SCSI_SENSE_BUFFERSIZE;
1458 lrbp->sense_buffer = cmd->sense_buffer;
1459 lrbp->task_tag = tag;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001460 lrbp->lun = ufshcd_scsi_to_upiu_lun(cmd->device->lun);
Yaniv Gardib8521902015-05-17 18:54:57 +03001461 lrbp->intr_cmd = !ufshcd_is_intr_aggr_allowed(hba) ? true : false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301462
Joao Pinto300bb132016-05-11 12:21:27 +01001463 ufshcd_comp_scsi_upiu(hba, lrbp);
1464
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301465 err = ufshcd_map_sg(lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301466 if (err) {
1467 lrbp->cmd = NULL;
1468 clear_bit_unlock(tag, &hba->lrb_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301469 goto out;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301470 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301471
1472 /* issue command to the controller */
1473 spin_lock_irqsave(hba->host->host_lock, flags);
1474 ufshcd_send_command(hba, tag);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301475out_unlock:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301476 spin_unlock_irqrestore(hba->host->host_lock, flags);
1477out:
1478 return err;
1479}
1480
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301481static int ufshcd_compose_dev_cmd(struct ufs_hba *hba,
1482 struct ufshcd_lrb *lrbp, enum dev_cmd_type cmd_type, int tag)
1483{
1484 lrbp->cmd = NULL;
1485 lrbp->sense_bufflen = 0;
1486 lrbp->sense_buffer = NULL;
1487 lrbp->task_tag = tag;
1488 lrbp->lun = 0; /* device management cmd is not specific to any LUN */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301489 lrbp->intr_cmd = true; /* No interrupt aggregation */
1490 hba->dev_cmd.type = cmd_type;
1491
Joao Pinto300bb132016-05-11 12:21:27 +01001492 return ufshcd_comp_devman_upiu(hba, lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301493}
1494
1495static int
1496ufshcd_clear_cmd(struct ufs_hba *hba, int tag)
1497{
1498 int err = 0;
1499 unsigned long flags;
1500 u32 mask = 1 << tag;
1501
1502 /* clear outstanding transaction before retry */
1503 spin_lock_irqsave(hba->host->host_lock, flags);
1504 ufshcd_utrl_clear(hba, tag);
1505 spin_unlock_irqrestore(hba->host->host_lock, flags);
1506
1507 /*
1508 * wait for for h/w to clear corresponding bit in door-bell.
1509 * max. wait is 1 sec.
1510 */
1511 err = ufshcd_wait_for_register(hba,
1512 REG_UTP_TRANSFER_REQ_DOOR_BELL,
Yaniv Gardi596585a2016-03-10 17:37:08 +02001513 mask, ~mask, 1000, 1000, true);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301514
1515 return err;
1516}
1517
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001518static int
1519ufshcd_check_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1520{
1521 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
1522
1523 /* Get the UPIU response */
1524 query_res->response = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr) >>
1525 UPIU_RSP_CODE_OFFSET;
1526 return query_res->response;
1527}
1528
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301529/**
1530 * ufshcd_dev_cmd_completion() - handles device management command responses
1531 * @hba: per adapter instance
1532 * @lrbp: pointer to local reference block
1533 */
1534static int
1535ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1536{
1537 int resp;
1538 int err = 0;
1539
1540 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
1541
1542 switch (resp) {
1543 case UPIU_TRANSACTION_NOP_IN:
1544 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
1545 err = -EINVAL;
1546 dev_err(hba->dev, "%s: unexpected response %x\n",
1547 __func__, resp);
1548 }
1549 break;
Dolev Raviv68078d52013-07-30 00:35:58 +05301550 case UPIU_TRANSACTION_QUERY_RSP:
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001551 err = ufshcd_check_query_response(hba, lrbp);
1552 if (!err)
1553 err = ufshcd_copy_query_response(hba, lrbp);
Dolev Raviv68078d52013-07-30 00:35:58 +05301554 break;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301555 case UPIU_TRANSACTION_REJECT_UPIU:
1556 /* TODO: handle Reject UPIU Response */
1557 err = -EPERM;
1558 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
1559 __func__);
1560 break;
1561 default:
1562 err = -EINVAL;
1563 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
1564 __func__, resp);
1565 break;
1566 }
1567
1568 return err;
1569}
1570
1571static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
1572 struct ufshcd_lrb *lrbp, int max_timeout)
1573{
1574 int err = 0;
1575 unsigned long time_left;
1576 unsigned long flags;
1577
1578 time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
1579 msecs_to_jiffies(max_timeout));
1580
1581 spin_lock_irqsave(hba->host->host_lock, flags);
1582 hba->dev_cmd.complete = NULL;
1583 if (likely(time_left)) {
1584 err = ufshcd_get_tr_ocs(lrbp);
1585 if (!err)
1586 err = ufshcd_dev_cmd_completion(hba, lrbp);
1587 }
1588 spin_unlock_irqrestore(hba->host->host_lock, flags);
1589
1590 if (!time_left) {
1591 err = -ETIMEDOUT;
Yaniv Gardia48353f2016-02-01 15:02:40 +02001592 dev_dbg(hba->dev, "%s: dev_cmd request timedout, tag %d\n",
1593 __func__, lrbp->task_tag);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301594 if (!ufshcd_clear_cmd(hba, lrbp->task_tag))
Yaniv Gardia48353f2016-02-01 15:02:40 +02001595 /* successfully cleared the command, retry if needed */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301596 err = -EAGAIN;
Yaniv Gardia48353f2016-02-01 15:02:40 +02001597 /*
1598 * in case of an error, after clearing the doorbell,
1599 * we also need to clear the outstanding_request
1600 * field in hba
1601 */
1602 ufshcd_outstanding_req_clear(hba, lrbp->task_tag);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301603 }
1604
1605 return err;
1606}
1607
1608/**
1609 * ufshcd_get_dev_cmd_tag - Get device management command tag
1610 * @hba: per-adapter instance
1611 * @tag: pointer to variable with available slot value
1612 *
1613 * Get a free slot and lock it until device management command
1614 * completes.
1615 *
1616 * Returns false if free slot is unavailable for locking, else
1617 * return true with tag value in @tag.
1618 */
1619static bool ufshcd_get_dev_cmd_tag(struct ufs_hba *hba, int *tag_out)
1620{
1621 int tag;
1622 bool ret = false;
1623 unsigned long tmp;
1624
1625 if (!tag_out)
1626 goto out;
1627
1628 do {
1629 tmp = ~hba->lrb_in_use;
1630 tag = find_last_bit(&tmp, hba->nutrs);
1631 if (tag >= hba->nutrs)
1632 goto out;
1633 } while (test_and_set_bit_lock(tag, &hba->lrb_in_use));
1634
1635 *tag_out = tag;
1636 ret = true;
1637out:
1638 return ret;
1639}
1640
1641static inline void ufshcd_put_dev_cmd_tag(struct ufs_hba *hba, int tag)
1642{
1643 clear_bit_unlock(tag, &hba->lrb_in_use);
1644}
1645
1646/**
1647 * ufshcd_exec_dev_cmd - API for sending device management requests
1648 * @hba - UFS hba
1649 * @cmd_type - specifies the type (NOP, Query...)
1650 * @timeout - time in seconds
1651 *
Dolev Raviv68078d52013-07-30 00:35:58 +05301652 * NOTE: Since there is only one available tag for device management commands,
1653 * it is expected you hold the hba->dev_cmd.lock mutex.
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301654 */
1655static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
1656 enum dev_cmd_type cmd_type, int timeout)
1657{
1658 struct ufshcd_lrb *lrbp;
1659 int err;
1660 int tag;
1661 struct completion wait;
1662 unsigned long flags;
1663
1664 /*
1665 * Get free slot, sleep if slots are unavailable.
1666 * Even though we use wait_event() which sleeps indefinitely,
1667 * the maximum wait time is bounded by SCSI request timeout.
1668 */
1669 wait_event(hba->dev_cmd.tag_wq, ufshcd_get_dev_cmd_tag(hba, &tag));
1670
1671 init_completion(&wait);
1672 lrbp = &hba->lrb[tag];
1673 WARN_ON(lrbp->cmd);
1674 err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
1675 if (unlikely(err))
1676 goto out_put_tag;
1677
1678 hba->dev_cmd.complete = &wait;
1679
Yaniv Gardie3dfdc52016-02-01 15:02:49 +02001680 /* Make sure descriptors are ready before ringing the doorbell */
1681 wmb();
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301682 spin_lock_irqsave(hba->host->host_lock, flags);
1683 ufshcd_send_command(hba, tag);
1684 spin_unlock_irqrestore(hba->host->host_lock, flags);
1685
1686 err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
1687
1688out_put_tag:
1689 ufshcd_put_dev_cmd_tag(hba, tag);
1690 wake_up(&hba->dev_cmd.tag_wq);
1691 return err;
1692}
1693
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301694/**
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001695 * ufshcd_init_query() - init the query response and request parameters
1696 * @hba: per-adapter instance
1697 * @request: address of the request pointer to be initialized
1698 * @response: address of the response pointer to be initialized
1699 * @opcode: operation to perform
1700 * @idn: flag idn to access
1701 * @index: LU number to access
1702 * @selector: query/flag/descriptor further identification
1703 */
1704static inline void ufshcd_init_query(struct ufs_hba *hba,
1705 struct ufs_query_req **request, struct ufs_query_res **response,
1706 enum query_opcode opcode, u8 idn, u8 index, u8 selector)
1707{
1708 *request = &hba->dev_cmd.query.request;
1709 *response = &hba->dev_cmd.query.response;
1710 memset(*request, 0, sizeof(struct ufs_query_req));
1711 memset(*response, 0, sizeof(struct ufs_query_res));
1712 (*request)->upiu_req.opcode = opcode;
1713 (*request)->upiu_req.idn = idn;
1714 (*request)->upiu_req.index = index;
1715 (*request)->upiu_req.selector = selector;
1716}
1717
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02001718static int ufshcd_query_flag_retry(struct ufs_hba *hba,
1719 enum query_opcode opcode, enum flag_idn idn, bool *flag_res)
1720{
1721 int ret;
1722 int retries;
1723
1724 for (retries = 0; retries < QUERY_REQ_RETRIES; retries++) {
1725 ret = ufshcd_query_flag(hba, opcode, idn, flag_res);
1726 if (ret)
1727 dev_dbg(hba->dev,
1728 "%s: failed with error %d, retries %d\n",
1729 __func__, ret, retries);
1730 else
1731 break;
1732 }
1733
1734 if (ret)
1735 dev_err(hba->dev,
1736 "%s: query attribute, opcode %d, idn %d, failed with error %d after %d retires\n",
1737 __func__, opcode, idn, ret, retries);
1738 return ret;
1739}
1740
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001741/**
Dolev Raviv68078d52013-07-30 00:35:58 +05301742 * ufshcd_query_flag() - API function for sending flag query requests
1743 * hba: per-adapter instance
1744 * query_opcode: flag query to perform
1745 * idn: flag idn to access
1746 * flag_res: the flag value after the query request completes
1747 *
1748 * Returns 0 for success, non-zero in case of failure
1749 */
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02001750int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
Dolev Raviv68078d52013-07-30 00:35:58 +05301751 enum flag_idn idn, bool *flag_res)
1752{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001753 struct ufs_query_req *request = NULL;
1754 struct ufs_query_res *response = NULL;
1755 int err, index = 0, selector = 0;
Yaniv Gardie5ad4062016-02-01 15:02:41 +02001756 int timeout = QUERY_REQ_TIMEOUT;
Dolev Raviv68078d52013-07-30 00:35:58 +05301757
1758 BUG_ON(!hba);
1759
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001760 ufshcd_hold(hba, false);
Dolev Raviv68078d52013-07-30 00:35:58 +05301761 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001762 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1763 selector);
Dolev Raviv68078d52013-07-30 00:35:58 +05301764
1765 switch (opcode) {
1766 case UPIU_QUERY_OPCODE_SET_FLAG:
1767 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
1768 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
1769 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1770 break;
1771 case UPIU_QUERY_OPCODE_READ_FLAG:
1772 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1773 if (!flag_res) {
1774 /* No dummy reads */
1775 dev_err(hba->dev, "%s: Invalid argument for read request\n",
1776 __func__);
1777 err = -EINVAL;
1778 goto out_unlock;
1779 }
1780 break;
1781 default:
1782 dev_err(hba->dev,
1783 "%s: Expected query flag opcode but got = %d\n",
1784 __func__, opcode);
1785 err = -EINVAL;
1786 goto out_unlock;
1787 }
Dolev Raviv68078d52013-07-30 00:35:58 +05301788
Yaniv Gardie5ad4062016-02-01 15:02:41 +02001789 if (idn == QUERY_FLAG_IDN_FDEVICEINIT)
1790 timeout = QUERY_FDEVICEINIT_REQ_TIMEOUT;
1791
1792 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, timeout);
Dolev Raviv68078d52013-07-30 00:35:58 +05301793
1794 if (err) {
1795 dev_err(hba->dev,
1796 "%s: Sending flag query for idn %d failed, err = %d\n",
1797 __func__, idn, err);
1798 goto out_unlock;
1799 }
1800
1801 if (flag_res)
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301802 *flag_res = (be32_to_cpu(response->upiu_res.value) &
Dolev Raviv68078d52013-07-30 00:35:58 +05301803 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
1804
1805out_unlock:
1806 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001807 ufshcd_release(hba);
Dolev Raviv68078d52013-07-30 00:35:58 +05301808 return err;
1809}
1810
1811/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301812 * ufshcd_query_attr - API function for sending attribute requests
1813 * hba: per-adapter instance
1814 * opcode: attribute opcode
1815 * idn: attribute idn to access
1816 * index: index field
1817 * selector: selector field
1818 * attr_val: the attribute value after the query request completes
1819 *
1820 * Returns 0 for success, non-zero in case of failure
1821*/
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05301822static int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301823 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
1824{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001825 struct ufs_query_req *request = NULL;
1826 struct ufs_query_res *response = NULL;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301827 int err;
1828
1829 BUG_ON(!hba);
1830
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001831 ufshcd_hold(hba, false);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301832 if (!attr_val) {
1833 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
1834 __func__, opcode);
1835 err = -EINVAL;
1836 goto out;
1837 }
1838
1839 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001840 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1841 selector);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301842
1843 switch (opcode) {
1844 case UPIU_QUERY_OPCODE_WRITE_ATTR:
1845 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301846 request->upiu_req.value = cpu_to_be32(*attr_val);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301847 break;
1848 case UPIU_QUERY_OPCODE_READ_ATTR:
1849 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1850 break;
1851 default:
1852 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
1853 __func__, opcode);
1854 err = -EINVAL;
1855 goto out_unlock;
1856 }
1857
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001858 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301859
1860 if (err) {
1861 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1862 __func__, opcode, idn, err);
1863 goto out_unlock;
1864 }
1865
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301866 *attr_val = be32_to_cpu(response->upiu_res.value);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301867
1868out_unlock:
1869 mutex_unlock(&hba->dev_cmd.lock);
1870out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001871 ufshcd_release(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301872 return err;
1873}
1874
1875/**
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02001876 * ufshcd_query_attr_retry() - API function for sending query
1877 * attribute with retries
1878 * @hba: per-adapter instance
1879 * @opcode: attribute opcode
1880 * @idn: attribute idn to access
1881 * @index: index field
1882 * @selector: selector field
1883 * @attr_val: the attribute value after the query request
1884 * completes
1885 *
1886 * Returns 0 for success, non-zero in case of failure
1887*/
1888static int ufshcd_query_attr_retry(struct ufs_hba *hba,
1889 enum query_opcode opcode, enum attr_idn idn, u8 index, u8 selector,
1890 u32 *attr_val)
1891{
1892 int ret = 0;
1893 u32 retries;
1894
1895 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
1896 ret = ufshcd_query_attr(hba, opcode, idn, index,
1897 selector, attr_val);
1898 if (ret)
1899 dev_dbg(hba->dev, "%s: failed with error %d, retries %d\n",
1900 __func__, ret, retries);
1901 else
1902 break;
1903 }
1904
1905 if (ret)
1906 dev_err(hba->dev,
1907 "%s: query attribute, idn %d, failed with error %d after %d retires\n",
1908 __func__, idn, ret, QUERY_REQ_RETRIES);
1909 return ret;
1910}
1911
Yaniv Gardia70e91b2016-03-10 17:37:14 +02001912static int __ufshcd_query_descriptor(struct ufs_hba *hba,
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001913 enum query_opcode opcode, enum desc_idn idn, u8 index,
1914 u8 selector, u8 *desc_buf, int *buf_len)
1915{
1916 struct ufs_query_req *request = NULL;
1917 struct ufs_query_res *response = NULL;
1918 int err;
1919
1920 BUG_ON(!hba);
1921
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001922 ufshcd_hold(hba, false);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001923 if (!desc_buf) {
1924 dev_err(hba->dev, "%s: descriptor buffer required for opcode 0x%x\n",
1925 __func__, opcode);
1926 err = -EINVAL;
1927 goto out;
1928 }
1929
1930 if (*buf_len <= QUERY_DESC_MIN_SIZE || *buf_len > QUERY_DESC_MAX_SIZE) {
1931 dev_err(hba->dev, "%s: descriptor buffer size (%d) is out of range\n",
1932 __func__, *buf_len);
1933 err = -EINVAL;
1934 goto out;
1935 }
1936
1937 mutex_lock(&hba->dev_cmd.lock);
1938 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1939 selector);
1940 hba->dev_cmd.query.descriptor = desc_buf;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001941 request->upiu_req.length = cpu_to_be16(*buf_len);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001942
1943 switch (opcode) {
1944 case UPIU_QUERY_OPCODE_WRITE_DESC:
1945 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1946 break;
1947 case UPIU_QUERY_OPCODE_READ_DESC:
1948 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1949 break;
1950 default:
1951 dev_err(hba->dev,
1952 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
1953 __func__, opcode);
1954 err = -EINVAL;
1955 goto out_unlock;
1956 }
1957
1958 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
1959
1960 if (err) {
1961 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1962 __func__, opcode, idn, err);
1963 goto out_unlock;
1964 }
1965
1966 hba->dev_cmd.query.descriptor = NULL;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001967 *buf_len = be16_to_cpu(response->upiu_res.length);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001968
1969out_unlock:
1970 mutex_unlock(&hba->dev_cmd.lock);
1971out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001972 ufshcd_release(hba);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001973 return err;
1974}
1975
1976/**
Yaniv Gardia70e91b2016-03-10 17:37:14 +02001977 * ufshcd_query_descriptor_retry - API function for sending descriptor
1978 * requests
1979 * hba: per-adapter instance
1980 * opcode: attribute opcode
1981 * idn: attribute idn to access
1982 * index: index field
1983 * selector: selector field
1984 * desc_buf: the buffer that contains the descriptor
1985 * buf_len: length parameter passed to the device
1986 *
1987 * Returns 0 for success, non-zero in case of failure.
1988 * The buf_len parameter will contain, on return, the length parameter
1989 * received on the response.
1990 */
1991int ufshcd_query_descriptor_retry(struct ufs_hba *hba,
1992 enum query_opcode opcode, enum desc_idn idn, u8 index,
1993 u8 selector, u8 *desc_buf, int *buf_len)
1994{
1995 int err;
1996 int retries;
1997
1998 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
1999 err = __ufshcd_query_descriptor(hba, opcode, idn, index,
2000 selector, desc_buf, buf_len);
2001 if (!err || err == -EINVAL)
2002 break;
2003 }
2004
2005 return err;
2006}
2007EXPORT_SYMBOL(ufshcd_query_descriptor_retry);
2008
2009/**
Subhash Jadavanida461ce2014-09-25 15:32:25 +03002010 * ufshcd_read_desc_param - read the specified descriptor parameter
2011 * @hba: Pointer to adapter instance
2012 * @desc_id: descriptor idn value
2013 * @desc_index: descriptor index
2014 * @param_offset: offset of the parameter to read
2015 * @param_read_buf: pointer to buffer where parameter would be read
2016 * @param_size: sizeof(param_read_buf)
2017 *
2018 * Return 0 in case of success, non-zero otherwise
2019 */
2020static int ufshcd_read_desc_param(struct ufs_hba *hba,
2021 enum desc_idn desc_id,
2022 int desc_index,
2023 u32 param_offset,
2024 u8 *param_read_buf,
2025 u32 param_size)
2026{
2027 int ret;
2028 u8 *desc_buf;
2029 u32 buff_len;
2030 bool is_kmalloc = true;
2031
2032 /* safety checks */
2033 if (desc_id >= QUERY_DESC_IDN_MAX)
2034 return -EINVAL;
2035
2036 buff_len = ufs_query_desc_max_size[desc_id];
2037 if ((param_offset + param_size) > buff_len)
2038 return -EINVAL;
2039
2040 if (!param_offset && (param_size == buff_len)) {
2041 /* memory space already available to hold full descriptor */
2042 desc_buf = param_read_buf;
2043 is_kmalloc = false;
2044 } else {
2045 /* allocate memory to hold full descriptor */
2046 desc_buf = kmalloc(buff_len, GFP_KERNEL);
2047 if (!desc_buf)
2048 return -ENOMEM;
2049 }
2050
Yaniv Gardia70e91b2016-03-10 17:37:14 +02002051 ret = ufshcd_query_descriptor_retry(hba, UPIU_QUERY_OPCODE_READ_DESC,
2052 desc_id, desc_index, 0, desc_buf,
2053 &buff_len);
Subhash Jadavanida461ce2014-09-25 15:32:25 +03002054
2055 if (ret || (buff_len < ufs_query_desc_max_size[desc_id]) ||
2056 (desc_buf[QUERY_DESC_LENGTH_OFFSET] !=
2057 ufs_query_desc_max_size[desc_id])
2058 || (desc_buf[QUERY_DESC_DESC_TYPE_OFFSET] != desc_id)) {
2059 dev_err(hba->dev, "%s: Failed reading descriptor. desc_id %d param_offset %d buff_len %d ret %d",
2060 __func__, desc_id, param_offset, buff_len, ret);
2061 if (!ret)
2062 ret = -EINVAL;
2063
2064 goto out;
2065 }
2066
2067 if (is_kmalloc)
2068 memcpy(param_read_buf, &desc_buf[param_offset], param_size);
2069out:
2070 if (is_kmalloc)
2071 kfree(desc_buf);
2072 return ret;
2073}
2074
2075static inline int ufshcd_read_desc(struct ufs_hba *hba,
2076 enum desc_idn desc_id,
2077 int desc_index,
2078 u8 *buf,
2079 u32 size)
2080{
2081 return ufshcd_read_desc_param(hba, desc_id, desc_index, 0, buf, size);
2082}
2083
2084static inline int ufshcd_read_power_desc(struct ufs_hba *hba,
2085 u8 *buf,
2086 u32 size)
2087{
2088 return ufshcd_read_desc(hba, QUERY_DESC_IDN_POWER, 0, buf, size);
2089}
2090
Yaniv Gardib573d482016-03-10 17:37:09 +02002091int ufshcd_read_device_desc(struct ufs_hba *hba, u8 *buf, u32 size)
2092{
2093 return ufshcd_read_desc(hba, QUERY_DESC_IDN_DEVICE, 0, buf, size);
2094}
2095EXPORT_SYMBOL(ufshcd_read_device_desc);
2096
2097/**
2098 * ufshcd_read_string_desc - read string descriptor
2099 * @hba: pointer to adapter instance
2100 * @desc_index: descriptor index
2101 * @buf: pointer to buffer where descriptor would be read
2102 * @size: size of buf
2103 * @ascii: if true convert from unicode to ascii characters
2104 *
2105 * Return 0 in case of success, non-zero otherwise
2106 */
2107int ufshcd_read_string_desc(struct ufs_hba *hba, int desc_index, u8 *buf,
2108 u32 size, bool ascii)
2109{
2110 int err = 0;
2111
2112 err = ufshcd_read_desc(hba,
2113 QUERY_DESC_IDN_STRING, desc_index, buf, size);
2114
2115 if (err) {
2116 dev_err(hba->dev, "%s: reading String Desc failed after %d retries. err = %d\n",
2117 __func__, QUERY_REQ_RETRIES, err);
2118 goto out;
2119 }
2120
2121 if (ascii) {
2122 int desc_len;
2123 int ascii_len;
2124 int i;
2125 char *buff_ascii;
2126
2127 desc_len = buf[0];
2128 /* remove header and divide by 2 to move from UTF16 to UTF8 */
2129 ascii_len = (desc_len - QUERY_DESC_HDR_SIZE) / 2 + 1;
2130 if (size < ascii_len + QUERY_DESC_HDR_SIZE) {
2131 dev_err(hba->dev, "%s: buffer allocated size is too small\n",
2132 __func__);
2133 err = -ENOMEM;
2134 goto out;
2135 }
2136
2137 buff_ascii = kmalloc(ascii_len, GFP_KERNEL);
2138 if (!buff_ascii) {
2139 err = -ENOMEM;
Tiezhu Yangfcbefc32016-06-25 12:35:22 +08002140 goto out;
Yaniv Gardib573d482016-03-10 17:37:09 +02002141 }
2142
2143 /*
2144 * the descriptor contains string in UTF16 format
2145 * we need to convert to utf-8 so it can be displayed
2146 */
2147 utf16s_to_utf8s((wchar_t *)&buf[QUERY_DESC_HDR_SIZE],
2148 desc_len - QUERY_DESC_HDR_SIZE,
2149 UTF16_BIG_ENDIAN, buff_ascii, ascii_len);
2150
2151 /* replace non-printable or non-ASCII characters with spaces */
2152 for (i = 0; i < ascii_len; i++)
2153 ufshcd_remove_non_printable(&buff_ascii[i]);
2154
2155 memset(buf + QUERY_DESC_HDR_SIZE, 0,
2156 size - QUERY_DESC_HDR_SIZE);
2157 memcpy(buf + QUERY_DESC_HDR_SIZE, buff_ascii, ascii_len);
2158 buf[QUERY_DESC_LENGTH_OFFSET] = ascii_len + QUERY_DESC_HDR_SIZE;
Yaniv Gardib573d482016-03-10 17:37:09 +02002159 kfree(buff_ascii);
2160 }
2161out:
2162 return err;
2163}
2164EXPORT_SYMBOL(ufshcd_read_string_desc);
2165
Subhash Jadavanida461ce2014-09-25 15:32:25 +03002166/**
2167 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
2168 * @hba: Pointer to adapter instance
2169 * @lun: lun id
2170 * @param_offset: offset of the parameter to read
2171 * @param_read_buf: pointer to buffer where parameter would be read
2172 * @param_size: sizeof(param_read_buf)
2173 *
2174 * Return 0 in case of success, non-zero otherwise
2175 */
2176static inline int ufshcd_read_unit_desc_param(struct ufs_hba *hba,
2177 int lun,
2178 enum unit_desc_param param_offset,
2179 u8 *param_read_buf,
2180 u32 param_size)
2181{
2182 /*
2183 * Unit descriptors are only available for general purpose LUs (LUN id
2184 * from 0 to 7) and RPMB Well known LU.
2185 */
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002186 if (lun != UFS_UPIU_RPMB_WLUN && (lun >= UFS_UPIU_MAX_GENERAL_LUN))
Subhash Jadavanida461ce2014-09-25 15:32:25 +03002187 return -EOPNOTSUPP;
2188
2189 return ufshcd_read_desc_param(hba, QUERY_DESC_IDN_UNIT, lun,
2190 param_offset, param_read_buf, param_size);
2191}
2192
2193/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302194 * ufshcd_memory_alloc - allocate memory for host memory space data structures
2195 * @hba: per adapter instance
2196 *
2197 * 1. Allocate DMA memory for Command Descriptor array
2198 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
2199 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
2200 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
2201 * (UTMRDL)
2202 * 4. Allocate memory for local reference block(lrb).
2203 *
2204 * Returns 0 for success, non-zero in case of failure
2205 */
2206static int ufshcd_memory_alloc(struct ufs_hba *hba)
2207{
2208 size_t utmrdl_size, utrdl_size, ucdl_size;
2209
2210 /* Allocate memory for UTP command descriptors */
2211 ucdl_size = (sizeof(struct utp_transfer_cmd_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09002212 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
2213 ucdl_size,
2214 &hba->ucdl_dma_addr,
2215 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302216
2217 /*
2218 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
2219 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
2220 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
2221 * be aligned to 128 bytes as well
2222 */
2223 if (!hba->ucdl_base_addr ||
2224 WARN_ON(hba->ucdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302225 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302226 "Command Descriptor Memory allocation failed\n");
2227 goto out;
2228 }
2229
2230 /*
2231 * Allocate memory for UTP Transfer descriptors
2232 * UFSHCI requires 1024 byte alignment of UTRD
2233 */
2234 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09002235 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
2236 utrdl_size,
2237 &hba->utrdl_dma_addr,
2238 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302239 if (!hba->utrdl_base_addr ||
2240 WARN_ON(hba->utrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302241 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302242 "Transfer Descriptor Memory allocation failed\n");
2243 goto out;
2244 }
2245
2246 /*
2247 * Allocate memory for UTP Task Management descriptors
2248 * UFSHCI requires 1024 byte alignment of UTMRD
2249 */
2250 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
Seungwon Jeon2953f852013-06-27 13:31:54 +09002251 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
2252 utmrdl_size,
2253 &hba->utmrdl_dma_addr,
2254 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302255 if (!hba->utmrdl_base_addr ||
2256 WARN_ON(hba->utmrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302257 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302258 "Task Management Descriptor Memory allocation failed\n");
2259 goto out;
2260 }
2261
2262 /* Allocate memory for local reference block */
Seungwon Jeon2953f852013-06-27 13:31:54 +09002263 hba->lrb = devm_kzalloc(hba->dev,
2264 hba->nutrs * sizeof(struct ufshcd_lrb),
2265 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302266 if (!hba->lrb) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302267 dev_err(hba->dev, "LRB Memory allocation failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302268 goto out;
2269 }
2270 return 0;
2271out:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302272 return -ENOMEM;
2273}
2274
2275/**
2276 * ufshcd_host_memory_configure - configure local reference block with
2277 * memory offsets
2278 * @hba: per adapter instance
2279 *
2280 * Configure Host memory space
2281 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
2282 * address.
2283 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
2284 * and PRDT offset.
2285 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
2286 * into local reference block.
2287 */
2288static void ufshcd_host_memory_configure(struct ufs_hba *hba)
2289{
2290 struct utp_transfer_cmd_desc *cmd_descp;
2291 struct utp_transfer_req_desc *utrdlp;
2292 dma_addr_t cmd_desc_dma_addr;
2293 dma_addr_t cmd_desc_element_addr;
2294 u16 response_offset;
2295 u16 prdt_offset;
2296 int cmd_desc_size;
2297 int i;
2298
2299 utrdlp = hba->utrdl_base_addr;
2300 cmd_descp = hba->ucdl_base_addr;
2301
2302 response_offset =
2303 offsetof(struct utp_transfer_cmd_desc, response_upiu);
2304 prdt_offset =
2305 offsetof(struct utp_transfer_cmd_desc, prd_table);
2306
2307 cmd_desc_size = sizeof(struct utp_transfer_cmd_desc);
2308 cmd_desc_dma_addr = hba->ucdl_dma_addr;
2309
2310 for (i = 0; i < hba->nutrs; i++) {
2311 /* Configure UTRD with command descriptor base address */
2312 cmd_desc_element_addr =
2313 (cmd_desc_dma_addr + (cmd_desc_size * i));
2314 utrdlp[i].command_desc_base_addr_lo =
2315 cpu_to_le32(lower_32_bits(cmd_desc_element_addr));
2316 utrdlp[i].command_desc_base_addr_hi =
2317 cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
2318
2319 /* Response upiu and prdt offset should be in double words */
2320 utrdlp[i].response_upiu_offset =
2321 cpu_to_le16((response_offset >> 2));
2322 utrdlp[i].prd_table_offset =
2323 cpu_to_le16((prdt_offset >> 2));
2324 utrdlp[i].response_upiu_length =
Sujit Reddy Thumma3ca316c2013-06-26 22:39:30 +05302325 cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302326
2327 hba->lrb[i].utr_descriptor_ptr = (utrdlp + i);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302328 hba->lrb[i].ucd_req_ptr =
2329 (struct utp_upiu_req *)(cmd_descp + i);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302330 hba->lrb[i].ucd_rsp_ptr =
2331 (struct utp_upiu_rsp *)cmd_descp[i].response_upiu;
2332 hba->lrb[i].ucd_prdt_ptr =
2333 (struct ufshcd_sg_entry *)cmd_descp[i].prd_table;
2334 }
2335}
2336
2337/**
2338 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
2339 * @hba: per adapter instance
2340 *
2341 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
2342 * in order to initialize the Unipro link startup procedure.
2343 * Once the Unipro links are up, the device connected to the controller
2344 * is detected.
2345 *
2346 * Returns 0 on success, non-zero value on failure
2347 */
2348static int ufshcd_dme_link_startup(struct ufs_hba *hba)
2349{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302350 struct uic_command uic_cmd = {0};
2351 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302352
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302353 uic_cmd.command = UIC_CMD_DME_LINK_STARTUP;
2354
2355 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2356 if (ret)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302357 dev_err(hba->dev,
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302358 "dme-link-startup: error code %d\n", ret);
2359 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302360}
2361
Yaniv Gardicad2e032015-03-31 17:37:14 +03002362static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba *hba)
2363{
2364 #define MIN_DELAY_BEFORE_DME_CMDS_US 1000
2365 unsigned long min_sleep_time_us;
2366
2367 if (!(hba->quirks & UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS))
2368 return;
2369
2370 /*
2371 * last_dme_cmd_tstamp will be 0 only for 1st call to
2372 * this function
2373 */
2374 if (unlikely(!ktime_to_us(hba->last_dme_cmd_tstamp))) {
2375 min_sleep_time_us = MIN_DELAY_BEFORE_DME_CMDS_US;
2376 } else {
2377 unsigned long delta =
2378 (unsigned long) ktime_to_us(
2379 ktime_sub(ktime_get(),
2380 hba->last_dme_cmd_tstamp));
2381
2382 if (delta < MIN_DELAY_BEFORE_DME_CMDS_US)
2383 min_sleep_time_us =
2384 MIN_DELAY_BEFORE_DME_CMDS_US - delta;
2385 else
2386 return; /* no more delay required */
2387 }
2388
2389 /* allow sleep for extra 50us if needed */
2390 usleep_range(min_sleep_time_us, min_sleep_time_us + 50);
2391}
2392
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302393/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302394 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
2395 * @hba: per adapter instance
2396 * @attr_sel: uic command argument1
2397 * @attr_set: attribute set type as uic command argument2
2398 * @mib_val: setting value as uic command argument3
2399 * @peer: indicate whether peer or local
2400 *
2401 * Returns 0 on success, non-zero value on failure
2402 */
2403int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
2404 u8 attr_set, u32 mib_val, u8 peer)
2405{
2406 struct uic_command uic_cmd = {0};
2407 static const char *const action[] = {
2408 "dme-set",
2409 "dme-peer-set"
2410 };
2411 const char *set = action[!!peer];
2412 int ret;
Yaniv Gardi64238fb2016-02-01 15:02:43 +02002413 int retries = UFS_UIC_COMMAND_RETRIES;
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302414
2415 uic_cmd.command = peer ?
2416 UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET;
2417 uic_cmd.argument1 = attr_sel;
2418 uic_cmd.argument2 = UIC_ARG_ATTR_TYPE(attr_set);
2419 uic_cmd.argument3 = mib_val;
2420
Yaniv Gardi64238fb2016-02-01 15:02:43 +02002421 do {
2422 /* for peer attributes we retry upon failure */
2423 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2424 if (ret)
2425 dev_dbg(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
2426 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
2427 } while (ret && peer && --retries);
2428
2429 if (!retries)
2430 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x failed %d retries\n",
2431 set, UIC_GET_ATTR_ID(attr_sel), mib_val,
2432 retries);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302433
2434 return ret;
2435}
2436EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
2437
2438/**
2439 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
2440 * @hba: per adapter instance
2441 * @attr_sel: uic command argument1
2442 * @mib_val: the value of the attribute as returned by the UIC command
2443 * @peer: indicate whether peer or local
2444 *
2445 * Returns 0 on success, non-zero value on failure
2446 */
2447int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
2448 u32 *mib_val, u8 peer)
2449{
2450 struct uic_command uic_cmd = {0};
2451 static const char *const action[] = {
2452 "dme-get",
2453 "dme-peer-get"
2454 };
2455 const char *get = action[!!peer];
2456 int ret;
Yaniv Gardi64238fb2016-02-01 15:02:43 +02002457 int retries = UFS_UIC_COMMAND_RETRIES;
Yaniv Gardi874237f2015-05-17 18:55:03 +03002458 struct ufs_pa_layer_attr orig_pwr_info;
2459 struct ufs_pa_layer_attr temp_pwr_info;
2460 bool pwr_mode_change = false;
2461
2462 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)) {
2463 orig_pwr_info = hba->pwr_info;
2464 temp_pwr_info = orig_pwr_info;
2465
2466 if (orig_pwr_info.pwr_tx == FAST_MODE ||
2467 orig_pwr_info.pwr_rx == FAST_MODE) {
2468 temp_pwr_info.pwr_tx = FASTAUTO_MODE;
2469 temp_pwr_info.pwr_rx = FASTAUTO_MODE;
2470 pwr_mode_change = true;
2471 } else if (orig_pwr_info.pwr_tx == SLOW_MODE ||
2472 orig_pwr_info.pwr_rx == SLOW_MODE) {
2473 temp_pwr_info.pwr_tx = SLOWAUTO_MODE;
2474 temp_pwr_info.pwr_rx = SLOWAUTO_MODE;
2475 pwr_mode_change = true;
2476 }
2477 if (pwr_mode_change) {
2478 ret = ufshcd_change_power_mode(hba, &temp_pwr_info);
2479 if (ret)
2480 goto out;
2481 }
2482 }
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302483
2484 uic_cmd.command = peer ?
2485 UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET;
2486 uic_cmd.argument1 = attr_sel;
2487
Yaniv Gardi64238fb2016-02-01 15:02:43 +02002488 do {
2489 /* for peer attributes we retry upon failure */
2490 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2491 if (ret)
2492 dev_dbg(hba->dev, "%s: attr-id 0x%x error code %d\n",
2493 get, UIC_GET_ATTR_ID(attr_sel), ret);
2494 } while (ret && peer && --retries);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302495
Yaniv Gardi64238fb2016-02-01 15:02:43 +02002496 if (!retries)
2497 dev_err(hba->dev, "%s: attr-id 0x%x failed %d retries\n",
2498 get, UIC_GET_ATTR_ID(attr_sel), retries);
2499
2500 if (mib_val && !ret)
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302501 *mib_val = uic_cmd.argument3;
Yaniv Gardi874237f2015-05-17 18:55:03 +03002502
2503 if (peer && (hba->quirks & UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE)
2504 && pwr_mode_change)
2505 ufshcd_change_power_mode(hba, &orig_pwr_info);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302506out:
2507 return ret;
2508}
2509EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
2510
2511/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002512 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
2513 * state) and waits for it to take effect.
2514 *
2515 * @hba: per adapter instance
2516 * @cmd: UIC command to execute
2517 *
2518 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
2519 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
2520 * and device UniPro link and hence it's final completion would be indicated by
2521 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
2522 * addition to normal UIC command completion Status (UCCS). This function only
2523 * returns after the relevant status bits indicate the completion.
2524 *
2525 * Returns 0 on success, non-zero value on failure
2526 */
2527static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
2528{
2529 struct completion uic_async_done;
2530 unsigned long flags;
2531 u8 status;
2532 int ret;
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02002533 bool reenable_intr = false;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002534
2535 mutex_lock(&hba->uic_cmd_mutex);
2536 init_completion(&uic_async_done);
Yaniv Gardicad2e032015-03-31 17:37:14 +03002537 ufshcd_add_delay_before_dme_cmd(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002538
2539 spin_lock_irqsave(hba->host->host_lock, flags);
2540 hba->uic_async_done = &uic_async_done;
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02002541 if (ufshcd_readl(hba, REG_INTERRUPT_ENABLE) & UIC_COMMAND_COMPL) {
2542 ufshcd_disable_intr(hba, UIC_COMMAND_COMPL);
2543 /*
2544 * Make sure UIC command completion interrupt is disabled before
2545 * issuing UIC command.
2546 */
2547 wmb();
2548 reenable_intr = true;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002549 }
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02002550 ret = __ufshcd_send_uic_cmd(hba, cmd, false);
2551 spin_unlock_irqrestore(hba->host->host_lock, flags);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002552 if (ret) {
2553 dev_err(hba->dev,
2554 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
2555 cmd->command, cmd->argument3, ret);
2556 goto out;
2557 }
2558
2559 if (!wait_for_completion_timeout(hba->uic_async_done,
2560 msecs_to_jiffies(UIC_CMD_TIMEOUT))) {
2561 dev_err(hba->dev,
2562 "pwr ctrl cmd 0x%x with mode 0x%x completion timeout\n",
2563 cmd->command, cmd->argument3);
2564 ret = -ETIMEDOUT;
2565 goto out;
2566 }
2567
2568 status = ufshcd_get_upmcrs(hba);
2569 if (status != PWR_LOCAL) {
2570 dev_err(hba->dev,
Kiwoong Kim73615422016-09-08 16:50:02 +09002571 "pwr ctrl cmd 0x%0x failed, host upmcrs:0x%x\n",
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002572 cmd->command, status);
2573 ret = (status != PWR_OK) ? status : -1;
2574 }
2575out:
2576 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02002577 hba->active_uic_cmd = NULL;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002578 hba->uic_async_done = NULL;
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02002579 if (reenable_intr)
2580 ufshcd_enable_intr(hba, UIC_COMMAND_COMPL);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002581 spin_unlock_irqrestore(hba->host->host_lock, flags);
2582 mutex_unlock(&hba->uic_cmd_mutex);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002583
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002584 return ret;
2585}
2586
2587/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302588 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
2589 * using DME_SET primitives.
2590 * @hba: per adapter instance
2591 * @mode: powr mode value
2592 *
2593 * Returns 0 on success, non-zero value on failure
2594 */
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05302595static int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302596{
2597 struct uic_command uic_cmd = {0};
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002598 int ret;
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302599
Yaniv Gardic3a2f9e2015-05-17 18:55:01 +03002600 if (hba->quirks & UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP) {
2601 ret = ufshcd_dme_set(hba,
2602 UIC_ARG_MIB_SEL(PA_RXHSUNTERMCAP, 0), 1);
2603 if (ret) {
2604 dev_err(hba->dev, "%s: failed to enable PA_RXHSUNTERMCAP ret %d\n",
2605 __func__, ret);
2606 goto out;
2607 }
2608 }
2609
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302610 uic_cmd.command = UIC_CMD_DME_SET;
2611 uic_cmd.argument1 = UIC_ARG_MIB(PA_PWRMODE);
2612 uic_cmd.argument3 = mode;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002613 ufshcd_hold(hba, false);
2614 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
2615 ufshcd_release(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302616
Yaniv Gardic3a2f9e2015-05-17 18:55:01 +03002617out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002618 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002619}
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302620
Yaniv Gardi53c12d02016-02-01 15:02:45 +02002621static int ufshcd_link_recovery(struct ufs_hba *hba)
2622{
2623 int ret;
2624 unsigned long flags;
2625
2626 spin_lock_irqsave(hba->host->host_lock, flags);
2627 hba->ufshcd_state = UFSHCD_STATE_RESET;
2628 ufshcd_set_eh_in_progress(hba);
2629 spin_unlock_irqrestore(hba->host->host_lock, flags);
2630
2631 ret = ufshcd_host_reset_and_restore(hba);
2632
2633 spin_lock_irqsave(hba->host->host_lock, flags);
2634 if (ret)
2635 hba->ufshcd_state = UFSHCD_STATE_ERROR;
2636 ufshcd_clear_eh_in_progress(hba);
2637 spin_unlock_irqrestore(hba->host->host_lock, flags);
2638
2639 if (ret)
2640 dev_err(hba->dev, "%s: link recovery failed, err %d",
2641 __func__, ret);
2642
2643 return ret;
2644}
2645
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02002646static int __ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002647{
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02002648 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002649 struct uic_command uic_cmd = {0};
2650
2651 uic_cmd.command = UIC_CMD_DME_HIBER_ENTER;
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02002652 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002653
Yaniv Gardi53c12d02016-02-01 15:02:45 +02002654 if (ret) {
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02002655 dev_err(hba->dev, "%s: hibern8 enter failed. ret = %d\n",
2656 __func__, ret);
2657
Yaniv Gardi53c12d02016-02-01 15:02:45 +02002658 /*
2659 * If link recovery fails then return error so that caller
2660 * don't retry the hibern8 enter again.
2661 */
2662 if (ufshcd_link_recovery(hba))
2663 ret = -ENOLINK;
2664 }
2665
Yaniv Gardi87d0b4a2016-02-01 15:02:44 +02002666 return ret;
2667}
2668
2669static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
2670{
2671 int ret = 0, retries;
2672
2673 for (retries = UIC_HIBERN8_ENTER_RETRIES; retries > 0; retries--) {
2674 ret = __ufshcd_uic_hibern8_enter(hba);
2675 if (!ret || ret == -ENOLINK)
2676 goto out;
2677 }
2678out:
2679 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002680}
2681
2682static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba)
2683{
2684 struct uic_command uic_cmd = {0};
2685 int ret;
2686
2687 uic_cmd.command = UIC_CMD_DME_HIBER_EXIT;
2688 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302689 if (ret) {
Yaniv Gardi53c12d02016-02-01 15:02:45 +02002690 dev_err(hba->dev, "%s: hibern8 exit failed. ret = %d\n",
2691 __func__, ret);
2692 ret = ufshcd_link_recovery(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302693 }
2694
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302695 return ret;
2696}
2697
Yaniv Gardi50646362014-10-23 13:25:13 +03002698 /**
2699 * ufshcd_init_pwr_info - setting the POR (power on reset)
2700 * values in hba power info
2701 * @hba: per-adapter instance
2702 */
2703static void ufshcd_init_pwr_info(struct ufs_hba *hba)
2704{
2705 hba->pwr_info.gear_rx = UFS_PWM_G1;
2706 hba->pwr_info.gear_tx = UFS_PWM_G1;
2707 hba->pwr_info.lane_rx = 1;
2708 hba->pwr_info.lane_tx = 1;
2709 hba->pwr_info.pwr_rx = SLOWAUTO_MODE;
2710 hba->pwr_info.pwr_tx = SLOWAUTO_MODE;
2711 hba->pwr_info.hs_rate = 0;
2712}
2713
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302714/**
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002715 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
2716 * @hba: per-adapter instance
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302717 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002718static int ufshcd_get_max_pwr_mode(struct ufs_hba *hba)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302719{
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002720 struct ufs_pa_layer_attr *pwr_info = &hba->max_pwr_info.info;
2721
2722 if (hba->max_pwr_info.is_valid)
2723 return 0;
2724
2725 pwr_info->pwr_tx = FASTAUTO_MODE;
2726 pwr_info->pwr_rx = FASTAUTO_MODE;
2727 pwr_info->hs_rate = PA_HS_MODE_B;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302728
2729 /* Get the connected lane count */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002730 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
2731 &pwr_info->lane_rx);
2732 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
2733 &pwr_info->lane_tx);
2734
2735 if (!pwr_info->lane_rx || !pwr_info->lane_tx) {
2736 dev_err(hba->dev, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
2737 __func__,
2738 pwr_info->lane_rx,
2739 pwr_info->lane_tx);
2740 return -EINVAL;
2741 }
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302742
2743 /*
2744 * First, get the maximum gears of HS speed.
2745 * If a zero value, it means there is no HSGEAR capability.
2746 * Then, get the maximum gears of PWM speed.
2747 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002748 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &pwr_info->gear_rx);
2749 if (!pwr_info->gear_rx) {
2750 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
2751 &pwr_info->gear_rx);
2752 if (!pwr_info->gear_rx) {
2753 dev_err(hba->dev, "%s: invalid max pwm rx gear read = %d\n",
2754 __func__, pwr_info->gear_rx);
2755 return -EINVAL;
2756 }
2757 pwr_info->pwr_rx = SLOWAUTO_MODE;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302758 }
2759
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002760 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR),
2761 &pwr_info->gear_tx);
2762 if (!pwr_info->gear_tx) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302763 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002764 &pwr_info->gear_tx);
2765 if (!pwr_info->gear_tx) {
2766 dev_err(hba->dev, "%s: invalid max pwm tx gear read = %d\n",
2767 __func__, pwr_info->gear_tx);
2768 return -EINVAL;
2769 }
2770 pwr_info->pwr_tx = SLOWAUTO_MODE;
2771 }
2772
2773 hba->max_pwr_info.is_valid = true;
2774 return 0;
2775}
2776
2777static int ufshcd_change_power_mode(struct ufs_hba *hba,
2778 struct ufs_pa_layer_attr *pwr_mode)
2779{
2780 int ret;
2781
2782 /* if already configured to the requested pwr_mode */
2783 if (pwr_mode->gear_rx == hba->pwr_info.gear_rx &&
2784 pwr_mode->gear_tx == hba->pwr_info.gear_tx &&
2785 pwr_mode->lane_rx == hba->pwr_info.lane_rx &&
2786 pwr_mode->lane_tx == hba->pwr_info.lane_tx &&
2787 pwr_mode->pwr_rx == hba->pwr_info.pwr_rx &&
2788 pwr_mode->pwr_tx == hba->pwr_info.pwr_tx &&
2789 pwr_mode->hs_rate == hba->pwr_info.hs_rate) {
2790 dev_dbg(hba->dev, "%s: power already configured\n", __func__);
2791 return 0;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302792 }
2793
2794 /*
2795 * Configure attributes for power mode change with below.
2796 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
2797 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
2798 * - PA_HSSERIES
2799 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002800 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), pwr_mode->gear_rx);
2801 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES),
2802 pwr_mode->lane_rx);
2803 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
2804 pwr_mode->pwr_rx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302805 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002806 else
2807 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302808
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002809 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), pwr_mode->gear_tx);
2810 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES),
2811 pwr_mode->lane_tx);
2812 if (pwr_mode->pwr_tx == FASTAUTO_MODE ||
2813 pwr_mode->pwr_tx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302814 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002815 else
2816 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302817
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002818 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
2819 pwr_mode->pwr_tx == FASTAUTO_MODE ||
2820 pwr_mode->pwr_rx == FAST_MODE ||
2821 pwr_mode->pwr_tx == FAST_MODE)
2822 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES),
2823 pwr_mode->hs_rate);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302824
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002825 ret = ufshcd_uic_change_pwr_mode(hba, pwr_mode->pwr_rx << 4
2826 | pwr_mode->pwr_tx);
2827
2828 if (ret) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302829 dev_err(hba->dev,
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002830 "%s: power mode change failed %d\n", __func__, ret);
2831 } else {
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02002832 ufshcd_vops_pwr_change_notify(hba, POST_CHANGE, NULL,
2833 pwr_mode);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002834
2835 memcpy(&hba->pwr_info, pwr_mode,
2836 sizeof(struct ufs_pa_layer_attr));
2837 }
2838
2839 return ret;
2840}
2841
2842/**
2843 * ufshcd_config_pwr_mode - configure a new power mode
2844 * @hba: per-adapter instance
2845 * @desired_pwr_mode: desired power configuration
2846 */
2847static int ufshcd_config_pwr_mode(struct ufs_hba *hba,
2848 struct ufs_pa_layer_attr *desired_pwr_mode)
2849{
2850 struct ufs_pa_layer_attr final_params = { 0 };
2851 int ret;
2852
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02002853 ret = ufshcd_vops_pwr_change_notify(hba, PRE_CHANGE,
2854 desired_pwr_mode, &final_params);
2855
2856 if (ret)
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002857 memcpy(&final_params, desired_pwr_mode, sizeof(final_params));
2858
2859 ret = ufshcd_change_power_mode(hba, &final_params);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302860
2861 return ret;
2862}
2863
2864/**
Dolev Raviv68078d52013-07-30 00:35:58 +05302865 * ufshcd_complete_dev_init() - checks device readiness
2866 * hba: per-adapter instance
2867 *
2868 * Set fDeviceInit flag and poll until device toggles it.
2869 */
2870static int ufshcd_complete_dev_init(struct ufs_hba *hba)
2871{
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02002872 int i;
2873 int err;
Dolev Raviv68078d52013-07-30 00:35:58 +05302874 bool flag_res = 1;
2875
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02002876 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
2877 QUERY_FLAG_IDN_FDEVICEINIT, NULL);
Dolev Raviv68078d52013-07-30 00:35:58 +05302878 if (err) {
2879 dev_err(hba->dev,
2880 "%s setting fDeviceInit flag failed with error %d\n",
2881 __func__, err);
2882 goto out;
2883 }
2884
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02002885 /* poll for max. 1000 iterations for fDeviceInit flag to clear */
2886 for (i = 0; i < 1000 && !err && flag_res; i++)
2887 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
2888 QUERY_FLAG_IDN_FDEVICEINIT, &flag_res);
2889
Dolev Raviv68078d52013-07-30 00:35:58 +05302890 if (err)
2891 dev_err(hba->dev,
2892 "%s reading fDeviceInit flag failed with error %d\n",
2893 __func__, err);
2894 else if (flag_res)
2895 dev_err(hba->dev,
2896 "%s fDeviceInit was not cleared by the device\n",
2897 __func__);
2898
2899out:
2900 return err;
2901}
2902
2903/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302904 * ufshcd_make_hba_operational - Make UFS controller operational
2905 * @hba: per adapter instance
2906 *
2907 * To bring UFS host controller to operational state,
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002908 * 1. Enable required interrupts
2909 * 2. Configure interrupt aggregation
Yaniv Gardi897efe62016-02-01 15:02:48 +02002910 * 3. Program UTRL and UTMRL base address
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002911 * 4. Configure run-stop-registers
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302912 *
2913 * Returns 0 on success, non-zero value on failure
2914 */
2915static int ufshcd_make_hba_operational(struct ufs_hba *hba)
2916{
2917 int err = 0;
2918 u32 reg;
2919
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302920 /* Enable required interrupts */
2921 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
2922
2923 /* Configure interrupt aggregation */
Yaniv Gardib8521902015-05-17 18:54:57 +03002924 if (ufshcd_is_intr_aggr_allowed(hba))
2925 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
2926 else
2927 ufshcd_disable_intr_aggr(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302928
2929 /* Configure UTRL and UTMRL base address registers */
2930 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
2931 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
2932 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
2933 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
2934 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
2935 REG_UTP_TASK_REQ_LIST_BASE_L);
2936 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
2937 REG_UTP_TASK_REQ_LIST_BASE_H);
2938
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302939 /*
Yaniv Gardi897efe62016-02-01 15:02:48 +02002940 * Make sure base address and interrupt setup are updated before
2941 * enabling the run/stop registers below.
2942 */
2943 wmb();
2944
2945 /*
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302946 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302947 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002948 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302949 if (!(ufshcd_get_lists_status(reg))) {
2950 ufshcd_enable_run_stop_reg(hba);
2951 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302952 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302953 "Host controller not ready to process requests");
2954 err = -EIO;
2955 goto out;
2956 }
2957
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302958out:
2959 return err;
2960}
2961
2962/**
Yaniv Gardi596585a2016-03-10 17:37:08 +02002963 * ufshcd_hba_stop - Send controller to reset state
2964 * @hba: per adapter instance
2965 * @can_sleep: perform sleep or just spin
2966 */
2967static inline void ufshcd_hba_stop(struct ufs_hba *hba, bool can_sleep)
2968{
2969 int err;
2970
2971 ufshcd_writel(hba, CONTROLLER_DISABLE, REG_CONTROLLER_ENABLE);
2972 err = ufshcd_wait_for_register(hba, REG_CONTROLLER_ENABLE,
2973 CONTROLLER_ENABLE, CONTROLLER_DISABLE,
2974 10, 1, can_sleep);
2975 if (err)
2976 dev_err(hba->dev, "%s: Controller disable failed\n", __func__);
2977}
2978
2979/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302980 * ufshcd_hba_enable - initialize the controller
2981 * @hba: per adapter instance
2982 *
2983 * The controller resets itself and controller firmware initialization
2984 * sequence kicks off. When controller is ready it will set
2985 * the Host Controller Enable bit to 1.
2986 *
2987 * Returns 0 on success, non-zero value on failure
2988 */
2989static int ufshcd_hba_enable(struct ufs_hba *hba)
2990{
2991 int retry;
2992
2993 /*
2994 * msleep of 1 and 5 used in this function might result in msleep(20),
2995 * but it was necessary to send the UFS FPGA to reset mode during
2996 * development and testing of this driver. msleep can be changed to
2997 * mdelay and retry count can be reduced based on the controller.
2998 */
Yaniv Gardi596585a2016-03-10 17:37:08 +02002999 if (!ufshcd_is_hba_active(hba))
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303000 /* change controller state to "reset state" */
Yaniv Gardi596585a2016-03-10 17:37:08 +02003001 ufshcd_hba_stop(hba, true);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303002
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003003 /* UniPro link is disabled at this point */
3004 ufshcd_set_link_off(hba);
3005
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02003006 ufshcd_vops_hce_enable_notify(hba, PRE_CHANGE);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03003007
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303008 /* start controller initialization sequence */
3009 ufshcd_hba_start(hba);
3010
3011 /*
3012 * To initialize a UFS host controller HCE bit must be set to 1.
3013 * During initialization the HCE bit value changes from 1->0->1.
3014 * When the host controller completes initialization sequence
3015 * it sets the value of HCE bit to 1. The same HCE bit is read back
3016 * to check if the controller has completed initialization sequence.
3017 * So without this delay the value HCE = 1, set in the previous
3018 * instruction might be read back.
3019 * This delay can be changed based on the controller.
3020 */
3021 msleep(1);
3022
3023 /* wait for the host controller to complete initialization */
3024 retry = 10;
3025 while (ufshcd_is_hba_active(hba)) {
3026 if (retry) {
3027 retry--;
3028 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303029 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303030 "Controller enable failed\n");
3031 return -EIO;
3032 }
3033 msleep(5);
3034 }
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03003035
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003036 /* enable UIC related interrupts */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003037 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003038
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02003039 ufshcd_vops_hce_enable_notify(hba, POST_CHANGE);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03003040
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303041 return 0;
3042}
3043
Yaniv Gardi7ca38cf2015-05-17 18:54:59 +03003044static int ufshcd_disable_tx_lcc(struct ufs_hba *hba, bool peer)
3045{
3046 int tx_lanes, i, err = 0;
3047
3048 if (!peer)
3049 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
3050 &tx_lanes);
3051 else
3052 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
3053 &tx_lanes);
3054 for (i = 0; i < tx_lanes; i++) {
3055 if (!peer)
3056 err = ufshcd_dme_set(hba,
3057 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
3058 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
3059 0);
3060 else
3061 err = ufshcd_dme_peer_set(hba,
3062 UIC_ARG_MIB_SEL(TX_LCC_ENABLE,
3063 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i)),
3064 0);
3065 if (err) {
3066 dev_err(hba->dev, "%s: TX LCC Disable failed, peer = %d, lane = %d, err = %d",
3067 __func__, peer, i, err);
3068 break;
3069 }
3070 }
3071
3072 return err;
3073}
3074
3075static inline int ufshcd_disable_device_tx_lcc(struct ufs_hba *hba)
3076{
3077 return ufshcd_disable_tx_lcc(hba, true);
3078}
3079
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303080/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303081 * ufshcd_link_startup - Initialize unipro link startup
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303082 * @hba: per adapter instance
3083 *
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303084 * Returns 0 for success, non-zero in case of failure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303085 */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303086static int ufshcd_link_startup(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303087{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303088 int ret;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003089 int retries = DME_LINKSTARTUP_RETRIES;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303090
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003091 do {
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02003092 ufshcd_vops_link_startup_notify(hba, PRE_CHANGE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303093
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003094 ret = ufshcd_dme_link_startup(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03003095
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003096 /* check if device is detected by inter-connect layer */
3097 if (!ret && !ufshcd_is_device_present(hba)) {
3098 dev_err(hba->dev, "%s: Device not present\n", __func__);
3099 ret = -ENXIO;
3100 goto out;
3101 }
3102
3103 /*
3104 * DME link lost indication is only received when link is up,
3105 * but we can't be sure if the link is up until link startup
3106 * succeeds. So reset the local Uni-Pro and try again.
3107 */
3108 if (ret && ufshcd_hba_enable(hba))
3109 goto out;
3110 } while (ret && retries--);
3111
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303112 if (ret)
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003113 /* failed to get the link up... retire */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303114 goto out;
3115
Yaniv Gardi7ca38cf2015-05-17 18:54:59 +03003116 if (hba->quirks & UFSHCD_QUIRK_BROKEN_LCC) {
3117 ret = ufshcd_disable_device_tx_lcc(hba);
3118 if (ret)
3119 goto out;
3120 }
3121
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03003122 /* Include any host controller configuration via UIC commands */
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02003123 ret = ufshcd_vops_link_startup_notify(hba, POST_CHANGE);
3124 if (ret)
3125 goto out;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03003126
3127 ret = ufshcd_make_hba_operational(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303128out:
3129 if (ret)
3130 dev_err(hba->dev, "link startup failed %d\n", ret);
3131 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303132}
3133
3134/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303135 * ufshcd_verify_dev_init() - Verify device initialization
3136 * @hba: per-adapter instance
3137 *
3138 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
3139 * device Transport Protocol (UTP) layer is ready after a reset.
3140 * If the UTP layer at the device side is not initialized, it may
3141 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
3142 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
3143 */
3144static int ufshcd_verify_dev_init(struct ufs_hba *hba)
3145{
3146 int err = 0;
3147 int retries;
3148
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003149 ufshcd_hold(hba, false);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303150 mutex_lock(&hba->dev_cmd.lock);
3151 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
3152 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
3153 NOP_OUT_TIMEOUT);
3154
3155 if (!err || err == -ETIMEDOUT)
3156 break;
3157
3158 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
3159 }
3160 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003161 ufshcd_release(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303162
3163 if (err)
3164 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
3165 return err;
3166}
3167
3168/**
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003169 * ufshcd_set_queue_depth - set lun queue depth
3170 * @sdev: pointer to SCSI device
3171 *
3172 * Read bLUQueueDepth value and activate scsi tagged command
3173 * queueing. For WLUN, queue depth is set to 1. For best-effort
3174 * cases (bLUQueueDepth = 0) the queue depth is set to a maximum
3175 * value that host can queue.
3176 */
3177static void ufshcd_set_queue_depth(struct scsi_device *sdev)
3178{
3179 int ret = 0;
3180 u8 lun_qdepth;
3181 struct ufs_hba *hba;
3182
3183 hba = shost_priv(sdev->host);
3184
3185 lun_qdepth = hba->nutrs;
3186 ret = ufshcd_read_unit_desc_param(hba,
3187 ufshcd_scsi_to_upiu_lun(sdev->lun),
3188 UNIT_DESC_PARAM_LU_Q_DEPTH,
3189 &lun_qdepth,
3190 sizeof(lun_qdepth));
3191
3192 /* Some WLUN doesn't support unit descriptor */
3193 if (ret == -EOPNOTSUPP)
3194 lun_qdepth = 1;
3195 else if (!lun_qdepth)
3196 /* eventually, we can figure out the real queue depth */
3197 lun_qdepth = hba->nutrs;
3198 else
3199 lun_qdepth = min_t(int, lun_qdepth, hba->nutrs);
3200
3201 dev_dbg(hba->dev, "%s: activate tcq with queue depth %d\n",
3202 __func__, lun_qdepth);
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01003203 scsi_change_queue_depth(sdev, lun_qdepth);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003204}
3205
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003206/*
3207 * ufshcd_get_lu_wp - returns the "b_lu_write_protect" from UNIT DESCRIPTOR
3208 * @hba: per-adapter instance
3209 * @lun: UFS device lun id
3210 * @b_lu_write_protect: pointer to buffer to hold the LU's write protect info
3211 *
3212 * Returns 0 in case of success and b_lu_write_protect status would be returned
3213 * @b_lu_write_protect parameter.
3214 * Returns -ENOTSUPP if reading b_lu_write_protect is not supported.
3215 * Returns -EINVAL in case of invalid parameters passed to this function.
3216 */
3217static int ufshcd_get_lu_wp(struct ufs_hba *hba,
3218 u8 lun,
3219 u8 *b_lu_write_protect)
3220{
3221 int ret;
3222
3223 if (!b_lu_write_protect)
3224 ret = -EINVAL;
3225 /*
3226 * According to UFS device spec, RPMB LU can't be write
3227 * protected so skip reading bLUWriteProtect parameter for
3228 * it. For other W-LUs, UNIT DESCRIPTOR is not available.
3229 */
3230 else if (lun >= UFS_UPIU_MAX_GENERAL_LUN)
3231 ret = -ENOTSUPP;
3232 else
3233 ret = ufshcd_read_unit_desc_param(hba,
3234 lun,
3235 UNIT_DESC_PARAM_LU_WR_PROTECT,
3236 b_lu_write_protect,
3237 sizeof(*b_lu_write_protect));
3238 return ret;
3239}
3240
3241/**
3242 * ufshcd_get_lu_power_on_wp_status - get LU's power on write protect
3243 * status
3244 * @hba: per-adapter instance
3245 * @sdev: pointer to SCSI device
3246 *
3247 */
3248static inline void ufshcd_get_lu_power_on_wp_status(struct ufs_hba *hba,
3249 struct scsi_device *sdev)
3250{
3251 if (hba->dev_info.f_power_on_wp_en &&
3252 !hba->dev_info.is_lu_power_on_wp) {
3253 u8 b_lu_write_protect;
3254
3255 if (!ufshcd_get_lu_wp(hba, ufshcd_scsi_to_upiu_lun(sdev->lun),
3256 &b_lu_write_protect) &&
3257 (b_lu_write_protect == UFS_LU_POWER_ON_WP))
3258 hba->dev_info.is_lu_power_on_wp = true;
3259 }
3260}
3261
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003262/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303263 * ufshcd_slave_alloc - handle initial SCSI device configurations
3264 * @sdev: pointer to SCSI device
3265 *
3266 * Returns success
3267 */
3268static int ufshcd_slave_alloc(struct scsi_device *sdev)
3269{
3270 struct ufs_hba *hba;
3271
3272 hba = shost_priv(sdev->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303273
3274 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
3275 sdev->use_10_for_ms = 1;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303276
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303277 /* allow SCSI layer to restart the device in case of errors */
3278 sdev->allow_restart = 1;
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003279
Sujit Reddy Thummab2a6c522014-07-01 12:22:38 +03003280 /* REPORT SUPPORTED OPERATION CODES is not supported */
3281 sdev->no_report_opcodes = 1;
3282
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003283
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003284 ufshcd_set_queue_depth(sdev);
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003285
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003286 ufshcd_get_lu_power_on_wp_status(hba, sdev);
3287
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003288 return 0;
3289}
3290
3291/**
3292 * ufshcd_change_queue_depth - change queue depth
3293 * @sdev: pointer to SCSI device
3294 * @depth: required depth to set
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003295 *
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01003296 * Change queue depth and make sure the max. limits are not crossed.
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003297 */
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01003298static int ufshcd_change_queue_depth(struct scsi_device *sdev, int depth)
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03003299{
3300 struct ufs_hba *hba = shost_priv(sdev->host);
3301
3302 if (depth > hba->nutrs)
3303 depth = hba->nutrs;
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01003304 return scsi_change_queue_depth(sdev, depth);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303305}
3306
3307/**
Akinobu Mitaeeda4742014-07-01 23:00:32 +09003308 * ufshcd_slave_configure - adjust SCSI device configurations
3309 * @sdev: pointer to SCSI device
3310 */
3311static int ufshcd_slave_configure(struct scsi_device *sdev)
3312{
3313 struct request_queue *q = sdev->request_queue;
3314
3315 blk_queue_update_dma_pad(q, PRDT_DATA_BYTE_COUNT_PAD - 1);
3316 blk_queue_max_segment_size(q, PRDT_DATA_BYTE_COUNT_MAX);
3317
3318 return 0;
3319}
3320
3321/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303322 * ufshcd_slave_destroy - remove SCSI device configurations
3323 * @sdev: pointer to SCSI device
3324 */
3325static void ufshcd_slave_destroy(struct scsi_device *sdev)
3326{
3327 struct ufs_hba *hba;
3328
3329 hba = shost_priv(sdev->host);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003330 /* Drop the reference as it won't be needed anymore */
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03003331 if (ufshcd_scsi_to_upiu_lun(sdev->lun) == UFS_UPIU_UFS_DEVICE_WLUN) {
3332 unsigned long flags;
3333
3334 spin_lock_irqsave(hba->host->host_lock, flags);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003335 hba->sdev_ufs_device = NULL;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03003336 spin_unlock_irqrestore(hba->host->host_lock, flags);
3337 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303338}
3339
3340/**
3341 * ufshcd_task_req_compl - handle task management request completion
3342 * @hba: per adapter instance
3343 * @index: index of the completed request
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303344 * @resp: task management service response
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303345 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303346 * Returns non-zero value on error, zero on success
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303347 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303348static int ufshcd_task_req_compl(struct ufs_hba *hba, u32 index, u8 *resp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303349{
3350 struct utp_task_req_desc *task_req_descp;
3351 struct utp_upiu_task_rsp *task_rsp_upiup;
3352 unsigned long flags;
3353 int ocs_value;
3354 int task_result;
3355
3356 spin_lock_irqsave(hba->host->host_lock, flags);
3357
3358 /* Clear completed tasks from outstanding_tasks */
3359 __clear_bit(index, &hba->outstanding_tasks);
3360
3361 task_req_descp = hba->utmrdl_base_addr;
3362 ocs_value = ufshcd_get_tmr_ocs(&task_req_descp[index]);
3363
3364 if (ocs_value == OCS_SUCCESS) {
3365 task_rsp_upiup = (struct utp_upiu_task_rsp *)
3366 task_req_descp[index].task_rsp_upiu;
3367 task_result = be32_to_cpu(task_rsp_upiup->header.dword_1);
3368 task_result = ((task_result & MASK_TASK_RESPONSE) >> 8);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303369 if (resp)
3370 *resp = (u8)task_result;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303371 } else {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303372 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n",
3373 __func__, ocs_value);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303374 }
3375 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303376
3377 return ocs_value;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303378}
3379
3380/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303381 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
3382 * @lrb: pointer to local reference block of completed command
3383 * @scsi_status: SCSI command status
3384 *
3385 * Returns value base on SCSI command status
3386 */
3387static inline int
3388ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
3389{
3390 int result = 0;
3391
3392 switch (scsi_status) {
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05303393 case SAM_STAT_CHECK_CONDITION:
3394 ufshcd_copy_sense_data(lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303395 case SAM_STAT_GOOD:
3396 result |= DID_OK << 16 |
3397 COMMAND_COMPLETE << 8 |
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05303398 scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303399 break;
3400 case SAM_STAT_TASK_SET_FULL:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05303401 case SAM_STAT_BUSY:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303402 case SAM_STAT_TASK_ABORTED:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05303403 ufshcd_copy_sense_data(lrbp);
3404 result |= scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303405 break;
3406 default:
3407 result |= DID_ERROR << 16;
3408 break;
3409 } /* end of switch */
3410
3411 return result;
3412}
3413
3414/**
3415 * ufshcd_transfer_rsp_status - Get overall status of the response
3416 * @hba: per adapter instance
3417 * @lrb: pointer to local reference block of completed command
3418 *
3419 * Returns result of the command to notify SCSI midlayer
3420 */
3421static inline int
3422ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
3423{
3424 int result = 0;
3425 int scsi_status;
3426 int ocs;
3427
3428 /* overall command status of utrd */
3429 ocs = ufshcd_get_tr_ocs(lrbp);
3430
3431 switch (ocs) {
3432 case OCS_SUCCESS:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303433 result = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303434
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303435 switch (result) {
3436 case UPIU_TRANSACTION_RESPONSE:
3437 /*
3438 * get the response UPIU result to extract
3439 * the SCSI command status
3440 */
3441 result = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr);
3442
3443 /*
3444 * get the result based on SCSI status response
3445 * to notify the SCSI midlayer of the command status
3446 */
3447 scsi_status = result & MASK_SCSI_STATUS;
3448 result = ufshcd_scsi_cmd_status(lrbp, scsi_status);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303449
Yaniv Gardif05ac2e2016-02-01 15:02:42 +02003450 /*
3451 * Currently we are only supporting BKOPs exception
3452 * events hence we can ignore BKOPs exception event
3453 * during power management callbacks. BKOPs exception
3454 * event is not expected to be raised in runtime suspend
3455 * callback as it allows the urgent bkops.
3456 * During system suspend, we are anyway forcefully
3457 * disabling the bkops and if urgent bkops is needed
3458 * it will be enabled on system resume. Long term
3459 * solution could be to abort the system suspend if
3460 * UFS device needs urgent BKOPs.
3461 */
3462 if (!hba->pm_op_in_progress &&
3463 ufshcd_is_exception_event(lrbp->ucd_rsp_ptr))
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303464 schedule_work(&hba->eeh_work);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303465 break;
3466 case UPIU_TRANSACTION_REJECT_UPIU:
3467 /* TODO: handle Reject UPIU Response */
3468 result = DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303469 dev_err(hba->dev,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303470 "Reject UPIU not fully implemented\n");
3471 break;
3472 default:
3473 result = DID_ERROR << 16;
3474 dev_err(hba->dev,
3475 "Unexpected request response code = %x\n",
3476 result);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303477 break;
3478 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303479 break;
3480 case OCS_ABORTED:
3481 result |= DID_ABORT << 16;
3482 break;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303483 case OCS_INVALID_COMMAND_STATUS:
3484 result |= DID_REQUEUE << 16;
3485 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303486 case OCS_INVALID_CMD_TABLE_ATTR:
3487 case OCS_INVALID_PRDT_ATTR:
3488 case OCS_MISMATCH_DATA_BUF_SIZE:
3489 case OCS_MISMATCH_RESP_UPIU_SIZE:
3490 case OCS_PEER_COMM_FAILURE:
3491 case OCS_FATAL_ERROR:
3492 default:
3493 result |= DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05303494 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303495 "OCS error from controller = %x\n", ocs);
3496 break;
3497 } /* end of switch */
3498
3499 return result;
3500}
3501
3502/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303503 * ufshcd_uic_cmd_compl - handle completion of uic command
3504 * @hba: per adapter instance
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303505 * @intr_status: interrupt status generated by the controller
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303506 */
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303507static void ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303508{
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303509 if ((intr_status & UIC_COMMAND_COMPL) && hba->active_uic_cmd) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303510 hba->active_uic_cmd->argument2 |=
3511 ufshcd_get_uic_cmd_result(hba);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303512 hba->active_uic_cmd->argument3 =
3513 ufshcd_get_dme_attr_val(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303514 complete(&hba->active_uic_cmd->done);
3515 }
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303516
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003517 if ((intr_status & UFSHCD_UIC_PWR_MASK) && hba->uic_async_done)
3518 complete(hba->uic_async_done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303519}
3520
3521/**
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003522 * __ufshcd_transfer_req_compl - handle SCSI and query command completion
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303523 * @hba: per adapter instance
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003524 * @completed_reqs: requests to complete
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303525 */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003526static void __ufshcd_transfer_req_compl(struct ufs_hba *hba,
3527 unsigned long completed_reqs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303528{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303529 struct ufshcd_lrb *lrbp;
3530 struct scsi_cmnd *cmd;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303531 int result;
3532 int index;
Dolev Ravive9d501b2014-07-01 12:22:37 +03003533
Dolev Ravive9d501b2014-07-01 12:22:37 +03003534 for_each_set_bit(index, &completed_reqs, hba->nutrs) {
3535 lrbp = &hba->lrb[index];
3536 cmd = lrbp->cmd;
3537 if (cmd) {
3538 result = ufshcd_transfer_rsp_status(hba, lrbp);
3539 scsi_dma_unmap(cmd);
3540 cmd->result = result;
3541 /* Mark completed command as NULL in LRB */
3542 lrbp->cmd = NULL;
3543 clear_bit_unlock(index, &hba->lrb_in_use);
3544 /* Do not touch lrbp after scsi done */
3545 cmd->scsi_done(cmd);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003546 __ufshcd_release(hba);
Joao Pinto300bb132016-05-11 12:21:27 +01003547 } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE ||
3548 lrbp->command_type == UTP_CMD_TYPE_UFS_STORAGE) {
Dolev Ravive9d501b2014-07-01 12:22:37 +03003549 if (hba->dev_cmd.complete)
3550 complete(hba->dev_cmd.complete);
3551 }
3552 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303553
3554 /* clear corresponding bits of completed commands */
3555 hba->outstanding_reqs ^= completed_reqs;
3556
Sahitya Tummala856b3482014-09-25 15:32:34 +03003557 ufshcd_clk_scaling_update_busy(hba);
3558
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303559 /* we might have free'd some tags above */
3560 wake_up(&hba->dev_cmd.tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303561}
3562
3563/**
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003564 * ufshcd_transfer_req_compl - handle SCSI and query command completion
3565 * @hba: per adapter instance
3566 */
3567static void ufshcd_transfer_req_compl(struct ufs_hba *hba)
3568{
3569 unsigned long completed_reqs;
3570 u32 tr_doorbell;
3571
3572 /* Resetting interrupt aggregation counters first and reading the
3573 * DOOR_BELL afterward allows us to handle all the completed requests.
3574 * In order to prevent other interrupts starvation the DB is read once
3575 * after reset. The down side of this solution is the possibility of
3576 * false interrupt if device completes another request after resetting
3577 * aggregation and before reading the DB.
3578 */
3579 if (ufshcd_is_intr_aggr_allowed(hba))
3580 ufshcd_reset_intr_aggr(hba);
3581
3582 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
3583 completed_reqs = tr_doorbell ^ hba->outstanding_reqs;
3584
3585 __ufshcd_transfer_req_compl(hba, completed_reqs);
3586}
3587
3588/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303589 * ufshcd_disable_ee - disable exception event
3590 * @hba: per-adapter instance
3591 * @mask: exception event to disable
3592 *
3593 * Disables exception event in the device so that the EVENT_ALERT
3594 * bit is not set.
3595 *
3596 * Returns zero on success, non-zero error value on failure.
3597 */
3598static int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
3599{
3600 int err = 0;
3601 u32 val;
3602
3603 if (!(hba->ee_ctrl_mask & mask))
3604 goto out;
3605
3606 val = hba->ee_ctrl_mask & ~mask;
3607 val &= 0xFFFF; /* 2 bytes */
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02003608 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303609 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
3610 if (!err)
3611 hba->ee_ctrl_mask &= ~mask;
3612out:
3613 return err;
3614}
3615
3616/**
3617 * ufshcd_enable_ee - enable exception event
3618 * @hba: per-adapter instance
3619 * @mask: exception event to enable
3620 *
3621 * Enable corresponding exception event in the device to allow
3622 * device to alert host in critical scenarios.
3623 *
3624 * Returns zero on success, non-zero error value on failure.
3625 */
3626static int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
3627{
3628 int err = 0;
3629 u32 val;
3630
3631 if (hba->ee_ctrl_mask & mask)
3632 goto out;
3633
3634 val = hba->ee_ctrl_mask | mask;
3635 val &= 0xFFFF; /* 2 bytes */
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02003636 err = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303637 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
3638 if (!err)
3639 hba->ee_ctrl_mask |= mask;
3640out:
3641 return err;
3642}
3643
3644/**
3645 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
3646 * @hba: per-adapter instance
3647 *
3648 * Allow device to manage background operations on its own. Enabling
3649 * this might lead to inconsistent latencies during normal data transfers
3650 * as the device is allowed to manage its own way of handling background
3651 * operations.
3652 *
3653 * Returns zero on success, non-zero on failure.
3654 */
3655static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
3656{
3657 int err = 0;
3658
3659 if (hba->auto_bkops_enabled)
3660 goto out;
3661
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02003662 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_SET_FLAG,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303663 QUERY_FLAG_IDN_BKOPS_EN, NULL);
3664 if (err) {
3665 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
3666 __func__, err);
3667 goto out;
3668 }
3669
3670 hba->auto_bkops_enabled = true;
3671
3672 /* No need of URGENT_BKOPS exception from the device */
3673 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
3674 if (err)
3675 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
3676 __func__, err);
3677out:
3678 return err;
3679}
3680
3681/**
3682 * ufshcd_disable_auto_bkops - block device in doing background operations
3683 * @hba: per-adapter instance
3684 *
3685 * Disabling background operations improves command response latency but
3686 * has drawback of device moving into critical state where the device is
3687 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
3688 * host is idle so that BKOPS are managed effectively without any negative
3689 * impacts.
3690 *
3691 * Returns zero on success, non-zero on failure.
3692 */
3693static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
3694{
3695 int err = 0;
3696
3697 if (!hba->auto_bkops_enabled)
3698 goto out;
3699
3700 /*
3701 * If host assisted BKOPs is to be enabled, make sure
3702 * urgent bkops exception is allowed.
3703 */
3704 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
3705 if (err) {
3706 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
3707 __func__, err);
3708 goto out;
3709 }
3710
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02003711 err = ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303712 QUERY_FLAG_IDN_BKOPS_EN, NULL);
3713 if (err) {
3714 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
3715 __func__, err);
3716 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
3717 goto out;
3718 }
3719
3720 hba->auto_bkops_enabled = false;
3721out:
3722 return err;
3723}
3724
3725/**
3726 * ufshcd_force_reset_auto_bkops - force enable of auto bkops
3727 * @hba: per adapter instance
3728 *
3729 * After a device reset the device may toggle the BKOPS_EN flag
3730 * to default value. The s/w tracking variables should be updated
3731 * as well. Do this by forcing enable of auto bkops.
3732 */
3733static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
3734{
3735 hba->auto_bkops_enabled = false;
3736 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
3737 ufshcd_enable_auto_bkops(hba);
3738}
3739
3740static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
3741{
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02003742 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303743 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
3744}
3745
3746/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003747 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
3748 * @hba: per-adapter instance
3749 * @status: bkops_status value
3750 *
3751 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
3752 * flag in the device to permit background operations if the device
3753 * bkops_status is greater than or equal to "status" argument passed to
3754 * this function, disable otherwise.
3755 *
3756 * Returns 0 for success, non-zero in case of failure.
3757 *
3758 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
3759 * to know whether auto bkops is enabled or disabled after this function
3760 * returns control to it.
3761 */
3762static int ufshcd_bkops_ctrl(struct ufs_hba *hba,
3763 enum bkops_status status)
3764{
3765 int err;
3766 u32 curr_status = 0;
3767
3768 err = ufshcd_get_bkops_status(hba, &curr_status);
3769 if (err) {
3770 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
3771 __func__, err);
3772 goto out;
3773 } else if (curr_status > BKOPS_STATUS_MAX) {
3774 dev_err(hba->dev, "%s: invalid BKOPS status %d\n",
3775 __func__, curr_status);
3776 err = -EINVAL;
3777 goto out;
3778 }
3779
3780 if (curr_status >= status)
3781 err = ufshcd_enable_auto_bkops(hba);
3782 else
3783 err = ufshcd_disable_auto_bkops(hba);
3784out:
3785 return err;
3786}
3787
3788/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303789 * ufshcd_urgent_bkops - handle urgent bkops exception event
3790 * @hba: per-adapter instance
3791 *
3792 * Enable fBackgroundOpsEn flag in the device to permit background
3793 * operations.
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003794 *
3795 * If BKOPs is enabled, this function returns 0, 1 if the bkops in not enabled
3796 * and negative error value for any other failure.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303797 */
3798static int ufshcd_urgent_bkops(struct ufs_hba *hba)
3799{
Yaniv Gardiafdfff52016-03-10 17:37:15 +02003800 return ufshcd_bkops_ctrl(hba, hba->urgent_bkops_lvl);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303801}
3802
3803static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
3804{
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02003805 return ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_READ_ATTR,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303806 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
3807}
3808
Yaniv Gardiafdfff52016-03-10 17:37:15 +02003809static void ufshcd_bkops_exception_event_handler(struct ufs_hba *hba)
3810{
3811 int err;
3812 u32 curr_status = 0;
3813
3814 if (hba->is_urgent_bkops_lvl_checked)
3815 goto enable_auto_bkops;
3816
3817 err = ufshcd_get_bkops_status(hba, &curr_status);
3818 if (err) {
3819 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
3820 __func__, err);
3821 goto out;
3822 }
3823
3824 /*
3825 * We are seeing that some devices are raising the urgent bkops
3826 * exception events even when BKOPS status doesn't indicate performace
3827 * impacted or critical. Handle these device by determining their urgent
3828 * bkops status at runtime.
3829 */
3830 if (curr_status < BKOPS_STATUS_PERF_IMPACT) {
3831 dev_err(hba->dev, "%s: device raised urgent BKOPS exception for bkops status %d\n",
3832 __func__, curr_status);
3833 /* update the current status as the urgent bkops level */
3834 hba->urgent_bkops_lvl = curr_status;
3835 hba->is_urgent_bkops_lvl_checked = true;
3836 }
3837
3838enable_auto_bkops:
3839 err = ufshcd_enable_auto_bkops(hba);
3840out:
3841 if (err < 0)
3842 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
3843 __func__, err);
3844}
3845
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303846/**
3847 * ufshcd_exception_event_handler - handle exceptions raised by device
3848 * @work: pointer to work data
3849 *
3850 * Read bExceptionEventStatus attribute from the device and handle the
3851 * exception event accordingly.
3852 */
3853static void ufshcd_exception_event_handler(struct work_struct *work)
3854{
3855 struct ufs_hba *hba;
3856 int err;
3857 u32 status = 0;
3858 hba = container_of(work, struct ufs_hba, eeh_work);
3859
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303860 pm_runtime_get_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303861 err = ufshcd_get_ee_status(hba, &status);
3862 if (err) {
3863 dev_err(hba->dev, "%s: failed to get exception status %d\n",
3864 __func__, err);
3865 goto out;
3866 }
3867
3868 status &= hba->ee_ctrl_mask;
Yaniv Gardiafdfff52016-03-10 17:37:15 +02003869
3870 if (status & MASK_EE_URGENT_BKOPS)
3871 ufshcd_bkops_exception_event_handler(hba);
3872
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303873out:
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303874 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303875 return;
3876}
3877
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003878/* Complete requests that have door-bell cleared */
3879static void ufshcd_complete_requests(struct ufs_hba *hba)
3880{
3881 ufshcd_transfer_req_compl(hba);
3882 ufshcd_tmc_handler(hba);
3883}
3884
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303885/**
Yaniv Gardi583fa622016-03-10 17:37:13 +02003886 * ufshcd_quirk_dl_nac_errors - This function checks if error handling is
3887 * to recover from the DL NAC errors or not.
3888 * @hba: per-adapter instance
3889 *
3890 * Returns true if error handling is required, false otherwise
3891 */
3892static bool ufshcd_quirk_dl_nac_errors(struct ufs_hba *hba)
3893{
3894 unsigned long flags;
3895 bool err_handling = true;
3896
3897 spin_lock_irqsave(hba->host->host_lock, flags);
3898 /*
3899 * UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS only workaround the
3900 * device fatal error and/or DL NAC & REPLAY timeout errors.
3901 */
3902 if (hba->saved_err & (CONTROLLER_FATAL_ERROR | SYSTEM_BUS_FATAL_ERROR))
3903 goto out;
3904
3905 if ((hba->saved_err & DEVICE_FATAL_ERROR) ||
3906 ((hba->saved_err & UIC_ERROR) &&
3907 (hba->saved_uic_err & UFSHCD_UIC_DL_TCx_REPLAY_ERROR)))
3908 goto out;
3909
3910 if ((hba->saved_err & UIC_ERROR) &&
3911 (hba->saved_uic_err & UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)) {
3912 int err;
3913 /*
3914 * wait for 50ms to see if we can get any other errors or not.
3915 */
3916 spin_unlock_irqrestore(hba->host->host_lock, flags);
3917 msleep(50);
3918 spin_lock_irqsave(hba->host->host_lock, flags);
3919
3920 /*
3921 * now check if we have got any other severe errors other than
3922 * DL NAC error?
3923 */
3924 if ((hba->saved_err & INT_FATAL_ERRORS) ||
3925 ((hba->saved_err & UIC_ERROR) &&
3926 (hba->saved_uic_err & ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)))
3927 goto out;
3928
3929 /*
3930 * As DL NAC is the only error received so far, send out NOP
3931 * command to confirm if link is still active or not.
3932 * - If we don't get any response then do error recovery.
3933 * - If we get response then clear the DL NAC error bit.
3934 */
3935
3936 spin_unlock_irqrestore(hba->host->host_lock, flags);
3937 err = ufshcd_verify_dev_init(hba);
3938 spin_lock_irqsave(hba->host->host_lock, flags);
3939
3940 if (err)
3941 goto out;
3942
3943 /* Link seems to be alive hence ignore the DL NAC errors */
3944 if (hba->saved_uic_err == UFSHCD_UIC_DL_NAC_RECEIVED_ERROR)
3945 hba->saved_err &= ~UIC_ERROR;
3946 /* clear NAC error */
3947 hba->saved_uic_err &= ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
3948 if (!hba->saved_uic_err) {
3949 err_handling = false;
3950 goto out;
3951 }
3952 }
3953out:
3954 spin_unlock_irqrestore(hba->host->host_lock, flags);
3955 return err_handling;
3956}
3957
3958/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303959 * ufshcd_err_handler - handle UFS errors that require s/w attention
3960 * @work: pointer to work structure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303961 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303962static void ufshcd_err_handler(struct work_struct *work)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303963{
3964 struct ufs_hba *hba;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303965 unsigned long flags;
3966 u32 err_xfer = 0;
3967 u32 err_tm = 0;
3968 int err = 0;
3969 int tag;
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003970 bool needs_reset = false;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303971
3972 hba = container_of(work, struct ufs_hba, eh_work);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303973
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303974 pm_runtime_get_sync(hba->dev);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003975 ufshcd_hold(hba, false);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303976
3977 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003978 if (hba->ufshcd_state == UFSHCD_STATE_RESET)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303979 goto out;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303980
3981 hba->ufshcd_state = UFSHCD_STATE_RESET;
3982 ufshcd_set_eh_in_progress(hba);
3983
3984 /* Complete requests that have door-bell cleared by h/w */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003985 ufshcd_complete_requests(hba);
Yaniv Gardi583fa622016-03-10 17:37:13 +02003986
3987 if (hba->dev_quirks & UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
3988 bool ret;
3989
3990 spin_unlock_irqrestore(hba->host->host_lock, flags);
3991 /* release the lock as ufshcd_quirk_dl_nac_errors() may sleep */
3992 ret = ufshcd_quirk_dl_nac_errors(hba);
3993 spin_lock_irqsave(hba->host->host_lock, flags);
3994 if (!ret)
3995 goto skip_err_handling;
3996 }
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02003997 if ((hba->saved_err & INT_FATAL_ERRORS) ||
3998 ((hba->saved_err & UIC_ERROR) &&
3999 (hba->saved_uic_err & (UFSHCD_UIC_DL_PA_INIT_ERROR |
4000 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR |
4001 UFSHCD_UIC_DL_TCx_REPLAY_ERROR))))
4002 needs_reset = true;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304003
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004004 /*
4005 * if host reset is required then skip clearing the pending
4006 * transfers forcefully because they will automatically get
4007 * cleared after link startup.
4008 */
4009 if (needs_reset)
4010 goto skip_pending_xfer_clear;
4011
4012 /* release lock as clear command might sleep */
4013 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304014 /* Clear pending transfer requests */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004015 for_each_set_bit(tag, &hba->outstanding_reqs, hba->nutrs) {
4016 if (ufshcd_clear_cmd(hba, tag)) {
4017 err_xfer = true;
4018 goto lock_skip_pending_xfer_clear;
4019 }
4020 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304021
4022 /* Clear pending task management requests */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004023 for_each_set_bit(tag, &hba->outstanding_tasks, hba->nutmrs) {
4024 if (ufshcd_clear_tm_cmd(hba, tag)) {
4025 err_tm = true;
4026 goto lock_skip_pending_xfer_clear;
4027 }
4028 }
4029
4030lock_skip_pending_xfer_clear:
4031 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304032
4033 /* Complete the requests that are cleared by s/w */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004034 ufshcd_complete_requests(hba);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304035
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004036 if (err_xfer || err_tm)
4037 needs_reset = true;
4038
4039skip_pending_xfer_clear:
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304040 /* Fatal errors need reset */
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004041 if (needs_reset) {
4042 unsigned long max_doorbells = (1UL << hba->nutrs) - 1;
4043
4044 /*
4045 * ufshcd_reset_and_restore() does the link reinitialization
4046 * which will need atleast one empty doorbell slot to send the
4047 * device management commands (NOP and query commands).
4048 * If there is no slot empty at this moment then free up last
4049 * slot forcefully.
4050 */
4051 if (hba->outstanding_reqs == max_doorbells)
4052 __ufshcd_transfer_req_compl(hba,
4053 (1UL << (hba->nutrs - 1)));
4054
4055 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304056 err = ufshcd_reset_and_restore(hba);
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004057 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304058 if (err) {
4059 dev_err(hba->dev, "%s: reset and restore failed\n",
4060 __func__);
4061 hba->ufshcd_state = UFSHCD_STATE_ERROR;
4062 }
4063 /*
4064 * Inform scsi mid-layer that we did reset and allow to handle
4065 * Unit Attention properly.
4066 */
4067 scsi_report_bus_reset(hba->host, 0);
4068 hba->saved_err = 0;
4069 hba->saved_uic_err = 0;
4070 }
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004071
Yaniv Gardi583fa622016-03-10 17:37:13 +02004072skip_err_handling:
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004073 if (!needs_reset) {
4074 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
4075 if (hba->saved_err || hba->saved_uic_err)
4076 dev_err_ratelimited(hba->dev, "%s: exit: saved_err 0x%x saved_uic_err 0x%x",
4077 __func__, hba->saved_err, hba->saved_uic_err);
4078 }
4079
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304080 ufshcd_clear_eh_in_progress(hba);
4081
4082out:
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004083 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304084 scsi_unblock_requests(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004085 ufshcd_release(hba);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05304086 pm_runtime_put_sync(hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304087}
4088
4089/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304090 * ufshcd_update_uic_error - check and set fatal UIC error flags.
4091 * @hba: per-adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304092 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304093static void ufshcd_update_uic_error(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304094{
4095 u32 reg;
4096
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304097 /* PA_INIT_ERROR is fatal and needs UIC reset */
4098 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
4099 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
4100 hba->uic_error |= UFSHCD_UIC_DL_PA_INIT_ERROR;
Yaniv Gardi583fa622016-03-10 17:37:13 +02004101 else if (hba->dev_quirks &
4102 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS) {
4103 if (reg & UIC_DATA_LINK_LAYER_ERROR_NAC_RECEIVED)
4104 hba->uic_error |=
4105 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR;
4106 else if (reg & UIC_DATA_LINK_LAYER_ERROR_TCx_REPLAY_TIMEOUT)
4107 hba->uic_error |= UFSHCD_UIC_DL_TCx_REPLAY_ERROR;
4108 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304109
4110 /* UIC NL/TL/DME errors needs software retry */
4111 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_NETWORK_LAYER);
4112 if (reg)
4113 hba->uic_error |= UFSHCD_UIC_NL_ERROR;
4114
4115 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_TRANSPORT_LAYER);
4116 if (reg)
4117 hba->uic_error |= UFSHCD_UIC_TL_ERROR;
4118
4119 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DME);
4120 if (reg)
4121 hba->uic_error |= UFSHCD_UIC_DME_ERROR;
4122
4123 dev_dbg(hba->dev, "%s: UIC error flags = 0x%08x\n",
4124 __func__, hba->uic_error);
4125}
4126
4127/**
4128 * ufshcd_check_errors - Check for errors that need s/w attention
4129 * @hba: per-adapter instance
4130 */
4131static void ufshcd_check_errors(struct ufs_hba *hba)
4132{
4133 bool queue_eh_work = false;
4134
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304135 if (hba->errors & INT_FATAL_ERRORS)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304136 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304137
4138 if (hba->errors & UIC_ERROR) {
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304139 hba->uic_error = 0;
4140 ufshcd_update_uic_error(hba);
4141 if (hba->uic_error)
4142 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304143 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304144
4145 if (queue_eh_work) {
Yaniv Gardi9a47ec72016-03-10 17:37:12 +02004146 /*
4147 * update the transfer error masks to sticky bits, let's do this
4148 * irrespective of current ufshcd_state.
4149 */
4150 hba->saved_err |= hba->errors;
4151 hba->saved_uic_err |= hba->uic_error;
4152
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304153 /* handle fatal errors only when link is functional */
4154 if (hba->ufshcd_state == UFSHCD_STATE_OPERATIONAL) {
4155 /* block commands from scsi mid-layer */
4156 scsi_block_requests(hba->host);
4157
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304158 hba->ufshcd_state = UFSHCD_STATE_ERROR;
4159 schedule_work(&hba->eh_work);
4160 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304161 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304162 /*
4163 * if (!queue_eh_work) -
4164 * Other errors are either non-fatal where host recovers
4165 * itself without s/w intervention or errors that will be
4166 * handled by the SCSI core layer.
4167 */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304168}
4169
4170/**
4171 * ufshcd_tmc_handler - handle task management function completion
4172 * @hba: per adapter instance
4173 */
4174static void ufshcd_tmc_handler(struct ufs_hba *hba)
4175{
4176 u32 tm_doorbell;
4177
Seungwon Jeonb873a2752013-06-26 22:39:26 +05304178 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304179 hba->tm_condition = tm_doorbell ^ hba->outstanding_tasks;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304180 wake_up(&hba->tm_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304181}
4182
4183/**
4184 * ufshcd_sl_intr - Interrupt service routine
4185 * @hba: per adapter instance
4186 * @intr_status: contains interrupts generated by the controller
4187 */
4188static void ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
4189{
4190 hba->errors = UFSHCD_ERROR_MASK & intr_status;
4191 if (hba->errors)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304192 ufshcd_check_errors(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304193
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05304194 if (intr_status & UFSHCD_UIC_MASK)
4195 ufshcd_uic_cmd_compl(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304196
4197 if (intr_status & UTP_TASK_REQ_COMPL)
4198 ufshcd_tmc_handler(hba);
4199
4200 if (intr_status & UTP_TRANSFER_REQ_COMPL)
4201 ufshcd_transfer_req_compl(hba);
4202}
4203
4204/**
4205 * ufshcd_intr - Main interrupt service routine
4206 * @irq: irq number
4207 * @__hba: pointer to adapter instance
4208 *
4209 * Returns IRQ_HANDLED - If interrupt is valid
4210 * IRQ_NONE - If invalid interrupt
4211 */
4212static irqreturn_t ufshcd_intr(int irq, void *__hba)
4213{
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02004214 u32 intr_status, enabled_intr_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304215 irqreturn_t retval = IRQ_NONE;
4216 struct ufs_hba *hba = __hba;
4217
4218 spin_lock(hba->host->host_lock);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05304219 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02004220 enabled_intr_status =
4221 intr_status & ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304222
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02004223 if (intr_status)
Seungwon Jeon261ea452013-06-26 22:39:28 +05304224 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
Yaniv Gardid75f7fe2016-02-01 15:02:47 +02004225
4226 if (enabled_intr_status) {
4227 ufshcd_sl_intr(hba, enabled_intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304228 retval = IRQ_HANDLED;
4229 }
4230 spin_unlock(hba->host->host_lock);
4231 return retval;
4232}
4233
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304234static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag)
4235{
4236 int err = 0;
4237 u32 mask = 1 << tag;
4238 unsigned long flags;
4239
4240 if (!test_bit(tag, &hba->outstanding_tasks))
4241 goto out;
4242
4243 spin_lock_irqsave(hba->host->host_lock, flags);
4244 ufshcd_writel(hba, ~(1 << tag), REG_UTP_TASK_REQ_LIST_CLEAR);
4245 spin_unlock_irqrestore(hba->host->host_lock, flags);
4246
4247 /* poll for max. 1 sec to clear door bell register by h/w */
4248 err = ufshcd_wait_for_register(hba,
4249 REG_UTP_TASK_REQ_DOOR_BELL,
Yaniv Gardi596585a2016-03-10 17:37:08 +02004250 mask, 0, 1000, 1000, true);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304251out:
4252 return err;
4253}
4254
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304255/**
4256 * ufshcd_issue_tm_cmd - issues task management commands to controller
4257 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304258 * @lun_id: LUN ID to which TM command is sent
4259 * @task_id: task ID to which the TM command is applicable
4260 * @tm_function: task management function opcode
4261 * @tm_response: task management service response return value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304262 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304263 * Returns non-zero value on error, zero on success.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304264 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304265static int ufshcd_issue_tm_cmd(struct ufs_hba *hba, int lun_id, int task_id,
4266 u8 tm_function, u8 *tm_response)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304267{
4268 struct utp_task_req_desc *task_req_descp;
4269 struct utp_upiu_task_req *task_req_upiup;
4270 struct Scsi_Host *host;
4271 unsigned long flags;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304272 int free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304273 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304274 int task_tag;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304275
4276 host = hba->host;
4277
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304278 /*
4279 * Get free slot, sleep if slots are unavailable.
4280 * Even though we use wait_event() which sleeps indefinitely,
4281 * the maximum wait time is bounded by %TM_CMD_TIMEOUT.
4282 */
4283 wait_event(hba->tm_tag_wq, ufshcd_get_tm_free_slot(hba, &free_slot));
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004284 ufshcd_hold(hba, false);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304285
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304286 spin_lock_irqsave(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304287 task_req_descp = hba->utmrdl_base_addr;
4288 task_req_descp += free_slot;
4289
4290 /* Configure task request descriptor */
4291 task_req_descp->header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
4292 task_req_descp->header.dword_2 =
4293 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
4294
4295 /* Configure task request UPIU */
4296 task_req_upiup =
4297 (struct utp_upiu_task_req *) task_req_descp->task_req_upiu;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304298 task_tag = hba->nutrs + free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304299 task_req_upiup->header.dword_0 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304300 UPIU_HEADER_DWORD(UPIU_TRANSACTION_TASK_REQ, 0,
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304301 lun_id, task_tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304302 task_req_upiup->header.dword_1 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304303 UPIU_HEADER_DWORD(0, tm_function, 0, 0);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03004304 /*
4305 * The host shall provide the same value for LUN field in the basic
4306 * header and for Input Parameter.
4307 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304308 task_req_upiup->input_param1 = cpu_to_be32(lun_id);
4309 task_req_upiup->input_param2 = cpu_to_be32(task_id);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304310
4311 /* send command to the controller */
4312 __set_bit(free_slot, &hba->outstanding_tasks);
Yaniv Gardi897efe62016-02-01 15:02:48 +02004313
4314 /* Make sure descriptors are ready before ringing the task doorbell */
4315 wmb();
4316
Seungwon Jeonb873a2752013-06-26 22:39:26 +05304317 ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304318
4319 spin_unlock_irqrestore(host->host_lock, flags);
4320
4321 /* wait until the task management command is completed */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304322 err = wait_event_timeout(hba->tm_wq,
4323 test_bit(free_slot, &hba->tm_condition),
4324 msecs_to_jiffies(TM_CMD_TIMEOUT));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304325 if (!err) {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304326 dev_err(hba->dev, "%s: task management cmd 0x%.2x timed-out\n",
4327 __func__, tm_function);
4328 if (ufshcd_clear_tm_cmd(hba, free_slot))
4329 dev_WARN(hba->dev, "%s: unable clear tm cmd (slot %d) after timeout\n",
4330 __func__, free_slot);
4331 err = -ETIMEDOUT;
4332 } else {
4333 err = ufshcd_task_req_compl(hba, free_slot, tm_response);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304334 }
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304335
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304336 clear_bit(free_slot, &hba->tm_condition);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304337 ufshcd_put_tm_slot(hba, free_slot);
4338 wake_up(&hba->tm_tag_wq);
4339
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004340 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304341 return err;
4342}
4343
4344/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304345 * ufshcd_eh_device_reset_handler - device reset handler registered to
4346 * scsi layer.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304347 * @cmd: SCSI command pointer
4348 *
4349 * Returns SUCCESS/FAILED
4350 */
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304351static int ufshcd_eh_device_reset_handler(struct scsi_cmnd *cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304352{
4353 struct Scsi_Host *host;
4354 struct ufs_hba *hba;
4355 unsigned int tag;
4356 u32 pos;
4357 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304358 u8 resp = 0xF;
4359 struct ufshcd_lrb *lrbp;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304360 unsigned long flags;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304361
4362 host = cmd->device->host;
4363 hba = shost_priv(host);
4364 tag = cmd->request->tag;
4365
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304366 lrbp = &hba->lrb[tag];
4367 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, 0, UFS_LOGICAL_RESET, &resp);
4368 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304369 if (!err)
4370 err = resp;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304371 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304372 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304373
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304374 /* clear the commands that were pending for corresponding LUN */
4375 for_each_set_bit(pos, &hba->outstanding_reqs, hba->nutrs) {
4376 if (hba->lrb[pos].lun == lrbp->lun) {
4377 err = ufshcd_clear_cmd(hba, pos);
4378 if (err)
4379 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304380 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304381 }
4382 spin_lock_irqsave(host->host_lock, flags);
4383 ufshcd_transfer_req_compl(hba);
4384 spin_unlock_irqrestore(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304385out:
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304386 if (!err) {
4387 err = SUCCESS;
4388 } else {
4389 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
4390 err = FAILED;
4391 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304392 return err;
4393}
4394
4395/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304396 * ufshcd_abort - abort a specific command
4397 * @cmd: SCSI command pointer
4398 *
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304399 * Abort the pending command in device by sending UFS_ABORT_TASK task management
4400 * command, and in host controller by clearing the door-bell register. There can
4401 * be race between controller sending the command to the device while abort is
4402 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
4403 * really issued and then try to abort it.
4404 *
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304405 * Returns SUCCESS/FAILED
4406 */
4407static int ufshcd_abort(struct scsi_cmnd *cmd)
4408{
4409 struct Scsi_Host *host;
4410 struct ufs_hba *hba;
4411 unsigned long flags;
4412 unsigned int tag;
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304413 int err = 0;
4414 int poll_cnt;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304415 u8 resp = 0xF;
4416 struct ufshcd_lrb *lrbp;
Dolev Ravive9d501b2014-07-01 12:22:37 +03004417 u32 reg;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304418
4419 host = cmd->device->host;
4420 hba = shost_priv(host);
4421 tag = cmd->request->tag;
Yaniv Gardi14497322016-02-01 15:02:39 +02004422 if (!ufshcd_valid_tag(hba, tag)) {
4423 dev_err(hba->dev,
4424 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
4425 __func__, tag, cmd, cmd->request);
4426 BUG();
4427 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304428
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004429 ufshcd_hold(hba, false);
Dolev Ravive9d501b2014-07-01 12:22:37 +03004430 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Yaniv Gardi14497322016-02-01 15:02:39 +02004431 /* If command is already aborted/completed, return SUCCESS */
4432 if (!(test_bit(tag, &hba->outstanding_reqs))) {
4433 dev_err(hba->dev,
4434 "%s: cmd at tag %d already completed, outstanding=0x%lx, doorbell=0x%x\n",
4435 __func__, tag, hba->outstanding_reqs, reg);
4436 goto out;
4437 }
4438
Dolev Ravive9d501b2014-07-01 12:22:37 +03004439 if (!(reg & (1 << tag))) {
4440 dev_err(hba->dev,
4441 "%s: cmd was completed, but without a notifying intr, tag = %d",
4442 __func__, tag);
4443 }
4444
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304445 lrbp = &hba->lrb[tag];
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304446 for (poll_cnt = 100; poll_cnt; poll_cnt--) {
4447 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
4448 UFS_QUERY_TASK, &resp);
4449 if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED) {
4450 /* cmd pending in the device */
4451 break;
4452 } else if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304453 /*
4454 * cmd not pending in the device, check if it is
4455 * in transition.
4456 */
4457 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
4458 if (reg & (1 << tag)) {
4459 /* sleep for max. 200us to stabilize */
4460 usleep_range(100, 200);
4461 continue;
4462 }
4463 /* command completed already */
4464 goto out;
4465 } else {
4466 if (!err)
4467 err = resp; /* service response error */
4468 goto out;
4469 }
4470 }
4471
4472 if (!poll_cnt) {
4473 err = -EBUSY;
4474 goto out;
4475 }
4476
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304477 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
4478 UFS_ABORT_TASK, &resp);
4479 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304480 if (!err)
4481 err = resp; /* service response error */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304482 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05304483 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304484
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304485 err = ufshcd_clear_cmd(hba, tag);
4486 if (err)
4487 goto out;
4488
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304489 scsi_dma_unmap(cmd);
4490
4491 spin_lock_irqsave(host->host_lock, flags);
Yaniv Gardia48353f2016-02-01 15:02:40 +02004492 ufshcd_outstanding_req_clear(hba, tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304493 hba->lrb[tag].cmd = NULL;
4494 spin_unlock_irqrestore(host->host_lock, flags);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304495
4496 clear_bit_unlock(tag, &hba->lrb_in_use);
4497 wake_up(&hba->dev_cmd.tag_wq);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004498
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304499out:
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05304500 if (!err) {
4501 err = SUCCESS;
4502 } else {
4503 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
4504 err = FAILED;
4505 }
4506
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004507 /*
4508 * This ufshcd_release() corresponds to the original scsi cmd that got
4509 * aborted here (as we won't get any IRQ for it).
4510 */
4511 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304512 return err;
4513}
4514
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304515/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304516 * ufshcd_host_reset_and_restore - reset and restore host controller
4517 * @hba: per-adapter instance
4518 *
4519 * Note that host controller reset may issue DME_RESET to
4520 * local and remote (device) Uni-Pro stack and the attributes
4521 * are reset to default state.
4522 *
4523 * Returns zero on success, non-zero on failure
4524 */
4525static int ufshcd_host_reset_and_restore(struct ufs_hba *hba)
4526{
4527 int err;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304528 unsigned long flags;
4529
4530 /* Reset the host controller */
4531 spin_lock_irqsave(hba->host->host_lock, flags);
Yaniv Gardi596585a2016-03-10 17:37:08 +02004532 ufshcd_hba_stop(hba, false);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304533 spin_unlock_irqrestore(hba->host->host_lock, flags);
4534
4535 err = ufshcd_hba_enable(hba);
4536 if (err)
4537 goto out;
4538
4539 /* Establish the link again and restore the device */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004540 err = ufshcd_probe_hba(hba);
4541
4542 if (!err && (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL))
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304543 err = -EIO;
4544out:
4545 if (err)
4546 dev_err(hba->dev, "%s: Host init failed %d\n", __func__, err);
4547
4548 return err;
4549}
4550
4551/**
4552 * ufshcd_reset_and_restore - reset and re-initialize host/device
4553 * @hba: per-adapter instance
4554 *
4555 * Reset and recover device, host and re-establish link. This
4556 * is helpful to recover the communication in fatal error conditions.
4557 *
4558 * Returns zero on success, non-zero on failure
4559 */
4560static int ufshcd_reset_and_restore(struct ufs_hba *hba)
4561{
4562 int err = 0;
4563 unsigned long flags;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004564 int retries = MAX_HOST_RESET_RETRIES;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304565
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004566 do {
4567 err = ufshcd_host_reset_and_restore(hba);
4568 } while (err && --retries);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304569
4570 /*
4571 * After reset the door-bell might be cleared, complete
4572 * outstanding requests in s/w here.
4573 */
4574 spin_lock_irqsave(hba->host->host_lock, flags);
4575 ufshcd_transfer_req_compl(hba);
4576 ufshcd_tmc_handler(hba);
4577 spin_unlock_irqrestore(hba->host->host_lock, flags);
4578
4579 return err;
4580}
4581
4582/**
4583 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
4584 * @cmd - SCSI command pointer
4585 *
4586 * Returns SUCCESS/FAILED
4587 */
4588static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd)
4589{
4590 int err;
4591 unsigned long flags;
4592 struct ufs_hba *hba;
4593
4594 hba = shost_priv(cmd->device->host);
4595
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004596 ufshcd_hold(hba, false);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304597 /*
4598 * Check if there is any race with fatal error handling.
4599 * If so, wait for it to complete. Even though fatal error
4600 * handling does reset and restore in some cases, don't assume
4601 * anything out of it. We are just avoiding race here.
4602 */
4603 do {
4604 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304605 if (!(work_pending(&hba->eh_work) ||
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304606 hba->ufshcd_state == UFSHCD_STATE_RESET))
4607 break;
4608 spin_unlock_irqrestore(hba->host->host_lock, flags);
4609 dev_dbg(hba->dev, "%s: reset in progress\n", __func__);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05304610 flush_work(&hba->eh_work);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304611 } while (1);
4612
4613 hba->ufshcd_state = UFSHCD_STATE_RESET;
4614 ufshcd_set_eh_in_progress(hba);
4615 spin_unlock_irqrestore(hba->host->host_lock, flags);
4616
4617 err = ufshcd_reset_and_restore(hba);
4618
4619 spin_lock_irqsave(hba->host->host_lock, flags);
4620 if (!err) {
4621 err = SUCCESS;
4622 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
4623 } else {
4624 err = FAILED;
4625 hba->ufshcd_state = UFSHCD_STATE_ERROR;
4626 }
4627 ufshcd_clear_eh_in_progress(hba);
4628 spin_unlock_irqrestore(hba->host->host_lock, flags);
4629
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004630 ufshcd_release(hba);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304631 return err;
4632}
4633
4634/**
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03004635 * ufshcd_get_max_icc_level - calculate the ICC level
4636 * @sup_curr_uA: max. current supported by the regulator
4637 * @start_scan: row at the desc table to start scan from
4638 * @buff: power descriptor buffer
4639 *
4640 * Returns calculated max ICC level for specific regulator
4641 */
4642static u32 ufshcd_get_max_icc_level(int sup_curr_uA, u32 start_scan, char *buff)
4643{
4644 int i;
4645 int curr_uA;
4646 u16 data;
4647 u16 unit;
4648
4649 for (i = start_scan; i >= 0; i--) {
4650 data = be16_to_cpu(*((u16 *)(buff + 2*i)));
4651 unit = (data & ATTR_ICC_LVL_UNIT_MASK) >>
4652 ATTR_ICC_LVL_UNIT_OFFSET;
4653 curr_uA = data & ATTR_ICC_LVL_VALUE_MASK;
4654 switch (unit) {
4655 case UFSHCD_NANO_AMP:
4656 curr_uA = curr_uA / 1000;
4657 break;
4658 case UFSHCD_MILI_AMP:
4659 curr_uA = curr_uA * 1000;
4660 break;
4661 case UFSHCD_AMP:
4662 curr_uA = curr_uA * 1000 * 1000;
4663 break;
4664 case UFSHCD_MICRO_AMP:
4665 default:
4666 break;
4667 }
4668 if (sup_curr_uA >= curr_uA)
4669 break;
4670 }
4671 if (i < 0) {
4672 i = 0;
4673 pr_err("%s: Couldn't find valid icc_level = %d", __func__, i);
4674 }
4675
4676 return (u32)i;
4677}
4678
4679/**
4680 * ufshcd_calc_icc_level - calculate the max ICC level
4681 * In case regulators are not initialized we'll return 0
4682 * @hba: per-adapter instance
4683 * @desc_buf: power descriptor buffer to extract ICC levels from.
4684 * @len: length of desc_buff
4685 *
4686 * Returns calculated ICC level
4687 */
4688static u32 ufshcd_find_max_sup_active_icc_level(struct ufs_hba *hba,
4689 u8 *desc_buf, int len)
4690{
4691 u32 icc_level = 0;
4692
4693 if (!hba->vreg_info.vcc || !hba->vreg_info.vccq ||
4694 !hba->vreg_info.vccq2) {
4695 dev_err(hba->dev,
4696 "%s: Regulator capability was not set, actvIccLevel=%d",
4697 __func__, icc_level);
4698 goto out;
4699 }
4700
4701 if (hba->vreg_info.vcc)
4702 icc_level = ufshcd_get_max_icc_level(
4703 hba->vreg_info.vcc->max_uA,
4704 POWER_DESC_MAX_ACTV_ICC_LVLS - 1,
4705 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCC_0]);
4706
4707 if (hba->vreg_info.vccq)
4708 icc_level = ufshcd_get_max_icc_level(
4709 hba->vreg_info.vccq->max_uA,
4710 icc_level,
4711 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ_0]);
4712
4713 if (hba->vreg_info.vccq2)
4714 icc_level = ufshcd_get_max_icc_level(
4715 hba->vreg_info.vccq2->max_uA,
4716 icc_level,
4717 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ2_0]);
4718out:
4719 return icc_level;
4720}
4721
4722static void ufshcd_init_icc_levels(struct ufs_hba *hba)
4723{
4724 int ret;
4725 int buff_len = QUERY_DESC_POWER_MAX_SIZE;
4726 u8 desc_buf[QUERY_DESC_POWER_MAX_SIZE];
4727
4728 ret = ufshcd_read_power_desc(hba, desc_buf, buff_len);
4729 if (ret) {
4730 dev_err(hba->dev,
4731 "%s: Failed reading power descriptor.len = %d ret = %d",
4732 __func__, buff_len, ret);
4733 return;
4734 }
4735
4736 hba->init_prefetch_data.icc_level =
4737 ufshcd_find_max_sup_active_icc_level(hba,
4738 desc_buf, buff_len);
4739 dev_dbg(hba->dev, "%s: setting icc_level 0x%x",
4740 __func__, hba->init_prefetch_data.icc_level);
4741
Yaniv Gardi5e86ae42016-02-01 15:02:50 +02004742 ret = ufshcd_query_attr_retry(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
4743 QUERY_ATTR_IDN_ACTIVE_ICC_LVL, 0, 0,
4744 &hba->init_prefetch_data.icc_level);
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03004745
4746 if (ret)
4747 dev_err(hba->dev,
4748 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
4749 __func__, hba->init_prefetch_data.icc_level , ret);
4750
4751}
4752
4753/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004754 * ufshcd_scsi_add_wlus - Adds required W-LUs
4755 * @hba: per-adapter instance
4756 *
4757 * UFS device specification requires the UFS devices to support 4 well known
4758 * logical units:
4759 * "REPORT_LUNS" (address: 01h)
4760 * "UFS Device" (address: 50h)
4761 * "RPMB" (address: 44h)
4762 * "BOOT" (address: 30h)
4763 * UFS device's power management needs to be controlled by "POWER CONDITION"
4764 * field of SSU (START STOP UNIT) command. But this "power condition" field
4765 * will take effect only when its sent to "UFS device" well known logical unit
4766 * hence we require the scsi_device instance to represent this logical unit in
4767 * order for the UFS host driver to send the SSU command for power management.
4768
4769 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
4770 * Block) LU so user space process can control this LU. User space may also
4771 * want to have access to BOOT LU.
4772
4773 * This function adds scsi device instances for each of all well known LUs
4774 * (except "REPORT LUNS" LU).
4775 *
4776 * Returns zero on success (all required W-LUs are added successfully),
4777 * non-zero error value on failure (if failed to add any of the required W-LU).
4778 */
4779static int ufshcd_scsi_add_wlus(struct ufs_hba *hba)
4780{
4781 int ret = 0;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004782 struct scsi_device *sdev_rpmb;
4783 struct scsi_device *sdev_boot;
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004784
4785 hba->sdev_ufs_device = __scsi_add_device(hba->host, 0, 0,
4786 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN), NULL);
4787 if (IS_ERR(hba->sdev_ufs_device)) {
4788 ret = PTR_ERR(hba->sdev_ufs_device);
4789 hba->sdev_ufs_device = NULL;
4790 goto out;
4791 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004792 scsi_device_put(hba->sdev_ufs_device);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004793
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004794 sdev_boot = __scsi_add_device(hba->host, 0, 0,
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004795 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN), NULL);
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004796 if (IS_ERR(sdev_boot)) {
4797 ret = PTR_ERR(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004798 goto remove_sdev_ufs_device;
4799 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004800 scsi_device_put(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004801
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004802 sdev_rpmb = __scsi_add_device(hba->host, 0, 0,
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004803 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN), NULL);
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004804 if (IS_ERR(sdev_rpmb)) {
4805 ret = PTR_ERR(sdev_rpmb);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004806 goto remove_sdev_boot;
4807 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004808 scsi_device_put(sdev_rpmb);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004809 goto out;
4810
4811remove_sdev_boot:
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004812 scsi_remove_device(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004813remove_sdev_ufs_device:
4814 scsi_remove_device(hba->sdev_ufs_device);
4815out:
4816 return ret;
4817}
4818
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02004819static int ufs_get_device_info(struct ufs_hba *hba,
4820 struct ufs_device_info *card_data)
4821{
4822 int err;
4823 u8 model_index;
4824 u8 str_desc_buf[QUERY_DESC_STRING_MAX_SIZE + 1] = {0};
4825 u8 desc_buf[QUERY_DESC_DEVICE_MAX_SIZE];
4826
4827 err = ufshcd_read_device_desc(hba, desc_buf,
4828 QUERY_DESC_DEVICE_MAX_SIZE);
4829 if (err) {
4830 dev_err(hba->dev, "%s: Failed reading Device Desc. err = %d\n",
4831 __func__, err);
4832 goto out;
4833 }
4834
4835 /*
4836 * getting vendor (manufacturerID) and Bank Index in big endian
4837 * format
4838 */
4839 card_data->wmanufacturerid = desc_buf[DEVICE_DESC_PARAM_MANF_ID] << 8 |
4840 desc_buf[DEVICE_DESC_PARAM_MANF_ID + 1];
4841
4842 model_index = desc_buf[DEVICE_DESC_PARAM_PRDCT_NAME];
4843
4844 err = ufshcd_read_string_desc(hba, model_index, str_desc_buf,
4845 QUERY_DESC_STRING_MAX_SIZE, ASCII_STD);
4846 if (err) {
4847 dev_err(hba->dev, "%s: Failed reading Product Name. err = %d\n",
4848 __func__, err);
4849 goto out;
4850 }
4851
4852 str_desc_buf[QUERY_DESC_STRING_MAX_SIZE] = '\0';
4853 strlcpy(card_data->model, (str_desc_buf + QUERY_DESC_HDR_SIZE),
4854 min_t(u8, str_desc_buf[QUERY_DESC_LENGTH_OFFSET],
4855 MAX_MODEL_LEN));
4856
4857 /* Null terminate the model string */
4858 card_data->model[MAX_MODEL_LEN] = '\0';
4859
4860out:
4861 return err;
4862}
4863
4864void ufs_advertise_fixup_device(struct ufs_hba *hba)
4865{
4866 int err;
4867 struct ufs_dev_fix *f;
4868 struct ufs_device_info card_data;
4869
4870 card_data.wmanufacturerid = 0;
4871
4872 err = ufs_get_device_info(hba, &card_data);
4873 if (err) {
4874 dev_err(hba->dev, "%s: Failed getting device info. err = %d\n",
4875 __func__, err);
4876 return;
4877 }
4878
4879 for (f = ufs_fixups; f->quirk; f++) {
4880 if (((f->card.wmanufacturerid == card_data.wmanufacturerid) ||
4881 (f->card.wmanufacturerid == UFS_ANY_VENDOR)) &&
4882 (STR_PRFX_EQUAL(f->card.model, card_data.model) ||
4883 !strcmp(f->card.model, UFS_ANY_MODEL)))
4884 hba->dev_quirks |= f->quirk;
4885 }
4886}
4887
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004888/**
Yaniv Gardi37113102016-03-10 17:37:16 +02004889 * ufshcd_tune_pa_tactivate - Tunes PA_TActivate of local UniPro
4890 * @hba: per-adapter instance
4891 *
4892 * PA_TActivate parameter can be tuned manually if UniPro version is less than
4893 * 1.61. PA_TActivate needs to be greater than or equal to peerM-PHY's
4894 * RX_MIN_ACTIVATETIME_CAPABILITY attribute. This optimal value can help reduce
4895 * the hibern8 exit latency.
4896 *
4897 * Returns zero on success, non-zero error value on failure.
4898 */
4899static int ufshcd_tune_pa_tactivate(struct ufs_hba *hba)
4900{
4901 int ret = 0;
4902 u32 peer_rx_min_activatetime = 0, tuned_pa_tactivate;
4903
4904 ret = ufshcd_dme_peer_get(hba,
4905 UIC_ARG_MIB_SEL(
4906 RX_MIN_ACTIVATETIME_CAPABILITY,
4907 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
4908 &peer_rx_min_activatetime);
4909 if (ret)
4910 goto out;
4911
4912 /* make sure proper unit conversion is applied */
4913 tuned_pa_tactivate =
4914 ((peer_rx_min_activatetime * RX_MIN_ACTIVATETIME_UNIT_US)
4915 / PA_TACTIVATE_TIME_UNIT_US);
4916 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
4917 tuned_pa_tactivate);
4918
4919out:
4920 return ret;
4921}
4922
4923/**
4924 * ufshcd_tune_pa_hibern8time - Tunes PA_Hibern8Time of local UniPro
4925 * @hba: per-adapter instance
4926 *
4927 * PA_Hibern8Time parameter can be tuned manually if UniPro version is less than
4928 * 1.61. PA_Hibern8Time needs to be maximum of local M-PHY's
4929 * TX_HIBERN8TIME_CAPABILITY & peer M-PHY's RX_HIBERN8TIME_CAPABILITY.
4930 * This optimal value can help reduce the hibern8 exit latency.
4931 *
4932 * Returns zero on success, non-zero error value on failure.
4933 */
4934static int ufshcd_tune_pa_hibern8time(struct ufs_hba *hba)
4935{
4936 int ret = 0;
4937 u32 local_tx_hibern8_time_cap = 0, peer_rx_hibern8_time_cap = 0;
4938 u32 max_hibern8_time, tuned_pa_hibern8time;
4939
4940 ret = ufshcd_dme_get(hba,
4941 UIC_ARG_MIB_SEL(TX_HIBERN8TIME_CAPABILITY,
4942 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(0)),
4943 &local_tx_hibern8_time_cap);
4944 if (ret)
4945 goto out;
4946
4947 ret = ufshcd_dme_peer_get(hba,
4948 UIC_ARG_MIB_SEL(RX_HIBERN8TIME_CAPABILITY,
4949 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
4950 &peer_rx_hibern8_time_cap);
4951 if (ret)
4952 goto out;
4953
4954 max_hibern8_time = max(local_tx_hibern8_time_cap,
4955 peer_rx_hibern8_time_cap);
4956 /* make sure proper unit conversion is applied */
4957 tuned_pa_hibern8time = ((max_hibern8_time * HIBERN8TIME_UNIT_US)
4958 / PA_HIBERN8_TIME_UNIT_US);
4959 ret = ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME),
4960 tuned_pa_hibern8time);
4961out:
4962 return ret;
4963}
4964
4965static void ufshcd_tune_unipro_params(struct ufs_hba *hba)
4966{
4967 if (ufshcd_is_unipro_pa_params_tuning_req(hba)) {
4968 ufshcd_tune_pa_tactivate(hba);
4969 ufshcd_tune_pa_hibern8time(hba);
4970 }
4971
4972 if (hba->dev_quirks & UFS_DEVICE_QUIRK_PA_TACTIVATE)
4973 /* set 1ms timeout for PA_TACTIVATE */
4974 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE), 10);
4975}
4976
4977/**
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004978 * ufshcd_probe_hba - probe hba to detect device and initialize
4979 * @hba: per-adapter instance
4980 *
4981 * Execute link-startup and verify device initialization
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304982 */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004983static int ufshcd_probe_hba(struct ufs_hba *hba)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304984{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304985 int ret;
4986
4987 ret = ufshcd_link_startup(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304988 if (ret)
4989 goto out;
4990
Yaniv Gardi50646362014-10-23 13:25:13 +03004991 ufshcd_init_pwr_info(hba);
4992
Yaniv Gardiafdfff52016-03-10 17:37:15 +02004993 /* set the default level for urgent bkops */
4994 hba->urgent_bkops_lvl = BKOPS_STATUS_PERF_IMPACT;
4995 hba->is_urgent_bkops_lvl_checked = false;
4996
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004997 /* UniPro link is active now */
4998 ufshcd_set_link_active(hba);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05304999
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305000 ret = ufshcd_verify_dev_init(hba);
5001 if (ret)
5002 goto out;
5003
Dolev Raviv68078d52013-07-30 00:35:58 +05305004 ret = ufshcd_complete_dev_init(hba);
5005 if (ret)
5006 goto out;
5007
Yaniv Gardic58ab7a2016-03-10 17:37:10 +02005008 ufs_advertise_fixup_device(hba);
Yaniv Gardi37113102016-03-10 17:37:16 +02005009 ufshcd_tune_unipro_params(hba);
Yaniv Gardi60f01872016-03-10 17:37:11 +02005010
5011 ret = ufshcd_set_vccq_rail_unused(hba,
5012 (hba->dev_quirks & UFS_DEVICE_NO_VCCQ) ? true : false);
5013 if (ret)
5014 goto out;
5015
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005016 /* UFS device is also active now */
5017 ufshcd_set_ufs_dev_active(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305018 ufshcd_force_reset_auto_bkops(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005019 hba->wlun_dev_clr_ua = true;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305020
Dolev Raviv7eb584d2014-09-25 15:32:31 +03005021 if (ufshcd_get_max_pwr_mode(hba)) {
5022 dev_err(hba->dev,
5023 "%s: Failed getting max supported power mode\n",
5024 __func__);
5025 } else {
5026 ret = ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info);
5027 if (ret)
5028 dev_err(hba->dev, "%s: Failed setting power mode, err = %d\n",
5029 __func__, ret);
5030 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005031
Yaniv Gardi53c12d02016-02-01 15:02:45 +02005032 /* set the state as operational after switching to desired gear */
5033 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005034 /*
5035 * If we are in error handling context or in power management callbacks
5036 * context, no need to scan the host
5037 */
5038 if (!ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
5039 bool flag;
5040
5041 /* clear any previous UFS device information */
5042 memset(&hba->dev_info, 0, sizeof(hba->dev_info));
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02005043 if (!ufshcd_query_flag_retry(hba, UPIU_QUERY_OPCODE_READ_FLAG,
5044 QUERY_FLAG_IDN_PWR_ON_WPE, &flag))
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005045 hba->dev_info.f_power_on_wp_en = flag;
5046
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03005047 if (!hba->is_init_prefetch)
5048 ufshcd_init_icc_levels(hba);
5049
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03005050 /* Add required well known logical units to scsi mid layer */
5051 if (ufshcd_scsi_add_wlus(hba))
5052 goto out;
5053
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305054 scsi_scan_host(hba->host);
5055 pm_runtime_put_sync(hba->dev);
5056 }
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03005057
5058 if (!hba->is_init_prefetch)
5059 hba->is_init_prefetch = true;
5060
Sahitya Tummala856b3482014-09-25 15:32:34 +03005061 /* Resume devfreq after UFS device is detected */
5062 if (ufshcd_is_clkscaling_enabled(hba))
5063 devfreq_resume_device(hba->devfreq);
5064
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305065out:
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005066 /*
5067 * If we failed to initialize the device or the device is not
5068 * present, turn off the power/clocks etc.
5069 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005070 if (ret && !ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
5071 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005072 ufshcd_hba_exit(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005073 }
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005074
5075 return ret;
5076}
5077
5078/**
5079 * ufshcd_async_scan - asynchronous execution for probing hba
5080 * @data: data pointer to pass to this function
5081 * @cookie: cookie data
5082 */
5083static void ufshcd_async_scan(void *data, async_cookie_t cookie)
5084{
5085 struct ufs_hba *hba = (struct ufs_hba *)data;
5086
5087 ufshcd_probe_hba(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305088}
5089
Yaniv Gardif550c652016-03-10 17:37:07 +02005090static enum blk_eh_timer_return ufshcd_eh_timed_out(struct scsi_cmnd *scmd)
5091{
5092 unsigned long flags;
5093 struct Scsi_Host *host;
5094 struct ufs_hba *hba;
5095 int index;
5096 bool found = false;
5097
5098 if (!scmd || !scmd->device || !scmd->device->host)
5099 return BLK_EH_NOT_HANDLED;
5100
5101 host = scmd->device->host;
5102 hba = shost_priv(host);
5103 if (!hba)
5104 return BLK_EH_NOT_HANDLED;
5105
5106 spin_lock_irqsave(host->host_lock, flags);
5107
5108 for_each_set_bit(index, &hba->outstanding_reqs, hba->nutrs) {
5109 if (hba->lrb[index].cmd == scmd) {
5110 found = true;
5111 break;
5112 }
5113 }
5114
5115 spin_unlock_irqrestore(host->host_lock, flags);
5116
5117 /*
5118 * Bypass SCSI error handling and reset the block layer timer if this
5119 * SCSI command was not actually dispatched to UFS driver, otherwise
5120 * let SCSI layer handle the error as usual.
5121 */
5122 return found ? BLK_EH_NOT_HANDLED : BLK_EH_RESET_TIMER;
5123}
5124
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305125static struct scsi_host_template ufshcd_driver_template = {
5126 .module = THIS_MODULE,
5127 .name = UFSHCD,
5128 .proc_name = UFSHCD,
5129 .queuecommand = ufshcd_queuecommand,
5130 .slave_alloc = ufshcd_slave_alloc,
Akinobu Mitaeeda4742014-07-01 23:00:32 +09005131 .slave_configure = ufshcd_slave_configure,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305132 .slave_destroy = ufshcd_slave_destroy,
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03005133 .change_queue_depth = ufshcd_change_queue_depth,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305134 .eh_abort_handler = ufshcd_abort,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05305135 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
5136 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
Yaniv Gardif550c652016-03-10 17:37:07 +02005137 .eh_timed_out = ufshcd_eh_timed_out,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305138 .this_id = -1,
5139 .sg_tablesize = SG_ALL,
5140 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
5141 .can_queue = UFSHCD_CAN_QUEUE,
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005142 .max_host_blocked = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +01005143 .track_queue_depth = 1,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305144};
5145
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005146static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg *vreg,
5147 int ua)
5148{
Bjorn Andersson7b16a072015-02-11 19:35:28 -08005149 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005150
Bjorn Andersson7b16a072015-02-11 19:35:28 -08005151 if (!vreg)
5152 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005153
Bjorn Andersson7b16a072015-02-11 19:35:28 -08005154 ret = regulator_set_load(vreg->reg, ua);
5155 if (ret < 0) {
5156 dev_err(dev, "%s: %s set load (ua=%d) failed, err=%d\n",
5157 __func__, vreg->name, ua, ret);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005158 }
5159
5160 return ret;
5161}
5162
5163static inline int ufshcd_config_vreg_lpm(struct ufs_hba *hba,
5164 struct ufs_vreg *vreg)
5165{
Yaniv Gardi60f01872016-03-10 17:37:11 +02005166 if (!vreg)
5167 return 0;
5168 else if (vreg->unused)
5169 return 0;
5170 else
5171 return ufshcd_config_vreg_load(hba->dev, vreg,
5172 UFS_VREG_LPM_LOAD_UA);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005173}
5174
5175static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
5176 struct ufs_vreg *vreg)
5177{
Yaniv Gardi60f01872016-03-10 17:37:11 +02005178 if (!vreg)
5179 return 0;
5180 else if (vreg->unused)
5181 return 0;
5182 else
5183 return ufshcd_config_vreg_load(hba->dev, vreg, vreg->max_uA);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005184}
5185
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005186static int ufshcd_config_vreg(struct device *dev,
5187 struct ufs_vreg *vreg, bool on)
5188{
5189 int ret = 0;
5190 struct regulator *reg = vreg->reg;
5191 const char *name = vreg->name;
5192 int min_uV, uA_load;
5193
5194 BUG_ON(!vreg);
5195
5196 if (regulator_count_voltages(reg) > 0) {
5197 min_uV = on ? vreg->min_uV : 0;
5198 ret = regulator_set_voltage(reg, min_uV, vreg->max_uV);
5199 if (ret) {
5200 dev_err(dev, "%s: %s set voltage failed, err=%d\n",
5201 __func__, name, ret);
5202 goto out;
5203 }
5204
5205 uA_load = on ? vreg->max_uA : 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005206 ret = ufshcd_config_vreg_load(dev, vreg, uA_load);
5207 if (ret)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005208 goto out;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005209 }
5210out:
5211 return ret;
5212}
5213
5214static int ufshcd_enable_vreg(struct device *dev, struct ufs_vreg *vreg)
5215{
5216 int ret = 0;
5217
Yaniv Gardi60f01872016-03-10 17:37:11 +02005218 if (!vreg)
5219 goto out;
5220 else if (vreg->enabled || vreg->unused)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005221 goto out;
5222
5223 ret = ufshcd_config_vreg(dev, vreg, true);
5224 if (!ret)
5225 ret = regulator_enable(vreg->reg);
5226
5227 if (!ret)
5228 vreg->enabled = true;
5229 else
5230 dev_err(dev, "%s: %s enable failed, err=%d\n",
5231 __func__, vreg->name, ret);
5232out:
5233 return ret;
5234}
5235
5236static int ufshcd_disable_vreg(struct device *dev, struct ufs_vreg *vreg)
5237{
5238 int ret = 0;
5239
Yaniv Gardi60f01872016-03-10 17:37:11 +02005240 if (!vreg)
5241 goto out;
5242 else if (!vreg->enabled || vreg->unused)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005243 goto out;
5244
5245 ret = regulator_disable(vreg->reg);
5246
5247 if (!ret) {
5248 /* ignore errors on applying disable config */
5249 ufshcd_config_vreg(dev, vreg, false);
5250 vreg->enabled = false;
5251 } else {
5252 dev_err(dev, "%s: %s disable failed, err=%d\n",
5253 __func__, vreg->name, ret);
5254 }
5255out:
5256 return ret;
5257}
5258
5259static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on)
5260{
5261 int ret = 0;
5262 struct device *dev = hba->dev;
5263 struct ufs_vreg_info *info = &hba->vreg_info;
5264
5265 if (!info)
5266 goto out;
5267
5268 ret = ufshcd_toggle_vreg(dev, info->vcc, on);
5269 if (ret)
5270 goto out;
5271
5272 ret = ufshcd_toggle_vreg(dev, info->vccq, on);
5273 if (ret)
5274 goto out;
5275
5276 ret = ufshcd_toggle_vreg(dev, info->vccq2, on);
5277 if (ret)
5278 goto out;
5279
5280out:
5281 if (ret) {
5282 ufshcd_toggle_vreg(dev, info->vccq2, false);
5283 ufshcd_toggle_vreg(dev, info->vccq, false);
5284 ufshcd_toggle_vreg(dev, info->vcc, false);
5285 }
5286 return ret;
5287}
5288
Raviv Shvili6a771a62014-09-25 15:32:24 +03005289static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on)
5290{
5291 struct ufs_vreg_info *info = &hba->vreg_info;
5292
5293 if (info)
5294 return ufshcd_toggle_vreg(hba->dev, info->vdd_hba, on);
5295
5296 return 0;
5297}
5298
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005299static int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg)
5300{
5301 int ret = 0;
5302
5303 if (!vreg)
5304 goto out;
5305
5306 vreg->reg = devm_regulator_get(dev, vreg->name);
5307 if (IS_ERR(vreg->reg)) {
5308 ret = PTR_ERR(vreg->reg);
5309 dev_err(dev, "%s: %s get failed, err=%d\n",
5310 __func__, vreg->name, ret);
5311 }
5312out:
5313 return ret;
5314}
5315
5316static int ufshcd_init_vreg(struct ufs_hba *hba)
5317{
5318 int ret = 0;
5319 struct device *dev = hba->dev;
5320 struct ufs_vreg_info *info = &hba->vreg_info;
5321
5322 if (!info)
5323 goto out;
5324
5325 ret = ufshcd_get_vreg(dev, info->vcc);
5326 if (ret)
5327 goto out;
5328
5329 ret = ufshcd_get_vreg(dev, info->vccq);
5330 if (ret)
5331 goto out;
5332
5333 ret = ufshcd_get_vreg(dev, info->vccq2);
5334out:
5335 return ret;
5336}
5337
Raviv Shvili6a771a62014-09-25 15:32:24 +03005338static int ufshcd_init_hba_vreg(struct ufs_hba *hba)
5339{
5340 struct ufs_vreg_info *info = &hba->vreg_info;
5341
5342 if (info)
5343 return ufshcd_get_vreg(hba->dev, info->vdd_hba);
5344
5345 return 0;
5346}
5347
Yaniv Gardi60f01872016-03-10 17:37:11 +02005348static int ufshcd_set_vccq_rail_unused(struct ufs_hba *hba, bool unused)
5349{
5350 int ret = 0;
5351 struct ufs_vreg_info *info = &hba->vreg_info;
5352
5353 if (!info)
5354 goto out;
5355 else if (!info->vccq)
5356 goto out;
5357
5358 if (unused) {
5359 /* shut off the rail here */
5360 ret = ufshcd_toggle_vreg(hba->dev, info->vccq, false);
5361 /*
5362 * Mark this rail as no longer used, so it doesn't get enabled
5363 * later by mistake
5364 */
5365 if (!ret)
5366 info->vccq->unused = true;
5367 } else {
5368 /*
5369 * rail should have been already enabled hence just make sure
5370 * that unused flag is cleared.
5371 */
5372 info->vccq->unused = false;
5373 }
5374out:
5375 return ret;
5376}
5377
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005378static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
5379 bool skip_ref_clk)
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005380{
5381 int ret = 0;
5382 struct ufs_clk_info *clki;
5383 struct list_head *head = &hba->clk_list_head;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005384 unsigned long flags;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005385
5386 if (!head || list_empty(head))
5387 goto out;
5388
5389 list_for_each_entry(clki, head, list) {
5390 if (!IS_ERR_OR_NULL(clki->clk)) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005391 if (skip_ref_clk && !strcmp(clki->name, "ref_clk"))
5392 continue;
5393
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005394 if (on && !clki->enabled) {
5395 ret = clk_prepare_enable(clki->clk);
5396 if (ret) {
5397 dev_err(hba->dev, "%s: %s prepare enable failed, %d\n",
5398 __func__, clki->name, ret);
5399 goto out;
5400 }
5401 } else if (!on && clki->enabled) {
5402 clk_disable_unprepare(clki->clk);
5403 }
5404 clki->enabled = on;
5405 dev_dbg(hba->dev, "%s: clk: %s %sabled\n", __func__,
5406 clki->name, on ? "en" : "dis");
5407 }
5408 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005409
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005410 ret = ufshcd_vops_setup_clocks(hba, on);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005411out:
5412 if (ret) {
5413 list_for_each_entry(clki, head, list) {
5414 if (!IS_ERR_OR_NULL(clki->clk) && clki->enabled)
5415 clk_disable_unprepare(clki->clk);
5416 }
Dolev Raviveda910e2014-10-23 13:25:16 +03005417 } else if (on) {
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005418 spin_lock_irqsave(hba->host->host_lock, flags);
5419 hba->clk_gating.state = CLKS_ON;
5420 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005421 }
5422 return ret;
5423}
5424
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005425static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on)
5426{
5427 return __ufshcd_setup_clocks(hba, on, false);
5428}
5429
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005430static int ufshcd_init_clocks(struct ufs_hba *hba)
5431{
5432 int ret = 0;
5433 struct ufs_clk_info *clki;
5434 struct device *dev = hba->dev;
5435 struct list_head *head = &hba->clk_list_head;
5436
5437 if (!head || list_empty(head))
5438 goto out;
5439
5440 list_for_each_entry(clki, head, list) {
5441 if (!clki->name)
5442 continue;
5443
5444 clki->clk = devm_clk_get(dev, clki->name);
5445 if (IS_ERR(clki->clk)) {
5446 ret = PTR_ERR(clki->clk);
5447 dev_err(dev, "%s: %s clk get failed, %d\n",
5448 __func__, clki->name, ret);
5449 goto out;
5450 }
5451
5452 if (clki->max_freq) {
5453 ret = clk_set_rate(clki->clk, clki->max_freq);
5454 if (ret) {
5455 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
5456 __func__, clki->name,
5457 clki->max_freq, ret);
5458 goto out;
5459 }
Sahitya Tummala856b3482014-09-25 15:32:34 +03005460 clki->curr_freq = clki->max_freq;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005461 }
5462 dev_dbg(dev, "%s: clk: %s, rate: %lu\n", __func__,
5463 clki->name, clk_get_rate(clki->clk));
5464 }
5465out:
5466 return ret;
5467}
5468
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005469static int ufshcd_variant_hba_init(struct ufs_hba *hba)
5470{
5471 int err = 0;
5472
5473 if (!hba->vops)
5474 goto out;
5475
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005476 err = ufshcd_vops_init(hba);
5477 if (err)
5478 goto out;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005479
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005480 err = ufshcd_vops_setup_regulators(hba, true);
5481 if (err)
5482 goto out_exit;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005483
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005484 goto out;
5485
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005486out_exit:
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005487 ufshcd_vops_exit(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005488out:
5489 if (err)
5490 dev_err(hba->dev, "%s: variant %s init failed err %d\n",
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005491 __func__, ufshcd_get_var_name(hba), err);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005492 return err;
5493}
5494
5495static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
5496{
5497 if (!hba->vops)
5498 return;
5499
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005500 ufshcd_vops_setup_clocks(hba, false);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005501
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005502 ufshcd_vops_setup_regulators(hba, false);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005503
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005504 ufshcd_vops_exit(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005505}
5506
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005507static int ufshcd_hba_init(struct ufs_hba *hba)
5508{
5509 int err;
5510
Raviv Shvili6a771a62014-09-25 15:32:24 +03005511 /*
5512 * Handle host controller power separately from the UFS device power
5513 * rails as it will help controlling the UFS host controller power
5514 * collapse easily which is different than UFS device power collapse.
5515 * Also, enable the host controller power before we go ahead with rest
5516 * of the initialization here.
5517 */
5518 err = ufshcd_init_hba_vreg(hba);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005519 if (err)
5520 goto out;
5521
Raviv Shvili6a771a62014-09-25 15:32:24 +03005522 err = ufshcd_setup_hba_vreg(hba, true);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005523 if (err)
5524 goto out;
5525
Raviv Shvili6a771a62014-09-25 15:32:24 +03005526 err = ufshcd_init_clocks(hba);
5527 if (err)
5528 goto out_disable_hba_vreg;
5529
5530 err = ufshcd_setup_clocks(hba, true);
5531 if (err)
5532 goto out_disable_hba_vreg;
5533
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005534 err = ufshcd_init_vreg(hba);
5535 if (err)
5536 goto out_disable_clks;
5537
5538 err = ufshcd_setup_vreg(hba, true);
5539 if (err)
5540 goto out_disable_clks;
5541
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005542 err = ufshcd_variant_hba_init(hba);
5543 if (err)
5544 goto out_disable_vreg;
5545
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005546 hba->is_powered = true;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005547 goto out;
5548
5549out_disable_vreg:
5550 ufshcd_setup_vreg(hba, false);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03005551out_disable_clks:
5552 ufshcd_setup_clocks(hba, false);
Raviv Shvili6a771a62014-09-25 15:32:24 +03005553out_disable_hba_vreg:
5554 ufshcd_setup_hba_vreg(hba, false);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005555out:
5556 return err;
5557}
5558
5559static void ufshcd_hba_exit(struct ufs_hba *hba)
5560{
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03005561 if (hba->is_powered) {
5562 ufshcd_variant_hba_exit(hba);
5563 ufshcd_setup_vreg(hba, false);
5564 ufshcd_setup_clocks(hba, false);
5565 ufshcd_setup_hba_vreg(hba, false);
5566 hba->is_powered = false;
5567 }
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005568}
5569
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005570static int
5571ufshcd_send_request_sense(struct ufs_hba *hba, struct scsi_device *sdp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305572{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005573 unsigned char cmd[6] = {REQUEST_SENSE,
5574 0,
5575 0,
5576 0,
5577 SCSI_SENSE_BUFFERSIZE,
5578 0};
5579 char *buffer;
5580 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305581
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005582 buffer = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL);
5583 if (!buffer) {
5584 ret = -ENOMEM;
5585 goto out;
5586 }
5587
5588 ret = scsi_execute_req_flags(sdp, cmd, DMA_FROM_DEVICE, buffer,
5589 SCSI_SENSE_BUFFERSIZE, NULL,
5590 msecs_to_jiffies(1000), 3, NULL, REQ_PM);
5591 if (ret)
5592 pr_err("%s: failed with err %d\n", __func__, ret);
5593
5594 kfree(buffer);
5595out:
5596 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305597}
5598
5599/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005600 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
5601 * power mode
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305602 * @hba: per adapter instance
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005603 * @pwr_mode: device power mode to set
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305604 *
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005605 * Returns 0 if requested power mode is set successfully
5606 * Returns non-zero if failed to set the requested power mode
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305607 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005608static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
5609 enum ufs_dev_pwr_mode pwr_mode)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305610{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005611 unsigned char cmd[6] = { START_STOP };
5612 struct scsi_sense_hdr sshdr;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03005613 struct scsi_device *sdp;
5614 unsigned long flags;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005615 int ret;
5616
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03005617 spin_lock_irqsave(hba->host->host_lock, flags);
5618 sdp = hba->sdev_ufs_device;
5619 if (sdp) {
5620 ret = scsi_device_get(sdp);
5621 if (!ret && !scsi_device_online(sdp)) {
5622 ret = -ENODEV;
5623 scsi_device_put(sdp);
5624 }
5625 } else {
5626 ret = -ENODEV;
5627 }
5628 spin_unlock_irqrestore(hba->host->host_lock, flags);
5629
5630 if (ret)
5631 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005632
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305633 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005634 * If scsi commands fail, the scsi mid-layer schedules scsi error-
5635 * handling, which would wait for host to be resumed. Since we know
5636 * we are functional while we are here, skip host resume in error
5637 * handling context.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305638 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005639 hba->host->eh_noresume = 1;
5640 if (hba->wlun_dev_clr_ua) {
5641 ret = ufshcd_send_request_sense(hba, sdp);
5642 if (ret)
5643 goto out;
5644 /* Unit attention condition is cleared now */
5645 hba->wlun_dev_clr_ua = false;
5646 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305647
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005648 cmd[4] = pwr_mode << 4;
5649
5650 /*
5651 * Current function would be generally called from the power management
5652 * callbacks hence set the REQ_PM flag so that it doesn't resume the
5653 * already suspended childs.
5654 */
5655 ret = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
5656 START_STOP_TIMEOUT, 0, NULL, REQ_PM);
5657 if (ret) {
5658 sdev_printk(KERN_WARNING, sdp,
Hannes Reineckeef613292014-10-24 14:27:00 +02005659 "START_STOP failed for power mode: %d, result %x\n",
5660 pwr_mode, ret);
Hannes Reinecke21045512015-01-08 07:43:46 +01005661 if (driver_byte(ret) & DRIVER_SENSE)
5662 scsi_print_sense_hdr(sdp, NULL, &sshdr);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005663 }
5664
5665 if (!ret)
5666 hba->curr_dev_pwr_mode = pwr_mode;
5667out:
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03005668 scsi_device_put(sdp);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005669 hba->host->eh_noresume = 0;
5670 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305671}
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305672
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005673static int ufshcd_link_state_transition(struct ufs_hba *hba,
5674 enum uic_link_state req_link_state,
5675 int check_for_bkops)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305676{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005677 int ret = 0;
5678
5679 if (req_link_state == hba->uic_link_state)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305680 return 0;
5681
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005682 if (req_link_state == UIC_LINK_HIBERN8_STATE) {
5683 ret = ufshcd_uic_hibern8_enter(hba);
5684 if (!ret)
5685 ufshcd_set_link_hibern8(hba);
5686 else
5687 goto out;
5688 }
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305689 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005690 * If autobkops is enabled, link can't be turned off because
5691 * turning off the link would also turn off the device.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305692 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005693 else if ((req_link_state == UIC_LINK_OFF_STATE) &&
5694 (!check_for_bkops || (check_for_bkops &&
5695 !hba->auto_bkops_enabled))) {
5696 /*
Yaniv Gardif3099fb2016-03-10 17:37:17 +02005697 * Let's make sure that link is in low power mode, we are doing
5698 * this currently by putting the link in Hibern8. Otherway to
5699 * put the link in low power mode is to send the DME end point
5700 * to device and then send the DME reset command to local
5701 * unipro. But putting the link in hibern8 is much faster.
5702 */
5703 ret = ufshcd_uic_hibern8_enter(hba);
5704 if (ret)
5705 goto out;
5706 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005707 * Change controller state to "reset state" which
5708 * should also put the link in off/reset state
5709 */
Yaniv Gardi596585a2016-03-10 17:37:08 +02005710 ufshcd_hba_stop(hba, true);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005711 /*
5712 * TODO: Check if we need any delay to make sure that
5713 * controller is reset
5714 */
5715 ufshcd_set_link_off(hba);
5716 }
5717
5718out:
5719 return ret;
5720}
5721
5722static void ufshcd_vreg_set_lpm(struct ufs_hba *hba)
5723{
5724 /*
Yaniv Gardib799fdf2016-03-10 17:37:18 +02005725 * It seems some UFS devices may keep drawing more than sleep current
5726 * (atleast for 500us) from UFS rails (especially from VCCQ rail).
5727 * To avoid this situation, add 2ms delay before putting these UFS
5728 * rails in LPM mode.
5729 */
5730 if (!ufshcd_is_link_active(hba) &&
5731 hba->dev_quirks & UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM)
5732 usleep_range(2000, 2100);
5733
5734 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005735 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
5736 * power.
5737 *
5738 * If UFS device and link is in OFF state, all power supplies (VCC,
5739 * VCCQ, VCCQ2) can be turned off if power on write protect is not
5740 * required. If UFS link is inactive (Hibern8 or OFF state) and device
5741 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
5742 *
5743 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
5744 * in low power state which would save some power.
5745 */
5746 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
5747 !hba->dev_info.is_lu_power_on_wp) {
5748 ufshcd_setup_vreg(hba, false);
5749 } else if (!ufshcd_is_ufs_dev_active(hba)) {
5750 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
5751 if (!ufshcd_is_link_active(hba)) {
5752 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
5753 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq2);
5754 }
5755 }
5756}
5757
5758static int ufshcd_vreg_set_hpm(struct ufs_hba *hba)
5759{
5760 int ret = 0;
5761
5762 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
5763 !hba->dev_info.is_lu_power_on_wp) {
5764 ret = ufshcd_setup_vreg(hba, true);
5765 } else if (!ufshcd_is_ufs_dev_active(hba)) {
5766 ret = ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, true);
5767 if (!ret && !ufshcd_is_link_active(hba)) {
5768 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
5769 if (ret)
5770 goto vcc_disable;
5771 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
5772 if (ret)
5773 goto vccq_lpm;
5774 }
5775 }
5776 goto out;
5777
5778vccq_lpm:
5779 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
5780vcc_disable:
5781 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
5782out:
5783 return ret;
5784}
5785
5786static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba)
5787{
5788 if (ufshcd_is_link_off(hba))
5789 ufshcd_setup_hba_vreg(hba, false);
5790}
5791
5792static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba)
5793{
5794 if (ufshcd_is_link_off(hba))
5795 ufshcd_setup_hba_vreg(hba, true);
5796}
5797
5798/**
5799 * ufshcd_suspend - helper function for suspend operations
5800 * @hba: per adapter instance
5801 * @pm_op: desired low power operation type
5802 *
5803 * This function will try to put the UFS device and link into low power
5804 * mode based on the "rpm_lvl" (Runtime PM level) or "spm_lvl"
5805 * (System PM level).
5806 *
5807 * If this function is called during shutdown, it will make sure that
5808 * both UFS device and UFS link is powered off.
5809 *
5810 * NOTE: UFS device & link must be active before we enter in this function.
5811 *
5812 * Returns 0 for success and non-zero for failure
5813 */
5814static int ufshcd_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
5815{
5816 int ret = 0;
5817 enum ufs_pm_level pm_lvl;
5818 enum ufs_dev_pwr_mode req_dev_pwr_mode;
5819 enum uic_link_state req_link_state;
5820
5821 hba->pm_op_in_progress = 1;
5822 if (!ufshcd_is_shutdown_pm(pm_op)) {
5823 pm_lvl = ufshcd_is_runtime_pm(pm_op) ?
5824 hba->rpm_lvl : hba->spm_lvl;
5825 req_dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl);
5826 req_link_state = ufs_get_pm_lvl_to_link_pwr_state(pm_lvl);
5827 } else {
5828 req_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE;
5829 req_link_state = UIC_LINK_OFF_STATE;
5830 }
5831
5832 /*
5833 * If we can't transition into any of the low power modes
5834 * just gate the clocks.
5835 */
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005836 ufshcd_hold(hba, false);
5837 hba->clk_gating.is_suspended = true;
5838
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005839 if (req_dev_pwr_mode == UFS_ACTIVE_PWR_MODE &&
5840 req_link_state == UIC_LINK_ACTIVE_STATE) {
5841 goto disable_clks;
5842 }
5843
5844 if ((req_dev_pwr_mode == hba->curr_dev_pwr_mode) &&
5845 (req_link_state == hba->uic_link_state))
5846 goto out;
5847
5848 /* UFS device & link must be active before we enter in this function */
5849 if (!ufshcd_is_ufs_dev_active(hba) || !ufshcd_is_link_active(hba)) {
5850 ret = -EINVAL;
5851 goto out;
5852 }
5853
5854 if (ufshcd_is_runtime_pm(pm_op)) {
Subhash Jadavani374a2462014-09-25 15:32:35 +03005855 if (ufshcd_can_autobkops_during_suspend(hba)) {
5856 /*
5857 * The device is idle with no requests in the queue,
5858 * allow background operations if bkops status shows
5859 * that performance might be impacted.
5860 */
5861 ret = ufshcd_urgent_bkops(hba);
5862 if (ret)
5863 goto enable_gating;
5864 } else {
5865 /* make sure that auto bkops is disabled */
5866 ufshcd_disable_auto_bkops(hba);
5867 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005868 }
5869
5870 if ((req_dev_pwr_mode != hba->curr_dev_pwr_mode) &&
5871 ((ufshcd_is_runtime_pm(pm_op) && !hba->auto_bkops_enabled) ||
5872 !ufshcd_is_runtime_pm(pm_op))) {
5873 /* ensure that bkops is disabled */
5874 ufshcd_disable_auto_bkops(hba);
5875 ret = ufshcd_set_dev_pwr_mode(hba, req_dev_pwr_mode);
5876 if (ret)
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005877 goto enable_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005878 }
5879
5880 ret = ufshcd_link_state_transition(hba, req_link_state, 1);
5881 if (ret)
5882 goto set_dev_active;
5883
5884 ufshcd_vreg_set_lpm(hba);
5885
5886disable_clks:
5887 /*
Sahitya Tummala856b3482014-09-25 15:32:34 +03005888 * The clock scaling needs access to controller registers. Hence, Wait
5889 * for pending clock scaling work to be done before clocks are
5890 * turned off.
5891 */
5892 if (ufshcd_is_clkscaling_enabled(hba)) {
5893 devfreq_suspend_device(hba->devfreq);
5894 hba->clk_scaling.window_start_t = 0;
5895 }
5896 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005897 * Call vendor specific suspend callback. As these callbacks may access
5898 * vendor specific host controller register space call them before the
5899 * host clocks are ON.
5900 */
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005901 ret = ufshcd_vops_suspend(hba, pm_op);
5902 if (ret)
5903 goto set_link_active;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005904
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005905 ret = ufshcd_vops_setup_clocks(hba, false);
5906 if (ret)
5907 goto vops_resume;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005908
5909 if (!ufshcd_is_link_active(hba))
5910 ufshcd_setup_clocks(hba, false);
5911 else
5912 /* If link is active, device ref_clk can't be switched off */
5913 __ufshcd_setup_clocks(hba, false, true);
5914
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005915 hba->clk_gating.state = CLKS_OFF;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005916 /*
5917 * Disable the host irq as host controller as there won't be any
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005918 * host controller transaction expected till resume.
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005919 */
5920 ufshcd_disable_irq(hba);
5921 /* Put the host controller in low power mode if possible */
5922 ufshcd_hba_vreg_set_lpm(hba);
5923 goto out;
5924
5925vops_resume:
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005926 ufshcd_vops_resume(hba, pm_op);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005927set_link_active:
5928 ufshcd_vreg_set_hpm(hba);
5929 if (ufshcd_is_link_hibern8(hba) && !ufshcd_uic_hibern8_exit(hba))
5930 ufshcd_set_link_active(hba);
5931 else if (ufshcd_is_link_off(hba))
5932 ufshcd_host_reset_and_restore(hba);
5933set_dev_active:
5934 if (!ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE))
5935 ufshcd_disable_auto_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005936enable_gating:
5937 hba->clk_gating.is_suspended = false;
5938 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005939out:
5940 hba->pm_op_in_progress = 0;
5941 return ret;
5942}
5943
5944/**
5945 * ufshcd_resume - helper function for resume operations
5946 * @hba: per adapter instance
5947 * @pm_op: runtime PM or system PM
5948 *
5949 * This function basically brings the UFS device, UniPro link and controller
5950 * to active state.
5951 *
5952 * Returns 0 for success and non-zero for failure
5953 */
5954static int ufshcd_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
5955{
5956 int ret;
5957 enum uic_link_state old_link_state;
5958
5959 hba->pm_op_in_progress = 1;
5960 old_link_state = hba->uic_link_state;
5961
5962 ufshcd_hba_vreg_set_hpm(hba);
5963 /* Make sure clocks are enabled before accessing controller */
5964 ret = ufshcd_setup_clocks(hba, true);
5965 if (ret)
5966 goto out;
5967
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005968 /* enable the host irq as host controller would be active soon */
5969 ret = ufshcd_enable_irq(hba);
5970 if (ret)
5971 goto disable_irq_and_vops_clks;
5972
5973 ret = ufshcd_vreg_set_hpm(hba);
5974 if (ret)
5975 goto disable_irq_and_vops_clks;
5976
5977 /*
5978 * Call vendor specific resume callback. As these callbacks may access
5979 * vendor specific host controller register space call them when the
5980 * host clocks are ON.
5981 */
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02005982 ret = ufshcd_vops_resume(hba, pm_op);
5983 if (ret)
5984 goto disable_vreg;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005985
5986 if (ufshcd_is_link_hibern8(hba)) {
5987 ret = ufshcd_uic_hibern8_exit(hba);
5988 if (!ret)
5989 ufshcd_set_link_active(hba);
5990 else
5991 goto vendor_suspend;
5992 } else if (ufshcd_is_link_off(hba)) {
5993 ret = ufshcd_host_reset_and_restore(hba);
5994 /*
5995 * ufshcd_host_reset_and_restore() should have already
5996 * set the link state as active
5997 */
5998 if (ret || !ufshcd_is_link_active(hba))
5999 goto vendor_suspend;
6000 }
6001
6002 if (!ufshcd_is_ufs_dev_active(hba)) {
6003 ret = ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE);
6004 if (ret)
6005 goto set_old_link_state;
6006 }
6007
Subhash Jadavani374a2462014-09-25 15:32:35 +03006008 /*
6009 * If BKOPs operations are urgently needed at this moment then
6010 * keep auto-bkops enabled or else disable it.
6011 */
6012 ufshcd_urgent_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006013 hba->clk_gating.is_suspended = false;
6014
Sahitya Tummala856b3482014-09-25 15:32:34 +03006015 if (ufshcd_is_clkscaling_enabled(hba))
6016 devfreq_resume_device(hba->devfreq);
6017
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006018 /* Schedule clock gating in case of no access to UFS device yet */
6019 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006020 goto out;
6021
6022set_old_link_state:
6023 ufshcd_link_state_transition(hba, old_link_state, 0);
6024vendor_suspend:
Yaniv Gardi0263bcd2015-10-28 13:15:48 +02006025 ufshcd_vops_suspend(hba, pm_op);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006026disable_vreg:
6027 ufshcd_vreg_set_lpm(hba);
6028disable_irq_and_vops_clks:
6029 ufshcd_disable_irq(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006030 ufshcd_setup_clocks(hba, false);
6031out:
6032 hba->pm_op_in_progress = 0;
6033 return ret;
6034}
6035
6036/**
6037 * ufshcd_system_suspend - system suspend routine
6038 * @hba: per adapter instance
6039 * @pm_op: runtime PM or system PM
6040 *
6041 * Check the description of ufshcd_suspend() function for more details.
6042 *
6043 * Returns 0 for success and non-zero for failure
6044 */
6045int ufshcd_system_suspend(struct ufs_hba *hba)
6046{
6047 int ret = 0;
6048
6049 if (!hba || !hba->is_powered)
Dolev Raviv233b5942014-10-23 13:25:14 +03006050 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006051
6052 if (pm_runtime_suspended(hba->dev)) {
6053 if (hba->rpm_lvl == hba->spm_lvl)
6054 /*
6055 * There is possibility that device may still be in
6056 * active state during the runtime suspend.
6057 */
6058 if ((ufs_get_pm_lvl_to_dev_pwr_mode(hba->spm_lvl) ==
6059 hba->curr_dev_pwr_mode) && !hba->auto_bkops_enabled)
6060 goto out;
6061
6062 /*
6063 * UFS device and/or UFS link low power states during runtime
6064 * suspend seems to be different than what is expected during
6065 * system suspend. Hence runtime resume the devic & link and
6066 * let the system suspend low power states to take effect.
6067 * TODO: If resume takes longer time, we might have optimize
6068 * it in future by not resuming everything if possible.
6069 */
6070 ret = ufshcd_runtime_resume(hba);
6071 if (ret)
6072 goto out;
6073 }
6074
6075 ret = ufshcd_suspend(hba, UFS_SYSTEM_PM);
6076out:
Dolev Ravive7850602014-09-25 15:32:36 +03006077 if (!ret)
6078 hba->is_sys_suspended = true;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006079 return ret;
6080}
6081EXPORT_SYMBOL(ufshcd_system_suspend);
6082
6083/**
6084 * ufshcd_system_resume - system resume routine
6085 * @hba: per adapter instance
6086 *
6087 * Returns 0 for success and non-zero for failure
6088 */
6089
6090int ufshcd_system_resume(struct ufs_hba *hba)
6091{
6092 if (!hba || !hba->is_powered || pm_runtime_suspended(hba->dev))
6093 /*
6094 * Let the runtime resume take care of resuming
6095 * if runtime suspended.
6096 */
6097 return 0;
6098
6099 return ufshcd_resume(hba, UFS_SYSTEM_PM);
6100}
6101EXPORT_SYMBOL(ufshcd_system_resume);
6102
6103/**
6104 * ufshcd_runtime_suspend - runtime suspend routine
6105 * @hba: per adapter instance
6106 *
6107 * Check the description of ufshcd_suspend() function for more details.
6108 *
6109 * Returns 0 for success and non-zero for failure
6110 */
6111int ufshcd_runtime_suspend(struct ufs_hba *hba)
6112{
6113 if (!hba || !hba->is_powered)
6114 return 0;
6115
6116 return ufshcd_suspend(hba, UFS_RUNTIME_PM);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05306117}
6118EXPORT_SYMBOL(ufshcd_runtime_suspend);
6119
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006120/**
6121 * ufshcd_runtime_resume - runtime resume routine
6122 * @hba: per adapter instance
6123 *
6124 * This function basically brings the UFS device, UniPro link and controller
6125 * to active state. Following operations are done in this function:
6126 *
6127 * 1. Turn on all the controller related clocks
6128 * 2. Bring the UniPro link out of Hibernate state
6129 * 3. If UFS device is in sleep state, turn ON VCC rail and bring the UFS device
6130 * to active state.
6131 * 4. If auto-bkops is enabled on the device, disable it.
6132 *
6133 * So following would be the possible power state after this function return
6134 * successfully:
6135 * S1: UFS device in Active state with VCC rail ON
6136 * UniPro link in Active state
6137 * All the UFS/UniPro controller clocks are ON
6138 *
6139 * Returns 0 for success and non-zero for failure
6140 */
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05306141int ufshcd_runtime_resume(struct ufs_hba *hba)
6142{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006143 if (!hba || !hba->is_powered)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05306144 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006145 else
6146 return ufshcd_resume(hba, UFS_RUNTIME_PM);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05306147}
6148EXPORT_SYMBOL(ufshcd_runtime_resume);
6149
6150int ufshcd_runtime_idle(struct ufs_hba *hba)
6151{
6152 return 0;
6153}
6154EXPORT_SYMBOL(ufshcd_runtime_idle);
6155
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306156/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006157 * ufshcd_shutdown - shutdown routine
6158 * @hba: per adapter instance
6159 *
6160 * This function would power off both UFS device and UFS link.
6161 *
6162 * Returns 0 always to allow force shutdown even in case of errors.
6163 */
6164int ufshcd_shutdown(struct ufs_hba *hba)
6165{
6166 int ret = 0;
6167
6168 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba))
6169 goto out;
6170
6171 if (pm_runtime_suspended(hba->dev)) {
6172 ret = ufshcd_runtime_resume(hba);
6173 if (ret)
6174 goto out;
6175 }
6176
6177 ret = ufshcd_suspend(hba, UFS_SHUTDOWN_PM);
6178out:
6179 if (ret)
6180 dev_err(hba->dev, "%s failed, err %d\n", __func__, ret);
6181 /* allow force shutdown even in case of errors */
6182 return 0;
6183}
6184EXPORT_SYMBOL(ufshcd_shutdown);
6185
6186/**
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306187 * ufshcd_remove - de-allocate SCSI host and host memory space
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306188 * data structure memory
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306189 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306190 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306191void ufshcd_remove(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306192{
Akinobu Mitacfdf9c92013-07-30 00:36:03 +05306193 scsi_remove_host(hba->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306194 /* disable interrupts */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05306195 ufshcd_disable_intr(hba, hba->intr_mask);
Yaniv Gardi596585a2016-03-10 17:37:08 +02006196 ufshcd_hba_stop(hba, true);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306197
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306198 scsi_host_put(hba->host);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006199
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006200 ufshcd_exit_clk_gating(hba);
Sahitya Tummala856b3482014-09-25 15:32:34 +03006201 if (ufshcd_is_clkscaling_enabled(hba))
6202 devfreq_remove_device(hba->devfreq);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006203 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306204}
6205EXPORT_SYMBOL_GPL(ufshcd_remove);
6206
6207/**
Yaniv Gardi47555a52015-10-28 13:15:49 +02006208 * ufshcd_dealloc_host - deallocate Host Bus Adapter (HBA)
6209 * @hba: pointer to Host Bus Adapter (HBA)
6210 */
6211void ufshcd_dealloc_host(struct ufs_hba *hba)
6212{
6213 scsi_host_put(hba->host);
6214}
6215EXPORT_SYMBOL_GPL(ufshcd_dealloc_host);
6216
6217/**
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09006218 * ufshcd_set_dma_mask - Set dma mask based on the controller
6219 * addressing capability
6220 * @hba: per adapter instance
6221 *
6222 * Returns 0 for success, non-zero for failure
6223 */
6224static int ufshcd_set_dma_mask(struct ufs_hba *hba)
6225{
6226 if (hba->capabilities & MASK_64_ADDRESSING_SUPPORT) {
6227 if (!dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(64)))
6228 return 0;
6229 }
6230 return dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(32));
6231}
6232
6233/**
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006234 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306235 * @dev: pointer to device handle
6236 * @hba_handle: driver private handle
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306237 * Returns 0 on success, non-zero value on failure
6238 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006239int ufshcd_alloc_host(struct device *dev, struct ufs_hba **hba_handle)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306240{
6241 struct Scsi_Host *host;
6242 struct ufs_hba *hba;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006243 int err = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306244
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306245 if (!dev) {
6246 dev_err(dev,
6247 "Invalid memory reference for dev is NULL\n");
6248 err = -ENODEV;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306249 goto out_error;
6250 }
6251
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306252 host = scsi_host_alloc(&ufshcd_driver_template,
6253 sizeof(struct ufs_hba));
6254 if (!host) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306255 dev_err(dev, "scsi_host_alloc failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306256 err = -ENOMEM;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306257 goto out_error;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306258 }
6259 hba = shost_priv(host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306260 hba->host = host;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306261 hba->dev = dev;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006262 *hba_handle = hba;
6263
6264out_error:
6265 return err;
6266}
6267EXPORT_SYMBOL(ufshcd_alloc_host);
6268
Sahitya Tummala856b3482014-09-25 15:32:34 +03006269static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up)
6270{
6271 int ret = 0;
6272 struct ufs_clk_info *clki;
6273 struct list_head *head = &hba->clk_list_head;
6274
6275 if (!head || list_empty(head))
6276 goto out;
6277
Yaniv Gardif06fcc72015-10-28 13:15:51 +02006278 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, PRE_CHANGE);
6279 if (ret)
6280 return ret;
6281
Sahitya Tummala856b3482014-09-25 15:32:34 +03006282 list_for_each_entry(clki, head, list) {
6283 if (!IS_ERR_OR_NULL(clki->clk)) {
6284 if (scale_up && clki->max_freq) {
6285 if (clki->curr_freq == clki->max_freq)
6286 continue;
6287 ret = clk_set_rate(clki->clk, clki->max_freq);
6288 if (ret) {
6289 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
6290 __func__, clki->name,
6291 clki->max_freq, ret);
6292 break;
6293 }
6294 clki->curr_freq = clki->max_freq;
6295
6296 } else if (!scale_up && clki->min_freq) {
6297 if (clki->curr_freq == clki->min_freq)
6298 continue;
6299 ret = clk_set_rate(clki->clk, clki->min_freq);
6300 if (ret) {
6301 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
6302 __func__, clki->name,
6303 clki->min_freq, ret);
6304 break;
6305 }
6306 clki->curr_freq = clki->min_freq;
6307 }
6308 }
6309 dev_dbg(hba->dev, "%s: clk: %s, rate: %lu\n", __func__,
6310 clki->name, clk_get_rate(clki->clk));
6311 }
Yaniv Gardif06fcc72015-10-28 13:15:51 +02006312
6313 ret = ufshcd_vops_clk_scale_notify(hba, scale_up, POST_CHANGE);
6314
Sahitya Tummala856b3482014-09-25 15:32:34 +03006315out:
6316 return ret;
6317}
6318
6319static int ufshcd_devfreq_target(struct device *dev,
6320 unsigned long *freq, u32 flags)
6321{
6322 int err = 0;
6323 struct ufs_hba *hba = dev_get_drvdata(dev);
6324
6325 if (!ufshcd_is_clkscaling_enabled(hba))
6326 return -EINVAL;
6327
6328 if (*freq == UINT_MAX)
6329 err = ufshcd_scale_clks(hba, true);
6330 else if (*freq == 0)
6331 err = ufshcd_scale_clks(hba, false);
6332
6333 return err;
6334}
6335
6336static int ufshcd_devfreq_get_dev_status(struct device *dev,
6337 struct devfreq_dev_status *stat)
6338{
6339 struct ufs_hba *hba = dev_get_drvdata(dev);
6340 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
6341 unsigned long flags;
6342
6343 if (!ufshcd_is_clkscaling_enabled(hba))
6344 return -EINVAL;
6345
6346 memset(stat, 0, sizeof(*stat));
6347
6348 spin_lock_irqsave(hba->host->host_lock, flags);
6349 if (!scaling->window_start_t)
6350 goto start_window;
6351
6352 if (scaling->is_busy_started)
6353 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
6354 scaling->busy_start_t));
6355
6356 stat->total_time = jiffies_to_usecs((long)jiffies -
6357 (long)scaling->window_start_t);
6358 stat->busy_time = scaling->tot_busy_t;
6359start_window:
6360 scaling->window_start_t = jiffies;
6361 scaling->tot_busy_t = 0;
6362
6363 if (hba->outstanding_reqs) {
6364 scaling->busy_start_t = ktime_get();
6365 scaling->is_busy_started = true;
6366 } else {
6367 scaling->busy_start_t = ktime_set(0, 0);
6368 scaling->is_busy_started = false;
6369 }
6370 spin_unlock_irqrestore(hba->host->host_lock, flags);
6371 return 0;
6372}
6373
6374static struct devfreq_dev_profile ufs_devfreq_profile = {
6375 .polling_ms = 100,
6376 .target = ufshcd_devfreq_target,
6377 .get_dev_status = ufshcd_devfreq_get_dev_status,
6378};
6379
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006380/**
6381 * ufshcd_init - Driver initialization routine
6382 * @hba: per-adapter instance
6383 * @mmio_base: base register address
6384 * @irq: Interrupt line of device
6385 * Returns 0 on success, non-zero value on failure
6386 */
6387int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
6388{
6389 int err;
6390 struct Scsi_Host *host = hba->host;
6391 struct device *dev = hba->dev;
6392
6393 if (!mmio_base) {
6394 dev_err(hba->dev,
6395 "Invalid memory reference for mmio_base is NULL\n");
6396 err = -ENODEV;
6397 goto out_error;
6398 }
6399
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306400 hba->mmio_base = mmio_base;
6401 hba->irq = irq;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306402
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006403 err = ufshcd_hba_init(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006404 if (err)
6405 goto out_error;
6406
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306407 /* Read capabilities registers */
6408 ufshcd_hba_capabilities(hba);
6409
6410 /* Get UFS version supported by the controller */
6411 hba->ufs_version = ufshcd_get_ufs_version(hba);
6412
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05306413 /* Get Interrupt bit mask per version */
6414 hba->intr_mask = ufshcd_get_intr_mask(hba);
6415
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09006416 err = ufshcd_set_dma_mask(hba);
6417 if (err) {
6418 dev_err(hba->dev, "set dma mask failed\n");
6419 goto out_disable;
6420 }
6421
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306422 /* Allocate memory for host memory space */
6423 err = ufshcd_memory_alloc(hba);
6424 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306425 dev_err(hba->dev, "Memory allocation failed\n");
6426 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306427 }
6428
6429 /* Configure LRB */
6430 ufshcd_host_memory_configure(hba);
6431
6432 host->can_queue = hba->nutrs;
6433 host->cmd_per_lun = hba->nutrs;
6434 host->max_id = UFSHCD_MAX_ID;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03006435 host->max_lun = UFS_MAX_LUNS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306436 host->max_channel = UFSHCD_MAX_CHANNEL;
6437 host->unique_id = host->host_no;
6438 host->max_cmd_len = MAX_CDB_SIZE;
6439
Dolev Raviv7eb584d2014-09-25 15:32:31 +03006440 hba->max_pwr_info.is_valid = false;
6441
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306442 /* Initailize wait queue for task management */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05306443 init_waitqueue_head(&hba->tm_wq);
6444 init_waitqueue_head(&hba->tm_tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306445
6446 /* Initialize work queues */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05306447 INIT_WORK(&hba->eh_work, ufshcd_err_handler);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05306448 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306449
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306450 /* Initialize UIC command mutex */
6451 mutex_init(&hba->uic_cmd_mutex);
6452
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05306453 /* Initialize mutex for device management commands */
6454 mutex_init(&hba->dev_cmd.lock);
6455
6456 /* Initialize device management tag acquire wait queue */
6457 init_waitqueue_head(&hba->dev_cmd.tag_wq);
6458
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006459 ufshcd_init_clk_gating(hba);
Yaniv Gardi199ef132016-03-10 17:37:06 +02006460
6461 /*
6462 * In order to avoid any spurious interrupt immediately after
6463 * registering UFS controller interrupt handler, clear any pending UFS
6464 * interrupt status and disable all the UFS interrupts.
6465 */
6466 ufshcd_writel(hba, ufshcd_readl(hba, REG_INTERRUPT_STATUS),
6467 REG_INTERRUPT_STATUS);
6468 ufshcd_writel(hba, 0, REG_INTERRUPT_ENABLE);
6469 /*
6470 * Make sure that UFS interrupts are disabled and any pending interrupt
6471 * status is cleared before registering UFS interrupt handler.
6472 */
6473 mb();
6474
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306475 /* IRQ registration */
Seungwon Jeon2953f852013-06-27 13:31:54 +09006476 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306477 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306478 dev_err(hba->dev, "request irq failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006479 goto exit_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006480 } else {
6481 hba->is_irq_enabled = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306482 }
6483
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306484 err = scsi_add_host(host, hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306485 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306486 dev_err(hba->dev, "scsi_add_host failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006487 goto exit_gating;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306488 }
6489
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306490 /* Host controller enable */
6491 err = ufshcd_hba_enable(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306492 if (err) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306493 dev_err(hba->dev, "Host controller enable failed\n");
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306494 goto out_remove_scsi_host;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306495 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306496
Sahitya Tummala856b3482014-09-25 15:32:34 +03006497 if (ufshcd_is_clkscaling_enabled(hba)) {
6498 hba->devfreq = devfreq_add_device(dev, &ufs_devfreq_profile,
6499 "simple_ondemand", NULL);
6500 if (IS_ERR(hba->devfreq)) {
6501 dev_err(hba->dev, "Unable to register with devfreq %ld\n",
6502 PTR_ERR(hba->devfreq));
6503 goto out_remove_scsi_host;
6504 }
6505 /* Suspend devfreq until the UFS device is detected */
6506 devfreq_suspend_device(hba->devfreq);
6507 hba->clk_scaling.window_start_t = 0;
6508 }
6509
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05306510 /* Hold auto suspend until async scan completes */
6511 pm_runtime_get_sync(dev);
6512
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006513 /*
6514 * The device-initialize-sequence hasn't been invoked yet.
6515 * Set the device to power-off state
6516 */
6517 ufshcd_set_ufs_dev_poweroff(hba);
6518
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05306519 async_schedule(ufshcd_async_scan, hba);
6520
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306521 return 0;
6522
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306523out_remove_scsi_host:
6524 scsi_remove_host(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03006525exit_gating:
6526 ufshcd_exit_clk_gating(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306527out_disable:
Subhash Jadavani57d104c2014-09-25 15:32:30 +03006528 hba->is_irq_enabled = false;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306529 scsi_host_put(host);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03006530 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306531out_error:
6532 return err;
6533}
6534EXPORT_SYMBOL_GPL(ufshcd_init);
6535
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05306536MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
6537MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
Vinayak Holikattie0eca632013-02-25 21:44:33 +05306538MODULE_DESCRIPTION("Generic UFS host controller driver Core");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306539MODULE_LICENSE("GPL");
6540MODULE_VERSION(UFSHCD_DRIVER_VERSION);