blob: 04884d663e4e13bcb88b4ac46dcc76e48f77620d [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
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05306 *
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05307 * Authors:
8 * Santosh Yaraganavi <santosh.sy@samsung.com>
9 * Vinayak Holikatti <h.vinayak@samsung.com>
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +053015 * See the COPYING file in the top-level directory or visit
16 * <http://www.gnu.org/licenses/gpl-2.0.html>
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053017 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +053023 * This program is provided "AS IS" and "WITH ALL FAULTS" and
24 * without warranty of any kind. You are solely responsible for
25 * determining the appropriateness of using and distributing
26 * the program and assume all risks associated with your exercise
27 * of rights with respect to the program, including but not limited
28 * to infringement of third party rights, the risks and costs of
29 * program errors, damage to or loss of data, programs or equipment,
30 * and unavailability or interruption of operations. Under no
31 * circumstances will the contributor of this Program be liable for
32 * any damages of any kind arising from your use or distribution of
33 * this program.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053034 */
35
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053036#include <linux/async.h>
37
Vinayak Holikattie0eca632013-02-25 21:44:33 +053038#include "ufshcd.h"
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +053039#include "unipro.h"
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053040
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053041#define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
42 UTP_TASK_REQ_COMPL |\
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +053043 UIC_POWER_MODE |\
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053044 UFSHCD_ERROR_MASK)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053045/* UIC command timeout, unit: ms */
46#define UIC_CMD_TIMEOUT 500
Seungwon Jeon2fbd0092013-06-26 22:39:27 +053047
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053048/* NOP OUT retries waiting for NOP IN response */
49#define NOP_OUT_RETRIES 10
50/* Timeout after 30 msecs if NOP OUT hangs without response */
51#define NOP_OUT_TIMEOUT 30 /* msecs */
52
Dolev Raviv68078d52013-07-30 00:35:58 +053053/* Query request retries */
54#define QUERY_REQ_RETRIES 10
55/* Query request timeout */
56#define QUERY_REQ_TIMEOUT 30 /* msec */
57
58/* Expose the flag value from utp_upiu_query.value */
59#define MASK_QUERY_UPIU_FLAG_LOC 0xFF
60
Seungwon Jeon7d568652013-08-31 21:40:20 +053061/* Interrupt aggregation default timeout, unit: 40us */
62#define INT_AGGR_DEF_TO 0x02
63
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +053064enum {
65 UFSHCD_MAX_CHANNEL = 0,
66 UFSHCD_MAX_ID = 1,
67 UFSHCD_MAX_LUNS = 8,
68 UFSHCD_CMD_PER_LUN = 32,
69 UFSHCD_CAN_QUEUE = 32,
70};
71
72/* UFSHCD states */
73enum {
74 UFSHCD_STATE_OPERATIONAL,
75 UFSHCD_STATE_RESET,
76 UFSHCD_STATE_ERROR,
77};
78
79/* Interrupt configuration options */
80enum {
81 UFSHCD_INT_DISABLE,
82 UFSHCD_INT_ENABLE,
83 UFSHCD_INT_CLEAR,
84};
85
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053086/*
87 * ufshcd_wait_for_register - wait for register value to change
88 * @hba - per-adapter interface
89 * @reg - mmio register offset
90 * @mask - mask to apply to read register value
91 * @val - wait condition
92 * @interval_us - polling interval in microsecs
93 * @timeout_ms - timeout in millisecs
94 *
95 * Returns -ETIMEDOUT on error, zero on success
96 */
97static int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
98 u32 val, unsigned long interval_us, unsigned long timeout_ms)
99{
100 int err = 0;
101 unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms);
102
103 /* ignore bits that we don't intend to wait on */
104 val = val & mask;
105
106 while ((ufshcd_readl(hba, reg) & mask) != val) {
107 /* wakeup within 50us of expiry */
108 usleep_range(interval_us, interval_us + 50);
109
110 if (time_after(jiffies, timeout)) {
111 if ((ufshcd_readl(hba, reg) & mask) != val)
112 err = -ETIMEDOUT;
113 break;
114 }
115 }
116
117 return err;
118}
119
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530120/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530121 * ufshcd_get_intr_mask - Get the interrupt bit mask
122 * @hba - Pointer to adapter instance
123 *
124 * Returns interrupt bit mask per version
125 */
126static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
127{
128 if (hba->ufs_version == UFSHCI_VERSION_10)
129 return INTERRUPT_MASK_ALL_VER_10;
130 else
131 return INTERRUPT_MASK_ALL_VER_11;
132}
133
134/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530135 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
136 * @hba - Pointer to adapter instance
137 *
138 * Returns UFSHCI version supported by the controller
139 */
140static inline u32 ufshcd_get_ufs_version(struct ufs_hba *hba)
141{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530142 return ufshcd_readl(hba, REG_UFS_VERSION);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530143}
144
145/**
146 * ufshcd_is_device_present - Check if any device connected to
147 * the host controller
148 * @reg_hcs - host controller status register value
149 *
Venkatraman S73ec5132012-07-10 19:39:23 +0530150 * Returns 1 if device present, 0 if no device detected
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530151 */
152static inline int ufshcd_is_device_present(u32 reg_hcs)
153{
Venkatraman S73ec5132012-07-10 19:39:23 +0530154 return (DEVICE_PRESENT & reg_hcs) ? 1 : 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530155}
156
157/**
158 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
159 * @lrb: pointer to local command reference block
160 *
161 * This function is used to get the OCS field from UTRD
162 * Returns the OCS field in the UTRD
163 */
164static inline int ufshcd_get_tr_ocs(struct ufshcd_lrb *lrbp)
165{
166 return lrbp->utr_descriptor_ptr->header.dword_2 & MASK_OCS;
167}
168
169/**
170 * ufshcd_get_tmr_ocs - Get the UTMRD Overall Command Status
171 * @task_req_descp: pointer to utp_task_req_desc structure
172 *
173 * This function is used to get the OCS field from UTMRD
174 * Returns the OCS field in the UTMRD
175 */
176static inline int
177ufshcd_get_tmr_ocs(struct utp_task_req_desc *task_req_descp)
178{
179 return task_req_descp->header.dword_2 & MASK_OCS;
180}
181
182/**
183 * ufshcd_get_tm_free_slot - get a free slot for task management request
184 * @hba: per adapter instance
185 *
186 * Returns maximum number of task management request slots in case of
187 * task management queue full or returns the free slot number
188 */
189static inline int ufshcd_get_tm_free_slot(struct ufs_hba *hba)
190{
191 return find_first_zero_bit(&hba->outstanding_tasks, hba->nutmrs);
192}
193
194/**
195 * ufshcd_utrl_clear - Clear a bit in UTRLCLR register
196 * @hba: per adapter instance
197 * @pos: position of the bit to be cleared
198 */
199static inline void ufshcd_utrl_clear(struct ufs_hba *hba, u32 pos)
200{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530201 ufshcd_writel(hba, ~(1 << pos), REG_UTP_TRANSFER_REQ_LIST_CLEAR);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530202}
203
204/**
205 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
206 * @reg: Register value of host controller status
207 *
208 * Returns integer, 0 on Success and positive value if failed
209 */
210static inline int ufshcd_get_lists_status(u32 reg)
211{
212 /*
213 * The mask 0xFF is for the following HCS register bits
214 * Bit Description
215 * 0 Device Present
216 * 1 UTRLRDY
217 * 2 UTMRLRDY
218 * 3 UCRDY
219 * 4 HEI
220 * 5 DEI
221 * 6-7 reserved
222 */
223 return (((reg) & (0xFF)) >> 1) ^ (0x07);
224}
225
226/**
227 * ufshcd_get_uic_cmd_result - Get the UIC command result
228 * @hba: Pointer to adapter instance
229 *
230 * This function gets the result of UIC command completion
231 * Returns 0 on success, non zero value on error
232 */
233static inline int ufshcd_get_uic_cmd_result(struct ufs_hba *hba)
234{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530235 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_2) &
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530236 MASK_UIC_COMMAND_RESULT;
237}
238
239/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +0530240 * ufshcd_get_dme_attr_val - Get the value of attribute returned by UIC command
241 * @hba: Pointer to adapter instance
242 *
243 * This function gets UIC command argument3
244 * Returns 0 on success, non zero value on error
245 */
246static inline u32 ufshcd_get_dme_attr_val(struct ufs_hba *hba)
247{
248 return ufshcd_readl(hba, REG_UIC_COMMAND_ARG_3);
249}
250
251/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530252 * ufshcd_get_req_rsp - returns the TR response transaction type
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530253 * @ucd_rsp_ptr: pointer to response UPIU
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530254 */
255static inline int
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530256ufshcd_get_req_rsp(struct utp_upiu_rsp *ucd_rsp_ptr)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530257{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530258 return be32_to_cpu(ucd_rsp_ptr->header.dword_0) >> 24;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530259}
260
261/**
262 * ufshcd_get_rsp_upiu_result - Get the result from response UPIU
263 * @ucd_rsp_ptr: pointer to response UPIU
264 *
265 * This function gets the response status and scsi_status from response UPIU
266 * Returns the response result code.
267 */
268static inline int
269ufshcd_get_rsp_upiu_result(struct utp_upiu_rsp *ucd_rsp_ptr)
270{
271 return be32_to_cpu(ucd_rsp_ptr->header.dword_1) & MASK_RSP_UPIU_RESULT;
272}
273
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530274/*
275 * ufshcd_get_rsp_upiu_data_seg_len - Get the data segment length
276 * from response UPIU
277 * @ucd_rsp_ptr: pointer to response UPIU
278 *
279 * Return the data segment length.
280 */
281static inline unsigned int
282ufshcd_get_rsp_upiu_data_seg_len(struct utp_upiu_rsp *ucd_rsp_ptr)
283{
284 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
285 MASK_RSP_UPIU_DATA_SEG_LEN;
286}
287
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530288/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530289 * ufshcd_is_exception_event - Check if the device raised an exception event
290 * @ucd_rsp_ptr: pointer to response UPIU
291 *
292 * The function checks if the device raised an exception event indicated in
293 * the Device Information field of response UPIU.
294 *
295 * Returns true if exception is raised, false otherwise.
296 */
297static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp *ucd_rsp_ptr)
298{
299 return be32_to_cpu(ucd_rsp_ptr->header.dword_2) &
300 MASK_RSP_EXCEPTION_EVENT ? true : false;
301}
302
303/**
Seungwon Jeon7d568652013-08-31 21:40:20 +0530304 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530305 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530306 */
307static inline void
Seungwon Jeon7d568652013-08-31 21:40:20 +0530308ufshcd_reset_intr_aggr(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530309{
Seungwon Jeon7d568652013-08-31 21:40:20 +0530310 ufshcd_writel(hba, INT_AGGR_ENABLE |
311 INT_AGGR_COUNTER_AND_TIMER_RESET,
312 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
313}
314
315/**
316 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
317 * @hba: per adapter instance
318 * @cnt: Interrupt aggregation counter threshold
319 * @tmout: Interrupt aggregation timeout value
320 */
321static inline void
322ufshcd_config_intr_aggr(struct ufs_hba *hba, u8 cnt, u8 tmout)
323{
324 ufshcd_writel(hba, INT_AGGR_ENABLE | INT_AGGR_PARAM_WRITE |
325 INT_AGGR_COUNTER_THLD_VAL(cnt) |
326 INT_AGGR_TIMEOUT_VAL(tmout),
327 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530328}
329
330/**
331 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
332 * When run-stop registers are set to 1, it indicates the
333 * host controller that it can process the requests
334 * @hba: per adapter instance
335 */
336static void ufshcd_enable_run_stop_reg(struct ufs_hba *hba)
337{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530338 ufshcd_writel(hba, UTP_TASK_REQ_LIST_RUN_STOP_BIT,
339 REG_UTP_TASK_REQ_LIST_RUN_STOP);
340 ufshcd_writel(hba, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT,
341 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530342}
343
344/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530345 * ufshcd_hba_start - Start controller initialization sequence
346 * @hba: per adapter instance
347 */
348static inline void ufshcd_hba_start(struct ufs_hba *hba)
349{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530350 ufshcd_writel(hba, CONTROLLER_ENABLE, REG_CONTROLLER_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530351}
352
353/**
354 * ufshcd_is_hba_active - Get controller state
355 * @hba: per adapter instance
356 *
357 * Returns zero if controller is active, 1 otherwise
358 */
359static inline int ufshcd_is_hba_active(struct ufs_hba *hba)
360{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530361 return (ufshcd_readl(hba, REG_CONTROLLER_ENABLE) & 0x1) ? 0 : 1;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530362}
363
364/**
365 * ufshcd_send_command - Send SCSI or device management commands
366 * @hba: per adapter instance
367 * @task_tag: Task tag of the command
368 */
369static inline
370void ufshcd_send_command(struct ufs_hba *hba, unsigned int task_tag)
371{
372 __set_bit(task_tag, &hba->outstanding_reqs);
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530373 ufshcd_writel(hba, 1 << task_tag, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530374}
375
376/**
377 * ufshcd_copy_sense_data - Copy sense data in case of check condition
378 * @lrb - pointer to local reference block
379 */
380static inline void ufshcd_copy_sense_data(struct ufshcd_lrb *lrbp)
381{
382 int len;
Seungwon Jeon1c2623c2013-08-31 21:40:19 +0530383 if (lrbp->sense_buffer &&
384 ufshcd_get_rsp_upiu_data_seg_len(lrbp->ucd_rsp_ptr)) {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530385 len = be16_to_cpu(lrbp->ucd_rsp_ptr->sr.sense_data_len);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530386 memcpy(lrbp->sense_buffer,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530387 lrbp->ucd_rsp_ptr->sr.sense_data,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530388 min_t(int, len, SCSI_SENSE_BUFFERSIZE));
389 }
390}
391
392/**
Dolev Raviv68078d52013-07-30 00:35:58 +0530393 * ufshcd_query_to_cpu() - formats the buffer to native cpu endian
394 * @response: upiu query response to convert
395 */
396static inline void ufshcd_query_to_cpu(struct utp_upiu_query *response)
397{
398 response->length = be16_to_cpu(response->length);
399 response->value = be32_to_cpu(response->value);
400}
401
402/**
403 * ufshcd_query_to_be() - formats the buffer to big endian
404 * @request: upiu query request to convert
405 */
406static inline void ufshcd_query_to_be(struct utp_upiu_query *request)
407{
408 request->length = cpu_to_be16(request->length);
409 request->value = cpu_to_be32(request->value);
410}
411
412/**
413 * ufshcd_copy_query_response() - Copy the Query Response and the data
414 * descriptor
415 * @hba: per adapter instance
416 * @lrb - pointer to local reference block
417 */
418static
419void ufshcd_copy_query_response(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
420{
421 struct ufs_query_res *query_res = &hba->dev_cmd.query.response;
422
423 /* Get the UPIU response */
424 query_res->response = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr) >>
425 UPIU_RSP_CODE_OFFSET;
426
427 memcpy(&query_res->upiu_res, &lrbp->ucd_rsp_ptr->qr, QUERY_OSF_SIZE);
428 ufshcd_query_to_cpu(&query_res->upiu_res);
429
430
431 /* Get the descriptor */
432 if (lrbp->ucd_rsp_ptr->qr.opcode == UPIU_QUERY_OPCODE_READ_DESC) {
433 u8 *descp = (u8 *)&lrbp->ucd_rsp_ptr +
434 GENERAL_UPIU_REQUEST_SIZE;
435 u16 len;
436
437 /* data segment length */
438 len = be32_to_cpu(lrbp->ucd_rsp_ptr->header.dword_2) &
439 MASK_QUERY_DATA_SEG_LEN;
440
441 memcpy(hba->dev_cmd.query.descriptor, descp,
442 min_t(u16, len, QUERY_DESC_MAX_SIZE));
443 }
444}
445
446/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530447 * ufshcd_hba_capabilities - Read controller capabilities
448 * @hba: per adapter instance
449 */
450static inline void ufshcd_hba_capabilities(struct ufs_hba *hba)
451{
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530452 hba->capabilities = ufshcd_readl(hba, REG_CONTROLLER_CAPABILITIES);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530453
454 /* nutrs and nutmrs are 0 based values */
455 hba->nutrs = (hba->capabilities & MASK_TRANSFER_REQUESTS_SLOTS) + 1;
456 hba->nutmrs =
457 ((hba->capabilities & MASK_TASK_MANAGEMENT_REQUEST_SLOTS) >> 16) + 1;
458}
459
460/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530461 * ufshcd_ready_for_uic_cmd - Check if controller is ready
462 * to accept UIC commands
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530463 * @hba: per adapter instance
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530464 * Return true on success, else false
465 */
466static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)
467{
468 if (ufshcd_readl(hba, REG_CONTROLLER_STATUS) & UIC_COMMAND_READY)
469 return true;
470 else
471 return false;
472}
473
474/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +0530475 * ufshcd_get_upmcrs - Get the power mode change request status
476 * @hba: Pointer to adapter instance
477 *
478 * This function gets the UPMCRS field of HCS register
479 * Returns value of UPMCRS field
480 */
481static inline u8 ufshcd_get_upmcrs(struct ufs_hba *hba)
482{
483 return (ufshcd_readl(hba, REG_CONTROLLER_STATUS) >> 8) & 0x7;
484}
485
486/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530487 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
488 * @hba: per adapter instance
489 * @uic_cmd: UIC command
490 *
491 * Mutex must be held.
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530492 */
493static inline void
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530494ufshcd_dispatch_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530495{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530496 WARN_ON(hba->active_uic_cmd);
497
498 hba->active_uic_cmd = uic_cmd;
499
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530500 /* Write Args */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530501 ufshcd_writel(hba, uic_cmd->argument1, REG_UIC_COMMAND_ARG_1);
502 ufshcd_writel(hba, uic_cmd->argument2, REG_UIC_COMMAND_ARG_2);
503 ufshcd_writel(hba, uic_cmd->argument3, REG_UIC_COMMAND_ARG_3);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530504
505 /* Write UIC Cmd */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530506 ufshcd_writel(hba, uic_cmd->command & COMMAND_OPCODE_MASK,
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530507 REG_UIC_COMMAND);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530508}
509
510/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530511 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
512 * @hba: per adapter instance
513 * @uic_command: UIC command
514 *
515 * Must be called with mutex held.
516 * Returns 0 only if success.
517 */
518static int
519ufshcd_wait_for_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
520{
521 int ret;
522 unsigned long flags;
523
524 if (wait_for_completion_timeout(&uic_cmd->done,
525 msecs_to_jiffies(UIC_CMD_TIMEOUT)))
526 ret = uic_cmd->argument2 & MASK_UIC_COMMAND_RESULT;
527 else
528 ret = -ETIMEDOUT;
529
530 spin_lock_irqsave(hba->host->host_lock, flags);
531 hba->active_uic_cmd = NULL;
532 spin_unlock_irqrestore(hba->host->host_lock, flags);
533
534 return ret;
535}
536
537/**
538 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
539 * @hba: per adapter instance
540 * @uic_cmd: UIC command
541 *
542 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
543 * with mutex held.
544 * Returns 0 only if success.
545 */
546static int
547__ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
548{
549 int ret;
550 unsigned long flags;
551
552 if (!ufshcd_ready_for_uic_cmd(hba)) {
553 dev_err(hba->dev,
554 "Controller not ready to accept UIC commands\n");
555 return -EIO;
556 }
557
558 init_completion(&uic_cmd->done);
559
560 spin_lock_irqsave(hba->host->host_lock, flags);
561 ufshcd_dispatch_uic_cmd(hba, uic_cmd);
562 spin_unlock_irqrestore(hba->host->host_lock, flags);
563
564 ret = ufshcd_wait_for_uic_cmd(hba, uic_cmd);
565
566 return ret;
567}
568
569/**
570 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
571 * @hba: per adapter instance
572 * @uic_cmd: UIC command
573 *
574 * Returns 0 only if success.
575 */
576static int
577ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd)
578{
579 int ret;
580
581 mutex_lock(&hba->uic_cmd_mutex);
582 ret = __ufshcd_send_uic_cmd(hba, uic_cmd);
583 mutex_unlock(&hba->uic_cmd_mutex);
584
585 return ret;
586}
587
588/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530589 * ufshcd_map_sg - Map scatter-gather list to prdt
590 * @lrbp - pointer to local reference block
591 *
592 * Returns 0 in case of success, non-zero value in case of failure
593 */
594static int ufshcd_map_sg(struct ufshcd_lrb *lrbp)
595{
596 struct ufshcd_sg_entry *prd_table;
597 struct scatterlist *sg;
598 struct scsi_cmnd *cmd;
599 int sg_segments;
600 int i;
601
602 cmd = lrbp->cmd;
603 sg_segments = scsi_dma_map(cmd);
604 if (sg_segments < 0)
605 return sg_segments;
606
607 if (sg_segments) {
608 lrbp->utr_descriptor_ptr->prd_table_length =
609 cpu_to_le16((u16) (sg_segments));
610
611 prd_table = (struct ufshcd_sg_entry *)lrbp->ucd_prdt_ptr;
612
613 scsi_for_each_sg(cmd, sg, sg_segments, i) {
614 prd_table[i].size =
615 cpu_to_le32(((u32) sg_dma_len(sg))-1);
616 prd_table[i].base_addr =
617 cpu_to_le32(lower_32_bits(sg->dma_address));
618 prd_table[i].upper_addr =
619 cpu_to_le32(upper_32_bits(sg->dma_address));
620 }
621 } else {
622 lrbp->utr_descriptor_ptr->prd_table_length = 0;
623 }
624
625 return 0;
626}
627
628/**
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530629 * ufshcd_enable_intr - enable interrupts
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530630 * @hba: per adapter instance
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530631 * @intrs: interrupt bits
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530632 */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530633static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530634{
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530635 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
636
637 if (hba->ufs_version == UFSHCI_VERSION_10) {
638 u32 rw;
639 rw = set & INTERRUPT_MASK_RW_VER_10;
640 set = rw | ((set ^ intrs) & intrs);
641 } else {
642 set |= intrs;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530643 }
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530644
645 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
646}
647
648/**
649 * ufshcd_disable_intr - disable interrupts
650 * @hba: per adapter instance
651 * @intrs: interrupt bits
652 */
653static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
654{
655 u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
656
657 if (hba->ufs_version == UFSHCI_VERSION_10) {
658 u32 rw;
659 rw = (set & INTERRUPT_MASK_RW_VER_10) &
660 ~(intrs & INTERRUPT_MASK_RW_VER_10);
661 set = rw | ((set & intrs) & ~INTERRUPT_MASK_RW_VER_10);
662
663 } else {
664 set &= ~intrs;
665 }
666
667 ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530668}
669
670/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530671 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
672 * descriptor according to request
673 * @lrbp: pointer to local reference block
674 * @upiu_flags: flags required in the header
675 * @cmd_dir: requests data direction
676 */
677static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb *lrbp,
678 u32 *upiu_flags, enum dma_data_direction cmd_dir)
679{
680 struct utp_transfer_req_desc *req_desc = lrbp->utr_descriptor_ptr;
681 u32 data_direction;
682 u32 dword_0;
683
684 if (cmd_dir == DMA_FROM_DEVICE) {
685 data_direction = UTP_DEVICE_TO_HOST;
686 *upiu_flags = UPIU_CMD_FLAGS_READ;
687 } else if (cmd_dir == DMA_TO_DEVICE) {
688 data_direction = UTP_HOST_TO_DEVICE;
689 *upiu_flags = UPIU_CMD_FLAGS_WRITE;
690 } else {
691 data_direction = UTP_NO_DATA_TRANSFER;
692 *upiu_flags = UPIU_CMD_FLAGS_NONE;
693 }
694
695 dword_0 = data_direction | (lrbp->command_type
696 << UPIU_COMMAND_TYPE_OFFSET);
697 if (lrbp->intr_cmd)
698 dword_0 |= UTP_REQ_DESC_INT_CMD;
699
700 /* Transfer request descriptor header fields */
701 req_desc->header.dword_0 = cpu_to_le32(dword_0);
702
703 /*
704 * assigning invalid value for command status. Controller
705 * updates OCS on command completion, with the command
706 * status
707 */
708 req_desc->header.dword_2 =
709 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
710}
711
712/**
713 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
714 * for scsi commands
715 * @lrbp - local reference block pointer
716 * @upiu_flags - flags
717 */
718static
719void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb *lrbp, u32 upiu_flags)
720{
721 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
722
723 /* command descriptor fields */
724 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
725 UPIU_TRANSACTION_COMMAND, upiu_flags,
726 lrbp->lun, lrbp->task_tag);
727 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
728 UPIU_COMMAND_SET_TYPE_SCSI, 0, 0, 0);
729
730 /* Total EHS length and Data segment length will be zero */
731 ucd_req_ptr->header.dword_2 = 0;
732
733 ucd_req_ptr->sc.exp_data_transfer_len =
734 cpu_to_be32(lrbp->cmd->sdb.length);
735
736 memcpy(ucd_req_ptr->sc.cdb, lrbp->cmd->cmnd,
737 (min_t(unsigned short, lrbp->cmd->cmd_len, MAX_CDB_SIZE)));
738}
739
Dolev Raviv68078d52013-07-30 00:35:58 +0530740/**
741 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
742 * for query requsts
743 * @hba: UFS hba
744 * @lrbp: local reference block pointer
745 * @upiu_flags: flags
746 */
747static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba *hba,
748 struct ufshcd_lrb *lrbp, u32 upiu_flags)
749{
750 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
751 struct ufs_query *query = &hba->dev_cmd.query;
752 u16 len = query->request.upiu_req.length;
753 u8 *descp = (u8 *)lrbp->ucd_req_ptr + GENERAL_UPIU_REQUEST_SIZE;
754
755 /* Query request header */
756 ucd_req_ptr->header.dword_0 = UPIU_HEADER_DWORD(
757 UPIU_TRANSACTION_QUERY_REQ, upiu_flags,
758 lrbp->lun, lrbp->task_tag);
759 ucd_req_ptr->header.dword_1 = UPIU_HEADER_DWORD(
760 0, query->request.query_func, 0, 0);
761
762 /* Data segment length */
763 ucd_req_ptr->header.dword_2 = UPIU_HEADER_DWORD(
764 0, 0, len >> 8, (u8)len);
765
766 /* Copy the Query Request buffer as is */
767 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req,
768 QUERY_OSF_SIZE);
769 ufshcd_query_to_be(&ucd_req_ptr->qr);
770
771 /* Copy the Descriptor */
772 if ((len > 0) && (query->request.upiu_req.opcode ==
773 UPIU_QUERY_OPCODE_WRITE_DESC)) {
774 memcpy(descp, query->descriptor,
775 min_t(u16, len, QUERY_DESC_MAX_SIZE));
776 }
777}
778
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530779static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb *lrbp)
780{
781 struct utp_upiu_req *ucd_req_ptr = lrbp->ucd_req_ptr;
782
783 memset(ucd_req_ptr, 0, sizeof(struct utp_upiu_req));
784
785 /* command descriptor fields */
786 ucd_req_ptr->header.dword_0 =
787 UPIU_HEADER_DWORD(
788 UPIU_TRANSACTION_NOP_OUT, 0, 0, lrbp->task_tag);
789}
790
791/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530792 * ufshcd_compose_upiu - form UFS Protocol Information Unit(UPIU)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530793 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530794 * @lrb - pointer to local reference block
795 */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530796static int ufshcd_compose_upiu(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530797{
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530798 u32 upiu_flags;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530799 int ret = 0;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530800
801 switch (lrbp->command_type) {
802 case UTP_CMD_TYPE_SCSI:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530803 if (likely(lrbp->cmd)) {
804 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags,
805 lrbp->cmd->sc_data_direction);
806 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp, upiu_flags);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530807 } else {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530808 ret = -EINVAL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530809 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530810 break;
811 case UTP_CMD_TYPE_DEV_MANAGE:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530812 ufshcd_prepare_req_desc_hdr(lrbp, &upiu_flags, DMA_NONE);
Dolev Raviv68078d52013-07-30 00:35:58 +0530813 if (hba->dev_cmd.type == DEV_CMD_TYPE_QUERY)
814 ufshcd_prepare_utp_query_req_upiu(
815 hba, lrbp, upiu_flags);
816 else if (hba->dev_cmd.type == DEV_CMD_TYPE_NOP)
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530817 ufshcd_prepare_utp_nop_upiu(lrbp);
818 else
819 ret = -EINVAL;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530820 break;
821 case UTP_CMD_TYPE_UFS:
822 /* For UFS native command implementation */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530823 ret = -ENOTSUPP;
824 dev_err(hba->dev, "%s: UFS native command are not supported\n",
825 __func__);
826 break;
827 default:
828 ret = -ENOTSUPP;
829 dev_err(hba->dev, "%s: unknown command type: 0x%x\n",
830 __func__, lrbp->command_type);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530831 break;
832 } /* end of switch */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530833
834 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530835}
836
837/**
838 * ufshcd_queuecommand - main entry point for SCSI requests
839 * @cmd: command from SCSI Midlayer
840 * @done: call back function
841 *
842 * Returns 0 for success, non-zero in case of failure
843 */
844static int ufshcd_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *cmd)
845{
846 struct ufshcd_lrb *lrbp;
847 struct ufs_hba *hba;
848 unsigned long flags;
849 int tag;
850 int err = 0;
851
852 hba = shost_priv(host);
853
854 tag = cmd->request->tag;
855
856 if (hba->ufshcd_state != UFSHCD_STATE_OPERATIONAL) {
857 err = SCSI_MLQUEUE_HOST_BUSY;
858 goto out;
859 }
860
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530861 /* acquire the tag to make sure device cmds don't use it */
862 if (test_and_set_bit_lock(tag, &hba->lrb_in_use)) {
863 /*
864 * Dev manage command in progress, requeue the command.
865 * Requeuing the command helps in cases where the request *may*
866 * find different tag instead of waiting for dev manage command
867 * completion.
868 */
869 err = SCSI_MLQUEUE_HOST_BUSY;
870 goto out;
871 }
872
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530873 lrbp = &hba->lrb[tag];
874
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530875 WARN_ON(lrbp->cmd);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530876 lrbp->cmd = cmd;
877 lrbp->sense_bufflen = SCSI_SENSE_BUFFERSIZE;
878 lrbp->sense_buffer = cmd->sense_buffer;
879 lrbp->task_tag = tag;
880 lrbp->lun = cmd->device->lun;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530881 lrbp->intr_cmd = false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530882 lrbp->command_type = UTP_CMD_TYPE_SCSI;
883
884 /* form UPIU before issuing the command */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530885 ufshcd_compose_upiu(hba, lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530886 err = ufshcd_map_sg(lrbp);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530887 if (err) {
888 lrbp->cmd = NULL;
889 clear_bit_unlock(tag, &hba->lrb_in_use);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530890 goto out;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530891 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +0530892
893 /* issue command to the controller */
894 spin_lock_irqsave(hba->host->host_lock, flags);
895 ufshcd_send_command(hba, tag);
896 spin_unlock_irqrestore(hba->host->host_lock, flags);
897out:
898 return err;
899}
900
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530901static int ufshcd_compose_dev_cmd(struct ufs_hba *hba,
902 struct ufshcd_lrb *lrbp, enum dev_cmd_type cmd_type, int tag)
903{
904 lrbp->cmd = NULL;
905 lrbp->sense_bufflen = 0;
906 lrbp->sense_buffer = NULL;
907 lrbp->task_tag = tag;
908 lrbp->lun = 0; /* device management cmd is not specific to any LUN */
909 lrbp->command_type = UTP_CMD_TYPE_DEV_MANAGE;
910 lrbp->intr_cmd = true; /* No interrupt aggregation */
911 hba->dev_cmd.type = cmd_type;
912
913 return ufshcd_compose_upiu(hba, lrbp);
914}
915
916static int
917ufshcd_clear_cmd(struct ufs_hba *hba, int tag)
918{
919 int err = 0;
920 unsigned long flags;
921 u32 mask = 1 << tag;
922
923 /* clear outstanding transaction before retry */
924 spin_lock_irqsave(hba->host->host_lock, flags);
925 ufshcd_utrl_clear(hba, tag);
926 spin_unlock_irqrestore(hba->host->host_lock, flags);
927
928 /*
929 * wait for for h/w to clear corresponding bit in door-bell.
930 * max. wait is 1 sec.
931 */
932 err = ufshcd_wait_for_register(hba,
933 REG_UTP_TRANSFER_REQ_DOOR_BELL,
934 mask, ~mask, 1000, 1000);
935
936 return err;
937}
938
939/**
940 * ufshcd_dev_cmd_completion() - handles device management command responses
941 * @hba: per adapter instance
942 * @lrbp: pointer to local reference block
943 */
944static int
945ufshcd_dev_cmd_completion(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
946{
947 int resp;
948 int err = 0;
949
950 resp = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
951
952 switch (resp) {
953 case UPIU_TRANSACTION_NOP_IN:
954 if (hba->dev_cmd.type != DEV_CMD_TYPE_NOP) {
955 err = -EINVAL;
956 dev_err(hba->dev, "%s: unexpected response %x\n",
957 __func__, resp);
958 }
959 break;
Dolev Raviv68078d52013-07-30 00:35:58 +0530960 case UPIU_TRANSACTION_QUERY_RSP:
961 ufshcd_copy_query_response(hba, lrbp);
962 break;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530963 case UPIU_TRANSACTION_REJECT_UPIU:
964 /* TODO: handle Reject UPIU Response */
965 err = -EPERM;
966 dev_err(hba->dev, "%s: Reject UPIU not fully implemented\n",
967 __func__);
968 break;
969 default:
970 err = -EINVAL;
971 dev_err(hba->dev, "%s: Invalid device management cmd response: %x\n",
972 __func__, resp);
973 break;
974 }
975
976 return err;
977}
978
979static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
980 struct ufshcd_lrb *lrbp, int max_timeout)
981{
982 int err = 0;
983 unsigned long time_left;
984 unsigned long flags;
985
986 time_left = wait_for_completion_timeout(hba->dev_cmd.complete,
987 msecs_to_jiffies(max_timeout));
988
989 spin_lock_irqsave(hba->host->host_lock, flags);
990 hba->dev_cmd.complete = NULL;
991 if (likely(time_left)) {
992 err = ufshcd_get_tr_ocs(lrbp);
993 if (!err)
994 err = ufshcd_dev_cmd_completion(hba, lrbp);
995 }
996 spin_unlock_irqrestore(hba->host->host_lock, flags);
997
998 if (!time_left) {
999 err = -ETIMEDOUT;
1000 if (!ufshcd_clear_cmd(hba, lrbp->task_tag))
1001 /* sucessfully cleared the command, retry if needed */
1002 err = -EAGAIN;
1003 }
1004
1005 return err;
1006}
1007
1008/**
1009 * ufshcd_get_dev_cmd_tag - Get device management command tag
1010 * @hba: per-adapter instance
1011 * @tag: pointer to variable with available slot value
1012 *
1013 * Get a free slot and lock it until device management command
1014 * completes.
1015 *
1016 * Returns false if free slot is unavailable for locking, else
1017 * return true with tag value in @tag.
1018 */
1019static bool ufshcd_get_dev_cmd_tag(struct ufs_hba *hba, int *tag_out)
1020{
1021 int tag;
1022 bool ret = false;
1023 unsigned long tmp;
1024
1025 if (!tag_out)
1026 goto out;
1027
1028 do {
1029 tmp = ~hba->lrb_in_use;
1030 tag = find_last_bit(&tmp, hba->nutrs);
1031 if (tag >= hba->nutrs)
1032 goto out;
1033 } while (test_and_set_bit_lock(tag, &hba->lrb_in_use));
1034
1035 *tag_out = tag;
1036 ret = true;
1037out:
1038 return ret;
1039}
1040
1041static inline void ufshcd_put_dev_cmd_tag(struct ufs_hba *hba, int tag)
1042{
1043 clear_bit_unlock(tag, &hba->lrb_in_use);
1044}
1045
1046/**
1047 * ufshcd_exec_dev_cmd - API for sending device management requests
1048 * @hba - UFS hba
1049 * @cmd_type - specifies the type (NOP, Query...)
1050 * @timeout - time in seconds
1051 *
Dolev Raviv68078d52013-07-30 00:35:58 +05301052 * NOTE: Since there is only one available tag for device management commands,
1053 * it is expected you hold the hba->dev_cmd.lock mutex.
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301054 */
1055static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
1056 enum dev_cmd_type cmd_type, int timeout)
1057{
1058 struct ufshcd_lrb *lrbp;
1059 int err;
1060 int tag;
1061 struct completion wait;
1062 unsigned long flags;
1063
1064 /*
1065 * Get free slot, sleep if slots are unavailable.
1066 * Even though we use wait_event() which sleeps indefinitely,
1067 * the maximum wait time is bounded by SCSI request timeout.
1068 */
1069 wait_event(hba->dev_cmd.tag_wq, ufshcd_get_dev_cmd_tag(hba, &tag));
1070
1071 init_completion(&wait);
1072 lrbp = &hba->lrb[tag];
1073 WARN_ON(lrbp->cmd);
1074 err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
1075 if (unlikely(err))
1076 goto out_put_tag;
1077
1078 hba->dev_cmd.complete = &wait;
1079
1080 spin_lock_irqsave(hba->host->host_lock, flags);
1081 ufshcd_send_command(hba, tag);
1082 spin_unlock_irqrestore(hba->host->host_lock, flags);
1083
1084 err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
1085
1086out_put_tag:
1087 ufshcd_put_dev_cmd_tag(hba, tag);
1088 wake_up(&hba->dev_cmd.tag_wq);
1089 return err;
1090}
1091
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301092/**
Dolev Raviv68078d52013-07-30 00:35:58 +05301093 * ufshcd_query_flag() - API function for sending flag query requests
1094 * hba: per-adapter instance
1095 * query_opcode: flag query to perform
1096 * idn: flag idn to access
1097 * flag_res: the flag value after the query request completes
1098 *
1099 * Returns 0 for success, non-zero in case of failure
1100 */
1101static int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
1102 enum flag_idn idn, bool *flag_res)
1103{
1104 struct ufs_query_req *request;
1105 struct ufs_query_res *response;
1106 int err;
1107
1108 BUG_ON(!hba);
1109
1110 mutex_lock(&hba->dev_cmd.lock);
1111 request = &hba->dev_cmd.query.request;
1112 response = &hba->dev_cmd.query.response;
1113 memset(request, 0, sizeof(struct ufs_query_req));
1114 memset(response, 0, sizeof(struct ufs_query_res));
1115
1116 switch (opcode) {
1117 case UPIU_QUERY_OPCODE_SET_FLAG:
1118 case UPIU_QUERY_OPCODE_CLEAR_FLAG:
1119 case UPIU_QUERY_OPCODE_TOGGLE_FLAG:
1120 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1121 break;
1122 case UPIU_QUERY_OPCODE_READ_FLAG:
1123 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1124 if (!flag_res) {
1125 /* No dummy reads */
1126 dev_err(hba->dev, "%s: Invalid argument for read request\n",
1127 __func__);
1128 err = -EINVAL;
1129 goto out_unlock;
1130 }
1131 break;
1132 default:
1133 dev_err(hba->dev,
1134 "%s: Expected query flag opcode but got = %d\n",
1135 __func__, opcode);
1136 err = -EINVAL;
1137 goto out_unlock;
1138 }
1139 request->upiu_req.opcode = opcode;
1140 request->upiu_req.idn = idn;
1141
1142 /* Send query request */
1143 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY,
1144 QUERY_REQ_TIMEOUT);
1145
1146 if (err) {
1147 dev_err(hba->dev,
1148 "%s: Sending flag query for idn %d failed, err = %d\n",
1149 __func__, idn, err);
1150 goto out_unlock;
1151 }
1152
1153 if (flag_res)
1154 *flag_res = (response->upiu_res.value &
1155 MASK_QUERY_UPIU_FLAG_LOC) & 0x1;
1156
1157out_unlock:
1158 mutex_unlock(&hba->dev_cmd.lock);
1159 return err;
1160}
1161
1162/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05301163 * ufshcd_query_attr - API function for sending attribute requests
1164 * hba: per-adapter instance
1165 * opcode: attribute opcode
1166 * idn: attribute idn to access
1167 * index: index field
1168 * selector: selector field
1169 * attr_val: the attribute value after the query request completes
1170 *
1171 * Returns 0 for success, non-zero in case of failure
1172*/
1173int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
1174 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val)
1175{
1176 struct ufs_query_req *request;
1177 struct ufs_query_res *response;
1178 int err;
1179
1180 BUG_ON(!hba);
1181
1182 if (!attr_val) {
1183 dev_err(hba->dev, "%s: attribute value required for opcode 0x%x\n",
1184 __func__, opcode);
1185 err = -EINVAL;
1186 goto out;
1187 }
1188
1189 mutex_lock(&hba->dev_cmd.lock);
1190 request = &hba->dev_cmd.query.request;
1191 response = &hba->dev_cmd.query.response;
1192 memset(request, 0, sizeof(struct ufs_query_req));
1193 memset(response, 0, sizeof(struct ufs_query_res));
1194
1195 switch (opcode) {
1196 case UPIU_QUERY_OPCODE_WRITE_ATTR:
1197 request->query_func = UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST;
1198 request->upiu_req.value = *attr_val;
1199 break;
1200 case UPIU_QUERY_OPCODE_READ_ATTR:
1201 request->query_func = UPIU_QUERY_FUNC_STANDARD_READ_REQUEST;
1202 break;
1203 default:
1204 dev_err(hba->dev, "%s: Expected query attr opcode but got = 0x%.2x\n",
1205 __func__, opcode);
1206 err = -EINVAL;
1207 goto out_unlock;
1208 }
1209
1210 request->upiu_req.opcode = opcode;
1211 request->upiu_req.idn = idn;
1212 request->upiu_req.index = index;
1213 request->upiu_req.selector = selector;
1214
1215 /* Send query request */
1216 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_QUERY,
1217 QUERY_REQ_TIMEOUT);
1218
1219 if (err) {
1220 dev_err(hba->dev, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1221 __func__, opcode, idn, err);
1222 goto out_unlock;
1223 }
1224
1225 *attr_val = response->upiu_res.value;
1226
1227out_unlock:
1228 mutex_unlock(&hba->dev_cmd.lock);
1229out:
1230 return err;
1231}
1232
1233/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301234 * ufshcd_memory_alloc - allocate memory for host memory space data structures
1235 * @hba: per adapter instance
1236 *
1237 * 1. Allocate DMA memory for Command Descriptor array
1238 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
1239 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
1240 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
1241 * (UTMRDL)
1242 * 4. Allocate memory for local reference block(lrb).
1243 *
1244 * Returns 0 for success, non-zero in case of failure
1245 */
1246static int ufshcd_memory_alloc(struct ufs_hba *hba)
1247{
1248 size_t utmrdl_size, utrdl_size, ucdl_size;
1249
1250 /* Allocate memory for UTP command descriptors */
1251 ucdl_size = (sizeof(struct utp_transfer_cmd_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09001252 hba->ucdl_base_addr = dmam_alloc_coherent(hba->dev,
1253 ucdl_size,
1254 &hba->ucdl_dma_addr,
1255 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301256
1257 /*
1258 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
1259 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
1260 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
1261 * be aligned to 128 bytes as well
1262 */
1263 if (!hba->ucdl_base_addr ||
1264 WARN_ON(hba->ucdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301265 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301266 "Command Descriptor Memory allocation failed\n");
1267 goto out;
1268 }
1269
1270 /*
1271 * Allocate memory for UTP Transfer descriptors
1272 * UFSHCI requires 1024 byte alignment of UTRD
1273 */
1274 utrdl_size = (sizeof(struct utp_transfer_req_desc) * hba->nutrs);
Seungwon Jeon2953f852013-06-27 13:31:54 +09001275 hba->utrdl_base_addr = dmam_alloc_coherent(hba->dev,
1276 utrdl_size,
1277 &hba->utrdl_dma_addr,
1278 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301279 if (!hba->utrdl_base_addr ||
1280 WARN_ON(hba->utrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301281 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301282 "Transfer Descriptor Memory allocation failed\n");
1283 goto out;
1284 }
1285
1286 /*
1287 * Allocate memory for UTP Task Management descriptors
1288 * UFSHCI requires 1024 byte alignment of UTMRD
1289 */
1290 utmrdl_size = sizeof(struct utp_task_req_desc) * hba->nutmrs;
Seungwon Jeon2953f852013-06-27 13:31:54 +09001291 hba->utmrdl_base_addr = dmam_alloc_coherent(hba->dev,
1292 utmrdl_size,
1293 &hba->utmrdl_dma_addr,
1294 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301295 if (!hba->utmrdl_base_addr ||
1296 WARN_ON(hba->utmrdl_dma_addr & (PAGE_SIZE - 1))) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301297 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301298 "Task Management Descriptor Memory allocation failed\n");
1299 goto out;
1300 }
1301
1302 /* Allocate memory for local reference block */
Seungwon Jeon2953f852013-06-27 13:31:54 +09001303 hba->lrb = devm_kzalloc(hba->dev,
1304 hba->nutrs * sizeof(struct ufshcd_lrb),
1305 GFP_KERNEL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301306 if (!hba->lrb) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301307 dev_err(hba->dev, "LRB Memory allocation failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301308 goto out;
1309 }
1310 return 0;
1311out:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301312 return -ENOMEM;
1313}
1314
1315/**
1316 * ufshcd_host_memory_configure - configure local reference block with
1317 * memory offsets
1318 * @hba: per adapter instance
1319 *
1320 * Configure Host memory space
1321 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
1322 * address.
1323 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
1324 * and PRDT offset.
1325 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
1326 * into local reference block.
1327 */
1328static void ufshcd_host_memory_configure(struct ufs_hba *hba)
1329{
1330 struct utp_transfer_cmd_desc *cmd_descp;
1331 struct utp_transfer_req_desc *utrdlp;
1332 dma_addr_t cmd_desc_dma_addr;
1333 dma_addr_t cmd_desc_element_addr;
1334 u16 response_offset;
1335 u16 prdt_offset;
1336 int cmd_desc_size;
1337 int i;
1338
1339 utrdlp = hba->utrdl_base_addr;
1340 cmd_descp = hba->ucdl_base_addr;
1341
1342 response_offset =
1343 offsetof(struct utp_transfer_cmd_desc, response_upiu);
1344 prdt_offset =
1345 offsetof(struct utp_transfer_cmd_desc, prd_table);
1346
1347 cmd_desc_size = sizeof(struct utp_transfer_cmd_desc);
1348 cmd_desc_dma_addr = hba->ucdl_dma_addr;
1349
1350 for (i = 0; i < hba->nutrs; i++) {
1351 /* Configure UTRD with command descriptor base address */
1352 cmd_desc_element_addr =
1353 (cmd_desc_dma_addr + (cmd_desc_size * i));
1354 utrdlp[i].command_desc_base_addr_lo =
1355 cpu_to_le32(lower_32_bits(cmd_desc_element_addr));
1356 utrdlp[i].command_desc_base_addr_hi =
1357 cpu_to_le32(upper_32_bits(cmd_desc_element_addr));
1358
1359 /* Response upiu and prdt offset should be in double words */
1360 utrdlp[i].response_upiu_offset =
1361 cpu_to_le16((response_offset >> 2));
1362 utrdlp[i].prd_table_offset =
1363 cpu_to_le16((prdt_offset >> 2));
1364 utrdlp[i].response_upiu_length =
Sujit Reddy Thumma3ca316c2013-06-26 22:39:30 +05301365 cpu_to_le16(ALIGNED_UPIU_SIZE >> 2);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301366
1367 hba->lrb[i].utr_descriptor_ptr = (utrdlp + i);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301368 hba->lrb[i].ucd_req_ptr =
1369 (struct utp_upiu_req *)(cmd_descp + i);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301370 hba->lrb[i].ucd_rsp_ptr =
1371 (struct utp_upiu_rsp *)cmd_descp[i].response_upiu;
1372 hba->lrb[i].ucd_prdt_ptr =
1373 (struct ufshcd_sg_entry *)cmd_descp[i].prd_table;
1374 }
1375}
1376
1377/**
1378 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
1379 * @hba: per adapter instance
1380 *
1381 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
1382 * in order to initialize the Unipro link startup procedure.
1383 * Once the Unipro links are up, the device connected to the controller
1384 * is detected.
1385 *
1386 * Returns 0 on success, non-zero value on failure
1387 */
1388static int ufshcd_dme_link_startup(struct ufs_hba *hba)
1389{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301390 struct uic_command uic_cmd = {0};
1391 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301392
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301393 uic_cmd.command = UIC_CMD_DME_LINK_STARTUP;
1394
1395 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
1396 if (ret)
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301397 dev_err(hba->dev,
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301398 "dme-link-startup: error code %d\n", ret);
1399 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301400}
1401
1402/**
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05301403 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
1404 * @hba: per adapter instance
1405 * @attr_sel: uic command argument1
1406 * @attr_set: attribute set type as uic command argument2
1407 * @mib_val: setting value as uic command argument3
1408 * @peer: indicate whether peer or local
1409 *
1410 * Returns 0 on success, non-zero value on failure
1411 */
1412int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
1413 u8 attr_set, u32 mib_val, u8 peer)
1414{
1415 struct uic_command uic_cmd = {0};
1416 static const char *const action[] = {
1417 "dme-set",
1418 "dme-peer-set"
1419 };
1420 const char *set = action[!!peer];
1421 int ret;
1422
1423 uic_cmd.command = peer ?
1424 UIC_CMD_DME_PEER_SET : UIC_CMD_DME_SET;
1425 uic_cmd.argument1 = attr_sel;
1426 uic_cmd.argument2 = UIC_ARG_ATTR_TYPE(attr_set);
1427 uic_cmd.argument3 = mib_val;
1428
1429 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
1430 if (ret)
1431 dev_err(hba->dev, "%s: attr-id 0x%x val 0x%x error code %d\n",
1432 set, UIC_GET_ATTR_ID(attr_sel), mib_val, ret);
1433
1434 return ret;
1435}
1436EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr);
1437
1438/**
1439 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
1440 * @hba: per adapter instance
1441 * @attr_sel: uic command argument1
1442 * @mib_val: the value of the attribute as returned by the UIC command
1443 * @peer: indicate whether peer or local
1444 *
1445 * Returns 0 on success, non-zero value on failure
1446 */
1447int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
1448 u32 *mib_val, u8 peer)
1449{
1450 struct uic_command uic_cmd = {0};
1451 static const char *const action[] = {
1452 "dme-get",
1453 "dme-peer-get"
1454 };
1455 const char *get = action[!!peer];
1456 int ret;
1457
1458 uic_cmd.command = peer ?
1459 UIC_CMD_DME_PEER_GET : UIC_CMD_DME_GET;
1460 uic_cmd.argument1 = attr_sel;
1461
1462 ret = ufshcd_send_uic_cmd(hba, &uic_cmd);
1463 if (ret) {
1464 dev_err(hba->dev, "%s: attr-id 0x%x error code %d\n",
1465 get, UIC_GET_ATTR_ID(attr_sel), ret);
1466 goto out;
1467 }
1468
1469 if (mib_val)
1470 *mib_val = uic_cmd.argument3;
1471out:
1472 return ret;
1473}
1474EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr);
1475
1476/**
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05301477 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
1478 * using DME_SET primitives.
1479 * @hba: per adapter instance
1480 * @mode: powr mode value
1481 *
1482 * Returns 0 on success, non-zero value on failure
1483 */
1484int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode)
1485{
1486 struct uic_command uic_cmd = {0};
1487 struct completion pwr_done;
1488 unsigned long flags;
1489 u8 status;
1490 int ret;
1491
1492 uic_cmd.command = UIC_CMD_DME_SET;
1493 uic_cmd.argument1 = UIC_ARG_MIB(PA_PWRMODE);
1494 uic_cmd.argument3 = mode;
1495 init_completion(&pwr_done);
1496
1497 mutex_lock(&hba->uic_cmd_mutex);
1498
1499 spin_lock_irqsave(hba->host->host_lock, flags);
1500 hba->pwr_done = &pwr_done;
1501 spin_unlock_irqrestore(hba->host->host_lock, flags);
1502 ret = __ufshcd_send_uic_cmd(hba, &uic_cmd);
1503 if (ret) {
1504 dev_err(hba->dev,
1505 "pwr mode change with mode 0x%x uic error %d\n",
1506 mode, ret);
1507 goto out;
1508 }
1509
1510 if (!wait_for_completion_timeout(hba->pwr_done,
1511 msecs_to_jiffies(UIC_CMD_TIMEOUT))) {
1512 dev_err(hba->dev,
1513 "pwr mode change with mode 0x%x completion timeout\n",
1514 mode);
1515 ret = -ETIMEDOUT;
1516 goto out;
1517 }
1518
1519 status = ufshcd_get_upmcrs(hba);
1520 if (status != PWR_LOCAL) {
1521 dev_err(hba->dev,
1522 "pwr mode change failed, host umpcrs:0x%x\n",
1523 status);
1524 ret = (status != PWR_OK) ? status : -1;
1525 }
1526out:
1527 spin_lock_irqsave(hba->host->host_lock, flags);
1528 hba->pwr_done = NULL;
1529 spin_unlock_irqrestore(hba->host->host_lock, flags);
1530 mutex_unlock(&hba->uic_cmd_mutex);
1531 return ret;
1532}
1533
1534/**
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05301535 * ufshcd_config_max_pwr_mode - Set & Change power mode with
1536 * maximum capability attribute information.
1537 * @hba: per adapter instance
1538 *
1539 * Returns 0 on success, non-zero value on failure
1540 */
1541static int ufshcd_config_max_pwr_mode(struct ufs_hba *hba)
1542{
1543 enum {RX = 0, TX = 1};
1544 u32 lanes[] = {1, 1};
1545 u32 gear[] = {1, 1};
1546 u8 pwr[] = {FASTAUTO_MODE, FASTAUTO_MODE};
1547 int ret;
1548
1549 /* Get the connected lane count */
1550 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES), &lanes[RX]);
1551 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES), &lanes[TX]);
1552
1553 /*
1554 * First, get the maximum gears of HS speed.
1555 * If a zero value, it means there is no HSGEAR capability.
1556 * Then, get the maximum gears of PWM speed.
1557 */
1558 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &gear[RX]);
1559 if (!gear[RX]) {
1560 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR), &gear[RX]);
1561 pwr[RX] = SLOWAUTO_MODE;
1562 }
1563
1564 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXHSGEAR), &gear[TX]);
1565 if (!gear[TX]) {
1566 ufshcd_dme_peer_get(hba, UIC_ARG_MIB(PA_MAXRXPWMGEAR),
1567 &gear[TX]);
1568 pwr[TX] = SLOWAUTO_MODE;
1569 }
1570
1571 /*
1572 * Configure attributes for power mode change with below.
1573 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
1574 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
1575 * - PA_HSSERIES
1576 */
1577 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXGEAR), gear[RX]);
1578 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVERXDATALANES), lanes[RX]);
1579 if (pwr[RX] == FASTAUTO_MODE)
1580 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), TRUE);
1581
1582 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXGEAR), gear[TX]);
1583 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_ACTIVETXDATALANES), lanes[TX]);
1584 if (pwr[TX] == FASTAUTO_MODE)
1585 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), TRUE);
1586
1587 if (pwr[RX] == FASTAUTO_MODE || pwr[TX] == FASTAUTO_MODE)
1588 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HSSERIES), PA_HS_MODE_B);
1589
1590 ret = ufshcd_uic_change_pwr_mode(hba, pwr[RX] << 4 | pwr[TX]);
1591 if (ret)
1592 dev_err(hba->dev,
1593 "pwr_mode: power mode change failed %d\n", ret);
1594
1595 return ret;
1596}
1597
1598/**
Dolev Raviv68078d52013-07-30 00:35:58 +05301599 * ufshcd_complete_dev_init() - checks device readiness
1600 * hba: per-adapter instance
1601 *
1602 * Set fDeviceInit flag and poll until device toggles it.
1603 */
1604static int ufshcd_complete_dev_init(struct ufs_hba *hba)
1605{
1606 int i, retries, err = 0;
1607 bool flag_res = 1;
1608
1609 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
1610 /* Set the fDeviceInit flag */
1611 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_SET_FLAG,
1612 QUERY_FLAG_IDN_FDEVICEINIT, NULL);
1613 if (!err || err == -ETIMEDOUT)
1614 break;
1615 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
1616 }
1617 if (err) {
1618 dev_err(hba->dev,
1619 "%s setting fDeviceInit flag failed with error %d\n",
1620 __func__, err);
1621 goto out;
1622 }
1623
1624 /* poll for max. 100 iterations for fDeviceInit flag to clear */
1625 for (i = 0; i < 100 && !err && flag_res; i++) {
1626 for (retries = QUERY_REQ_RETRIES; retries > 0; retries--) {
1627 err = ufshcd_query_flag(hba,
1628 UPIU_QUERY_OPCODE_READ_FLAG,
1629 QUERY_FLAG_IDN_FDEVICEINIT, &flag_res);
1630 if (!err || err == -ETIMEDOUT)
1631 break;
1632 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__,
1633 err);
1634 }
1635 }
1636 if (err)
1637 dev_err(hba->dev,
1638 "%s reading fDeviceInit flag failed with error %d\n",
1639 __func__, err);
1640 else if (flag_res)
1641 dev_err(hba->dev,
1642 "%s fDeviceInit was not cleared by the device\n",
1643 __func__);
1644
1645out:
1646 return err;
1647}
1648
1649/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301650 * ufshcd_make_hba_operational - Make UFS controller operational
1651 * @hba: per adapter instance
1652 *
1653 * To bring UFS host controller to operational state,
1654 * 1. Check if device is present
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301655 * 2. Enable required interrupts
1656 * 3. Configure interrupt aggregation
1657 * 4. Program UTRL and UTMRL base addres
1658 * 5. Configure run-stop-registers
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301659 *
1660 * Returns 0 on success, non-zero value on failure
1661 */
1662static int ufshcd_make_hba_operational(struct ufs_hba *hba)
1663{
1664 int err = 0;
1665 u32 reg;
1666
1667 /* check if device present */
Seungwon Jeonb873a2752013-06-26 22:39:26 +05301668 reg = ufshcd_readl(hba, REG_CONTROLLER_STATUS);
Venkatraman S73ec5132012-07-10 19:39:23 +05301669 if (!ufshcd_is_device_present(reg)) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301670 dev_err(hba->dev, "cc: Device not present\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301671 err = -ENXIO;
1672 goto out;
1673 }
1674
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301675 /* Enable required interrupts */
1676 ufshcd_enable_intr(hba, UFSHCD_ENABLE_INTRS);
1677
1678 /* Configure interrupt aggregation */
Seungwon Jeon7d568652013-08-31 21:40:20 +05301679 ufshcd_config_intr_aggr(hba, hba->nutrs - 1, INT_AGGR_DEF_TO);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301680
1681 /* Configure UTRL and UTMRL base address registers */
1682 ufshcd_writel(hba, lower_32_bits(hba->utrdl_dma_addr),
1683 REG_UTP_TRANSFER_REQ_LIST_BASE_L);
1684 ufshcd_writel(hba, upper_32_bits(hba->utrdl_dma_addr),
1685 REG_UTP_TRANSFER_REQ_LIST_BASE_H);
1686 ufshcd_writel(hba, lower_32_bits(hba->utmrdl_dma_addr),
1687 REG_UTP_TASK_REQ_LIST_BASE_L);
1688 ufshcd_writel(hba, upper_32_bits(hba->utmrdl_dma_addr),
1689 REG_UTP_TASK_REQ_LIST_BASE_H);
1690
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301691 /*
1692 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
1693 * DEI, HEI bits must be 0
1694 */
1695 if (!(ufshcd_get_lists_status(reg))) {
1696 ufshcd_enable_run_stop_reg(hba);
1697 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301698 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301699 "Host controller not ready to process requests");
1700 err = -EIO;
1701 goto out;
1702 }
1703
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301704 if (hba->ufshcd_state == UFSHCD_STATE_RESET)
1705 scsi_unblock_requests(hba->host);
1706
1707 hba->ufshcd_state = UFSHCD_STATE_OPERATIONAL;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301708
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301709out:
1710 return err;
1711}
1712
1713/**
1714 * ufshcd_hba_enable - initialize the controller
1715 * @hba: per adapter instance
1716 *
1717 * The controller resets itself and controller firmware initialization
1718 * sequence kicks off. When controller is ready it will set
1719 * the Host Controller Enable bit to 1.
1720 *
1721 * Returns 0 on success, non-zero value on failure
1722 */
1723static int ufshcd_hba_enable(struct ufs_hba *hba)
1724{
1725 int retry;
1726
1727 /*
1728 * msleep of 1 and 5 used in this function might result in msleep(20),
1729 * but it was necessary to send the UFS FPGA to reset mode during
1730 * development and testing of this driver. msleep can be changed to
1731 * mdelay and retry count can be reduced based on the controller.
1732 */
1733 if (!ufshcd_is_hba_active(hba)) {
1734
1735 /* change controller state to "reset state" */
1736 ufshcd_hba_stop(hba);
1737
1738 /*
1739 * This delay is based on the testing done with UFS host
1740 * controller FPGA. The delay can be changed based on the
1741 * host controller used.
1742 */
1743 msleep(5);
1744 }
1745
1746 /* start controller initialization sequence */
1747 ufshcd_hba_start(hba);
1748
1749 /*
1750 * To initialize a UFS host controller HCE bit must be set to 1.
1751 * During initialization the HCE bit value changes from 1->0->1.
1752 * When the host controller completes initialization sequence
1753 * it sets the value of HCE bit to 1. The same HCE bit is read back
1754 * to check if the controller has completed initialization sequence.
1755 * So without this delay the value HCE = 1, set in the previous
1756 * instruction might be read back.
1757 * This delay can be changed based on the controller.
1758 */
1759 msleep(1);
1760
1761 /* wait for the host controller to complete initialization */
1762 retry = 10;
1763 while (ufshcd_is_hba_active(hba)) {
1764 if (retry) {
1765 retry--;
1766 } else {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301767 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301768 "Controller enable failed\n");
1769 return -EIO;
1770 }
1771 msleep(5);
1772 }
1773 return 0;
1774}
1775
1776/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301777 * ufshcd_link_startup - Initialize unipro link startup
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301778 * @hba: per adapter instance
1779 *
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301780 * Returns 0 for success, non-zero in case of failure
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301781 */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301782static int ufshcd_link_startup(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301783{
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301784 int ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301785
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301786 /* enable UIC related interrupts */
1787 ufshcd_enable_intr(hba, UIC_COMMAND_COMPL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301788
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301789 ret = ufshcd_dme_link_startup(hba);
1790 if (ret)
1791 goto out;
1792
1793 ret = ufshcd_make_hba_operational(hba);
1794
1795out:
1796 if (ret)
1797 dev_err(hba->dev, "link startup failed %d\n", ret);
1798 return ret;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301799}
1800
1801/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301802 * ufshcd_verify_dev_init() - Verify device initialization
1803 * @hba: per-adapter instance
1804 *
1805 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
1806 * device Transport Protocol (UTP) layer is ready after a reset.
1807 * If the UTP layer at the device side is not initialized, it may
1808 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
1809 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
1810 */
1811static int ufshcd_verify_dev_init(struct ufs_hba *hba)
1812{
1813 int err = 0;
1814 int retries;
1815
1816 mutex_lock(&hba->dev_cmd.lock);
1817 for (retries = NOP_OUT_RETRIES; retries > 0; retries--) {
1818 err = ufshcd_exec_dev_cmd(hba, DEV_CMD_TYPE_NOP,
1819 NOP_OUT_TIMEOUT);
1820
1821 if (!err || err == -ETIMEDOUT)
1822 break;
1823
1824 dev_dbg(hba->dev, "%s: error %d retrying\n", __func__, err);
1825 }
1826 mutex_unlock(&hba->dev_cmd.lock);
1827
1828 if (err)
1829 dev_err(hba->dev, "%s: NOP OUT failed %d\n", __func__, err);
1830 return err;
1831}
1832
1833/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301834 * ufshcd_do_reset - reset the host controller
1835 * @hba: per adapter instance
1836 *
1837 * Returns SUCCESS/FAILED
1838 */
1839static int ufshcd_do_reset(struct ufs_hba *hba)
1840{
1841 struct ufshcd_lrb *lrbp;
1842 unsigned long flags;
1843 int tag;
1844
1845 /* block commands from midlayer */
1846 scsi_block_requests(hba->host);
1847
1848 spin_lock_irqsave(hba->host->host_lock, flags);
1849 hba->ufshcd_state = UFSHCD_STATE_RESET;
1850
1851 /* send controller to reset state */
1852 ufshcd_hba_stop(hba);
1853 spin_unlock_irqrestore(hba->host->host_lock, flags);
1854
1855 /* abort outstanding commands */
1856 for (tag = 0; tag < hba->nutrs; tag++) {
1857 if (test_bit(tag, &hba->outstanding_reqs)) {
1858 lrbp = &hba->lrb[tag];
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301859 if (lrbp->cmd) {
1860 scsi_dma_unmap(lrbp->cmd);
1861 lrbp->cmd->result = DID_RESET << 16;
1862 lrbp->cmd->scsi_done(lrbp->cmd);
1863 lrbp->cmd = NULL;
1864 clear_bit_unlock(tag, &hba->lrb_in_use);
1865 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301866 }
1867 }
1868
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05301869 /* complete device management command */
1870 if (hba->dev_cmd.complete)
1871 complete(hba->dev_cmd.complete);
1872
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301873 /* clear outstanding request/task bit maps */
1874 hba->outstanding_reqs = 0;
1875 hba->outstanding_tasks = 0;
1876
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301877 /* Host controller enable */
1878 if (ufshcd_hba_enable(hba)) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301879 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301880 "Reset: Controller initialization failed\n");
1881 return FAILED;
1882 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05301883
1884 if (ufshcd_link_startup(hba)) {
1885 dev_err(hba->dev,
1886 "Reset: Link start-up failed\n");
1887 return FAILED;
1888 }
1889
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301890 return SUCCESS;
1891}
1892
1893/**
1894 * ufshcd_slave_alloc - handle initial SCSI device configurations
1895 * @sdev: pointer to SCSI device
1896 *
1897 * Returns success
1898 */
1899static int ufshcd_slave_alloc(struct scsi_device *sdev)
1900{
1901 struct ufs_hba *hba;
1902
1903 hba = shost_priv(sdev->host);
1904 sdev->tagged_supported = 1;
1905
1906 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
1907 sdev->use_10_for_ms = 1;
1908 scsi_set_tag_type(sdev, MSG_SIMPLE_TAG);
1909
1910 /*
1911 * Inform SCSI Midlayer that the LUN queue depth is same as the
1912 * controller queue depth. If a LUN queue depth is less than the
1913 * controller queue depth and if the LUN reports
1914 * SAM_STAT_TASK_SET_FULL, the LUN queue depth will be adjusted
1915 * with scsi_adjust_queue_depth.
1916 */
1917 scsi_activate_tcq(sdev, hba->nutrs);
1918 return 0;
1919}
1920
1921/**
1922 * ufshcd_slave_destroy - remove SCSI device configurations
1923 * @sdev: pointer to SCSI device
1924 */
1925static void ufshcd_slave_destroy(struct scsi_device *sdev)
1926{
1927 struct ufs_hba *hba;
1928
1929 hba = shost_priv(sdev->host);
1930 scsi_deactivate_tcq(sdev, hba->nutrs);
1931}
1932
1933/**
1934 * ufshcd_task_req_compl - handle task management request completion
1935 * @hba: per adapter instance
1936 * @index: index of the completed request
1937 *
1938 * Returns SUCCESS/FAILED
1939 */
1940static int ufshcd_task_req_compl(struct ufs_hba *hba, u32 index)
1941{
1942 struct utp_task_req_desc *task_req_descp;
1943 struct utp_upiu_task_rsp *task_rsp_upiup;
1944 unsigned long flags;
1945 int ocs_value;
1946 int task_result;
1947
1948 spin_lock_irqsave(hba->host->host_lock, flags);
1949
1950 /* Clear completed tasks from outstanding_tasks */
1951 __clear_bit(index, &hba->outstanding_tasks);
1952
1953 task_req_descp = hba->utmrdl_base_addr;
1954 ocs_value = ufshcd_get_tmr_ocs(&task_req_descp[index]);
1955
1956 if (ocs_value == OCS_SUCCESS) {
1957 task_rsp_upiup = (struct utp_upiu_task_rsp *)
1958 task_req_descp[index].task_rsp_upiu;
1959 task_result = be32_to_cpu(task_rsp_upiup->header.dword_1);
1960 task_result = ((task_result & MASK_TASK_RESPONSE) >> 8);
1961
Venkatraman Sfd0f8372012-04-19 11:46:22 +05301962 if (task_result != UPIU_TASK_MANAGEMENT_FUNC_COMPL &&
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301963 task_result != UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED)
1964 task_result = FAILED;
Namjae Jeon94c122a2012-07-10 20:41:54 +05301965 else
1966 task_result = SUCCESS;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301967 } else {
1968 task_result = FAILED;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05301969 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05301970 "trc: Invalid ocs = %x\n", ocs_value);
1971 }
1972 spin_unlock_irqrestore(hba->host->host_lock, flags);
1973 return task_result;
1974}
1975
1976/**
1977 * ufshcd_adjust_lun_qdepth - Update LUN queue depth if device responds with
1978 * SAM_STAT_TASK_SET_FULL SCSI command status.
1979 * @cmd: pointer to SCSI command
1980 */
1981static void ufshcd_adjust_lun_qdepth(struct scsi_cmnd *cmd)
1982{
1983 struct ufs_hba *hba;
1984 int i;
1985 int lun_qdepth = 0;
1986
1987 hba = shost_priv(cmd->device->host);
1988
1989 /*
1990 * LUN queue depth can be obtained by counting outstanding commands
1991 * on the LUN.
1992 */
1993 for (i = 0; i < hba->nutrs; i++) {
1994 if (test_bit(i, &hba->outstanding_reqs)) {
1995
1996 /*
1997 * Check if the outstanding command belongs
1998 * to the LUN which reported SAM_STAT_TASK_SET_FULL.
1999 */
2000 if (cmd->device->lun == hba->lrb[i].lun)
2001 lun_qdepth++;
2002 }
2003 }
2004
2005 /*
2006 * LUN queue depth will be total outstanding commands, except the
2007 * command for which the LUN reported SAM_STAT_TASK_SET_FULL.
2008 */
2009 scsi_adjust_queue_depth(cmd->device, MSG_SIMPLE_TAG, lun_qdepth - 1);
2010}
2011
2012/**
2013 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
2014 * @lrb: pointer to local reference block of completed command
2015 * @scsi_status: SCSI command status
2016 *
2017 * Returns value base on SCSI command status
2018 */
2019static inline int
2020ufshcd_scsi_cmd_status(struct ufshcd_lrb *lrbp, int scsi_status)
2021{
2022 int result = 0;
2023
2024 switch (scsi_status) {
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302025 case SAM_STAT_CHECK_CONDITION:
2026 ufshcd_copy_sense_data(lrbp);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302027 case SAM_STAT_GOOD:
2028 result |= DID_OK << 16 |
2029 COMMAND_COMPLETE << 8 |
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302030 scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302031 break;
2032 case SAM_STAT_TASK_SET_FULL:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302033 /*
2034 * If a LUN reports SAM_STAT_TASK_SET_FULL, then the LUN queue
2035 * depth needs to be adjusted to the exact number of
2036 * outstanding commands the LUN can handle at any given time.
2037 */
2038 ufshcd_adjust_lun_qdepth(lrbp->cmd);
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302039 case SAM_STAT_BUSY:
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302040 case SAM_STAT_TASK_ABORTED:
Seungwon Jeon1c2623c2013-08-31 21:40:19 +05302041 ufshcd_copy_sense_data(lrbp);
2042 result |= scsi_status;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302043 break;
2044 default:
2045 result |= DID_ERROR << 16;
2046 break;
2047 } /* end of switch */
2048
2049 return result;
2050}
2051
2052/**
2053 * ufshcd_transfer_rsp_status - Get overall status of the response
2054 * @hba: per adapter instance
2055 * @lrb: pointer to local reference block of completed command
2056 *
2057 * Returns result of the command to notify SCSI midlayer
2058 */
2059static inline int
2060ufshcd_transfer_rsp_status(struct ufs_hba *hba, struct ufshcd_lrb *lrbp)
2061{
2062 int result = 0;
2063 int scsi_status;
2064 int ocs;
2065
2066 /* overall command status of utrd */
2067 ocs = ufshcd_get_tr_ocs(lrbp);
2068
2069 switch (ocs) {
2070 case OCS_SUCCESS:
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302071 result = ufshcd_get_req_rsp(lrbp->ucd_rsp_ptr);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302072
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302073 switch (result) {
2074 case UPIU_TRANSACTION_RESPONSE:
2075 /*
2076 * get the response UPIU result to extract
2077 * the SCSI command status
2078 */
2079 result = ufshcd_get_rsp_upiu_result(lrbp->ucd_rsp_ptr);
2080
2081 /*
2082 * get the result based on SCSI status response
2083 * to notify the SCSI midlayer of the command status
2084 */
2085 scsi_status = result & MASK_SCSI_STATUS;
2086 result = ufshcd_scsi_cmd_status(lrbp, scsi_status);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302087
2088 if (ufshcd_is_exception_event(lrbp->ucd_rsp_ptr))
2089 schedule_work(&hba->eeh_work);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302090 break;
2091 case UPIU_TRANSACTION_REJECT_UPIU:
2092 /* TODO: handle Reject UPIU Response */
2093 result = DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302094 dev_err(hba->dev,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302095 "Reject UPIU not fully implemented\n");
2096 break;
2097 default:
2098 result = DID_ERROR << 16;
2099 dev_err(hba->dev,
2100 "Unexpected request response code = %x\n",
2101 result);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302102 break;
2103 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302104 break;
2105 case OCS_ABORTED:
2106 result |= DID_ABORT << 16;
2107 break;
2108 case OCS_INVALID_CMD_TABLE_ATTR:
2109 case OCS_INVALID_PRDT_ATTR:
2110 case OCS_MISMATCH_DATA_BUF_SIZE:
2111 case OCS_MISMATCH_RESP_UPIU_SIZE:
2112 case OCS_PEER_COMM_FAILURE:
2113 case OCS_FATAL_ERROR:
2114 default:
2115 result |= DID_ERROR << 16;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302116 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302117 "OCS error from controller = %x\n", ocs);
2118 break;
2119 } /* end of switch */
2120
2121 return result;
2122}
2123
2124/**
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302125 * ufshcd_uic_cmd_compl - handle completion of uic command
2126 * @hba: per adapter instance
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302127 * @intr_status: interrupt status generated by the controller
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302128 */
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302129static void ufshcd_uic_cmd_compl(struct ufs_hba *hba, u32 intr_status)
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302130{
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302131 if ((intr_status & UIC_COMMAND_COMPL) && hba->active_uic_cmd) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302132 hba->active_uic_cmd->argument2 |=
2133 ufshcd_get_uic_cmd_result(hba);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +05302134 hba->active_uic_cmd->argument3 =
2135 ufshcd_get_dme_attr_val(hba);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302136 complete(&hba->active_uic_cmd->done);
2137 }
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302138
2139 if ((intr_status & UIC_POWER_MODE) && hba->pwr_done)
2140 complete(hba->pwr_done);
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302141}
2142
2143/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302144 * ufshcd_transfer_req_compl - handle SCSI and query command completion
2145 * @hba: per adapter instance
2146 */
2147static void ufshcd_transfer_req_compl(struct ufs_hba *hba)
2148{
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302149 struct ufshcd_lrb *lrbp;
2150 struct scsi_cmnd *cmd;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302151 unsigned long completed_reqs;
2152 u32 tr_doorbell;
2153 int result;
2154 int index;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302155 bool int_aggr_reset = false;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302156
Seungwon Jeonb873a2752013-06-26 22:39:26 +05302157 tr_doorbell = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302158 completed_reqs = tr_doorbell ^ hba->outstanding_reqs;
2159
2160 for (index = 0; index < hba->nutrs; index++) {
2161 if (test_bit(index, &completed_reqs)) {
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302162 lrbp = &hba->lrb[index];
2163 cmd = lrbp->cmd;
2164 /*
2165 * Don't skip resetting interrupt aggregation counters
2166 * if a regular command is present.
2167 */
2168 int_aggr_reset |= !lrbp->intr_cmd;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302169
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302170 if (cmd) {
2171 result = ufshcd_transfer_rsp_status(hba, lrbp);
2172 scsi_dma_unmap(cmd);
2173 cmd->result = result;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302174 /* Mark completed command as NULL in LRB */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302175 lrbp->cmd = NULL;
2176 clear_bit_unlock(index, &hba->lrb_in_use);
2177 /* Do not touch lrbp after scsi done */
2178 cmd->scsi_done(cmd);
2179 } else if (lrbp->command_type ==
2180 UTP_CMD_TYPE_DEV_MANAGE) {
2181 if (hba->dev_cmd.complete)
2182 complete(hba->dev_cmd.complete);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302183 }
2184 } /* end of if */
2185 } /* end of for */
2186
2187 /* clear corresponding bits of completed commands */
2188 hba->outstanding_reqs ^= completed_reqs;
2189
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302190 /* we might have free'd some tags above */
2191 wake_up(&hba->dev_cmd.tag_wq);
2192
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302193 /* Reset interrupt aggregation counters */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302194 if (int_aggr_reset)
Seungwon Jeon7d568652013-08-31 21:40:20 +05302195 ufshcd_reset_intr_aggr(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302196}
2197
2198/**
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302199 * ufshcd_disable_ee - disable exception event
2200 * @hba: per-adapter instance
2201 * @mask: exception event to disable
2202 *
2203 * Disables exception event in the device so that the EVENT_ALERT
2204 * bit is not set.
2205 *
2206 * Returns zero on success, non-zero error value on failure.
2207 */
2208static int ufshcd_disable_ee(struct ufs_hba *hba, u16 mask)
2209{
2210 int err = 0;
2211 u32 val;
2212
2213 if (!(hba->ee_ctrl_mask & mask))
2214 goto out;
2215
2216 val = hba->ee_ctrl_mask & ~mask;
2217 val &= 0xFFFF; /* 2 bytes */
2218 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
2219 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
2220 if (!err)
2221 hba->ee_ctrl_mask &= ~mask;
2222out:
2223 return err;
2224}
2225
2226/**
2227 * ufshcd_enable_ee - enable exception event
2228 * @hba: per-adapter instance
2229 * @mask: exception event to enable
2230 *
2231 * Enable corresponding exception event in the device to allow
2232 * device to alert host in critical scenarios.
2233 *
2234 * Returns zero on success, non-zero error value on failure.
2235 */
2236static int ufshcd_enable_ee(struct ufs_hba *hba, u16 mask)
2237{
2238 int err = 0;
2239 u32 val;
2240
2241 if (hba->ee_ctrl_mask & mask)
2242 goto out;
2243
2244 val = hba->ee_ctrl_mask | mask;
2245 val &= 0xFFFF; /* 2 bytes */
2246 err = ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_WRITE_ATTR,
2247 QUERY_ATTR_IDN_EE_CONTROL, 0, 0, &val);
2248 if (!err)
2249 hba->ee_ctrl_mask |= mask;
2250out:
2251 return err;
2252}
2253
2254/**
2255 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
2256 * @hba: per-adapter instance
2257 *
2258 * Allow device to manage background operations on its own. Enabling
2259 * this might lead to inconsistent latencies during normal data transfers
2260 * as the device is allowed to manage its own way of handling background
2261 * operations.
2262 *
2263 * Returns zero on success, non-zero on failure.
2264 */
2265static int ufshcd_enable_auto_bkops(struct ufs_hba *hba)
2266{
2267 int err = 0;
2268
2269 if (hba->auto_bkops_enabled)
2270 goto out;
2271
2272 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_SET_FLAG,
2273 QUERY_FLAG_IDN_BKOPS_EN, NULL);
2274 if (err) {
2275 dev_err(hba->dev, "%s: failed to enable bkops %d\n",
2276 __func__, err);
2277 goto out;
2278 }
2279
2280 hba->auto_bkops_enabled = true;
2281
2282 /* No need of URGENT_BKOPS exception from the device */
2283 err = ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
2284 if (err)
2285 dev_err(hba->dev, "%s: failed to disable exception event %d\n",
2286 __func__, err);
2287out:
2288 return err;
2289}
2290
2291/**
2292 * ufshcd_disable_auto_bkops - block device in doing background operations
2293 * @hba: per-adapter instance
2294 *
2295 * Disabling background operations improves command response latency but
2296 * has drawback of device moving into critical state where the device is
2297 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
2298 * host is idle so that BKOPS are managed effectively without any negative
2299 * impacts.
2300 *
2301 * Returns zero on success, non-zero on failure.
2302 */
2303static int ufshcd_disable_auto_bkops(struct ufs_hba *hba)
2304{
2305 int err = 0;
2306
2307 if (!hba->auto_bkops_enabled)
2308 goto out;
2309
2310 /*
2311 * If host assisted BKOPs is to be enabled, make sure
2312 * urgent bkops exception is allowed.
2313 */
2314 err = ufshcd_enable_ee(hba, MASK_EE_URGENT_BKOPS);
2315 if (err) {
2316 dev_err(hba->dev, "%s: failed to enable exception event %d\n",
2317 __func__, err);
2318 goto out;
2319 }
2320
2321 err = ufshcd_query_flag(hba, UPIU_QUERY_OPCODE_CLEAR_FLAG,
2322 QUERY_FLAG_IDN_BKOPS_EN, NULL);
2323 if (err) {
2324 dev_err(hba->dev, "%s: failed to disable bkops %d\n",
2325 __func__, err);
2326 ufshcd_disable_ee(hba, MASK_EE_URGENT_BKOPS);
2327 goto out;
2328 }
2329
2330 hba->auto_bkops_enabled = false;
2331out:
2332 return err;
2333}
2334
2335/**
2336 * ufshcd_force_reset_auto_bkops - force enable of auto bkops
2337 * @hba: per adapter instance
2338 *
2339 * After a device reset the device may toggle the BKOPS_EN flag
2340 * to default value. The s/w tracking variables should be updated
2341 * as well. Do this by forcing enable of auto bkops.
2342 */
2343static void ufshcd_force_reset_auto_bkops(struct ufs_hba *hba)
2344{
2345 hba->auto_bkops_enabled = false;
2346 hba->ee_ctrl_mask |= MASK_EE_URGENT_BKOPS;
2347 ufshcd_enable_auto_bkops(hba);
2348}
2349
2350static inline int ufshcd_get_bkops_status(struct ufs_hba *hba, u32 *status)
2351{
2352 return ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
2353 QUERY_ATTR_IDN_BKOPS_STATUS, 0, 0, status);
2354}
2355
2356/**
2357 * ufshcd_urgent_bkops - handle urgent bkops exception event
2358 * @hba: per-adapter instance
2359 *
2360 * Enable fBackgroundOpsEn flag in the device to permit background
2361 * operations.
2362 */
2363static int ufshcd_urgent_bkops(struct ufs_hba *hba)
2364{
2365 int err;
2366 u32 status = 0;
2367
2368 err = ufshcd_get_bkops_status(hba, &status);
2369 if (err) {
2370 dev_err(hba->dev, "%s: failed to get BKOPS status %d\n",
2371 __func__, err);
2372 goto out;
2373 }
2374
2375 status = status & 0xF;
2376
2377 /* handle only if status indicates performance impact or critical */
2378 if (status >= BKOPS_STATUS_PERF_IMPACT)
2379 err = ufshcd_enable_auto_bkops(hba);
2380out:
2381 return err;
2382}
2383
2384static inline int ufshcd_get_ee_status(struct ufs_hba *hba, u32 *status)
2385{
2386 return ufshcd_query_attr(hba, UPIU_QUERY_OPCODE_READ_ATTR,
2387 QUERY_ATTR_IDN_EE_STATUS, 0, 0, status);
2388}
2389
2390/**
2391 * ufshcd_exception_event_handler - handle exceptions raised by device
2392 * @work: pointer to work data
2393 *
2394 * Read bExceptionEventStatus attribute from the device and handle the
2395 * exception event accordingly.
2396 */
2397static void ufshcd_exception_event_handler(struct work_struct *work)
2398{
2399 struct ufs_hba *hba;
2400 int err;
2401 u32 status = 0;
2402 hba = container_of(work, struct ufs_hba, eeh_work);
2403
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05302404 pm_runtime_get_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302405 err = ufshcd_get_ee_status(hba, &status);
2406 if (err) {
2407 dev_err(hba->dev, "%s: failed to get exception status %d\n",
2408 __func__, err);
2409 goto out;
2410 }
2411
2412 status &= hba->ee_ctrl_mask;
2413 if (status & MASK_EE_URGENT_BKOPS) {
2414 err = ufshcd_urgent_bkops(hba);
2415 if (err)
2416 dev_err(hba->dev, "%s: failed to handle urgent bkops %d\n",
2417 __func__, err);
2418 }
2419out:
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05302420 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302421 return;
2422}
2423
2424/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302425 * ufshcd_fatal_err_handler - handle fatal errors
2426 * @hba: per adapter instance
2427 */
2428static void ufshcd_fatal_err_handler(struct work_struct *work)
2429{
2430 struct ufs_hba *hba;
2431 hba = container_of(work, struct ufs_hba, feh_workq);
2432
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05302433 pm_runtime_get_sync(hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302434 /* check if reset is already in progress */
2435 if (hba->ufshcd_state != UFSHCD_STATE_RESET)
2436 ufshcd_do_reset(hba);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05302437 pm_runtime_put_sync(hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302438}
2439
2440/**
2441 * ufshcd_err_handler - Check for fatal errors
2442 * @work: pointer to a work queue structure
2443 */
2444static void ufshcd_err_handler(struct ufs_hba *hba)
2445{
2446 u32 reg;
2447
2448 if (hba->errors & INT_FATAL_ERRORS)
2449 goto fatal_eh;
2450
2451 if (hba->errors & UIC_ERROR) {
Akinobu Mitacf9f4b52013-06-26 22:39:33 +05302452 reg = ufshcd_readl(hba, REG_UIC_ERROR_CODE_DATA_LINK_LAYER);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302453 if (reg & UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
2454 goto fatal_eh;
2455 }
2456 return;
2457fatal_eh:
2458 hba->ufshcd_state = UFSHCD_STATE_ERROR;
2459 schedule_work(&hba->feh_workq);
2460}
2461
2462/**
2463 * ufshcd_tmc_handler - handle task management function completion
2464 * @hba: per adapter instance
2465 */
2466static void ufshcd_tmc_handler(struct ufs_hba *hba)
2467{
2468 u32 tm_doorbell;
2469
Seungwon Jeonb873a2752013-06-26 22:39:26 +05302470 tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302471 hba->tm_condition = tm_doorbell ^ hba->outstanding_tasks;
2472 wake_up_interruptible(&hba->ufshcd_tm_wait_queue);
2473}
2474
2475/**
2476 * ufshcd_sl_intr - Interrupt service routine
2477 * @hba: per adapter instance
2478 * @intr_status: contains interrupts generated by the controller
2479 */
2480static void ufshcd_sl_intr(struct ufs_hba *hba, u32 intr_status)
2481{
2482 hba->errors = UFSHCD_ERROR_MASK & intr_status;
2483 if (hba->errors)
2484 ufshcd_err_handler(hba);
2485
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +05302486 if (intr_status & UFSHCD_UIC_MASK)
2487 ufshcd_uic_cmd_compl(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302488
2489 if (intr_status & UTP_TASK_REQ_COMPL)
2490 ufshcd_tmc_handler(hba);
2491
2492 if (intr_status & UTP_TRANSFER_REQ_COMPL)
2493 ufshcd_transfer_req_compl(hba);
2494}
2495
2496/**
2497 * ufshcd_intr - Main interrupt service routine
2498 * @irq: irq number
2499 * @__hba: pointer to adapter instance
2500 *
2501 * Returns IRQ_HANDLED - If interrupt is valid
2502 * IRQ_NONE - If invalid interrupt
2503 */
2504static irqreturn_t ufshcd_intr(int irq, void *__hba)
2505{
2506 u32 intr_status;
2507 irqreturn_t retval = IRQ_NONE;
2508 struct ufs_hba *hba = __hba;
2509
2510 spin_lock(hba->host->host_lock);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05302511 intr_status = ufshcd_readl(hba, REG_INTERRUPT_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302512
2513 if (intr_status) {
Seungwon Jeon261ea452013-06-26 22:39:28 +05302514 ufshcd_writel(hba, intr_status, REG_INTERRUPT_STATUS);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302515 ufshcd_sl_intr(hba, intr_status);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302516 retval = IRQ_HANDLED;
2517 }
2518 spin_unlock(hba->host->host_lock);
2519 return retval;
2520}
2521
2522/**
2523 * ufshcd_issue_tm_cmd - issues task management commands to controller
2524 * @hba: per adapter instance
2525 * @lrbp: pointer to local reference block
2526 *
2527 * Returns SUCCESS/FAILED
2528 */
2529static int
2530ufshcd_issue_tm_cmd(struct ufs_hba *hba,
2531 struct ufshcd_lrb *lrbp,
2532 u8 tm_function)
2533{
2534 struct utp_task_req_desc *task_req_descp;
2535 struct utp_upiu_task_req *task_req_upiup;
2536 struct Scsi_Host *host;
2537 unsigned long flags;
2538 int free_slot = 0;
2539 int err;
2540
2541 host = hba->host;
2542
2543 spin_lock_irqsave(host->host_lock, flags);
2544
2545 /* If task management queue is full */
2546 free_slot = ufshcd_get_tm_free_slot(hba);
2547 if (free_slot >= hba->nutmrs) {
2548 spin_unlock_irqrestore(host->host_lock, flags);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302549 dev_err(hba->dev, "Task management queue full\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302550 err = FAILED;
2551 goto out;
2552 }
2553
2554 task_req_descp = hba->utmrdl_base_addr;
2555 task_req_descp += free_slot;
2556
2557 /* Configure task request descriptor */
2558 task_req_descp->header.dword_0 = cpu_to_le32(UTP_REQ_DESC_INT_CMD);
2559 task_req_descp->header.dword_2 =
2560 cpu_to_le32(OCS_INVALID_COMMAND_STATUS);
2561
2562 /* Configure task request UPIU */
2563 task_req_upiup =
2564 (struct utp_upiu_task_req *) task_req_descp->task_req_upiu;
2565 task_req_upiup->header.dword_0 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302566 UPIU_HEADER_DWORD(UPIU_TRANSACTION_TASK_REQ, 0,
2567 lrbp->lun, lrbp->task_tag);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302568 task_req_upiup->header.dword_1 =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302569 UPIU_HEADER_DWORD(0, tm_function, 0, 0);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302570
2571 task_req_upiup->input_param1 = lrbp->lun;
2572 task_req_upiup->input_param1 =
2573 cpu_to_be32(task_req_upiup->input_param1);
2574 task_req_upiup->input_param2 = lrbp->task_tag;
2575 task_req_upiup->input_param2 =
2576 cpu_to_be32(task_req_upiup->input_param2);
2577
2578 /* send command to the controller */
2579 __set_bit(free_slot, &hba->outstanding_tasks);
Seungwon Jeonb873a2752013-06-26 22:39:26 +05302580 ufshcd_writel(hba, 1 << free_slot, REG_UTP_TASK_REQ_DOOR_BELL);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302581
2582 spin_unlock_irqrestore(host->host_lock, flags);
2583
2584 /* wait until the task management command is completed */
2585 err =
2586 wait_event_interruptible_timeout(hba->ufshcd_tm_wait_queue,
2587 (test_bit(free_slot,
2588 &hba->tm_condition) != 0),
2589 60 * HZ);
2590 if (!err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302591 dev_err(hba->dev,
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302592 "Task management command timed-out\n");
2593 err = FAILED;
2594 goto out;
2595 }
2596 clear_bit(free_slot, &hba->tm_condition);
Namjae Jeon94c122a2012-07-10 20:41:54 +05302597 err = ufshcd_task_req_compl(hba, free_slot);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302598out:
2599 return err;
2600}
2601
2602/**
2603 * ufshcd_device_reset - reset device and abort all the pending commands
2604 * @cmd: SCSI command pointer
2605 *
2606 * Returns SUCCESS/FAILED
2607 */
2608static int ufshcd_device_reset(struct scsi_cmnd *cmd)
2609{
2610 struct Scsi_Host *host;
2611 struct ufs_hba *hba;
2612 unsigned int tag;
2613 u32 pos;
2614 int err;
2615
2616 host = cmd->device->host;
2617 hba = shost_priv(host);
2618 tag = cmd->request->tag;
2619
2620 err = ufshcd_issue_tm_cmd(hba, &hba->lrb[tag], UFS_LOGICAL_RESET);
Namjae Jeon94c122a2012-07-10 20:41:54 +05302621 if (err == FAILED)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302622 goto out;
2623
2624 for (pos = 0; pos < hba->nutrs; pos++) {
2625 if (test_bit(pos, &hba->outstanding_reqs) &&
2626 (hba->lrb[tag].lun == hba->lrb[pos].lun)) {
2627
2628 /* clear the respective UTRLCLR register bit */
2629 ufshcd_utrl_clear(hba, pos);
2630
2631 clear_bit(pos, &hba->outstanding_reqs);
2632
2633 if (hba->lrb[pos].cmd) {
2634 scsi_dma_unmap(hba->lrb[pos].cmd);
2635 hba->lrb[pos].cmd->result =
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302636 DID_ABORT << 16;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302637 hba->lrb[pos].cmd->scsi_done(cmd);
2638 hba->lrb[pos].cmd = NULL;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302639 clear_bit_unlock(pos, &hba->lrb_in_use);
2640 wake_up(&hba->dev_cmd.tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302641 }
2642 }
2643 } /* end of for */
2644out:
2645 return err;
2646}
2647
2648/**
2649 * ufshcd_host_reset - Main reset function registered with scsi layer
2650 * @cmd: SCSI command pointer
2651 *
2652 * Returns SUCCESS/FAILED
2653 */
2654static int ufshcd_host_reset(struct scsi_cmnd *cmd)
2655{
2656 struct ufs_hba *hba;
2657
2658 hba = shost_priv(cmd->device->host);
2659
2660 if (hba->ufshcd_state == UFSHCD_STATE_RESET)
2661 return SUCCESS;
2662
Namjae Jeon94c122a2012-07-10 20:41:54 +05302663 return ufshcd_do_reset(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302664}
2665
2666/**
2667 * ufshcd_abort - abort a specific command
2668 * @cmd: SCSI command pointer
2669 *
2670 * Returns SUCCESS/FAILED
2671 */
2672static int ufshcd_abort(struct scsi_cmnd *cmd)
2673{
2674 struct Scsi_Host *host;
2675 struct ufs_hba *hba;
2676 unsigned long flags;
2677 unsigned int tag;
2678 int err;
2679
2680 host = cmd->device->host;
2681 hba = shost_priv(host);
2682 tag = cmd->request->tag;
2683
2684 spin_lock_irqsave(host->host_lock, flags);
2685
2686 /* check if command is still pending */
2687 if (!(test_bit(tag, &hba->outstanding_reqs))) {
2688 err = FAILED;
2689 spin_unlock_irqrestore(host->host_lock, flags);
2690 goto out;
2691 }
2692 spin_unlock_irqrestore(host->host_lock, flags);
2693
2694 err = ufshcd_issue_tm_cmd(hba, &hba->lrb[tag], UFS_ABORT_TASK);
Namjae Jeon94c122a2012-07-10 20:41:54 +05302695 if (err == FAILED)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302696 goto out;
2697
2698 scsi_dma_unmap(cmd);
2699
2700 spin_lock_irqsave(host->host_lock, flags);
2701
2702 /* clear the respective UTRLCLR register bit */
2703 ufshcd_utrl_clear(hba, tag);
2704
2705 __clear_bit(tag, &hba->outstanding_reqs);
2706 hba->lrb[tag].cmd = NULL;
2707 spin_unlock_irqrestore(host->host_lock, flags);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302708
2709 clear_bit_unlock(tag, &hba->lrb_in_use);
2710 wake_up(&hba->dev_cmd.tag_wq);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302711out:
2712 return err;
2713}
2714
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302715/**
2716 * ufshcd_async_scan - asynchronous execution for link startup
2717 * @data: data pointer to pass to this function
2718 * @cookie: cookie data
2719 */
2720static void ufshcd_async_scan(void *data, async_cookie_t cookie)
2721{
2722 struct ufs_hba *hba = (struct ufs_hba *)data;
2723 int ret;
2724
2725 ret = ufshcd_link_startup(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302726 if (ret)
2727 goto out;
2728
Seungwon Jeond3e89ba2013-08-31 21:40:24 +05302729 ufshcd_config_max_pwr_mode(hba);
2730
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302731 ret = ufshcd_verify_dev_init(hba);
2732 if (ret)
2733 goto out;
2734
Dolev Raviv68078d52013-07-30 00:35:58 +05302735 ret = ufshcd_complete_dev_init(hba);
2736 if (ret)
2737 goto out;
2738
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302739 ufshcd_force_reset_auto_bkops(hba);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302740 scsi_scan_host(hba->host);
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05302741 pm_runtime_put_sync(hba->dev);
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302742out:
2743 return;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302744}
2745
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302746static struct scsi_host_template ufshcd_driver_template = {
2747 .module = THIS_MODULE,
2748 .name = UFSHCD,
2749 .proc_name = UFSHCD,
2750 .queuecommand = ufshcd_queuecommand,
2751 .slave_alloc = ufshcd_slave_alloc,
2752 .slave_destroy = ufshcd_slave_destroy,
2753 .eh_abort_handler = ufshcd_abort,
2754 .eh_device_reset_handler = ufshcd_device_reset,
2755 .eh_host_reset_handler = ufshcd_host_reset,
2756 .this_id = -1,
2757 .sg_tablesize = SG_ALL,
2758 .cmd_per_lun = UFSHCD_CMD_PER_LUN,
2759 .can_queue = UFSHCD_CAN_QUEUE,
2760};
2761
2762/**
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302763 * ufshcd_suspend - suspend power management function
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302764 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302765 * @state: power state
2766 *
2767 * Returns -ENOSYS
2768 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302769int ufshcd_suspend(struct ufs_hba *hba, pm_message_t state)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302770{
2771 /*
2772 * TODO:
2773 * 1. Block SCSI requests from SCSI midlayer
2774 * 2. Change the internal driver state to non operational
2775 * 3. Set UTRLRSR and UTMRLRSR bits to zero
2776 * 4. Wait until outstanding commands are completed
2777 * 5. Set HCE to zero to send the UFS host controller to reset state
2778 */
2779
2780 return -ENOSYS;
2781}
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302782EXPORT_SYMBOL_GPL(ufshcd_suspend);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302783
2784/**
2785 * ufshcd_resume - resume power management function
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302786 * @hba: per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302787 *
2788 * Returns -ENOSYS
2789 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302790int ufshcd_resume(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302791{
2792 /*
2793 * TODO:
2794 * 1. Set HCE to 1, to start the UFS host controller
2795 * initialization process
2796 * 2. Set UTRLRSR and UTMRLRSR bits to 1
2797 * 3. Change the internal driver state to operational
2798 * 4. Unblock SCSI requests from SCSI midlayer
2799 */
2800
2801 return -ENOSYS;
2802}
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302803EXPORT_SYMBOL_GPL(ufshcd_resume);
2804
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302805int ufshcd_runtime_suspend(struct ufs_hba *hba)
2806{
2807 if (!hba)
2808 return 0;
2809
2810 /*
2811 * The device is idle with no requests in the queue,
2812 * allow background operations.
2813 */
2814 return ufshcd_enable_auto_bkops(hba);
2815}
2816EXPORT_SYMBOL(ufshcd_runtime_suspend);
2817
2818int ufshcd_runtime_resume(struct ufs_hba *hba)
2819{
2820 if (!hba)
2821 return 0;
2822
2823 return ufshcd_disable_auto_bkops(hba);
2824}
2825EXPORT_SYMBOL(ufshcd_runtime_resume);
2826
2827int ufshcd_runtime_idle(struct ufs_hba *hba)
2828{
2829 return 0;
2830}
2831EXPORT_SYMBOL(ufshcd_runtime_idle);
2832
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302833/**
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302834 * ufshcd_remove - de-allocate SCSI host and host memory space
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302835 * data structure memory
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302836 * @hba - per adapter instance
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302837 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302838void ufshcd_remove(struct ufs_hba *hba)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302839{
Akinobu Mitacfdf9c92013-07-30 00:36:03 +05302840 scsi_remove_host(hba->host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302841 /* disable interrupts */
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302842 ufshcd_disable_intr(hba, hba->intr_mask);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302843 ufshcd_hba_stop(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302844
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302845 scsi_host_put(hba->host);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302846}
2847EXPORT_SYMBOL_GPL(ufshcd_remove);
2848
2849/**
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302850 * ufshcd_init - Driver initialization routine
2851 * @dev: pointer to device handle
2852 * @hba_handle: driver private handle
2853 * @mmio_base: base register address
2854 * @irq: Interrupt line of device
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302855 * Returns 0 on success, non-zero value on failure
2856 */
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302857int ufshcd_init(struct device *dev, struct ufs_hba **hba_handle,
2858 void __iomem *mmio_base, unsigned int irq)
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302859{
2860 struct Scsi_Host *host;
2861 struct ufs_hba *hba;
2862 int err;
2863
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302864 if (!dev) {
2865 dev_err(dev,
2866 "Invalid memory reference for dev is NULL\n");
2867 err = -ENODEV;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302868 goto out_error;
2869 }
2870
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302871 if (!mmio_base) {
2872 dev_err(dev,
2873 "Invalid memory reference for mmio_base is NULL\n");
2874 err = -ENODEV;
2875 goto out_error;
2876 }
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302877
2878 host = scsi_host_alloc(&ufshcd_driver_template,
2879 sizeof(struct ufs_hba));
2880 if (!host) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302881 dev_err(dev, "scsi_host_alloc failed\n");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302882 err = -ENOMEM;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302883 goto out_error;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302884 }
2885 hba = shost_priv(host);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302886 hba->host = host;
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302887 hba->dev = dev;
2888 hba->mmio_base = mmio_base;
2889 hba->irq = irq;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302890
2891 /* Read capabilities registers */
2892 ufshcd_hba_capabilities(hba);
2893
2894 /* Get UFS version supported by the controller */
2895 hba->ufs_version = ufshcd_get_ufs_version(hba);
2896
Seungwon Jeon2fbd0092013-06-26 22:39:27 +05302897 /* Get Interrupt bit mask per version */
2898 hba->intr_mask = ufshcd_get_intr_mask(hba);
2899
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302900 /* Allocate memory for host memory space */
2901 err = ufshcd_memory_alloc(hba);
2902 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302903 dev_err(hba->dev, "Memory allocation failed\n");
2904 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302905 }
2906
2907 /* Configure LRB */
2908 ufshcd_host_memory_configure(hba);
2909
2910 host->can_queue = hba->nutrs;
2911 host->cmd_per_lun = hba->nutrs;
2912 host->max_id = UFSHCD_MAX_ID;
2913 host->max_lun = UFSHCD_MAX_LUNS;
2914 host->max_channel = UFSHCD_MAX_CHANNEL;
2915 host->unique_id = host->host_no;
2916 host->max_cmd_len = MAX_CDB_SIZE;
2917
2918 /* Initailize wait queue for task management */
2919 init_waitqueue_head(&hba->ufshcd_tm_wait_queue);
2920
2921 /* Initialize work queues */
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302922 INIT_WORK(&hba->feh_workq, ufshcd_fatal_err_handler);
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +05302923 INIT_WORK(&hba->eeh_work, ufshcd_exception_event_handler);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302924
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302925 /* Initialize UIC command mutex */
2926 mutex_init(&hba->uic_cmd_mutex);
2927
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +05302928 /* Initialize mutex for device management commands */
2929 mutex_init(&hba->dev_cmd.lock);
2930
2931 /* Initialize device management tag acquire wait queue */
2932 init_waitqueue_head(&hba->dev_cmd.tag_wq);
2933
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302934 /* IRQ registration */
Seungwon Jeon2953f852013-06-27 13:31:54 +09002935 err = devm_request_irq(dev, irq, ufshcd_intr, IRQF_SHARED, UFSHCD, hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302936 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302937 dev_err(hba->dev, "request irq failed\n");
Seungwon Jeon2953f852013-06-27 13:31:54 +09002938 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302939 }
2940
2941 /* Enable SCSI tag mapping */
2942 err = scsi_init_shared_tag_map(host, host->can_queue);
2943 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302944 dev_err(hba->dev, "init shared queue failed\n");
Seungwon Jeon2953f852013-06-27 13:31:54 +09002945 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302946 }
2947
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302948 err = scsi_add_host(host, hba->dev);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302949 if (err) {
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302950 dev_err(hba->dev, "scsi_add_host failed\n");
Seungwon Jeon2953f852013-06-27 13:31:54 +09002951 goto out_disable;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302952 }
2953
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302954 /* Host controller enable */
2955 err = ufshcd_hba_enable(hba);
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302956 if (err) {
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302957 dev_err(hba->dev, "Host controller enable failed\n");
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302958 goto out_remove_scsi_host;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302959 }
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302960
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302961 *hba_handle = hba;
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302962
Sujit Reddy Thumma62694732013-07-30 00:36:00 +05302963 /* Hold auto suspend until async scan completes */
2964 pm_runtime_get_sync(dev);
2965
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +05302966 async_schedule(ufshcd_async_scan, hba);
2967
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302968 return 0;
2969
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302970out_remove_scsi_host:
2971 scsi_remove_host(hba->host);
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302972out_disable:
2973 scsi_host_put(host);
2974out_error:
2975 return err;
2976}
2977EXPORT_SYMBOL_GPL(ufshcd_init);
2978
Vinayak Holikatti3b1d0582013-02-25 21:44:32 +05302979MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
2980MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
Vinayak Holikattie0eca632013-02-25 21:44:33 +05302981MODULE_DESCRIPTION("Generic UFS host controller driver Core");
Santosh Yaraganavi7a3e97b2012-02-29 12:11:50 +05302982MODULE_LICENSE("GPL");
2983MODULE_VERSION(UFSHCD_DRIVER_VERSION);