blob: 2e4614b9dddfafb8377462cc942071ed1665f90b [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
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03006 * Copyright (c) 2013-2014, 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>
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053042
Vinayak Holikattie0eca632013-02-25 21:44:33 +053043#include "ufshcd.h"
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +053044#include "unipro.h"
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053045
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053046#define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
47 UTP_TASK_REQ_COMPL |\
48 UFSHCD_ERROR_MASK)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053049/* UIC command timeout, unit: ms */
50#define UIC_CMD_TIMEOUT 500
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053051
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053052/* NOP OUT retries waiting for NOP IN response */
53#define NOP_OUT_RETRIES 10
54/* Timeout after 30 msecs if NOP OUT hangs without response */
55#define NOP_OUT_TIMEOUT 30 /* msecs */
56
Dolev Raviv68078d52013-07-30 00:35:58 +053057/* Query request retries */
58#define QUERY_REQ_RETRIES 10
59/* Query request timeout */
60#define QUERY_REQ_TIMEOUT 30 /* msec */
61
Sujit Reddy Thummae2933132014-05-26 10:59:12 +053062/* Task management command timeout */
63#define TM_CMD_TIMEOUT 100 /* msecs */
64
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +030065/* maximum number of link-startup retries */
66#define DME_LINKSTARTUP_RETRIES 3
67
68/* maximum number of reset retries before giving up */
69#define MAX_HOST_RESET_RETRIES 5
70
Dolev Raviv68078d52013-07-30 00:35:58 +053071/* Expose the flag value from utp_upiu_query.value */
72#define MASK_QUERY_UPIU_FLAG_LOC 0xFF
73
Seungwon Jeon7d568652013-08-31 21:40:20 +053074/* Interrupt aggregation default timeout, unit: 40us */
75#define INT_AGGR_DEF_TO 0x02
76
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +030077#define ufshcd_toggle_vreg(_dev, _vreg, _on) \
78 ({ \
79 int _ret; \
80 if (_on) \
81 _ret = ufshcd_enable_vreg(_dev, _vreg); \
82 else \
83 _ret = ufshcd_disable_vreg(_dev, _vreg); \
84 _ret; \
85 })
86
Subhash Jadavanida461ce2014-09-25 15:32:25 +030087static u32 ufs_query_desc_max_size[] = {
88 QUERY_DESC_DEVICE_MAX_SIZE,
89 QUERY_DESC_CONFIGURAION_MAX_SIZE,
90 QUERY_DESC_UNIT_MAX_SIZE,
91 QUERY_DESC_RFU_MAX_SIZE,
92 QUERY_DESC_INTERCONNECT_MAX_SIZE,
93 QUERY_DESC_STRING_MAX_SIZE,
94 QUERY_DESC_RFU_MAX_SIZE,
95 QUERY_DESC_GEOMETRY_MAZ_SIZE,
96 QUERY_DESC_POWER_MAX_SIZE,
97 QUERY_DESC_RFU_MAX_SIZE,
98};
99
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530100enum {
101 UFSHCD_MAX_CHANNEL = 0,
102 UFSHCD_MAX_ID = 1,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530103 UFSHCD_CMD_PER_LUN = 32,
104 UFSHCD_CAN_QUEUE = 32,
105};
106
107/* UFSHCD states */
108enum {
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530109 UFSHCD_STATE_RESET,
110 UFSHCD_STATE_ERROR,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530111 UFSHCD_STATE_OPERATIONAL,
112};
113
114/* UFSHCD error handling flags */
115enum {
116 UFSHCD_EH_IN_PROGRESS = (1 << 0),
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530117};
118
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530119/* UFSHCD UIC layer error flags */
120enum {
121 UFSHCD_UIC_DL_PA_INIT_ERROR = (1 << 0), /* Data link layer error */
122 UFSHCD_UIC_NL_ERROR = (1 << 1), /* Network layer error */
123 UFSHCD_UIC_TL_ERROR = (1 << 2), /* Transport Layer error */
124 UFSHCD_UIC_DME_ERROR = (1 << 3), /* DME error */
125};
126
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530127/* Interrupt configuration options */
128enum {
129 UFSHCD_INT_DISABLE,
130 UFSHCD_INT_ENABLE,
131 UFSHCD_INT_CLEAR,
132};
133
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530134#define ufshcd_set_eh_in_progress(h) \
135 (h->eh_flags |= UFSHCD_EH_IN_PROGRESS)
136#define ufshcd_eh_in_progress(h) \
137 (h->eh_flags & UFSHCD_EH_IN_PROGRESS)
138#define ufshcd_clear_eh_in_progress(h) \
139 (h->eh_flags &= ~UFSHCD_EH_IN_PROGRESS)
140
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300141#define ufshcd_set_ufs_dev_active(h) \
142 ((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
143#define ufshcd_set_ufs_dev_sleep(h) \
144 ((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
145#define ufshcd_set_ufs_dev_poweroff(h) \
146 ((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
147#define ufshcd_is_ufs_dev_active(h) \
148 ((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
149#define ufshcd_is_ufs_dev_sleep(h) \
150 ((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
151#define ufshcd_is_ufs_dev_poweroff(h) \
152 ((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
153
154static struct ufs_pm_lvl_states ufs_pm_lvl_states[] = {
155 {UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE},
156 {UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE},
157 {UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE},
158 {UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE},
159 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE},
160 {UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE},
161};
162
163static inline enum ufs_dev_pwr_mode
164ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl)
165{
166 return ufs_pm_lvl_states[lvl].dev_state;
167}
168
169static inline enum uic_link_state
170ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl)
171{
172 return ufs_pm_lvl_states[lvl].link_state;
173}
174
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530175static void ufshcd_tmc_handler(struct ufs_hba *hba);
176static void ufshcd_async_scan(void *data, async_cookie_t cookie);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530177static int ufshcd_reset_and_restore(struct ufs_hba *hba);
178static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +0300179static void ufshcd_hba_exit(struct ufs_hba *hba);
180static int ufshcd_probe_hba(struct ufs_hba *hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300181static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
182 bool skip_ref_clk);
183static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on);
184static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
185static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300186static int ufshcd_host_reset_and_restore(struct ufs_hba *hba);
187static irqreturn_t ufshcd_intr(int irq, void *__hba);
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300188static int ufshcd_config_pwr_mode(struct ufs_hba *hba,
189 struct ufs_pa_layer_attr *desired_pwr_mode);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300190
191static inline int ufshcd_enable_irq(struct ufs_hba *hba)
192{
193 int ret = 0;
194
195 if (!hba->is_irq_enabled) {
196 ret = request_irq(hba->irq, ufshcd_intr, IRQF_SHARED, UFSHCD,
197 hba);
198 if (ret)
199 dev_err(hba->dev, "%s: request_irq failed, ret=%d\n",
200 __func__, ret);
201 hba->is_irq_enabled = true;
202 }
203
204 return ret;
205}
206
207static inline void ufshcd_disable_irq(struct ufs_hba *hba)
208{
209 if (hba->is_irq_enabled) {
210 free_irq(hba->irq, hba);
211 hba->is_irq_enabled = false;
212 }
213}
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530214
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530215/*
216 * ufshcd_wait_for_register - wait for register value to change
217 * @hba - per-adapter interface
218 * @reg - mmio register offset
219 * @mask - mask to apply to read register value
220 * @val - wait condition
221 * @interval_us - polling interval in microsecs
222 * @timeout_ms - timeout in millisecs
223 *
224 * Returns -ETIMEDOUT on error, zero on success
225 */
226static int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
227 u32 val, unsigned long interval_us, unsigned long timeout_ms)
228{
229 int err = 0;
230 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
231
232 /* ignore bits that we don't intend to wait on */
233 val = val & mask;
234
235 while ((ufshcd_readl(hba, reg) & mask) != val) {
236 /* wakeup within 50us of expiry */
237 usleep_range(interval_us, interval_us + 50);
238
239 if (time_after(jiffies, timeout)) {
240 if ((ufshcd_readl(hba, reg) & mask) != val)
241 err = -ETIMEDOUT;
242 break;
243 }
244 }
245
246 return err;
247}
248
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530249/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530250 * ufshcd_get_intr_mask - Get the interrupt bit mask
251 * @hba - Pointer to adapter instance
252 *
253 * Returns interrupt bit mask per version
254 */
255static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
256{
257 if (hba->ufs_version == UFSHCI_VERSION_10)
258 return INTERRUPT_MASK_ALL_VER_10;
259 else
260 return INTERRUPT_MASK_ALL_VER_11;
261}
262
263/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530264 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
265 * @hba - Pointer to adapter instance
266 *
267 * Returns UFSHCI version supported by the controller
268 */
269static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
270{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530271 return ufshcd_readl(hba, REG_UFS_VERSION);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530272}
273
274/**
275 * ufshcd_is_device_present - Check if any device connected to
276 * the host controller
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300277 * @hba: pointer to adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530278 *
Venkatraman S73ec5132012-07-10 19:39:23 +0530279 * Returns 1 if device present, 0 if no device detected
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530280 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300281static inline int ufshcd_is_device_present(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530282{
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300283 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) &
284 DEVICE_PRESENT) ? 1 : 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530285}
286
287/**
288 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
289 * @lrb: pointer to local command reference block
290 *
291 * This function is used to get the OCS field from UTRD
292 * Returns the OCS field in the UTRD
293 */
294static inline int ufshcd_get_tr_ocs(struct ufshcd_lrb *lrbp)
295{
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +0530296 return le32_to_cpu(lrbp->utr_descriptor_ptr->header.dword_2) & MASK_OCS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530297}
298
299/**
300 * ufshcd_get_tmr_ocs - Get the UTMRD Overall Command Status
301 * @task_req_descp: pointer to utp_task_req_desc structure
302 *
303 * This function is used to get the OCS field from UTMRD
304 * Returns the OCS field in the UTMRD
305 */
306static inline int
307ufshcd_get_tmr_ocs(struct utp_task_req_desc *task_req_descp)
308{
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +0530309 return le32_to_cpu(task_req_descp->header.dword_2) & MASK_OCS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530310}
311
312/**
313 * ufshcd_get_tm_free_slot - get a free slot for task management request
314 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530315 * @free_slot: pointer to variable with available slot value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530316 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530317 * Get a free tag and lock it until ufshcd_put_tm_slot() is called.
318 * Returns 0 if free slot is not available, else return 1 with tag value
319 * in @free_slot.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530320 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530321static bool ufshcd_get_tm_free_slot(struct ufs_hba *hba, int *free_slot)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530322{
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530323 int tag;
324 bool ret = false;
325
326 if (!free_slot)
327 goto out;
328
329 do {
330 tag = find_first_zero_bit(&hba->tm_slots_in_use, hba->nutmrs);
331 if (tag >= hba->nutmrs)
332 goto out;
333 } while (test_and_set_bit_lock(tag, &hba->tm_slots_in_use));
334
335 *free_slot = tag;
336 ret = true;
337out:
338 return ret;
339}
340
341static inline void ufshcd_put_tm_slot(struct ufs_hba *hba, int slot)
342{
343 clear_bit_unlock(slot, &hba->tm_slots_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530344}
345
346/**
347 * ufshcd_utrl_clear - Clear a bit in UTRLCLR register
348 * @hba: per adapter instance
349 * @pos: position of the bit to be cleared
350 */
351static inline void ufshcd_utrl_clear(struct ufs_hba *hba, u32 pos)
352{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530353 ufshcd_writel(hba, ~(1 << pos), REG_UTP_TRANSFER_REQ_LIST_CLEAR);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530354}
355
356/**
357 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
358 * @reg: Register value of host controller status
359 *
360 * Returns integer, 0 on Success and positive value if failed
361 */
362static inline int ufshcd_get_lists_status(u32 reg)
363{
364 /*
365 * The mask 0xFF is for the following HCS register bits
366 * Bit Description
367 * 0 Device Present
368 * 1 UTRLRDY
369 * 2 UTMRLRDY
370 * 3 UCRDY
371 * 4 HEI
372 * 5 DEI
373 * 6-7 reserved
374 */
375 return (((reg) & (0xFF)) >> 1) ^ (0x07);
376}
377
378/**
379 * ufshcd_get_uic_cmd_result - Get the UIC command result
380 * @hba: Pointer to adapter instance
381 *
382 * This function gets the result of UIC command completion
383 * Returns 0 on success, non zero value on error
384 */
385static inline int ufshcd_get_uic_cmd_result(struct ufs_hba *hba)
386{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530387 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2) &
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530388 MASK_UIC_COMMAND_RESULT;
389}
390
391/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +0530392 * ufshcd_get_dme_attr_val - Get the value of attribute returned by UIC command
393 * @hba: Pointer to adapter instance
394 *
395 * This function gets UIC command argument3
396 * Returns 0 on success, non zero value on error
397 */
398static inline u32 ufshcd_get_dme_attr_val(struct ufs_hba *hba)
399{
400 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
401}
402
403/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530404 * ufshcd_get_req_rsp - returns the TR response transaction type
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530405 * @ucd_rsp_ptr: pointer to response UPIU
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530406 */
407static inline int
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530408ufshcd_get_req_rsp(struct utp_upiu_rsp *ucd_rsp_ptr)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530409{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530410 return be32_to_cpu(ucd_rsp_ptr->header.dword_0) >> 24;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530411}
412
413/**
414 * ufshcd_get_rsp_upiu_result - Get the result from response UPIU
415 * @ucd_rsp_ptr: pointer to response UPIU
416 *
417 * This function gets the response status and scsi_status from response UPIU
418 * Returns the response result code.
419 */
420static inline int
421ufshcd_get_rsp_upiu_result(struct utp_upiu_rsp *ucd_rsp_ptr)
422{
423 return be32_to_cpu(ucd_rsp_ptr->header.dword_1) & MASK_RSP_UPIU_RESULT;
424}
425
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530426/*
427 * ufshcd_get_rsp_upiu_data_seg_len - Get the data segment length
428 * from response UPIU
429 * @ucd_rsp_ptr: pointer to response UPIU
430 *
431 * Return the data segment length.
432 */
433static inline unsigned int
434ufshcd_get_rsp_upiu_data_seg_len(struct utp_upiu_rsp *ucd_rsp_ptr)
435{
436 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
437 MASK_RSP_UPIU_DATA_SEG_LEN;
438}
439
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530440/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530441 * ufshcd_is_exception_event - Check if the device raised an exception event
442 * @ucd_rsp_ptr: pointer to response UPIU
443 *
444 * The function checks if the device raised an exception event indicated in
445 * the Device Information field of response UPIU.
446 *
447 * Returns true if exception is raised, false otherwise.
448 */
449static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp *ucd_rsp_ptr)
450{
451 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
452 MASK_RSP_EXCEPTION_EVENT ? true : false;
453}
454
455/**
Seungwon Jeon7d568652013-08-31 21:40:20 +0530456 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530457 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530458 */
459static inline void
Seungwon Jeon7d568652013-08-31 21:40:20 +0530460ufshcd_reset_intr_aggr(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530461{
Seungwon Jeon7d568652013-08-31 21:40:20 +0530462 ufshcd_writel(hba, INT_AGGR_ENABLE |
463 INT_AGGR_COUNTER_AND_TIMER_RESET,
464 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
465}
466
467/**
468 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
469 * @hba: per adapter instance
470 * @cnt: Interrupt aggregation counter threshold
471 * @tmout: Interrupt aggregation timeout value
472 */
473static inline void
474ufshcd_config_intr_aggr(struct ufs_hba *hba, u8 cnt, u8 tmout)
475{
476 ufshcd_writel(hba, INT_AGGR_ENABLE | INT_AGGR_PARAM_WRITE |
477 INT_AGGR_COUNTER_THLD_VAL(cnt) |
478 INT_AGGR_TIMEOUT_VAL(tmout),
479 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530480}
481
482/**
483 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
484 * When run-stop registers are set to 1, it indicates the
485 * host controller that it can process the requests
486 * @hba: per adapter instance
487 */
488static void ufshcd_enable_run_stop_reg(struct ufs_hba *hba)
489{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530490 ufshcd_writel(hba, UTP_TASK_REQ_LIST_RUN_STOP_BIT,
491 REG_UTP_TASK_REQ_LIST_RUN_STOP);
492 ufshcd_writel(hba, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT,
493 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530494}
495
496/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530497 * ufshcd_hba_start - Start controller initialization sequence
498 * @hba: per adapter instance
499 */
500static inline void ufshcd_hba_start(struct ufs_hba *hba)
501{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530502 ufshcd_writel(hba, CONTROLLER_ENABLE, REG_CONTROLLER_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530503}
504
505/**
506 * ufshcd_is_hba_active - Get controller state
507 * @hba: per adapter instance
508 *
509 * Returns zero if controller is active, 1 otherwise
510 */
511static inline int ufshcd_is_hba_active(struct ufs_hba *hba)
512{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530513 return (ufshcd_readl(hba, REG_CONTROLLER_ENABLE) & 0x1) ? 0 : 1;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530514}
515
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300516static void ufshcd_ungate_work(struct work_struct *work)
517{
518 int ret;
519 unsigned long flags;
520 struct ufs_hba *hba = container_of(work, struct ufs_hba,
521 clk_gating.ungate_work);
522
523 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
524
525 spin_lock_irqsave(hba->host->host_lock, flags);
526 if (hba->clk_gating.state == CLKS_ON) {
527 spin_unlock_irqrestore(hba->host->host_lock, flags);
528 goto unblock_reqs;
529 }
530
531 spin_unlock_irqrestore(hba->host->host_lock, flags);
532 ufshcd_setup_clocks(hba, true);
533
534 /* Exit from hibern8 */
535 if (ufshcd_can_hibern8_during_gating(hba)) {
536 /* Prevent gating in this path */
537 hba->clk_gating.is_suspended = true;
538 if (ufshcd_is_link_hibern8(hba)) {
539 ret = ufshcd_uic_hibern8_exit(hba);
540 if (ret)
541 dev_err(hba->dev, "%s: hibern8 exit failed %d\n",
542 __func__, ret);
543 else
544 ufshcd_set_link_active(hba);
545 }
546 hba->clk_gating.is_suspended = false;
547 }
548unblock_reqs:
Sahitya Tummala856b3482014-09-25 15:32:34 +0300549 if (ufshcd_is_clkscaling_enabled(hba))
550 devfreq_resume_device(hba->devfreq);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300551 scsi_unblock_requests(hba->host);
552}
553
554/**
555 * ufshcd_hold - Enable clocks that were gated earlier due to ufshcd_release.
556 * Also, exit from hibern8 mode and set the link as active.
557 * @hba: per adapter instance
558 * @async: This indicates whether caller should ungate clocks asynchronously.
559 */
560int ufshcd_hold(struct ufs_hba *hba, bool async)
561{
562 int rc = 0;
563 unsigned long flags;
564
565 if (!ufshcd_is_clkgating_allowed(hba))
566 goto out;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300567 spin_lock_irqsave(hba->host->host_lock, flags);
568 hba->clk_gating.active_reqs++;
569
Sahitya Tummala856b3482014-09-25 15:32:34 +0300570start:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300571 switch (hba->clk_gating.state) {
572 case CLKS_ON:
573 break;
574 case REQ_CLKS_OFF:
575 if (cancel_delayed_work(&hba->clk_gating.gate_work)) {
576 hba->clk_gating.state = CLKS_ON;
577 break;
578 }
579 /*
580 * If we here, it means gating work is either done or
581 * currently running. Hence, fall through to cancel gating
582 * work and to enable clocks.
583 */
584 case CLKS_OFF:
585 scsi_block_requests(hba->host);
586 hba->clk_gating.state = REQ_CLKS_ON;
587 schedule_work(&hba->clk_gating.ungate_work);
588 /*
589 * fall through to check if we should wait for this
590 * work to be done or not.
591 */
592 case REQ_CLKS_ON:
593 if (async) {
594 rc = -EAGAIN;
595 hba->clk_gating.active_reqs--;
596 break;
597 }
598
599 spin_unlock_irqrestore(hba->host->host_lock, flags);
600 flush_work(&hba->clk_gating.ungate_work);
601 /* Make sure state is CLKS_ON before returning */
Sahitya Tummala856b3482014-09-25 15:32:34 +0300602 spin_lock_irqsave(hba->host->host_lock, flags);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300603 goto start;
604 default:
605 dev_err(hba->dev, "%s: clk gating is in invalid state %d\n",
606 __func__, hba->clk_gating.state);
607 break;
608 }
609 spin_unlock_irqrestore(hba->host->host_lock, flags);
610out:
611 return rc;
612}
613
614static void ufshcd_gate_work(struct work_struct *work)
615{
616 struct ufs_hba *hba = container_of(work, struct ufs_hba,
617 clk_gating.gate_work.work);
618 unsigned long flags;
619
620 spin_lock_irqsave(hba->host->host_lock, flags);
621 if (hba->clk_gating.is_suspended) {
622 hba->clk_gating.state = CLKS_ON;
623 goto rel_lock;
624 }
625
626 if (hba->clk_gating.active_reqs
627 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
628 || hba->lrb_in_use || hba->outstanding_tasks
629 || hba->active_uic_cmd || hba->uic_async_done)
630 goto rel_lock;
631
632 spin_unlock_irqrestore(hba->host->host_lock, flags);
633
634 /* put the link into hibern8 mode before turning off clocks */
635 if (ufshcd_can_hibern8_during_gating(hba)) {
636 if (ufshcd_uic_hibern8_enter(hba)) {
637 hba->clk_gating.state = CLKS_ON;
638 goto out;
639 }
640 ufshcd_set_link_hibern8(hba);
641 }
642
Sahitya Tummala856b3482014-09-25 15:32:34 +0300643 if (ufshcd_is_clkscaling_enabled(hba)) {
644 devfreq_suspend_device(hba->devfreq);
645 hba->clk_scaling.window_start_t = 0;
646 }
647
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300648 if (!ufshcd_is_link_active(hba))
649 ufshcd_setup_clocks(hba, false);
650 else
651 /* If link is active, device ref_clk can't be switched off */
652 __ufshcd_setup_clocks(hba, false, true);
653
654 /*
655 * In case you are here to cancel this work the gating state
656 * would be marked as REQ_CLKS_ON. In this case keep the state
657 * as REQ_CLKS_ON which would anyway imply that clocks are off
658 * and a request to turn them on is pending. By doing this way,
659 * we keep the state machine in tact and this would ultimately
660 * prevent from doing cancel work multiple times when there are
661 * new requests arriving before the current cancel work is done.
662 */
663 spin_lock_irqsave(hba->host->host_lock, flags);
664 if (hba->clk_gating.state == REQ_CLKS_OFF)
665 hba->clk_gating.state = CLKS_OFF;
666
667rel_lock:
668 spin_unlock_irqrestore(hba->host->host_lock, flags);
669out:
670 return;
671}
672
673/* host lock must be held before calling this variant */
674static void __ufshcd_release(struct ufs_hba *hba)
675{
676 if (!ufshcd_is_clkgating_allowed(hba))
677 return;
678
679 hba->clk_gating.active_reqs--;
680
681 if (hba->clk_gating.active_reqs || hba->clk_gating.is_suspended
682 || hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL
683 || hba->lrb_in_use || hba->outstanding_tasks
684 || hba->active_uic_cmd || hba->uic_async_done)
685 return;
686
687 hba->clk_gating.state = REQ_CLKS_OFF;
688 schedule_delayed_work(&hba->clk_gating.gate_work,
689 msecs_to_jiffies(hba->clk_gating.delay_ms));
690}
691
692void ufshcd_release(struct ufs_hba *hba)
693{
694 unsigned long flags;
695
696 spin_lock_irqsave(hba->host->host_lock, flags);
697 __ufshcd_release(hba);
698 spin_unlock_irqrestore(hba->host->host_lock, flags);
699}
700
701static ssize_t ufshcd_clkgate_delay_show(struct device *dev,
702 struct device_attribute *attr, char *buf)
703{
704 struct ufs_hba *hba = dev_get_drvdata(dev);
705
706 return snprintf(buf, PAGE_SIZE, "%lu\n", hba->clk_gating.delay_ms);
707}
708
709static ssize_t ufshcd_clkgate_delay_store(struct device *dev,
710 struct device_attribute *attr, const char *buf, size_t count)
711{
712 struct ufs_hba *hba = dev_get_drvdata(dev);
713 unsigned long flags, value;
714
715 if (kstrtoul(buf, 0, &value))
716 return -EINVAL;
717
718 spin_lock_irqsave(hba->host->host_lock, flags);
719 hba->clk_gating.delay_ms = value;
720 spin_unlock_irqrestore(hba->host->host_lock, flags);
721 return count;
722}
723
724static void ufshcd_init_clk_gating(struct ufs_hba *hba)
725{
726 if (!ufshcd_is_clkgating_allowed(hba))
727 return;
728
729 hba->clk_gating.delay_ms = 150;
730 INIT_DELAYED_WORK(&hba->clk_gating.gate_work, ufshcd_gate_work);
731 INIT_WORK(&hba->clk_gating.ungate_work, ufshcd_ungate_work);
732
733 hba->clk_gating.delay_attr.show = ufshcd_clkgate_delay_show;
734 hba->clk_gating.delay_attr.store = ufshcd_clkgate_delay_store;
735 sysfs_attr_init(&hba->clk_gating.delay_attr.attr);
736 hba->clk_gating.delay_attr.attr.name = "clkgate_delay_ms";
737 hba->clk_gating.delay_attr.attr.mode = S_IRUGO | S_IWUSR;
738 if (device_create_file(hba->dev, &hba->clk_gating.delay_attr))
739 dev_err(hba->dev, "Failed to create sysfs for clkgate_delay\n");
740}
741
742static void ufshcd_exit_clk_gating(struct ufs_hba *hba)
743{
744 if (!ufshcd_is_clkgating_allowed(hba))
745 return;
746 device_remove_file(hba->dev, &hba->clk_gating.delay_attr);
Akinobu Mita97cd6802014-11-24 14:24:18 +0900747 cancel_work_sync(&hba->clk_gating.ungate_work);
748 cancel_delayed_work_sync(&hba->clk_gating.gate_work);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300749}
750
Sahitya Tummala856b3482014-09-25 15:32:34 +0300751/* Must be called with host lock acquired */
752static void ufshcd_clk_scaling_start_busy(struct ufs_hba *hba)
753{
754 if (!ufshcd_is_clkscaling_enabled(hba))
755 return;
756
757 if (!hba->clk_scaling.is_busy_started) {
758 hba->clk_scaling.busy_start_t = ktime_get();
759 hba->clk_scaling.is_busy_started = true;
760 }
761}
762
763static void ufshcd_clk_scaling_update_busy(struct ufs_hba *hba)
764{
765 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
766
767 if (!ufshcd_is_clkscaling_enabled(hba))
768 return;
769
770 if (!hba->outstanding_reqs && scaling->is_busy_started) {
771 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
772 scaling->busy_start_t));
773 scaling->busy_start_t = ktime_set(0, 0);
774 scaling->is_busy_started = false;
775 }
776}
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530777/**
778 * ufshcd_send_command - Send SCSI or device management commands
779 * @hba: per adapter instance
780 * @task_tag: Task tag of the command
781 */
782static inline
783void ufshcd_send_command(struct ufs_hba *hba, unsigned int task_tag)
784{
Sahitya Tummala856b3482014-09-25 15:32:34 +0300785 ufshcd_clk_scaling_start_busy(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530786 __set_bit(task_tag, &hba->outstanding_reqs);
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530787 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530788}
789
790/**
791 * ufshcd_copy_sense_data - Copy sense data in case of check condition
792 * @lrb - pointer to local reference block
793 */
794static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
795{
796 int len;
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530797 if (lrbp->sense_buffer &&
798 ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530799 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530800 memcpy(lrbp->sense_buffer,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530801 lrbp->ucd_rsp_ptr->sr.sense_data,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530802 min_t(int, len, SCSI_SENSE_BUFFERSIZE));
803 }
804}
805
806/**
Dolev Raviv68078d52013-07-30 00:35:58 +0530807 * ufshcd_copy_query_response() - Copy the Query Response and the data
808 * descriptor
809 * @hba: per adapter instance
810 * @lrb - pointer to local reference block
811 */
812static
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300813int ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Dolev Raviv68078d52013-07-30 00:35:58 +0530814{
815 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
816
Dolev Raviv68078d52013-07-30 00:35:58 +0530817 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +0530818
Dolev Raviv68078d52013-07-30 00:35:58 +0530819 /* Get the descriptor */
820 if (lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
Dolev Ravivd44a5f92014-06-29 09:40:17 +0300821 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr +
Dolev Raviv68078d52013-07-30 00:35:58 +0530822 GENERAL_UPIU_REQUEST_SIZE;
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300823 u16 resp_len;
824 u16 buf_len;
Dolev Raviv68078d52013-07-30 00:35:58 +0530825
826 /* data segment length */
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300827 resp_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
Dolev Raviv68078d52013-07-30 00:35:58 +0530828 MASK_QUERY_DATA_SEG_LEN;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +0300829 buf_len = be16_to_cpu(
830 hba->dev_cmd.query.request.upiu_req.length);
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300831 if (likely(buf_len >= resp_len)) {
832 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len);
833 } else {
834 dev_warn(hba->dev,
835 "%s: Response size is bigger than buffer",
836 __func__);
837 return -EINVAL;
838 }
Dolev Raviv68078d52013-07-30 00:35:58 +0530839 }
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300840
841 return 0;
Dolev Raviv68078d52013-07-30 00:35:58 +0530842}
843
844/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530845 * ufshcd_hba_capabilities - Read controller capabilities
846 * @hba: per adapter instance
847 */
848static inline void ufshcd_hba_capabilities(struct ufs_hba *hba)
849{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530850 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530851
852 /* nutrs and nutmrs are 0 based values */
853 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS) + 1;
854 hba->nutmrs =
855 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
856}
857
858/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530859 * ufshcd_ready_for_uic_cmd - Check if controller is ready
860 * to accept UIC commands
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530861 * @hba: per adapter instance
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530862 * Return true on success, else false
863 */
864static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
865{
866 if (ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY)
867 return true;
868 else
869 return false;
870}
871
872/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +0530873 * ufshcd_get_upmcrs - Get the power mode change request status
874 * @hba: Pointer to adapter instance
875 *
876 * This function gets the UPMCRS field of HCS register
877 * Returns value of UPMCRS field
878 */
879static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
880{
881 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
882}
883
884/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530885 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
886 * @hba: per adapter instance
887 * @uic_cmd: UIC command
888 *
889 * Mutex must be held.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530890 */
891static inline void
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530892ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530893{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530894 WARN_ON(hba->active_uic_cmd);
895
896 hba->active_uic_cmd = uic_cmd;
897
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530898 /* Write Args */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530899 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
900 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
901 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530902
903 /* Write UIC Cmd */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530904 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530905 REG_UIC_COMMAND);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530906}
907
908/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530909 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
910 * @hba: per adapter instance
911 * @uic_command: UIC command
912 *
913 * Must be called with mutex held.
914 * Returns 0 only if success.
915 */
916static int
917ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
918{
919 int ret;
920 unsigned long flags;
921
922 if (wait_for_completion_timeout(&uic_cmd->done,
923 msecs_to_jiffies(UIC_CMD_TIMEOUT)))
924 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
925 else
926 ret = -ETIMEDOUT;
927
928 spin_lock_irqsave(hba->host->host_lock, flags);
929 hba->active_uic_cmd = NULL;
930 spin_unlock_irqrestore(hba->host->host_lock, flags);
931
932 return ret;
933}
934
935/**
936 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
937 * @hba: per adapter instance
938 * @uic_cmd: UIC command
939 *
940 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300941 * with mutex held and host_lock locked.
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530942 * Returns 0 only if success.
943 */
944static int
945__ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
946{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530947 if (!ufshcd_ready_for_uic_cmd(hba)) {
948 dev_err(hba->dev,
949 "Controller not ready to accept UIC commands\n");
950 return -EIO;
951 }
952
953 init_completion(&uic_cmd->done);
954
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530955 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530956
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300957 return 0;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530958}
959
960/**
961 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
962 * @hba: per adapter instance
963 * @uic_cmd: UIC command
964 *
965 * Returns 0 only if success.
966 */
967static int
968ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
969{
970 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300971 unsigned long flags;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530972
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300973 ufshcd_hold(hba, false);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530974 mutex_lock(&hba->uic_cmd_mutex);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300975 spin_lock_irqsave(hba->host->host_lock, flags);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530976 ret = __ufshcd_send_uic_cmd(hba, uic_cmd);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300977 spin_unlock_irqrestore(hba->host->host_lock, flags);
978 if (!ret)
979 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
980
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530981 mutex_unlock(&hba->uic_cmd_mutex);
982
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300983 ufshcd_release(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530984 return ret;
985}
986
987/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530988 * ufshcd_map_sg - Map scatter-gather list to prdt
989 * @lrbp - pointer to local reference block
990 *
991 * Returns 0 in case of success, non-zero value in case of failure
992 */
993static int ufshcd_map_sg(struct ufshcd_lrb *lrbp)
994{
995 struct ufshcd_sg_entry *prd_table;
996 struct scatterlist *sg;
997 struct scsi_cmnd *cmd;
998 int sg_segments;
999 int i;
1000
1001 cmd = lrbp->cmd;
1002 sg_segments = scsi_dma_map(cmd);
1003 if (sg_segments < 0)
1004 return sg_segments;
1005
1006 if (sg_segments) {
1007 lrbp->utr_descriptor_ptr->prd_table_length =
1008 cpu_to_le16((u16) (sg_segments));
1009
1010 prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
1011
1012 scsi_for_each_sg(cmd, sg, sg_segments, i) {
1013 prd_table[i].size =
1014 cpu_to_le32(((u32) sg_dma_len(sg))-1);
1015 prd_table[i].base_addr =
1016 cpu_to_le32(lower_32_bits(sg->dma_address));
1017 prd_table[i].upper_addr =
1018 cpu_to_le32(upper_32_bits(sg->dma_address));
1019 }
1020 } else {
1021 lrbp->utr_descriptor_ptr->prd_table_length = 0;
1022 }
1023
1024 return 0;
1025}
1026
1027/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301028 * ufshcd_enable_intr - enable interrupts
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301029 * @hba: per adapter instance
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301030 * @intrs: interrupt bits
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301031 */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301032static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301033{
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301034 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
1035
1036 if (hba->ufs_version == UFSHCI_VERSION_10) {
1037 u32 rw;
1038 rw = set & INTERRUPT_MASK_RW_VER_10;
1039 set = rw | ((set ^ intrs) & intrs);
1040 } else {
1041 set |= intrs;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301042 }
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301043
1044 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
1045}
1046
1047/**
1048 * ufshcd_disable_intr - disable interrupts
1049 * @hba: per adapter instance
1050 * @intrs: interrupt bits
1051 */
1052static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
1053{
1054 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
1055
1056 if (hba->ufs_version == UFSHCI_VERSION_10) {
1057 u32 rw;
1058 rw = (set & INTERRUPT_MASK_RW_VER_10) &
1059 ~(intrs & INTERRUPT_MASK_RW_VER_10);
1060 set = rw | ((set & intrs) & ~INTERRUPT_MASK_RW_VER_10);
1061
1062 } else {
1063 set &= ~intrs;
1064 }
1065
1066 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301067}
1068
1069/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301070 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
1071 * descriptor according to request
1072 * @lrbp: pointer to local reference block
1073 * @upiu_flags: flags required in the header
1074 * @cmd_dir: requests data direction
1075 */
1076static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb *lrbp,
1077 u32 *upiu_flags, enum dma_data_direction cmd_dir)
1078{
1079 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
1080 u32 data_direction;
1081 u32 dword_0;
1082
1083 if (cmd_dir == DMA_FROM_DEVICE) {
1084 data_direction = UTP_DEVICE_TO_HOST;
1085 *upiu_flags = UPIU_CMD_FLAGS_READ;
1086 } else if (cmd_dir == DMA_TO_DEVICE) {
1087 data_direction = UTP_HOST_TO_DEVICE;
1088 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
1089 } else {
1090 data_direction = UTP_NO_DATA_TRANSFER;
1091 *upiu_flags = UPIU_CMD_FLAGS_NONE;
1092 }
1093
1094 dword_0 = data_direction | (lrbp->command_type
1095 << UPIU_COMMAND_TYPE_OFFSET);
1096 if (lrbp->intr_cmd)
1097 dword_0 |= UTP_REQ_DESC_INT_CMD;
1098
1099 /* Transfer request descriptor header fields */
1100 req_desc->header.dword_0 = cpu_to_le32(dword_0);
1101
1102 /*
1103 * assigning invalid value for command status. Controller
1104 * updates OCS on command completion, with the command
1105 * status
1106 */
1107 req_desc->header.dword_2 =
1108 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
1109}
1110
1111/**
1112 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
1113 * for scsi commands
1114 * @lrbp - local reference block pointer
1115 * @upiu_flags - flags
1116 */
1117static
1118void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u32 upiu_flags)
1119{
1120 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1121
1122 /* command descriptor fields */
1123 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
1124 UPIU_TRANSACTION_COMMAND, upiu_flags,
1125 lrbp->lun, lrbp->task_tag);
1126 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
1127 UPIU_COMMAND_SET_TYPE_SCSI, 0, 0, 0);
1128
1129 /* Total EHS length and Data segment length will be zero */
1130 ucd_req_ptr->header.dword_2 = 0;
1131
1132 ucd_req_ptr->sc.exp_data_transfer_len =
1133 cpu_to_be32(lrbp->cmd->sdb.length);
1134
1135 memcpy(ucd_req_ptr->sc.cdb, lrbp->cmd->cmnd,
1136 (min_t(unsigned short, lrbp->cmd->cmd_len, MAX_CDB_SIZE)));
1137}
1138
Dolev Raviv68078d52013-07-30 00:35:58 +05301139/**
1140 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
1141 * for query requsts
1142 * @hba: UFS hba
1143 * @lrbp: local reference block pointer
1144 * @upiu_flags: flags
1145 */
1146static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
1147 struct ufshcd_lrb *lrbp, u32 upiu_flags)
1148{
1149 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1150 struct ufs_query *query = &hba->dev_cmd.query;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301151 u16 len = be16_to_cpu(query->request.upiu_req.length);
Dolev Raviv68078d52013-07-30 00:35:58 +05301152 u8 *descp = (u8 *)lrbp->ucd_req_ptr + GENERAL_UPIU_REQUEST_SIZE;
1153
1154 /* Query request header */
1155 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
1156 UPIU_TRANSACTION_QUERY_REQ, upiu_flags,
1157 lrbp->lun, lrbp->task_tag);
1158 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
1159 0, query->request.query_func, 0, 0);
1160
1161 /* Data segment length */
1162 ucd_req_ptr->header.dword_2 = UPIU_HEADER_DWORD(
1163 0, 0, len >> 8, (u8)len);
1164
1165 /* Copy the Query Request buffer as is */
1166 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
1167 QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +05301168
1169 /* Copy the Descriptor */
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001170 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
1171 memcpy(descp, query->descriptor, len);
1172
Dolev Raviv68078d52013-07-30 00:35:58 +05301173}
1174
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301175static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb *lrbp)
1176{
1177 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1178
1179 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
1180
1181 /* command descriptor fields */
1182 ucd_req_ptr->header.dword_0 =
1183 UPIU_HEADER_DWORD(
1184 UPIU_TRANSACTION_NOP_OUT, 0, 0, lrbp->task_tag);
1185}
1186
1187/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301188 * ufshcd_compose_upiu - form UFS Protocol Information Unit(UPIU)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301189 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301190 * @lrb - pointer to local reference block
1191 */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301192static int ufshcd_compose_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301193{
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301194 u32 upiu_flags;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301195 int ret = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301196
1197 switch (lrbp->command_type) {
1198 case UTP_CMD_TYPE_SCSI:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301199 if (likely(lrbp->cmd)) {
1200 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags,
1201 lrbp->cmd->sc_data_direction);
1202 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp, upiu_flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301203 } else {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301204 ret = -EINVAL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301205 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301206 break;
1207 case UTP_CMD_TYPE_DEV_MANAGE:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301208 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
Dolev Raviv68078d52013-07-30 00:35:58 +05301209 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
1210 ufshcd_prepare_utp_query_req_upiu(
1211 hba, lrbp, upiu_flags);
1212 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301213 ufshcd_prepare_utp_nop_upiu(lrbp);
1214 else
1215 ret = -EINVAL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301216 break;
1217 case UTP_CMD_TYPE_UFS:
1218 /* For UFS native command implementation */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301219 ret = -ENOTSUPP;
1220 dev_err(hba->dev, "%s: UFS native command are not supported\n",
1221 __func__);
1222 break;
1223 default:
1224 ret = -ENOTSUPP;
1225 dev_err(hba->dev, "%s: unknown command type: 0x%x\n",
1226 __func__, lrbp->command_type);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301227 break;
1228 } /* end of switch */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301229
1230 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301231}
1232
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001233/*
1234 * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
1235 * @scsi_lun: scsi LUN id
1236 *
1237 * Returns UPIU LUN id
1238 */
1239static inline u8 ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun)
1240{
1241 if (scsi_is_wlun(scsi_lun))
1242 return (scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID)
1243 | UFS_UPIU_WLUN_ID;
1244 else
1245 return scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID;
1246}
1247
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301248/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03001249 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
1250 * @scsi_lun: UPIU W-LUN id
1251 *
1252 * Returns SCSI W-LUN id
1253 */
1254static inline u16 ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)
1255{
1256 return (upiu_wlun_id & ~UFS_UPIU_WLUN_ID) | SCSI_W_LUN_BASE;
1257}
1258
1259/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301260 * ufshcd_queuecommand - main entry point for SCSI requests
1261 * @cmd: command from SCSI Midlayer
1262 * @done: call back function
1263 *
1264 * Returns 0 for success, non-zero in case of failure
1265 */
1266static int ufshcd_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
1267{
1268 struct ufshcd_lrb *lrbp;
1269 struct ufs_hba *hba;
1270 unsigned long flags;
1271 int tag;
1272 int err = 0;
1273
1274 hba = shost_priv(host);
1275
1276 tag = cmd->request->tag;
1277
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301278 spin_lock_irqsave(hba->host->host_lock, flags);
1279 switch (hba->ufshcd_state) {
1280 case UFSHCD_STATE_OPERATIONAL:
1281 break;
1282 case UFSHCD_STATE_RESET:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301283 err = SCSI_MLQUEUE_HOST_BUSY;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301284 goto out_unlock;
1285 case UFSHCD_STATE_ERROR:
1286 set_host_byte(cmd, DID_ERROR);
1287 cmd->scsi_done(cmd);
1288 goto out_unlock;
1289 default:
1290 dev_WARN_ONCE(hba->dev, 1, "%s: invalid state %d\n",
1291 __func__, hba->ufshcd_state);
1292 set_host_byte(cmd, DID_BAD_TARGET);
1293 cmd->scsi_done(cmd);
1294 goto out_unlock;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301295 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301296 spin_unlock_irqrestore(hba->host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301297
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301298 /* acquire the tag to make sure device cmds don't use it */
1299 if (test_and_set_bit_lock(tag, &hba->lrb_in_use)) {
1300 /*
1301 * Dev manage command in progress, requeue the command.
1302 * Requeuing the command helps in cases where the request *may*
1303 * find different tag instead of waiting for dev manage command
1304 * completion.
1305 */
1306 err = SCSI_MLQUEUE_HOST_BUSY;
1307 goto out;
1308 }
1309
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001310 err = ufshcd_hold(hba, true);
1311 if (err) {
1312 err = SCSI_MLQUEUE_HOST_BUSY;
1313 clear_bit_unlock(tag, &hba->lrb_in_use);
1314 goto out;
1315 }
1316 WARN_ON(hba->clk_gating.state != CLKS_ON);
1317
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301318 lrbp = &hba->lrb[tag];
1319
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301320 WARN_ON(lrbp->cmd);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301321 lrbp->cmd = cmd;
1322 lrbp->sense_bufflen = SCSI_SENSE_BUFFERSIZE;
1323 lrbp->sense_buffer = cmd->sense_buffer;
1324 lrbp->task_tag = tag;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001325 lrbp->lun = ufshcd_scsi_to_upiu_lun(cmd->device->lun);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301326 lrbp->intr_cmd = false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301327 lrbp->command_type = UTP_CMD_TYPE_SCSI;
1328
1329 /* form UPIU before issuing the command */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301330 ufshcd_compose_upiu(hba, lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301331 err = ufshcd_map_sg(lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301332 if (err) {
1333 lrbp->cmd = NULL;
1334 clear_bit_unlock(tag, &hba->lrb_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301335 goto out;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301336 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301337
1338 /* issue command to the controller */
1339 spin_lock_irqsave(hba->host->host_lock, flags);
1340 ufshcd_send_command(hba, tag);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301341out_unlock:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301342 spin_unlock_irqrestore(hba->host->host_lock, flags);
1343out:
1344 return err;
1345}
1346
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301347static int ufshcd_compose_dev_cmd(struct ufs_hba *hba,
1348 struct ufshcd_lrb *lrbp, enum dev_cmd_type cmd_type, int tag)
1349{
1350 lrbp->cmd = NULL;
1351 lrbp->sense_bufflen = 0;
1352 lrbp->sense_buffer = NULL;
1353 lrbp->task_tag = tag;
1354 lrbp->lun = 0; /* device management cmd is not specific to any LUN */
1355 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
1356 lrbp->intr_cmd = true; /* No interrupt aggregation */
1357 hba->dev_cmd.type = cmd_type;
1358
1359 return ufshcd_compose_upiu(hba, lrbp);
1360}
1361
1362static int
1363ufshcd_clear_cmd(struct ufs_hba *hba, int tag)
1364{
1365 int err = 0;
1366 unsigned long flags;
1367 u32 mask = 1 << tag;
1368
1369 /* clear outstanding transaction before retry */
1370 spin_lock_irqsave(hba->host->host_lock, flags);
1371 ufshcd_utrl_clear(hba, tag);
1372 spin_unlock_irqrestore(hba->host->host_lock, flags);
1373
1374 /*
1375 * wait for for h/w to clear corresponding bit in door-bell.
1376 * max. wait is 1 sec.
1377 */
1378 err = ufshcd_wait_for_register(hba,
1379 REG_UTP_TRANSFER_REQ_DOOR_BELL,
1380 mask, ~mask, 1000, 1000);
1381
1382 return err;
1383}
1384
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001385static int
1386ufshcd_check_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1387{
1388 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
1389
1390 /* Get the UPIU response */
1391 query_res->response = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr) >>
1392 UPIU_RSP_CODE_OFFSET;
1393 return query_res->response;
1394}
1395
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301396/**
1397 * ufshcd_dev_cmd_completion() - handles device management command responses
1398 * @hba: per adapter instance
1399 * @lrbp: pointer to local reference block
1400 */
1401static int
1402ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1403{
1404 int resp;
1405 int err = 0;
1406
1407 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
1408
1409 switch (resp) {
1410 case UPIU_TRANSACTION_NOP_IN:
1411 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
1412 err = -EINVAL;
1413 dev_err(hba->dev, "%s: unexpected response %x\n",
1414 __func__, resp);
1415 }
1416 break;
Dolev Raviv68078d52013-07-30 00:35:58 +05301417 case UPIU_TRANSACTION_QUERY_RSP:
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001418 err = ufshcd_check_query_response(hba, lrbp);
1419 if (!err)
1420 err = ufshcd_copy_query_response(hba, lrbp);
Dolev Raviv68078d52013-07-30 00:35:58 +05301421 break;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301422 case UPIU_TRANSACTION_REJECT_UPIU:
1423 /* TODO: handle Reject UPIU Response */
1424 err = -EPERM;
1425 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
1426 __func__);
1427 break;
1428 default:
1429 err = -EINVAL;
1430 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
1431 __func__, resp);
1432 break;
1433 }
1434
1435 return err;
1436}
1437
1438static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
1439 struct ufshcd_lrb *lrbp, int max_timeout)
1440{
1441 int err = 0;
1442 unsigned long time_left;
1443 unsigned long flags;
1444
1445 time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
1446 msecs_to_jiffies(max_timeout));
1447
1448 spin_lock_irqsave(hba->host->host_lock, flags);
1449 hba->dev_cmd.complete = NULL;
1450 if (likely(time_left)) {
1451 err = ufshcd_get_tr_ocs(lrbp);
1452 if (!err)
1453 err = ufshcd_dev_cmd_completion(hba, lrbp);
1454 }
1455 spin_unlock_irqrestore(hba->host->host_lock, flags);
1456
1457 if (!time_left) {
1458 err = -ETIMEDOUT;
1459 if (!ufshcd_clear_cmd(hba, lrbp->task_tag))
1460 /* sucessfully cleared the command, retry if needed */
1461 err = -EAGAIN;
1462 }
1463
1464 return err;
1465}
1466
1467/**
1468 * ufshcd_get_dev_cmd_tag - Get device management command tag
1469 * @hba: per-adapter instance
1470 * @tag: pointer to variable with available slot value
1471 *
1472 * Get a free slot and lock it until device management command
1473 * completes.
1474 *
1475 * Returns false if free slot is unavailable for locking, else
1476 * return true with tag value in @tag.
1477 */
1478static bool ufshcd_get_dev_cmd_tag(struct ufs_hba *hba, int *tag_out)
1479{
1480 int tag;
1481 bool ret = false;
1482 unsigned long tmp;
1483
1484 if (!tag_out)
1485 goto out;
1486
1487 do {
1488 tmp = ~hba->lrb_in_use;
1489 tag = find_last_bit(&tmp, hba->nutrs);
1490 if (tag >= hba->nutrs)
1491 goto out;
1492 } while (test_and_set_bit_lock(tag, &hba->lrb_in_use));
1493
1494 *tag_out = tag;
1495 ret = true;
1496out:
1497 return ret;
1498}
1499
1500static inline void ufshcd_put_dev_cmd_tag(struct ufs_hba *hba, int tag)
1501{
1502 clear_bit_unlock(tag, &hba->lrb_in_use);
1503}
1504
1505/**
1506 * ufshcd_exec_dev_cmd - API for sending device management requests
1507 * @hba - UFS hba
1508 * @cmd_type - specifies the type (NOP, Query...)
1509 * @timeout - time in seconds
1510 *
Dolev Raviv68078d52013-07-30 00:35:58 +05301511 * NOTE: Since there is only one available tag for device management commands,
1512 * it is expected you hold the hba->dev_cmd.lock mutex.
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301513 */
1514static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
1515 enum dev_cmd_type cmd_type, int timeout)
1516{
1517 struct ufshcd_lrb *lrbp;
1518 int err;
1519 int tag;
1520 struct completion wait;
1521 unsigned long flags;
1522
1523 /*
1524 * Get free slot, sleep if slots are unavailable.
1525 * Even though we use wait_event() which sleeps indefinitely,
1526 * the maximum wait time is bounded by SCSI request timeout.
1527 */
1528 wait_event(hba->dev_cmd.tag_wq, ufshcd_get_dev_cmd_tag(hba, &tag));
1529
1530 init_completion(&wait);
1531 lrbp = &hba->lrb[tag];
1532 WARN_ON(lrbp->cmd);
1533 err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
1534 if (unlikely(err))
1535 goto out_put_tag;
1536
1537 hba->dev_cmd.complete = &wait;
1538
1539 spin_lock_irqsave(hba->host->host_lock, flags);
1540 ufshcd_send_command(hba, tag);
1541 spin_unlock_irqrestore(hba->host->host_lock, flags);
1542
1543 err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
1544
1545out_put_tag:
1546 ufshcd_put_dev_cmd_tag(hba, tag);
1547 wake_up(&hba->dev_cmd.tag_wq);
1548 return err;
1549}
1550
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301551/**
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001552 * ufshcd_init_query() - init the query response and request parameters
1553 * @hba: per-adapter instance
1554 * @request: address of the request pointer to be initialized
1555 * @response: address of the response pointer to be initialized
1556 * @opcode: operation to perform
1557 * @idn: flag idn to access
1558 * @index: LU number to access
1559 * @selector: query/flag/descriptor further identification
1560 */
1561static inline void ufshcd_init_query(struct ufs_hba *hba,
1562 struct ufs_query_req **request, struct ufs_query_res **response,
1563 enum query_opcode opcode, u8 idn, u8 index, u8 selector)
1564{
1565 *request = &hba->dev_cmd.query.request;
1566 *response = &hba->dev_cmd.query.response;
1567 memset(*request, 0, sizeof(struct ufs_query_req));
1568 memset(*response, 0, sizeof(struct ufs_query_res));
1569 (*request)->upiu_req.opcode = opcode;
1570 (*request)->upiu_req.idn = idn;
1571 (*request)->upiu_req.index = index;
1572 (*request)->upiu_req.selector = selector;
1573}
1574
1575/**
Dolev Raviv68078d52013-07-30 00:35:58 +05301576 * ufshcd_query_flag() - API function for sending flag query requests
1577 * hba: per-adapter instance
1578 * query_opcode: flag query to perform
1579 * idn: flag idn to access
1580 * flag_res: the flag value after the query request completes
1581 *
1582 * Returns 0 for success, non-zero in case of failure
1583 */
1584static int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
1585 enum flag_idn idn, bool *flag_res)
1586{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001587 struct ufs_query_req *request = NULL;
1588 struct ufs_query_res *response = NULL;
1589 int err, index = 0, selector = 0;
Dolev Raviv68078d52013-07-30 00:35:58 +05301590
1591 BUG_ON(!hba);
1592
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001593 ufshcd_hold(hba, false);
Dolev Raviv68078d52013-07-30 00:35:58 +05301594 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001595 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1596 selector);
Dolev Raviv68078d52013-07-30 00:35:58 +05301597
1598 switch (opcode) {
1599 case UPIU_QUERY_OPCODE_SET_FLAG:
1600 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
1601 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
1602 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1603 break;
1604 case UPIU_QUERY_OPCODE_READ_FLAG:
1605 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1606 if (!flag_res) {
1607 /* No dummy reads */
1608 dev_err(hba->dev, "%s: Invalid argument for read request\n",
1609 __func__);
1610 err = -EINVAL;
1611 goto out_unlock;
1612 }
1613 break;
1614 default:
1615 dev_err(hba->dev,
1616 "%s: Expected query flag opcode but got = %d\n",
1617 __func__, opcode);
1618 err = -EINVAL;
1619 goto out_unlock;
1620 }
Dolev Raviv68078d52013-07-30 00:35:58 +05301621
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001622 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
Dolev Raviv68078d52013-07-30 00:35:58 +05301623
1624 if (err) {
1625 dev_err(hba->dev,
1626 "%s: Sending flag query for idn %d failed, err = %d\n",
1627 __func__, idn, err);
1628 goto out_unlock;
1629 }
1630
1631 if (flag_res)
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301632 *flag_res = (be32_to_cpu(response->upiu_res.value) &
Dolev Raviv68078d52013-07-30 00:35:58 +05301633 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
1634
1635out_unlock:
1636 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001637 ufshcd_release(hba);
Dolev Raviv68078d52013-07-30 00:35:58 +05301638 return err;
1639}
1640
1641/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301642 * ufshcd_query_attr - API function for sending attribute requests
1643 * hba: per-adapter instance
1644 * opcode: attribute opcode
1645 * idn: attribute idn to access
1646 * index: index field
1647 * selector: selector field
1648 * attr_val: the attribute value after the query request completes
1649 *
1650 * Returns 0 for success, non-zero in case of failure
1651*/
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05301652static int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301653 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
1654{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001655 struct ufs_query_req *request = NULL;
1656 struct ufs_query_res *response = NULL;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301657 int err;
1658
1659 BUG_ON(!hba);
1660
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001661 ufshcd_hold(hba, false);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301662 if (!attr_val) {
1663 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
1664 __func__, opcode);
1665 err = -EINVAL;
1666 goto out;
1667 }
1668
1669 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001670 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1671 selector);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301672
1673 switch (opcode) {
1674 case UPIU_QUERY_OPCODE_WRITE_ATTR:
1675 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301676 request->upiu_req.value = cpu_to_be32(*attr_val);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301677 break;
1678 case UPIU_QUERY_OPCODE_READ_ATTR:
1679 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1680 break;
1681 default:
1682 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
1683 __func__, opcode);
1684 err = -EINVAL;
1685 goto out_unlock;
1686 }
1687
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001688 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301689
1690 if (err) {
1691 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1692 __func__, opcode, idn, err);
1693 goto out_unlock;
1694 }
1695
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301696 *attr_val = be32_to_cpu(response->upiu_res.value);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301697
1698out_unlock:
1699 mutex_unlock(&hba->dev_cmd.lock);
1700out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001701 ufshcd_release(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301702 return err;
1703}
1704
1705/**
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001706 * ufshcd_query_descriptor - API function for sending descriptor requests
1707 * hba: per-adapter instance
1708 * opcode: attribute opcode
1709 * idn: attribute idn to access
1710 * index: index field
1711 * selector: selector field
1712 * desc_buf: the buffer that contains the descriptor
1713 * buf_len: length parameter passed to the device
1714 *
1715 * Returns 0 for success, non-zero in case of failure.
1716 * The buf_len parameter will contain, on return, the length parameter
1717 * received on the response.
1718 */
Sujit Reddy Thumma7289f982014-07-23 09:31:11 +03001719static int ufshcd_query_descriptor(struct ufs_hba *hba,
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001720 enum query_opcode opcode, enum desc_idn idn, u8 index,
1721 u8 selector, u8 *desc_buf, int *buf_len)
1722{
1723 struct ufs_query_req *request = NULL;
1724 struct ufs_query_res *response = NULL;
1725 int err;
1726
1727 BUG_ON(!hba);
1728
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001729 ufshcd_hold(hba, false);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001730 if (!desc_buf) {
1731 dev_err(hba->dev, "%s: descriptor buffer required for opcode 0x%x\n",
1732 __func__, opcode);
1733 err = -EINVAL;
1734 goto out;
1735 }
1736
1737 if (*buf_len <= QUERY_DESC_MIN_SIZE || *buf_len > QUERY_DESC_MAX_SIZE) {
1738 dev_err(hba->dev, "%s: descriptor buffer size (%d) is out of range\n",
1739 __func__, *buf_len);
1740 err = -EINVAL;
1741 goto out;
1742 }
1743
1744 mutex_lock(&hba->dev_cmd.lock);
1745 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1746 selector);
1747 hba->dev_cmd.query.descriptor = desc_buf;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001748 request->upiu_req.length = cpu_to_be16(*buf_len);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001749
1750 switch (opcode) {
1751 case UPIU_QUERY_OPCODE_WRITE_DESC:
1752 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1753 break;
1754 case UPIU_QUERY_OPCODE_READ_DESC:
1755 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1756 break;
1757 default:
1758 dev_err(hba->dev,
1759 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
1760 __func__, opcode);
1761 err = -EINVAL;
1762 goto out_unlock;
1763 }
1764
1765 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
1766
1767 if (err) {
1768 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1769 __func__, opcode, idn, err);
1770 goto out_unlock;
1771 }
1772
1773 hba->dev_cmd.query.descriptor = NULL;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001774 *buf_len = be16_to_cpu(response->upiu_res.length);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001775
1776out_unlock:
1777 mutex_unlock(&hba->dev_cmd.lock);
1778out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001779 ufshcd_release(hba);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001780 return err;
1781}
1782
1783/**
Subhash Jadavanida461ce2014-09-25 15:32:25 +03001784 * ufshcd_read_desc_param - read the specified descriptor parameter
1785 * @hba: Pointer to adapter instance
1786 * @desc_id: descriptor idn value
1787 * @desc_index: descriptor index
1788 * @param_offset: offset of the parameter to read
1789 * @param_read_buf: pointer to buffer where parameter would be read
1790 * @param_size: sizeof(param_read_buf)
1791 *
1792 * Return 0 in case of success, non-zero otherwise
1793 */
1794static int ufshcd_read_desc_param(struct ufs_hba *hba,
1795 enum desc_idn desc_id,
1796 int desc_index,
1797 u32 param_offset,
1798 u8 *param_read_buf,
1799 u32 param_size)
1800{
1801 int ret;
1802 u8 *desc_buf;
1803 u32 buff_len;
1804 bool is_kmalloc = true;
1805
1806 /* safety checks */
1807 if (desc_id >= QUERY_DESC_IDN_MAX)
1808 return -EINVAL;
1809
1810 buff_len = ufs_query_desc_max_size[desc_id];
1811 if ((param_offset + param_size) > buff_len)
1812 return -EINVAL;
1813
1814 if (!param_offset && (param_size == buff_len)) {
1815 /* memory space already available to hold full descriptor */
1816 desc_buf = param_read_buf;
1817 is_kmalloc = false;
1818 } else {
1819 /* allocate memory to hold full descriptor */
1820 desc_buf = kmalloc(buff_len, GFP_KERNEL);
1821 if (!desc_buf)
1822 return -ENOMEM;
1823 }
1824
1825 ret = ufshcd_query_descriptor(hba, UPIU_QUERY_OPCODE_READ_DESC,
1826 desc_id, desc_index, 0, desc_buf,
1827 &buff_len);
1828
1829 if (ret || (buff_len < ufs_query_desc_max_size[desc_id]) ||
1830 (desc_buf[QUERY_DESC_LENGTH_OFFSET] !=
1831 ufs_query_desc_max_size[desc_id])
1832 || (desc_buf[QUERY_DESC_DESC_TYPE_OFFSET] != desc_id)) {
1833 dev_err(hba->dev, "%s: Failed reading descriptor. desc_id %d param_offset %d buff_len %d ret %d",
1834 __func__, desc_id, param_offset, buff_len, ret);
1835 if (!ret)
1836 ret = -EINVAL;
1837
1838 goto out;
1839 }
1840
1841 if (is_kmalloc)
1842 memcpy(param_read_buf, &desc_buf[param_offset], param_size);
1843out:
1844 if (is_kmalloc)
1845 kfree(desc_buf);
1846 return ret;
1847}
1848
1849static inline int ufshcd_read_desc(struct ufs_hba *hba,
1850 enum desc_idn desc_id,
1851 int desc_index,
1852 u8 *buf,
1853 u32 size)
1854{
1855 return ufshcd_read_desc_param(hba, desc_id, desc_index, 0, buf, size);
1856}
1857
1858static inline int ufshcd_read_power_desc(struct ufs_hba *hba,
1859 u8 *buf,
1860 u32 size)
1861{
1862 return ufshcd_read_desc(hba, QUERY_DESC_IDN_POWER, 0, buf, size);
1863}
1864
1865/**
1866 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
1867 * @hba: Pointer to adapter instance
1868 * @lun: lun id
1869 * @param_offset: offset of the parameter to read
1870 * @param_read_buf: pointer to buffer where parameter would be read
1871 * @param_size: sizeof(param_read_buf)
1872 *
1873 * Return 0 in case of success, non-zero otherwise
1874 */
1875static inline int ufshcd_read_unit_desc_param(struct ufs_hba *hba,
1876 int lun,
1877 enum unit_desc_param param_offset,
1878 u8 *param_read_buf,
1879 u32 param_size)
1880{
1881 /*
1882 * Unit descriptors are only available for general purpose LUs (LUN id
1883 * from 0 to 7) and RPMB Well known LU.
1884 */
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001885 if (lun != UFS_UPIU_RPMB_WLUN && (lun >= UFS_UPIU_MAX_GENERAL_LUN))
Subhash Jadavanida461ce2014-09-25 15:32:25 +03001886 return -EOPNOTSUPP;
1887
1888 return ufshcd_read_desc_param(hba, QUERY_DESC_IDN_UNIT, lun,
1889 param_offset, param_read_buf, param_size);
1890}
1891
1892/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301893 * ufshcd_memory_alloc - allocate memory for host memory space data structures
1894 * @hba: per adapter instance
1895 *
1896 * 1. Allocate DMA memory for Command Descriptor array
1897 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
1898 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
1899 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
1900 * (UTMRDL)
1901 * 4. Allocate memory for local reference block(lrb).
1902 *
1903 * Returns 0 for success, non-zero in case of failure
1904 */
1905static int ufshcd_memory_alloc(struct ufs_hba *hba)
1906{
1907 size_t utmrdl_size, utrdl_size, ucdl_size;
1908
1909 /* Allocate memory for UTP command descriptors */
1910 ucdl_size = (sizeof(struct utp_transfer_cmd_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09001911 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
1912 ucdl_size,
1913 &hba->ucdl_dma_addr,
1914 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301915
1916 /*
1917 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
1918 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
1919 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
1920 * be aligned to 128 bytes as well
1921 */
1922 if (!hba->ucdl_base_addr ||
1923 WARN_ON(hba->ucdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301924 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301925 "Command Descriptor Memory allocation failed\n");
1926 goto out;
1927 }
1928
1929 /*
1930 * Allocate memory for UTP Transfer descriptors
1931 * UFSHCI requires 1024 byte alignment of UTRD
1932 */
1933 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09001934 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
1935 utrdl_size,
1936 &hba->utrdl_dma_addr,
1937 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301938 if (!hba->utrdl_base_addr ||
1939 WARN_ON(hba->utrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301940 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301941 "Transfer Descriptor Memory allocation failed\n");
1942 goto out;
1943 }
1944
1945 /*
1946 * Allocate memory for UTP Task Management descriptors
1947 * UFSHCI requires 1024 byte alignment of UTMRD
1948 */
1949 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
Seungwon Jeon2953f852013-06-27 13:31:54 +09001950 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
1951 utmrdl_size,
1952 &hba->utmrdl_dma_addr,
1953 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301954 if (!hba->utmrdl_base_addr ||
1955 WARN_ON(hba->utmrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301956 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301957 "Task Management Descriptor Memory allocation failed\n");
1958 goto out;
1959 }
1960
1961 /* Allocate memory for local reference block */
Seungwon Jeon2953f852013-06-27 13:31:54 +09001962 hba->lrb = devm_kzalloc(hba->dev,
1963 hba->nutrs * sizeof(struct ufshcd_lrb),
1964 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301965 if (!hba->lrb) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301966 dev_err(hba->dev, "LRB Memory allocation failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301967 goto out;
1968 }
1969 return 0;
1970out:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301971 return -ENOMEM;
1972}
1973
1974/**
1975 * ufshcd_host_memory_configure - configure local reference block with
1976 * memory offsets
1977 * @hba: per adapter instance
1978 *
1979 * Configure Host memory space
1980 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
1981 * address.
1982 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
1983 * and PRDT offset.
1984 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
1985 * into local reference block.
1986 */
1987static void ufshcd_host_memory_configure(struct ufs_hba *hba)
1988{
1989 struct utp_transfer_cmd_desc *cmd_descp;
1990 struct utp_transfer_req_desc *utrdlp;
1991 dma_addr_t cmd_desc_dma_addr;
1992 dma_addr_t cmd_desc_element_addr;
1993 u16 response_offset;
1994 u16 prdt_offset;
1995 int cmd_desc_size;
1996 int i;
1997
1998 utrdlp = hba->utrdl_base_addr;
1999 cmd_descp = hba->ucdl_base_addr;
2000
2001 response_offset =
2002 offsetof(struct utp_transfer_cmd_desc, response_upiu);
2003 prdt_offset =
2004 offsetof(struct utp_transfer_cmd_desc, prd_table);
2005
2006 cmd_desc_size = sizeof(struct utp_transfer_cmd_desc);
2007 cmd_desc_dma_addr = hba->ucdl_dma_addr;
2008
2009 for (i = 0; i < hba->nutrs; i++) {
2010 /* Configure UTRD with command descriptor base address */
2011 cmd_desc_element_addr =
2012 (cmd_desc_dma_addr + (cmd_desc_size * i));
2013 utrdlp[i].command_desc_base_addr_lo =
2014 cpu_to_le32(lower_32_bits(cmd_desc_element_addr));
2015 utrdlp[i].command_desc_base_addr_hi =
2016 cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
2017
2018 /* Response upiu and prdt offset should be in double words */
2019 utrdlp[i].response_upiu_offset =
2020 cpu_to_le16((response_offset >> 2));
2021 utrdlp[i].prd_table_offset =
2022 cpu_to_le16((prdt_offset >> 2));
2023 utrdlp[i].response_upiu_length =
Sujit Reddy Thumma3ca316c2013-06-26 22:39:30 +05302024 cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302025
2026 hba->lrb[i].utr_descriptor_ptr = (utrdlp + i);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302027 hba->lrb[i].ucd_req_ptr =
2028 (struct utp_upiu_req *)(cmd_descp + i);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302029 hba->lrb[i].ucd_rsp_ptr =
2030 (struct utp_upiu_rsp *)cmd_descp[i].response_upiu;
2031 hba->lrb[i].ucd_prdt_ptr =
2032 (struct ufshcd_sg_entry *)cmd_descp[i].prd_table;
2033 }
2034}
2035
2036/**
2037 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
2038 * @hba: per adapter instance
2039 *
2040 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
2041 * in order to initialize the Unipro link startup procedure.
2042 * Once the Unipro links are up, the device connected to the controller
2043 * is detected.
2044 *
2045 * Returns 0 on success, non-zero value on failure
2046 */
2047static int ufshcd_dme_link_startup(struct ufs_hba *hba)
2048{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302049 struct uic_command uic_cmd = {0};
2050 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302051
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302052 uic_cmd.command = UIC_CMD_DME_LINK_STARTUP;
2053
2054 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2055 if (ret)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302056 dev_err(hba->dev,
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302057 "dme-link-startup: error code %d\n", ret);
2058 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302059}
2060
2061/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302062 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
2063 * @hba: per adapter instance
2064 * @attr_sel: uic command argument1
2065 * @attr_set: attribute set type as uic command argument2
2066 * @mib_val: setting value as uic command argument3
2067 * @peer: indicate whether peer or local
2068 *
2069 * Returns 0 on success, non-zero value on failure
2070 */
2071int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
2072 u8 attr_set, u32 mib_val, u8 peer)
2073{
2074 struct uic_command uic_cmd = {0};
2075 static const char *const action[] = {
2076 "dme-set",
2077 "dme-peer-set"
2078 };
2079 const char *set = action[!!peer];
2080 int ret;
2081
2082 uic_cmd.command = peer ?
2083 UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET;
2084 uic_cmd.argument1 = attr_sel;
2085 uic_cmd.argument2 = UIC_ARG_ATTR_TYPE(attr_set);
2086 uic_cmd.argument3 = mib_val;
2087
2088 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2089 if (ret)
2090 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
2091 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
2092
2093 return ret;
2094}
2095EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
2096
2097/**
2098 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
2099 * @hba: per adapter instance
2100 * @attr_sel: uic command argument1
2101 * @mib_val: the value of the attribute as returned by the UIC command
2102 * @peer: indicate whether peer or local
2103 *
2104 * Returns 0 on success, non-zero value on failure
2105 */
2106int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
2107 u32 *mib_val, u8 peer)
2108{
2109 struct uic_command uic_cmd = {0};
2110 static const char *const action[] = {
2111 "dme-get",
2112 "dme-peer-get"
2113 };
2114 const char *get = action[!!peer];
2115 int ret;
2116
2117 uic_cmd.command = peer ?
2118 UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET;
2119 uic_cmd.argument1 = attr_sel;
2120
2121 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2122 if (ret) {
2123 dev_err(hba->dev, "%s: attr-id 0x%x error code %d\n",
2124 get, UIC_GET_ATTR_ID(attr_sel), ret);
2125 goto out;
2126 }
2127
2128 if (mib_val)
2129 *mib_val = uic_cmd.argument3;
2130out:
2131 return ret;
2132}
2133EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
2134
2135/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002136 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
2137 * state) and waits for it to take effect.
2138 *
2139 * @hba: per adapter instance
2140 * @cmd: UIC command to execute
2141 *
2142 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
2143 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
2144 * and device UniPro link and hence it's final completion would be indicated by
2145 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
2146 * addition to normal UIC command completion Status (UCCS). This function only
2147 * returns after the relevant status bits indicate the completion.
2148 *
2149 * Returns 0 on success, non-zero value on failure
2150 */
2151static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
2152{
2153 struct completion uic_async_done;
2154 unsigned long flags;
2155 u8 status;
2156 int ret;
2157
2158 mutex_lock(&hba->uic_cmd_mutex);
2159 init_completion(&uic_async_done);
2160
2161 spin_lock_irqsave(hba->host->host_lock, flags);
2162 hba->uic_async_done = &uic_async_done;
2163 ret = __ufshcd_send_uic_cmd(hba, cmd);
2164 spin_unlock_irqrestore(hba->host->host_lock, flags);
2165 if (ret) {
2166 dev_err(hba->dev,
2167 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
2168 cmd->command, cmd->argument3, ret);
2169 goto out;
2170 }
2171 ret = ufshcd_wait_for_uic_cmd(hba, cmd);
2172 if (ret) {
2173 dev_err(hba->dev,
2174 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
2175 cmd->command, cmd->argument3, ret);
2176 goto out;
2177 }
2178
2179 if (!wait_for_completion_timeout(hba->uic_async_done,
2180 msecs_to_jiffies(UIC_CMD_TIMEOUT))) {
2181 dev_err(hba->dev,
2182 "pwr ctrl cmd 0x%x with mode 0x%x completion timeout\n",
2183 cmd->command, cmd->argument3);
2184 ret = -ETIMEDOUT;
2185 goto out;
2186 }
2187
2188 status = ufshcd_get_upmcrs(hba);
2189 if (status != PWR_LOCAL) {
2190 dev_err(hba->dev,
2191 "pwr ctrl cmd 0x%0x failed, host umpcrs:0x%x\n",
2192 cmd->command, status);
2193 ret = (status != PWR_OK) ? status : -1;
2194 }
2195out:
2196 spin_lock_irqsave(hba->host->host_lock, flags);
2197 hba->uic_async_done = NULL;
2198 spin_unlock_irqrestore(hba->host->host_lock, flags);
2199 mutex_unlock(&hba->uic_cmd_mutex);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002200
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002201 return ret;
2202}
2203
2204/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302205 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
2206 * using DME_SET primitives.
2207 * @hba: per adapter instance
2208 * @mode: powr mode value
2209 *
2210 * Returns 0 on success, non-zero value on failure
2211 */
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05302212static int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302213{
2214 struct uic_command uic_cmd = {0};
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002215 int ret;
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302216
2217 uic_cmd.command = UIC_CMD_DME_SET;
2218 uic_cmd.argument1 = UIC_ARG_MIB(PA_PWRMODE);
2219 uic_cmd.argument3 = mode;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002220 ufshcd_hold(hba, false);
2221 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
2222 ufshcd_release(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302223
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002224 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002225}
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302226
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002227static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
2228{
2229 struct uic_command uic_cmd = {0};
2230
2231 uic_cmd.command = UIC_CMD_DME_HIBER_ENTER;
2232
2233 return ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
2234}
2235
2236static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba)
2237{
2238 struct uic_command uic_cmd = {0};
2239 int ret;
2240
2241 uic_cmd.command = UIC_CMD_DME_HIBER_EXIT;
2242 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302243 if (ret) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002244 ufshcd_set_link_off(hba);
2245 ret = ufshcd_host_reset_and_restore(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302246 }
2247
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302248 return ret;
2249}
2250
Yaniv Gardi50646362014-10-23 13:25:13 +03002251 /**
2252 * ufshcd_init_pwr_info - setting the POR (power on reset)
2253 * values in hba power info
2254 * @hba: per-adapter instance
2255 */
2256static void ufshcd_init_pwr_info(struct ufs_hba *hba)
2257{
2258 hba->pwr_info.gear_rx = UFS_PWM_G1;
2259 hba->pwr_info.gear_tx = UFS_PWM_G1;
2260 hba->pwr_info.lane_rx = 1;
2261 hba->pwr_info.lane_tx = 1;
2262 hba->pwr_info.pwr_rx = SLOWAUTO_MODE;
2263 hba->pwr_info.pwr_tx = SLOWAUTO_MODE;
2264 hba->pwr_info.hs_rate = 0;
2265}
2266
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302267/**
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002268 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
2269 * @hba: per-adapter instance
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302270 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002271static int ufshcd_get_max_pwr_mode(struct ufs_hba *hba)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302272{
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002273 struct ufs_pa_layer_attr *pwr_info = &hba->max_pwr_info.info;
2274
2275 if (hba->max_pwr_info.is_valid)
2276 return 0;
2277
2278 pwr_info->pwr_tx = FASTAUTO_MODE;
2279 pwr_info->pwr_rx = FASTAUTO_MODE;
2280 pwr_info->hs_rate = PA_HS_MODE_B;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302281
2282 /* Get the connected lane count */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002283 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
2284 &pwr_info->lane_rx);
2285 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
2286 &pwr_info->lane_tx);
2287
2288 if (!pwr_info->lane_rx || !pwr_info->lane_tx) {
2289 dev_err(hba->dev, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
2290 __func__,
2291 pwr_info->lane_rx,
2292 pwr_info->lane_tx);
2293 return -EINVAL;
2294 }
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302295
2296 /*
2297 * First, get the maximum gears of HS speed.
2298 * If a zero value, it means there is no HSGEAR capability.
2299 * Then, get the maximum gears of PWM speed.
2300 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002301 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &pwr_info->gear_rx);
2302 if (!pwr_info->gear_rx) {
2303 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
2304 &pwr_info->gear_rx);
2305 if (!pwr_info->gear_rx) {
2306 dev_err(hba->dev, "%s: invalid max pwm rx gear read = %d\n",
2307 __func__, pwr_info->gear_rx);
2308 return -EINVAL;
2309 }
2310 pwr_info->pwr_rx = SLOWAUTO_MODE;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302311 }
2312
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002313 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR),
2314 &pwr_info->gear_tx);
2315 if (!pwr_info->gear_tx) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302316 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002317 &pwr_info->gear_tx);
2318 if (!pwr_info->gear_tx) {
2319 dev_err(hba->dev, "%s: invalid max pwm tx gear read = %d\n",
2320 __func__, pwr_info->gear_tx);
2321 return -EINVAL;
2322 }
2323 pwr_info->pwr_tx = SLOWAUTO_MODE;
2324 }
2325
2326 hba->max_pwr_info.is_valid = true;
2327 return 0;
2328}
2329
2330static int ufshcd_change_power_mode(struct ufs_hba *hba,
2331 struct ufs_pa_layer_attr *pwr_mode)
2332{
2333 int ret;
2334
2335 /* if already configured to the requested pwr_mode */
2336 if (pwr_mode->gear_rx == hba->pwr_info.gear_rx &&
2337 pwr_mode->gear_tx == hba->pwr_info.gear_tx &&
2338 pwr_mode->lane_rx == hba->pwr_info.lane_rx &&
2339 pwr_mode->lane_tx == hba->pwr_info.lane_tx &&
2340 pwr_mode->pwr_rx == hba->pwr_info.pwr_rx &&
2341 pwr_mode->pwr_tx == hba->pwr_info.pwr_tx &&
2342 pwr_mode->hs_rate == hba->pwr_info.hs_rate) {
2343 dev_dbg(hba->dev, "%s: power already configured\n", __func__);
2344 return 0;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302345 }
2346
2347 /*
2348 * Configure attributes for power mode change with below.
2349 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
2350 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
2351 * - PA_HSSERIES
2352 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002353 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), pwr_mode->gear_rx);
2354 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES),
2355 pwr_mode->lane_rx);
2356 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
2357 pwr_mode->pwr_rx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302358 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002359 else
2360 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302361
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002362 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), pwr_mode->gear_tx);
2363 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES),
2364 pwr_mode->lane_tx);
2365 if (pwr_mode->pwr_tx == FASTAUTO_MODE ||
2366 pwr_mode->pwr_tx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302367 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002368 else
2369 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302370
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002371 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
2372 pwr_mode->pwr_tx == FASTAUTO_MODE ||
2373 pwr_mode->pwr_rx == FAST_MODE ||
2374 pwr_mode->pwr_tx == FAST_MODE)
2375 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES),
2376 pwr_mode->hs_rate);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302377
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002378 ret = ufshcd_uic_change_pwr_mode(hba, pwr_mode->pwr_rx << 4
2379 | pwr_mode->pwr_tx);
2380
2381 if (ret) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302382 dev_err(hba->dev,
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002383 "%s: power mode change failed %d\n", __func__, ret);
2384 } else {
2385 if (hba->vops && hba->vops->pwr_change_notify)
2386 hba->vops->pwr_change_notify(hba,
2387 POST_CHANGE, NULL, pwr_mode);
2388
2389 memcpy(&hba->pwr_info, pwr_mode,
2390 sizeof(struct ufs_pa_layer_attr));
2391 }
2392
2393 return ret;
2394}
2395
2396/**
2397 * ufshcd_config_pwr_mode - configure a new power mode
2398 * @hba: per-adapter instance
2399 * @desired_pwr_mode: desired power configuration
2400 */
2401static int ufshcd_config_pwr_mode(struct ufs_hba *hba,
2402 struct ufs_pa_layer_attr *desired_pwr_mode)
2403{
2404 struct ufs_pa_layer_attr final_params = { 0 };
2405 int ret;
2406
2407 if (hba->vops && hba->vops->pwr_change_notify)
2408 hba->vops->pwr_change_notify(hba,
2409 PRE_CHANGE, desired_pwr_mode, &final_params);
2410 else
2411 memcpy(&final_params, desired_pwr_mode, sizeof(final_params));
2412
2413 ret = ufshcd_change_power_mode(hba, &final_params);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302414
2415 return ret;
2416}
2417
2418/**
Dolev Raviv68078d52013-07-30 00:35:58 +05302419 * ufshcd_complete_dev_init() - checks device readiness
2420 * hba: per-adapter instance
2421 *
2422 * Set fDeviceInit flag and poll until device toggles it.
2423 */
2424static int ufshcd_complete_dev_init(struct ufs_hba *hba)
2425{
2426 int i, retries, err = 0;
2427 bool flag_res = 1;
2428
2429 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
2430 /* Set the fDeviceInit flag */
2431 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_SET_FLAG,
2432 QUERY_FLAG_IDN_FDEVICEINIT, NULL);
2433 if (!err || err == -ETIMEDOUT)
2434 break;
2435 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
2436 }
2437 if (err) {
2438 dev_err(hba->dev,
2439 "%s setting fDeviceInit flag failed with error %d\n",
2440 __func__, err);
2441 goto out;
2442 }
2443
2444 /* poll for max. 100 iterations for fDeviceInit flag to clear */
2445 for (i = 0; i < 100 && !err && flag_res; i++) {
2446 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
2447 err = ufshcd_query_flag(hba,
2448 UPIU_QUERY_OPCODE_READ_FLAG,
2449 QUERY_FLAG_IDN_FDEVICEINIT, &flag_res);
2450 if (!err || err == -ETIMEDOUT)
2451 break;
2452 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__,
2453 err);
2454 }
2455 }
2456 if (err)
2457 dev_err(hba->dev,
2458 "%s reading fDeviceInit flag failed with error %d\n",
2459 __func__, err);
2460 else if (flag_res)
2461 dev_err(hba->dev,
2462 "%s fDeviceInit was not cleared by the device\n",
2463 __func__);
2464
2465out:
2466 return err;
2467}
2468
2469/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302470 * ufshcd_make_hba_operational - Make UFS controller operational
2471 * @hba: per adapter instance
2472 *
2473 * To bring UFS host controller to operational state,
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002474 * 1. Enable required interrupts
2475 * 2. Configure interrupt aggregation
2476 * 3. Program UTRL and UTMRL base addres
2477 * 4. Configure run-stop-registers
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302478 *
2479 * Returns 0 on success, non-zero value on failure
2480 */
2481static int ufshcd_make_hba_operational(struct ufs_hba *hba)
2482{
2483 int err = 0;
2484 u32 reg;
2485
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302486 /* Enable required interrupts */
2487 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
2488
2489 /* Configure interrupt aggregation */
Seungwon Jeon7d568652013-08-31 21:40:20 +05302490 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302491
2492 /* Configure UTRL and UTMRL base address registers */
2493 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
2494 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
2495 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
2496 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
2497 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
2498 REG_UTP_TASK_REQ_LIST_BASE_L);
2499 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
2500 REG_UTP_TASK_REQ_LIST_BASE_H);
2501
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302502 /*
2503 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
2504 * DEI, HEI bits must be 0
2505 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002506 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302507 if (!(ufshcd_get_lists_status(reg))) {
2508 ufshcd_enable_run_stop_reg(hba);
2509 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302510 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302511 "Host controller not ready to process requests");
2512 err = -EIO;
2513 goto out;
2514 }
2515
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302516out:
2517 return err;
2518}
2519
2520/**
2521 * ufshcd_hba_enable - initialize the controller
2522 * @hba: per adapter instance
2523 *
2524 * The controller resets itself and controller firmware initialization
2525 * sequence kicks off. When controller is ready it will set
2526 * the Host Controller Enable bit to 1.
2527 *
2528 * Returns 0 on success, non-zero value on failure
2529 */
2530static int ufshcd_hba_enable(struct ufs_hba *hba)
2531{
2532 int retry;
2533
2534 /*
2535 * msleep of 1 and 5 used in this function might result in msleep(20),
2536 * but it was necessary to send the UFS FPGA to reset mode during
2537 * development and testing of this driver. msleep can be changed to
2538 * mdelay and retry count can be reduced based on the controller.
2539 */
2540 if (!ufshcd_is_hba_active(hba)) {
2541
2542 /* change controller state to "reset state" */
2543 ufshcd_hba_stop(hba);
2544
2545 /*
2546 * This delay is based on the testing done with UFS host
2547 * controller FPGA. The delay can be changed based on the
2548 * host controller used.
2549 */
2550 msleep(5);
2551 }
2552
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002553 /* UniPro link is disabled at this point */
2554 ufshcd_set_link_off(hba);
2555
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002556 if (hba->vops && hba->vops->hce_enable_notify)
2557 hba->vops->hce_enable_notify(hba, PRE_CHANGE);
2558
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302559 /* start controller initialization sequence */
2560 ufshcd_hba_start(hba);
2561
2562 /*
2563 * To initialize a UFS host controller HCE bit must be set to 1.
2564 * During initialization the HCE bit value changes from 1->0->1.
2565 * When the host controller completes initialization sequence
2566 * it sets the value of HCE bit to 1. The same HCE bit is read back
2567 * to check if the controller has completed initialization sequence.
2568 * So without this delay the value HCE = 1, set in the previous
2569 * instruction might be read back.
2570 * This delay can be changed based on the controller.
2571 */
2572 msleep(1);
2573
2574 /* wait for the host controller to complete initialization */
2575 retry = 10;
2576 while (ufshcd_is_hba_active(hba)) {
2577 if (retry) {
2578 retry--;
2579 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302580 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302581 "Controller enable failed\n");
2582 return -EIO;
2583 }
2584 msleep(5);
2585 }
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002586
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002587 /* enable UIC related interrupts */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002588 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002589
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002590 if (hba->vops && hba->vops->hce_enable_notify)
2591 hba->vops->hce_enable_notify(hba, POST_CHANGE);
2592
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302593 return 0;
2594}
2595
2596/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302597 * ufshcd_link_startup - Initialize unipro link startup
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302598 * @hba: per adapter instance
2599 *
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302600 * Returns 0 for success, non-zero in case of failure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302601 */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302602static int ufshcd_link_startup(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302603{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302604 int ret;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002605 int retries = DME_LINKSTARTUP_RETRIES;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302606
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002607 do {
2608 if (hba->vops && hba->vops->link_startup_notify)
2609 hba->vops->link_startup_notify(hba, PRE_CHANGE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302610
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002611 ret = ufshcd_dme_link_startup(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002612
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002613 /* check if device is detected by inter-connect layer */
2614 if (!ret && !ufshcd_is_device_present(hba)) {
2615 dev_err(hba->dev, "%s: Device not present\n", __func__);
2616 ret = -ENXIO;
2617 goto out;
2618 }
2619
2620 /*
2621 * DME link lost indication is only received when link is up,
2622 * but we can't be sure if the link is up until link startup
2623 * succeeds. So reset the local Uni-Pro and try again.
2624 */
2625 if (ret && ufshcd_hba_enable(hba))
2626 goto out;
2627 } while (ret && retries--);
2628
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302629 if (ret)
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002630 /* failed to get the link up... retire */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302631 goto out;
2632
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002633 /* Include any host controller configuration via UIC commands */
2634 if (hba->vops && hba->vops->link_startup_notify) {
2635 ret = hba->vops->link_startup_notify(hba, POST_CHANGE);
2636 if (ret)
2637 goto out;
2638 }
2639
2640 ret = ufshcd_make_hba_operational(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302641out:
2642 if (ret)
2643 dev_err(hba->dev, "link startup failed %d\n", ret);
2644 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302645}
2646
2647/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302648 * ufshcd_verify_dev_init() - Verify device initialization
2649 * @hba: per-adapter instance
2650 *
2651 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
2652 * device Transport Protocol (UTP) layer is ready after a reset.
2653 * If the UTP layer at the device side is not initialized, it may
2654 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
2655 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
2656 */
2657static int ufshcd_verify_dev_init(struct ufs_hba *hba)
2658{
2659 int err = 0;
2660 int retries;
2661
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002662 ufshcd_hold(hba, false);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302663 mutex_lock(&hba->dev_cmd.lock);
2664 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
2665 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
2666 NOP_OUT_TIMEOUT);
2667
2668 if (!err || err == -ETIMEDOUT)
2669 break;
2670
2671 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
2672 }
2673 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002674 ufshcd_release(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302675
2676 if (err)
2677 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
2678 return err;
2679}
2680
2681/**
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002682 * ufshcd_set_queue_depth - set lun queue depth
2683 * @sdev: pointer to SCSI device
2684 *
2685 * Read bLUQueueDepth value and activate scsi tagged command
2686 * queueing. For WLUN, queue depth is set to 1. For best-effort
2687 * cases (bLUQueueDepth = 0) the queue depth is set to a maximum
2688 * value that host can queue.
2689 */
2690static void ufshcd_set_queue_depth(struct scsi_device *sdev)
2691{
2692 int ret = 0;
2693 u8 lun_qdepth;
2694 struct ufs_hba *hba;
2695
2696 hba = shost_priv(sdev->host);
2697
2698 lun_qdepth = hba->nutrs;
2699 ret = ufshcd_read_unit_desc_param(hba,
2700 ufshcd_scsi_to_upiu_lun(sdev->lun),
2701 UNIT_DESC_PARAM_LU_Q_DEPTH,
2702 &lun_qdepth,
2703 sizeof(lun_qdepth));
2704
2705 /* Some WLUN doesn't support unit descriptor */
2706 if (ret == -EOPNOTSUPP)
2707 lun_qdepth = 1;
2708 else if (!lun_qdepth)
2709 /* eventually, we can figure out the real queue depth */
2710 lun_qdepth = hba->nutrs;
2711 else
2712 lun_qdepth = min_t(int, lun_qdepth, hba->nutrs);
2713
2714 dev_dbg(hba->dev, "%s: activate tcq with queue depth %d\n",
2715 __func__, lun_qdepth);
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002716 scsi_change_queue_depth(sdev, lun_qdepth);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002717}
2718
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002719/*
2720 * ufshcd_get_lu_wp - returns the "b_lu_write_protect" from UNIT DESCRIPTOR
2721 * @hba: per-adapter instance
2722 * @lun: UFS device lun id
2723 * @b_lu_write_protect: pointer to buffer to hold the LU's write protect info
2724 *
2725 * Returns 0 in case of success and b_lu_write_protect status would be returned
2726 * @b_lu_write_protect parameter.
2727 * Returns -ENOTSUPP if reading b_lu_write_protect is not supported.
2728 * Returns -EINVAL in case of invalid parameters passed to this function.
2729 */
2730static int ufshcd_get_lu_wp(struct ufs_hba *hba,
2731 u8 lun,
2732 u8 *b_lu_write_protect)
2733{
2734 int ret;
2735
2736 if (!b_lu_write_protect)
2737 ret = -EINVAL;
2738 /*
2739 * According to UFS device spec, RPMB LU can't be write
2740 * protected so skip reading bLUWriteProtect parameter for
2741 * it. For other W-LUs, UNIT DESCRIPTOR is not available.
2742 */
2743 else if (lun >= UFS_UPIU_MAX_GENERAL_LUN)
2744 ret = -ENOTSUPP;
2745 else
2746 ret = ufshcd_read_unit_desc_param(hba,
2747 lun,
2748 UNIT_DESC_PARAM_LU_WR_PROTECT,
2749 b_lu_write_protect,
2750 sizeof(*b_lu_write_protect));
2751 return ret;
2752}
2753
2754/**
2755 * ufshcd_get_lu_power_on_wp_status - get LU's power on write protect
2756 * status
2757 * @hba: per-adapter instance
2758 * @sdev: pointer to SCSI device
2759 *
2760 */
2761static inline void ufshcd_get_lu_power_on_wp_status(struct ufs_hba *hba,
2762 struct scsi_device *sdev)
2763{
2764 if (hba->dev_info.f_power_on_wp_en &&
2765 !hba->dev_info.is_lu_power_on_wp) {
2766 u8 b_lu_write_protect;
2767
2768 if (!ufshcd_get_lu_wp(hba, ufshcd_scsi_to_upiu_lun(sdev->lun),
2769 &b_lu_write_protect) &&
2770 (b_lu_write_protect == UFS_LU_POWER_ON_WP))
2771 hba->dev_info.is_lu_power_on_wp = true;
2772 }
2773}
2774
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002775/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302776 * ufshcd_slave_alloc - handle initial SCSI device configurations
2777 * @sdev: pointer to SCSI device
2778 *
2779 * Returns success
2780 */
2781static int ufshcd_slave_alloc(struct scsi_device *sdev)
2782{
2783 struct ufs_hba *hba;
2784
2785 hba = shost_priv(sdev->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302786
2787 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
2788 sdev->use_10_for_ms = 1;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302789
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05302790 /* allow SCSI layer to restart the device in case of errors */
2791 sdev->allow_restart = 1;
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002792
Sujit Reddy Thummab2a6c522014-07-01 12:22:38 +03002793 /* REPORT SUPPORTED OPERATION CODES is not supported */
2794 sdev->no_report_opcodes = 1;
2795
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002796
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002797 ufshcd_set_queue_depth(sdev);
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002798
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002799 ufshcd_get_lu_power_on_wp_status(hba, sdev);
2800
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002801 return 0;
2802}
2803
2804/**
2805 * ufshcd_change_queue_depth - change queue depth
2806 * @sdev: pointer to SCSI device
2807 * @depth: required depth to set
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002808 *
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002809 * Change queue depth and make sure the max. limits are not crossed.
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002810 */
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002811static int ufshcd_change_queue_depth(struct scsi_device *sdev, int depth)
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002812{
2813 struct ufs_hba *hba = shost_priv(sdev->host);
2814
2815 if (depth > hba->nutrs)
2816 depth = hba->nutrs;
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +01002817 return scsi_change_queue_depth(sdev, depth);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302818}
2819
2820/**
Akinobu Mitaeeda4742014-07-01 23:00:32 +09002821 * ufshcd_slave_configure - adjust SCSI device configurations
2822 * @sdev: pointer to SCSI device
2823 */
2824static int ufshcd_slave_configure(struct scsi_device *sdev)
2825{
2826 struct request_queue *q = sdev->request_queue;
2827
2828 blk_queue_update_dma_pad(q, PRDT_DATA_BYTE_COUNT_PAD - 1);
2829 blk_queue_max_segment_size(q, PRDT_DATA_BYTE_COUNT_MAX);
2830
2831 return 0;
2832}
2833
2834/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302835 * ufshcd_slave_destroy - remove SCSI device configurations
2836 * @sdev: pointer to SCSI device
2837 */
2838static void ufshcd_slave_destroy(struct scsi_device *sdev)
2839{
2840 struct ufs_hba *hba;
2841
2842 hba = shost_priv(sdev->host);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002843 /* Drop the reference as it won't be needed anymore */
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03002844 if (ufshcd_scsi_to_upiu_lun(sdev->lun) == UFS_UPIU_UFS_DEVICE_WLUN) {
2845 unsigned long flags;
2846
2847 spin_lock_irqsave(hba->host->host_lock, flags);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002848 hba->sdev_ufs_device = NULL;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03002849 spin_unlock_irqrestore(hba->host->host_lock, flags);
2850 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302851}
2852
2853/**
2854 * ufshcd_task_req_compl - handle task management request completion
2855 * @hba: per adapter instance
2856 * @index: index of the completed request
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302857 * @resp: task management service response
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302858 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302859 * Returns non-zero value on error, zero on success
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302860 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302861static int ufshcd_task_req_compl(struct ufs_hba *hba, u32 index, u8 *resp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302862{
2863 struct utp_task_req_desc *task_req_descp;
2864 struct utp_upiu_task_rsp *task_rsp_upiup;
2865 unsigned long flags;
2866 int ocs_value;
2867 int task_result;
2868
2869 spin_lock_irqsave(hba->host->host_lock, flags);
2870
2871 /* Clear completed tasks from outstanding_tasks */
2872 __clear_bit(index, &hba->outstanding_tasks);
2873
2874 task_req_descp = hba->utmrdl_base_addr;
2875 ocs_value = ufshcd_get_tmr_ocs(&task_req_descp[index]);
2876
2877 if (ocs_value == OCS_SUCCESS) {
2878 task_rsp_upiup = (struct utp_upiu_task_rsp *)
2879 task_req_descp[index].task_rsp_upiu;
2880 task_result = be32_to_cpu(task_rsp_upiup->header.dword_1);
2881 task_result = ((task_result & MASK_TASK_RESPONSE) >> 8);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302882 if (resp)
2883 *resp = (u8)task_result;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302884 } else {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302885 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n",
2886 __func__, ocs_value);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302887 }
2888 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302889
2890 return ocs_value;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302891}
2892
2893/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302894 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
2895 * @lrb: pointer to local reference block of completed command
2896 * @scsi_status: SCSI command status
2897 *
2898 * Returns value base on SCSI command status
2899 */
2900static inline int
2901ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
2902{
2903 int result = 0;
2904
2905 switch (scsi_status) {
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302906 case SAM_STAT_CHECK_CONDITION:
2907 ufshcd_copy_sense_data(lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302908 case SAM_STAT_GOOD:
2909 result |= DID_OK << 16 |
2910 COMMAND_COMPLETE << 8 |
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302911 scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302912 break;
2913 case SAM_STAT_TASK_SET_FULL:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302914 case SAM_STAT_BUSY:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302915 case SAM_STAT_TASK_ABORTED:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302916 ufshcd_copy_sense_data(lrbp);
2917 result |= scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302918 break;
2919 default:
2920 result |= DID_ERROR << 16;
2921 break;
2922 } /* end of switch */
2923
2924 return result;
2925}
2926
2927/**
2928 * ufshcd_transfer_rsp_status - Get overall status of the response
2929 * @hba: per adapter instance
2930 * @lrb: pointer to local reference block of completed command
2931 *
2932 * Returns result of the command to notify SCSI midlayer
2933 */
2934static inline int
2935ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2936{
2937 int result = 0;
2938 int scsi_status;
2939 int ocs;
2940
2941 /* overall command status of utrd */
2942 ocs = ufshcd_get_tr_ocs(lrbp);
2943
2944 switch (ocs) {
2945 case OCS_SUCCESS:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302946 result = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302947
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302948 switch (result) {
2949 case UPIU_TRANSACTION_RESPONSE:
2950 /*
2951 * get the response UPIU result to extract
2952 * the SCSI command status
2953 */
2954 result = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr);
2955
2956 /*
2957 * get the result based on SCSI status response
2958 * to notify the SCSI midlayer of the command status
2959 */
2960 scsi_status = result & MASK_SCSI_STATUS;
2961 result = ufshcd_scsi_cmd_status(lrbp, scsi_status);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302962
2963 if (ufshcd_is_exception_event(lrbp->ucd_rsp_ptr))
2964 schedule_work(&hba->eeh_work);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302965 break;
2966 case UPIU_TRANSACTION_REJECT_UPIU:
2967 /* TODO: handle Reject UPIU Response */
2968 result = DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302969 dev_err(hba->dev,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302970 "Reject UPIU not fully implemented\n");
2971 break;
2972 default:
2973 result = DID_ERROR << 16;
2974 dev_err(hba->dev,
2975 "Unexpected request response code = %x\n",
2976 result);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302977 break;
2978 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302979 break;
2980 case OCS_ABORTED:
2981 result |= DID_ABORT << 16;
2982 break;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05302983 case OCS_INVALID_COMMAND_STATUS:
2984 result |= DID_REQUEUE << 16;
2985 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302986 case OCS_INVALID_CMD_TABLE_ATTR:
2987 case OCS_INVALID_PRDT_ATTR:
2988 case OCS_MISMATCH_DATA_BUF_SIZE:
2989 case OCS_MISMATCH_RESP_UPIU_SIZE:
2990 case OCS_PEER_COMM_FAILURE:
2991 case OCS_FATAL_ERROR:
2992 default:
2993 result |= DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302994 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302995 "OCS error from controller = %x\n", ocs);
2996 break;
2997 } /* end of switch */
2998
2999 return result;
3000}
3001
3002/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303003 * ufshcd_uic_cmd_compl - handle completion of uic command
3004 * @hba: per adapter instance
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303005 * @intr_status: interrupt status generated by the controller
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303006 */
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303007static void ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303008{
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303009 if ((intr_status & UIC_COMMAND_COMPL) && hba->active_uic_cmd) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303010 hba->active_uic_cmd->argument2 |=
3011 ufshcd_get_uic_cmd_result(hba);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303012 hba->active_uic_cmd->argument3 =
3013 ufshcd_get_dme_attr_val(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303014 complete(&hba->active_uic_cmd->done);
3015 }
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303016
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003017 if ((intr_status & UFSHCD_UIC_PWR_MASK) && hba->uic_async_done)
3018 complete(hba->uic_async_done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303019}
3020
3021/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303022 * ufshcd_transfer_req_compl - handle SCSI and query command completion
3023 * @hba: per adapter instance
3024 */
3025static void ufshcd_transfer_req_compl(struct ufs_hba *hba)
3026{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303027 struct ufshcd_lrb *lrbp;
3028 struct scsi_cmnd *cmd;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303029 unsigned long completed_reqs;
3030 u32 tr_doorbell;
3031 int result;
3032 int index;
Dolev Ravive9d501b2014-07-01 12:22:37 +03003033
3034 /* Resetting interrupt aggregation counters first and reading the
3035 * DOOR_BELL afterward allows us to handle all the completed requests.
3036 * In order to prevent other interrupts starvation the DB is read once
3037 * after reset. The down side of this solution is the possibility of
3038 * false interrupt if device completes another request after resetting
3039 * aggregation and before reading the DB.
3040 */
3041 ufshcd_reset_intr_aggr(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303042
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303043 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303044 completed_reqs = tr_doorbell ^ hba->outstanding_reqs;
3045
Dolev Ravive9d501b2014-07-01 12:22:37 +03003046 for_each_set_bit(index, &completed_reqs, hba->nutrs) {
3047 lrbp = &hba->lrb[index];
3048 cmd = lrbp->cmd;
3049 if (cmd) {
3050 result = ufshcd_transfer_rsp_status(hba, lrbp);
3051 scsi_dma_unmap(cmd);
3052 cmd->result = result;
3053 /* Mark completed command as NULL in LRB */
3054 lrbp->cmd = NULL;
3055 clear_bit_unlock(index, &hba->lrb_in_use);
3056 /* Do not touch lrbp after scsi done */
3057 cmd->scsi_done(cmd);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003058 __ufshcd_release(hba);
Dolev Ravive9d501b2014-07-01 12:22:37 +03003059 } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE) {
3060 if (hba->dev_cmd.complete)
3061 complete(hba->dev_cmd.complete);
3062 }
3063 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303064
3065 /* clear corresponding bits of completed commands */
3066 hba->outstanding_reqs ^= completed_reqs;
3067
Sahitya Tummala856b3482014-09-25 15:32:34 +03003068 ufshcd_clk_scaling_update_busy(hba);
3069
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303070 /* we might have free'd some tags above */
3071 wake_up(&hba->dev_cmd.tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303072}
3073
3074/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303075 * ufshcd_disable_ee - disable exception event
3076 * @hba: per-adapter instance
3077 * @mask: exception event to disable
3078 *
3079 * Disables exception event in the device so that the EVENT_ALERT
3080 * bit is not set.
3081 *
3082 * Returns zero on success, non-zero error value on failure.
3083 */
3084static int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
3085{
3086 int err = 0;
3087 u32 val;
3088
3089 if (!(hba->ee_ctrl_mask & mask))
3090 goto out;
3091
3092 val = hba->ee_ctrl_mask & ~mask;
3093 val &= 0xFFFF; /* 2 bytes */
3094 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
3095 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
3096 if (!err)
3097 hba->ee_ctrl_mask &= ~mask;
3098out:
3099 return err;
3100}
3101
3102/**
3103 * ufshcd_enable_ee - enable exception event
3104 * @hba: per-adapter instance
3105 * @mask: exception event to enable
3106 *
3107 * Enable corresponding exception event in the device to allow
3108 * device to alert host in critical scenarios.
3109 *
3110 * Returns zero on success, non-zero error value on failure.
3111 */
3112static int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
3113{
3114 int err = 0;
3115 u32 val;
3116
3117 if (hba->ee_ctrl_mask & mask)
3118 goto out;
3119
3120 val = hba->ee_ctrl_mask | mask;
3121 val &= 0xFFFF; /* 2 bytes */
3122 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
3123 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
3124 if (!err)
3125 hba->ee_ctrl_mask |= mask;
3126out:
3127 return err;
3128}
3129
3130/**
3131 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
3132 * @hba: per-adapter instance
3133 *
3134 * Allow device to manage background operations on its own. Enabling
3135 * this might lead to inconsistent latencies during normal data transfers
3136 * as the device is allowed to manage its own way of handling background
3137 * operations.
3138 *
3139 * Returns zero on success, non-zero on failure.
3140 */
3141static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
3142{
3143 int err = 0;
3144
3145 if (hba->auto_bkops_enabled)
3146 goto out;
3147
3148 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_SET_FLAG,
3149 QUERY_FLAG_IDN_BKOPS_EN, NULL);
3150 if (err) {
3151 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
3152 __func__, err);
3153 goto out;
3154 }
3155
3156 hba->auto_bkops_enabled = true;
3157
3158 /* No need of URGENT_BKOPS exception from the device */
3159 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
3160 if (err)
3161 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
3162 __func__, err);
3163out:
3164 return err;
3165}
3166
3167/**
3168 * ufshcd_disable_auto_bkops - block device in doing background operations
3169 * @hba: per-adapter instance
3170 *
3171 * Disabling background operations improves command response latency but
3172 * has drawback of device moving into critical state where the device is
3173 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
3174 * host is idle so that BKOPS are managed effectively without any negative
3175 * impacts.
3176 *
3177 * Returns zero on success, non-zero on failure.
3178 */
3179static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
3180{
3181 int err = 0;
3182
3183 if (!hba->auto_bkops_enabled)
3184 goto out;
3185
3186 /*
3187 * If host assisted BKOPs is to be enabled, make sure
3188 * urgent bkops exception is allowed.
3189 */
3190 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
3191 if (err) {
3192 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
3193 __func__, err);
3194 goto out;
3195 }
3196
3197 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
3198 QUERY_FLAG_IDN_BKOPS_EN, NULL);
3199 if (err) {
3200 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
3201 __func__, err);
3202 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
3203 goto out;
3204 }
3205
3206 hba->auto_bkops_enabled = false;
3207out:
3208 return err;
3209}
3210
3211/**
3212 * ufshcd_force_reset_auto_bkops - force enable of auto bkops
3213 * @hba: per adapter instance
3214 *
3215 * After a device reset the device may toggle the BKOPS_EN flag
3216 * to default value. The s/w tracking variables should be updated
3217 * as well. Do this by forcing enable of auto bkops.
3218 */
3219static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
3220{
3221 hba->auto_bkops_enabled = false;
3222 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
3223 ufshcd_enable_auto_bkops(hba);
3224}
3225
3226static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
3227{
3228 return ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
3229 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
3230}
3231
3232/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003233 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
3234 * @hba: per-adapter instance
3235 * @status: bkops_status value
3236 *
3237 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
3238 * flag in the device to permit background operations if the device
3239 * bkops_status is greater than or equal to "status" argument passed to
3240 * this function, disable otherwise.
3241 *
3242 * Returns 0 for success, non-zero in case of failure.
3243 *
3244 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
3245 * to know whether auto bkops is enabled or disabled after this function
3246 * returns control to it.
3247 */
3248static int ufshcd_bkops_ctrl(struct ufs_hba *hba,
3249 enum bkops_status status)
3250{
3251 int err;
3252 u32 curr_status = 0;
3253
3254 err = ufshcd_get_bkops_status(hba, &curr_status);
3255 if (err) {
3256 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
3257 __func__, err);
3258 goto out;
3259 } else if (curr_status > BKOPS_STATUS_MAX) {
3260 dev_err(hba->dev, "%s: invalid BKOPS status %d\n",
3261 __func__, curr_status);
3262 err = -EINVAL;
3263 goto out;
3264 }
3265
3266 if (curr_status >= status)
3267 err = ufshcd_enable_auto_bkops(hba);
3268 else
3269 err = ufshcd_disable_auto_bkops(hba);
3270out:
3271 return err;
3272}
3273
3274/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303275 * ufshcd_urgent_bkops - handle urgent bkops exception event
3276 * @hba: per-adapter instance
3277 *
3278 * Enable fBackgroundOpsEn flag in the device to permit background
3279 * operations.
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003280 *
3281 * If BKOPs is enabled, this function returns 0, 1 if the bkops in not enabled
3282 * and negative error value for any other failure.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303283 */
3284static int ufshcd_urgent_bkops(struct ufs_hba *hba)
3285{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003286 return ufshcd_bkops_ctrl(hba, BKOPS_STATUS_PERF_IMPACT);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303287}
3288
3289static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
3290{
3291 return ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
3292 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
3293}
3294
3295/**
3296 * ufshcd_exception_event_handler - handle exceptions raised by device
3297 * @work: pointer to work data
3298 *
3299 * Read bExceptionEventStatus attribute from the device and handle the
3300 * exception event accordingly.
3301 */
3302static void ufshcd_exception_event_handler(struct work_struct *work)
3303{
3304 struct ufs_hba *hba;
3305 int err;
3306 u32 status = 0;
3307 hba = container_of(work, struct ufs_hba, eeh_work);
3308
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303309 pm_runtime_get_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303310 err = ufshcd_get_ee_status(hba, &status);
3311 if (err) {
3312 dev_err(hba->dev, "%s: failed to get exception status %d\n",
3313 __func__, err);
3314 goto out;
3315 }
3316
3317 status &= hba->ee_ctrl_mask;
3318 if (status & MASK_EE_URGENT_BKOPS) {
3319 err = ufshcd_urgent_bkops(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003320 if (err < 0)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303321 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
3322 __func__, err);
3323 }
3324out:
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303325 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303326 return;
3327}
3328
3329/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303330 * ufshcd_err_handler - handle UFS errors that require s/w attention
3331 * @work: pointer to work structure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303332 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303333static void ufshcd_err_handler(struct work_struct *work)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303334{
3335 struct ufs_hba *hba;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303336 unsigned long flags;
3337 u32 err_xfer = 0;
3338 u32 err_tm = 0;
3339 int err = 0;
3340 int tag;
3341
3342 hba = container_of(work, struct ufs_hba, eh_work);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303343
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303344 pm_runtime_get_sync(hba->dev);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003345 ufshcd_hold(hba, false);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303346
3347 spin_lock_irqsave(hba->host->host_lock, flags);
3348 if (hba->ufshcd_state == UFSHCD_STATE_RESET) {
3349 spin_unlock_irqrestore(hba->host->host_lock, flags);
3350 goto out;
3351 }
3352
3353 hba->ufshcd_state = UFSHCD_STATE_RESET;
3354 ufshcd_set_eh_in_progress(hba);
3355
3356 /* Complete requests that have door-bell cleared by h/w */
3357 ufshcd_transfer_req_compl(hba);
3358 ufshcd_tmc_handler(hba);
3359 spin_unlock_irqrestore(hba->host->host_lock, flags);
3360
3361 /* Clear pending transfer requests */
3362 for_each_set_bit(tag, &hba->outstanding_reqs, hba->nutrs)
3363 if (ufshcd_clear_cmd(hba, tag))
3364 err_xfer |= 1 << tag;
3365
3366 /* Clear pending task management requests */
3367 for_each_set_bit(tag, &hba->outstanding_tasks, hba->nutmrs)
3368 if (ufshcd_clear_tm_cmd(hba, tag))
3369 err_tm |= 1 << tag;
3370
3371 /* Complete the requests that are cleared by s/w */
3372 spin_lock_irqsave(hba->host->host_lock, flags);
3373 ufshcd_transfer_req_compl(hba);
3374 ufshcd_tmc_handler(hba);
3375 spin_unlock_irqrestore(hba->host->host_lock, flags);
3376
3377 /* Fatal errors need reset */
3378 if (err_xfer || err_tm || (hba->saved_err & INT_FATAL_ERRORS) ||
3379 ((hba->saved_err & UIC_ERROR) &&
3380 (hba->saved_uic_err & UFSHCD_UIC_DL_PA_INIT_ERROR))) {
3381 err = ufshcd_reset_and_restore(hba);
3382 if (err) {
3383 dev_err(hba->dev, "%s: reset and restore failed\n",
3384 __func__);
3385 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3386 }
3387 /*
3388 * Inform scsi mid-layer that we did reset and allow to handle
3389 * Unit Attention properly.
3390 */
3391 scsi_report_bus_reset(hba->host, 0);
3392 hba->saved_err = 0;
3393 hba->saved_uic_err = 0;
3394 }
3395 ufshcd_clear_eh_in_progress(hba);
3396
3397out:
3398 scsi_unblock_requests(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003399 ufshcd_release(hba);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303400 pm_runtime_put_sync(hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303401}
3402
3403/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303404 * ufshcd_update_uic_error - check and set fatal UIC error flags.
3405 * @hba: per-adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303406 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303407static void ufshcd_update_uic_error(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303408{
3409 u32 reg;
3410
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303411 /* PA_INIT_ERROR is fatal and needs UIC reset */
3412 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
3413 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
3414 hba->uic_error |= UFSHCD_UIC_DL_PA_INIT_ERROR;
3415
3416 /* UIC NL/TL/DME errors needs software retry */
3417 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_NETWORK_LAYER);
3418 if (reg)
3419 hba->uic_error |= UFSHCD_UIC_NL_ERROR;
3420
3421 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_TRANSPORT_LAYER);
3422 if (reg)
3423 hba->uic_error |= UFSHCD_UIC_TL_ERROR;
3424
3425 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DME);
3426 if (reg)
3427 hba->uic_error |= UFSHCD_UIC_DME_ERROR;
3428
3429 dev_dbg(hba->dev, "%s: UIC error flags = 0x%08x\n",
3430 __func__, hba->uic_error);
3431}
3432
3433/**
3434 * ufshcd_check_errors - Check for errors that need s/w attention
3435 * @hba: per-adapter instance
3436 */
3437static void ufshcd_check_errors(struct ufs_hba *hba)
3438{
3439 bool queue_eh_work = false;
3440
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303441 if (hba->errors & INT_FATAL_ERRORS)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303442 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303443
3444 if (hba->errors & UIC_ERROR) {
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303445 hba->uic_error = 0;
3446 ufshcd_update_uic_error(hba);
3447 if (hba->uic_error)
3448 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303449 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303450
3451 if (queue_eh_work) {
3452 /* handle fatal errors only when link is functional */
3453 if (hba->ufshcd_state == UFSHCD_STATE_OPERATIONAL) {
3454 /* block commands from scsi mid-layer */
3455 scsi_block_requests(hba->host);
3456
3457 /* transfer error masks to sticky bits */
3458 hba->saved_err |= hba->errors;
3459 hba->saved_uic_err |= hba->uic_error;
3460
3461 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3462 schedule_work(&hba->eh_work);
3463 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303464 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303465 /*
3466 * if (!queue_eh_work) -
3467 * Other errors are either non-fatal where host recovers
3468 * itself without s/w intervention or errors that will be
3469 * handled by the SCSI core layer.
3470 */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303471}
3472
3473/**
3474 * ufshcd_tmc_handler - handle task management function completion
3475 * @hba: per adapter instance
3476 */
3477static void ufshcd_tmc_handler(struct ufs_hba *hba)
3478{
3479 u32 tm_doorbell;
3480
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303481 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303482 hba->tm_condition = tm_doorbell ^ hba->outstanding_tasks;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303483 wake_up(&hba->tm_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303484}
3485
3486/**
3487 * ufshcd_sl_intr - Interrupt service routine
3488 * @hba: per adapter instance
3489 * @intr_status: contains interrupts generated by the controller
3490 */
3491static void ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
3492{
3493 hba->errors = UFSHCD_ERROR_MASK & intr_status;
3494 if (hba->errors)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303495 ufshcd_check_errors(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303496
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303497 if (intr_status & UFSHCD_UIC_MASK)
3498 ufshcd_uic_cmd_compl(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303499
3500 if (intr_status & UTP_TASK_REQ_COMPL)
3501 ufshcd_tmc_handler(hba);
3502
3503 if (intr_status & UTP_TRANSFER_REQ_COMPL)
3504 ufshcd_transfer_req_compl(hba);
3505}
3506
3507/**
3508 * ufshcd_intr - Main interrupt service routine
3509 * @irq: irq number
3510 * @__hba: pointer to adapter instance
3511 *
3512 * Returns IRQ_HANDLED - If interrupt is valid
3513 * IRQ_NONE - If invalid interrupt
3514 */
3515static irqreturn_t ufshcd_intr(int irq, void *__hba)
3516{
3517 u32 intr_status;
3518 irqreturn_t retval = IRQ_NONE;
3519 struct ufs_hba *hba = __hba;
3520
3521 spin_lock(hba->host->host_lock);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303522 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303523
3524 if (intr_status) {
Seungwon Jeon261ea452013-06-26 22:39:28 +05303525 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303526 ufshcd_sl_intr(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303527 retval = IRQ_HANDLED;
3528 }
3529 spin_unlock(hba->host->host_lock);
3530 return retval;
3531}
3532
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303533static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag)
3534{
3535 int err = 0;
3536 u32 mask = 1 << tag;
3537 unsigned long flags;
3538
3539 if (!test_bit(tag, &hba->outstanding_tasks))
3540 goto out;
3541
3542 spin_lock_irqsave(hba->host->host_lock, flags);
3543 ufshcd_writel(hba, ~(1 << tag), REG_UTP_TASK_REQ_LIST_CLEAR);
3544 spin_unlock_irqrestore(hba->host->host_lock, flags);
3545
3546 /* poll for max. 1 sec to clear door bell register by h/w */
3547 err = ufshcd_wait_for_register(hba,
3548 REG_UTP_TASK_REQ_DOOR_BELL,
3549 mask, 0, 1000, 1000);
3550out:
3551 return err;
3552}
3553
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303554/**
3555 * ufshcd_issue_tm_cmd - issues task management commands to controller
3556 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303557 * @lun_id: LUN ID to which TM command is sent
3558 * @task_id: task ID to which the TM command is applicable
3559 * @tm_function: task management function opcode
3560 * @tm_response: task management service response return value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303561 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303562 * Returns non-zero value on error, zero on success.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303563 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303564static int ufshcd_issue_tm_cmd(struct ufs_hba *hba, int lun_id, int task_id,
3565 u8 tm_function, u8 *tm_response)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303566{
3567 struct utp_task_req_desc *task_req_descp;
3568 struct utp_upiu_task_req *task_req_upiup;
3569 struct Scsi_Host *host;
3570 unsigned long flags;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303571 int free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303572 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303573 int task_tag;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303574
3575 host = hba->host;
3576
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303577 /*
3578 * Get free slot, sleep if slots are unavailable.
3579 * Even though we use wait_event() which sleeps indefinitely,
3580 * the maximum wait time is bounded by %TM_CMD_TIMEOUT.
3581 */
3582 wait_event(hba->tm_tag_wq, ufshcd_get_tm_free_slot(hba, &free_slot));
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003583 ufshcd_hold(hba, false);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303584
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303585 spin_lock_irqsave(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303586 task_req_descp = hba->utmrdl_base_addr;
3587 task_req_descp += free_slot;
3588
3589 /* Configure task request descriptor */
3590 task_req_descp->header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
3591 task_req_descp->header.dword_2 =
3592 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
3593
3594 /* Configure task request UPIU */
3595 task_req_upiup =
3596 (struct utp_upiu_task_req *) task_req_descp->task_req_upiu;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303597 task_tag = hba->nutrs + free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303598 task_req_upiup->header.dword_0 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303599 UPIU_HEADER_DWORD(UPIU_TRANSACTION_TASK_REQ, 0,
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303600 lun_id, task_tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303601 task_req_upiup->header.dword_1 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303602 UPIU_HEADER_DWORD(0, tm_function, 0, 0);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003603 /*
3604 * The host shall provide the same value for LUN field in the basic
3605 * header and for Input Parameter.
3606 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303607 task_req_upiup->input_param1 = cpu_to_be32(lun_id);
3608 task_req_upiup->input_param2 = cpu_to_be32(task_id);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303609
3610 /* send command to the controller */
3611 __set_bit(free_slot, &hba->outstanding_tasks);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303612 ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303613
3614 spin_unlock_irqrestore(host->host_lock, flags);
3615
3616 /* wait until the task management command is completed */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303617 err = wait_event_timeout(hba->tm_wq,
3618 test_bit(free_slot, &hba->tm_condition),
3619 msecs_to_jiffies(TM_CMD_TIMEOUT));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303620 if (!err) {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303621 dev_err(hba->dev, "%s: task management cmd 0x%.2x timed-out\n",
3622 __func__, tm_function);
3623 if (ufshcd_clear_tm_cmd(hba, free_slot))
3624 dev_WARN(hba->dev, "%s: unable clear tm cmd (slot %d) after timeout\n",
3625 __func__, free_slot);
3626 err = -ETIMEDOUT;
3627 } else {
3628 err = ufshcd_task_req_compl(hba, free_slot, tm_response);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303629 }
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303630
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303631 clear_bit(free_slot, &hba->tm_condition);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303632 ufshcd_put_tm_slot(hba, free_slot);
3633 wake_up(&hba->tm_tag_wq);
3634
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003635 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303636 return err;
3637}
3638
3639/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303640 * ufshcd_eh_device_reset_handler - device reset handler registered to
3641 * scsi layer.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303642 * @cmd: SCSI command pointer
3643 *
3644 * Returns SUCCESS/FAILED
3645 */
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303646static int ufshcd_eh_device_reset_handler(struct scsi_cmnd *cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303647{
3648 struct Scsi_Host *host;
3649 struct ufs_hba *hba;
3650 unsigned int tag;
3651 u32 pos;
3652 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303653 u8 resp = 0xF;
3654 struct ufshcd_lrb *lrbp;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303655 unsigned long flags;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303656
3657 host = cmd->device->host;
3658 hba = shost_priv(host);
3659 tag = cmd->request->tag;
3660
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303661 lrbp = &hba->lrb[tag];
3662 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, 0, UFS_LOGICAL_RESET, &resp);
3663 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303664 if (!err)
3665 err = resp;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303666 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303667 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303668
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303669 /* clear the commands that were pending for corresponding LUN */
3670 for_each_set_bit(pos, &hba->outstanding_reqs, hba->nutrs) {
3671 if (hba->lrb[pos].lun == lrbp->lun) {
3672 err = ufshcd_clear_cmd(hba, pos);
3673 if (err)
3674 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303675 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303676 }
3677 spin_lock_irqsave(host->host_lock, flags);
3678 ufshcd_transfer_req_compl(hba);
3679 spin_unlock_irqrestore(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303680out:
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303681 if (!err) {
3682 err = SUCCESS;
3683 } else {
3684 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
3685 err = FAILED;
3686 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303687 return err;
3688}
3689
3690/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303691 * ufshcd_abort - abort a specific command
3692 * @cmd: SCSI command pointer
3693 *
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303694 * Abort the pending command in device by sending UFS_ABORT_TASK task management
3695 * command, and in host controller by clearing the door-bell register. There can
3696 * be race between controller sending the command to the device while abort is
3697 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
3698 * really issued and then try to abort it.
3699 *
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303700 * Returns SUCCESS/FAILED
3701 */
3702static int ufshcd_abort(struct scsi_cmnd *cmd)
3703{
3704 struct Scsi_Host *host;
3705 struct ufs_hba *hba;
3706 unsigned long flags;
3707 unsigned int tag;
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303708 int err = 0;
3709 int poll_cnt;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303710 u8 resp = 0xF;
3711 struct ufshcd_lrb *lrbp;
Dolev Ravive9d501b2014-07-01 12:22:37 +03003712 u32 reg;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303713
3714 host = cmd->device->host;
3715 hba = shost_priv(host);
3716 tag = cmd->request->tag;
3717
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003718 ufshcd_hold(hba, false);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303719 /* If command is already aborted/completed, return SUCCESS */
3720 if (!(test_bit(tag, &hba->outstanding_reqs)))
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303721 goto out;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303722
Dolev Ravive9d501b2014-07-01 12:22:37 +03003723 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
3724 if (!(reg & (1 << tag))) {
3725 dev_err(hba->dev,
3726 "%s: cmd was completed, but without a notifying intr, tag = %d",
3727 __func__, tag);
3728 }
3729
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303730 lrbp = &hba->lrb[tag];
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303731 for (poll_cnt = 100; poll_cnt; poll_cnt--) {
3732 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
3733 UFS_QUERY_TASK, &resp);
3734 if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED) {
3735 /* cmd pending in the device */
3736 break;
3737 } else if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303738 /*
3739 * cmd not pending in the device, check if it is
3740 * in transition.
3741 */
3742 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
3743 if (reg & (1 << tag)) {
3744 /* sleep for max. 200us to stabilize */
3745 usleep_range(100, 200);
3746 continue;
3747 }
3748 /* command completed already */
3749 goto out;
3750 } else {
3751 if (!err)
3752 err = resp; /* service response error */
3753 goto out;
3754 }
3755 }
3756
3757 if (!poll_cnt) {
3758 err = -EBUSY;
3759 goto out;
3760 }
3761
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303762 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
3763 UFS_ABORT_TASK, &resp);
3764 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303765 if (!err)
3766 err = resp; /* service response error */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303767 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303768 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303769
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303770 err = ufshcd_clear_cmd(hba, tag);
3771 if (err)
3772 goto out;
3773
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303774 scsi_dma_unmap(cmd);
3775
3776 spin_lock_irqsave(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303777 __clear_bit(tag, &hba->outstanding_reqs);
3778 hba->lrb[tag].cmd = NULL;
3779 spin_unlock_irqrestore(host->host_lock, flags);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303780
3781 clear_bit_unlock(tag, &hba->lrb_in_use);
3782 wake_up(&hba->dev_cmd.tag_wq);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003783
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303784out:
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303785 if (!err) {
3786 err = SUCCESS;
3787 } else {
3788 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
3789 err = FAILED;
3790 }
3791
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003792 /*
3793 * This ufshcd_release() corresponds to the original scsi cmd that got
3794 * aborted here (as we won't get any IRQ for it).
3795 */
3796 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303797 return err;
3798}
3799
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303800/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303801 * ufshcd_host_reset_and_restore - reset and restore host controller
3802 * @hba: per-adapter instance
3803 *
3804 * Note that host controller reset may issue DME_RESET to
3805 * local and remote (device) Uni-Pro stack and the attributes
3806 * are reset to default state.
3807 *
3808 * Returns zero on success, non-zero on failure
3809 */
3810static int ufshcd_host_reset_and_restore(struct ufs_hba *hba)
3811{
3812 int err;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303813 unsigned long flags;
3814
3815 /* Reset the host controller */
3816 spin_lock_irqsave(hba->host->host_lock, flags);
3817 ufshcd_hba_stop(hba);
3818 spin_unlock_irqrestore(hba->host->host_lock, flags);
3819
3820 err = ufshcd_hba_enable(hba);
3821 if (err)
3822 goto out;
3823
3824 /* Establish the link again and restore the device */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003825 err = ufshcd_probe_hba(hba);
3826
3827 if (!err && (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL))
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303828 err = -EIO;
3829out:
3830 if (err)
3831 dev_err(hba->dev, "%s: Host init failed %d\n", __func__, err);
3832
3833 return err;
3834}
3835
3836/**
3837 * ufshcd_reset_and_restore - reset and re-initialize host/device
3838 * @hba: per-adapter instance
3839 *
3840 * Reset and recover device, host and re-establish link. This
3841 * is helpful to recover the communication in fatal error conditions.
3842 *
3843 * Returns zero on success, non-zero on failure
3844 */
3845static int ufshcd_reset_and_restore(struct ufs_hba *hba)
3846{
3847 int err = 0;
3848 unsigned long flags;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003849 int retries = MAX_HOST_RESET_RETRIES;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303850
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003851 do {
3852 err = ufshcd_host_reset_and_restore(hba);
3853 } while (err && --retries);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303854
3855 /*
3856 * After reset the door-bell might be cleared, complete
3857 * outstanding requests in s/w here.
3858 */
3859 spin_lock_irqsave(hba->host->host_lock, flags);
3860 ufshcd_transfer_req_compl(hba);
3861 ufshcd_tmc_handler(hba);
3862 spin_unlock_irqrestore(hba->host->host_lock, flags);
3863
3864 return err;
3865}
3866
3867/**
3868 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
3869 * @cmd - SCSI command pointer
3870 *
3871 * Returns SUCCESS/FAILED
3872 */
3873static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd)
3874{
3875 int err;
3876 unsigned long flags;
3877 struct ufs_hba *hba;
3878
3879 hba = shost_priv(cmd->device->host);
3880
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003881 ufshcd_hold(hba, false);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303882 /*
3883 * Check if there is any race with fatal error handling.
3884 * If so, wait for it to complete. Even though fatal error
3885 * handling does reset and restore in some cases, don't assume
3886 * anything out of it. We are just avoiding race here.
3887 */
3888 do {
3889 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303890 if (!(work_pending(&hba->eh_work) ||
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303891 hba->ufshcd_state == UFSHCD_STATE_RESET))
3892 break;
3893 spin_unlock_irqrestore(hba->host->host_lock, flags);
3894 dev_dbg(hba->dev, "%s: reset in progress\n", __func__);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303895 flush_work(&hba->eh_work);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303896 } while (1);
3897
3898 hba->ufshcd_state = UFSHCD_STATE_RESET;
3899 ufshcd_set_eh_in_progress(hba);
3900 spin_unlock_irqrestore(hba->host->host_lock, flags);
3901
3902 err = ufshcd_reset_and_restore(hba);
3903
3904 spin_lock_irqsave(hba->host->host_lock, flags);
3905 if (!err) {
3906 err = SUCCESS;
3907 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
3908 } else {
3909 err = FAILED;
3910 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3911 }
3912 ufshcd_clear_eh_in_progress(hba);
3913 spin_unlock_irqrestore(hba->host->host_lock, flags);
3914
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003915 ufshcd_release(hba);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303916 return err;
3917}
3918
3919/**
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03003920 * ufshcd_get_max_icc_level - calculate the ICC level
3921 * @sup_curr_uA: max. current supported by the regulator
3922 * @start_scan: row at the desc table to start scan from
3923 * @buff: power descriptor buffer
3924 *
3925 * Returns calculated max ICC level for specific regulator
3926 */
3927static u32 ufshcd_get_max_icc_level(int sup_curr_uA, u32 start_scan, char *buff)
3928{
3929 int i;
3930 int curr_uA;
3931 u16 data;
3932 u16 unit;
3933
3934 for (i = start_scan; i >= 0; i--) {
3935 data = be16_to_cpu(*((u16 *)(buff + 2*i)));
3936 unit = (data & ATTR_ICC_LVL_UNIT_MASK) >>
3937 ATTR_ICC_LVL_UNIT_OFFSET;
3938 curr_uA = data & ATTR_ICC_LVL_VALUE_MASK;
3939 switch (unit) {
3940 case UFSHCD_NANO_AMP:
3941 curr_uA = curr_uA / 1000;
3942 break;
3943 case UFSHCD_MILI_AMP:
3944 curr_uA = curr_uA * 1000;
3945 break;
3946 case UFSHCD_AMP:
3947 curr_uA = curr_uA * 1000 * 1000;
3948 break;
3949 case UFSHCD_MICRO_AMP:
3950 default:
3951 break;
3952 }
3953 if (sup_curr_uA >= curr_uA)
3954 break;
3955 }
3956 if (i < 0) {
3957 i = 0;
3958 pr_err("%s: Couldn't find valid icc_level = %d", __func__, i);
3959 }
3960
3961 return (u32)i;
3962}
3963
3964/**
3965 * ufshcd_calc_icc_level - calculate the max ICC level
3966 * In case regulators are not initialized we'll return 0
3967 * @hba: per-adapter instance
3968 * @desc_buf: power descriptor buffer to extract ICC levels from.
3969 * @len: length of desc_buff
3970 *
3971 * Returns calculated ICC level
3972 */
3973static u32 ufshcd_find_max_sup_active_icc_level(struct ufs_hba *hba,
3974 u8 *desc_buf, int len)
3975{
3976 u32 icc_level = 0;
3977
3978 if (!hba->vreg_info.vcc || !hba->vreg_info.vccq ||
3979 !hba->vreg_info.vccq2) {
3980 dev_err(hba->dev,
3981 "%s: Regulator capability was not set, actvIccLevel=%d",
3982 __func__, icc_level);
3983 goto out;
3984 }
3985
3986 if (hba->vreg_info.vcc)
3987 icc_level = ufshcd_get_max_icc_level(
3988 hba->vreg_info.vcc->max_uA,
3989 POWER_DESC_MAX_ACTV_ICC_LVLS - 1,
3990 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCC_0]);
3991
3992 if (hba->vreg_info.vccq)
3993 icc_level = ufshcd_get_max_icc_level(
3994 hba->vreg_info.vccq->max_uA,
3995 icc_level,
3996 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ_0]);
3997
3998 if (hba->vreg_info.vccq2)
3999 icc_level = ufshcd_get_max_icc_level(
4000 hba->vreg_info.vccq2->max_uA,
4001 icc_level,
4002 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ2_0]);
4003out:
4004 return icc_level;
4005}
4006
4007static void ufshcd_init_icc_levels(struct ufs_hba *hba)
4008{
4009 int ret;
4010 int buff_len = QUERY_DESC_POWER_MAX_SIZE;
4011 u8 desc_buf[QUERY_DESC_POWER_MAX_SIZE];
4012
4013 ret = ufshcd_read_power_desc(hba, desc_buf, buff_len);
4014 if (ret) {
4015 dev_err(hba->dev,
4016 "%s: Failed reading power descriptor.len = %d ret = %d",
4017 __func__, buff_len, ret);
4018 return;
4019 }
4020
4021 hba->init_prefetch_data.icc_level =
4022 ufshcd_find_max_sup_active_icc_level(hba,
4023 desc_buf, buff_len);
4024 dev_dbg(hba->dev, "%s: setting icc_level 0x%x",
4025 __func__, hba->init_prefetch_data.icc_level);
4026
4027 ret = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
4028 QUERY_ATTR_IDN_ACTIVE_ICC_LVL, 0, 0,
4029 &hba->init_prefetch_data.icc_level);
4030
4031 if (ret)
4032 dev_err(hba->dev,
4033 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
4034 __func__, hba->init_prefetch_data.icc_level , ret);
4035
4036}
4037
4038/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004039 * ufshcd_scsi_add_wlus - Adds required W-LUs
4040 * @hba: per-adapter instance
4041 *
4042 * UFS device specification requires the UFS devices to support 4 well known
4043 * logical units:
4044 * "REPORT_LUNS" (address: 01h)
4045 * "UFS Device" (address: 50h)
4046 * "RPMB" (address: 44h)
4047 * "BOOT" (address: 30h)
4048 * UFS device's power management needs to be controlled by "POWER CONDITION"
4049 * field of SSU (START STOP UNIT) command. But this "power condition" field
4050 * will take effect only when its sent to "UFS device" well known logical unit
4051 * hence we require the scsi_device instance to represent this logical unit in
4052 * order for the UFS host driver to send the SSU command for power management.
4053
4054 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
4055 * Block) LU so user space process can control this LU. User space may also
4056 * want to have access to BOOT LU.
4057
4058 * This function adds scsi device instances for each of all well known LUs
4059 * (except "REPORT LUNS" LU).
4060 *
4061 * Returns zero on success (all required W-LUs are added successfully),
4062 * non-zero error value on failure (if failed to add any of the required W-LU).
4063 */
4064static int ufshcd_scsi_add_wlus(struct ufs_hba *hba)
4065{
4066 int ret = 0;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004067 struct scsi_device *sdev_rpmb;
4068 struct scsi_device *sdev_boot;
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004069
4070 hba->sdev_ufs_device = __scsi_add_device(hba->host, 0, 0,
4071 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN), NULL);
4072 if (IS_ERR(hba->sdev_ufs_device)) {
4073 ret = PTR_ERR(hba->sdev_ufs_device);
4074 hba->sdev_ufs_device = NULL;
4075 goto out;
4076 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004077 scsi_device_put(hba->sdev_ufs_device);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004078
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004079 sdev_boot = __scsi_add_device(hba->host, 0, 0,
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004080 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN), NULL);
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004081 if (IS_ERR(sdev_boot)) {
4082 ret = PTR_ERR(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004083 goto remove_sdev_ufs_device;
4084 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004085 scsi_device_put(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004086
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004087 sdev_rpmb = __scsi_add_device(hba->host, 0, 0,
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004088 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN), NULL);
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004089 if (IS_ERR(sdev_rpmb)) {
4090 ret = PTR_ERR(sdev_rpmb);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004091 goto remove_sdev_boot;
4092 }
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004093 scsi_device_put(sdev_rpmb);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004094 goto out;
4095
4096remove_sdev_boot:
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004097 scsi_remove_device(sdev_boot);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004098remove_sdev_ufs_device:
4099 scsi_remove_device(hba->sdev_ufs_device);
4100out:
4101 return ret;
4102}
4103
4104/**
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004105 * ufshcd_probe_hba - probe hba to detect device and initialize
4106 * @hba: per-adapter instance
4107 *
4108 * Execute link-startup and verify device initialization
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304109 */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004110static int ufshcd_probe_hba(struct ufs_hba *hba)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304111{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304112 int ret;
4113
4114 ret = ufshcd_link_startup(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304115 if (ret)
4116 goto out;
4117
Yaniv Gardi50646362014-10-23 13:25:13 +03004118 ufshcd_init_pwr_info(hba);
4119
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004120 /* UniPro link is active now */
4121 ufshcd_set_link_active(hba);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05304122
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304123 ret = ufshcd_verify_dev_init(hba);
4124 if (ret)
4125 goto out;
4126
Dolev Raviv68078d52013-07-30 00:35:58 +05304127 ret = ufshcd_complete_dev_init(hba);
4128 if (ret)
4129 goto out;
4130
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004131 /* UFS device is also active now */
4132 ufshcd_set_ufs_dev_active(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304133 ufshcd_force_reset_auto_bkops(hba);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304134 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004135 hba->wlun_dev_clr_ua = true;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304136
Dolev Raviv7eb584d2014-09-25 15:32:31 +03004137 if (ufshcd_get_max_pwr_mode(hba)) {
4138 dev_err(hba->dev,
4139 "%s: Failed getting max supported power mode\n",
4140 __func__);
4141 } else {
4142 ret = ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info);
4143 if (ret)
4144 dev_err(hba->dev, "%s: Failed setting power mode, err = %d\n",
4145 __func__, ret);
4146 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004147
4148 /*
4149 * If we are in error handling context or in power management callbacks
4150 * context, no need to scan the host
4151 */
4152 if (!ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
4153 bool flag;
4154
4155 /* clear any previous UFS device information */
4156 memset(&hba->dev_info, 0, sizeof(hba->dev_info));
4157 if (!ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_READ_FLAG,
4158 QUERY_FLAG_IDN_PWR_ON_WPE, &flag))
4159 hba->dev_info.f_power_on_wp_en = flag;
4160
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03004161 if (!hba->is_init_prefetch)
4162 ufshcd_init_icc_levels(hba);
4163
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004164 /* Add required well known logical units to scsi mid layer */
4165 if (ufshcd_scsi_add_wlus(hba))
4166 goto out;
4167
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304168 scsi_scan_host(hba->host);
4169 pm_runtime_put_sync(hba->dev);
4170 }
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03004171
4172 if (!hba->is_init_prefetch)
4173 hba->is_init_prefetch = true;
4174
Sahitya Tummala856b3482014-09-25 15:32:34 +03004175 /* Resume devfreq after UFS device is detected */
4176 if (ufshcd_is_clkscaling_enabled(hba))
4177 devfreq_resume_device(hba->devfreq);
4178
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304179out:
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004180 /*
4181 * If we failed to initialize the device or the device is not
4182 * present, turn off the power/clocks etc.
4183 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004184 if (ret && !ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
4185 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004186 ufshcd_hba_exit(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004187 }
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004188
4189 return ret;
4190}
4191
4192/**
4193 * ufshcd_async_scan - asynchronous execution for probing hba
4194 * @data: data pointer to pass to this function
4195 * @cookie: cookie data
4196 */
4197static void ufshcd_async_scan(void *data, async_cookie_t cookie)
4198{
4199 struct ufs_hba *hba = (struct ufs_hba *)data;
4200
4201 ufshcd_probe_hba(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304202}
4203
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304204static struct scsi_host_template ufshcd_driver_template = {
4205 .module = THIS_MODULE,
4206 .name = UFSHCD,
4207 .proc_name = UFSHCD,
4208 .queuecommand = ufshcd_queuecommand,
4209 .slave_alloc = ufshcd_slave_alloc,
Akinobu Mitaeeda4742014-07-01 23:00:32 +09004210 .slave_configure = ufshcd_slave_configure,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304211 .slave_destroy = ufshcd_slave_destroy,
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004212 .change_queue_depth = ufshcd_change_queue_depth,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304213 .eh_abort_handler = ufshcd_abort,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304214 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
4215 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304216 .this_id = -1,
4217 .sg_tablesize = SG_ALL,
4218 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
4219 .can_queue = UFSHCD_CAN_QUEUE,
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004220 .max_host_blocked = 1,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +01004221 .use_blk_tags = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +01004222 .track_queue_depth = 1,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304223};
4224
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004225static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg *vreg,
4226 int ua)
4227{
4228 int ret = 0;
4229 struct regulator *reg = vreg->reg;
4230 const char *name = vreg->name;
4231
4232 BUG_ON(!vreg);
4233
4234 ret = regulator_set_optimum_mode(reg, ua);
4235 if (ret >= 0) {
4236 /*
4237 * regulator_set_optimum_mode() returns new regulator
4238 * mode upon success.
4239 */
4240 ret = 0;
4241 } else {
4242 dev_err(dev, "%s: %s set optimum mode(ua=%d) failed, err=%d\n",
4243 __func__, name, ua, ret);
4244 }
4245
4246 return ret;
4247}
4248
4249static inline int ufshcd_config_vreg_lpm(struct ufs_hba *hba,
4250 struct ufs_vreg *vreg)
4251{
Akinobu Mita3e660fb2014-11-18 23:02:46 +09004252 if (!vreg)
4253 return 0;
4254
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004255 return ufshcd_config_vreg_load(hba->dev, vreg, UFS_VREG_LPM_LOAD_UA);
4256}
4257
4258static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
4259 struct ufs_vreg *vreg)
4260{
Akinobu Mita3e660fb2014-11-18 23:02:46 +09004261 if (!vreg)
4262 return 0;
4263
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004264 return ufshcd_config_vreg_load(hba->dev, vreg, vreg->max_uA);
4265}
4266
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004267static int ufshcd_config_vreg(struct device *dev,
4268 struct ufs_vreg *vreg, bool on)
4269{
4270 int ret = 0;
4271 struct regulator *reg = vreg->reg;
4272 const char *name = vreg->name;
4273 int min_uV, uA_load;
4274
4275 BUG_ON(!vreg);
4276
4277 if (regulator_count_voltages(reg) > 0) {
4278 min_uV = on ? vreg->min_uV : 0;
4279 ret = regulator_set_voltage(reg, min_uV, vreg->max_uV);
4280 if (ret) {
4281 dev_err(dev, "%s: %s set voltage failed, err=%d\n",
4282 __func__, name, ret);
4283 goto out;
4284 }
4285
4286 uA_load = on ? vreg->max_uA : 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004287 ret = ufshcd_config_vreg_load(dev, vreg, uA_load);
4288 if (ret)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004289 goto out;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004290 }
4291out:
4292 return ret;
4293}
4294
4295static int ufshcd_enable_vreg(struct device *dev, struct ufs_vreg *vreg)
4296{
4297 int ret = 0;
4298
4299 if (!vreg || vreg->enabled)
4300 goto out;
4301
4302 ret = ufshcd_config_vreg(dev, vreg, true);
4303 if (!ret)
4304 ret = regulator_enable(vreg->reg);
4305
4306 if (!ret)
4307 vreg->enabled = true;
4308 else
4309 dev_err(dev, "%s: %s enable failed, err=%d\n",
4310 __func__, vreg->name, ret);
4311out:
4312 return ret;
4313}
4314
4315static int ufshcd_disable_vreg(struct device *dev, struct ufs_vreg *vreg)
4316{
4317 int ret = 0;
4318
4319 if (!vreg || !vreg->enabled)
4320 goto out;
4321
4322 ret = regulator_disable(vreg->reg);
4323
4324 if (!ret) {
4325 /* ignore errors on applying disable config */
4326 ufshcd_config_vreg(dev, vreg, false);
4327 vreg->enabled = false;
4328 } else {
4329 dev_err(dev, "%s: %s disable failed, err=%d\n",
4330 __func__, vreg->name, ret);
4331 }
4332out:
4333 return ret;
4334}
4335
4336static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on)
4337{
4338 int ret = 0;
4339 struct device *dev = hba->dev;
4340 struct ufs_vreg_info *info = &hba->vreg_info;
4341
4342 if (!info)
4343 goto out;
4344
4345 ret = ufshcd_toggle_vreg(dev, info->vcc, on);
4346 if (ret)
4347 goto out;
4348
4349 ret = ufshcd_toggle_vreg(dev, info->vccq, on);
4350 if (ret)
4351 goto out;
4352
4353 ret = ufshcd_toggle_vreg(dev, info->vccq2, on);
4354 if (ret)
4355 goto out;
4356
4357out:
4358 if (ret) {
4359 ufshcd_toggle_vreg(dev, info->vccq2, false);
4360 ufshcd_toggle_vreg(dev, info->vccq, false);
4361 ufshcd_toggle_vreg(dev, info->vcc, false);
4362 }
4363 return ret;
4364}
4365
Raviv Shvili6a771a62014-09-25 15:32:24 +03004366static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on)
4367{
4368 struct ufs_vreg_info *info = &hba->vreg_info;
4369
4370 if (info)
4371 return ufshcd_toggle_vreg(hba->dev, info->vdd_hba, on);
4372
4373 return 0;
4374}
4375
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004376static int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg)
4377{
4378 int ret = 0;
4379
4380 if (!vreg)
4381 goto out;
4382
4383 vreg->reg = devm_regulator_get(dev, vreg->name);
4384 if (IS_ERR(vreg->reg)) {
4385 ret = PTR_ERR(vreg->reg);
4386 dev_err(dev, "%s: %s get failed, err=%d\n",
4387 __func__, vreg->name, ret);
4388 }
4389out:
4390 return ret;
4391}
4392
4393static int ufshcd_init_vreg(struct ufs_hba *hba)
4394{
4395 int ret = 0;
4396 struct device *dev = hba->dev;
4397 struct ufs_vreg_info *info = &hba->vreg_info;
4398
4399 if (!info)
4400 goto out;
4401
4402 ret = ufshcd_get_vreg(dev, info->vcc);
4403 if (ret)
4404 goto out;
4405
4406 ret = ufshcd_get_vreg(dev, info->vccq);
4407 if (ret)
4408 goto out;
4409
4410 ret = ufshcd_get_vreg(dev, info->vccq2);
4411out:
4412 return ret;
4413}
4414
Raviv Shvili6a771a62014-09-25 15:32:24 +03004415static int ufshcd_init_hba_vreg(struct ufs_hba *hba)
4416{
4417 struct ufs_vreg_info *info = &hba->vreg_info;
4418
4419 if (info)
4420 return ufshcd_get_vreg(hba->dev, info->vdd_hba);
4421
4422 return 0;
4423}
4424
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004425static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
4426 bool skip_ref_clk)
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004427{
4428 int ret = 0;
4429 struct ufs_clk_info *clki;
4430 struct list_head *head = &hba->clk_list_head;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004431 unsigned long flags;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004432
4433 if (!head || list_empty(head))
4434 goto out;
4435
4436 list_for_each_entry(clki, head, list) {
4437 if (!IS_ERR_OR_NULL(clki->clk)) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004438 if (skip_ref_clk && !strcmp(clki->name, "ref_clk"))
4439 continue;
4440
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004441 if (on && !clki->enabled) {
4442 ret = clk_prepare_enable(clki->clk);
4443 if (ret) {
4444 dev_err(hba->dev, "%s: %s prepare enable failed, %d\n",
4445 __func__, clki->name, ret);
4446 goto out;
4447 }
4448 } else if (!on && clki->enabled) {
4449 clk_disable_unprepare(clki->clk);
4450 }
4451 clki->enabled = on;
4452 dev_dbg(hba->dev, "%s: clk: %s %sabled\n", __func__,
4453 clki->name, on ? "en" : "dis");
4454 }
4455 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004456
4457 if (hba->vops && hba->vops->setup_clocks)
4458 ret = hba->vops->setup_clocks(hba, on);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004459out:
4460 if (ret) {
4461 list_for_each_entry(clki, head, list) {
4462 if (!IS_ERR_OR_NULL(clki->clk) && clki->enabled)
4463 clk_disable_unprepare(clki->clk);
4464 }
Dolev Raviveda910e2014-10-23 13:25:16 +03004465 } else if (on) {
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004466 spin_lock_irqsave(hba->host->host_lock, flags);
4467 hba->clk_gating.state = CLKS_ON;
4468 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004469 }
4470 return ret;
4471}
4472
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004473static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on)
4474{
4475 return __ufshcd_setup_clocks(hba, on, false);
4476}
4477
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004478static int ufshcd_init_clocks(struct ufs_hba *hba)
4479{
4480 int ret = 0;
4481 struct ufs_clk_info *clki;
4482 struct device *dev = hba->dev;
4483 struct list_head *head = &hba->clk_list_head;
4484
4485 if (!head || list_empty(head))
4486 goto out;
4487
4488 list_for_each_entry(clki, head, list) {
4489 if (!clki->name)
4490 continue;
4491
4492 clki->clk = devm_clk_get(dev, clki->name);
4493 if (IS_ERR(clki->clk)) {
4494 ret = PTR_ERR(clki->clk);
4495 dev_err(dev, "%s: %s clk get failed, %d\n",
4496 __func__, clki->name, ret);
4497 goto out;
4498 }
4499
4500 if (clki->max_freq) {
4501 ret = clk_set_rate(clki->clk, clki->max_freq);
4502 if (ret) {
4503 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
4504 __func__, clki->name,
4505 clki->max_freq, ret);
4506 goto out;
4507 }
Sahitya Tummala856b3482014-09-25 15:32:34 +03004508 clki->curr_freq = clki->max_freq;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004509 }
4510 dev_dbg(dev, "%s: clk: %s, rate: %lu\n", __func__,
4511 clki->name, clk_get_rate(clki->clk));
4512 }
4513out:
4514 return ret;
4515}
4516
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004517static int ufshcd_variant_hba_init(struct ufs_hba *hba)
4518{
4519 int err = 0;
4520
4521 if (!hba->vops)
4522 goto out;
4523
4524 if (hba->vops->init) {
4525 err = hba->vops->init(hba);
4526 if (err)
4527 goto out;
4528 }
4529
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004530 if (hba->vops->setup_regulators) {
4531 err = hba->vops->setup_regulators(hba, true);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004532 if (err)
4533 goto out_exit;
4534 }
4535
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004536 goto out;
4537
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004538out_exit:
4539 if (hba->vops->exit)
4540 hba->vops->exit(hba);
4541out:
4542 if (err)
4543 dev_err(hba->dev, "%s: variant %s init failed err %d\n",
4544 __func__, hba->vops ? hba->vops->name : "", err);
4545 return err;
4546}
4547
4548static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
4549{
4550 if (!hba->vops)
4551 return;
4552
4553 if (hba->vops->setup_clocks)
4554 hba->vops->setup_clocks(hba, false);
4555
4556 if (hba->vops->setup_regulators)
4557 hba->vops->setup_regulators(hba, false);
4558
4559 if (hba->vops->exit)
4560 hba->vops->exit(hba);
4561}
4562
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004563static int ufshcd_hba_init(struct ufs_hba *hba)
4564{
4565 int err;
4566
Raviv Shvili6a771a62014-09-25 15:32:24 +03004567 /*
4568 * Handle host controller power separately from the UFS device power
4569 * rails as it will help controlling the UFS host controller power
4570 * collapse easily which is different than UFS device power collapse.
4571 * Also, enable the host controller power before we go ahead with rest
4572 * of the initialization here.
4573 */
4574 err = ufshcd_init_hba_vreg(hba);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004575 if (err)
4576 goto out;
4577
Raviv Shvili6a771a62014-09-25 15:32:24 +03004578 err = ufshcd_setup_hba_vreg(hba, true);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004579 if (err)
4580 goto out;
4581
Raviv Shvili6a771a62014-09-25 15:32:24 +03004582 err = ufshcd_init_clocks(hba);
4583 if (err)
4584 goto out_disable_hba_vreg;
4585
4586 err = ufshcd_setup_clocks(hba, true);
4587 if (err)
4588 goto out_disable_hba_vreg;
4589
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004590 err = ufshcd_init_vreg(hba);
4591 if (err)
4592 goto out_disable_clks;
4593
4594 err = ufshcd_setup_vreg(hba, true);
4595 if (err)
4596 goto out_disable_clks;
4597
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004598 err = ufshcd_variant_hba_init(hba);
4599 if (err)
4600 goto out_disable_vreg;
4601
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004602 hba->is_powered = true;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004603 goto out;
4604
4605out_disable_vreg:
4606 ufshcd_setup_vreg(hba, false);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004607out_disable_clks:
4608 ufshcd_setup_clocks(hba, false);
Raviv Shvili6a771a62014-09-25 15:32:24 +03004609out_disable_hba_vreg:
4610 ufshcd_setup_hba_vreg(hba, false);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004611out:
4612 return err;
4613}
4614
4615static void ufshcd_hba_exit(struct ufs_hba *hba)
4616{
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004617 if (hba->is_powered) {
4618 ufshcd_variant_hba_exit(hba);
4619 ufshcd_setup_vreg(hba, false);
4620 ufshcd_setup_clocks(hba, false);
4621 ufshcd_setup_hba_vreg(hba, false);
4622 hba->is_powered = false;
4623 }
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004624}
4625
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004626static int
4627ufshcd_send_request_sense(struct ufs_hba *hba, struct scsi_device *sdp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304628{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004629 unsigned char cmd[6] = {REQUEST_SENSE,
4630 0,
4631 0,
4632 0,
4633 SCSI_SENSE_BUFFERSIZE,
4634 0};
4635 char *buffer;
4636 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304637
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004638 buffer = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL);
4639 if (!buffer) {
4640 ret = -ENOMEM;
4641 goto out;
4642 }
4643
4644 ret = scsi_execute_req_flags(sdp, cmd, DMA_FROM_DEVICE, buffer,
4645 SCSI_SENSE_BUFFERSIZE, NULL,
4646 msecs_to_jiffies(1000), 3, NULL, REQ_PM);
4647 if (ret)
4648 pr_err("%s: failed with err %d\n", __func__, ret);
4649
4650 kfree(buffer);
4651out:
4652 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304653}
4654
4655/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004656 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
4657 * power mode
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304658 * @hba: per adapter instance
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004659 * @pwr_mode: device power mode to set
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304660 *
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004661 * Returns 0 if requested power mode is set successfully
4662 * Returns non-zero if failed to set the requested power mode
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304663 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004664static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
4665 enum ufs_dev_pwr_mode pwr_mode)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304666{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004667 unsigned char cmd[6] = { START_STOP };
4668 struct scsi_sense_hdr sshdr;
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004669 struct scsi_device *sdp;
4670 unsigned long flags;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004671 int ret;
4672
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004673 spin_lock_irqsave(hba->host->host_lock, flags);
4674 sdp = hba->sdev_ufs_device;
4675 if (sdp) {
4676 ret = scsi_device_get(sdp);
4677 if (!ret && !scsi_device_online(sdp)) {
4678 ret = -ENODEV;
4679 scsi_device_put(sdp);
4680 }
4681 } else {
4682 ret = -ENODEV;
4683 }
4684 spin_unlock_irqrestore(hba->host->host_lock, flags);
4685
4686 if (ret)
4687 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004688
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304689 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004690 * If scsi commands fail, the scsi mid-layer schedules scsi error-
4691 * handling, which would wait for host to be resumed. Since we know
4692 * we are functional while we are here, skip host resume in error
4693 * handling context.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304694 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004695 hba->host->eh_noresume = 1;
4696 if (hba->wlun_dev_clr_ua) {
4697 ret = ufshcd_send_request_sense(hba, sdp);
4698 if (ret)
4699 goto out;
4700 /* Unit attention condition is cleared now */
4701 hba->wlun_dev_clr_ua = false;
4702 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304703
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004704 cmd[4] = pwr_mode << 4;
4705
4706 /*
4707 * Current function would be generally called from the power management
4708 * callbacks hence set the REQ_PM flag so that it doesn't resume the
4709 * already suspended childs.
4710 */
4711 ret = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
4712 START_STOP_TIMEOUT, 0, NULL, REQ_PM);
4713 if (ret) {
4714 sdev_printk(KERN_WARNING, sdp,
Hannes Reineckeef613292014-10-24 14:27:00 +02004715 "START_STOP failed for power mode: %d, result %x\n",
4716 pwr_mode, ret);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004717 if (driver_byte(ret) & DRIVER_SENSE) {
Hannes Reinecked811b842014-10-24 14:26:45 +02004718 scsi_show_sense_hdr(sdp, NULL, &sshdr);
4719 scsi_show_extd_sense(sdp, NULL, sshdr.asc, sshdr.ascq);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004720 }
4721 }
4722
4723 if (!ret)
4724 hba->curr_dev_pwr_mode = pwr_mode;
4725out:
Akinobu Mita7c48bfd2014-10-23 13:25:12 +03004726 scsi_device_put(sdp);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004727 hba->host->eh_noresume = 0;
4728 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304729}
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304730
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004731static int ufshcd_link_state_transition(struct ufs_hba *hba,
4732 enum uic_link_state req_link_state,
4733 int check_for_bkops)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304734{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004735 int ret = 0;
4736
4737 if (req_link_state == hba->uic_link_state)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304738 return 0;
4739
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004740 if (req_link_state == UIC_LINK_HIBERN8_STATE) {
4741 ret = ufshcd_uic_hibern8_enter(hba);
4742 if (!ret)
4743 ufshcd_set_link_hibern8(hba);
4744 else
4745 goto out;
4746 }
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304747 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004748 * If autobkops is enabled, link can't be turned off because
4749 * turning off the link would also turn off the device.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304750 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004751 else if ((req_link_state == UIC_LINK_OFF_STATE) &&
4752 (!check_for_bkops || (check_for_bkops &&
4753 !hba->auto_bkops_enabled))) {
4754 /*
4755 * Change controller state to "reset state" which
4756 * should also put the link in off/reset state
4757 */
4758 ufshcd_hba_stop(hba);
4759 /*
4760 * TODO: Check if we need any delay to make sure that
4761 * controller is reset
4762 */
4763 ufshcd_set_link_off(hba);
4764 }
4765
4766out:
4767 return ret;
4768}
4769
4770static void ufshcd_vreg_set_lpm(struct ufs_hba *hba)
4771{
4772 /*
4773 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
4774 * power.
4775 *
4776 * If UFS device and link is in OFF state, all power supplies (VCC,
4777 * VCCQ, VCCQ2) can be turned off if power on write protect is not
4778 * required. If UFS link is inactive (Hibern8 or OFF state) and device
4779 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
4780 *
4781 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
4782 * in low power state which would save some power.
4783 */
4784 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
4785 !hba->dev_info.is_lu_power_on_wp) {
4786 ufshcd_setup_vreg(hba, false);
4787 } else if (!ufshcd_is_ufs_dev_active(hba)) {
4788 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
4789 if (!ufshcd_is_link_active(hba)) {
4790 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
4791 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq2);
4792 }
4793 }
4794}
4795
4796static int ufshcd_vreg_set_hpm(struct ufs_hba *hba)
4797{
4798 int ret = 0;
4799
4800 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
4801 !hba->dev_info.is_lu_power_on_wp) {
4802 ret = ufshcd_setup_vreg(hba, true);
4803 } else if (!ufshcd_is_ufs_dev_active(hba)) {
4804 ret = ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, true);
4805 if (!ret && !ufshcd_is_link_active(hba)) {
4806 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
4807 if (ret)
4808 goto vcc_disable;
4809 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
4810 if (ret)
4811 goto vccq_lpm;
4812 }
4813 }
4814 goto out;
4815
4816vccq_lpm:
4817 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
4818vcc_disable:
4819 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
4820out:
4821 return ret;
4822}
4823
4824static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba)
4825{
4826 if (ufshcd_is_link_off(hba))
4827 ufshcd_setup_hba_vreg(hba, false);
4828}
4829
4830static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba)
4831{
4832 if (ufshcd_is_link_off(hba))
4833 ufshcd_setup_hba_vreg(hba, true);
4834}
4835
4836/**
4837 * ufshcd_suspend - helper function for suspend operations
4838 * @hba: per adapter instance
4839 * @pm_op: desired low power operation type
4840 *
4841 * This function will try to put the UFS device and link into low power
4842 * mode based on the "rpm_lvl" (Runtime PM level) or "spm_lvl"
4843 * (System PM level).
4844 *
4845 * If this function is called during shutdown, it will make sure that
4846 * both UFS device and UFS link is powered off.
4847 *
4848 * NOTE: UFS device & link must be active before we enter in this function.
4849 *
4850 * Returns 0 for success and non-zero for failure
4851 */
4852static int ufshcd_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
4853{
4854 int ret = 0;
4855 enum ufs_pm_level pm_lvl;
4856 enum ufs_dev_pwr_mode req_dev_pwr_mode;
4857 enum uic_link_state req_link_state;
4858
4859 hba->pm_op_in_progress = 1;
4860 if (!ufshcd_is_shutdown_pm(pm_op)) {
4861 pm_lvl = ufshcd_is_runtime_pm(pm_op) ?
4862 hba->rpm_lvl : hba->spm_lvl;
4863 req_dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl);
4864 req_link_state = ufs_get_pm_lvl_to_link_pwr_state(pm_lvl);
4865 } else {
4866 req_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE;
4867 req_link_state = UIC_LINK_OFF_STATE;
4868 }
4869
4870 /*
4871 * If we can't transition into any of the low power modes
4872 * just gate the clocks.
4873 */
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004874 ufshcd_hold(hba, false);
4875 hba->clk_gating.is_suspended = true;
4876
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004877 if (req_dev_pwr_mode == UFS_ACTIVE_PWR_MODE &&
4878 req_link_state == UIC_LINK_ACTIVE_STATE) {
4879 goto disable_clks;
4880 }
4881
4882 if ((req_dev_pwr_mode == hba->curr_dev_pwr_mode) &&
4883 (req_link_state == hba->uic_link_state))
4884 goto out;
4885
4886 /* UFS device & link must be active before we enter in this function */
4887 if (!ufshcd_is_ufs_dev_active(hba) || !ufshcd_is_link_active(hba)) {
4888 ret = -EINVAL;
4889 goto out;
4890 }
4891
4892 if (ufshcd_is_runtime_pm(pm_op)) {
Subhash Jadavani374a2462014-09-25 15:32:35 +03004893 if (ufshcd_can_autobkops_during_suspend(hba)) {
4894 /*
4895 * The device is idle with no requests in the queue,
4896 * allow background operations if bkops status shows
4897 * that performance might be impacted.
4898 */
4899 ret = ufshcd_urgent_bkops(hba);
4900 if (ret)
4901 goto enable_gating;
4902 } else {
4903 /* make sure that auto bkops is disabled */
4904 ufshcd_disable_auto_bkops(hba);
4905 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004906 }
4907
4908 if ((req_dev_pwr_mode != hba->curr_dev_pwr_mode) &&
4909 ((ufshcd_is_runtime_pm(pm_op) && !hba->auto_bkops_enabled) ||
4910 !ufshcd_is_runtime_pm(pm_op))) {
4911 /* ensure that bkops is disabled */
4912 ufshcd_disable_auto_bkops(hba);
4913 ret = ufshcd_set_dev_pwr_mode(hba, req_dev_pwr_mode);
4914 if (ret)
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004915 goto enable_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004916 }
4917
4918 ret = ufshcd_link_state_transition(hba, req_link_state, 1);
4919 if (ret)
4920 goto set_dev_active;
4921
4922 ufshcd_vreg_set_lpm(hba);
4923
4924disable_clks:
4925 /*
Sahitya Tummala856b3482014-09-25 15:32:34 +03004926 * The clock scaling needs access to controller registers. Hence, Wait
4927 * for pending clock scaling work to be done before clocks are
4928 * turned off.
4929 */
4930 if (ufshcd_is_clkscaling_enabled(hba)) {
4931 devfreq_suspend_device(hba->devfreq);
4932 hba->clk_scaling.window_start_t = 0;
4933 }
4934 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004935 * Call vendor specific suspend callback. As these callbacks may access
4936 * vendor specific host controller register space call them before the
4937 * host clocks are ON.
4938 */
4939 if (hba->vops && hba->vops->suspend) {
4940 ret = hba->vops->suspend(hba, pm_op);
4941 if (ret)
4942 goto set_link_active;
4943 }
4944
4945 if (hba->vops && hba->vops->setup_clocks) {
4946 ret = hba->vops->setup_clocks(hba, false);
4947 if (ret)
4948 goto vops_resume;
4949 }
4950
4951 if (!ufshcd_is_link_active(hba))
4952 ufshcd_setup_clocks(hba, false);
4953 else
4954 /* If link is active, device ref_clk can't be switched off */
4955 __ufshcd_setup_clocks(hba, false, true);
4956
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004957 hba->clk_gating.state = CLKS_OFF;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004958 /*
4959 * Disable the host irq as host controller as there won't be any
4960 * host controller trasanction expected till resume.
4961 */
4962 ufshcd_disable_irq(hba);
4963 /* Put the host controller in low power mode if possible */
4964 ufshcd_hba_vreg_set_lpm(hba);
4965 goto out;
4966
4967vops_resume:
4968 if (hba->vops && hba->vops->resume)
4969 hba->vops->resume(hba, pm_op);
4970set_link_active:
4971 ufshcd_vreg_set_hpm(hba);
4972 if (ufshcd_is_link_hibern8(hba) && !ufshcd_uic_hibern8_exit(hba))
4973 ufshcd_set_link_active(hba);
4974 else if (ufshcd_is_link_off(hba))
4975 ufshcd_host_reset_and_restore(hba);
4976set_dev_active:
4977 if (!ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE))
4978 ufshcd_disable_auto_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004979enable_gating:
4980 hba->clk_gating.is_suspended = false;
4981 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004982out:
4983 hba->pm_op_in_progress = 0;
4984 return ret;
4985}
4986
4987/**
4988 * ufshcd_resume - helper function for resume operations
4989 * @hba: per adapter instance
4990 * @pm_op: runtime PM or system PM
4991 *
4992 * This function basically brings the UFS device, UniPro link and controller
4993 * to active state.
4994 *
4995 * Returns 0 for success and non-zero for failure
4996 */
4997static int ufshcd_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
4998{
4999 int ret;
5000 enum uic_link_state old_link_state;
5001
5002 hba->pm_op_in_progress = 1;
5003 old_link_state = hba->uic_link_state;
5004
5005 ufshcd_hba_vreg_set_hpm(hba);
5006 /* Make sure clocks are enabled before accessing controller */
5007 ret = ufshcd_setup_clocks(hba, true);
5008 if (ret)
5009 goto out;
5010
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005011 /* enable the host irq as host controller would be active soon */
5012 ret = ufshcd_enable_irq(hba);
5013 if (ret)
5014 goto disable_irq_and_vops_clks;
5015
5016 ret = ufshcd_vreg_set_hpm(hba);
5017 if (ret)
5018 goto disable_irq_and_vops_clks;
5019
5020 /*
5021 * Call vendor specific resume callback. As these callbacks may access
5022 * vendor specific host controller register space call them when the
5023 * host clocks are ON.
5024 */
5025 if (hba->vops && hba->vops->resume) {
5026 ret = hba->vops->resume(hba, pm_op);
5027 if (ret)
5028 goto disable_vreg;
5029 }
5030
5031 if (ufshcd_is_link_hibern8(hba)) {
5032 ret = ufshcd_uic_hibern8_exit(hba);
5033 if (!ret)
5034 ufshcd_set_link_active(hba);
5035 else
5036 goto vendor_suspend;
5037 } else if (ufshcd_is_link_off(hba)) {
5038 ret = ufshcd_host_reset_and_restore(hba);
5039 /*
5040 * ufshcd_host_reset_and_restore() should have already
5041 * set the link state as active
5042 */
5043 if (ret || !ufshcd_is_link_active(hba))
5044 goto vendor_suspend;
5045 }
5046
5047 if (!ufshcd_is_ufs_dev_active(hba)) {
5048 ret = ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE);
5049 if (ret)
5050 goto set_old_link_state;
5051 }
5052
Subhash Jadavani374a2462014-09-25 15:32:35 +03005053 /*
5054 * If BKOPs operations are urgently needed at this moment then
5055 * keep auto-bkops enabled or else disable it.
5056 */
5057 ufshcd_urgent_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005058 hba->clk_gating.is_suspended = false;
5059
Sahitya Tummala856b3482014-09-25 15:32:34 +03005060 if (ufshcd_is_clkscaling_enabled(hba))
5061 devfreq_resume_device(hba->devfreq);
5062
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005063 /* Schedule clock gating in case of no access to UFS device yet */
5064 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005065 goto out;
5066
5067set_old_link_state:
5068 ufshcd_link_state_transition(hba, old_link_state, 0);
5069vendor_suspend:
5070 if (hba->vops && hba->vops->suspend)
5071 hba->vops->suspend(hba, pm_op);
5072disable_vreg:
5073 ufshcd_vreg_set_lpm(hba);
5074disable_irq_and_vops_clks:
5075 ufshcd_disable_irq(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005076 ufshcd_setup_clocks(hba, false);
5077out:
5078 hba->pm_op_in_progress = 0;
5079 return ret;
5080}
5081
5082/**
5083 * ufshcd_system_suspend - system suspend routine
5084 * @hba: per adapter instance
5085 * @pm_op: runtime PM or system PM
5086 *
5087 * Check the description of ufshcd_suspend() function for more details.
5088 *
5089 * Returns 0 for success and non-zero for failure
5090 */
5091int ufshcd_system_suspend(struct ufs_hba *hba)
5092{
5093 int ret = 0;
5094
5095 if (!hba || !hba->is_powered)
Dolev Raviv233b5942014-10-23 13:25:14 +03005096 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005097
5098 if (pm_runtime_suspended(hba->dev)) {
5099 if (hba->rpm_lvl == hba->spm_lvl)
5100 /*
5101 * There is possibility that device may still be in
5102 * active state during the runtime suspend.
5103 */
5104 if ((ufs_get_pm_lvl_to_dev_pwr_mode(hba->spm_lvl) ==
5105 hba->curr_dev_pwr_mode) && !hba->auto_bkops_enabled)
5106 goto out;
5107
5108 /*
5109 * UFS device and/or UFS link low power states during runtime
5110 * suspend seems to be different than what is expected during
5111 * system suspend. Hence runtime resume the devic & link and
5112 * let the system suspend low power states to take effect.
5113 * TODO: If resume takes longer time, we might have optimize
5114 * it in future by not resuming everything if possible.
5115 */
5116 ret = ufshcd_runtime_resume(hba);
5117 if (ret)
5118 goto out;
5119 }
5120
5121 ret = ufshcd_suspend(hba, UFS_SYSTEM_PM);
5122out:
Dolev Ravive7850602014-09-25 15:32:36 +03005123 if (!ret)
5124 hba->is_sys_suspended = true;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005125 return ret;
5126}
5127EXPORT_SYMBOL(ufshcd_system_suspend);
5128
5129/**
5130 * ufshcd_system_resume - system resume routine
5131 * @hba: per adapter instance
5132 *
5133 * Returns 0 for success and non-zero for failure
5134 */
5135
5136int ufshcd_system_resume(struct ufs_hba *hba)
5137{
5138 if (!hba || !hba->is_powered || pm_runtime_suspended(hba->dev))
5139 /*
5140 * Let the runtime resume take care of resuming
5141 * if runtime suspended.
5142 */
5143 return 0;
5144
5145 return ufshcd_resume(hba, UFS_SYSTEM_PM);
5146}
5147EXPORT_SYMBOL(ufshcd_system_resume);
5148
5149/**
5150 * ufshcd_runtime_suspend - runtime suspend routine
5151 * @hba: per adapter instance
5152 *
5153 * Check the description of ufshcd_suspend() function for more details.
5154 *
5155 * Returns 0 for success and non-zero for failure
5156 */
5157int ufshcd_runtime_suspend(struct ufs_hba *hba)
5158{
5159 if (!hba || !hba->is_powered)
5160 return 0;
5161
5162 return ufshcd_suspend(hba, UFS_RUNTIME_PM);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305163}
5164EXPORT_SYMBOL(ufshcd_runtime_suspend);
5165
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005166/**
5167 * ufshcd_runtime_resume - runtime resume routine
5168 * @hba: per adapter instance
5169 *
5170 * This function basically brings the UFS device, UniPro link and controller
5171 * to active state. Following operations are done in this function:
5172 *
5173 * 1. Turn on all the controller related clocks
5174 * 2. Bring the UniPro link out of Hibernate state
5175 * 3. If UFS device is in sleep state, turn ON VCC rail and bring the UFS device
5176 * to active state.
5177 * 4. If auto-bkops is enabled on the device, disable it.
5178 *
5179 * So following would be the possible power state after this function return
5180 * successfully:
5181 * S1: UFS device in Active state with VCC rail ON
5182 * UniPro link in Active state
5183 * All the UFS/UniPro controller clocks are ON
5184 *
5185 * Returns 0 for success and non-zero for failure
5186 */
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305187int ufshcd_runtime_resume(struct ufs_hba *hba)
5188{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005189 if (!hba || !hba->is_powered)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305190 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005191 else
5192 return ufshcd_resume(hba, UFS_RUNTIME_PM);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305193}
5194EXPORT_SYMBOL(ufshcd_runtime_resume);
5195
5196int ufshcd_runtime_idle(struct ufs_hba *hba)
5197{
5198 return 0;
5199}
5200EXPORT_SYMBOL(ufshcd_runtime_idle);
5201
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305202/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005203 * ufshcd_shutdown - shutdown routine
5204 * @hba: per adapter instance
5205 *
5206 * This function would power off both UFS device and UFS link.
5207 *
5208 * Returns 0 always to allow force shutdown even in case of errors.
5209 */
5210int ufshcd_shutdown(struct ufs_hba *hba)
5211{
5212 int ret = 0;
5213
5214 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba))
5215 goto out;
5216
5217 if (pm_runtime_suspended(hba->dev)) {
5218 ret = ufshcd_runtime_resume(hba);
5219 if (ret)
5220 goto out;
5221 }
5222
5223 ret = ufshcd_suspend(hba, UFS_SHUTDOWN_PM);
5224out:
5225 if (ret)
5226 dev_err(hba->dev, "%s failed, err %d\n", __func__, ret);
5227 /* allow force shutdown even in case of errors */
5228 return 0;
5229}
5230EXPORT_SYMBOL(ufshcd_shutdown);
5231
5232/**
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305233 * ufshcd_remove - de-allocate SCSI host and host memory space
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305234 * data structure memory
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305235 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305236 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305237void ufshcd_remove(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305238{
Akinobu Mitacfdf9c92013-07-30 00:36:03 +05305239 scsi_remove_host(hba->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305240 /* disable interrupts */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05305241 ufshcd_disable_intr(hba, hba->intr_mask);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305242 ufshcd_hba_stop(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305243
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305244 scsi_host_put(hba->host);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005245
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005246 ufshcd_exit_clk_gating(hba);
Sahitya Tummala856b3482014-09-25 15:32:34 +03005247 if (ufshcd_is_clkscaling_enabled(hba))
5248 devfreq_remove_device(hba->devfreq);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005249 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305250}
5251EXPORT_SYMBOL_GPL(ufshcd_remove);
5252
5253/**
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09005254 * ufshcd_set_dma_mask - Set dma mask based on the controller
5255 * addressing capability
5256 * @hba: per adapter instance
5257 *
5258 * Returns 0 for success, non-zero for failure
5259 */
5260static int ufshcd_set_dma_mask(struct ufs_hba *hba)
5261{
5262 if (hba->capabilities & MASK_64_ADDRESSING_SUPPORT) {
5263 if (!dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(64)))
5264 return 0;
5265 }
5266 return dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(32));
5267}
5268
5269/**
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005270 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305271 * @dev: pointer to device handle
5272 * @hba_handle: driver private handle
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305273 * Returns 0 on success, non-zero value on failure
5274 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005275int ufshcd_alloc_host(struct device *dev, struct ufs_hba **hba_handle)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305276{
5277 struct Scsi_Host *host;
5278 struct ufs_hba *hba;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005279 int err = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305280
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305281 if (!dev) {
5282 dev_err(dev,
5283 "Invalid memory reference for dev is NULL\n");
5284 err = -ENODEV;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305285 goto out_error;
5286 }
5287
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305288 host = scsi_host_alloc(&ufshcd_driver_template,
5289 sizeof(struct ufs_hba));
5290 if (!host) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305291 dev_err(dev, "scsi_host_alloc failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305292 err = -ENOMEM;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305293 goto out_error;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305294 }
5295 hba = shost_priv(host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305296 hba->host = host;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305297 hba->dev = dev;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005298 *hba_handle = hba;
5299
5300out_error:
5301 return err;
5302}
5303EXPORT_SYMBOL(ufshcd_alloc_host);
5304
Sahitya Tummala856b3482014-09-25 15:32:34 +03005305static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up)
5306{
5307 int ret = 0;
5308 struct ufs_clk_info *clki;
5309 struct list_head *head = &hba->clk_list_head;
5310
5311 if (!head || list_empty(head))
5312 goto out;
5313
5314 list_for_each_entry(clki, head, list) {
5315 if (!IS_ERR_OR_NULL(clki->clk)) {
5316 if (scale_up && clki->max_freq) {
5317 if (clki->curr_freq == clki->max_freq)
5318 continue;
5319 ret = clk_set_rate(clki->clk, clki->max_freq);
5320 if (ret) {
5321 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
5322 __func__, clki->name,
5323 clki->max_freq, ret);
5324 break;
5325 }
5326 clki->curr_freq = clki->max_freq;
5327
5328 } else if (!scale_up && clki->min_freq) {
5329 if (clki->curr_freq == clki->min_freq)
5330 continue;
5331 ret = clk_set_rate(clki->clk, clki->min_freq);
5332 if (ret) {
5333 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
5334 __func__, clki->name,
5335 clki->min_freq, ret);
5336 break;
5337 }
5338 clki->curr_freq = clki->min_freq;
5339 }
5340 }
5341 dev_dbg(hba->dev, "%s: clk: %s, rate: %lu\n", __func__,
5342 clki->name, clk_get_rate(clki->clk));
5343 }
5344 if (hba->vops->clk_scale_notify)
5345 hba->vops->clk_scale_notify(hba);
5346out:
5347 return ret;
5348}
5349
5350static int ufshcd_devfreq_target(struct device *dev,
5351 unsigned long *freq, u32 flags)
5352{
5353 int err = 0;
5354 struct ufs_hba *hba = dev_get_drvdata(dev);
5355
5356 if (!ufshcd_is_clkscaling_enabled(hba))
5357 return -EINVAL;
5358
5359 if (*freq == UINT_MAX)
5360 err = ufshcd_scale_clks(hba, true);
5361 else if (*freq == 0)
5362 err = ufshcd_scale_clks(hba, false);
5363
5364 return err;
5365}
5366
5367static int ufshcd_devfreq_get_dev_status(struct device *dev,
5368 struct devfreq_dev_status *stat)
5369{
5370 struct ufs_hba *hba = dev_get_drvdata(dev);
5371 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
5372 unsigned long flags;
5373
5374 if (!ufshcd_is_clkscaling_enabled(hba))
5375 return -EINVAL;
5376
5377 memset(stat, 0, sizeof(*stat));
5378
5379 spin_lock_irqsave(hba->host->host_lock, flags);
5380 if (!scaling->window_start_t)
5381 goto start_window;
5382
5383 if (scaling->is_busy_started)
5384 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
5385 scaling->busy_start_t));
5386
5387 stat->total_time = jiffies_to_usecs((long)jiffies -
5388 (long)scaling->window_start_t);
5389 stat->busy_time = scaling->tot_busy_t;
5390start_window:
5391 scaling->window_start_t = jiffies;
5392 scaling->tot_busy_t = 0;
5393
5394 if (hba->outstanding_reqs) {
5395 scaling->busy_start_t = ktime_get();
5396 scaling->is_busy_started = true;
5397 } else {
5398 scaling->busy_start_t = ktime_set(0, 0);
5399 scaling->is_busy_started = false;
5400 }
5401 spin_unlock_irqrestore(hba->host->host_lock, flags);
5402 return 0;
5403}
5404
5405static struct devfreq_dev_profile ufs_devfreq_profile = {
5406 .polling_ms = 100,
5407 .target = ufshcd_devfreq_target,
5408 .get_dev_status = ufshcd_devfreq_get_dev_status,
5409};
5410
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005411/**
5412 * ufshcd_init - Driver initialization routine
5413 * @hba: per-adapter instance
5414 * @mmio_base: base register address
5415 * @irq: Interrupt line of device
5416 * Returns 0 on success, non-zero value on failure
5417 */
5418int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
5419{
5420 int err;
5421 struct Scsi_Host *host = hba->host;
5422 struct device *dev = hba->dev;
5423
5424 if (!mmio_base) {
5425 dev_err(hba->dev,
5426 "Invalid memory reference for mmio_base is NULL\n");
5427 err = -ENODEV;
5428 goto out_error;
5429 }
5430
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305431 hba->mmio_base = mmio_base;
5432 hba->irq = irq;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305433
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005434 err = ufshcd_hba_init(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005435 if (err)
5436 goto out_error;
5437
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305438 /* Read capabilities registers */
5439 ufshcd_hba_capabilities(hba);
5440
5441 /* Get UFS version supported by the controller */
5442 hba->ufs_version = ufshcd_get_ufs_version(hba);
5443
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05305444 /* Get Interrupt bit mask per version */
5445 hba->intr_mask = ufshcd_get_intr_mask(hba);
5446
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09005447 err = ufshcd_set_dma_mask(hba);
5448 if (err) {
5449 dev_err(hba->dev, "set dma mask failed\n");
5450 goto out_disable;
5451 }
5452
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305453 /* Allocate memory for host memory space */
5454 err = ufshcd_memory_alloc(hba);
5455 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305456 dev_err(hba->dev, "Memory allocation failed\n");
5457 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305458 }
5459
5460 /* Configure LRB */
5461 ufshcd_host_memory_configure(hba);
5462
5463 host->can_queue = hba->nutrs;
5464 host->cmd_per_lun = hba->nutrs;
5465 host->max_id = UFSHCD_MAX_ID;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03005466 host->max_lun = UFS_MAX_LUNS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305467 host->max_channel = UFSHCD_MAX_CHANNEL;
5468 host->unique_id = host->host_no;
5469 host->max_cmd_len = MAX_CDB_SIZE;
5470
Dolev Raviv7eb584d2014-09-25 15:32:31 +03005471 hba->max_pwr_info.is_valid = false;
5472
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305473 /* Initailize wait queue for task management */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305474 init_waitqueue_head(&hba->tm_wq);
5475 init_waitqueue_head(&hba->tm_tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305476
5477 /* Initialize work queues */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305478 INIT_WORK(&hba->eh_work, ufshcd_err_handler);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305479 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305480
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305481 /* Initialize UIC command mutex */
5482 mutex_init(&hba->uic_cmd_mutex);
5483
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305484 /* Initialize mutex for device management commands */
5485 mutex_init(&hba->dev_cmd.lock);
5486
5487 /* Initialize device management tag acquire wait queue */
5488 init_waitqueue_head(&hba->dev_cmd.tag_wq);
5489
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005490 ufshcd_init_clk_gating(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305491 /* IRQ registration */
Seungwon Jeon2953f852013-06-27 13:31:54 +09005492 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305493 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305494 dev_err(hba->dev, "request irq failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005495 goto exit_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005496 } else {
5497 hba->is_irq_enabled = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305498 }
5499
5500 /* Enable SCSI tag mapping */
5501 err = scsi_init_shared_tag_map(host, host->can_queue);
5502 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305503 dev_err(hba->dev, "init shared queue failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005504 goto exit_gating;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305505 }
5506
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305507 err = scsi_add_host(host, hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305508 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305509 dev_err(hba->dev, "scsi_add_host failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005510 goto exit_gating;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305511 }
5512
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305513 /* Host controller enable */
5514 err = ufshcd_hba_enable(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305515 if (err) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305516 dev_err(hba->dev, "Host controller enable failed\n");
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305517 goto out_remove_scsi_host;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305518 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305519
Sahitya Tummala856b3482014-09-25 15:32:34 +03005520 if (ufshcd_is_clkscaling_enabled(hba)) {
5521 hba->devfreq = devfreq_add_device(dev, &ufs_devfreq_profile,
5522 "simple_ondemand", NULL);
5523 if (IS_ERR(hba->devfreq)) {
5524 dev_err(hba->dev, "Unable to register with devfreq %ld\n",
5525 PTR_ERR(hba->devfreq));
5526 goto out_remove_scsi_host;
5527 }
5528 /* Suspend devfreq until the UFS device is detected */
5529 devfreq_suspend_device(hba->devfreq);
5530 hba->clk_scaling.window_start_t = 0;
5531 }
5532
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05305533 /* Hold auto suspend until async scan completes */
5534 pm_runtime_get_sync(dev);
5535
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005536 /*
5537 * The device-initialize-sequence hasn't been invoked yet.
5538 * Set the device to power-off state
5539 */
5540 ufshcd_set_ufs_dev_poweroff(hba);
5541
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305542 async_schedule(ufshcd_async_scan, hba);
5543
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305544 return 0;
5545
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305546out_remove_scsi_host:
5547 scsi_remove_host(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005548exit_gating:
5549 ufshcd_exit_clk_gating(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305550out_disable:
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005551 hba->is_irq_enabled = false;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305552 scsi_host_put(host);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005553 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305554out_error:
5555 return err;
5556}
5557EXPORT_SYMBOL_GPL(ufshcd_init);
5558
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305559MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
5560MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
Vinayak Holikattie0eca632013-02-25 21:44:33 +05305561MODULE_DESCRIPTION("Generic UFS host controller driver Core");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305562MODULE_LICENSE("GPL");
5563MODULE_VERSION(UFSHCD_DRIVER_VERSION);