blob: 67e2280e2be3b67e55f17d3ef44bc6a5f1870439 [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);
747}
748
Sahitya Tummala856b3482014-09-25 15:32:34 +0300749/* Must be called with host lock acquired */
750static void ufshcd_clk_scaling_start_busy(struct ufs_hba *hba)
751{
752 if (!ufshcd_is_clkscaling_enabled(hba))
753 return;
754
755 if (!hba->clk_scaling.is_busy_started) {
756 hba->clk_scaling.busy_start_t = ktime_get();
757 hba->clk_scaling.is_busy_started = true;
758 }
759}
760
761static void ufshcd_clk_scaling_update_busy(struct ufs_hba *hba)
762{
763 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
764
765 if (!ufshcd_is_clkscaling_enabled(hba))
766 return;
767
768 if (!hba->outstanding_reqs && scaling->is_busy_started) {
769 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
770 scaling->busy_start_t));
771 scaling->busy_start_t = ktime_set(0, 0);
772 scaling->is_busy_started = false;
773 }
774}
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530775/**
776 * ufshcd_send_command - Send SCSI or device management commands
777 * @hba: per adapter instance
778 * @task_tag: Task tag of the command
779 */
780static inline
781void ufshcd_send_command(struct ufs_hba *hba, unsigned int task_tag)
782{
Sahitya Tummala856b3482014-09-25 15:32:34 +0300783 ufshcd_clk_scaling_start_busy(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530784 __set_bit(task_tag, &hba->outstanding_reqs);
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530785 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530786}
787
788/**
789 * ufshcd_copy_sense_data - Copy sense data in case of check condition
790 * @lrb - pointer to local reference block
791 */
792static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
793{
794 int len;
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530795 if (lrbp->sense_buffer &&
796 ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530797 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530798 memcpy(lrbp->sense_buffer,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530799 lrbp->ucd_rsp_ptr->sr.sense_data,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530800 min_t(int, len, SCSI_SENSE_BUFFERSIZE));
801 }
802}
803
804/**
Dolev Raviv68078d52013-07-30 00:35:58 +0530805 * ufshcd_copy_query_response() - Copy the Query Response and the data
806 * descriptor
807 * @hba: per adapter instance
808 * @lrb - pointer to local reference block
809 */
810static
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300811int ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Dolev Raviv68078d52013-07-30 00:35:58 +0530812{
813 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
814
Dolev Raviv68078d52013-07-30 00:35:58 +0530815 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +0530816
Dolev Raviv68078d52013-07-30 00:35:58 +0530817 /* Get the descriptor */
818 if (lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
Dolev Ravivd44a5f92014-06-29 09:40:17 +0300819 u8 *descp = (u8 *)lrbp->ucd_rsp_ptr +
Dolev Raviv68078d52013-07-30 00:35:58 +0530820 GENERAL_UPIU_REQUEST_SIZE;
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300821 u16 resp_len;
822 u16 buf_len;
Dolev Raviv68078d52013-07-30 00:35:58 +0530823
824 /* data segment length */
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300825 resp_len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
Dolev Raviv68078d52013-07-30 00:35:58 +0530826 MASK_QUERY_DATA_SEG_LEN;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +0300827 buf_len = be16_to_cpu(
828 hba->dev_cmd.query.request.upiu_req.length);
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300829 if (likely(buf_len >= resp_len)) {
830 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len);
831 } else {
832 dev_warn(hba->dev,
833 "%s: Response size is bigger than buffer",
834 __func__);
835 return -EINVAL;
836 }
Dolev Raviv68078d52013-07-30 00:35:58 +0530837 }
Dolev Ravivc6d4a832014-06-29 09:40:18 +0300838
839 return 0;
Dolev Raviv68078d52013-07-30 00:35:58 +0530840}
841
842/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530843 * ufshcd_hba_capabilities - Read controller capabilities
844 * @hba: per adapter instance
845 */
846static inline void ufshcd_hba_capabilities(struct ufs_hba *hba)
847{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530848 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530849
850 /* nutrs and nutmrs are 0 based values */
851 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS) + 1;
852 hba->nutmrs =
853 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
854}
855
856/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530857 * ufshcd_ready_for_uic_cmd - Check if controller is ready
858 * to accept UIC commands
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530859 * @hba: per adapter instance
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530860 * Return true on success, else false
861 */
862static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
863{
864 if (ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY)
865 return true;
866 else
867 return false;
868}
869
870/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +0530871 * ufshcd_get_upmcrs - Get the power mode change request status
872 * @hba: Pointer to adapter instance
873 *
874 * This function gets the UPMCRS field of HCS register
875 * Returns value of UPMCRS field
876 */
877static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
878{
879 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
880}
881
882/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530883 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
884 * @hba: per adapter instance
885 * @uic_cmd: UIC command
886 *
887 * Mutex must be held.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530888 */
889static inline void
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530890ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530891{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530892 WARN_ON(hba->active_uic_cmd);
893
894 hba->active_uic_cmd = uic_cmd;
895
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530896 /* Write Args */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530897 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
898 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
899 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530900
901 /* Write UIC Cmd */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530902 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530903 REG_UIC_COMMAND);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530904}
905
906/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530907 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
908 * @hba: per adapter instance
909 * @uic_command: UIC command
910 *
911 * Must be called with mutex held.
912 * Returns 0 only if success.
913 */
914static int
915ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
916{
917 int ret;
918 unsigned long flags;
919
920 if (wait_for_completion_timeout(&uic_cmd->done,
921 msecs_to_jiffies(UIC_CMD_TIMEOUT)))
922 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
923 else
924 ret = -ETIMEDOUT;
925
926 spin_lock_irqsave(hba->host->host_lock, flags);
927 hba->active_uic_cmd = NULL;
928 spin_unlock_irqrestore(hba->host->host_lock, flags);
929
930 return ret;
931}
932
933/**
934 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
935 * @hba: per adapter instance
936 * @uic_cmd: UIC command
937 *
938 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300939 * with mutex held and host_lock locked.
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530940 * Returns 0 only if success.
941 */
942static int
943__ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
944{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530945 if (!ufshcd_ready_for_uic_cmd(hba)) {
946 dev_err(hba->dev,
947 "Controller not ready to accept UIC commands\n");
948 return -EIO;
949 }
950
951 init_completion(&uic_cmd->done);
952
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530953 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530954
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300955 return 0;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530956}
957
958/**
959 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
960 * @hba: per adapter instance
961 * @uic_cmd: UIC command
962 *
963 * Returns 0 only if success.
964 */
965static int
966ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
967{
968 int ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300969 unsigned long flags;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530970
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300971 ufshcd_hold(hba, false);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530972 mutex_lock(&hba->uic_cmd_mutex);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300973 spin_lock_irqsave(hba->host->host_lock, flags);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530974 ret = __ufshcd_send_uic_cmd(hba, uic_cmd);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300975 spin_unlock_irqrestore(hba->host->host_lock, flags);
976 if (!ret)
977 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
978
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530979 mutex_unlock(&hba->uic_cmd_mutex);
980
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300981 ufshcd_release(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530982 return ret;
983}
984
985/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530986 * ufshcd_map_sg - Map scatter-gather list to prdt
987 * @lrbp - pointer to local reference block
988 *
989 * Returns 0 in case of success, non-zero value in case of failure
990 */
991static int ufshcd_map_sg(struct ufshcd_lrb *lrbp)
992{
993 struct ufshcd_sg_entry *prd_table;
994 struct scatterlist *sg;
995 struct scsi_cmnd *cmd;
996 int sg_segments;
997 int i;
998
999 cmd = lrbp->cmd;
1000 sg_segments = scsi_dma_map(cmd);
1001 if (sg_segments < 0)
1002 return sg_segments;
1003
1004 if (sg_segments) {
1005 lrbp->utr_descriptor_ptr->prd_table_length =
1006 cpu_to_le16((u16) (sg_segments));
1007
1008 prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
1009
1010 scsi_for_each_sg(cmd, sg, sg_segments, i) {
1011 prd_table[i].size =
1012 cpu_to_le32(((u32) sg_dma_len(sg))-1);
1013 prd_table[i].base_addr =
1014 cpu_to_le32(lower_32_bits(sg->dma_address));
1015 prd_table[i].upper_addr =
1016 cpu_to_le32(upper_32_bits(sg->dma_address));
1017 }
1018 } else {
1019 lrbp->utr_descriptor_ptr->prd_table_length = 0;
1020 }
1021
1022 return 0;
1023}
1024
1025/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301026 * ufshcd_enable_intr - enable interrupts
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301027 * @hba: per adapter instance
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301028 * @intrs: interrupt bits
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301029 */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301030static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301031{
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301032 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
1033
1034 if (hba->ufs_version == UFSHCI_VERSION_10) {
1035 u32 rw;
1036 rw = set & INTERRUPT_MASK_RW_VER_10;
1037 set = rw | ((set ^ intrs) & intrs);
1038 } else {
1039 set |= intrs;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301040 }
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05301041
1042 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
1043}
1044
1045/**
1046 * ufshcd_disable_intr - disable interrupts
1047 * @hba: per adapter instance
1048 * @intrs: interrupt bits
1049 */
1050static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
1051{
1052 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
1053
1054 if (hba->ufs_version == UFSHCI_VERSION_10) {
1055 u32 rw;
1056 rw = (set & INTERRUPT_MASK_RW_VER_10) &
1057 ~(intrs & INTERRUPT_MASK_RW_VER_10);
1058 set = rw | ((set & intrs) & ~INTERRUPT_MASK_RW_VER_10);
1059
1060 } else {
1061 set &= ~intrs;
1062 }
1063
1064 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301065}
1066
1067/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301068 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
1069 * descriptor according to request
1070 * @lrbp: pointer to local reference block
1071 * @upiu_flags: flags required in the header
1072 * @cmd_dir: requests data direction
1073 */
1074static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb *lrbp,
1075 u32 *upiu_flags, enum dma_data_direction cmd_dir)
1076{
1077 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
1078 u32 data_direction;
1079 u32 dword_0;
1080
1081 if (cmd_dir == DMA_FROM_DEVICE) {
1082 data_direction = UTP_DEVICE_TO_HOST;
1083 *upiu_flags = UPIU_CMD_FLAGS_READ;
1084 } else if (cmd_dir == DMA_TO_DEVICE) {
1085 data_direction = UTP_HOST_TO_DEVICE;
1086 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
1087 } else {
1088 data_direction = UTP_NO_DATA_TRANSFER;
1089 *upiu_flags = UPIU_CMD_FLAGS_NONE;
1090 }
1091
1092 dword_0 = data_direction | (lrbp->command_type
1093 << UPIU_COMMAND_TYPE_OFFSET);
1094 if (lrbp->intr_cmd)
1095 dword_0 |= UTP_REQ_DESC_INT_CMD;
1096
1097 /* Transfer request descriptor header fields */
1098 req_desc->header.dword_0 = cpu_to_le32(dword_0);
1099
1100 /*
1101 * assigning invalid value for command status. Controller
1102 * updates OCS on command completion, with the command
1103 * status
1104 */
1105 req_desc->header.dword_2 =
1106 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
1107}
1108
1109/**
1110 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
1111 * for scsi commands
1112 * @lrbp - local reference block pointer
1113 * @upiu_flags - flags
1114 */
1115static
1116void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u32 upiu_flags)
1117{
1118 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1119
1120 /* command descriptor fields */
1121 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
1122 UPIU_TRANSACTION_COMMAND, upiu_flags,
1123 lrbp->lun, lrbp->task_tag);
1124 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
1125 UPIU_COMMAND_SET_TYPE_SCSI, 0, 0, 0);
1126
1127 /* Total EHS length and Data segment length will be zero */
1128 ucd_req_ptr->header.dword_2 = 0;
1129
1130 ucd_req_ptr->sc.exp_data_transfer_len =
1131 cpu_to_be32(lrbp->cmd->sdb.length);
1132
1133 memcpy(ucd_req_ptr->sc.cdb, lrbp->cmd->cmnd,
1134 (min_t(unsigned short, lrbp->cmd->cmd_len, MAX_CDB_SIZE)));
1135}
1136
Dolev Raviv68078d52013-07-30 00:35:58 +05301137/**
1138 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
1139 * for query requsts
1140 * @hba: UFS hba
1141 * @lrbp: local reference block pointer
1142 * @upiu_flags: flags
1143 */
1144static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
1145 struct ufshcd_lrb *lrbp, u32 upiu_flags)
1146{
1147 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1148 struct ufs_query *query = &hba->dev_cmd.query;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301149 u16 len = be16_to_cpu(query->request.upiu_req.length);
Dolev Raviv68078d52013-07-30 00:35:58 +05301150 u8 *descp = (u8 *)lrbp->ucd_req_ptr + GENERAL_UPIU_REQUEST_SIZE;
1151
1152 /* Query request header */
1153 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
1154 UPIU_TRANSACTION_QUERY_REQ, upiu_flags,
1155 lrbp->lun, lrbp->task_tag);
1156 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
1157 0, query->request.query_func, 0, 0);
1158
1159 /* Data segment length */
1160 ucd_req_ptr->header.dword_2 = UPIU_HEADER_DWORD(
1161 0, 0, len >> 8, (u8)len);
1162
1163 /* Copy the Query Request buffer as is */
1164 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
1165 QUERY_OSF_SIZE);
Dolev Raviv68078d52013-07-30 00:35:58 +05301166
1167 /* Copy the Descriptor */
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001168 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC)
1169 memcpy(descp, query->descriptor, len);
1170
Dolev Raviv68078d52013-07-30 00:35:58 +05301171}
1172
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301173static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb *lrbp)
1174{
1175 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
1176
1177 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
1178
1179 /* command descriptor fields */
1180 ucd_req_ptr->header.dword_0 =
1181 UPIU_HEADER_DWORD(
1182 UPIU_TRANSACTION_NOP_OUT, 0, 0, lrbp->task_tag);
1183}
1184
1185/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301186 * ufshcd_compose_upiu - form UFS Protocol Information Unit(UPIU)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301187 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301188 * @lrb - pointer to local reference block
1189 */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301190static int ufshcd_compose_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301191{
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301192 u32 upiu_flags;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301193 int ret = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301194
1195 switch (lrbp->command_type) {
1196 case UTP_CMD_TYPE_SCSI:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301197 if (likely(lrbp->cmd)) {
1198 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags,
1199 lrbp->cmd->sc_data_direction);
1200 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp, upiu_flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301201 } else {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301202 ret = -EINVAL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301203 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301204 break;
1205 case UTP_CMD_TYPE_DEV_MANAGE:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301206 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
Dolev Raviv68078d52013-07-30 00:35:58 +05301207 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
1208 ufshcd_prepare_utp_query_req_upiu(
1209 hba, lrbp, upiu_flags);
1210 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301211 ufshcd_prepare_utp_nop_upiu(lrbp);
1212 else
1213 ret = -EINVAL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301214 break;
1215 case UTP_CMD_TYPE_UFS:
1216 /* For UFS native command implementation */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301217 ret = -ENOTSUPP;
1218 dev_err(hba->dev, "%s: UFS native command are not supported\n",
1219 __func__);
1220 break;
1221 default:
1222 ret = -ENOTSUPP;
1223 dev_err(hba->dev, "%s: unknown command type: 0x%x\n",
1224 __func__, lrbp->command_type);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301225 break;
1226 } /* end of switch */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301227
1228 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301229}
1230
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001231/*
1232 * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
1233 * @scsi_lun: scsi LUN id
1234 *
1235 * Returns UPIU LUN id
1236 */
1237static inline u8 ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun)
1238{
1239 if (scsi_is_wlun(scsi_lun))
1240 return (scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID)
1241 | UFS_UPIU_WLUN_ID;
1242 else
1243 return scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID;
1244}
1245
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301246/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03001247 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
1248 * @scsi_lun: UPIU W-LUN id
1249 *
1250 * Returns SCSI W-LUN id
1251 */
1252static inline u16 ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id)
1253{
1254 return (upiu_wlun_id & ~UFS_UPIU_WLUN_ID) | SCSI_W_LUN_BASE;
1255}
1256
1257/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301258 * ufshcd_queuecommand - main entry point for SCSI requests
1259 * @cmd: command from SCSI Midlayer
1260 * @done: call back function
1261 *
1262 * Returns 0 for success, non-zero in case of failure
1263 */
1264static int ufshcd_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
1265{
1266 struct ufshcd_lrb *lrbp;
1267 struct ufs_hba *hba;
1268 unsigned long flags;
1269 int tag;
1270 int err = 0;
1271
1272 hba = shost_priv(host);
1273
1274 tag = cmd->request->tag;
1275
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301276 spin_lock_irqsave(hba->host->host_lock, flags);
1277 switch (hba->ufshcd_state) {
1278 case UFSHCD_STATE_OPERATIONAL:
1279 break;
1280 case UFSHCD_STATE_RESET:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301281 err = SCSI_MLQUEUE_HOST_BUSY;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301282 goto out_unlock;
1283 case UFSHCD_STATE_ERROR:
1284 set_host_byte(cmd, DID_ERROR);
1285 cmd->scsi_done(cmd);
1286 goto out_unlock;
1287 default:
1288 dev_WARN_ONCE(hba->dev, 1, "%s: invalid state %d\n",
1289 __func__, hba->ufshcd_state);
1290 set_host_byte(cmd, DID_BAD_TARGET);
1291 cmd->scsi_done(cmd);
1292 goto out_unlock;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301293 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301294 spin_unlock_irqrestore(hba->host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301295
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301296 /* acquire the tag to make sure device cmds don't use it */
1297 if (test_and_set_bit_lock(tag, &hba->lrb_in_use)) {
1298 /*
1299 * Dev manage command in progress, requeue the command.
1300 * Requeuing the command helps in cases where the request *may*
1301 * find different tag instead of waiting for dev manage command
1302 * completion.
1303 */
1304 err = SCSI_MLQUEUE_HOST_BUSY;
1305 goto out;
1306 }
1307
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001308 err = ufshcd_hold(hba, true);
1309 if (err) {
1310 err = SCSI_MLQUEUE_HOST_BUSY;
1311 clear_bit_unlock(tag, &hba->lrb_in_use);
1312 goto out;
1313 }
1314 WARN_ON(hba->clk_gating.state != CLKS_ON);
1315
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301316 lrbp = &hba->lrb[tag];
1317
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301318 WARN_ON(lrbp->cmd);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301319 lrbp->cmd = cmd;
1320 lrbp->sense_bufflen = SCSI_SENSE_BUFFERSIZE;
1321 lrbp->sense_buffer = cmd->sense_buffer;
1322 lrbp->task_tag = tag;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001323 lrbp->lun = ufshcd_scsi_to_upiu_lun(cmd->device->lun);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301324 lrbp->intr_cmd = false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301325 lrbp->command_type = UTP_CMD_TYPE_SCSI;
1326
1327 /* form UPIU before issuing the command */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301328 ufshcd_compose_upiu(hba, lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301329 err = ufshcd_map_sg(lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301330 if (err) {
1331 lrbp->cmd = NULL;
1332 clear_bit_unlock(tag, &hba->lrb_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301333 goto out;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301334 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301335
1336 /* issue command to the controller */
1337 spin_lock_irqsave(hba->host->host_lock, flags);
1338 ufshcd_send_command(hba, tag);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05301339out_unlock:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301340 spin_unlock_irqrestore(hba->host->host_lock, flags);
1341out:
1342 return err;
1343}
1344
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301345static int ufshcd_compose_dev_cmd(struct ufs_hba *hba,
1346 struct ufshcd_lrb *lrbp, enum dev_cmd_type cmd_type, int tag)
1347{
1348 lrbp->cmd = NULL;
1349 lrbp->sense_bufflen = 0;
1350 lrbp->sense_buffer = NULL;
1351 lrbp->task_tag = tag;
1352 lrbp->lun = 0; /* device management cmd is not specific to any LUN */
1353 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
1354 lrbp->intr_cmd = true; /* No interrupt aggregation */
1355 hba->dev_cmd.type = cmd_type;
1356
1357 return ufshcd_compose_upiu(hba, lrbp);
1358}
1359
1360static int
1361ufshcd_clear_cmd(struct ufs_hba *hba, int tag)
1362{
1363 int err = 0;
1364 unsigned long flags;
1365 u32 mask = 1 << tag;
1366
1367 /* clear outstanding transaction before retry */
1368 spin_lock_irqsave(hba->host->host_lock, flags);
1369 ufshcd_utrl_clear(hba, tag);
1370 spin_unlock_irqrestore(hba->host->host_lock, flags);
1371
1372 /*
1373 * wait for for h/w to clear corresponding bit in door-bell.
1374 * max. wait is 1 sec.
1375 */
1376 err = ufshcd_wait_for_register(hba,
1377 REG_UTP_TRANSFER_REQ_DOOR_BELL,
1378 mask, ~mask, 1000, 1000);
1379
1380 return err;
1381}
1382
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001383static int
1384ufshcd_check_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1385{
1386 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
1387
1388 /* Get the UPIU response */
1389 query_res->response = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr) >>
1390 UPIU_RSP_CODE_OFFSET;
1391 return query_res->response;
1392}
1393
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301394/**
1395 * ufshcd_dev_cmd_completion() - handles device management command responses
1396 * @hba: per adapter instance
1397 * @lrbp: pointer to local reference block
1398 */
1399static int
1400ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
1401{
1402 int resp;
1403 int err = 0;
1404
1405 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
1406
1407 switch (resp) {
1408 case UPIU_TRANSACTION_NOP_IN:
1409 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
1410 err = -EINVAL;
1411 dev_err(hba->dev, "%s: unexpected response %x\n",
1412 __func__, resp);
1413 }
1414 break;
Dolev Raviv68078d52013-07-30 00:35:58 +05301415 case UPIU_TRANSACTION_QUERY_RSP:
Dolev Ravivc6d4a832014-06-29 09:40:18 +03001416 err = ufshcd_check_query_response(hba, lrbp);
1417 if (!err)
1418 err = ufshcd_copy_query_response(hba, lrbp);
Dolev Raviv68078d52013-07-30 00:35:58 +05301419 break;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301420 case UPIU_TRANSACTION_REJECT_UPIU:
1421 /* TODO: handle Reject UPIU Response */
1422 err = -EPERM;
1423 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
1424 __func__);
1425 break;
1426 default:
1427 err = -EINVAL;
1428 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
1429 __func__, resp);
1430 break;
1431 }
1432
1433 return err;
1434}
1435
1436static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
1437 struct ufshcd_lrb *lrbp, int max_timeout)
1438{
1439 int err = 0;
1440 unsigned long time_left;
1441 unsigned long flags;
1442
1443 time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
1444 msecs_to_jiffies(max_timeout));
1445
1446 spin_lock_irqsave(hba->host->host_lock, flags);
1447 hba->dev_cmd.complete = NULL;
1448 if (likely(time_left)) {
1449 err = ufshcd_get_tr_ocs(lrbp);
1450 if (!err)
1451 err = ufshcd_dev_cmd_completion(hba, lrbp);
1452 }
1453 spin_unlock_irqrestore(hba->host->host_lock, flags);
1454
1455 if (!time_left) {
1456 err = -ETIMEDOUT;
1457 if (!ufshcd_clear_cmd(hba, lrbp->task_tag))
1458 /* sucessfully cleared the command, retry if needed */
1459 err = -EAGAIN;
1460 }
1461
1462 return err;
1463}
1464
1465/**
1466 * ufshcd_get_dev_cmd_tag - Get device management command tag
1467 * @hba: per-adapter instance
1468 * @tag: pointer to variable with available slot value
1469 *
1470 * Get a free slot and lock it until device management command
1471 * completes.
1472 *
1473 * Returns false if free slot is unavailable for locking, else
1474 * return true with tag value in @tag.
1475 */
1476static bool ufshcd_get_dev_cmd_tag(struct ufs_hba *hba, int *tag_out)
1477{
1478 int tag;
1479 bool ret = false;
1480 unsigned long tmp;
1481
1482 if (!tag_out)
1483 goto out;
1484
1485 do {
1486 tmp = ~hba->lrb_in_use;
1487 tag = find_last_bit(&tmp, hba->nutrs);
1488 if (tag >= hba->nutrs)
1489 goto out;
1490 } while (test_and_set_bit_lock(tag, &hba->lrb_in_use));
1491
1492 *tag_out = tag;
1493 ret = true;
1494out:
1495 return ret;
1496}
1497
1498static inline void ufshcd_put_dev_cmd_tag(struct ufs_hba *hba, int tag)
1499{
1500 clear_bit_unlock(tag, &hba->lrb_in_use);
1501}
1502
1503/**
1504 * ufshcd_exec_dev_cmd - API for sending device management requests
1505 * @hba - UFS hba
1506 * @cmd_type - specifies the type (NOP, Query...)
1507 * @timeout - time in seconds
1508 *
Dolev Raviv68078d52013-07-30 00:35:58 +05301509 * NOTE: Since there is only one available tag for device management commands,
1510 * it is expected you hold the hba->dev_cmd.lock mutex.
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301511 */
1512static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
1513 enum dev_cmd_type cmd_type, int timeout)
1514{
1515 struct ufshcd_lrb *lrbp;
1516 int err;
1517 int tag;
1518 struct completion wait;
1519 unsigned long flags;
1520
1521 /*
1522 * Get free slot, sleep if slots are unavailable.
1523 * Even though we use wait_event() which sleeps indefinitely,
1524 * the maximum wait time is bounded by SCSI request timeout.
1525 */
1526 wait_event(hba->dev_cmd.tag_wq, ufshcd_get_dev_cmd_tag(hba, &tag));
1527
1528 init_completion(&wait);
1529 lrbp = &hba->lrb[tag];
1530 WARN_ON(lrbp->cmd);
1531 err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
1532 if (unlikely(err))
1533 goto out_put_tag;
1534
1535 hba->dev_cmd.complete = &wait;
1536
1537 spin_lock_irqsave(hba->host->host_lock, flags);
1538 ufshcd_send_command(hba, tag);
1539 spin_unlock_irqrestore(hba->host->host_lock, flags);
1540
1541 err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
1542
1543out_put_tag:
1544 ufshcd_put_dev_cmd_tag(hba, tag);
1545 wake_up(&hba->dev_cmd.tag_wq);
1546 return err;
1547}
1548
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301549/**
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001550 * ufshcd_init_query() - init the query response and request parameters
1551 * @hba: per-adapter instance
1552 * @request: address of the request pointer to be initialized
1553 * @response: address of the response pointer to be initialized
1554 * @opcode: operation to perform
1555 * @idn: flag idn to access
1556 * @index: LU number to access
1557 * @selector: query/flag/descriptor further identification
1558 */
1559static inline void ufshcd_init_query(struct ufs_hba *hba,
1560 struct ufs_query_req **request, struct ufs_query_res **response,
1561 enum query_opcode opcode, u8 idn, u8 index, u8 selector)
1562{
1563 *request = &hba->dev_cmd.query.request;
1564 *response = &hba->dev_cmd.query.response;
1565 memset(*request, 0, sizeof(struct ufs_query_req));
1566 memset(*response, 0, sizeof(struct ufs_query_res));
1567 (*request)->upiu_req.opcode = opcode;
1568 (*request)->upiu_req.idn = idn;
1569 (*request)->upiu_req.index = index;
1570 (*request)->upiu_req.selector = selector;
1571}
1572
1573/**
Dolev Raviv68078d52013-07-30 00:35:58 +05301574 * ufshcd_query_flag() - API function for sending flag query requests
1575 * hba: per-adapter instance
1576 * query_opcode: flag query to perform
1577 * idn: flag idn to access
1578 * flag_res: the flag value after the query request completes
1579 *
1580 * Returns 0 for success, non-zero in case of failure
1581 */
1582static int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
1583 enum flag_idn idn, bool *flag_res)
1584{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001585 struct ufs_query_req *request = NULL;
1586 struct ufs_query_res *response = NULL;
1587 int err, index = 0, selector = 0;
Dolev Raviv68078d52013-07-30 00:35:58 +05301588
1589 BUG_ON(!hba);
1590
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001591 ufshcd_hold(hba, false);
Dolev Raviv68078d52013-07-30 00:35:58 +05301592 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001593 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1594 selector);
Dolev Raviv68078d52013-07-30 00:35:58 +05301595
1596 switch (opcode) {
1597 case UPIU_QUERY_OPCODE_SET_FLAG:
1598 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
1599 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
1600 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1601 break;
1602 case UPIU_QUERY_OPCODE_READ_FLAG:
1603 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1604 if (!flag_res) {
1605 /* No dummy reads */
1606 dev_err(hba->dev, "%s: Invalid argument for read request\n",
1607 __func__);
1608 err = -EINVAL;
1609 goto out_unlock;
1610 }
1611 break;
1612 default:
1613 dev_err(hba->dev,
1614 "%s: Expected query flag opcode but got = %d\n",
1615 __func__, opcode);
1616 err = -EINVAL;
1617 goto out_unlock;
1618 }
Dolev Raviv68078d52013-07-30 00:35:58 +05301619
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001620 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
Dolev Raviv68078d52013-07-30 00:35:58 +05301621
1622 if (err) {
1623 dev_err(hba->dev,
1624 "%s: Sending flag query for idn %d failed, err = %d\n",
1625 __func__, idn, err);
1626 goto out_unlock;
1627 }
1628
1629 if (flag_res)
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301630 *flag_res = (be32_to_cpu(response->upiu_res.value) &
Dolev Raviv68078d52013-07-30 00:35:58 +05301631 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
1632
1633out_unlock:
1634 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001635 ufshcd_release(hba);
Dolev Raviv68078d52013-07-30 00:35:58 +05301636 return err;
1637}
1638
1639/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301640 * ufshcd_query_attr - API function for sending attribute requests
1641 * hba: per-adapter instance
1642 * opcode: attribute opcode
1643 * idn: attribute idn to access
1644 * index: index field
1645 * selector: selector field
1646 * attr_val: the attribute value after the query request completes
1647 *
1648 * Returns 0 for success, non-zero in case of failure
1649*/
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05301650static int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301651 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
1652{
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001653 struct ufs_query_req *request = NULL;
1654 struct ufs_query_res *response = NULL;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301655 int err;
1656
1657 BUG_ON(!hba);
1658
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001659 ufshcd_hold(hba, false);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301660 if (!attr_val) {
1661 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
1662 __func__, opcode);
1663 err = -EINVAL;
1664 goto out;
1665 }
1666
1667 mutex_lock(&hba->dev_cmd.lock);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001668 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1669 selector);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301670
1671 switch (opcode) {
1672 case UPIU_QUERY_OPCODE_WRITE_ATTR:
1673 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301674 request->upiu_req.value = cpu_to_be32(*attr_val);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301675 break;
1676 case UPIU_QUERY_OPCODE_READ_ATTR:
1677 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1678 break;
1679 default:
1680 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
1681 __func__, opcode);
1682 err = -EINVAL;
1683 goto out_unlock;
1684 }
1685
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001686 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301687
1688 if (err) {
1689 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1690 __func__, opcode, idn, err);
1691 goto out_unlock;
1692 }
1693
Sujit Reddy Thummae8c8e822014-05-26 10:59:10 +05301694 *attr_val = be32_to_cpu(response->upiu_res.value);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301695
1696out_unlock:
1697 mutex_unlock(&hba->dev_cmd.lock);
1698out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001699 ufshcd_release(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301700 return err;
1701}
1702
1703/**
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001704 * ufshcd_query_descriptor - API function for sending descriptor requests
1705 * hba: per-adapter instance
1706 * opcode: attribute opcode
1707 * idn: attribute idn to access
1708 * index: index field
1709 * selector: selector field
1710 * desc_buf: the buffer that contains the descriptor
1711 * buf_len: length parameter passed to the device
1712 *
1713 * Returns 0 for success, non-zero in case of failure.
1714 * The buf_len parameter will contain, on return, the length parameter
1715 * received on the response.
1716 */
Sujit Reddy Thumma7289f982014-07-23 09:31:11 +03001717static int ufshcd_query_descriptor(struct ufs_hba *hba,
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001718 enum query_opcode opcode, enum desc_idn idn, u8 index,
1719 u8 selector, u8 *desc_buf, int *buf_len)
1720{
1721 struct ufs_query_req *request = NULL;
1722 struct ufs_query_res *response = NULL;
1723 int err;
1724
1725 BUG_ON(!hba);
1726
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001727 ufshcd_hold(hba, false);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001728 if (!desc_buf) {
1729 dev_err(hba->dev, "%s: descriptor buffer required for opcode 0x%x\n",
1730 __func__, opcode);
1731 err = -EINVAL;
1732 goto out;
1733 }
1734
1735 if (*buf_len <= QUERY_DESC_MIN_SIZE || *buf_len > QUERY_DESC_MAX_SIZE) {
1736 dev_err(hba->dev, "%s: descriptor buffer size (%d) is out of range\n",
1737 __func__, *buf_len);
1738 err = -EINVAL;
1739 goto out;
1740 }
1741
1742 mutex_lock(&hba->dev_cmd.lock);
1743 ufshcd_init_query(hba, &request, &response, opcode, idn, index,
1744 selector);
1745 hba->dev_cmd.query.descriptor = desc_buf;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001746 request->upiu_req.length = cpu_to_be16(*buf_len);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001747
1748 switch (opcode) {
1749 case UPIU_QUERY_OPCODE_WRITE_DESC:
1750 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1751 break;
1752 case UPIU_QUERY_OPCODE_READ_DESC:
1753 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1754 break;
1755 default:
1756 dev_err(hba->dev,
1757 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
1758 __func__, opcode);
1759 err = -EINVAL;
1760 goto out_unlock;
1761 }
1762
1763 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY, QUERY_REQ_TIMEOUT);
1764
1765 if (err) {
1766 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1767 __func__, opcode, idn, err);
1768 goto out_unlock;
1769 }
1770
1771 hba->dev_cmd.query.descriptor = NULL;
Sujit Reddy Thummaea2aab22014-07-23 09:31:12 +03001772 *buf_len = be16_to_cpu(response->upiu_res.length);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001773
1774out_unlock:
1775 mutex_unlock(&hba->dev_cmd.lock);
1776out:
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03001777 ufshcd_release(hba);
Dolev Ravivd44a5f92014-06-29 09:40:17 +03001778 return err;
1779}
1780
1781/**
Subhash Jadavanida461ce2014-09-25 15:32:25 +03001782 * ufshcd_read_desc_param - read the specified descriptor parameter
1783 * @hba: Pointer to adapter instance
1784 * @desc_id: descriptor idn value
1785 * @desc_index: descriptor index
1786 * @param_offset: offset of the parameter to read
1787 * @param_read_buf: pointer to buffer where parameter would be read
1788 * @param_size: sizeof(param_read_buf)
1789 *
1790 * Return 0 in case of success, non-zero otherwise
1791 */
1792static int ufshcd_read_desc_param(struct ufs_hba *hba,
1793 enum desc_idn desc_id,
1794 int desc_index,
1795 u32 param_offset,
1796 u8 *param_read_buf,
1797 u32 param_size)
1798{
1799 int ret;
1800 u8 *desc_buf;
1801 u32 buff_len;
1802 bool is_kmalloc = true;
1803
1804 /* safety checks */
1805 if (desc_id >= QUERY_DESC_IDN_MAX)
1806 return -EINVAL;
1807
1808 buff_len = ufs_query_desc_max_size[desc_id];
1809 if ((param_offset + param_size) > buff_len)
1810 return -EINVAL;
1811
1812 if (!param_offset && (param_size == buff_len)) {
1813 /* memory space already available to hold full descriptor */
1814 desc_buf = param_read_buf;
1815 is_kmalloc = false;
1816 } else {
1817 /* allocate memory to hold full descriptor */
1818 desc_buf = kmalloc(buff_len, GFP_KERNEL);
1819 if (!desc_buf)
1820 return -ENOMEM;
1821 }
1822
1823 ret = ufshcd_query_descriptor(hba, UPIU_QUERY_OPCODE_READ_DESC,
1824 desc_id, desc_index, 0, desc_buf,
1825 &buff_len);
1826
1827 if (ret || (buff_len < ufs_query_desc_max_size[desc_id]) ||
1828 (desc_buf[QUERY_DESC_LENGTH_OFFSET] !=
1829 ufs_query_desc_max_size[desc_id])
1830 || (desc_buf[QUERY_DESC_DESC_TYPE_OFFSET] != desc_id)) {
1831 dev_err(hba->dev, "%s: Failed reading descriptor. desc_id %d param_offset %d buff_len %d ret %d",
1832 __func__, desc_id, param_offset, buff_len, ret);
1833 if (!ret)
1834 ret = -EINVAL;
1835
1836 goto out;
1837 }
1838
1839 if (is_kmalloc)
1840 memcpy(param_read_buf, &desc_buf[param_offset], param_size);
1841out:
1842 if (is_kmalloc)
1843 kfree(desc_buf);
1844 return ret;
1845}
1846
1847static inline int ufshcd_read_desc(struct ufs_hba *hba,
1848 enum desc_idn desc_id,
1849 int desc_index,
1850 u8 *buf,
1851 u32 size)
1852{
1853 return ufshcd_read_desc_param(hba, desc_id, desc_index, 0, buf, size);
1854}
1855
1856static inline int ufshcd_read_power_desc(struct ufs_hba *hba,
1857 u8 *buf,
1858 u32 size)
1859{
1860 return ufshcd_read_desc(hba, QUERY_DESC_IDN_POWER, 0, buf, size);
1861}
1862
1863/**
1864 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
1865 * @hba: Pointer to adapter instance
1866 * @lun: lun id
1867 * @param_offset: offset of the parameter to read
1868 * @param_read_buf: pointer to buffer where parameter would be read
1869 * @param_size: sizeof(param_read_buf)
1870 *
1871 * Return 0 in case of success, non-zero otherwise
1872 */
1873static inline int ufshcd_read_unit_desc_param(struct ufs_hba *hba,
1874 int lun,
1875 enum unit_desc_param param_offset,
1876 u8 *param_read_buf,
1877 u32 param_size)
1878{
1879 /*
1880 * Unit descriptors are only available for general purpose LUs (LUN id
1881 * from 0 to 7) and RPMB Well known LU.
1882 */
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03001883 if (lun != UFS_UPIU_RPMB_WLUN && (lun >= UFS_UPIU_MAX_GENERAL_LUN))
Subhash Jadavanida461ce2014-09-25 15:32:25 +03001884 return -EOPNOTSUPP;
1885
1886 return ufshcd_read_desc_param(hba, QUERY_DESC_IDN_UNIT, lun,
1887 param_offset, param_read_buf, param_size);
1888}
1889
1890/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301891 * ufshcd_memory_alloc - allocate memory for host memory space data structures
1892 * @hba: per adapter instance
1893 *
1894 * 1. Allocate DMA memory for Command Descriptor array
1895 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
1896 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
1897 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
1898 * (UTMRDL)
1899 * 4. Allocate memory for local reference block(lrb).
1900 *
1901 * Returns 0 for success, non-zero in case of failure
1902 */
1903static int ufshcd_memory_alloc(struct ufs_hba *hba)
1904{
1905 size_t utmrdl_size, utrdl_size, ucdl_size;
1906
1907 /* Allocate memory for UTP command descriptors */
1908 ucdl_size = (sizeof(struct utp_transfer_cmd_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09001909 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
1910 ucdl_size,
1911 &hba->ucdl_dma_addr,
1912 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301913
1914 /*
1915 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
1916 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
1917 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
1918 * be aligned to 128 bytes as well
1919 */
1920 if (!hba->ucdl_base_addr ||
1921 WARN_ON(hba->ucdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301922 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301923 "Command Descriptor Memory allocation failed\n");
1924 goto out;
1925 }
1926
1927 /*
1928 * Allocate memory for UTP Transfer descriptors
1929 * UFSHCI requires 1024 byte alignment of UTRD
1930 */
1931 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09001932 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
1933 utrdl_size,
1934 &hba->utrdl_dma_addr,
1935 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301936 if (!hba->utrdl_base_addr ||
1937 WARN_ON(hba->utrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301938 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301939 "Transfer Descriptor Memory allocation failed\n");
1940 goto out;
1941 }
1942
1943 /*
1944 * Allocate memory for UTP Task Management descriptors
1945 * UFSHCI requires 1024 byte alignment of UTMRD
1946 */
1947 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
Seungwon Jeon2953f852013-06-27 13:31:54 +09001948 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
1949 utmrdl_size,
1950 &hba->utmrdl_dma_addr,
1951 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301952 if (!hba->utmrdl_base_addr ||
1953 WARN_ON(hba->utmrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301954 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301955 "Task Management Descriptor Memory allocation failed\n");
1956 goto out;
1957 }
1958
1959 /* Allocate memory for local reference block */
Seungwon Jeon2953f852013-06-27 13:31:54 +09001960 hba->lrb = devm_kzalloc(hba->dev,
1961 hba->nutrs * sizeof(struct ufshcd_lrb),
1962 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301963 if (!hba->lrb) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301964 dev_err(hba->dev, "LRB Memory allocation failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301965 goto out;
1966 }
1967 return 0;
1968out:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301969 return -ENOMEM;
1970}
1971
1972/**
1973 * ufshcd_host_memory_configure - configure local reference block with
1974 * memory offsets
1975 * @hba: per adapter instance
1976 *
1977 * Configure Host memory space
1978 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
1979 * address.
1980 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
1981 * and PRDT offset.
1982 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
1983 * into local reference block.
1984 */
1985static void ufshcd_host_memory_configure(struct ufs_hba *hba)
1986{
1987 struct utp_transfer_cmd_desc *cmd_descp;
1988 struct utp_transfer_req_desc *utrdlp;
1989 dma_addr_t cmd_desc_dma_addr;
1990 dma_addr_t cmd_desc_element_addr;
1991 u16 response_offset;
1992 u16 prdt_offset;
1993 int cmd_desc_size;
1994 int i;
1995
1996 utrdlp = hba->utrdl_base_addr;
1997 cmd_descp = hba->ucdl_base_addr;
1998
1999 response_offset =
2000 offsetof(struct utp_transfer_cmd_desc, response_upiu);
2001 prdt_offset =
2002 offsetof(struct utp_transfer_cmd_desc, prd_table);
2003
2004 cmd_desc_size = sizeof(struct utp_transfer_cmd_desc);
2005 cmd_desc_dma_addr = hba->ucdl_dma_addr;
2006
2007 for (i = 0; i < hba->nutrs; i++) {
2008 /* Configure UTRD with command descriptor base address */
2009 cmd_desc_element_addr =
2010 (cmd_desc_dma_addr + (cmd_desc_size * i));
2011 utrdlp[i].command_desc_base_addr_lo =
2012 cpu_to_le32(lower_32_bits(cmd_desc_element_addr));
2013 utrdlp[i].command_desc_base_addr_hi =
2014 cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
2015
2016 /* Response upiu and prdt offset should be in double words */
2017 utrdlp[i].response_upiu_offset =
2018 cpu_to_le16((response_offset >> 2));
2019 utrdlp[i].prd_table_offset =
2020 cpu_to_le16((prdt_offset >> 2));
2021 utrdlp[i].response_upiu_length =
Sujit Reddy Thumma3ca316c2013-06-26 22:39:30 +05302022 cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302023
2024 hba->lrb[i].utr_descriptor_ptr = (utrdlp + i);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302025 hba->lrb[i].ucd_req_ptr =
2026 (struct utp_upiu_req *)(cmd_descp + i);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302027 hba->lrb[i].ucd_rsp_ptr =
2028 (struct utp_upiu_rsp *)cmd_descp[i].response_upiu;
2029 hba->lrb[i].ucd_prdt_ptr =
2030 (struct ufshcd_sg_entry *)cmd_descp[i].prd_table;
2031 }
2032}
2033
2034/**
2035 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
2036 * @hba: per adapter instance
2037 *
2038 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
2039 * in order to initialize the Unipro link startup procedure.
2040 * Once the Unipro links are up, the device connected to the controller
2041 * is detected.
2042 *
2043 * Returns 0 on success, non-zero value on failure
2044 */
2045static int ufshcd_dme_link_startup(struct ufs_hba *hba)
2046{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302047 struct uic_command uic_cmd = {0};
2048 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302049
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302050 uic_cmd.command = UIC_CMD_DME_LINK_STARTUP;
2051
2052 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2053 if (ret)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302054 dev_err(hba->dev,
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302055 "dme-link-startup: error code %d\n", ret);
2056 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302057}
2058
2059/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302060 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
2061 * @hba: per adapter instance
2062 * @attr_sel: uic command argument1
2063 * @attr_set: attribute set type as uic command argument2
2064 * @mib_val: setting value as uic command argument3
2065 * @peer: indicate whether peer or local
2066 *
2067 * Returns 0 on success, non-zero value on failure
2068 */
2069int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
2070 u8 attr_set, u32 mib_val, u8 peer)
2071{
2072 struct uic_command uic_cmd = {0};
2073 static const char *const action[] = {
2074 "dme-set",
2075 "dme-peer-set"
2076 };
2077 const char *set = action[!!peer];
2078 int ret;
2079
2080 uic_cmd.command = peer ?
2081 UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET;
2082 uic_cmd.argument1 = attr_sel;
2083 uic_cmd.argument2 = UIC_ARG_ATTR_TYPE(attr_set);
2084 uic_cmd.argument3 = mib_val;
2085
2086 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2087 if (ret)
2088 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
2089 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
2090
2091 return ret;
2092}
2093EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
2094
2095/**
2096 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
2097 * @hba: per adapter instance
2098 * @attr_sel: uic command argument1
2099 * @mib_val: the value of the attribute as returned by the UIC command
2100 * @peer: indicate whether peer or local
2101 *
2102 * Returns 0 on success, non-zero value on failure
2103 */
2104int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
2105 u32 *mib_val, u8 peer)
2106{
2107 struct uic_command uic_cmd = {0};
2108 static const char *const action[] = {
2109 "dme-get",
2110 "dme-peer-get"
2111 };
2112 const char *get = action[!!peer];
2113 int ret;
2114
2115 uic_cmd.command = peer ?
2116 UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET;
2117 uic_cmd.argument1 = attr_sel;
2118
2119 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
2120 if (ret) {
2121 dev_err(hba->dev, "%s: attr-id 0x%x error code %d\n",
2122 get, UIC_GET_ATTR_ID(attr_sel), ret);
2123 goto out;
2124 }
2125
2126 if (mib_val)
2127 *mib_val = uic_cmd.argument3;
2128out:
2129 return ret;
2130}
2131EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
2132
2133/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002134 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
2135 * state) and waits for it to take effect.
2136 *
2137 * @hba: per adapter instance
2138 * @cmd: UIC command to execute
2139 *
2140 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
2141 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
2142 * and device UniPro link and hence it's final completion would be indicated by
2143 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
2144 * addition to normal UIC command completion Status (UCCS). This function only
2145 * returns after the relevant status bits indicate the completion.
2146 *
2147 * Returns 0 on success, non-zero value on failure
2148 */
2149static int ufshcd_uic_pwr_ctrl(struct ufs_hba *hba, struct uic_command *cmd)
2150{
2151 struct completion uic_async_done;
2152 unsigned long flags;
2153 u8 status;
2154 int ret;
2155
2156 mutex_lock(&hba->uic_cmd_mutex);
2157 init_completion(&uic_async_done);
2158
2159 spin_lock_irqsave(hba->host->host_lock, flags);
2160 hba->uic_async_done = &uic_async_done;
2161 ret = __ufshcd_send_uic_cmd(hba, cmd);
2162 spin_unlock_irqrestore(hba->host->host_lock, flags);
2163 if (ret) {
2164 dev_err(hba->dev,
2165 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
2166 cmd->command, cmd->argument3, ret);
2167 goto out;
2168 }
2169 ret = ufshcd_wait_for_uic_cmd(hba, cmd);
2170 if (ret) {
2171 dev_err(hba->dev,
2172 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
2173 cmd->command, cmd->argument3, ret);
2174 goto out;
2175 }
2176
2177 if (!wait_for_completion_timeout(hba->uic_async_done,
2178 msecs_to_jiffies(UIC_CMD_TIMEOUT))) {
2179 dev_err(hba->dev,
2180 "pwr ctrl cmd 0x%x with mode 0x%x completion timeout\n",
2181 cmd->command, cmd->argument3);
2182 ret = -ETIMEDOUT;
2183 goto out;
2184 }
2185
2186 status = ufshcd_get_upmcrs(hba);
2187 if (status != PWR_LOCAL) {
2188 dev_err(hba->dev,
2189 "pwr ctrl cmd 0x%0x failed, host umpcrs:0x%x\n",
2190 cmd->command, status);
2191 ret = (status != PWR_OK) ? status : -1;
2192 }
2193out:
2194 spin_lock_irqsave(hba->host->host_lock, flags);
2195 hba->uic_async_done = NULL;
2196 spin_unlock_irqrestore(hba->host->host_lock, flags);
2197 mutex_unlock(&hba->uic_cmd_mutex);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002198
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002199 return ret;
2200}
2201
2202/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302203 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
2204 * using DME_SET primitives.
2205 * @hba: per adapter instance
2206 * @mode: powr mode value
2207 *
2208 * Returns 0 on success, non-zero value on failure
2209 */
Sujit Reddy Thummabdbe5d22014-05-26 10:59:11 +05302210static int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302211{
2212 struct uic_command uic_cmd = {0};
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002213 int ret;
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302214
2215 uic_cmd.command = UIC_CMD_DME_SET;
2216 uic_cmd.argument1 = UIC_ARG_MIB(PA_PWRMODE);
2217 uic_cmd.argument3 = mode;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002218 ufshcd_hold(hba, false);
2219 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
2220 ufshcd_release(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302221
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002222 return ret;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002223}
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302224
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002225static int ufshcd_uic_hibern8_enter(struct ufs_hba *hba)
2226{
2227 struct uic_command uic_cmd = {0};
2228
2229 uic_cmd.command = UIC_CMD_DME_HIBER_ENTER;
2230
2231 return ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
2232}
2233
2234static int ufshcd_uic_hibern8_exit(struct ufs_hba *hba)
2235{
2236 struct uic_command uic_cmd = {0};
2237 int ret;
2238
2239 uic_cmd.command = UIC_CMD_DME_HIBER_EXIT;
2240 ret = ufshcd_uic_pwr_ctrl(hba, &uic_cmd);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302241 if (ret) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002242 ufshcd_set_link_off(hba);
2243 ret = ufshcd_host_reset_and_restore(hba);
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302244 }
2245
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302246 return ret;
2247}
2248
2249/**
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002250 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
2251 * @hba: per-adapter instance
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302252 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002253static int ufshcd_get_max_pwr_mode(struct ufs_hba *hba)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302254{
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002255 struct ufs_pa_layer_attr *pwr_info = &hba->max_pwr_info.info;
2256
2257 if (hba->max_pwr_info.is_valid)
2258 return 0;
2259
2260 pwr_info->pwr_tx = FASTAUTO_MODE;
2261 pwr_info->pwr_rx = FASTAUTO_MODE;
2262 pwr_info->hs_rate = PA_HS_MODE_B;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302263
2264 /* Get the connected lane count */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002265 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES),
2266 &pwr_info->lane_rx);
2267 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES),
2268 &pwr_info->lane_tx);
2269
2270 if (!pwr_info->lane_rx || !pwr_info->lane_tx) {
2271 dev_err(hba->dev, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
2272 __func__,
2273 pwr_info->lane_rx,
2274 pwr_info->lane_tx);
2275 return -EINVAL;
2276 }
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302277
2278 /*
2279 * First, get the maximum gears of HS speed.
2280 * If a zero value, it means there is no HSGEAR capability.
2281 * Then, get the maximum gears of PWM speed.
2282 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002283 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &pwr_info->gear_rx);
2284 if (!pwr_info->gear_rx) {
2285 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
2286 &pwr_info->gear_rx);
2287 if (!pwr_info->gear_rx) {
2288 dev_err(hba->dev, "%s: invalid max pwm rx gear read = %d\n",
2289 __func__, pwr_info->gear_rx);
2290 return -EINVAL;
2291 }
2292 pwr_info->pwr_rx = SLOWAUTO_MODE;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302293 }
2294
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002295 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR),
2296 &pwr_info->gear_tx);
2297 if (!pwr_info->gear_tx) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302298 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002299 &pwr_info->gear_tx);
2300 if (!pwr_info->gear_tx) {
2301 dev_err(hba->dev, "%s: invalid max pwm tx gear read = %d\n",
2302 __func__, pwr_info->gear_tx);
2303 return -EINVAL;
2304 }
2305 pwr_info->pwr_tx = SLOWAUTO_MODE;
2306 }
2307
2308 hba->max_pwr_info.is_valid = true;
2309 return 0;
2310}
2311
2312static int ufshcd_change_power_mode(struct ufs_hba *hba,
2313 struct ufs_pa_layer_attr *pwr_mode)
2314{
2315 int ret;
2316
2317 /* if already configured to the requested pwr_mode */
2318 if (pwr_mode->gear_rx == hba->pwr_info.gear_rx &&
2319 pwr_mode->gear_tx == hba->pwr_info.gear_tx &&
2320 pwr_mode->lane_rx == hba->pwr_info.lane_rx &&
2321 pwr_mode->lane_tx == hba->pwr_info.lane_tx &&
2322 pwr_mode->pwr_rx == hba->pwr_info.pwr_rx &&
2323 pwr_mode->pwr_tx == hba->pwr_info.pwr_tx &&
2324 pwr_mode->hs_rate == hba->pwr_info.hs_rate) {
2325 dev_dbg(hba->dev, "%s: power already configured\n", __func__);
2326 return 0;
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302327 }
2328
2329 /*
2330 * Configure attributes for power mode change with below.
2331 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
2332 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
2333 * - PA_HSSERIES
2334 */
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002335 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), pwr_mode->gear_rx);
2336 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES),
2337 pwr_mode->lane_rx);
2338 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
2339 pwr_mode->pwr_rx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302340 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002341 else
2342 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302343
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002344 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), pwr_mode->gear_tx);
2345 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES),
2346 pwr_mode->lane_tx);
2347 if (pwr_mode->pwr_tx == FASTAUTO_MODE ||
2348 pwr_mode->pwr_tx == FAST_MODE)
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302349 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), TRUE);
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002350 else
2351 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), FALSE);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302352
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002353 if (pwr_mode->pwr_rx == FASTAUTO_MODE ||
2354 pwr_mode->pwr_tx == FASTAUTO_MODE ||
2355 pwr_mode->pwr_rx == FAST_MODE ||
2356 pwr_mode->pwr_tx == FAST_MODE)
2357 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES),
2358 pwr_mode->hs_rate);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302359
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002360 ret = ufshcd_uic_change_pwr_mode(hba, pwr_mode->pwr_rx << 4
2361 | pwr_mode->pwr_tx);
2362
2363 if (ret) {
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302364 dev_err(hba->dev,
Dolev Raviv7eb584d2014-09-25 15:32:31 +03002365 "%s: power mode change failed %d\n", __func__, ret);
2366 } else {
2367 if (hba->vops && hba->vops->pwr_change_notify)
2368 hba->vops->pwr_change_notify(hba,
2369 POST_CHANGE, NULL, pwr_mode);
2370
2371 memcpy(&hba->pwr_info, pwr_mode,
2372 sizeof(struct ufs_pa_layer_attr));
2373 }
2374
2375 return ret;
2376}
2377
2378/**
2379 * ufshcd_config_pwr_mode - configure a new power mode
2380 * @hba: per-adapter instance
2381 * @desired_pwr_mode: desired power configuration
2382 */
2383static int ufshcd_config_pwr_mode(struct ufs_hba *hba,
2384 struct ufs_pa_layer_attr *desired_pwr_mode)
2385{
2386 struct ufs_pa_layer_attr final_params = { 0 };
2387 int ret;
2388
2389 if (hba->vops && hba->vops->pwr_change_notify)
2390 hba->vops->pwr_change_notify(hba,
2391 PRE_CHANGE, desired_pwr_mode, &final_params);
2392 else
2393 memcpy(&final_params, desired_pwr_mode, sizeof(final_params));
2394
2395 ret = ufshcd_change_power_mode(hba, &final_params);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302396
2397 return ret;
2398}
2399
2400/**
Dolev Raviv68078d52013-07-30 00:35:58 +05302401 * ufshcd_complete_dev_init() - checks device readiness
2402 * hba: per-adapter instance
2403 *
2404 * Set fDeviceInit flag and poll until device toggles it.
2405 */
2406static int ufshcd_complete_dev_init(struct ufs_hba *hba)
2407{
2408 int i, retries, err = 0;
2409 bool flag_res = 1;
2410
2411 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
2412 /* Set the fDeviceInit flag */
2413 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_SET_FLAG,
2414 QUERY_FLAG_IDN_FDEVICEINIT, NULL);
2415 if (!err || err == -ETIMEDOUT)
2416 break;
2417 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
2418 }
2419 if (err) {
2420 dev_err(hba->dev,
2421 "%s setting fDeviceInit flag failed with error %d\n",
2422 __func__, err);
2423 goto out;
2424 }
2425
2426 /* poll for max. 100 iterations for fDeviceInit flag to clear */
2427 for (i = 0; i < 100 && !err && flag_res; i++) {
2428 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
2429 err = ufshcd_query_flag(hba,
2430 UPIU_QUERY_OPCODE_READ_FLAG,
2431 QUERY_FLAG_IDN_FDEVICEINIT, &flag_res);
2432 if (!err || err == -ETIMEDOUT)
2433 break;
2434 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__,
2435 err);
2436 }
2437 }
2438 if (err)
2439 dev_err(hba->dev,
2440 "%s reading fDeviceInit flag failed with error %d\n",
2441 __func__, err);
2442 else if (flag_res)
2443 dev_err(hba->dev,
2444 "%s fDeviceInit was not cleared by the device\n",
2445 __func__);
2446
2447out:
2448 return err;
2449}
2450
2451/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302452 * ufshcd_make_hba_operational - Make UFS controller operational
2453 * @hba: per adapter instance
2454 *
2455 * To bring UFS host controller to operational state,
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002456 * 1. Enable required interrupts
2457 * 2. Configure interrupt aggregation
2458 * 3. Program UTRL and UTMRL base addres
2459 * 4. Configure run-stop-registers
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302460 *
2461 * Returns 0 on success, non-zero value on failure
2462 */
2463static int ufshcd_make_hba_operational(struct ufs_hba *hba)
2464{
2465 int err = 0;
2466 u32 reg;
2467
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302468 /* Enable required interrupts */
2469 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
2470
2471 /* Configure interrupt aggregation */
Seungwon Jeon7d568652013-08-31 21:40:20 +05302472 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302473
2474 /* Configure UTRL and UTMRL base address registers */
2475 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
2476 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
2477 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
2478 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
2479 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
2480 REG_UTP_TASK_REQ_LIST_BASE_L);
2481 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
2482 REG_UTP_TASK_REQ_LIST_BASE_H);
2483
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302484 /*
2485 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
2486 * DEI, HEI bits must be 0
2487 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002488 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302489 if (!(ufshcd_get_lists_status(reg))) {
2490 ufshcd_enable_run_stop_reg(hba);
2491 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302492 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302493 "Host controller not ready to process requests");
2494 err = -EIO;
2495 goto out;
2496 }
2497
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302498out:
2499 return err;
2500}
2501
2502/**
2503 * ufshcd_hba_enable - initialize the controller
2504 * @hba: per adapter instance
2505 *
2506 * The controller resets itself and controller firmware initialization
2507 * sequence kicks off. When controller is ready it will set
2508 * the Host Controller Enable bit to 1.
2509 *
2510 * Returns 0 on success, non-zero value on failure
2511 */
2512static int ufshcd_hba_enable(struct ufs_hba *hba)
2513{
2514 int retry;
2515
2516 /*
2517 * msleep of 1 and 5 used in this function might result in msleep(20),
2518 * but it was necessary to send the UFS FPGA to reset mode during
2519 * development and testing of this driver. msleep can be changed to
2520 * mdelay and retry count can be reduced based on the controller.
2521 */
2522 if (!ufshcd_is_hba_active(hba)) {
2523
2524 /* change controller state to "reset state" */
2525 ufshcd_hba_stop(hba);
2526
2527 /*
2528 * This delay is based on the testing done with UFS host
2529 * controller FPGA. The delay can be changed based on the
2530 * host controller used.
2531 */
2532 msleep(5);
2533 }
2534
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002535 /* UniPro link is disabled at this point */
2536 ufshcd_set_link_off(hba);
2537
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002538 if (hba->vops && hba->vops->hce_enable_notify)
2539 hba->vops->hce_enable_notify(hba, PRE_CHANGE);
2540
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302541 /* start controller initialization sequence */
2542 ufshcd_hba_start(hba);
2543
2544 /*
2545 * To initialize a UFS host controller HCE bit must be set to 1.
2546 * During initialization the HCE bit value changes from 1->0->1.
2547 * When the host controller completes initialization sequence
2548 * it sets the value of HCE bit to 1. The same HCE bit is read back
2549 * to check if the controller has completed initialization sequence.
2550 * So without this delay the value HCE = 1, set in the previous
2551 * instruction might be read back.
2552 * This delay can be changed based on the controller.
2553 */
2554 msleep(1);
2555
2556 /* wait for the host controller to complete initialization */
2557 retry = 10;
2558 while (ufshcd_is_hba_active(hba)) {
2559 if (retry) {
2560 retry--;
2561 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302562 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302563 "Controller enable failed\n");
2564 return -EIO;
2565 }
2566 msleep(5);
2567 }
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002568
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002569 /* enable UIC related interrupts */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002570 ufshcd_enable_intr(hba, UFSHCD_UIC_MASK);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002571
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002572 if (hba->vops && hba->vops->hce_enable_notify)
2573 hba->vops->hce_enable_notify(hba, POST_CHANGE);
2574
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302575 return 0;
2576}
2577
2578/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302579 * ufshcd_link_startup - Initialize unipro link startup
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302580 * @hba: per adapter instance
2581 *
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302582 * Returns 0 for success, non-zero in case of failure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302583 */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302584static int ufshcd_link_startup(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302585{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302586 int ret;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002587 int retries = DME_LINKSTARTUP_RETRIES;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302588
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002589 do {
2590 if (hba->vops && hba->vops->link_startup_notify)
2591 hba->vops->link_startup_notify(hba, PRE_CHANGE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302592
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002593 ret = ufshcd_dme_link_startup(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002594
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002595 /* check if device is detected by inter-connect layer */
2596 if (!ret && !ufshcd_is_device_present(hba)) {
2597 dev_err(hba->dev, "%s: Device not present\n", __func__);
2598 ret = -ENXIO;
2599 goto out;
2600 }
2601
2602 /*
2603 * DME link lost indication is only received when link is up,
2604 * but we can't be sure if the link is up until link startup
2605 * succeeds. So reset the local Uni-Pro and try again.
2606 */
2607 if (ret && ufshcd_hba_enable(hba))
2608 goto out;
2609 } while (ret && retries--);
2610
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302611 if (ret)
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03002612 /* failed to get the link up... retire */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302613 goto out;
2614
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03002615 /* Include any host controller configuration via UIC commands */
2616 if (hba->vops && hba->vops->link_startup_notify) {
2617 ret = hba->vops->link_startup_notify(hba, POST_CHANGE);
2618 if (ret)
2619 goto out;
2620 }
2621
2622 ret = ufshcd_make_hba_operational(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302623out:
2624 if (ret)
2625 dev_err(hba->dev, "link startup failed %d\n", ret);
2626 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302627}
2628
2629/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302630 * ufshcd_verify_dev_init() - Verify device initialization
2631 * @hba: per-adapter instance
2632 *
2633 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
2634 * device Transport Protocol (UTP) layer is ready after a reset.
2635 * If the UTP layer at the device side is not initialized, it may
2636 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
2637 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
2638 */
2639static int ufshcd_verify_dev_init(struct ufs_hba *hba)
2640{
2641 int err = 0;
2642 int retries;
2643
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002644 ufshcd_hold(hba, false);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302645 mutex_lock(&hba->dev_cmd.lock);
2646 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
2647 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
2648 NOP_OUT_TIMEOUT);
2649
2650 if (!err || err == -ETIMEDOUT)
2651 break;
2652
2653 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
2654 }
2655 mutex_unlock(&hba->dev_cmd.lock);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03002656 ufshcd_release(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302657
2658 if (err)
2659 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
2660 return err;
2661}
2662
2663/**
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002664 * ufshcd_set_queue_depth - set lun queue depth
2665 * @sdev: pointer to SCSI device
2666 *
2667 * Read bLUQueueDepth value and activate scsi tagged command
2668 * queueing. For WLUN, queue depth is set to 1. For best-effort
2669 * cases (bLUQueueDepth = 0) the queue depth is set to a maximum
2670 * value that host can queue.
2671 */
2672static void ufshcd_set_queue_depth(struct scsi_device *sdev)
2673{
2674 int ret = 0;
2675 u8 lun_qdepth;
2676 struct ufs_hba *hba;
2677
2678 hba = shost_priv(sdev->host);
2679
2680 lun_qdepth = hba->nutrs;
2681 ret = ufshcd_read_unit_desc_param(hba,
2682 ufshcd_scsi_to_upiu_lun(sdev->lun),
2683 UNIT_DESC_PARAM_LU_Q_DEPTH,
2684 &lun_qdepth,
2685 sizeof(lun_qdepth));
2686
2687 /* Some WLUN doesn't support unit descriptor */
2688 if (ret == -EOPNOTSUPP)
2689 lun_qdepth = 1;
2690 else if (!lun_qdepth)
2691 /* eventually, we can figure out the real queue depth */
2692 lun_qdepth = hba->nutrs;
2693 else
2694 lun_qdepth = min_t(int, lun_qdepth, hba->nutrs);
2695
2696 dev_dbg(hba->dev, "%s: activate tcq with queue depth %d\n",
2697 __func__, lun_qdepth);
Christoph Hellwigee115602014-11-03 20:40:56 +01002698 scsi_adjust_queue_depth(sdev, lun_qdepth);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002699}
2700
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002701/*
2702 * ufshcd_get_lu_wp - returns the "b_lu_write_protect" from UNIT DESCRIPTOR
2703 * @hba: per-adapter instance
2704 * @lun: UFS device lun id
2705 * @b_lu_write_protect: pointer to buffer to hold the LU's write protect info
2706 *
2707 * Returns 0 in case of success and b_lu_write_protect status would be returned
2708 * @b_lu_write_protect parameter.
2709 * Returns -ENOTSUPP if reading b_lu_write_protect is not supported.
2710 * Returns -EINVAL in case of invalid parameters passed to this function.
2711 */
2712static int ufshcd_get_lu_wp(struct ufs_hba *hba,
2713 u8 lun,
2714 u8 *b_lu_write_protect)
2715{
2716 int ret;
2717
2718 if (!b_lu_write_protect)
2719 ret = -EINVAL;
2720 /*
2721 * According to UFS device spec, RPMB LU can't be write
2722 * protected so skip reading bLUWriteProtect parameter for
2723 * it. For other W-LUs, UNIT DESCRIPTOR is not available.
2724 */
2725 else if (lun >= UFS_UPIU_MAX_GENERAL_LUN)
2726 ret = -ENOTSUPP;
2727 else
2728 ret = ufshcd_read_unit_desc_param(hba,
2729 lun,
2730 UNIT_DESC_PARAM_LU_WR_PROTECT,
2731 b_lu_write_protect,
2732 sizeof(*b_lu_write_protect));
2733 return ret;
2734}
2735
2736/**
2737 * ufshcd_get_lu_power_on_wp_status - get LU's power on write protect
2738 * status
2739 * @hba: per-adapter instance
2740 * @sdev: pointer to SCSI device
2741 *
2742 */
2743static inline void ufshcd_get_lu_power_on_wp_status(struct ufs_hba *hba,
2744 struct scsi_device *sdev)
2745{
2746 if (hba->dev_info.f_power_on_wp_en &&
2747 !hba->dev_info.is_lu_power_on_wp) {
2748 u8 b_lu_write_protect;
2749
2750 if (!ufshcd_get_lu_wp(hba, ufshcd_scsi_to_upiu_lun(sdev->lun),
2751 &b_lu_write_protect) &&
2752 (b_lu_write_protect == UFS_LU_POWER_ON_WP))
2753 hba->dev_info.is_lu_power_on_wp = true;
2754 }
2755}
2756
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002757/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302758 * ufshcd_slave_alloc - handle initial SCSI device configurations
2759 * @sdev: pointer to SCSI device
2760 *
2761 * Returns success
2762 */
2763static int ufshcd_slave_alloc(struct scsi_device *sdev)
2764{
2765 struct ufs_hba *hba;
2766
2767 hba = shost_priv(sdev->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302768
2769 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
2770 sdev->use_10_for_ms = 1;
2771 scsi_set_tag_type(sdev, MSG_SIMPLE_TAG);
2772
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05302773 /* allow SCSI layer to restart the device in case of errors */
2774 sdev->allow_restart = 1;
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002775
Sujit Reddy Thummab2a6c522014-07-01 12:22:38 +03002776 /* REPORT SUPPORTED OPERATION CODES is not supported */
2777 sdev->no_report_opcodes = 1;
2778
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002779
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002780 ufshcd_set_queue_depth(sdev);
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002781
Subhash Jadavani57d104c2014-09-25 15:32:30 +03002782 ufshcd_get_lu_power_on_wp_status(hba, sdev);
2783
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002784 return 0;
2785}
2786
2787/**
2788 * ufshcd_change_queue_depth - change queue depth
2789 * @sdev: pointer to SCSI device
2790 * @depth: required depth to set
2791 * @reason: reason for changing the depth
2792 *
2793 * Change queue depth according to the reason and make sure
2794 * the max. limits are not crossed.
2795 */
Sujit Reddy Thumma7289f982014-07-23 09:31:11 +03002796static int ufshcd_change_queue_depth(struct scsi_device *sdev,
2797 int depth, int reason)
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002798{
2799 struct ufs_hba *hba = shost_priv(sdev->host);
2800
2801 if (depth > hba->nutrs)
2802 depth = hba->nutrs;
2803
2804 switch (reason) {
2805 case SCSI_QDEPTH_DEFAULT:
2806 case SCSI_QDEPTH_RAMP_UP:
Christoph Hellwigc8b09f62014-11-03 20:15:14 +01002807 scsi_adjust_queue_depth(sdev, depth);
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002808 break;
2809 case SCSI_QDEPTH_QFULL:
2810 scsi_track_queue_full(sdev, depth);
2811 break;
2812 default:
2813 return -EOPNOTSUPP;
Dolev Raviv1b3e8952014-06-29 09:40:19 +03002814 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05302815
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03002816 return depth;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302817}
2818
2819/**
Akinobu Mitaeeda4742014-07-01 23:00:32 +09002820 * ufshcd_slave_configure - adjust SCSI device configurations
2821 * @sdev: pointer to SCSI device
2822 */
2823static int ufshcd_slave_configure(struct scsi_device *sdev)
2824{
2825 struct request_queue *q = sdev->request_queue;
2826
2827 blk_queue_update_dma_pad(q, PRDT_DATA_BYTE_COUNT_PAD - 1);
2828 blk_queue_max_segment_size(q, PRDT_DATA_BYTE_COUNT_MAX);
2829
2830 return 0;
2831}
2832
2833/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302834 * ufshcd_slave_destroy - remove SCSI device configurations
2835 * @sdev: pointer to SCSI device
2836 */
2837static void ufshcd_slave_destroy(struct scsi_device *sdev)
2838{
2839 struct ufs_hba *hba;
2840
2841 hba = shost_priv(sdev->host);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03002842 /* Drop the reference as it won't be needed anymore */
2843 if (ufshcd_scsi_to_upiu_lun(sdev->lun) == UFS_UPIU_UFS_DEVICE_WLUN)
2844 hba->sdev_ufs_device = NULL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302845}
2846
2847/**
2848 * ufshcd_task_req_compl - handle task management request completion
2849 * @hba: per adapter instance
2850 * @index: index of the completed request
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302851 * @resp: task management service response
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302852 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302853 * Returns non-zero value on error, zero on success
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302854 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302855static int ufshcd_task_req_compl(struct ufs_hba *hba, u32 index, u8 *resp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302856{
2857 struct utp_task_req_desc *task_req_descp;
2858 struct utp_upiu_task_rsp *task_rsp_upiup;
2859 unsigned long flags;
2860 int ocs_value;
2861 int task_result;
2862
2863 spin_lock_irqsave(hba->host->host_lock, flags);
2864
2865 /* Clear completed tasks from outstanding_tasks */
2866 __clear_bit(index, &hba->outstanding_tasks);
2867
2868 task_req_descp = hba->utmrdl_base_addr;
2869 ocs_value = ufshcd_get_tmr_ocs(&task_req_descp[index]);
2870
2871 if (ocs_value == OCS_SUCCESS) {
2872 task_rsp_upiup = (struct utp_upiu_task_rsp *)
2873 task_req_descp[index].task_rsp_upiu;
2874 task_result = be32_to_cpu(task_rsp_upiup->header.dword_1);
2875 task_result = ((task_result & MASK_TASK_RESPONSE) >> 8);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302876 if (resp)
2877 *resp = (u8)task_result;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302878 } else {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302879 dev_err(hba->dev, "%s: failed, ocs = 0x%x\n",
2880 __func__, ocs_value);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302881 }
2882 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05302883
2884 return ocs_value;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302885}
2886
2887/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302888 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
2889 * @lrb: pointer to local reference block of completed command
2890 * @scsi_status: SCSI command status
2891 *
2892 * Returns value base on SCSI command status
2893 */
2894static inline int
2895ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
2896{
2897 int result = 0;
2898
2899 switch (scsi_status) {
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302900 case SAM_STAT_CHECK_CONDITION:
2901 ufshcd_copy_sense_data(lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302902 case SAM_STAT_GOOD:
2903 result |= DID_OK << 16 |
2904 COMMAND_COMPLETE << 8 |
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302905 scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302906 break;
2907 case SAM_STAT_TASK_SET_FULL:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302908 case SAM_STAT_BUSY:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302909 case SAM_STAT_TASK_ABORTED:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302910 ufshcd_copy_sense_data(lrbp);
2911 result |= scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302912 break;
2913 default:
2914 result |= DID_ERROR << 16;
2915 break;
2916 } /* end of switch */
2917
2918 return result;
2919}
2920
2921/**
2922 * ufshcd_transfer_rsp_status - Get overall status of the response
2923 * @hba: per adapter instance
2924 * @lrb: pointer to local reference block of completed command
2925 *
2926 * Returns result of the command to notify SCSI midlayer
2927 */
2928static inline int
2929ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2930{
2931 int result = 0;
2932 int scsi_status;
2933 int ocs;
2934
2935 /* overall command status of utrd */
2936 ocs = ufshcd_get_tr_ocs(lrbp);
2937
2938 switch (ocs) {
2939 case OCS_SUCCESS:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302940 result = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302941
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302942 switch (result) {
2943 case UPIU_TRANSACTION_RESPONSE:
2944 /*
2945 * get the response UPIU result to extract
2946 * the SCSI command status
2947 */
2948 result = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr);
2949
2950 /*
2951 * get the result based on SCSI status response
2952 * to notify the SCSI midlayer of the command status
2953 */
2954 scsi_status = result & MASK_SCSI_STATUS;
2955 result = ufshcd_scsi_cmd_status(lrbp, scsi_status);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302956
2957 if (ufshcd_is_exception_event(lrbp->ucd_rsp_ptr))
2958 schedule_work(&hba->eeh_work);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302959 break;
2960 case UPIU_TRANSACTION_REJECT_UPIU:
2961 /* TODO: handle Reject UPIU Response */
2962 result = DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302963 dev_err(hba->dev,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302964 "Reject UPIU not fully implemented\n");
2965 break;
2966 default:
2967 result = DID_ERROR << 16;
2968 dev_err(hba->dev,
2969 "Unexpected request response code = %x\n",
2970 result);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302971 break;
2972 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302973 break;
2974 case OCS_ABORTED:
2975 result |= DID_ABORT << 16;
2976 break;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05302977 case OCS_INVALID_COMMAND_STATUS:
2978 result |= DID_REQUEUE << 16;
2979 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302980 case OCS_INVALID_CMD_TABLE_ATTR:
2981 case OCS_INVALID_PRDT_ATTR:
2982 case OCS_MISMATCH_DATA_BUF_SIZE:
2983 case OCS_MISMATCH_RESP_UPIU_SIZE:
2984 case OCS_PEER_COMM_FAILURE:
2985 case OCS_FATAL_ERROR:
2986 default:
2987 result |= DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302988 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302989 "OCS error from controller = %x\n", ocs);
2990 break;
2991 } /* end of switch */
2992
2993 return result;
2994}
2995
2996/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302997 * ufshcd_uic_cmd_compl - handle completion of uic command
2998 * @hba: per adapter instance
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302999 * @intr_status: interrupt status generated by the controller
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303000 */
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303001static void ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303002{
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303003 if ((intr_status & UIC_COMMAND_COMPL) && hba->active_uic_cmd) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303004 hba->active_uic_cmd->argument2 |=
3005 ufshcd_get_uic_cmd_result(hba);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05303006 hba->active_uic_cmd->argument3 =
3007 ufshcd_get_dme_attr_val(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303008 complete(&hba->active_uic_cmd->done);
3009 }
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303010
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003011 if ((intr_status & UFSHCD_UIC_PWR_MASK) && hba->uic_async_done)
3012 complete(hba->uic_async_done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303013}
3014
3015/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303016 * ufshcd_transfer_req_compl - handle SCSI and query command completion
3017 * @hba: per adapter instance
3018 */
3019static void ufshcd_transfer_req_compl(struct ufs_hba *hba)
3020{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303021 struct ufshcd_lrb *lrbp;
3022 struct scsi_cmnd *cmd;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303023 unsigned long completed_reqs;
3024 u32 tr_doorbell;
3025 int result;
3026 int index;
Dolev Ravive9d501b2014-07-01 12:22:37 +03003027
3028 /* Resetting interrupt aggregation counters first and reading the
3029 * DOOR_BELL afterward allows us to handle all the completed requests.
3030 * In order to prevent other interrupts starvation the DB is read once
3031 * after reset. The down side of this solution is the possibility of
3032 * false interrupt if device completes another request after resetting
3033 * aggregation and before reading the DB.
3034 */
3035 ufshcd_reset_intr_aggr(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303036
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303037 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303038 completed_reqs = tr_doorbell ^ hba->outstanding_reqs;
3039
Dolev Ravive9d501b2014-07-01 12:22:37 +03003040 for_each_set_bit(index, &completed_reqs, hba->nutrs) {
3041 lrbp = &hba->lrb[index];
3042 cmd = lrbp->cmd;
3043 if (cmd) {
3044 result = ufshcd_transfer_rsp_status(hba, lrbp);
3045 scsi_dma_unmap(cmd);
3046 cmd->result = result;
3047 /* Mark completed command as NULL in LRB */
3048 lrbp->cmd = NULL;
3049 clear_bit_unlock(index, &hba->lrb_in_use);
3050 /* Do not touch lrbp after scsi done */
3051 cmd->scsi_done(cmd);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003052 __ufshcd_release(hba);
Dolev Ravive9d501b2014-07-01 12:22:37 +03003053 } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE) {
3054 if (hba->dev_cmd.complete)
3055 complete(hba->dev_cmd.complete);
3056 }
3057 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303058
3059 /* clear corresponding bits of completed commands */
3060 hba->outstanding_reqs ^= completed_reqs;
3061
Sahitya Tummala856b3482014-09-25 15:32:34 +03003062 ufshcd_clk_scaling_update_busy(hba);
3063
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303064 /* we might have free'd some tags above */
3065 wake_up(&hba->dev_cmd.tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303066}
3067
3068/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303069 * ufshcd_disable_ee - disable exception event
3070 * @hba: per-adapter instance
3071 * @mask: exception event to disable
3072 *
3073 * Disables exception event in the device so that the EVENT_ALERT
3074 * bit is not set.
3075 *
3076 * Returns zero on success, non-zero error value on failure.
3077 */
3078static int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
3079{
3080 int err = 0;
3081 u32 val;
3082
3083 if (!(hba->ee_ctrl_mask & mask))
3084 goto out;
3085
3086 val = hba->ee_ctrl_mask & ~mask;
3087 val &= 0xFFFF; /* 2 bytes */
3088 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
3089 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
3090 if (!err)
3091 hba->ee_ctrl_mask &= ~mask;
3092out:
3093 return err;
3094}
3095
3096/**
3097 * ufshcd_enable_ee - enable exception event
3098 * @hba: per-adapter instance
3099 * @mask: exception event to enable
3100 *
3101 * Enable corresponding exception event in the device to allow
3102 * device to alert host in critical scenarios.
3103 *
3104 * Returns zero on success, non-zero error value on failure.
3105 */
3106static int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
3107{
3108 int err = 0;
3109 u32 val;
3110
3111 if (hba->ee_ctrl_mask & mask)
3112 goto out;
3113
3114 val = hba->ee_ctrl_mask | mask;
3115 val &= 0xFFFF; /* 2 bytes */
3116 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
3117 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
3118 if (!err)
3119 hba->ee_ctrl_mask |= mask;
3120out:
3121 return err;
3122}
3123
3124/**
3125 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
3126 * @hba: per-adapter instance
3127 *
3128 * Allow device to manage background operations on its own. Enabling
3129 * this might lead to inconsistent latencies during normal data transfers
3130 * as the device is allowed to manage its own way of handling background
3131 * operations.
3132 *
3133 * Returns zero on success, non-zero on failure.
3134 */
3135static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
3136{
3137 int err = 0;
3138
3139 if (hba->auto_bkops_enabled)
3140 goto out;
3141
3142 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_SET_FLAG,
3143 QUERY_FLAG_IDN_BKOPS_EN, NULL);
3144 if (err) {
3145 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
3146 __func__, err);
3147 goto out;
3148 }
3149
3150 hba->auto_bkops_enabled = true;
3151
3152 /* No need of URGENT_BKOPS exception from the device */
3153 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
3154 if (err)
3155 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
3156 __func__, err);
3157out:
3158 return err;
3159}
3160
3161/**
3162 * ufshcd_disable_auto_bkops - block device in doing background operations
3163 * @hba: per-adapter instance
3164 *
3165 * Disabling background operations improves command response latency but
3166 * has drawback of device moving into critical state where the device is
3167 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
3168 * host is idle so that BKOPS are managed effectively without any negative
3169 * impacts.
3170 *
3171 * Returns zero on success, non-zero on failure.
3172 */
3173static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
3174{
3175 int err = 0;
3176
3177 if (!hba->auto_bkops_enabled)
3178 goto out;
3179
3180 /*
3181 * If host assisted BKOPs is to be enabled, make sure
3182 * urgent bkops exception is allowed.
3183 */
3184 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
3185 if (err) {
3186 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
3187 __func__, err);
3188 goto out;
3189 }
3190
3191 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
3192 QUERY_FLAG_IDN_BKOPS_EN, NULL);
3193 if (err) {
3194 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
3195 __func__, err);
3196 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
3197 goto out;
3198 }
3199
3200 hba->auto_bkops_enabled = false;
3201out:
3202 return err;
3203}
3204
3205/**
3206 * ufshcd_force_reset_auto_bkops - force enable of auto bkops
3207 * @hba: per adapter instance
3208 *
3209 * After a device reset the device may toggle the BKOPS_EN flag
3210 * to default value. The s/w tracking variables should be updated
3211 * as well. Do this by forcing enable of auto bkops.
3212 */
3213static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
3214{
3215 hba->auto_bkops_enabled = false;
3216 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
3217 ufshcd_enable_auto_bkops(hba);
3218}
3219
3220static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
3221{
3222 return ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
3223 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
3224}
3225
3226/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003227 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
3228 * @hba: per-adapter instance
3229 * @status: bkops_status value
3230 *
3231 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
3232 * flag in the device to permit background operations if the device
3233 * bkops_status is greater than or equal to "status" argument passed to
3234 * this function, disable otherwise.
3235 *
3236 * Returns 0 for success, non-zero in case of failure.
3237 *
3238 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
3239 * to know whether auto bkops is enabled or disabled after this function
3240 * returns control to it.
3241 */
3242static int ufshcd_bkops_ctrl(struct ufs_hba *hba,
3243 enum bkops_status status)
3244{
3245 int err;
3246 u32 curr_status = 0;
3247
3248 err = ufshcd_get_bkops_status(hba, &curr_status);
3249 if (err) {
3250 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
3251 __func__, err);
3252 goto out;
3253 } else if (curr_status > BKOPS_STATUS_MAX) {
3254 dev_err(hba->dev, "%s: invalid BKOPS status %d\n",
3255 __func__, curr_status);
3256 err = -EINVAL;
3257 goto out;
3258 }
3259
3260 if (curr_status >= status)
3261 err = ufshcd_enable_auto_bkops(hba);
3262 else
3263 err = ufshcd_disable_auto_bkops(hba);
3264out:
3265 return err;
3266}
3267
3268/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303269 * ufshcd_urgent_bkops - handle urgent bkops exception event
3270 * @hba: per-adapter instance
3271 *
3272 * Enable fBackgroundOpsEn flag in the device to permit background
3273 * operations.
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003274 *
3275 * If BKOPs is enabled, this function returns 0, 1 if the bkops in not enabled
3276 * and negative error value for any other failure.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303277 */
3278static int ufshcd_urgent_bkops(struct ufs_hba *hba)
3279{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003280 return ufshcd_bkops_ctrl(hba, BKOPS_STATUS_PERF_IMPACT);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303281}
3282
3283static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
3284{
3285 return ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
3286 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
3287}
3288
3289/**
3290 * ufshcd_exception_event_handler - handle exceptions raised by device
3291 * @work: pointer to work data
3292 *
3293 * Read bExceptionEventStatus attribute from the device and handle the
3294 * exception event accordingly.
3295 */
3296static void ufshcd_exception_event_handler(struct work_struct *work)
3297{
3298 struct ufs_hba *hba;
3299 int err;
3300 u32 status = 0;
3301 hba = container_of(work, struct ufs_hba, eeh_work);
3302
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303303 pm_runtime_get_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303304 err = ufshcd_get_ee_status(hba, &status);
3305 if (err) {
3306 dev_err(hba->dev, "%s: failed to get exception status %d\n",
3307 __func__, err);
3308 goto out;
3309 }
3310
3311 status &= hba->ee_ctrl_mask;
3312 if (status & MASK_EE_URGENT_BKOPS) {
3313 err = ufshcd_urgent_bkops(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03003314 if (err < 0)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303315 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
3316 __func__, err);
3317 }
3318out:
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303319 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05303320 return;
3321}
3322
3323/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303324 * ufshcd_err_handler - handle UFS errors that require s/w attention
3325 * @work: pointer to work structure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303326 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303327static void ufshcd_err_handler(struct work_struct *work)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303328{
3329 struct ufs_hba *hba;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303330 unsigned long flags;
3331 u32 err_xfer = 0;
3332 u32 err_tm = 0;
3333 int err = 0;
3334 int tag;
3335
3336 hba = container_of(work, struct ufs_hba, eh_work);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303337
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303338 pm_runtime_get_sync(hba->dev);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003339 ufshcd_hold(hba, false);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303340
3341 spin_lock_irqsave(hba->host->host_lock, flags);
3342 if (hba->ufshcd_state == UFSHCD_STATE_RESET) {
3343 spin_unlock_irqrestore(hba->host->host_lock, flags);
3344 goto out;
3345 }
3346
3347 hba->ufshcd_state = UFSHCD_STATE_RESET;
3348 ufshcd_set_eh_in_progress(hba);
3349
3350 /* Complete requests that have door-bell cleared by h/w */
3351 ufshcd_transfer_req_compl(hba);
3352 ufshcd_tmc_handler(hba);
3353 spin_unlock_irqrestore(hba->host->host_lock, flags);
3354
3355 /* Clear pending transfer requests */
3356 for_each_set_bit(tag, &hba->outstanding_reqs, hba->nutrs)
3357 if (ufshcd_clear_cmd(hba, tag))
3358 err_xfer |= 1 << tag;
3359
3360 /* Clear pending task management requests */
3361 for_each_set_bit(tag, &hba->outstanding_tasks, hba->nutmrs)
3362 if (ufshcd_clear_tm_cmd(hba, tag))
3363 err_tm |= 1 << tag;
3364
3365 /* Complete the requests that are cleared by s/w */
3366 spin_lock_irqsave(hba->host->host_lock, flags);
3367 ufshcd_transfer_req_compl(hba);
3368 ufshcd_tmc_handler(hba);
3369 spin_unlock_irqrestore(hba->host->host_lock, flags);
3370
3371 /* Fatal errors need reset */
3372 if (err_xfer || err_tm || (hba->saved_err & INT_FATAL_ERRORS) ||
3373 ((hba->saved_err & UIC_ERROR) &&
3374 (hba->saved_uic_err & UFSHCD_UIC_DL_PA_INIT_ERROR))) {
3375 err = ufshcd_reset_and_restore(hba);
3376 if (err) {
3377 dev_err(hba->dev, "%s: reset and restore failed\n",
3378 __func__);
3379 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3380 }
3381 /*
3382 * Inform scsi mid-layer that we did reset and allow to handle
3383 * Unit Attention properly.
3384 */
3385 scsi_report_bus_reset(hba->host, 0);
3386 hba->saved_err = 0;
3387 hba->saved_uic_err = 0;
3388 }
3389 ufshcd_clear_eh_in_progress(hba);
3390
3391out:
3392 scsi_unblock_requests(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003393 ufshcd_release(hba);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05303394 pm_runtime_put_sync(hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303395}
3396
3397/**
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303398 * ufshcd_update_uic_error - check and set fatal UIC error flags.
3399 * @hba: per-adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303400 */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303401static void ufshcd_update_uic_error(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303402{
3403 u32 reg;
3404
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303405 /* PA_INIT_ERROR is fatal and needs UIC reset */
3406 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
3407 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
3408 hba->uic_error |= UFSHCD_UIC_DL_PA_INIT_ERROR;
3409
3410 /* UIC NL/TL/DME errors needs software retry */
3411 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_NETWORK_LAYER);
3412 if (reg)
3413 hba->uic_error |= UFSHCD_UIC_NL_ERROR;
3414
3415 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_TRANSPORT_LAYER);
3416 if (reg)
3417 hba->uic_error |= UFSHCD_UIC_TL_ERROR;
3418
3419 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DME);
3420 if (reg)
3421 hba->uic_error |= UFSHCD_UIC_DME_ERROR;
3422
3423 dev_dbg(hba->dev, "%s: UIC error flags = 0x%08x\n",
3424 __func__, hba->uic_error);
3425}
3426
3427/**
3428 * ufshcd_check_errors - Check for errors that need s/w attention
3429 * @hba: per-adapter instance
3430 */
3431static void ufshcd_check_errors(struct ufs_hba *hba)
3432{
3433 bool queue_eh_work = false;
3434
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303435 if (hba->errors & INT_FATAL_ERRORS)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303436 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303437
3438 if (hba->errors & UIC_ERROR) {
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303439 hba->uic_error = 0;
3440 ufshcd_update_uic_error(hba);
3441 if (hba->uic_error)
3442 queue_eh_work = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303443 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303444
3445 if (queue_eh_work) {
3446 /* handle fatal errors only when link is functional */
3447 if (hba->ufshcd_state == UFSHCD_STATE_OPERATIONAL) {
3448 /* block commands from scsi mid-layer */
3449 scsi_block_requests(hba->host);
3450
3451 /* transfer error masks to sticky bits */
3452 hba->saved_err |= hba->errors;
3453 hba->saved_uic_err |= hba->uic_error;
3454
3455 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3456 schedule_work(&hba->eh_work);
3457 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303458 }
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303459 /*
3460 * if (!queue_eh_work) -
3461 * Other errors are either non-fatal where host recovers
3462 * itself without s/w intervention or errors that will be
3463 * handled by the SCSI core layer.
3464 */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303465}
3466
3467/**
3468 * ufshcd_tmc_handler - handle task management function completion
3469 * @hba: per adapter instance
3470 */
3471static void ufshcd_tmc_handler(struct ufs_hba *hba)
3472{
3473 u32 tm_doorbell;
3474
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303475 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303476 hba->tm_condition = tm_doorbell ^ hba->outstanding_tasks;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303477 wake_up(&hba->tm_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303478}
3479
3480/**
3481 * ufshcd_sl_intr - Interrupt service routine
3482 * @hba: per adapter instance
3483 * @intr_status: contains interrupts generated by the controller
3484 */
3485static void ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
3486{
3487 hba->errors = UFSHCD_ERROR_MASK & intr_status;
3488 if (hba->errors)
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303489 ufshcd_check_errors(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303490
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05303491 if (intr_status & UFSHCD_UIC_MASK)
3492 ufshcd_uic_cmd_compl(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303493
3494 if (intr_status & UTP_TASK_REQ_COMPL)
3495 ufshcd_tmc_handler(hba);
3496
3497 if (intr_status & UTP_TRANSFER_REQ_COMPL)
3498 ufshcd_transfer_req_compl(hba);
3499}
3500
3501/**
3502 * ufshcd_intr - Main interrupt service routine
3503 * @irq: irq number
3504 * @__hba: pointer to adapter instance
3505 *
3506 * Returns IRQ_HANDLED - If interrupt is valid
3507 * IRQ_NONE - If invalid interrupt
3508 */
3509static irqreturn_t ufshcd_intr(int irq, void *__hba)
3510{
3511 u32 intr_status;
3512 irqreturn_t retval = IRQ_NONE;
3513 struct ufs_hba *hba = __hba;
3514
3515 spin_lock(hba->host->host_lock);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303516 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303517
3518 if (intr_status) {
Seungwon Jeon261ea452013-06-26 22:39:28 +05303519 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303520 ufshcd_sl_intr(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303521 retval = IRQ_HANDLED;
3522 }
3523 spin_unlock(hba->host->host_lock);
3524 return retval;
3525}
3526
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303527static int ufshcd_clear_tm_cmd(struct ufs_hba *hba, int tag)
3528{
3529 int err = 0;
3530 u32 mask = 1 << tag;
3531 unsigned long flags;
3532
3533 if (!test_bit(tag, &hba->outstanding_tasks))
3534 goto out;
3535
3536 spin_lock_irqsave(hba->host->host_lock, flags);
3537 ufshcd_writel(hba, ~(1 << tag), REG_UTP_TASK_REQ_LIST_CLEAR);
3538 spin_unlock_irqrestore(hba->host->host_lock, flags);
3539
3540 /* poll for max. 1 sec to clear door bell register by h/w */
3541 err = ufshcd_wait_for_register(hba,
3542 REG_UTP_TASK_REQ_DOOR_BELL,
3543 mask, 0, 1000, 1000);
3544out:
3545 return err;
3546}
3547
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303548/**
3549 * ufshcd_issue_tm_cmd - issues task management commands to controller
3550 * @hba: per adapter instance
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303551 * @lun_id: LUN ID to which TM command is sent
3552 * @task_id: task ID to which the TM command is applicable
3553 * @tm_function: task management function opcode
3554 * @tm_response: task management service response return value
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303555 *
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303556 * Returns non-zero value on error, zero on success.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303557 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303558static int ufshcd_issue_tm_cmd(struct ufs_hba *hba, int lun_id, int task_id,
3559 u8 tm_function, u8 *tm_response)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303560{
3561 struct utp_task_req_desc *task_req_descp;
3562 struct utp_upiu_task_req *task_req_upiup;
3563 struct Scsi_Host *host;
3564 unsigned long flags;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303565 int free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303566 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303567 int task_tag;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303568
3569 host = hba->host;
3570
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303571 /*
3572 * Get free slot, sleep if slots are unavailable.
3573 * Even though we use wait_event() which sleeps indefinitely,
3574 * the maximum wait time is bounded by %TM_CMD_TIMEOUT.
3575 */
3576 wait_event(hba->tm_tag_wq, ufshcd_get_tm_free_slot(hba, &free_slot));
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003577 ufshcd_hold(hba, false);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303578
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303579 spin_lock_irqsave(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303580 task_req_descp = hba->utmrdl_base_addr;
3581 task_req_descp += free_slot;
3582
3583 /* Configure task request descriptor */
3584 task_req_descp->header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
3585 task_req_descp->header.dword_2 =
3586 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
3587
3588 /* Configure task request UPIU */
3589 task_req_upiup =
3590 (struct utp_upiu_task_req *) task_req_descp->task_req_upiu;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303591 task_tag = hba->nutrs + free_slot;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303592 task_req_upiup->header.dword_0 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303593 UPIU_HEADER_DWORD(UPIU_TRANSACTION_TASK_REQ, 0,
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303594 lun_id, task_tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303595 task_req_upiup->header.dword_1 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303596 UPIU_HEADER_DWORD(0, tm_function, 0, 0);
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03003597 /*
3598 * The host shall provide the same value for LUN field in the basic
3599 * header and for Input Parameter.
3600 */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303601 task_req_upiup->input_param1 = cpu_to_be32(lun_id);
3602 task_req_upiup->input_param2 = cpu_to_be32(task_id);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303603
3604 /* send command to the controller */
3605 __set_bit(free_slot, &hba->outstanding_tasks);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05303606 ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303607
3608 spin_unlock_irqrestore(host->host_lock, flags);
3609
3610 /* wait until the task management command is completed */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303611 err = wait_event_timeout(hba->tm_wq,
3612 test_bit(free_slot, &hba->tm_condition),
3613 msecs_to_jiffies(TM_CMD_TIMEOUT));
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303614 if (!err) {
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303615 dev_err(hba->dev, "%s: task management cmd 0x%.2x timed-out\n",
3616 __func__, tm_function);
3617 if (ufshcd_clear_tm_cmd(hba, free_slot))
3618 dev_WARN(hba->dev, "%s: unable clear tm cmd (slot %d) after timeout\n",
3619 __func__, free_slot);
3620 err = -ETIMEDOUT;
3621 } else {
3622 err = ufshcd_task_req_compl(hba, free_slot, tm_response);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303623 }
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303624
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303625 clear_bit(free_slot, &hba->tm_condition);
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303626 ufshcd_put_tm_slot(hba, free_slot);
3627 wake_up(&hba->tm_tag_wq);
3628
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003629 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303630 return err;
3631}
3632
3633/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303634 * ufshcd_eh_device_reset_handler - device reset handler registered to
3635 * scsi layer.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303636 * @cmd: SCSI command pointer
3637 *
3638 * Returns SUCCESS/FAILED
3639 */
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303640static int ufshcd_eh_device_reset_handler(struct scsi_cmnd *cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303641{
3642 struct Scsi_Host *host;
3643 struct ufs_hba *hba;
3644 unsigned int tag;
3645 u32 pos;
3646 int err;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303647 u8 resp = 0xF;
3648 struct ufshcd_lrb *lrbp;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303649 unsigned long flags;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303650
3651 host = cmd->device->host;
3652 hba = shost_priv(host);
3653 tag = cmd->request->tag;
3654
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303655 lrbp = &hba->lrb[tag];
3656 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, 0, UFS_LOGICAL_RESET, &resp);
3657 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303658 if (!err)
3659 err = resp;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303660 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303661 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303662
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303663 /* clear the commands that were pending for corresponding LUN */
3664 for_each_set_bit(pos, &hba->outstanding_reqs, hba->nutrs) {
3665 if (hba->lrb[pos].lun == lrbp->lun) {
3666 err = ufshcd_clear_cmd(hba, pos);
3667 if (err)
3668 break;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303669 }
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303670 }
3671 spin_lock_irqsave(host->host_lock, flags);
3672 ufshcd_transfer_req_compl(hba);
3673 spin_unlock_irqrestore(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303674out:
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303675 if (!err) {
3676 err = SUCCESS;
3677 } else {
3678 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
3679 err = FAILED;
3680 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303681 return err;
3682}
3683
3684/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303685 * ufshcd_abort - abort a specific command
3686 * @cmd: SCSI command pointer
3687 *
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303688 * Abort the pending command in device by sending UFS_ABORT_TASK task management
3689 * command, and in host controller by clearing the door-bell register. There can
3690 * be race between controller sending the command to the device while abort is
3691 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
3692 * really issued and then try to abort it.
3693 *
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303694 * Returns SUCCESS/FAILED
3695 */
3696static int ufshcd_abort(struct scsi_cmnd *cmd)
3697{
3698 struct Scsi_Host *host;
3699 struct ufs_hba *hba;
3700 unsigned long flags;
3701 unsigned int tag;
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303702 int err = 0;
3703 int poll_cnt;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303704 u8 resp = 0xF;
3705 struct ufshcd_lrb *lrbp;
Dolev Ravive9d501b2014-07-01 12:22:37 +03003706 u32 reg;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303707
3708 host = cmd->device->host;
3709 hba = shost_priv(host);
3710 tag = cmd->request->tag;
3711
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003712 ufshcd_hold(hba, false);
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303713 /* If command is already aborted/completed, return SUCCESS */
3714 if (!(test_bit(tag, &hba->outstanding_reqs)))
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303715 goto out;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303716
Dolev Ravive9d501b2014-07-01 12:22:37 +03003717 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
3718 if (!(reg & (1 << tag))) {
3719 dev_err(hba->dev,
3720 "%s: cmd was completed, but without a notifying intr, tag = %d",
3721 __func__, tag);
3722 }
3723
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303724 lrbp = &hba->lrb[tag];
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303725 for (poll_cnt = 100; poll_cnt; poll_cnt--) {
3726 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
3727 UFS_QUERY_TASK, &resp);
3728 if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED) {
3729 /* cmd pending in the device */
3730 break;
3731 } else if (!err && resp == UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303732 /*
3733 * cmd not pending in the device, check if it is
3734 * in transition.
3735 */
3736 reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
3737 if (reg & (1 << tag)) {
3738 /* sleep for max. 200us to stabilize */
3739 usleep_range(100, 200);
3740 continue;
3741 }
3742 /* command completed already */
3743 goto out;
3744 } else {
3745 if (!err)
3746 err = resp; /* service response error */
3747 goto out;
3748 }
3749 }
3750
3751 if (!poll_cnt) {
3752 err = -EBUSY;
3753 goto out;
3754 }
3755
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303756 err = ufshcd_issue_tm_cmd(hba, lrbp->lun, lrbp->task_tag,
3757 UFS_ABORT_TASK, &resp);
3758 if (err || resp != UPIU_TASK_MANAGEMENT_FUNC_COMPL) {
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303759 if (!err)
3760 err = resp; /* service response error */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303761 goto out;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05303762 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303763
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303764 err = ufshcd_clear_cmd(hba, tag);
3765 if (err)
3766 goto out;
3767
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303768 scsi_dma_unmap(cmd);
3769
3770 spin_lock_irqsave(host->host_lock, flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303771 __clear_bit(tag, &hba->outstanding_reqs);
3772 hba->lrb[tag].cmd = NULL;
3773 spin_unlock_irqrestore(host->host_lock, flags);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05303774
3775 clear_bit_unlock(tag, &hba->lrb_in_use);
3776 wake_up(&hba->dev_cmd.tag_wq);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003777
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303778out:
Sujit Reddy Thummaf20810d2014-05-26 10:59:13 +05303779 if (!err) {
3780 err = SUCCESS;
3781 } else {
3782 dev_err(hba->dev, "%s: failed with err %d\n", __func__, err);
3783 err = FAILED;
3784 }
3785
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003786 /*
3787 * This ufshcd_release() corresponds to the original scsi cmd that got
3788 * aborted here (as we won't get any IRQ for it).
3789 */
3790 ufshcd_release(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05303791 return err;
3792}
3793
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05303794/**
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303795 * ufshcd_host_reset_and_restore - reset and restore host controller
3796 * @hba: per-adapter instance
3797 *
3798 * Note that host controller reset may issue DME_RESET to
3799 * local and remote (device) Uni-Pro stack and the attributes
3800 * are reset to default state.
3801 *
3802 * Returns zero on success, non-zero on failure
3803 */
3804static int ufshcd_host_reset_and_restore(struct ufs_hba *hba)
3805{
3806 int err;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303807 unsigned long flags;
3808
3809 /* Reset the host controller */
3810 spin_lock_irqsave(hba->host->host_lock, flags);
3811 ufshcd_hba_stop(hba);
3812 spin_unlock_irqrestore(hba->host->host_lock, flags);
3813
3814 err = ufshcd_hba_enable(hba);
3815 if (err)
3816 goto out;
3817
3818 /* Establish the link again and restore the device */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003819 err = ufshcd_probe_hba(hba);
3820
3821 if (!err && (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL))
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303822 err = -EIO;
3823out:
3824 if (err)
3825 dev_err(hba->dev, "%s: Host init failed %d\n", __func__, err);
3826
3827 return err;
3828}
3829
3830/**
3831 * ufshcd_reset_and_restore - reset and re-initialize host/device
3832 * @hba: per-adapter instance
3833 *
3834 * Reset and recover device, host and re-establish link. This
3835 * is helpful to recover the communication in fatal error conditions.
3836 *
3837 * Returns zero on success, non-zero on failure
3838 */
3839static int ufshcd_reset_and_restore(struct ufs_hba *hba)
3840{
3841 int err = 0;
3842 unsigned long flags;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003843 int retries = MAX_HOST_RESET_RETRIES;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303844
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03003845 do {
3846 err = ufshcd_host_reset_and_restore(hba);
3847 } while (err && --retries);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303848
3849 /*
3850 * After reset the door-bell might be cleared, complete
3851 * outstanding requests in s/w here.
3852 */
3853 spin_lock_irqsave(hba->host->host_lock, flags);
3854 ufshcd_transfer_req_compl(hba);
3855 ufshcd_tmc_handler(hba);
3856 spin_unlock_irqrestore(hba->host->host_lock, flags);
3857
3858 return err;
3859}
3860
3861/**
3862 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
3863 * @cmd - SCSI command pointer
3864 *
3865 * Returns SUCCESS/FAILED
3866 */
3867static int ufshcd_eh_host_reset_handler(struct scsi_cmnd *cmd)
3868{
3869 int err;
3870 unsigned long flags;
3871 struct ufs_hba *hba;
3872
3873 hba = shost_priv(cmd->device->host);
3874
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003875 ufshcd_hold(hba, false);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303876 /*
3877 * Check if there is any race with fatal error handling.
3878 * If so, wait for it to complete. Even though fatal error
3879 * handling does reset and restore in some cases, don't assume
3880 * anything out of it. We are just avoiding race here.
3881 */
3882 do {
3883 spin_lock_irqsave(hba->host->host_lock, flags);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303884 if (!(work_pending(&hba->eh_work) ||
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303885 hba->ufshcd_state == UFSHCD_STATE_RESET))
3886 break;
3887 spin_unlock_irqrestore(hba->host->host_lock, flags);
3888 dev_dbg(hba->dev, "%s: reset in progress\n", __func__);
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05303889 flush_work(&hba->eh_work);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303890 } while (1);
3891
3892 hba->ufshcd_state = UFSHCD_STATE_RESET;
3893 ufshcd_set_eh_in_progress(hba);
3894 spin_unlock_irqrestore(hba->host->host_lock, flags);
3895
3896 err = ufshcd_reset_and_restore(hba);
3897
3898 spin_lock_irqsave(hba->host->host_lock, flags);
3899 if (!err) {
3900 err = SUCCESS;
3901 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
3902 } else {
3903 err = FAILED;
3904 hba->ufshcd_state = UFSHCD_STATE_ERROR;
3905 }
3906 ufshcd_clear_eh_in_progress(hba);
3907 spin_unlock_irqrestore(hba->host->host_lock, flags);
3908
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03003909 ufshcd_release(hba);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05303910 return err;
3911}
3912
3913/**
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03003914 * ufshcd_get_max_icc_level - calculate the ICC level
3915 * @sup_curr_uA: max. current supported by the regulator
3916 * @start_scan: row at the desc table to start scan from
3917 * @buff: power descriptor buffer
3918 *
3919 * Returns calculated max ICC level for specific regulator
3920 */
3921static u32 ufshcd_get_max_icc_level(int sup_curr_uA, u32 start_scan, char *buff)
3922{
3923 int i;
3924 int curr_uA;
3925 u16 data;
3926 u16 unit;
3927
3928 for (i = start_scan; i >= 0; i--) {
3929 data = be16_to_cpu(*((u16 *)(buff + 2*i)));
3930 unit = (data & ATTR_ICC_LVL_UNIT_MASK) >>
3931 ATTR_ICC_LVL_UNIT_OFFSET;
3932 curr_uA = data & ATTR_ICC_LVL_VALUE_MASK;
3933 switch (unit) {
3934 case UFSHCD_NANO_AMP:
3935 curr_uA = curr_uA / 1000;
3936 break;
3937 case UFSHCD_MILI_AMP:
3938 curr_uA = curr_uA * 1000;
3939 break;
3940 case UFSHCD_AMP:
3941 curr_uA = curr_uA * 1000 * 1000;
3942 break;
3943 case UFSHCD_MICRO_AMP:
3944 default:
3945 break;
3946 }
3947 if (sup_curr_uA >= curr_uA)
3948 break;
3949 }
3950 if (i < 0) {
3951 i = 0;
3952 pr_err("%s: Couldn't find valid icc_level = %d", __func__, i);
3953 }
3954
3955 return (u32)i;
3956}
3957
3958/**
3959 * ufshcd_calc_icc_level - calculate the max ICC level
3960 * In case regulators are not initialized we'll return 0
3961 * @hba: per-adapter instance
3962 * @desc_buf: power descriptor buffer to extract ICC levels from.
3963 * @len: length of desc_buff
3964 *
3965 * Returns calculated ICC level
3966 */
3967static u32 ufshcd_find_max_sup_active_icc_level(struct ufs_hba *hba,
3968 u8 *desc_buf, int len)
3969{
3970 u32 icc_level = 0;
3971
3972 if (!hba->vreg_info.vcc || !hba->vreg_info.vccq ||
3973 !hba->vreg_info.vccq2) {
3974 dev_err(hba->dev,
3975 "%s: Regulator capability was not set, actvIccLevel=%d",
3976 __func__, icc_level);
3977 goto out;
3978 }
3979
3980 if (hba->vreg_info.vcc)
3981 icc_level = ufshcd_get_max_icc_level(
3982 hba->vreg_info.vcc->max_uA,
3983 POWER_DESC_MAX_ACTV_ICC_LVLS - 1,
3984 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCC_0]);
3985
3986 if (hba->vreg_info.vccq)
3987 icc_level = ufshcd_get_max_icc_level(
3988 hba->vreg_info.vccq->max_uA,
3989 icc_level,
3990 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ_0]);
3991
3992 if (hba->vreg_info.vccq2)
3993 icc_level = ufshcd_get_max_icc_level(
3994 hba->vreg_info.vccq2->max_uA,
3995 icc_level,
3996 &desc_buf[PWR_DESC_ACTIVE_LVLS_VCCQ2_0]);
3997out:
3998 return icc_level;
3999}
4000
4001static void ufshcd_init_icc_levels(struct ufs_hba *hba)
4002{
4003 int ret;
4004 int buff_len = QUERY_DESC_POWER_MAX_SIZE;
4005 u8 desc_buf[QUERY_DESC_POWER_MAX_SIZE];
4006
4007 ret = ufshcd_read_power_desc(hba, desc_buf, buff_len);
4008 if (ret) {
4009 dev_err(hba->dev,
4010 "%s: Failed reading power descriptor.len = %d ret = %d",
4011 __func__, buff_len, ret);
4012 return;
4013 }
4014
4015 hba->init_prefetch_data.icc_level =
4016 ufshcd_find_max_sup_active_icc_level(hba,
4017 desc_buf, buff_len);
4018 dev_dbg(hba->dev, "%s: setting icc_level 0x%x",
4019 __func__, hba->init_prefetch_data.icc_level);
4020
4021 ret = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
4022 QUERY_ATTR_IDN_ACTIVE_ICC_LVL, 0, 0,
4023 &hba->init_prefetch_data.icc_level);
4024
4025 if (ret)
4026 dev_err(hba->dev,
4027 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
4028 __func__, hba->init_prefetch_data.icc_level , ret);
4029
4030}
4031
4032/**
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004033 * ufshcd_scsi_add_wlus - Adds required W-LUs
4034 * @hba: per-adapter instance
4035 *
4036 * UFS device specification requires the UFS devices to support 4 well known
4037 * logical units:
4038 * "REPORT_LUNS" (address: 01h)
4039 * "UFS Device" (address: 50h)
4040 * "RPMB" (address: 44h)
4041 * "BOOT" (address: 30h)
4042 * UFS device's power management needs to be controlled by "POWER CONDITION"
4043 * field of SSU (START STOP UNIT) command. But this "power condition" field
4044 * will take effect only when its sent to "UFS device" well known logical unit
4045 * hence we require the scsi_device instance to represent this logical unit in
4046 * order for the UFS host driver to send the SSU command for power management.
4047
4048 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
4049 * Block) LU so user space process can control this LU. User space may also
4050 * want to have access to BOOT LU.
4051
4052 * This function adds scsi device instances for each of all well known LUs
4053 * (except "REPORT LUNS" LU).
4054 *
4055 * Returns zero on success (all required W-LUs are added successfully),
4056 * non-zero error value on failure (if failed to add any of the required W-LU).
4057 */
4058static int ufshcd_scsi_add_wlus(struct ufs_hba *hba)
4059{
4060 int ret = 0;
4061
4062 hba->sdev_ufs_device = __scsi_add_device(hba->host, 0, 0,
4063 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN), NULL);
4064 if (IS_ERR(hba->sdev_ufs_device)) {
4065 ret = PTR_ERR(hba->sdev_ufs_device);
4066 hba->sdev_ufs_device = NULL;
4067 goto out;
4068 }
4069
4070 hba->sdev_boot = __scsi_add_device(hba->host, 0, 0,
4071 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN), NULL);
4072 if (IS_ERR(hba->sdev_boot)) {
4073 ret = PTR_ERR(hba->sdev_boot);
4074 hba->sdev_boot = NULL;
4075 goto remove_sdev_ufs_device;
4076 }
4077
4078 hba->sdev_rpmb = __scsi_add_device(hba->host, 0, 0,
4079 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN), NULL);
4080 if (IS_ERR(hba->sdev_rpmb)) {
4081 ret = PTR_ERR(hba->sdev_rpmb);
4082 hba->sdev_rpmb = NULL;
4083 goto remove_sdev_boot;
4084 }
4085 goto out;
4086
4087remove_sdev_boot:
4088 scsi_remove_device(hba->sdev_boot);
4089remove_sdev_ufs_device:
4090 scsi_remove_device(hba->sdev_ufs_device);
4091out:
4092 return ret;
4093}
4094
4095/**
4096 * ufshcd_scsi_remove_wlus - Removes the W-LUs which were added by
4097 * ufshcd_scsi_add_wlus()
4098 * @hba: per-adapter instance
4099 *
4100 */
4101static void ufshcd_scsi_remove_wlus(struct ufs_hba *hba)
4102{
4103 if (hba->sdev_ufs_device) {
4104 scsi_remove_device(hba->sdev_ufs_device);
4105 hba->sdev_ufs_device = NULL;
4106 }
4107
4108 if (hba->sdev_boot) {
4109 scsi_remove_device(hba->sdev_boot);
4110 hba->sdev_boot = NULL;
4111 }
4112
4113 if (hba->sdev_rpmb) {
4114 scsi_remove_device(hba->sdev_rpmb);
4115 hba->sdev_rpmb = NULL;
4116 }
4117}
4118
4119/**
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004120 * ufshcd_probe_hba - probe hba to detect device and initialize
4121 * @hba: per-adapter instance
4122 *
4123 * Execute link-startup and verify device initialization
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304124 */
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004125static int ufshcd_probe_hba(struct ufs_hba *hba)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304126{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304127 int ret;
4128
4129 ret = ufshcd_link_startup(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304130 if (ret)
4131 goto out;
4132
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004133 /* UniPro link is active now */
4134 ufshcd_set_link_active(hba);
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05304135
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304136 ret = ufshcd_verify_dev_init(hba);
4137 if (ret)
4138 goto out;
4139
Dolev Raviv68078d52013-07-30 00:35:58 +05304140 ret = ufshcd_complete_dev_init(hba);
4141 if (ret)
4142 goto out;
4143
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004144 /* UFS device is also active now */
4145 ufshcd_set_ufs_dev_active(hba);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304146 ufshcd_force_reset_auto_bkops(hba);
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304147 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004148 hba->wlun_dev_clr_ua = true;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304149
Dolev Raviv7eb584d2014-09-25 15:32:31 +03004150 if (ufshcd_get_max_pwr_mode(hba)) {
4151 dev_err(hba->dev,
4152 "%s: Failed getting max supported power mode\n",
4153 __func__);
4154 } else {
4155 ret = ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info);
4156 if (ret)
4157 dev_err(hba->dev, "%s: Failed setting power mode, err = %d\n",
4158 __func__, ret);
4159 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004160
4161 /*
4162 * If we are in error handling context or in power management callbacks
4163 * context, no need to scan the host
4164 */
4165 if (!ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
4166 bool flag;
4167
4168 /* clear any previous UFS device information */
4169 memset(&hba->dev_info, 0, sizeof(hba->dev_info));
4170 if (!ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_READ_FLAG,
4171 QUERY_FLAG_IDN_PWR_ON_WPE, &flag))
4172 hba->dev_info.f_power_on_wp_en = flag;
4173
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03004174 if (!hba->is_init_prefetch)
4175 ufshcd_init_icc_levels(hba);
4176
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03004177 /* Add required well known logical units to scsi mid layer */
4178 if (ufshcd_scsi_add_wlus(hba))
4179 goto out;
4180
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304181 scsi_scan_host(hba->host);
4182 pm_runtime_put_sync(hba->dev);
4183 }
Yaniv Gardi3a4bf062014-09-25 15:32:27 +03004184
4185 if (!hba->is_init_prefetch)
4186 hba->is_init_prefetch = true;
4187
Sahitya Tummala856b3482014-09-25 15:32:34 +03004188 /* Resume devfreq after UFS device is detected */
4189 if (ufshcd_is_clkscaling_enabled(hba))
4190 devfreq_resume_device(hba->devfreq);
4191
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05304192out:
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004193 /*
4194 * If we failed to initialize the device or the device is not
4195 * present, turn off the power/clocks etc.
4196 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004197 if (ret && !ufshcd_eh_in_progress(hba) && !hba->pm_op_in_progress) {
4198 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004199 ufshcd_hba_exit(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004200 }
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004201
4202 return ret;
4203}
4204
4205/**
4206 * ufshcd_async_scan - asynchronous execution for probing hba
4207 * @data: data pointer to pass to this function
4208 * @cookie: cookie data
4209 */
4210static void ufshcd_async_scan(void *data, async_cookie_t cookie)
4211{
4212 struct ufs_hba *hba = (struct ufs_hba *)data;
4213
4214 ufshcd_probe_hba(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05304215}
4216
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304217static struct scsi_host_template ufshcd_driver_template = {
4218 .module = THIS_MODULE,
4219 .name = UFSHCD,
4220 .proc_name = UFSHCD,
4221 .queuecommand = ufshcd_queuecommand,
4222 .slave_alloc = ufshcd_slave_alloc,
Akinobu Mitaeeda4742014-07-01 23:00:32 +09004223 .slave_configure = ufshcd_slave_configure,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304224 .slave_destroy = ufshcd_slave_destroy,
Sujit Reddy Thumma4264fd62014-06-29 09:40:20 +03004225 .change_queue_depth = ufshcd_change_queue_depth,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304226 .eh_abort_handler = ufshcd_abort,
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +05304227 .eh_device_reset_handler = ufshcd_eh_device_reset_handler,
4228 .eh_host_reset_handler = ufshcd_eh_host_reset_handler,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304229 .this_id = -1,
4230 .sg_tablesize = SG_ALL,
4231 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
4232 .can_queue = UFSHCD_CAN_QUEUE,
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004233 .max_host_blocked = 1,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +01004234 .use_blk_tags = 1,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304235};
4236
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004237static int ufshcd_config_vreg_load(struct device *dev, struct ufs_vreg *vreg,
4238 int ua)
4239{
4240 int ret = 0;
4241 struct regulator *reg = vreg->reg;
4242 const char *name = vreg->name;
4243
4244 BUG_ON(!vreg);
4245
4246 ret = regulator_set_optimum_mode(reg, ua);
4247 if (ret >= 0) {
4248 /*
4249 * regulator_set_optimum_mode() returns new regulator
4250 * mode upon success.
4251 */
4252 ret = 0;
4253 } else {
4254 dev_err(dev, "%s: %s set optimum mode(ua=%d) failed, err=%d\n",
4255 __func__, name, ua, ret);
4256 }
4257
4258 return ret;
4259}
4260
4261static inline int ufshcd_config_vreg_lpm(struct ufs_hba *hba,
4262 struct ufs_vreg *vreg)
4263{
4264 return ufshcd_config_vreg_load(hba->dev, vreg, UFS_VREG_LPM_LOAD_UA);
4265}
4266
4267static inline int ufshcd_config_vreg_hpm(struct ufs_hba *hba,
4268 struct ufs_vreg *vreg)
4269{
4270 return ufshcd_config_vreg_load(hba->dev, vreg, vreg->max_uA);
4271}
4272
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004273static int ufshcd_config_vreg(struct device *dev,
4274 struct ufs_vreg *vreg, bool on)
4275{
4276 int ret = 0;
4277 struct regulator *reg = vreg->reg;
4278 const char *name = vreg->name;
4279 int min_uV, uA_load;
4280
4281 BUG_ON(!vreg);
4282
4283 if (regulator_count_voltages(reg) > 0) {
4284 min_uV = on ? vreg->min_uV : 0;
4285 ret = regulator_set_voltage(reg, min_uV, vreg->max_uV);
4286 if (ret) {
4287 dev_err(dev, "%s: %s set voltage failed, err=%d\n",
4288 __func__, name, ret);
4289 goto out;
4290 }
4291
4292 uA_load = on ? vreg->max_uA : 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004293 ret = ufshcd_config_vreg_load(dev, vreg, uA_load);
4294 if (ret)
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004295 goto out;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004296 }
4297out:
4298 return ret;
4299}
4300
4301static int ufshcd_enable_vreg(struct device *dev, struct ufs_vreg *vreg)
4302{
4303 int ret = 0;
4304
4305 if (!vreg || vreg->enabled)
4306 goto out;
4307
4308 ret = ufshcd_config_vreg(dev, vreg, true);
4309 if (!ret)
4310 ret = regulator_enable(vreg->reg);
4311
4312 if (!ret)
4313 vreg->enabled = true;
4314 else
4315 dev_err(dev, "%s: %s enable failed, err=%d\n",
4316 __func__, vreg->name, ret);
4317out:
4318 return ret;
4319}
4320
4321static int ufshcd_disable_vreg(struct device *dev, struct ufs_vreg *vreg)
4322{
4323 int ret = 0;
4324
4325 if (!vreg || !vreg->enabled)
4326 goto out;
4327
4328 ret = regulator_disable(vreg->reg);
4329
4330 if (!ret) {
4331 /* ignore errors on applying disable config */
4332 ufshcd_config_vreg(dev, vreg, false);
4333 vreg->enabled = false;
4334 } else {
4335 dev_err(dev, "%s: %s disable failed, err=%d\n",
4336 __func__, vreg->name, ret);
4337 }
4338out:
4339 return ret;
4340}
4341
4342static int ufshcd_setup_vreg(struct ufs_hba *hba, bool on)
4343{
4344 int ret = 0;
4345 struct device *dev = hba->dev;
4346 struct ufs_vreg_info *info = &hba->vreg_info;
4347
4348 if (!info)
4349 goto out;
4350
4351 ret = ufshcd_toggle_vreg(dev, info->vcc, on);
4352 if (ret)
4353 goto out;
4354
4355 ret = ufshcd_toggle_vreg(dev, info->vccq, on);
4356 if (ret)
4357 goto out;
4358
4359 ret = ufshcd_toggle_vreg(dev, info->vccq2, on);
4360 if (ret)
4361 goto out;
4362
4363out:
4364 if (ret) {
4365 ufshcd_toggle_vreg(dev, info->vccq2, false);
4366 ufshcd_toggle_vreg(dev, info->vccq, false);
4367 ufshcd_toggle_vreg(dev, info->vcc, false);
4368 }
4369 return ret;
4370}
4371
Raviv Shvili6a771a62014-09-25 15:32:24 +03004372static int ufshcd_setup_hba_vreg(struct ufs_hba *hba, bool on)
4373{
4374 struct ufs_vreg_info *info = &hba->vreg_info;
4375
4376 if (info)
4377 return ufshcd_toggle_vreg(hba->dev, info->vdd_hba, on);
4378
4379 return 0;
4380}
4381
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004382static int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg)
4383{
4384 int ret = 0;
4385
4386 if (!vreg)
4387 goto out;
4388
4389 vreg->reg = devm_regulator_get(dev, vreg->name);
4390 if (IS_ERR(vreg->reg)) {
4391 ret = PTR_ERR(vreg->reg);
4392 dev_err(dev, "%s: %s get failed, err=%d\n",
4393 __func__, vreg->name, ret);
4394 }
4395out:
4396 return ret;
4397}
4398
4399static int ufshcd_init_vreg(struct ufs_hba *hba)
4400{
4401 int ret = 0;
4402 struct device *dev = hba->dev;
4403 struct ufs_vreg_info *info = &hba->vreg_info;
4404
4405 if (!info)
4406 goto out;
4407
4408 ret = ufshcd_get_vreg(dev, info->vcc);
4409 if (ret)
4410 goto out;
4411
4412 ret = ufshcd_get_vreg(dev, info->vccq);
4413 if (ret)
4414 goto out;
4415
4416 ret = ufshcd_get_vreg(dev, info->vccq2);
4417out:
4418 return ret;
4419}
4420
Raviv Shvili6a771a62014-09-25 15:32:24 +03004421static int ufshcd_init_hba_vreg(struct ufs_hba *hba)
4422{
4423 struct ufs_vreg_info *info = &hba->vreg_info;
4424
4425 if (info)
4426 return ufshcd_get_vreg(hba->dev, info->vdd_hba);
4427
4428 return 0;
4429}
4430
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004431static int __ufshcd_setup_clocks(struct ufs_hba *hba, bool on,
4432 bool skip_ref_clk)
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004433{
4434 int ret = 0;
4435 struct ufs_clk_info *clki;
4436 struct list_head *head = &hba->clk_list_head;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004437 unsigned long flags;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004438
4439 if (!head || list_empty(head))
4440 goto out;
4441
4442 list_for_each_entry(clki, head, list) {
4443 if (!IS_ERR_OR_NULL(clki->clk)) {
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004444 if (skip_ref_clk && !strcmp(clki->name, "ref_clk"))
4445 continue;
4446
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004447 if (on && !clki->enabled) {
4448 ret = clk_prepare_enable(clki->clk);
4449 if (ret) {
4450 dev_err(hba->dev, "%s: %s prepare enable failed, %d\n",
4451 __func__, clki->name, ret);
4452 goto out;
4453 }
4454 } else if (!on && clki->enabled) {
4455 clk_disable_unprepare(clki->clk);
4456 }
4457 clki->enabled = on;
4458 dev_dbg(hba->dev, "%s: clk: %s %sabled\n", __func__,
4459 clki->name, on ? "en" : "dis");
4460 }
4461 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004462
4463 if (hba->vops && hba->vops->setup_clocks)
4464 ret = hba->vops->setup_clocks(hba, on);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004465out:
4466 if (ret) {
4467 list_for_each_entry(clki, head, list) {
4468 if (!IS_ERR_OR_NULL(clki->clk) && clki->enabled)
4469 clk_disable_unprepare(clki->clk);
4470 }
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004471 } else if (!ret && on) {
4472 spin_lock_irqsave(hba->host->host_lock, flags);
4473 hba->clk_gating.state = CLKS_ON;
4474 spin_unlock_irqrestore(hba->host->host_lock, flags);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004475 }
4476 return ret;
4477}
4478
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004479static int ufshcd_setup_clocks(struct ufs_hba *hba, bool on)
4480{
4481 return __ufshcd_setup_clocks(hba, on, false);
4482}
4483
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004484static int ufshcd_init_clocks(struct ufs_hba *hba)
4485{
4486 int ret = 0;
4487 struct ufs_clk_info *clki;
4488 struct device *dev = hba->dev;
4489 struct list_head *head = &hba->clk_list_head;
4490
4491 if (!head || list_empty(head))
4492 goto out;
4493
4494 list_for_each_entry(clki, head, list) {
4495 if (!clki->name)
4496 continue;
4497
4498 clki->clk = devm_clk_get(dev, clki->name);
4499 if (IS_ERR(clki->clk)) {
4500 ret = PTR_ERR(clki->clk);
4501 dev_err(dev, "%s: %s clk get failed, %d\n",
4502 __func__, clki->name, ret);
4503 goto out;
4504 }
4505
4506 if (clki->max_freq) {
4507 ret = clk_set_rate(clki->clk, clki->max_freq);
4508 if (ret) {
4509 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
4510 __func__, clki->name,
4511 clki->max_freq, ret);
4512 goto out;
4513 }
Sahitya Tummala856b3482014-09-25 15:32:34 +03004514 clki->curr_freq = clki->max_freq;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004515 }
4516 dev_dbg(dev, "%s: clk: %s, rate: %lu\n", __func__,
4517 clki->name, clk_get_rate(clki->clk));
4518 }
4519out:
4520 return ret;
4521}
4522
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004523static int ufshcd_variant_hba_init(struct ufs_hba *hba)
4524{
4525 int err = 0;
4526
4527 if (!hba->vops)
4528 goto out;
4529
4530 if (hba->vops->init) {
4531 err = hba->vops->init(hba);
4532 if (err)
4533 goto out;
4534 }
4535
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004536 if (hba->vops->setup_regulators) {
4537 err = hba->vops->setup_regulators(hba, true);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004538 if (err)
4539 goto out_exit;
4540 }
4541
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004542 goto out;
4543
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03004544out_exit:
4545 if (hba->vops->exit)
4546 hba->vops->exit(hba);
4547out:
4548 if (err)
4549 dev_err(hba->dev, "%s: variant %s init failed err %d\n",
4550 __func__, hba->vops ? hba->vops->name : "", err);
4551 return err;
4552}
4553
4554static void ufshcd_variant_hba_exit(struct ufs_hba *hba)
4555{
4556 if (!hba->vops)
4557 return;
4558
4559 if (hba->vops->setup_clocks)
4560 hba->vops->setup_clocks(hba, false);
4561
4562 if (hba->vops->setup_regulators)
4563 hba->vops->setup_regulators(hba, false);
4564
4565 if (hba->vops->exit)
4566 hba->vops->exit(hba);
4567}
4568
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004569static int ufshcd_hba_init(struct ufs_hba *hba)
4570{
4571 int err;
4572
Raviv Shvili6a771a62014-09-25 15:32:24 +03004573 /*
4574 * Handle host controller power separately from the UFS device power
4575 * rails as it will help controlling the UFS host controller power
4576 * collapse easily which is different than UFS device power collapse.
4577 * Also, enable the host controller power before we go ahead with rest
4578 * of the initialization here.
4579 */
4580 err = ufshcd_init_hba_vreg(hba);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004581 if (err)
4582 goto out;
4583
Raviv Shvili6a771a62014-09-25 15:32:24 +03004584 err = ufshcd_setup_hba_vreg(hba, true);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004585 if (err)
4586 goto out;
4587
Raviv Shvili6a771a62014-09-25 15:32:24 +03004588 err = ufshcd_init_clocks(hba);
4589 if (err)
4590 goto out_disable_hba_vreg;
4591
4592 err = ufshcd_setup_clocks(hba, true);
4593 if (err)
4594 goto out_disable_hba_vreg;
4595
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004596 err = ufshcd_init_vreg(hba);
4597 if (err)
4598 goto out_disable_clks;
4599
4600 err = ufshcd_setup_vreg(hba, true);
4601 if (err)
4602 goto out_disable_clks;
4603
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004604 err = ufshcd_variant_hba_init(hba);
4605 if (err)
4606 goto out_disable_vreg;
4607
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004608 hba->is_powered = true;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004609 goto out;
4610
4611out_disable_vreg:
4612 ufshcd_setup_vreg(hba, false);
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +03004613out_disable_clks:
4614 ufshcd_setup_clocks(hba, false);
Raviv Shvili6a771a62014-09-25 15:32:24 +03004615out_disable_hba_vreg:
4616 ufshcd_setup_hba_vreg(hba, false);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004617out:
4618 return err;
4619}
4620
4621static void ufshcd_hba_exit(struct ufs_hba *hba)
4622{
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +03004623 if (hba->is_powered) {
4624 ufshcd_variant_hba_exit(hba);
4625 ufshcd_setup_vreg(hba, false);
4626 ufshcd_setup_clocks(hba, false);
4627 ufshcd_setup_hba_vreg(hba, false);
4628 hba->is_powered = false;
4629 }
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03004630}
4631
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004632static int
4633ufshcd_send_request_sense(struct ufs_hba *hba, struct scsi_device *sdp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304634{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004635 unsigned char cmd[6] = {REQUEST_SENSE,
4636 0,
4637 0,
4638 0,
4639 SCSI_SENSE_BUFFERSIZE,
4640 0};
4641 char *buffer;
4642 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304643
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004644 buffer = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL);
4645 if (!buffer) {
4646 ret = -ENOMEM;
4647 goto out;
4648 }
4649
4650 ret = scsi_execute_req_flags(sdp, cmd, DMA_FROM_DEVICE, buffer,
4651 SCSI_SENSE_BUFFERSIZE, NULL,
4652 msecs_to_jiffies(1000), 3, NULL, REQ_PM);
4653 if (ret)
4654 pr_err("%s: failed with err %d\n", __func__, ret);
4655
4656 kfree(buffer);
4657out:
4658 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304659}
4660
4661/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004662 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
4663 * power mode
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304664 * @hba: per adapter instance
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004665 * @pwr_mode: device power mode to set
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304666 *
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004667 * Returns 0 if requested power mode is set successfully
4668 * Returns non-zero if failed to set the requested power mode
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304669 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004670static int ufshcd_set_dev_pwr_mode(struct ufs_hba *hba,
4671 enum ufs_dev_pwr_mode pwr_mode)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304672{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004673 unsigned char cmd[6] = { START_STOP };
4674 struct scsi_sense_hdr sshdr;
4675 struct scsi_device *sdp = hba->sdev_ufs_device;
4676 int ret;
4677
4678 if (!sdp || !scsi_device_online(sdp))
4679 return -ENODEV;
4680
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304681 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004682 * If scsi commands fail, the scsi mid-layer schedules scsi error-
4683 * handling, which would wait for host to be resumed. Since we know
4684 * we are functional while we are here, skip host resume in error
4685 * handling context.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304686 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004687 hba->host->eh_noresume = 1;
4688 if (hba->wlun_dev_clr_ua) {
4689 ret = ufshcd_send_request_sense(hba, sdp);
4690 if (ret)
4691 goto out;
4692 /* Unit attention condition is cleared now */
4693 hba->wlun_dev_clr_ua = false;
4694 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304695
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004696 cmd[4] = pwr_mode << 4;
4697
4698 /*
4699 * Current function would be generally called from the power management
4700 * callbacks hence set the REQ_PM flag so that it doesn't resume the
4701 * already suspended childs.
4702 */
4703 ret = scsi_execute_req_flags(sdp, cmd, DMA_NONE, NULL, 0, &sshdr,
4704 START_STOP_TIMEOUT, 0, NULL, REQ_PM);
4705 if (ret) {
4706 sdev_printk(KERN_WARNING, sdp,
Hannes Reineckeef613292014-10-24 14:27:00 +02004707 "START_STOP failed for power mode: %d, result %x\n",
4708 pwr_mode, ret);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004709 if (driver_byte(ret) & DRIVER_SENSE) {
Hannes Reinecked811b842014-10-24 14:26:45 +02004710 scsi_show_sense_hdr(sdp, NULL, &sshdr);
4711 scsi_show_extd_sense(sdp, NULL, sshdr.asc, sshdr.ascq);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004712 }
4713 }
4714
4715 if (!ret)
4716 hba->curr_dev_pwr_mode = pwr_mode;
4717out:
4718 hba->host->eh_noresume = 0;
4719 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05304720}
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05304721
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004722static int ufshcd_link_state_transition(struct ufs_hba *hba,
4723 enum uic_link_state req_link_state,
4724 int check_for_bkops)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304725{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004726 int ret = 0;
4727
4728 if (req_link_state == hba->uic_link_state)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304729 return 0;
4730
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004731 if (req_link_state == UIC_LINK_HIBERN8_STATE) {
4732 ret = ufshcd_uic_hibern8_enter(hba);
4733 if (!ret)
4734 ufshcd_set_link_hibern8(hba);
4735 else
4736 goto out;
4737 }
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304738 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004739 * If autobkops is enabled, link can't be turned off because
4740 * turning off the link would also turn off the device.
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05304741 */
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004742 else if ((req_link_state == UIC_LINK_OFF_STATE) &&
4743 (!check_for_bkops || (check_for_bkops &&
4744 !hba->auto_bkops_enabled))) {
4745 /*
4746 * Change controller state to "reset state" which
4747 * should also put the link in off/reset state
4748 */
4749 ufshcd_hba_stop(hba);
4750 /*
4751 * TODO: Check if we need any delay to make sure that
4752 * controller is reset
4753 */
4754 ufshcd_set_link_off(hba);
4755 }
4756
4757out:
4758 return ret;
4759}
4760
4761static void ufshcd_vreg_set_lpm(struct ufs_hba *hba)
4762{
4763 /*
4764 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
4765 * power.
4766 *
4767 * If UFS device and link is in OFF state, all power supplies (VCC,
4768 * VCCQ, VCCQ2) can be turned off if power on write protect is not
4769 * required. If UFS link is inactive (Hibern8 or OFF state) and device
4770 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
4771 *
4772 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
4773 * in low power state which would save some power.
4774 */
4775 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
4776 !hba->dev_info.is_lu_power_on_wp) {
4777 ufshcd_setup_vreg(hba, false);
4778 } else if (!ufshcd_is_ufs_dev_active(hba)) {
4779 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
4780 if (!ufshcd_is_link_active(hba)) {
4781 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
4782 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq2);
4783 }
4784 }
4785}
4786
4787static int ufshcd_vreg_set_hpm(struct ufs_hba *hba)
4788{
4789 int ret = 0;
4790
4791 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba) &&
4792 !hba->dev_info.is_lu_power_on_wp) {
4793 ret = ufshcd_setup_vreg(hba, true);
4794 } else if (!ufshcd_is_ufs_dev_active(hba)) {
4795 ret = ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, true);
4796 if (!ret && !ufshcd_is_link_active(hba)) {
4797 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq);
4798 if (ret)
4799 goto vcc_disable;
4800 ret = ufshcd_config_vreg_hpm(hba, hba->vreg_info.vccq2);
4801 if (ret)
4802 goto vccq_lpm;
4803 }
4804 }
4805 goto out;
4806
4807vccq_lpm:
4808 ufshcd_config_vreg_lpm(hba, hba->vreg_info.vccq);
4809vcc_disable:
4810 ufshcd_toggle_vreg(hba->dev, hba->vreg_info.vcc, false);
4811out:
4812 return ret;
4813}
4814
4815static void ufshcd_hba_vreg_set_lpm(struct ufs_hba *hba)
4816{
4817 if (ufshcd_is_link_off(hba))
4818 ufshcd_setup_hba_vreg(hba, false);
4819}
4820
4821static void ufshcd_hba_vreg_set_hpm(struct ufs_hba *hba)
4822{
4823 if (ufshcd_is_link_off(hba))
4824 ufshcd_setup_hba_vreg(hba, true);
4825}
4826
4827/**
4828 * ufshcd_suspend - helper function for suspend operations
4829 * @hba: per adapter instance
4830 * @pm_op: desired low power operation type
4831 *
4832 * This function will try to put the UFS device and link into low power
4833 * mode based on the "rpm_lvl" (Runtime PM level) or "spm_lvl"
4834 * (System PM level).
4835 *
4836 * If this function is called during shutdown, it will make sure that
4837 * both UFS device and UFS link is powered off.
4838 *
4839 * NOTE: UFS device & link must be active before we enter in this function.
4840 *
4841 * Returns 0 for success and non-zero for failure
4842 */
4843static int ufshcd_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
4844{
4845 int ret = 0;
4846 enum ufs_pm_level pm_lvl;
4847 enum ufs_dev_pwr_mode req_dev_pwr_mode;
4848 enum uic_link_state req_link_state;
4849
4850 hba->pm_op_in_progress = 1;
4851 if (!ufshcd_is_shutdown_pm(pm_op)) {
4852 pm_lvl = ufshcd_is_runtime_pm(pm_op) ?
4853 hba->rpm_lvl : hba->spm_lvl;
4854 req_dev_pwr_mode = ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl);
4855 req_link_state = ufs_get_pm_lvl_to_link_pwr_state(pm_lvl);
4856 } else {
4857 req_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE;
4858 req_link_state = UIC_LINK_OFF_STATE;
4859 }
4860
4861 /*
4862 * If we can't transition into any of the low power modes
4863 * just gate the clocks.
4864 */
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004865 ufshcd_hold(hba, false);
4866 hba->clk_gating.is_suspended = true;
4867
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004868 if (req_dev_pwr_mode == UFS_ACTIVE_PWR_MODE &&
4869 req_link_state == UIC_LINK_ACTIVE_STATE) {
4870 goto disable_clks;
4871 }
4872
4873 if ((req_dev_pwr_mode == hba->curr_dev_pwr_mode) &&
4874 (req_link_state == hba->uic_link_state))
4875 goto out;
4876
4877 /* UFS device & link must be active before we enter in this function */
4878 if (!ufshcd_is_ufs_dev_active(hba) || !ufshcd_is_link_active(hba)) {
4879 ret = -EINVAL;
4880 goto out;
4881 }
4882
4883 if (ufshcd_is_runtime_pm(pm_op)) {
Subhash Jadavani374a2462014-09-25 15:32:35 +03004884 if (ufshcd_can_autobkops_during_suspend(hba)) {
4885 /*
4886 * The device is idle with no requests in the queue,
4887 * allow background operations if bkops status shows
4888 * that performance might be impacted.
4889 */
4890 ret = ufshcd_urgent_bkops(hba);
4891 if (ret)
4892 goto enable_gating;
4893 } else {
4894 /* make sure that auto bkops is disabled */
4895 ufshcd_disable_auto_bkops(hba);
4896 }
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004897 }
4898
4899 if ((req_dev_pwr_mode != hba->curr_dev_pwr_mode) &&
4900 ((ufshcd_is_runtime_pm(pm_op) && !hba->auto_bkops_enabled) ||
4901 !ufshcd_is_runtime_pm(pm_op))) {
4902 /* ensure that bkops is disabled */
4903 ufshcd_disable_auto_bkops(hba);
4904 ret = ufshcd_set_dev_pwr_mode(hba, req_dev_pwr_mode);
4905 if (ret)
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004906 goto enable_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004907 }
4908
4909 ret = ufshcd_link_state_transition(hba, req_link_state, 1);
4910 if (ret)
4911 goto set_dev_active;
4912
4913 ufshcd_vreg_set_lpm(hba);
4914
4915disable_clks:
4916 /*
Sahitya Tummala856b3482014-09-25 15:32:34 +03004917 * The clock scaling needs access to controller registers. Hence, Wait
4918 * for pending clock scaling work to be done before clocks are
4919 * turned off.
4920 */
4921 if (ufshcd_is_clkscaling_enabled(hba)) {
4922 devfreq_suspend_device(hba->devfreq);
4923 hba->clk_scaling.window_start_t = 0;
4924 }
4925 /*
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004926 * Call vendor specific suspend callback. As these callbacks may access
4927 * vendor specific host controller register space call them before the
4928 * host clocks are ON.
4929 */
4930 if (hba->vops && hba->vops->suspend) {
4931 ret = hba->vops->suspend(hba, pm_op);
4932 if (ret)
4933 goto set_link_active;
4934 }
4935
4936 if (hba->vops && hba->vops->setup_clocks) {
4937 ret = hba->vops->setup_clocks(hba, false);
4938 if (ret)
4939 goto vops_resume;
4940 }
4941
4942 if (!ufshcd_is_link_active(hba))
4943 ufshcd_setup_clocks(hba, false);
4944 else
4945 /* If link is active, device ref_clk can't be switched off */
4946 __ufshcd_setup_clocks(hba, false, true);
4947
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004948 hba->clk_gating.state = CLKS_OFF;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004949 /*
4950 * Disable the host irq as host controller as there won't be any
4951 * host controller trasanction expected till resume.
4952 */
4953 ufshcd_disable_irq(hba);
4954 /* Put the host controller in low power mode if possible */
4955 ufshcd_hba_vreg_set_lpm(hba);
4956 goto out;
4957
4958vops_resume:
4959 if (hba->vops && hba->vops->resume)
4960 hba->vops->resume(hba, pm_op);
4961set_link_active:
4962 ufshcd_vreg_set_hpm(hba);
4963 if (ufshcd_is_link_hibern8(hba) && !ufshcd_uic_hibern8_exit(hba))
4964 ufshcd_set_link_active(hba);
4965 else if (ufshcd_is_link_off(hba))
4966 ufshcd_host_reset_and_restore(hba);
4967set_dev_active:
4968 if (!ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE))
4969 ufshcd_disable_auto_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03004970enable_gating:
4971 hba->clk_gating.is_suspended = false;
4972 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03004973out:
4974 hba->pm_op_in_progress = 0;
4975 return ret;
4976}
4977
4978/**
4979 * ufshcd_resume - helper function for resume operations
4980 * @hba: per adapter instance
4981 * @pm_op: runtime PM or system PM
4982 *
4983 * This function basically brings the UFS device, UniPro link and controller
4984 * to active state.
4985 *
4986 * Returns 0 for success and non-zero for failure
4987 */
4988static int ufshcd_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
4989{
4990 int ret;
4991 enum uic_link_state old_link_state;
4992
4993 hba->pm_op_in_progress = 1;
4994 old_link_state = hba->uic_link_state;
4995
4996 ufshcd_hba_vreg_set_hpm(hba);
4997 /* Make sure clocks are enabled before accessing controller */
4998 ret = ufshcd_setup_clocks(hba, true);
4999 if (ret)
5000 goto out;
5001
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005002 /* enable the host irq as host controller would be active soon */
5003 ret = ufshcd_enable_irq(hba);
5004 if (ret)
5005 goto disable_irq_and_vops_clks;
5006
5007 ret = ufshcd_vreg_set_hpm(hba);
5008 if (ret)
5009 goto disable_irq_and_vops_clks;
5010
5011 /*
5012 * Call vendor specific resume callback. As these callbacks may access
5013 * vendor specific host controller register space call them when the
5014 * host clocks are ON.
5015 */
5016 if (hba->vops && hba->vops->resume) {
5017 ret = hba->vops->resume(hba, pm_op);
5018 if (ret)
5019 goto disable_vreg;
5020 }
5021
5022 if (ufshcd_is_link_hibern8(hba)) {
5023 ret = ufshcd_uic_hibern8_exit(hba);
5024 if (!ret)
5025 ufshcd_set_link_active(hba);
5026 else
5027 goto vendor_suspend;
5028 } else if (ufshcd_is_link_off(hba)) {
5029 ret = ufshcd_host_reset_and_restore(hba);
5030 /*
5031 * ufshcd_host_reset_and_restore() should have already
5032 * set the link state as active
5033 */
5034 if (ret || !ufshcd_is_link_active(hba))
5035 goto vendor_suspend;
5036 }
5037
5038 if (!ufshcd_is_ufs_dev_active(hba)) {
5039 ret = ufshcd_set_dev_pwr_mode(hba, UFS_ACTIVE_PWR_MODE);
5040 if (ret)
5041 goto set_old_link_state;
5042 }
5043
Subhash Jadavani374a2462014-09-25 15:32:35 +03005044 /*
5045 * If BKOPs operations are urgently needed at this moment then
5046 * keep auto-bkops enabled or else disable it.
5047 */
5048 ufshcd_urgent_bkops(hba);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005049 hba->clk_gating.is_suspended = false;
5050
Sahitya Tummala856b3482014-09-25 15:32:34 +03005051 if (ufshcd_is_clkscaling_enabled(hba))
5052 devfreq_resume_device(hba->devfreq);
5053
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005054 /* Schedule clock gating in case of no access to UFS device yet */
5055 ufshcd_release(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005056 goto out;
5057
5058set_old_link_state:
5059 ufshcd_link_state_transition(hba, old_link_state, 0);
5060vendor_suspend:
5061 if (hba->vops && hba->vops->suspend)
5062 hba->vops->suspend(hba, pm_op);
5063disable_vreg:
5064 ufshcd_vreg_set_lpm(hba);
5065disable_irq_and_vops_clks:
5066 ufshcd_disable_irq(hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005067 ufshcd_setup_clocks(hba, false);
5068out:
5069 hba->pm_op_in_progress = 0;
5070 return ret;
5071}
5072
5073/**
5074 * ufshcd_system_suspend - system suspend routine
5075 * @hba: per adapter instance
5076 * @pm_op: runtime PM or system PM
5077 *
5078 * Check the description of ufshcd_suspend() function for more details.
5079 *
5080 * Returns 0 for success and non-zero for failure
5081 */
5082int ufshcd_system_suspend(struct ufs_hba *hba)
5083{
5084 int ret = 0;
5085
5086 if (!hba || !hba->is_powered)
5087 goto out;
5088
5089 if (pm_runtime_suspended(hba->dev)) {
5090 if (hba->rpm_lvl == hba->spm_lvl)
5091 /*
5092 * There is possibility that device may still be in
5093 * active state during the runtime suspend.
5094 */
5095 if ((ufs_get_pm_lvl_to_dev_pwr_mode(hba->spm_lvl) ==
5096 hba->curr_dev_pwr_mode) && !hba->auto_bkops_enabled)
5097 goto out;
5098
5099 /*
5100 * UFS device and/or UFS link low power states during runtime
5101 * suspend seems to be different than what is expected during
5102 * system suspend. Hence runtime resume the devic & link and
5103 * let the system suspend low power states to take effect.
5104 * TODO: If resume takes longer time, we might have optimize
5105 * it in future by not resuming everything if possible.
5106 */
5107 ret = ufshcd_runtime_resume(hba);
5108 if (ret)
5109 goto out;
5110 }
5111
5112 ret = ufshcd_suspend(hba, UFS_SYSTEM_PM);
5113out:
Dolev Ravive7850602014-09-25 15:32:36 +03005114 if (!ret)
5115 hba->is_sys_suspended = true;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005116 return ret;
5117}
5118EXPORT_SYMBOL(ufshcd_system_suspend);
5119
5120/**
5121 * ufshcd_system_resume - system resume routine
5122 * @hba: per adapter instance
5123 *
5124 * Returns 0 for success and non-zero for failure
5125 */
5126
5127int ufshcd_system_resume(struct ufs_hba *hba)
5128{
5129 if (!hba || !hba->is_powered || pm_runtime_suspended(hba->dev))
5130 /*
5131 * Let the runtime resume take care of resuming
5132 * if runtime suspended.
5133 */
5134 return 0;
5135
5136 return ufshcd_resume(hba, UFS_SYSTEM_PM);
5137}
5138EXPORT_SYMBOL(ufshcd_system_resume);
5139
5140/**
5141 * ufshcd_runtime_suspend - runtime suspend routine
5142 * @hba: per adapter instance
5143 *
5144 * Check the description of ufshcd_suspend() function for more details.
5145 *
5146 * Returns 0 for success and non-zero for failure
5147 */
5148int ufshcd_runtime_suspend(struct ufs_hba *hba)
5149{
5150 if (!hba || !hba->is_powered)
5151 return 0;
5152
5153 return ufshcd_suspend(hba, UFS_RUNTIME_PM);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305154}
5155EXPORT_SYMBOL(ufshcd_runtime_suspend);
5156
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005157/**
5158 * ufshcd_runtime_resume - runtime resume routine
5159 * @hba: per adapter instance
5160 *
5161 * This function basically brings the UFS device, UniPro link and controller
5162 * to active state. Following operations are done in this function:
5163 *
5164 * 1. Turn on all the controller related clocks
5165 * 2. Bring the UniPro link out of Hibernate state
5166 * 3. If UFS device is in sleep state, turn ON VCC rail and bring the UFS device
5167 * to active state.
5168 * 4. If auto-bkops is enabled on the device, disable it.
5169 *
5170 * So following would be the possible power state after this function return
5171 * successfully:
5172 * S1: UFS device in Active state with VCC rail ON
5173 * UniPro link in Active state
5174 * All the UFS/UniPro controller clocks are ON
5175 *
5176 * Returns 0 for success and non-zero for failure
5177 */
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305178int ufshcd_runtime_resume(struct ufs_hba *hba)
5179{
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005180 if (!hba || !hba->is_powered)
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305181 return 0;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005182 else
5183 return ufshcd_resume(hba, UFS_RUNTIME_PM);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305184}
5185EXPORT_SYMBOL(ufshcd_runtime_resume);
5186
5187int ufshcd_runtime_idle(struct ufs_hba *hba)
5188{
5189 return 0;
5190}
5191EXPORT_SYMBOL(ufshcd_runtime_idle);
5192
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305193/**
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005194 * ufshcd_shutdown - shutdown routine
5195 * @hba: per adapter instance
5196 *
5197 * This function would power off both UFS device and UFS link.
5198 *
5199 * Returns 0 always to allow force shutdown even in case of errors.
5200 */
5201int ufshcd_shutdown(struct ufs_hba *hba)
5202{
5203 int ret = 0;
5204
5205 if (ufshcd_is_ufs_dev_poweroff(hba) && ufshcd_is_link_off(hba))
5206 goto out;
5207
5208 if (pm_runtime_suspended(hba->dev)) {
5209 ret = ufshcd_runtime_resume(hba);
5210 if (ret)
5211 goto out;
5212 }
5213
5214 ret = ufshcd_suspend(hba, UFS_SHUTDOWN_PM);
5215out:
5216 if (ret)
5217 dev_err(hba->dev, "%s failed, err %d\n", __func__, ret);
5218 /* allow force shutdown even in case of errors */
5219 return 0;
5220}
5221EXPORT_SYMBOL(ufshcd_shutdown);
5222
5223/**
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305224 * ufshcd_remove - de-allocate SCSI host and host memory space
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305225 * data structure memory
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305226 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305227 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305228void ufshcd_remove(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305229{
Akinobu Mitacfdf9c92013-07-30 00:36:03 +05305230 scsi_remove_host(hba->host);
Subhash Jadavani2a8fa602014-09-25 15:32:28 +03005231 ufshcd_scsi_remove_wlus(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305232 /* disable interrupts */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05305233 ufshcd_disable_intr(hba, hba->intr_mask);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305234 ufshcd_hba_stop(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305235
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305236 scsi_host_put(hba->host);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005237
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005238 ufshcd_exit_clk_gating(hba);
Sahitya Tummala856b3482014-09-25 15:32:34 +03005239 if (ufshcd_is_clkscaling_enabled(hba))
5240 devfreq_remove_device(hba->devfreq);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005241 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305242}
5243EXPORT_SYMBOL_GPL(ufshcd_remove);
5244
5245/**
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09005246 * ufshcd_set_dma_mask - Set dma mask based on the controller
5247 * addressing capability
5248 * @hba: per adapter instance
5249 *
5250 * Returns 0 for success, non-zero for failure
5251 */
5252static int ufshcd_set_dma_mask(struct ufs_hba *hba)
5253{
5254 if (hba->capabilities & MASK_64_ADDRESSING_SUPPORT) {
5255 if (!dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(64)))
5256 return 0;
5257 }
5258 return dma_set_mask_and_coherent(hba->dev, DMA_BIT_MASK(32));
5259}
5260
5261/**
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005262 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305263 * @dev: pointer to device handle
5264 * @hba_handle: driver private handle
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305265 * Returns 0 on success, non-zero value on failure
5266 */
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005267int ufshcd_alloc_host(struct device *dev, struct ufs_hba **hba_handle)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305268{
5269 struct Scsi_Host *host;
5270 struct ufs_hba *hba;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005271 int err = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305272
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305273 if (!dev) {
5274 dev_err(dev,
5275 "Invalid memory reference for dev is NULL\n");
5276 err = -ENODEV;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305277 goto out_error;
5278 }
5279
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305280 host = scsi_host_alloc(&ufshcd_driver_template,
5281 sizeof(struct ufs_hba));
5282 if (!host) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305283 dev_err(dev, "scsi_host_alloc failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305284 err = -ENOMEM;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305285 goto out_error;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305286 }
5287 hba = shost_priv(host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305288 hba->host = host;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305289 hba->dev = dev;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005290 *hba_handle = hba;
5291
5292out_error:
5293 return err;
5294}
5295EXPORT_SYMBOL(ufshcd_alloc_host);
5296
Sahitya Tummala856b3482014-09-25 15:32:34 +03005297static int ufshcd_scale_clks(struct ufs_hba *hba, bool scale_up)
5298{
5299 int ret = 0;
5300 struct ufs_clk_info *clki;
5301 struct list_head *head = &hba->clk_list_head;
5302
5303 if (!head || list_empty(head))
5304 goto out;
5305
5306 list_for_each_entry(clki, head, list) {
5307 if (!IS_ERR_OR_NULL(clki->clk)) {
5308 if (scale_up && clki->max_freq) {
5309 if (clki->curr_freq == clki->max_freq)
5310 continue;
5311 ret = clk_set_rate(clki->clk, clki->max_freq);
5312 if (ret) {
5313 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
5314 __func__, clki->name,
5315 clki->max_freq, ret);
5316 break;
5317 }
5318 clki->curr_freq = clki->max_freq;
5319
5320 } else if (!scale_up && clki->min_freq) {
5321 if (clki->curr_freq == clki->min_freq)
5322 continue;
5323 ret = clk_set_rate(clki->clk, clki->min_freq);
5324 if (ret) {
5325 dev_err(hba->dev, "%s: %s clk set rate(%dHz) failed, %d\n",
5326 __func__, clki->name,
5327 clki->min_freq, ret);
5328 break;
5329 }
5330 clki->curr_freq = clki->min_freq;
5331 }
5332 }
5333 dev_dbg(hba->dev, "%s: clk: %s, rate: %lu\n", __func__,
5334 clki->name, clk_get_rate(clki->clk));
5335 }
5336 if (hba->vops->clk_scale_notify)
5337 hba->vops->clk_scale_notify(hba);
5338out:
5339 return ret;
5340}
5341
5342static int ufshcd_devfreq_target(struct device *dev,
5343 unsigned long *freq, u32 flags)
5344{
5345 int err = 0;
5346 struct ufs_hba *hba = dev_get_drvdata(dev);
5347
5348 if (!ufshcd_is_clkscaling_enabled(hba))
5349 return -EINVAL;
5350
5351 if (*freq == UINT_MAX)
5352 err = ufshcd_scale_clks(hba, true);
5353 else if (*freq == 0)
5354 err = ufshcd_scale_clks(hba, false);
5355
5356 return err;
5357}
5358
5359static int ufshcd_devfreq_get_dev_status(struct device *dev,
5360 struct devfreq_dev_status *stat)
5361{
5362 struct ufs_hba *hba = dev_get_drvdata(dev);
5363 struct ufs_clk_scaling *scaling = &hba->clk_scaling;
5364 unsigned long flags;
5365
5366 if (!ufshcd_is_clkscaling_enabled(hba))
5367 return -EINVAL;
5368
5369 memset(stat, 0, sizeof(*stat));
5370
5371 spin_lock_irqsave(hba->host->host_lock, flags);
5372 if (!scaling->window_start_t)
5373 goto start_window;
5374
5375 if (scaling->is_busy_started)
5376 scaling->tot_busy_t += ktime_to_us(ktime_sub(ktime_get(),
5377 scaling->busy_start_t));
5378
5379 stat->total_time = jiffies_to_usecs((long)jiffies -
5380 (long)scaling->window_start_t);
5381 stat->busy_time = scaling->tot_busy_t;
5382start_window:
5383 scaling->window_start_t = jiffies;
5384 scaling->tot_busy_t = 0;
5385
5386 if (hba->outstanding_reqs) {
5387 scaling->busy_start_t = ktime_get();
5388 scaling->is_busy_started = true;
5389 } else {
5390 scaling->busy_start_t = ktime_set(0, 0);
5391 scaling->is_busy_started = false;
5392 }
5393 spin_unlock_irqrestore(hba->host->host_lock, flags);
5394 return 0;
5395}
5396
5397static struct devfreq_dev_profile ufs_devfreq_profile = {
5398 .polling_ms = 100,
5399 .target = ufshcd_devfreq_target,
5400 .get_dev_status = ufshcd_devfreq_get_dev_status,
5401};
5402
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005403/**
5404 * ufshcd_init - Driver initialization routine
5405 * @hba: per-adapter instance
5406 * @mmio_base: base register address
5407 * @irq: Interrupt line of device
5408 * Returns 0 on success, non-zero value on failure
5409 */
5410int ufshcd_init(struct ufs_hba *hba, void __iomem *mmio_base, unsigned int irq)
5411{
5412 int err;
5413 struct Scsi_Host *host = hba->host;
5414 struct device *dev = hba->dev;
5415
5416 if (!mmio_base) {
5417 dev_err(hba->dev,
5418 "Invalid memory reference for mmio_base is NULL\n");
5419 err = -ENODEV;
5420 goto out_error;
5421 }
5422
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305423 hba->mmio_base = mmio_base;
5424 hba->irq = irq;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305425
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005426 err = ufshcd_hba_init(hba);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +03005427 if (err)
5428 goto out_error;
5429
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305430 /* Read capabilities registers */
5431 ufshcd_hba_capabilities(hba);
5432
5433 /* Get UFS version supported by the controller */
5434 hba->ufs_version = ufshcd_get_ufs_version(hba);
5435
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05305436 /* Get Interrupt bit mask per version */
5437 hba->intr_mask = ufshcd_get_intr_mask(hba);
5438
Akinobu Mitaca3d7bf2014-07-13 21:24:46 +09005439 err = ufshcd_set_dma_mask(hba);
5440 if (err) {
5441 dev_err(hba->dev, "set dma mask failed\n");
5442 goto out_disable;
5443 }
5444
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305445 /* Allocate memory for host memory space */
5446 err = ufshcd_memory_alloc(hba);
5447 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305448 dev_err(hba->dev, "Memory allocation failed\n");
5449 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305450 }
5451
5452 /* Configure LRB */
5453 ufshcd_host_memory_configure(hba);
5454
5455 host->can_queue = hba->nutrs;
5456 host->cmd_per_lun = hba->nutrs;
5457 host->max_id = UFSHCD_MAX_ID;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +03005458 host->max_lun = UFS_MAX_LUNS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305459 host->max_channel = UFSHCD_MAX_CHANNEL;
5460 host->unique_id = host->host_no;
5461 host->max_cmd_len = MAX_CDB_SIZE;
5462
Dolev Raviv7eb584d2014-09-25 15:32:31 +03005463 hba->max_pwr_info.is_valid = false;
5464
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305465 /* Initailize wait queue for task management */
Sujit Reddy Thummae2933132014-05-26 10:59:12 +05305466 init_waitqueue_head(&hba->tm_wq);
5467 init_waitqueue_head(&hba->tm_tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305468
5469 /* Initialize work queues */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +05305470 INIT_WORK(&hba->eh_work, ufshcd_err_handler);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05305471 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305472
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305473 /* Initialize UIC command mutex */
5474 mutex_init(&hba->uic_cmd_mutex);
5475
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05305476 /* Initialize mutex for device management commands */
5477 mutex_init(&hba->dev_cmd.lock);
5478
5479 /* Initialize device management tag acquire wait queue */
5480 init_waitqueue_head(&hba->dev_cmd.tag_wq);
5481
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005482 ufshcd_init_clk_gating(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305483 /* IRQ registration */
Seungwon Jeon2953f852013-06-27 13:31:54 +09005484 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305485 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305486 dev_err(hba->dev, "request irq failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005487 goto exit_gating;
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005488 } else {
5489 hba->is_irq_enabled = true;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305490 }
5491
5492 /* Enable SCSI tag mapping */
5493 err = scsi_init_shared_tag_map(host, host->can_queue);
5494 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305495 dev_err(hba->dev, "init shared queue failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005496 goto exit_gating;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305497 }
5498
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305499 err = scsi_add_host(host, hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305500 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305501 dev_err(hba->dev, "scsi_add_host failed\n");
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005502 goto exit_gating;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305503 }
5504
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305505 /* Host controller enable */
5506 err = ufshcd_hba_enable(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305507 if (err) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305508 dev_err(hba->dev, "Host controller enable failed\n");
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305509 goto out_remove_scsi_host;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305510 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305511
Sahitya Tummala856b3482014-09-25 15:32:34 +03005512 if (ufshcd_is_clkscaling_enabled(hba)) {
5513 hba->devfreq = devfreq_add_device(dev, &ufs_devfreq_profile,
5514 "simple_ondemand", NULL);
5515 if (IS_ERR(hba->devfreq)) {
5516 dev_err(hba->dev, "Unable to register with devfreq %ld\n",
5517 PTR_ERR(hba->devfreq));
5518 goto out_remove_scsi_host;
5519 }
5520 /* Suspend devfreq until the UFS device is detected */
5521 devfreq_suspend_device(hba->devfreq);
5522 hba->clk_scaling.window_start_t = 0;
5523 }
5524
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05305525 /* Hold auto suspend until async scan completes */
5526 pm_runtime_get_sync(dev);
5527
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005528 /*
5529 * The device-initialize-sequence hasn't been invoked yet.
5530 * Set the device to power-off state
5531 */
5532 ufshcd_set_ufs_dev_poweroff(hba);
5533
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05305534 async_schedule(ufshcd_async_scan, hba);
5535
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305536 return 0;
5537
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305538out_remove_scsi_host:
5539 scsi_remove_host(hba->host);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +03005540exit_gating:
5541 ufshcd_exit_clk_gating(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305542out_disable:
Subhash Jadavani57d104c2014-09-25 15:32:30 +03005543 hba->is_irq_enabled = false;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305544 scsi_host_put(host);
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +03005545 ufshcd_hba_exit(hba);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305546out_error:
5547 return err;
5548}
5549EXPORT_SYMBOL_GPL(ufshcd_init);
5550
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05305551MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
5552MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
Vinayak Holikattie0eca632013-02-25 21:44:33 +05305553MODULE_DESCRIPTION("Generic UFS host controller driver Core");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05305554MODULE_LICENSE("GPL");
5555MODULE_VERSION(UFSHCD_DRIVER_VERSION);