2 * Universal Flash Storage Host controller driver Core
4 * This code is based on drivers/scsi/ufs/ufshcd.c
5 * Copyright (C) 2011-2013 Samsung India Software Operations
6 * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
9 * Santosh Yaraganavi <santosh.sy@samsung.com>
10 * Vinayak Holikatti <h.vinayak@samsung.com>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 * See the COPYING file in the top-level directory or visit
17 * <http://www.gnu.org/licenses/gpl-2.0.html>
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * This program is provided "AS IS" and "WITH ALL FAULTS" and
25 * without warranty of any kind. You are solely responsible for
26 * determining the appropriateness of using and distributing
27 * the program and assume all risks associated with your exercise
28 * of rights with respect to the program, including but not limited
29 * to infringement of third party rights, the risks and costs of
30 * program errors, damage to or loss of data, programs or equipment,
31 * and unavailability or interruption of operations. Under no
32 * circumstances will the contributor of this Program be liable for
33 * any damages of any kind arising from your use or distribution of
36 * The Linux Foundation chooses to take subject only to the GPLv2
37 * license terms, and distributes only under these terms.
40 #include <linux/async.h>
41 #include <linux/devfreq.h>
42 #include <linux/nls.h>
45 #include "ufs_quirks.h"
48 #define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\
51 /* UIC command timeout, unit: ms */
52 #define UIC_CMD_TIMEOUT 500
54 /* NOP OUT retries waiting for NOP IN response */
55 #define NOP_OUT_RETRIES 10
56 /* Timeout after 30 msecs if NOP OUT hangs without response */
57 #define NOP_OUT_TIMEOUT 30 /* msecs */
59 /* Query request retries */
60 #define QUERY_REQ_RETRIES 10
61 /* Query request timeout */
62 #define QUERY_REQ_TIMEOUT 30 /* msec */
64 * Query request timeout for fDeviceInit flag
65 * fDeviceInit query response time for some devices is too large that default
66 * QUERY_REQ_TIMEOUT may not be enough for such devices.
68 #define QUERY_FDEVICEINIT_REQ_TIMEOUT 600 /* msec */
70 /* Task management command timeout */
71 #define TM_CMD_TIMEOUT 100 /* msecs */
73 /* maximum number of retries for a general UIC command */
74 #define UFS_UIC_COMMAND_RETRIES 3
76 /* maximum number of link-startup retries */
77 #define DME_LINKSTARTUP_RETRIES 3
79 /* Maximum retries for Hibern8 enter */
80 #define UIC_HIBERN8_ENTER_RETRIES 3
82 /* maximum number of reset retries before giving up */
83 #define MAX_HOST_RESET_RETRIES 5
85 /* Expose the flag value from utp_upiu_query.value */
86 #define MASK_QUERY_UPIU_FLAG_LOC 0xFF
88 /* Interrupt aggregation default timeout, unit: 40us */
89 #define INT_AGGR_DEF_TO 0x02
91 #define ufshcd_toggle_vreg(_dev, _vreg, _on) \
95 _ret = ufshcd_enable_vreg(_dev, _vreg); \
97 _ret = ufshcd_disable_vreg(_dev, _vreg); \
101 static u32 ufs_query_desc_max_size
[] = {
102 QUERY_DESC_DEVICE_MAX_SIZE
,
103 QUERY_DESC_CONFIGURAION_MAX_SIZE
,
104 QUERY_DESC_UNIT_MAX_SIZE
,
105 QUERY_DESC_RFU_MAX_SIZE
,
106 QUERY_DESC_INTERCONNECT_MAX_SIZE
,
107 QUERY_DESC_STRING_MAX_SIZE
,
108 QUERY_DESC_RFU_MAX_SIZE
,
109 QUERY_DESC_GEOMETRY_MAX_SIZE
,
110 QUERY_DESC_POWER_MAX_SIZE
,
111 QUERY_DESC_RFU_MAX_SIZE
,
115 UFSHCD_MAX_CHANNEL
= 0,
117 UFSHCD_CMD_PER_LUN
= 32,
118 UFSHCD_CAN_QUEUE
= 32,
125 UFSHCD_STATE_OPERATIONAL
,
128 /* UFSHCD error handling flags */
130 UFSHCD_EH_IN_PROGRESS
= (1 << 0),
133 /* UFSHCD UIC layer error flags */
135 UFSHCD_UIC_DL_PA_INIT_ERROR
= (1 << 0), /* Data link layer error */
136 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
= (1 << 1), /* Data link layer error */
137 UFSHCD_UIC_DL_TCx_REPLAY_ERROR
= (1 << 2), /* Data link layer error */
138 UFSHCD_UIC_NL_ERROR
= (1 << 3), /* Network layer error */
139 UFSHCD_UIC_TL_ERROR
= (1 << 4), /* Transport Layer error */
140 UFSHCD_UIC_DME_ERROR
= (1 << 5), /* DME error */
143 /* Interrupt configuration options */
150 #define ufshcd_set_eh_in_progress(h) \
151 (h->eh_flags |= UFSHCD_EH_IN_PROGRESS)
152 #define ufshcd_eh_in_progress(h) \
153 (h->eh_flags & UFSHCD_EH_IN_PROGRESS)
154 #define ufshcd_clear_eh_in_progress(h) \
155 (h->eh_flags &= ~UFSHCD_EH_IN_PROGRESS)
157 #define ufshcd_set_ufs_dev_active(h) \
158 ((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
159 #define ufshcd_set_ufs_dev_sleep(h) \
160 ((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
161 #define ufshcd_set_ufs_dev_poweroff(h) \
162 ((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
163 #define ufshcd_is_ufs_dev_active(h) \
164 ((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
165 #define ufshcd_is_ufs_dev_sleep(h) \
166 ((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
167 #define ufshcd_is_ufs_dev_poweroff(h) \
168 ((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
170 static struct ufs_pm_lvl_states ufs_pm_lvl_states
[] = {
171 {UFS_ACTIVE_PWR_MODE
, UIC_LINK_ACTIVE_STATE
},
172 {UFS_ACTIVE_PWR_MODE
, UIC_LINK_HIBERN8_STATE
},
173 {UFS_SLEEP_PWR_MODE
, UIC_LINK_ACTIVE_STATE
},
174 {UFS_SLEEP_PWR_MODE
, UIC_LINK_HIBERN8_STATE
},
175 {UFS_POWERDOWN_PWR_MODE
, UIC_LINK_HIBERN8_STATE
},
176 {UFS_POWERDOWN_PWR_MODE
, UIC_LINK_OFF_STATE
},
179 static inline enum ufs_dev_pwr_mode
180 ufs_get_pm_lvl_to_dev_pwr_mode(enum ufs_pm_level lvl
)
182 return ufs_pm_lvl_states
[lvl
].dev_state
;
185 static inline enum uic_link_state
186 ufs_get_pm_lvl_to_link_pwr_state(enum ufs_pm_level lvl
)
188 return ufs_pm_lvl_states
[lvl
].link_state
;
191 static void ufshcd_tmc_handler(struct ufs_hba
*hba
);
192 static void ufshcd_async_scan(void *data
, async_cookie_t cookie
);
193 static int ufshcd_reset_and_restore(struct ufs_hba
*hba
);
194 static int ufshcd_clear_tm_cmd(struct ufs_hba
*hba
, int tag
);
195 static void ufshcd_hba_exit(struct ufs_hba
*hba
);
196 static int ufshcd_probe_hba(struct ufs_hba
*hba
);
197 static int __ufshcd_setup_clocks(struct ufs_hba
*hba
, bool on
,
199 static int ufshcd_setup_clocks(struct ufs_hba
*hba
, bool on
);
200 static int ufshcd_set_vccq_rail_unused(struct ufs_hba
*hba
, bool unused
);
201 static int ufshcd_uic_hibern8_exit(struct ufs_hba
*hba
);
202 static int ufshcd_uic_hibern8_enter(struct ufs_hba
*hba
);
203 static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba
*hba
);
204 static int ufshcd_host_reset_and_restore(struct ufs_hba
*hba
);
205 static irqreturn_t
ufshcd_intr(int irq
, void *__hba
);
206 static int ufshcd_config_pwr_mode(struct ufs_hba
*hba
,
207 struct ufs_pa_layer_attr
*desired_pwr_mode
);
208 static int ufshcd_change_power_mode(struct ufs_hba
*hba
,
209 struct ufs_pa_layer_attr
*pwr_mode
);
210 static inline bool ufshcd_valid_tag(struct ufs_hba
*hba
, int tag
)
212 return tag
>= 0 && tag
< hba
->nutrs
;
215 static inline int ufshcd_enable_irq(struct ufs_hba
*hba
)
219 if (!hba
->is_irq_enabled
) {
220 ret
= request_irq(hba
->irq
, ufshcd_intr
, IRQF_SHARED
, UFSHCD
,
223 dev_err(hba
->dev
, "%s: request_irq failed, ret=%d\n",
225 hba
->is_irq_enabled
= true;
231 static inline void ufshcd_disable_irq(struct ufs_hba
*hba
)
233 if (hba
->is_irq_enabled
) {
234 free_irq(hba
->irq
, hba
);
235 hba
->is_irq_enabled
= false;
239 /* replace non-printable or non-ASCII characters with spaces */
240 static inline void ufshcd_remove_non_printable(char *val
)
245 if (*val
< 0x20 || *val
> 0x7e)
250 * ufshcd_wait_for_register - wait for register value to change
251 * @hba - per-adapter interface
252 * @reg - mmio register offset
253 * @mask - mask to apply to read register value
254 * @val - wait condition
255 * @interval_us - polling interval in microsecs
256 * @timeout_ms - timeout in millisecs
257 * @can_sleep - perform sleep or just spin
259 * Returns -ETIMEDOUT on error, zero on success
261 int ufshcd_wait_for_register(struct ufs_hba
*hba
, u32 reg
, u32 mask
,
262 u32 val
, unsigned long interval_us
,
263 unsigned long timeout_ms
, bool can_sleep
)
266 unsigned long timeout
= jiffies
+ msecs_to_jiffies(timeout_ms
);
268 /* ignore bits that we don't intend to wait on */
271 while ((ufshcd_readl(hba
, reg
) & mask
) != val
) {
273 usleep_range(interval_us
, interval_us
+ 50);
276 if (time_after(jiffies
, timeout
)) {
277 if ((ufshcd_readl(hba
, reg
) & mask
) != val
)
287 * ufshcd_get_intr_mask - Get the interrupt bit mask
288 * @hba - Pointer to adapter instance
290 * Returns interrupt bit mask per version
292 static inline u32
ufshcd_get_intr_mask(struct ufs_hba
*hba
)
294 if (hba
->ufs_version
== UFSHCI_VERSION_10
)
295 return INTERRUPT_MASK_ALL_VER_10
;
297 return INTERRUPT_MASK_ALL_VER_11
;
301 * ufshcd_get_ufs_version - Get the UFS version supported by the HBA
302 * @hba - Pointer to adapter instance
304 * Returns UFSHCI version supported by the controller
306 static inline u32
ufshcd_get_ufs_version(struct ufs_hba
*hba
)
308 if (hba
->quirks
& UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION
)
309 return ufshcd_vops_get_ufs_hci_version(hba
);
311 return ufshcd_readl(hba
, REG_UFS_VERSION
);
315 * ufshcd_is_device_present - Check if any device connected to
316 * the host controller
317 * @hba: pointer to adapter instance
319 * Returns 1 if device present, 0 if no device detected
321 static inline int ufshcd_is_device_present(struct ufs_hba
*hba
)
323 return (ufshcd_readl(hba
, REG_CONTROLLER_STATUS
) &
324 DEVICE_PRESENT
) ? 1 : 0;
328 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status
329 * @lrb: pointer to local command reference block
331 * This function is used to get the OCS field from UTRD
332 * Returns the OCS field in the UTRD
334 static inline int ufshcd_get_tr_ocs(struct ufshcd_lrb
*lrbp
)
336 return le32_to_cpu(lrbp
->utr_descriptor_ptr
->header
.dword_2
) & MASK_OCS
;
340 * ufshcd_get_tmr_ocs - Get the UTMRD Overall Command Status
341 * @task_req_descp: pointer to utp_task_req_desc structure
343 * This function is used to get the OCS field from UTMRD
344 * Returns the OCS field in the UTMRD
347 ufshcd_get_tmr_ocs(struct utp_task_req_desc
*task_req_descp
)
349 return le32_to_cpu(task_req_descp
->header
.dword_2
) & MASK_OCS
;
353 * ufshcd_get_tm_free_slot - get a free slot for task management request
354 * @hba: per adapter instance
355 * @free_slot: pointer to variable with available slot value
357 * Get a free tag and lock it until ufshcd_put_tm_slot() is called.
358 * Returns 0 if free slot is not available, else return 1 with tag value
361 static bool ufshcd_get_tm_free_slot(struct ufs_hba
*hba
, int *free_slot
)
370 tag
= find_first_zero_bit(&hba
->tm_slots_in_use
, hba
->nutmrs
);
371 if (tag
>= hba
->nutmrs
)
373 } while (test_and_set_bit_lock(tag
, &hba
->tm_slots_in_use
));
381 static inline void ufshcd_put_tm_slot(struct ufs_hba
*hba
, int slot
)
383 clear_bit_unlock(slot
, &hba
->tm_slots_in_use
);
387 * ufshcd_utrl_clear - Clear a bit in UTRLCLR register
388 * @hba: per adapter instance
389 * @pos: position of the bit to be cleared
391 static inline void ufshcd_utrl_clear(struct ufs_hba
*hba
, u32 pos
)
393 ufshcd_writel(hba
, ~(1 << pos
), REG_UTP_TRANSFER_REQ_LIST_CLEAR
);
397 * ufshcd_outstanding_req_clear - Clear a bit in outstanding request field
398 * @hba: per adapter instance
399 * @tag: position of the bit to be cleared
401 static inline void ufshcd_outstanding_req_clear(struct ufs_hba
*hba
, int tag
)
403 __clear_bit(tag
, &hba
->outstanding_reqs
);
407 * ufshcd_get_lists_status - Check UCRDY, UTRLRDY and UTMRLRDY
408 * @reg: Register value of host controller status
410 * Returns integer, 0 on Success and positive value if failed
412 static inline int ufshcd_get_lists_status(u32 reg
)
415 * The mask 0xFF is for the following HCS register bits
423 return ((reg
& 0xFF) >> 1) ^ 0x07;
427 * ufshcd_get_uic_cmd_result - Get the UIC command result
428 * @hba: Pointer to adapter instance
430 * This function gets the result of UIC command completion
431 * Returns 0 on success, non zero value on error
433 static inline int ufshcd_get_uic_cmd_result(struct ufs_hba
*hba
)
435 return ufshcd_readl(hba
, REG_UIC_COMMAND_ARG_2
) &
436 MASK_UIC_COMMAND_RESULT
;
440 * ufshcd_get_dme_attr_val - Get the value of attribute returned by UIC command
441 * @hba: Pointer to adapter instance
443 * This function gets UIC command argument3
444 * Returns 0 on success, non zero value on error
446 static inline u32
ufshcd_get_dme_attr_val(struct ufs_hba
*hba
)
448 return ufshcd_readl(hba
, REG_UIC_COMMAND_ARG_3
);
452 * ufshcd_get_req_rsp - returns the TR response transaction type
453 * @ucd_rsp_ptr: pointer to response UPIU
456 ufshcd_get_req_rsp(struct utp_upiu_rsp
*ucd_rsp_ptr
)
458 return be32_to_cpu(ucd_rsp_ptr
->header
.dword_0
) >> 24;
462 * ufshcd_get_rsp_upiu_result - Get the result from response UPIU
463 * @ucd_rsp_ptr: pointer to response UPIU
465 * This function gets the response status and scsi_status from response UPIU
466 * Returns the response result code.
469 ufshcd_get_rsp_upiu_result(struct utp_upiu_rsp
*ucd_rsp_ptr
)
471 return be32_to_cpu(ucd_rsp_ptr
->header
.dword_1
) & MASK_RSP_UPIU_RESULT
;
475 * ufshcd_get_rsp_upiu_data_seg_len - Get the data segment length
477 * @ucd_rsp_ptr: pointer to response UPIU
479 * Return the data segment length.
481 static inline unsigned int
482 ufshcd_get_rsp_upiu_data_seg_len(struct utp_upiu_rsp
*ucd_rsp_ptr
)
484 return be32_to_cpu(ucd_rsp_ptr
->header
.dword_2
) &
485 MASK_RSP_UPIU_DATA_SEG_LEN
;
489 * ufshcd_is_exception_event - Check if the device raised an exception event
490 * @ucd_rsp_ptr: pointer to response UPIU
492 * The function checks if the device raised an exception event indicated in
493 * the Device Information field of response UPIU.
495 * Returns true if exception is raised, false otherwise.
497 static inline bool ufshcd_is_exception_event(struct utp_upiu_rsp
*ucd_rsp_ptr
)
499 return be32_to_cpu(ucd_rsp_ptr
->header
.dword_2
) &
500 MASK_RSP_EXCEPTION_EVENT
? true : false;
504 * ufshcd_reset_intr_aggr - Reset interrupt aggregation values.
505 * @hba: per adapter instance
508 ufshcd_reset_intr_aggr(struct ufs_hba
*hba
)
510 ufshcd_writel(hba
, INT_AGGR_ENABLE
|
511 INT_AGGR_COUNTER_AND_TIMER_RESET
,
512 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL
);
516 * ufshcd_config_intr_aggr - Configure interrupt aggregation values.
517 * @hba: per adapter instance
518 * @cnt: Interrupt aggregation counter threshold
519 * @tmout: Interrupt aggregation timeout value
522 ufshcd_config_intr_aggr(struct ufs_hba
*hba
, u8 cnt
, u8 tmout
)
524 ufshcd_writel(hba
, INT_AGGR_ENABLE
| INT_AGGR_PARAM_WRITE
|
525 INT_AGGR_COUNTER_THLD_VAL(cnt
) |
526 INT_AGGR_TIMEOUT_VAL(tmout
),
527 REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL
);
531 * ufshcd_disable_intr_aggr - Disables interrupt aggregation.
532 * @hba: per adapter instance
534 static inline void ufshcd_disable_intr_aggr(struct ufs_hba
*hba
)
536 ufshcd_writel(hba
, 0, REG_UTP_TRANSFER_REQ_INT_AGG_CONTROL
);
540 * ufshcd_enable_run_stop_reg - Enable run-stop registers,
541 * When run-stop registers are set to 1, it indicates the
542 * host controller that it can process the requests
543 * @hba: per adapter instance
545 static void ufshcd_enable_run_stop_reg(struct ufs_hba
*hba
)
547 ufshcd_writel(hba
, UTP_TASK_REQ_LIST_RUN_STOP_BIT
,
548 REG_UTP_TASK_REQ_LIST_RUN_STOP
);
549 ufshcd_writel(hba
, UTP_TRANSFER_REQ_LIST_RUN_STOP_BIT
,
550 REG_UTP_TRANSFER_REQ_LIST_RUN_STOP
);
554 * ufshcd_hba_start - Start controller initialization sequence
555 * @hba: per adapter instance
557 static inline void ufshcd_hba_start(struct ufs_hba
*hba
)
559 ufshcd_writel(hba
, CONTROLLER_ENABLE
, REG_CONTROLLER_ENABLE
);
563 * ufshcd_is_hba_active - Get controller state
564 * @hba: per adapter instance
566 * Returns zero if controller is active, 1 otherwise
568 static inline int ufshcd_is_hba_active(struct ufs_hba
*hba
)
570 return (ufshcd_readl(hba
, REG_CONTROLLER_ENABLE
) & 0x1) ? 0 : 1;
573 u32
ufshcd_get_local_unipro_ver(struct ufs_hba
*hba
)
575 /* HCI version 1.0 and 1.1 supports UniPro 1.41 */
576 if ((hba
->ufs_version
== UFSHCI_VERSION_10
) ||
577 (hba
->ufs_version
== UFSHCI_VERSION_11
))
578 return UFS_UNIPRO_VER_1_41
;
580 return UFS_UNIPRO_VER_1_6
;
582 EXPORT_SYMBOL(ufshcd_get_local_unipro_ver
);
584 static bool ufshcd_is_unipro_pa_params_tuning_req(struct ufs_hba
*hba
)
587 * If both host and device support UniPro ver1.6 or later, PA layer
588 * parameters tuning happens during link startup itself.
590 * We can manually tune PA layer parameters if either host or device
591 * doesn't support UniPro ver 1.6 or later. But to keep manual tuning
592 * logic simple, we will only do manual tuning if local unipro version
593 * doesn't support ver1.6 or later.
595 if (ufshcd_get_local_unipro_ver(hba
) < UFS_UNIPRO_VER_1_6
)
601 static void ufshcd_ungate_work(struct work_struct
*work
)
605 struct ufs_hba
*hba
= container_of(work
, struct ufs_hba
,
606 clk_gating
.ungate_work
);
608 cancel_delayed_work_sync(&hba
->clk_gating
.gate_work
);
610 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
611 if (hba
->clk_gating
.state
== CLKS_ON
) {
612 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
616 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
617 ufshcd_setup_clocks(hba
, true);
619 /* Exit from hibern8 */
620 if (ufshcd_can_hibern8_during_gating(hba
)) {
621 /* Prevent gating in this path */
622 hba
->clk_gating
.is_suspended
= true;
623 if (ufshcd_is_link_hibern8(hba
)) {
624 ret
= ufshcd_uic_hibern8_exit(hba
);
626 dev_err(hba
->dev
, "%s: hibern8 exit failed %d\n",
629 ufshcd_set_link_active(hba
);
631 hba
->clk_gating
.is_suspended
= false;
634 if (ufshcd_is_clkscaling_enabled(hba
))
635 devfreq_resume_device(hba
->devfreq
);
636 scsi_unblock_requests(hba
->host
);
640 * ufshcd_hold - Enable clocks that were gated earlier due to ufshcd_release.
641 * Also, exit from hibern8 mode and set the link as active.
642 * @hba: per adapter instance
643 * @async: This indicates whether caller should ungate clocks asynchronously.
645 int ufshcd_hold(struct ufs_hba
*hba
, bool async
)
650 if (!ufshcd_is_clkgating_allowed(hba
))
652 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
653 hba
->clk_gating
.active_reqs
++;
655 if (ufshcd_eh_in_progress(hba
)) {
656 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
661 switch (hba
->clk_gating
.state
) {
665 if (cancel_delayed_work(&hba
->clk_gating
.gate_work
)) {
666 hba
->clk_gating
.state
= CLKS_ON
;
670 * If we here, it means gating work is either done or
671 * currently running. Hence, fall through to cancel gating
672 * work and to enable clocks.
675 scsi_block_requests(hba
->host
);
676 hba
->clk_gating
.state
= REQ_CLKS_ON
;
677 schedule_work(&hba
->clk_gating
.ungate_work
);
679 * fall through to check if we should wait for this
680 * work to be done or not.
685 hba
->clk_gating
.active_reqs
--;
689 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
690 flush_work(&hba
->clk_gating
.ungate_work
);
691 /* Make sure state is CLKS_ON before returning */
692 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
695 dev_err(hba
->dev
, "%s: clk gating is in invalid state %d\n",
696 __func__
, hba
->clk_gating
.state
);
699 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
703 EXPORT_SYMBOL_GPL(ufshcd_hold
);
705 static void ufshcd_gate_work(struct work_struct
*work
)
707 struct ufs_hba
*hba
= container_of(work
, struct ufs_hba
,
708 clk_gating
.gate_work
.work
);
711 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
712 if (hba
->clk_gating
.is_suspended
) {
713 hba
->clk_gating
.state
= CLKS_ON
;
717 if (hba
->clk_gating
.active_reqs
718 || hba
->ufshcd_state
!= UFSHCD_STATE_OPERATIONAL
719 || hba
->lrb_in_use
|| hba
->outstanding_tasks
720 || hba
->active_uic_cmd
|| hba
->uic_async_done
)
723 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
725 /* put the link into hibern8 mode before turning off clocks */
726 if (ufshcd_can_hibern8_during_gating(hba
)) {
727 if (ufshcd_uic_hibern8_enter(hba
)) {
728 hba
->clk_gating
.state
= CLKS_ON
;
731 ufshcd_set_link_hibern8(hba
);
734 if (ufshcd_is_clkscaling_enabled(hba
)) {
735 devfreq_suspend_device(hba
->devfreq
);
736 hba
->clk_scaling
.window_start_t
= 0;
739 if (!ufshcd_is_link_active(hba
))
740 ufshcd_setup_clocks(hba
, false);
742 /* If link is active, device ref_clk can't be switched off */
743 __ufshcd_setup_clocks(hba
, false, true);
746 * In case you are here to cancel this work the gating state
747 * would be marked as REQ_CLKS_ON. In this case keep the state
748 * as REQ_CLKS_ON which would anyway imply that clocks are off
749 * and a request to turn them on is pending. By doing this way,
750 * we keep the state machine in tact and this would ultimately
751 * prevent from doing cancel work multiple times when there are
752 * new requests arriving before the current cancel work is done.
754 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
755 if (hba
->clk_gating
.state
== REQ_CLKS_OFF
)
756 hba
->clk_gating
.state
= CLKS_OFF
;
759 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
764 /* host lock must be held before calling this variant */
765 static void __ufshcd_release(struct ufs_hba
*hba
)
767 if (!ufshcd_is_clkgating_allowed(hba
))
770 hba
->clk_gating
.active_reqs
--;
772 if (hba
->clk_gating
.active_reqs
|| hba
->clk_gating
.is_suspended
773 || hba
->ufshcd_state
!= UFSHCD_STATE_OPERATIONAL
774 || hba
->lrb_in_use
|| hba
->outstanding_tasks
775 || hba
->active_uic_cmd
|| hba
->uic_async_done
776 || ufshcd_eh_in_progress(hba
))
779 hba
->clk_gating
.state
= REQ_CLKS_OFF
;
780 schedule_delayed_work(&hba
->clk_gating
.gate_work
,
781 msecs_to_jiffies(hba
->clk_gating
.delay_ms
));
784 void ufshcd_release(struct ufs_hba
*hba
)
788 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
789 __ufshcd_release(hba
);
790 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
792 EXPORT_SYMBOL_GPL(ufshcd_release
);
794 static ssize_t
ufshcd_clkgate_delay_show(struct device
*dev
,
795 struct device_attribute
*attr
, char *buf
)
797 struct ufs_hba
*hba
= dev_get_drvdata(dev
);
799 return snprintf(buf
, PAGE_SIZE
, "%lu\n", hba
->clk_gating
.delay_ms
);
802 static ssize_t
ufshcd_clkgate_delay_store(struct device
*dev
,
803 struct device_attribute
*attr
, const char *buf
, size_t count
)
805 struct ufs_hba
*hba
= dev_get_drvdata(dev
);
806 unsigned long flags
, value
;
808 if (kstrtoul(buf
, 0, &value
))
811 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
812 hba
->clk_gating
.delay_ms
= value
;
813 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
817 static void ufshcd_init_clk_gating(struct ufs_hba
*hba
)
819 if (!ufshcd_is_clkgating_allowed(hba
))
822 hba
->clk_gating
.delay_ms
= 150;
823 INIT_DELAYED_WORK(&hba
->clk_gating
.gate_work
, ufshcd_gate_work
);
824 INIT_WORK(&hba
->clk_gating
.ungate_work
, ufshcd_ungate_work
);
826 hba
->clk_gating
.delay_attr
.show
= ufshcd_clkgate_delay_show
;
827 hba
->clk_gating
.delay_attr
.store
= ufshcd_clkgate_delay_store
;
828 sysfs_attr_init(&hba
->clk_gating
.delay_attr
.attr
);
829 hba
->clk_gating
.delay_attr
.attr
.name
= "clkgate_delay_ms";
830 hba
->clk_gating
.delay_attr
.attr
.mode
= S_IRUGO
| S_IWUSR
;
831 if (device_create_file(hba
->dev
, &hba
->clk_gating
.delay_attr
))
832 dev_err(hba
->dev
, "Failed to create sysfs for clkgate_delay\n");
835 static void ufshcd_exit_clk_gating(struct ufs_hba
*hba
)
837 if (!ufshcd_is_clkgating_allowed(hba
))
839 device_remove_file(hba
->dev
, &hba
->clk_gating
.delay_attr
);
840 cancel_work_sync(&hba
->clk_gating
.ungate_work
);
841 cancel_delayed_work_sync(&hba
->clk_gating
.gate_work
);
844 /* Must be called with host lock acquired */
845 static void ufshcd_clk_scaling_start_busy(struct ufs_hba
*hba
)
847 if (!ufshcd_is_clkscaling_enabled(hba
))
850 if (!hba
->clk_scaling
.is_busy_started
) {
851 hba
->clk_scaling
.busy_start_t
= ktime_get();
852 hba
->clk_scaling
.is_busy_started
= true;
856 static void ufshcd_clk_scaling_update_busy(struct ufs_hba
*hba
)
858 struct ufs_clk_scaling
*scaling
= &hba
->clk_scaling
;
860 if (!ufshcd_is_clkscaling_enabled(hba
))
863 if (!hba
->outstanding_reqs
&& scaling
->is_busy_started
) {
864 scaling
->tot_busy_t
+= ktime_to_us(ktime_sub(ktime_get(),
865 scaling
->busy_start_t
));
866 scaling
->busy_start_t
= ktime_set(0, 0);
867 scaling
->is_busy_started
= false;
871 * ufshcd_send_command - Send SCSI or device management commands
872 * @hba: per adapter instance
873 * @task_tag: Task tag of the command
876 void ufshcd_send_command(struct ufs_hba
*hba
, unsigned int task_tag
)
878 ufshcd_clk_scaling_start_busy(hba
);
879 __set_bit(task_tag
, &hba
->outstanding_reqs
);
880 ufshcd_writel(hba
, 1 << task_tag
, REG_UTP_TRANSFER_REQ_DOOR_BELL
);
884 * ufshcd_copy_sense_data - Copy sense data in case of check condition
885 * @lrb - pointer to local reference block
887 static inline void ufshcd_copy_sense_data(struct ufshcd_lrb
*lrbp
)
890 if (lrbp
->sense_buffer
&&
891 ufshcd_get_rsp_upiu_data_seg_len(lrbp
->ucd_rsp_ptr
)) {
892 len
= be16_to_cpu(lrbp
->ucd_rsp_ptr
->sr
.sense_data_len
);
893 memcpy(lrbp
->sense_buffer
,
894 lrbp
->ucd_rsp_ptr
->sr
.sense_data
,
895 min_t(int, len
, SCSI_SENSE_BUFFERSIZE
));
900 * ufshcd_copy_query_response() - Copy the Query Response and the data
902 * @hba: per adapter instance
903 * @lrb - pointer to local reference block
906 int ufshcd_copy_query_response(struct ufs_hba
*hba
, struct ufshcd_lrb
*lrbp
)
908 struct ufs_query_res
*query_res
= &hba
->dev_cmd
.query
.response
;
910 memcpy(&query_res
->upiu_res
, &lrbp
->ucd_rsp_ptr
->qr
, QUERY_OSF_SIZE
);
912 /* Get the descriptor */
913 if (lrbp
->ucd_rsp_ptr
->qr
.opcode
== UPIU_QUERY_OPCODE_READ_DESC
) {
914 u8
*descp
= (u8
*)lrbp
->ucd_rsp_ptr
+
915 GENERAL_UPIU_REQUEST_SIZE
;
919 /* data segment length */
920 resp_len
= be32_to_cpu(lrbp
->ucd_rsp_ptr
->header
.dword_2
) &
921 MASK_QUERY_DATA_SEG_LEN
;
922 buf_len
= be16_to_cpu(
923 hba
->dev_cmd
.query
.request
.upiu_req
.length
);
924 if (likely(buf_len
>= resp_len
)) {
925 memcpy(hba
->dev_cmd
.query
.descriptor
, descp
, resp_len
);
928 "%s: Response size is bigger than buffer",
938 * ufshcd_hba_capabilities - Read controller capabilities
939 * @hba: per adapter instance
941 static inline void ufshcd_hba_capabilities(struct ufs_hba
*hba
)
943 hba
->capabilities
= ufshcd_readl(hba
, REG_CONTROLLER_CAPABILITIES
);
945 /* nutrs and nutmrs are 0 based values */
946 hba
->nutrs
= (hba
->capabilities
& MASK_TRANSFER_REQUESTS_SLOTS
) + 1;
948 ((hba
->capabilities
& MASK_TASK_MANAGEMENT_REQUEST_SLOTS
) >> 16) + 1;
952 * ufshcd_ready_for_uic_cmd - Check if controller is ready
953 * to accept UIC commands
954 * @hba: per adapter instance
955 * Return true on success, else false
957 static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba
*hba
)
959 if (ufshcd_readl(hba
, REG_CONTROLLER_STATUS
) & UIC_COMMAND_READY
)
966 * ufshcd_get_upmcrs - Get the power mode change request status
967 * @hba: Pointer to adapter instance
969 * This function gets the UPMCRS field of HCS register
970 * Returns value of UPMCRS field
972 static inline u8
ufshcd_get_upmcrs(struct ufs_hba
*hba
)
974 return (ufshcd_readl(hba
, REG_CONTROLLER_STATUS
) >> 8) & 0x7;
978 * ufshcd_dispatch_uic_cmd - Dispatch UIC commands to unipro layers
979 * @hba: per adapter instance
980 * @uic_cmd: UIC command
982 * Mutex must be held.
985 ufshcd_dispatch_uic_cmd(struct ufs_hba
*hba
, struct uic_command
*uic_cmd
)
987 WARN_ON(hba
->active_uic_cmd
);
989 hba
->active_uic_cmd
= uic_cmd
;
992 ufshcd_writel(hba
, uic_cmd
->argument1
, REG_UIC_COMMAND_ARG_1
);
993 ufshcd_writel(hba
, uic_cmd
->argument2
, REG_UIC_COMMAND_ARG_2
);
994 ufshcd_writel(hba
, uic_cmd
->argument3
, REG_UIC_COMMAND_ARG_3
);
997 ufshcd_writel(hba
, uic_cmd
->command
& COMMAND_OPCODE_MASK
,
1002 * ufshcd_wait_for_uic_cmd - Wait complectioin of UIC command
1003 * @hba: per adapter instance
1004 * @uic_command: UIC command
1006 * Must be called with mutex held.
1007 * Returns 0 only if success.
1010 ufshcd_wait_for_uic_cmd(struct ufs_hba
*hba
, struct uic_command
*uic_cmd
)
1013 unsigned long flags
;
1015 if (wait_for_completion_timeout(&uic_cmd
->done
,
1016 msecs_to_jiffies(UIC_CMD_TIMEOUT
)))
1017 ret
= uic_cmd
->argument2
& MASK_UIC_COMMAND_RESULT
;
1021 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1022 hba
->active_uic_cmd
= NULL
;
1023 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1029 * __ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
1030 * @hba: per adapter instance
1031 * @uic_cmd: UIC command
1032 * @completion: initialize the completion only if this is set to true
1034 * Identical to ufshcd_send_uic_cmd() expect mutex. Must be called
1035 * with mutex held and host_lock locked.
1036 * Returns 0 only if success.
1039 __ufshcd_send_uic_cmd(struct ufs_hba
*hba
, struct uic_command
*uic_cmd
,
1042 if (!ufshcd_ready_for_uic_cmd(hba
)) {
1044 "Controller not ready to accept UIC commands\n");
1049 init_completion(&uic_cmd
->done
);
1051 ufshcd_dispatch_uic_cmd(hba
, uic_cmd
);
1057 * ufshcd_send_uic_cmd - Send UIC commands and retrieve the result
1058 * @hba: per adapter instance
1059 * @uic_cmd: UIC command
1061 * Returns 0 only if success.
1064 ufshcd_send_uic_cmd(struct ufs_hba
*hba
, struct uic_command
*uic_cmd
)
1067 unsigned long flags
;
1069 ufshcd_hold(hba
, false);
1070 mutex_lock(&hba
->uic_cmd_mutex
);
1071 ufshcd_add_delay_before_dme_cmd(hba
);
1073 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1074 ret
= __ufshcd_send_uic_cmd(hba
, uic_cmd
, true);
1075 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1077 ret
= ufshcd_wait_for_uic_cmd(hba
, uic_cmd
);
1079 mutex_unlock(&hba
->uic_cmd_mutex
);
1081 ufshcd_release(hba
);
1086 * ufshcd_map_sg - Map scatter-gather list to prdt
1087 * @lrbp - pointer to local reference block
1089 * Returns 0 in case of success, non-zero value in case of failure
1091 static int ufshcd_map_sg(struct ufshcd_lrb
*lrbp
)
1093 struct ufshcd_sg_entry
*prd_table
;
1094 struct scatterlist
*sg
;
1095 struct scsi_cmnd
*cmd
;
1100 sg_segments
= scsi_dma_map(cmd
);
1101 if (sg_segments
< 0)
1105 lrbp
->utr_descriptor_ptr
->prd_table_length
=
1106 cpu_to_le16((u16
) (sg_segments
));
1108 prd_table
= (struct ufshcd_sg_entry
*)lrbp
->ucd_prdt_ptr
;
1110 scsi_for_each_sg(cmd
, sg
, sg_segments
, i
) {
1112 cpu_to_le32(((u32
) sg_dma_len(sg
))-1);
1113 prd_table
[i
].base_addr
=
1114 cpu_to_le32(lower_32_bits(sg
->dma_address
));
1115 prd_table
[i
].upper_addr
=
1116 cpu_to_le32(upper_32_bits(sg
->dma_address
));
1117 prd_table
[i
].reserved
= 0;
1120 lrbp
->utr_descriptor_ptr
->prd_table_length
= 0;
1127 * ufshcd_enable_intr - enable interrupts
1128 * @hba: per adapter instance
1129 * @intrs: interrupt bits
1131 static void ufshcd_enable_intr(struct ufs_hba
*hba
, u32 intrs
)
1133 u32 set
= ufshcd_readl(hba
, REG_INTERRUPT_ENABLE
);
1135 if (hba
->ufs_version
== UFSHCI_VERSION_10
) {
1137 rw
= set
& INTERRUPT_MASK_RW_VER_10
;
1138 set
= rw
| ((set
^ intrs
) & intrs
);
1143 ufshcd_writel(hba
, set
, REG_INTERRUPT_ENABLE
);
1147 * ufshcd_disable_intr - disable interrupts
1148 * @hba: per adapter instance
1149 * @intrs: interrupt bits
1151 static void ufshcd_disable_intr(struct ufs_hba
*hba
, u32 intrs
)
1153 u32 set
= ufshcd_readl(hba
, REG_INTERRUPT_ENABLE
);
1155 if (hba
->ufs_version
== UFSHCI_VERSION_10
) {
1157 rw
= (set
& INTERRUPT_MASK_RW_VER_10
) &
1158 ~(intrs
& INTERRUPT_MASK_RW_VER_10
);
1159 set
= rw
| ((set
& intrs
) & ~INTERRUPT_MASK_RW_VER_10
);
1165 ufshcd_writel(hba
, set
, REG_INTERRUPT_ENABLE
);
1169 * ufshcd_prepare_req_desc_hdr() - Fills the requests header
1170 * descriptor according to request
1171 * @lrbp: pointer to local reference block
1172 * @upiu_flags: flags required in the header
1173 * @cmd_dir: requests data direction
1175 static void ufshcd_prepare_req_desc_hdr(struct ufshcd_lrb
*lrbp
,
1176 u32
*upiu_flags
, enum dma_data_direction cmd_dir
)
1178 struct utp_transfer_req_desc
*req_desc
= lrbp
->utr_descriptor_ptr
;
1182 if (cmd_dir
== DMA_FROM_DEVICE
) {
1183 data_direction
= UTP_DEVICE_TO_HOST
;
1184 *upiu_flags
= UPIU_CMD_FLAGS_READ
;
1185 } else if (cmd_dir
== DMA_TO_DEVICE
) {
1186 data_direction
= UTP_HOST_TO_DEVICE
;
1187 *upiu_flags
= UPIU_CMD_FLAGS_WRITE
;
1189 data_direction
= UTP_NO_DATA_TRANSFER
;
1190 *upiu_flags
= UPIU_CMD_FLAGS_NONE
;
1193 dword_0
= data_direction
| (lrbp
->command_type
1194 << UPIU_COMMAND_TYPE_OFFSET
);
1196 dword_0
|= UTP_REQ_DESC_INT_CMD
;
1198 /* Transfer request descriptor header fields */
1199 req_desc
->header
.dword_0
= cpu_to_le32(dword_0
);
1200 /* dword_1 is reserved, hence it is set to 0 */
1201 req_desc
->header
.dword_1
= 0;
1203 * assigning invalid value for command status. Controller
1204 * updates OCS on command completion, with the command
1207 req_desc
->header
.dword_2
=
1208 cpu_to_le32(OCS_INVALID_COMMAND_STATUS
);
1209 /* dword_3 is reserved, hence it is set to 0 */
1210 req_desc
->header
.dword_3
= 0;
1212 req_desc
->prd_table_length
= 0;
1216 * ufshcd_prepare_utp_scsi_cmd_upiu() - fills the utp_transfer_req_desc,
1218 * @lrbp - local reference block pointer
1219 * @upiu_flags - flags
1222 void ufshcd_prepare_utp_scsi_cmd_upiu(struct ufshcd_lrb
*lrbp
, u32 upiu_flags
)
1224 struct utp_upiu_req
*ucd_req_ptr
= lrbp
->ucd_req_ptr
;
1225 unsigned short cdb_len
;
1227 /* command descriptor fields */
1228 ucd_req_ptr
->header
.dword_0
= UPIU_HEADER_DWORD(
1229 UPIU_TRANSACTION_COMMAND
, upiu_flags
,
1230 lrbp
->lun
, lrbp
->task_tag
);
1231 ucd_req_ptr
->header
.dword_1
= UPIU_HEADER_DWORD(
1232 UPIU_COMMAND_SET_TYPE_SCSI
, 0, 0, 0);
1234 /* Total EHS length and Data segment length will be zero */
1235 ucd_req_ptr
->header
.dword_2
= 0;
1237 ucd_req_ptr
->sc
.exp_data_transfer_len
=
1238 cpu_to_be32(lrbp
->cmd
->sdb
.length
);
1240 cdb_len
= min_t(unsigned short, lrbp
->cmd
->cmd_len
, MAX_CDB_SIZE
);
1241 memset(ucd_req_ptr
->sc
.cdb
, 0, MAX_CDB_SIZE
);
1242 memcpy(ucd_req_ptr
->sc
.cdb
, lrbp
->cmd
->cmnd
, cdb_len
);
1244 memset(lrbp
->ucd_rsp_ptr
, 0, sizeof(struct utp_upiu_rsp
));
1248 * ufshcd_prepare_utp_query_req_upiu() - fills the utp_transfer_req_desc,
1251 * @lrbp: local reference block pointer
1252 * @upiu_flags: flags
1254 static void ufshcd_prepare_utp_query_req_upiu(struct ufs_hba
*hba
,
1255 struct ufshcd_lrb
*lrbp
, u32 upiu_flags
)
1257 struct utp_upiu_req
*ucd_req_ptr
= lrbp
->ucd_req_ptr
;
1258 struct ufs_query
*query
= &hba
->dev_cmd
.query
;
1259 u16 len
= be16_to_cpu(query
->request
.upiu_req
.length
);
1260 u8
*descp
= (u8
*)lrbp
->ucd_req_ptr
+ GENERAL_UPIU_REQUEST_SIZE
;
1262 /* Query request header */
1263 ucd_req_ptr
->header
.dword_0
= UPIU_HEADER_DWORD(
1264 UPIU_TRANSACTION_QUERY_REQ
, upiu_flags
,
1265 lrbp
->lun
, lrbp
->task_tag
);
1266 ucd_req_ptr
->header
.dword_1
= UPIU_HEADER_DWORD(
1267 0, query
->request
.query_func
, 0, 0);
1269 /* Data segment length */
1270 ucd_req_ptr
->header
.dword_2
= UPIU_HEADER_DWORD(
1271 0, 0, len
>> 8, (u8
)len
);
1273 /* Copy the Query Request buffer as is */
1274 memcpy(&ucd_req_ptr
->qr
, &query
->request
.upiu_req
,
1277 /* Copy the Descriptor */
1278 if (query
->request
.upiu_req
.opcode
== UPIU_QUERY_OPCODE_WRITE_DESC
)
1279 memcpy(descp
, query
->descriptor
, len
);
1281 memset(lrbp
->ucd_rsp_ptr
, 0, sizeof(struct utp_upiu_rsp
));
1284 static inline void ufshcd_prepare_utp_nop_upiu(struct ufshcd_lrb
*lrbp
)
1286 struct utp_upiu_req
*ucd_req_ptr
= lrbp
->ucd_req_ptr
;
1288 memset(ucd_req_ptr
, 0, sizeof(struct utp_upiu_req
));
1290 /* command descriptor fields */
1291 ucd_req_ptr
->header
.dword_0
=
1293 UPIU_TRANSACTION_NOP_OUT
, 0, 0, lrbp
->task_tag
);
1294 /* clear rest of the fields of basic header */
1295 ucd_req_ptr
->header
.dword_1
= 0;
1296 ucd_req_ptr
->header
.dword_2
= 0;
1298 memset(lrbp
->ucd_rsp_ptr
, 0, sizeof(struct utp_upiu_rsp
));
1302 * ufshcd_compose_upiu - form UFS Protocol Information Unit(UPIU)
1303 * @hba - per adapter instance
1304 * @lrb - pointer to local reference block
1306 static int ufshcd_compose_upiu(struct ufs_hba
*hba
, struct ufshcd_lrb
*lrbp
)
1311 switch (lrbp
->command_type
) {
1312 case UTP_CMD_TYPE_SCSI
:
1313 if (likely(lrbp
->cmd
)) {
1314 ufshcd_prepare_req_desc_hdr(lrbp
, &upiu_flags
,
1315 lrbp
->cmd
->sc_data_direction
);
1316 ufshcd_prepare_utp_scsi_cmd_upiu(lrbp
, upiu_flags
);
1321 case UTP_CMD_TYPE_DEV_MANAGE
:
1322 ufshcd_prepare_req_desc_hdr(lrbp
, &upiu_flags
, DMA_NONE
);
1323 if (hba
->dev_cmd
.type
== DEV_CMD_TYPE_QUERY
)
1324 ufshcd_prepare_utp_query_req_upiu(
1325 hba
, lrbp
, upiu_flags
);
1326 else if (hba
->dev_cmd
.type
== DEV_CMD_TYPE_NOP
)
1327 ufshcd_prepare_utp_nop_upiu(lrbp
);
1331 case UTP_CMD_TYPE_UFS
:
1332 /* For UFS native command implementation */
1334 dev_err(hba
->dev
, "%s: UFS native command are not supported\n",
1339 dev_err(hba
->dev
, "%s: unknown command type: 0x%x\n",
1340 __func__
, lrbp
->command_type
);
1342 } /* end of switch */
1348 * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
1349 * @scsi_lun: scsi LUN id
1351 * Returns UPIU LUN id
1353 static inline u8
ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun
)
1355 if (scsi_is_wlun(scsi_lun
))
1356 return (scsi_lun
& UFS_UPIU_MAX_UNIT_NUM_ID
)
1359 return scsi_lun
& UFS_UPIU_MAX_UNIT_NUM_ID
;
1363 * ufshcd_upiu_wlun_to_scsi_wlun - maps UPIU W-LUN id to SCSI W-LUN ID
1364 * @scsi_lun: UPIU W-LUN id
1366 * Returns SCSI W-LUN id
1368 static inline u16
ufshcd_upiu_wlun_to_scsi_wlun(u8 upiu_wlun_id
)
1370 return (upiu_wlun_id
& ~UFS_UPIU_WLUN_ID
) | SCSI_W_LUN_BASE
;
1374 * ufshcd_queuecommand - main entry point for SCSI requests
1375 * @cmd: command from SCSI Midlayer
1376 * @done: call back function
1378 * Returns 0 for success, non-zero in case of failure
1380 static int ufshcd_queuecommand(struct Scsi_Host
*host
, struct scsi_cmnd
*cmd
)
1382 struct ufshcd_lrb
*lrbp
;
1383 struct ufs_hba
*hba
;
1384 unsigned long flags
;
1388 hba
= shost_priv(host
);
1390 tag
= cmd
->request
->tag
;
1391 if (!ufshcd_valid_tag(hba
, tag
)) {
1393 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
1394 __func__
, tag
, cmd
, cmd
->request
);
1398 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1399 switch (hba
->ufshcd_state
) {
1400 case UFSHCD_STATE_OPERATIONAL
:
1402 case UFSHCD_STATE_RESET
:
1403 err
= SCSI_MLQUEUE_HOST_BUSY
;
1405 case UFSHCD_STATE_ERROR
:
1406 set_host_byte(cmd
, DID_ERROR
);
1407 cmd
->scsi_done(cmd
);
1410 dev_WARN_ONCE(hba
->dev
, 1, "%s: invalid state %d\n",
1411 __func__
, hba
->ufshcd_state
);
1412 set_host_byte(cmd
, DID_BAD_TARGET
);
1413 cmd
->scsi_done(cmd
);
1417 /* if error handling is in progress, don't issue commands */
1418 if (ufshcd_eh_in_progress(hba
)) {
1419 set_host_byte(cmd
, DID_ERROR
);
1420 cmd
->scsi_done(cmd
);
1423 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1425 /* acquire the tag to make sure device cmds don't use it */
1426 if (test_and_set_bit_lock(tag
, &hba
->lrb_in_use
)) {
1428 * Dev manage command in progress, requeue the command.
1429 * Requeuing the command helps in cases where the request *may*
1430 * find different tag instead of waiting for dev manage command
1433 err
= SCSI_MLQUEUE_HOST_BUSY
;
1437 err
= ufshcd_hold(hba
, true);
1439 err
= SCSI_MLQUEUE_HOST_BUSY
;
1440 clear_bit_unlock(tag
, &hba
->lrb_in_use
);
1443 WARN_ON(hba
->clk_gating
.state
!= CLKS_ON
);
1445 lrbp
= &hba
->lrb
[tag
];
1449 lrbp
->sense_bufflen
= SCSI_SENSE_BUFFERSIZE
;
1450 lrbp
->sense_buffer
= cmd
->sense_buffer
;
1451 lrbp
->task_tag
= tag
;
1452 lrbp
->lun
= ufshcd_scsi_to_upiu_lun(cmd
->device
->lun
);
1453 lrbp
->intr_cmd
= !ufshcd_is_intr_aggr_allowed(hba
) ? true : false;
1454 lrbp
->command_type
= UTP_CMD_TYPE_SCSI
;
1456 /* form UPIU before issuing the command */
1457 ufshcd_compose_upiu(hba
, lrbp
);
1458 err
= ufshcd_map_sg(lrbp
);
1461 clear_bit_unlock(tag
, &hba
->lrb_in_use
);
1465 /* issue command to the controller */
1466 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1467 ufshcd_send_command(hba
, tag
);
1469 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1474 static int ufshcd_compose_dev_cmd(struct ufs_hba
*hba
,
1475 struct ufshcd_lrb
*lrbp
, enum dev_cmd_type cmd_type
, int tag
)
1478 lrbp
->sense_bufflen
= 0;
1479 lrbp
->sense_buffer
= NULL
;
1480 lrbp
->task_tag
= tag
;
1481 lrbp
->lun
= 0; /* device management cmd is not specific to any LUN */
1482 lrbp
->command_type
= UTP_CMD_TYPE_DEV_MANAGE
;
1483 lrbp
->intr_cmd
= true; /* No interrupt aggregation */
1484 hba
->dev_cmd
.type
= cmd_type
;
1486 return ufshcd_compose_upiu(hba
, lrbp
);
1490 ufshcd_clear_cmd(struct ufs_hba
*hba
, int tag
)
1493 unsigned long flags
;
1494 u32 mask
= 1 << tag
;
1496 /* clear outstanding transaction before retry */
1497 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1498 ufshcd_utrl_clear(hba
, tag
);
1499 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1502 * wait for for h/w to clear corresponding bit in door-bell.
1503 * max. wait is 1 sec.
1505 err
= ufshcd_wait_for_register(hba
,
1506 REG_UTP_TRANSFER_REQ_DOOR_BELL
,
1507 mask
, ~mask
, 1000, 1000, true);
1513 ufshcd_check_query_response(struct ufs_hba
*hba
, struct ufshcd_lrb
*lrbp
)
1515 struct ufs_query_res
*query_res
= &hba
->dev_cmd
.query
.response
;
1517 /* Get the UPIU response */
1518 query_res
->response
= ufshcd_get_rsp_upiu_result(lrbp
->ucd_rsp_ptr
) >>
1519 UPIU_RSP_CODE_OFFSET
;
1520 return query_res
->response
;
1524 * ufshcd_dev_cmd_completion() - handles device management command responses
1525 * @hba: per adapter instance
1526 * @lrbp: pointer to local reference block
1529 ufshcd_dev_cmd_completion(struct ufs_hba
*hba
, struct ufshcd_lrb
*lrbp
)
1534 resp
= ufshcd_get_req_rsp(lrbp
->ucd_rsp_ptr
);
1537 case UPIU_TRANSACTION_NOP_IN
:
1538 if (hba
->dev_cmd
.type
!= DEV_CMD_TYPE_NOP
) {
1540 dev_err(hba
->dev
, "%s: unexpected response %x\n",
1544 case UPIU_TRANSACTION_QUERY_RSP
:
1545 err
= ufshcd_check_query_response(hba
, lrbp
);
1547 err
= ufshcd_copy_query_response(hba
, lrbp
);
1549 case UPIU_TRANSACTION_REJECT_UPIU
:
1550 /* TODO: handle Reject UPIU Response */
1552 dev_err(hba
->dev
, "%s: Reject UPIU not fully implemented\n",
1557 dev_err(hba
->dev
, "%s: Invalid device management cmd response: %x\n",
1565 static int ufshcd_wait_for_dev_cmd(struct ufs_hba
*hba
,
1566 struct ufshcd_lrb
*lrbp
, int max_timeout
)
1569 unsigned long time_left
;
1570 unsigned long flags
;
1572 time_left
= wait_for_completion_timeout(hba
->dev_cmd
.complete
,
1573 msecs_to_jiffies(max_timeout
));
1575 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1576 hba
->dev_cmd
.complete
= NULL
;
1577 if (likely(time_left
)) {
1578 err
= ufshcd_get_tr_ocs(lrbp
);
1580 err
= ufshcd_dev_cmd_completion(hba
, lrbp
);
1582 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1586 dev_dbg(hba
->dev
, "%s: dev_cmd request timedout, tag %d\n",
1587 __func__
, lrbp
->task_tag
);
1588 if (!ufshcd_clear_cmd(hba
, lrbp
->task_tag
))
1589 /* successfully cleared the command, retry if needed */
1592 * in case of an error, after clearing the doorbell,
1593 * we also need to clear the outstanding_request
1596 ufshcd_outstanding_req_clear(hba
, lrbp
->task_tag
);
1603 * ufshcd_get_dev_cmd_tag - Get device management command tag
1604 * @hba: per-adapter instance
1605 * @tag: pointer to variable with available slot value
1607 * Get a free slot and lock it until device management command
1610 * Returns false if free slot is unavailable for locking, else
1611 * return true with tag value in @tag.
1613 static bool ufshcd_get_dev_cmd_tag(struct ufs_hba
*hba
, int *tag_out
)
1623 tmp
= ~hba
->lrb_in_use
;
1624 tag
= find_last_bit(&tmp
, hba
->nutrs
);
1625 if (tag
>= hba
->nutrs
)
1627 } while (test_and_set_bit_lock(tag
, &hba
->lrb_in_use
));
1635 static inline void ufshcd_put_dev_cmd_tag(struct ufs_hba
*hba
, int tag
)
1637 clear_bit_unlock(tag
, &hba
->lrb_in_use
);
1641 * ufshcd_exec_dev_cmd - API for sending device management requests
1643 * @cmd_type - specifies the type (NOP, Query...)
1644 * @timeout - time in seconds
1646 * NOTE: Since there is only one available tag for device management commands,
1647 * it is expected you hold the hba->dev_cmd.lock mutex.
1649 static int ufshcd_exec_dev_cmd(struct ufs_hba
*hba
,
1650 enum dev_cmd_type cmd_type
, int timeout
)
1652 struct ufshcd_lrb
*lrbp
;
1655 struct completion wait
;
1656 unsigned long flags
;
1659 * Get free slot, sleep if slots are unavailable.
1660 * Even though we use wait_event() which sleeps indefinitely,
1661 * the maximum wait time is bounded by SCSI request timeout.
1663 wait_event(hba
->dev_cmd
.tag_wq
, ufshcd_get_dev_cmd_tag(hba
, &tag
));
1665 init_completion(&wait
);
1666 lrbp
= &hba
->lrb
[tag
];
1668 err
= ufshcd_compose_dev_cmd(hba
, lrbp
, cmd_type
, tag
);
1672 hba
->dev_cmd
.complete
= &wait
;
1674 /* Make sure descriptors are ready before ringing the doorbell */
1676 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
1677 ufshcd_send_command(hba
, tag
);
1678 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
1680 err
= ufshcd_wait_for_dev_cmd(hba
, lrbp
, timeout
);
1683 ufshcd_put_dev_cmd_tag(hba
, tag
);
1684 wake_up(&hba
->dev_cmd
.tag_wq
);
1689 * ufshcd_init_query() - init the query response and request parameters
1690 * @hba: per-adapter instance
1691 * @request: address of the request pointer to be initialized
1692 * @response: address of the response pointer to be initialized
1693 * @opcode: operation to perform
1694 * @idn: flag idn to access
1695 * @index: LU number to access
1696 * @selector: query/flag/descriptor further identification
1698 static inline void ufshcd_init_query(struct ufs_hba
*hba
,
1699 struct ufs_query_req
**request
, struct ufs_query_res
**response
,
1700 enum query_opcode opcode
, u8 idn
, u8 index
, u8 selector
)
1702 *request
= &hba
->dev_cmd
.query
.request
;
1703 *response
= &hba
->dev_cmd
.query
.response
;
1704 memset(*request
, 0, sizeof(struct ufs_query_req
));
1705 memset(*response
, 0, sizeof(struct ufs_query_res
));
1706 (*request
)->upiu_req
.opcode
= opcode
;
1707 (*request
)->upiu_req
.idn
= idn
;
1708 (*request
)->upiu_req
.index
= index
;
1709 (*request
)->upiu_req
.selector
= selector
;
1712 static int ufshcd_query_flag_retry(struct ufs_hba
*hba
,
1713 enum query_opcode opcode
, enum flag_idn idn
, bool *flag_res
)
1718 for (retries
= 0; retries
< QUERY_REQ_RETRIES
; retries
++) {
1719 ret
= ufshcd_query_flag(hba
, opcode
, idn
, flag_res
);
1722 "%s: failed with error %d, retries %d\n",
1723 __func__
, ret
, retries
);
1730 "%s: query attribute, opcode %d, idn %d, failed with error %d after %d retires\n",
1731 __func__
, opcode
, idn
, ret
, retries
);
1736 * ufshcd_query_flag() - API function for sending flag query requests
1737 * hba: per-adapter instance
1738 * query_opcode: flag query to perform
1739 * idn: flag idn to access
1740 * flag_res: the flag value after the query request completes
1742 * Returns 0 for success, non-zero in case of failure
1744 int ufshcd_query_flag(struct ufs_hba
*hba
, enum query_opcode opcode
,
1745 enum flag_idn idn
, bool *flag_res
)
1747 struct ufs_query_req
*request
= NULL
;
1748 struct ufs_query_res
*response
= NULL
;
1749 int err
, index
= 0, selector
= 0;
1750 int timeout
= QUERY_REQ_TIMEOUT
;
1754 ufshcd_hold(hba
, false);
1755 mutex_lock(&hba
->dev_cmd
.lock
);
1756 ufshcd_init_query(hba
, &request
, &response
, opcode
, idn
, index
,
1760 case UPIU_QUERY_OPCODE_SET_FLAG
:
1761 case UPIU_QUERY_OPCODE_CLEAR_FLAG
:
1762 case UPIU_QUERY_OPCODE_TOGGLE_FLAG
:
1763 request
->query_func
= UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST
;
1765 case UPIU_QUERY_OPCODE_READ_FLAG
:
1766 request
->query_func
= UPIU_QUERY_FUNC_STANDARD_READ_REQUEST
;
1768 /* No dummy reads */
1769 dev_err(hba
->dev
, "%s: Invalid argument for read request\n",
1777 "%s: Expected query flag opcode but got = %d\n",
1783 if (idn
== QUERY_FLAG_IDN_FDEVICEINIT
)
1784 timeout
= QUERY_FDEVICEINIT_REQ_TIMEOUT
;
1786 err
= ufshcd_exec_dev_cmd(hba
, DEV_CMD_TYPE_QUERY
, timeout
);
1790 "%s: Sending flag query for idn %d failed, err = %d\n",
1791 __func__
, idn
, err
);
1796 *flag_res
= (be32_to_cpu(response
->upiu_res
.value
) &
1797 MASK_QUERY_UPIU_FLAG_LOC
) & 0x1;
1800 mutex_unlock(&hba
->dev_cmd
.lock
);
1801 ufshcd_release(hba
);
1806 * ufshcd_query_attr - API function for sending attribute requests
1807 * hba: per-adapter instance
1808 * opcode: attribute opcode
1809 * idn: attribute idn to access
1810 * index: index field
1811 * selector: selector field
1812 * attr_val: the attribute value after the query request completes
1814 * Returns 0 for success, non-zero in case of failure
1816 static int ufshcd_query_attr(struct ufs_hba
*hba
, enum query_opcode opcode
,
1817 enum attr_idn idn
, u8 index
, u8 selector
, u32
*attr_val
)
1819 struct ufs_query_req
*request
= NULL
;
1820 struct ufs_query_res
*response
= NULL
;
1825 ufshcd_hold(hba
, false);
1827 dev_err(hba
->dev
, "%s: attribute value required for opcode 0x%x\n",
1833 mutex_lock(&hba
->dev_cmd
.lock
);
1834 ufshcd_init_query(hba
, &request
, &response
, opcode
, idn
, index
,
1838 case UPIU_QUERY_OPCODE_WRITE_ATTR
:
1839 request
->query_func
= UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST
;
1840 request
->upiu_req
.value
= cpu_to_be32(*attr_val
);
1842 case UPIU_QUERY_OPCODE_READ_ATTR
:
1843 request
->query_func
= UPIU_QUERY_FUNC_STANDARD_READ_REQUEST
;
1846 dev_err(hba
->dev
, "%s: Expected query attr opcode but got = 0x%.2x\n",
1852 err
= ufshcd_exec_dev_cmd(hba
, DEV_CMD_TYPE_QUERY
, QUERY_REQ_TIMEOUT
);
1855 dev_err(hba
->dev
, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1856 __func__
, opcode
, idn
, err
);
1860 *attr_val
= be32_to_cpu(response
->upiu_res
.value
);
1863 mutex_unlock(&hba
->dev_cmd
.lock
);
1865 ufshcd_release(hba
);
1870 * ufshcd_query_attr_retry() - API function for sending query
1871 * attribute with retries
1872 * @hba: per-adapter instance
1873 * @opcode: attribute opcode
1874 * @idn: attribute idn to access
1875 * @index: index field
1876 * @selector: selector field
1877 * @attr_val: the attribute value after the query request
1880 * Returns 0 for success, non-zero in case of failure
1882 static int ufshcd_query_attr_retry(struct ufs_hba
*hba
,
1883 enum query_opcode opcode
, enum attr_idn idn
, u8 index
, u8 selector
,
1889 for (retries
= QUERY_REQ_RETRIES
; retries
> 0; retries
--) {
1890 ret
= ufshcd_query_attr(hba
, opcode
, idn
, index
,
1891 selector
, attr_val
);
1893 dev_dbg(hba
->dev
, "%s: failed with error %d, retries %d\n",
1894 __func__
, ret
, retries
);
1901 "%s: query attribute, idn %d, failed with error %d after %d retires\n",
1902 __func__
, idn
, ret
, QUERY_REQ_RETRIES
);
1906 static int __ufshcd_query_descriptor(struct ufs_hba
*hba
,
1907 enum query_opcode opcode
, enum desc_idn idn
, u8 index
,
1908 u8 selector
, u8
*desc_buf
, int *buf_len
)
1910 struct ufs_query_req
*request
= NULL
;
1911 struct ufs_query_res
*response
= NULL
;
1916 ufshcd_hold(hba
, false);
1918 dev_err(hba
->dev
, "%s: descriptor buffer required for opcode 0x%x\n",
1924 if (*buf_len
<= QUERY_DESC_MIN_SIZE
|| *buf_len
> QUERY_DESC_MAX_SIZE
) {
1925 dev_err(hba
->dev
, "%s: descriptor buffer size (%d) is out of range\n",
1926 __func__
, *buf_len
);
1931 mutex_lock(&hba
->dev_cmd
.lock
);
1932 ufshcd_init_query(hba
, &request
, &response
, opcode
, idn
, index
,
1934 hba
->dev_cmd
.query
.descriptor
= desc_buf
;
1935 request
->upiu_req
.length
= cpu_to_be16(*buf_len
);
1938 case UPIU_QUERY_OPCODE_WRITE_DESC
:
1939 request
->query_func
= UPIU_QUERY_FUNC_STANDARD_WRITE_REQUEST
;
1941 case UPIU_QUERY_OPCODE_READ_DESC
:
1942 request
->query_func
= UPIU_QUERY_FUNC_STANDARD_READ_REQUEST
;
1946 "%s: Expected query descriptor opcode but got = 0x%.2x\n",
1952 err
= ufshcd_exec_dev_cmd(hba
, DEV_CMD_TYPE_QUERY
, QUERY_REQ_TIMEOUT
);
1955 dev_err(hba
->dev
, "%s: opcode 0x%.2x for idn %d failed, err = %d\n",
1956 __func__
, opcode
, idn
, err
);
1960 hba
->dev_cmd
.query
.descriptor
= NULL
;
1961 *buf_len
= be16_to_cpu(response
->upiu_res
.length
);
1964 mutex_unlock(&hba
->dev_cmd
.lock
);
1966 ufshcd_release(hba
);
1971 * ufshcd_query_descriptor_retry - API function for sending descriptor
1973 * hba: per-adapter instance
1974 * opcode: attribute opcode
1975 * idn: attribute idn to access
1976 * index: index field
1977 * selector: selector field
1978 * desc_buf: the buffer that contains the descriptor
1979 * buf_len: length parameter passed to the device
1981 * Returns 0 for success, non-zero in case of failure.
1982 * The buf_len parameter will contain, on return, the length parameter
1983 * received on the response.
1985 int ufshcd_query_descriptor_retry(struct ufs_hba
*hba
,
1986 enum query_opcode opcode
, enum desc_idn idn
, u8 index
,
1987 u8 selector
, u8
*desc_buf
, int *buf_len
)
1992 for (retries
= QUERY_REQ_RETRIES
; retries
> 0; retries
--) {
1993 err
= __ufshcd_query_descriptor(hba
, opcode
, idn
, index
,
1994 selector
, desc_buf
, buf_len
);
1995 if (!err
|| err
== -EINVAL
)
2001 EXPORT_SYMBOL(ufshcd_query_descriptor_retry
);
2004 * ufshcd_read_desc_param - read the specified descriptor parameter
2005 * @hba: Pointer to adapter instance
2006 * @desc_id: descriptor idn value
2007 * @desc_index: descriptor index
2008 * @param_offset: offset of the parameter to read
2009 * @param_read_buf: pointer to buffer where parameter would be read
2010 * @param_size: sizeof(param_read_buf)
2012 * Return 0 in case of success, non-zero otherwise
2014 static int ufshcd_read_desc_param(struct ufs_hba
*hba
,
2015 enum desc_idn desc_id
,
2024 bool is_kmalloc
= true;
2027 if (desc_id
>= QUERY_DESC_IDN_MAX
)
2030 buff_len
= ufs_query_desc_max_size
[desc_id
];
2031 if ((param_offset
+ param_size
) > buff_len
)
2034 if (!param_offset
&& (param_size
== buff_len
)) {
2035 /* memory space already available to hold full descriptor */
2036 desc_buf
= param_read_buf
;
2039 /* allocate memory to hold full descriptor */
2040 desc_buf
= kmalloc(buff_len
, GFP_KERNEL
);
2045 ret
= ufshcd_query_descriptor_retry(hba
, UPIU_QUERY_OPCODE_READ_DESC
,
2046 desc_id
, desc_index
, 0, desc_buf
,
2049 if (ret
|| (buff_len
< ufs_query_desc_max_size
[desc_id
]) ||
2050 (desc_buf
[QUERY_DESC_LENGTH_OFFSET
] !=
2051 ufs_query_desc_max_size
[desc_id
])
2052 || (desc_buf
[QUERY_DESC_DESC_TYPE_OFFSET
] != desc_id
)) {
2053 dev_err(hba
->dev
, "%s: Failed reading descriptor. desc_id %d param_offset %d buff_len %d ret %d",
2054 __func__
, desc_id
, param_offset
, buff_len
, ret
);
2062 memcpy(param_read_buf
, &desc_buf
[param_offset
], param_size
);
2069 static inline int ufshcd_read_desc(struct ufs_hba
*hba
,
2070 enum desc_idn desc_id
,
2075 return ufshcd_read_desc_param(hba
, desc_id
, desc_index
, 0, buf
, size
);
2078 static inline int ufshcd_read_power_desc(struct ufs_hba
*hba
,
2082 return ufshcd_read_desc(hba
, QUERY_DESC_IDN_POWER
, 0, buf
, size
);
2085 int ufshcd_read_device_desc(struct ufs_hba
*hba
, u8
*buf
, u32 size
)
2087 return ufshcd_read_desc(hba
, QUERY_DESC_IDN_DEVICE
, 0, buf
, size
);
2089 EXPORT_SYMBOL(ufshcd_read_device_desc
);
2092 * ufshcd_read_string_desc - read string descriptor
2093 * @hba: pointer to adapter instance
2094 * @desc_index: descriptor index
2095 * @buf: pointer to buffer where descriptor would be read
2096 * @size: size of buf
2097 * @ascii: if true convert from unicode to ascii characters
2099 * Return 0 in case of success, non-zero otherwise
2101 int ufshcd_read_string_desc(struct ufs_hba
*hba
, int desc_index
, u8
*buf
,
2102 u32 size
, bool ascii
)
2106 err
= ufshcd_read_desc(hba
,
2107 QUERY_DESC_IDN_STRING
, desc_index
, buf
, size
);
2110 dev_err(hba
->dev
, "%s: reading String Desc failed after %d retries. err = %d\n",
2111 __func__
, QUERY_REQ_RETRIES
, err
);
2122 /* remove header and divide by 2 to move from UTF16 to UTF8 */
2123 ascii_len
= (desc_len
- QUERY_DESC_HDR_SIZE
) / 2 + 1;
2124 if (size
< ascii_len
+ QUERY_DESC_HDR_SIZE
) {
2125 dev_err(hba
->dev
, "%s: buffer allocated size is too small\n",
2131 buff_ascii
= kmalloc(ascii_len
, GFP_KERNEL
);
2138 * the descriptor contains string in UTF16 format
2139 * we need to convert to utf-8 so it can be displayed
2141 utf16s_to_utf8s((wchar_t *)&buf
[QUERY_DESC_HDR_SIZE
],
2142 desc_len
- QUERY_DESC_HDR_SIZE
,
2143 UTF16_BIG_ENDIAN
, buff_ascii
, ascii_len
);
2145 /* replace non-printable or non-ASCII characters with spaces */
2146 for (i
= 0; i
< ascii_len
; i
++)
2147 ufshcd_remove_non_printable(&buff_ascii
[i
]);
2149 memset(buf
+ QUERY_DESC_HDR_SIZE
, 0,
2150 size
- QUERY_DESC_HDR_SIZE
);
2151 memcpy(buf
+ QUERY_DESC_HDR_SIZE
, buff_ascii
, ascii_len
);
2152 buf
[QUERY_DESC_LENGTH_OFFSET
] = ascii_len
+ QUERY_DESC_HDR_SIZE
;
2159 EXPORT_SYMBOL(ufshcd_read_string_desc
);
2162 * ufshcd_read_unit_desc_param - read the specified unit descriptor parameter
2163 * @hba: Pointer to adapter instance
2165 * @param_offset: offset of the parameter to read
2166 * @param_read_buf: pointer to buffer where parameter would be read
2167 * @param_size: sizeof(param_read_buf)
2169 * Return 0 in case of success, non-zero otherwise
2171 static inline int ufshcd_read_unit_desc_param(struct ufs_hba
*hba
,
2173 enum unit_desc_param param_offset
,
2178 * Unit descriptors are only available for general purpose LUs (LUN id
2179 * from 0 to 7) and RPMB Well known LU.
2181 if (lun
!= UFS_UPIU_RPMB_WLUN
&& (lun
>= UFS_UPIU_MAX_GENERAL_LUN
))
2184 return ufshcd_read_desc_param(hba
, QUERY_DESC_IDN_UNIT
, lun
,
2185 param_offset
, param_read_buf
, param_size
);
2189 * ufshcd_memory_alloc - allocate memory for host memory space data structures
2190 * @hba: per adapter instance
2192 * 1. Allocate DMA memory for Command Descriptor array
2193 * Each command descriptor consist of Command UPIU, Response UPIU and PRDT
2194 * 2. Allocate DMA memory for UTP Transfer Request Descriptor List (UTRDL).
2195 * 3. Allocate DMA memory for UTP Task Management Request Descriptor List
2197 * 4. Allocate memory for local reference block(lrb).
2199 * Returns 0 for success, non-zero in case of failure
2201 static int ufshcd_memory_alloc(struct ufs_hba
*hba
)
2203 size_t utmrdl_size
, utrdl_size
, ucdl_size
;
2205 /* Allocate memory for UTP command descriptors */
2206 ucdl_size
= (sizeof(struct utp_transfer_cmd_desc
) * hba
->nutrs
);
2207 hba
->ucdl_base_addr
= dmam_alloc_coherent(hba
->dev
,
2209 &hba
->ucdl_dma_addr
,
2213 * UFSHCI requires UTP command descriptor to be 128 byte aligned.
2214 * make sure hba->ucdl_dma_addr is aligned to PAGE_SIZE
2215 * if hba->ucdl_dma_addr is aligned to PAGE_SIZE, then it will
2216 * be aligned to 128 bytes as well
2218 if (!hba
->ucdl_base_addr
||
2219 WARN_ON(hba
->ucdl_dma_addr
& (PAGE_SIZE
- 1))) {
2221 "Command Descriptor Memory allocation failed\n");
2226 * Allocate memory for UTP Transfer descriptors
2227 * UFSHCI requires 1024 byte alignment of UTRD
2229 utrdl_size
= (sizeof(struct utp_transfer_req_desc
) * hba
->nutrs
);
2230 hba
->utrdl_base_addr
= dmam_alloc_coherent(hba
->dev
,
2232 &hba
->utrdl_dma_addr
,
2234 if (!hba
->utrdl_base_addr
||
2235 WARN_ON(hba
->utrdl_dma_addr
& (PAGE_SIZE
- 1))) {
2237 "Transfer Descriptor Memory allocation failed\n");
2242 * Allocate memory for UTP Task Management descriptors
2243 * UFSHCI requires 1024 byte alignment of UTMRD
2245 utmrdl_size
= sizeof(struct utp_task_req_desc
) * hba
->nutmrs
;
2246 hba
->utmrdl_base_addr
= dmam_alloc_coherent(hba
->dev
,
2248 &hba
->utmrdl_dma_addr
,
2250 if (!hba
->utmrdl_base_addr
||
2251 WARN_ON(hba
->utmrdl_dma_addr
& (PAGE_SIZE
- 1))) {
2253 "Task Management Descriptor Memory allocation failed\n");
2257 /* Allocate memory for local reference block */
2258 hba
->lrb
= devm_kzalloc(hba
->dev
,
2259 hba
->nutrs
* sizeof(struct ufshcd_lrb
),
2262 dev_err(hba
->dev
, "LRB Memory allocation failed\n");
2271 * ufshcd_host_memory_configure - configure local reference block with
2273 * @hba: per adapter instance
2275 * Configure Host memory space
2276 * 1. Update Corresponding UTRD.UCDBA and UTRD.UCDBAU with UCD DMA
2278 * 2. Update each UTRD with Response UPIU offset, Response UPIU length
2280 * 3. Save the corresponding addresses of UTRD, UCD.CMD, UCD.RSP and UCD.PRDT
2281 * into local reference block.
2283 static void ufshcd_host_memory_configure(struct ufs_hba
*hba
)
2285 struct utp_transfer_cmd_desc
*cmd_descp
;
2286 struct utp_transfer_req_desc
*utrdlp
;
2287 dma_addr_t cmd_desc_dma_addr
;
2288 dma_addr_t cmd_desc_element_addr
;
2289 u16 response_offset
;
2294 utrdlp
= hba
->utrdl_base_addr
;
2295 cmd_descp
= hba
->ucdl_base_addr
;
2298 offsetof(struct utp_transfer_cmd_desc
, response_upiu
);
2300 offsetof(struct utp_transfer_cmd_desc
, prd_table
);
2302 cmd_desc_size
= sizeof(struct utp_transfer_cmd_desc
);
2303 cmd_desc_dma_addr
= hba
->ucdl_dma_addr
;
2305 for (i
= 0; i
< hba
->nutrs
; i
++) {
2306 /* Configure UTRD with command descriptor base address */
2307 cmd_desc_element_addr
=
2308 (cmd_desc_dma_addr
+ (cmd_desc_size
* i
));
2309 utrdlp
[i
].command_desc_base_addr_lo
=
2310 cpu_to_le32(lower_32_bits(cmd_desc_element_addr
));
2311 utrdlp
[i
].command_desc_base_addr_hi
=
2312 cpu_to_le32(upper_32_bits(cmd_desc_element_addr
));
2314 /* Response upiu and prdt offset should be in double words */
2315 utrdlp
[i
].response_upiu_offset
=
2316 cpu_to_le16((response_offset
>> 2));
2317 utrdlp
[i
].prd_table_offset
=
2318 cpu_to_le16((prdt_offset
>> 2));
2319 utrdlp
[i
].response_upiu_length
=
2320 cpu_to_le16(ALIGNED_UPIU_SIZE
>> 2);
2322 hba
->lrb
[i
].utr_descriptor_ptr
= (utrdlp
+ i
);
2323 hba
->lrb
[i
].ucd_req_ptr
=
2324 (struct utp_upiu_req
*)(cmd_descp
+ i
);
2325 hba
->lrb
[i
].ucd_rsp_ptr
=
2326 (struct utp_upiu_rsp
*)cmd_descp
[i
].response_upiu
;
2327 hba
->lrb
[i
].ucd_prdt_ptr
=
2328 (struct ufshcd_sg_entry
*)cmd_descp
[i
].prd_table
;
2333 * ufshcd_dme_link_startup - Notify Unipro to perform link startup
2334 * @hba: per adapter instance
2336 * UIC_CMD_DME_LINK_STARTUP command must be issued to Unipro layer,
2337 * in order to initialize the Unipro link startup procedure.
2338 * Once the Unipro links are up, the device connected to the controller
2341 * Returns 0 on success, non-zero value on failure
2343 static int ufshcd_dme_link_startup(struct ufs_hba
*hba
)
2345 struct uic_command uic_cmd
= {0};
2348 uic_cmd
.command
= UIC_CMD_DME_LINK_STARTUP
;
2350 ret
= ufshcd_send_uic_cmd(hba
, &uic_cmd
);
2353 "dme-link-startup: error code %d\n", ret
);
2357 static inline void ufshcd_add_delay_before_dme_cmd(struct ufs_hba
*hba
)
2359 #define MIN_DELAY_BEFORE_DME_CMDS_US 1000
2360 unsigned long min_sleep_time_us
;
2362 if (!(hba
->quirks
& UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS
))
2366 * last_dme_cmd_tstamp will be 0 only for 1st call to
2369 if (unlikely(!ktime_to_us(hba
->last_dme_cmd_tstamp
))) {
2370 min_sleep_time_us
= MIN_DELAY_BEFORE_DME_CMDS_US
;
2372 unsigned long delta
=
2373 (unsigned long) ktime_to_us(
2374 ktime_sub(ktime_get(),
2375 hba
->last_dme_cmd_tstamp
));
2377 if (delta
< MIN_DELAY_BEFORE_DME_CMDS_US
)
2379 MIN_DELAY_BEFORE_DME_CMDS_US
- delta
;
2381 return; /* no more delay required */
2384 /* allow sleep for extra 50us if needed */
2385 usleep_range(min_sleep_time_us
, min_sleep_time_us
+ 50);
2389 * ufshcd_dme_set_attr - UIC command for DME_SET, DME_PEER_SET
2390 * @hba: per adapter instance
2391 * @attr_sel: uic command argument1
2392 * @attr_set: attribute set type as uic command argument2
2393 * @mib_val: setting value as uic command argument3
2394 * @peer: indicate whether peer or local
2396 * Returns 0 on success, non-zero value on failure
2398 int ufshcd_dme_set_attr(struct ufs_hba
*hba
, u32 attr_sel
,
2399 u8 attr_set
, u32 mib_val
, u8 peer
)
2401 struct uic_command uic_cmd
= {0};
2402 static const char *const action
[] = {
2406 const char *set
= action
[!!peer
];
2408 int retries
= UFS_UIC_COMMAND_RETRIES
;
2410 uic_cmd
.command
= peer
?
2411 UIC_CMD_DME_PEER_SET
: UIC_CMD_DME_SET
;
2412 uic_cmd
.argument1
= attr_sel
;
2413 uic_cmd
.argument2
= UIC_ARG_ATTR_TYPE(attr_set
);
2414 uic_cmd
.argument3
= mib_val
;
2417 /* for peer attributes we retry upon failure */
2418 ret
= ufshcd_send_uic_cmd(hba
, &uic_cmd
);
2420 dev_dbg(hba
->dev
, "%s: attr-id 0x%x val 0x%x error code %d\n",
2421 set
, UIC_GET_ATTR_ID(attr_sel
), mib_val
, ret
);
2422 } while (ret
&& peer
&& --retries
);
2425 dev_err(hba
->dev
, "%s: attr-id 0x%x val 0x%x failed %d retries\n",
2426 set
, UIC_GET_ATTR_ID(attr_sel
), mib_val
,
2431 EXPORT_SYMBOL_GPL(ufshcd_dme_set_attr
);
2434 * ufshcd_dme_get_attr - UIC command for DME_GET, DME_PEER_GET
2435 * @hba: per adapter instance
2436 * @attr_sel: uic command argument1
2437 * @mib_val: the value of the attribute as returned by the UIC command
2438 * @peer: indicate whether peer or local
2440 * Returns 0 on success, non-zero value on failure
2442 int ufshcd_dme_get_attr(struct ufs_hba
*hba
, u32 attr_sel
,
2443 u32
*mib_val
, u8 peer
)
2445 struct uic_command uic_cmd
= {0};
2446 static const char *const action
[] = {
2450 const char *get
= action
[!!peer
];
2452 int retries
= UFS_UIC_COMMAND_RETRIES
;
2453 struct ufs_pa_layer_attr orig_pwr_info
;
2454 struct ufs_pa_layer_attr temp_pwr_info
;
2455 bool pwr_mode_change
= false;
2457 if (peer
&& (hba
->quirks
& UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE
)) {
2458 orig_pwr_info
= hba
->pwr_info
;
2459 temp_pwr_info
= orig_pwr_info
;
2461 if (orig_pwr_info
.pwr_tx
== FAST_MODE
||
2462 orig_pwr_info
.pwr_rx
== FAST_MODE
) {
2463 temp_pwr_info
.pwr_tx
= FASTAUTO_MODE
;
2464 temp_pwr_info
.pwr_rx
= FASTAUTO_MODE
;
2465 pwr_mode_change
= true;
2466 } else if (orig_pwr_info
.pwr_tx
== SLOW_MODE
||
2467 orig_pwr_info
.pwr_rx
== SLOW_MODE
) {
2468 temp_pwr_info
.pwr_tx
= SLOWAUTO_MODE
;
2469 temp_pwr_info
.pwr_rx
= SLOWAUTO_MODE
;
2470 pwr_mode_change
= true;
2472 if (pwr_mode_change
) {
2473 ret
= ufshcd_change_power_mode(hba
, &temp_pwr_info
);
2479 uic_cmd
.command
= peer
?
2480 UIC_CMD_DME_PEER_GET
: UIC_CMD_DME_GET
;
2481 uic_cmd
.argument1
= attr_sel
;
2484 /* for peer attributes we retry upon failure */
2485 ret
= ufshcd_send_uic_cmd(hba
, &uic_cmd
);
2487 dev_dbg(hba
->dev
, "%s: attr-id 0x%x error code %d\n",
2488 get
, UIC_GET_ATTR_ID(attr_sel
), ret
);
2489 } while (ret
&& peer
&& --retries
);
2492 dev_err(hba
->dev
, "%s: attr-id 0x%x failed %d retries\n",
2493 get
, UIC_GET_ATTR_ID(attr_sel
), retries
);
2495 if (mib_val
&& !ret
)
2496 *mib_val
= uic_cmd
.argument3
;
2498 if (peer
&& (hba
->quirks
& UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE
)
2500 ufshcd_change_power_mode(hba
, &orig_pwr_info
);
2504 EXPORT_SYMBOL_GPL(ufshcd_dme_get_attr
);
2507 * ufshcd_uic_pwr_ctrl - executes UIC commands (which affects the link power
2508 * state) and waits for it to take effect.
2510 * @hba: per adapter instance
2511 * @cmd: UIC command to execute
2513 * DME operations like DME_SET(PA_PWRMODE), DME_HIBERNATE_ENTER &
2514 * DME_HIBERNATE_EXIT commands take some time to take its effect on both host
2515 * and device UniPro link and hence it's final completion would be indicated by
2516 * dedicated status bits in Interrupt Status register (UPMS, UHES, UHXS) in
2517 * addition to normal UIC command completion Status (UCCS). This function only
2518 * returns after the relevant status bits indicate the completion.
2520 * Returns 0 on success, non-zero value on failure
2522 static int ufshcd_uic_pwr_ctrl(struct ufs_hba
*hba
, struct uic_command
*cmd
)
2524 struct completion uic_async_done
;
2525 unsigned long flags
;
2528 bool reenable_intr
= false;
2530 mutex_lock(&hba
->uic_cmd_mutex
);
2531 init_completion(&uic_async_done
);
2532 ufshcd_add_delay_before_dme_cmd(hba
);
2534 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
2535 hba
->uic_async_done
= &uic_async_done
;
2536 if (ufshcd_readl(hba
, REG_INTERRUPT_ENABLE
) & UIC_COMMAND_COMPL
) {
2537 ufshcd_disable_intr(hba
, UIC_COMMAND_COMPL
);
2539 * Make sure UIC command completion interrupt is disabled before
2540 * issuing UIC command.
2543 reenable_intr
= true;
2545 ret
= __ufshcd_send_uic_cmd(hba
, cmd
, false);
2546 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
2549 "pwr ctrl cmd 0x%x with mode 0x%x uic error %d\n",
2550 cmd
->command
, cmd
->argument3
, ret
);
2554 if (!wait_for_completion_timeout(hba
->uic_async_done
,
2555 msecs_to_jiffies(UIC_CMD_TIMEOUT
))) {
2557 "pwr ctrl cmd 0x%x with mode 0x%x completion timeout\n",
2558 cmd
->command
, cmd
->argument3
);
2563 status
= ufshcd_get_upmcrs(hba
);
2564 if (status
!= PWR_LOCAL
) {
2566 "pwr ctrl cmd 0x%0x failed, host umpcrs:0x%x\n",
2567 cmd
->command
, status
);
2568 ret
= (status
!= PWR_OK
) ? status
: -1;
2571 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
2572 hba
->active_uic_cmd
= NULL
;
2573 hba
->uic_async_done
= NULL
;
2575 ufshcd_enable_intr(hba
, UIC_COMMAND_COMPL
);
2576 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
2577 mutex_unlock(&hba
->uic_cmd_mutex
);
2583 * ufshcd_uic_change_pwr_mode - Perform the UIC power mode chage
2584 * using DME_SET primitives.
2585 * @hba: per adapter instance
2586 * @mode: powr mode value
2588 * Returns 0 on success, non-zero value on failure
2590 static int ufshcd_uic_change_pwr_mode(struct ufs_hba
*hba
, u8 mode
)
2592 struct uic_command uic_cmd
= {0};
2595 if (hba
->quirks
& UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP
) {
2596 ret
= ufshcd_dme_set(hba
,
2597 UIC_ARG_MIB_SEL(PA_RXHSUNTERMCAP
, 0), 1);
2599 dev_err(hba
->dev
, "%s: failed to enable PA_RXHSUNTERMCAP ret %d\n",
2605 uic_cmd
.command
= UIC_CMD_DME_SET
;
2606 uic_cmd
.argument1
= UIC_ARG_MIB(PA_PWRMODE
);
2607 uic_cmd
.argument3
= mode
;
2608 ufshcd_hold(hba
, false);
2609 ret
= ufshcd_uic_pwr_ctrl(hba
, &uic_cmd
);
2610 ufshcd_release(hba
);
2616 static int ufshcd_link_recovery(struct ufs_hba
*hba
)
2619 unsigned long flags
;
2621 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
2622 hba
->ufshcd_state
= UFSHCD_STATE_RESET
;
2623 ufshcd_set_eh_in_progress(hba
);
2624 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
2626 ret
= ufshcd_host_reset_and_restore(hba
);
2628 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
2630 hba
->ufshcd_state
= UFSHCD_STATE_ERROR
;
2631 ufshcd_clear_eh_in_progress(hba
);
2632 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
2635 dev_err(hba
->dev
, "%s: link recovery failed, err %d",
2641 static int __ufshcd_uic_hibern8_enter(struct ufs_hba
*hba
)
2644 struct uic_command uic_cmd
= {0};
2646 uic_cmd
.command
= UIC_CMD_DME_HIBER_ENTER
;
2647 ret
= ufshcd_uic_pwr_ctrl(hba
, &uic_cmd
);
2650 dev_err(hba
->dev
, "%s: hibern8 enter failed. ret = %d\n",
2654 * If link recovery fails then return error so that caller
2655 * don't retry the hibern8 enter again.
2657 if (ufshcd_link_recovery(hba
))
2664 static int ufshcd_uic_hibern8_enter(struct ufs_hba
*hba
)
2666 int ret
= 0, retries
;
2668 for (retries
= UIC_HIBERN8_ENTER_RETRIES
; retries
> 0; retries
--) {
2669 ret
= __ufshcd_uic_hibern8_enter(hba
);
2670 if (!ret
|| ret
== -ENOLINK
)
2677 static int ufshcd_uic_hibern8_exit(struct ufs_hba
*hba
)
2679 struct uic_command uic_cmd
= {0};
2682 uic_cmd
.command
= UIC_CMD_DME_HIBER_EXIT
;
2683 ret
= ufshcd_uic_pwr_ctrl(hba
, &uic_cmd
);
2685 dev_err(hba
->dev
, "%s: hibern8 exit failed. ret = %d\n",
2687 ret
= ufshcd_link_recovery(hba
);
2694 * ufshcd_init_pwr_info - setting the POR (power on reset)
2695 * values in hba power info
2696 * @hba: per-adapter instance
2698 static void ufshcd_init_pwr_info(struct ufs_hba
*hba
)
2700 hba
->pwr_info
.gear_rx
= UFS_PWM_G1
;
2701 hba
->pwr_info
.gear_tx
= UFS_PWM_G1
;
2702 hba
->pwr_info
.lane_rx
= 1;
2703 hba
->pwr_info
.lane_tx
= 1;
2704 hba
->pwr_info
.pwr_rx
= SLOWAUTO_MODE
;
2705 hba
->pwr_info
.pwr_tx
= SLOWAUTO_MODE
;
2706 hba
->pwr_info
.hs_rate
= 0;
2710 * ufshcd_get_max_pwr_mode - reads the max power mode negotiated with device
2711 * @hba: per-adapter instance
2713 static int ufshcd_get_max_pwr_mode(struct ufs_hba
*hba
)
2715 struct ufs_pa_layer_attr
*pwr_info
= &hba
->max_pwr_info
.info
;
2717 if (hba
->max_pwr_info
.is_valid
)
2720 pwr_info
->pwr_tx
= FASTAUTO_MODE
;
2721 pwr_info
->pwr_rx
= FASTAUTO_MODE
;
2722 pwr_info
->hs_rate
= PA_HS_MODE_B
;
2724 /* Get the connected lane count */
2725 ufshcd_dme_get(hba
, UIC_ARG_MIB(PA_CONNECTEDRXDATALANES
),
2726 &pwr_info
->lane_rx
);
2727 ufshcd_dme_get(hba
, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES
),
2728 &pwr_info
->lane_tx
);
2730 if (!pwr_info
->lane_rx
|| !pwr_info
->lane_tx
) {
2731 dev_err(hba
->dev
, "%s: invalid connected lanes value. rx=%d, tx=%d\n",
2739 * First, get the maximum gears of HS speed.
2740 * If a zero value, it means there is no HSGEAR capability.
2741 * Then, get the maximum gears of PWM speed.
2743 ufshcd_dme_get(hba
, UIC_ARG_MIB(PA_MAXRXHSGEAR
), &pwr_info
->gear_rx
);
2744 if (!pwr_info
->gear_rx
) {
2745 ufshcd_dme_get(hba
, UIC_ARG_MIB(PA_MAXRXPWMGEAR
),
2746 &pwr_info
->gear_rx
);
2747 if (!pwr_info
->gear_rx
) {
2748 dev_err(hba
->dev
, "%s: invalid max pwm rx gear read = %d\n",
2749 __func__
, pwr_info
->gear_rx
);
2752 pwr_info
->pwr_rx
= SLOWAUTO_MODE
;
2755 ufshcd_dme_peer_get(hba
, UIC_ARG_MIB(PA_MAXRXHSGEAR
),
2756 &pwr_info
->gear_tx
);
2757 if (!pwr_info
->gear_tx
) {
2758 ufshcd_dme_peer_get(hba
, UIC_ARG_MIB(PA_MAXRXPWMGEAR
),
2759 &pwr_info
->gear_tx
);
2760 if (!pwr_info
->gear_tx
) {
2761 dev_err(hba
->dev
, "%s: invalid max pwm tx gear read = %d\n",
2762 __func__
, pwr_info
->gear_tx
);
2765 pwr_info
->pwr_tx
= SLOWAUTO_MODE
;
2768 hba
->max_pwr_info
.is_valid
= true;
2772 static int ufshcd_change_power_mode(struct ufs_hba
*hba
,
2773 struct ufs_pa_layer_attr
*pwr_mode
)
2777 /* if already configured to the requested pwr_mode */
2778 if (pwr_mode
->gear_rx
== hba
->pwr_info
.gear_rx
&&
2779 pwr_mode
->gear_tx
== hba
->pwr_info
.gear_tx
&&
2780 pwr_mode
->lane_rx
== hba
->pwr_info
.lane_rx
&&
2781 pwr_mode
->lane_tx
== hba
->pwr_info
.lane_tx
&&
2782 pwr_mode
->pwr_rx
== hba
->pwr_info
.pwr_rx
&&
2783 pwr_mode
->pwr_tx
== hba
->pwr_info
.pwr_tx
&&
2784 pwr_mode
->hs_rate
== hba
->pwr_info
.hs_rate
) {
2785 dev_dbg(hba
->dev
, "%s: power already configured\n", __func__
);
2790 * Configure attributes for power mode change with below.
2791 * - PA_RXGEAR, PA_ACTIVERXDATALANES, PA_RXTERMINATION,
2792 * - PA_TXGEAR, PA_ACTIVETXDATALANES, PA_TXTERMINATION,
2795 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_RXGEAR
), pwr_mode
->gear_rx
);
2796 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_ACTIVERXDATALANES
),
2798 if (pwr_mode
->pwr_rx
== FASTAUTO_MODE
||
2799 pwr_mode
->pwr_rx
== FAST_MODE
)
2800 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_RXTERMINATION
), TRUE
);
2802 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_RXTERMINATION
), FALSE
);
2804 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_TXGEAR
), pwr_mode
->gear_tx
);
2805 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_ACTIVETXDATALANES
),
2807 if (pwr_mode
->pwr_tx
== FASTAUTO_MODE
||
2808 pwr_mode
->pwr_tx
== FAST_MODE
)
2809 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_TXTERMINATION
), TRUE
);
2811 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_TXTERMINATION
), FALSE
);
2813 if (pwr_mode
->pwr_rx
== FASTAUTO_MODE
||
2814 pwr_mode
->pwr_tx
== FASTAUTO_MODE
||
2815 pwr_mode
->pwr_rx
== FAST_MODE
||
2816 pwr_mode
->pwr_tx
== FAST_MODE
)
2817 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_HSSERIES
),
2820 ret
= ufshcd_uic_change_pwr_mode(hba
, pwr_mode
->pwr_rx
<< 4
2821 | pwr_mode
->pwr_tx
);
2825 "%s: power mode change failed %d\n", __func__
, ret
);
2827 ufshcd_vops_pwr_change_notify(hba
, POST_CHANGE
, NULL
,
2830 memcpy(&hba
->pwr_info
, pwr_mode
,
2831 sizeof(struct ufs_pa_layer_attr
));
2838 * ufshcd_config_pwr_mode - configure a new power mode
2839 * @hba: per-adapter instance
2840 * @desired_pwr_mode: desired power configuration
2842 static int ufshcd_config_pwr_mode(struct ufs_hba
*hba
,
2843 struct ufs_pa_layer_attr
*desired_pwr_mode
)
2845 struct ufs_pa_layer_attr final_params
= { 0 };
2848 ret
= ufshcd_vops_pwr_change_notify(hba
, PRE_CHANGE
,
2849 desired_pwr_mode
, &final_params
);
2852 memcpy(&final_params
, desired_pwr_mode
, sizeof(final_params
));
2854 ret
= ufshcd_change_power_mode(hba
, &final_params
);
2860 * ufshcd_complete_dev_init() - checks device readiness
2861 * hba: per-adapter instance
2863 * Set fDeviceInit flag and poll until device toggles it.
2865 static int ufshcd_complete_dev_init(struct ufs_hba
*hba
)
2871 err
= ufshcd_query_flag_retry(hba
, UPIU_QUERY_OPCODE_SET_FLAG
,
2872 QUERY_FLAG_IDN_FDEVICEINIT
, NULL
);
2875 "%s setting fDeviceInit flag failed with error %d\n",
2880 /* poll for max. 1000 iterations for fDeviceInit flag to clear */
2881 for (i
= 0; i
< 1000 && !err
&& flag_res
; i
++)
2882 err
= ufshcd_query_flag_retry(hba
, UPIU_QUERY_OPCODE_READ_FLAG
,
2883 QUERY_FLAG_IDN_FDEVICEINIT
, &flag_res
);
2887 "%s reading fDeviceInit flag failed with error %d\n",
2891 "%s fDeviceInit was not cleared by the device\n",
2899 * ufshcd_make_hba_operational - Make UFS controller operational
2900 * @hba: per adapter instance
2902 * To bring UFS host controller to operational state,
2903 * 1. Enable required interrupts
2904 * 2. Configure interrupt aggregation
2905 * 3. Program UTRL and UTMRL base address
2906 * 4. Configure run-stop-registers
2908 * Returns 0 on success, non-zero value on failure
2910 static int ufshcd_make_hba_operational(struct ufs_hba
*hba
)
2915 /* Enable required interrupts */
2916 ufshcd_enable_intr(hba
, UFSHCD_ENABLE_INTRS
);
2918 /* Configure interrupt aggregation */
2919 if (ufshcd_is_intr_aggr_allowed(hba
))
2920 ufshcd_config_intr_aggr(hba
, hba
->nutrs
- 1, INT_AGGR_DEF_TO
);
2922 ufshcd_disable_intr_aggr(hba
);
2924 /* Configure UTRL and UTMRL base address registers */
2925 ufshcd_writel(hba
, lower_32_bits(hba
->utrdl_dma_addr
),
2926 REG_UTP_TRANSFER_REQ_LIST_BASE_L
);
2927 ufshcd_writel(hba
, upper_32_bits(hba
->utrdl_dma_addr
),
2928 REG_UTP_TRANSFER_REQ_LIST_BASE_H
);
2929 ufshcd_writel(hba
, lower_32_bits(hba
->utmrdl_dma_addr
),
2930 REG_UTP_TASK_REQ_LIST_BASE_L
);
2931 ufshcd_writel(hba
, upper_32_bits(hba
->utmrdl_dma_addr
),
2932 REG_UTP_TASK_REQ_LIST_BASE_H
);
2935 * Make sure base address and interrupt setup are updated before
2936 * enabling the run/stop registers below.
2941 * UCRDY, UTMRLDY and UTRLRDY bits must be 1
2943 reg
= ufshcd_readl(hba
, REG_CONTROLLER_STATUS
);
2944 if (!(ufshcd_get_lists_status(reg
))) {
2945 ufshcd_enable_run_stop_reg(hba
);
2948 "Host controller not ready to process requests");
2958 * ufshcd_hba_stop - Send controller to reset state
2959 * @hba: per adapter instance
2960 * @can_sleep: perform sleep or just spin
2962 static inline void ufshcd_hba_stop(struct ufs_hba
*hba
, bool can_sleep
)
2966 ufshcd_writel(hba
, CONTROLLER_DISABLE
, REG_CONTROLLER_ENABLE
);
2967 err
= ufshcd_wait_for_register(hba
, REG_CONTROLLER_ENABLE
,
2968 CONTROLLER_ENABLE
, CONTROLLER_DISABLE
,
2971 dev_err(hba
->dev
, "%s: Controller disable failed\n", __func__
);
2975 * ufshcd_hba_enable - initialize the controller
2976 * @hba: per adapter instance
2978 * The controller resets itself and controller firmware initialization
2979 * sequence kicks off. When controller is ready it will set
2980 * the Host Controller Enable bit to 1.
2982 * Returns 0 on success, non-zero value on failure
2984 static int ufshcd_hba_enable(struct ufs_hba
*hba
)
2989 * msleep of 1 and 5 used in this function might result in msleep(20),
2990 * but it was necessary to send the UFS FPGA to reset mode during
2991 * development and testing of this driver. msleep can be changed to
2992 * mdelay and retry count can be reduced based on the controller.
2994 if (!ufshcd_is_hba_active(hba
))
2995 /* change controller state to "reset state" */
2996 ufshcd_hba_stop(hba
, true);
2998 /* UniPro link is disabled at this point */
2999 ufshcd_set_link_off(hba
);
3001 ufshcd_vops_hce_enable_notify(hba
, PRE_CHANGE
);
3003 /* start controller initialization sequence */
3004 ufshcd_hba_start(hba
);
3007 * To initialize a UFS host controller HCE bit must be set to 1.
3008 * During initialization the HCE bit value changes from 1->0->1.
3009 * When the host controller completes initialization sequence
3010 * it sets the value of HCE bit to 1. The same HCE bit is read back
3011 * to check if the controller has completed initialization sequence.
3012 * So without this delay the value HCE = 1, set in the previous
3013 * instruction might be read back.
3014 * This delay can be changed based on the controller.
3018 /* wait for the host controller to complete initialization */
3020 while (ufshcd_is_hba_active(hba
)) {
3025 "Controller enable failed\n");
3031 /* enable UIC related interrupts */
3032 ufshcd_enable_intr(hba
, UFSHCD_UIC_MASK
);
3034 ufshcd_vops_hce_enable_notify(hba
, POST_CHANGE
);
3039 static int ufshcd_disable_tx_lcc(struct ufs_hba
*hba
, bool peer
)
3041 int tx_lanes
, i
, err
= 0;
3044 ufshcd_dme_get(hba
, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES
),
3047 ufshcd_dme_peer_get(hba
, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES
),
3049 for (i
= 0; i
< tx_lanes
; i
++) {
3051 err
= ufshcd_dme_set(hba
,
3052 UIC_ARG_MIB_SEL(TX_LCC_ENABLE
,
3053 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i
)),
3056 err
= ufshcd_dme_peer_set(hba
,
3057 UIC_ARG_MIB_SEL(TX_LCC_ENABLE
,
3058 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(i
)),
3061 dev_err(hba
->dev
, "%s: TX LCC Disable failed, peer = %d, lane = %d, err = %d",
3062 __func__
, peer
, i
, err
);
3070 static inline int ufshcd_disable_device_tx_lcc(struct ufs_hba
*hba
)
3072 return ufshcd_disable_tx_lcc(hba
, true);
3076 * ufshcd_link_startup - Initialize unipro link startup
3077 * @hba: per adapter instance
3079 * Returns 0 for success, non-zero in case of failure
3081 static int ufshcd_link_startup(struct ufs_hba
*hba
)
3084 int retries
= DME_LINKSTARTUP_RETRIES
;
3087 ufshcd_vops_link_startup_notify(hba
, PRE_CHANGE
);
3089 ret
= ufshcd_dme_link_startup(hba
);
3091 /* check if device is detected by inter-connect layer */
3092 if (!ret
&& !ufshcd_is_device_present(hba
)) {
3093 dev_err(hba
->dev
, "%s: Device not present\n", __func__
);
3099 * DME link lost indication is only received when link is up,
3100 * but we can't be sure if the link is up until link startup
3101 * succeeds. So reset the local Uni-Pro and try again.
3103 if (ret
&& ufshcd_hba_enable(hba
))
3105 } while (ret
&& retries
--);
3108 /* failed to get the link up... retire */
3111 if (hba
->quirks
& UFSHCD_QUIRK_BROKEN_LCC
) {
3112 ret
= ufshcd_disable_device_tx_lcc(hba
);
3117 /* Include any host controller configuration via UIC commands */
3118 ret
= ufshcd_vops_link_startup_notify(hba
, POST_CHANGE
);
3122 ret
= ufshcd_make_hba_operational(hba
);
3125 dev_err(hba
->dev
, "link startup failed %d\n", ret
);
3130 * ufshcd_verify_dev_init() - Verify device initialization
3131 * @hba: per-adapter instance
3133 * Send NOP OUT UPIU and wait for NOP IN response to check whether the
3134 * device Transport Protocol (UTP) layer is ready after a reset.
3135 * If the UTP layer at the device side is not initialized, it may
3136 * not respond with NOP IN UPIU within timeout of %NOP_OUT_TIMEOUT
3137 * and we retry sending NOP OUT for %NOP_OUT_RETRIES iterations.
3139 static int ufshcd_verify_dev_init(struct ufs_hba
*hba
)
3144 ufshcd_hold(hba
, false);
3145 mutex_lock(&hba
->dev_cmd
.lock
);
3146 for (retries
= NOP_OUT_RETRIES
; retries
> 0; retries
--) {
3147 err
= ufshcd_exec_dev_cmd(hba
, DEV_CMD_TYPE_NOP
,
3150 if (!err
|| err
== -ETIMEDOUT
)
3153 dev_dbg(hba
->dev
, "%s: error %d retrying\n", __func__
, err
);
3155 mutex_unlock(&hba
->dev_cmd
.lock
);
3156 ufshcd_release(hba
);
3159 dev_err(hba
->dev
, "%s: NOP OUT failed %d\n", __func__
, err
);
3164 * ufshcd_set_queue_depth - set lun queue depth
3165 * @sdev: pointer to SCSI device
3167 * Read bLUQueueDepth value and activate scsi tagged command
3168 * queueing. For WLUN, queue depth is set to 1. For best-effort
3169 * cases (bLUQueueDepth = 0) the queue depth is set to a maximum
3170 * value that host can queue.
3172 static void ufshcd_set_queue_depth(struct scsi_device
*sdev
)
3176 struct ufs_hba
*hba
;
3178 hba
= shost_priv(sdev
->host
);
3180 lun_qdepth
= hba
->nutrs
;
3181 ret
= ufshcd_read_unit_desc_param(hba
,
3182 ufshcd_scsi_to_upiu_lun(sdev
->lun
),
3183 UNIT_DESC_PARAM_LU_Q_DEPTH
,
3185 sizeof(lun_qdepth
));
3187 /* Some WLUN doesn't support unit descriptor */
3188 if (ret
== -EOPNOTSUPP
)
3190 else if (!lun_qdepth
)
3191 /* eventually, we can figure out the real queue depth */
3192 lun_qdepth
= hba
->nutrs
;
3194 lun_qdepth
= min_t(int, lun_qdepth
, hba
->nutrs
);
3196 dev_dbg(hba
->dev
, "%s: activate tcq with queue depth %d\n",
3197 __func__
, lun_qdepth
);
3198 scsi_change_queue_depth(sdev
, lun_qdepth
);
3202 * ufshcd_get_lu_wp - returns the "b_lu_write_protect" from UNIT DESCRIPTOR
3203 * @hba: per-adapter instance
3204 * @lun: UFS device lun id
3205 * @b_lu_write_protect: pointer to buffer to hold the LU's write protect info
3207 * Returns 0 in case of success and b_lu_write_protect status would be returned
3208 * @b_lu_write_protect parameter.
3209 * Returns -ENOTSUPP if reading b_lu_write_protect is not supported.
3210 * Returns -EINVAL in case of invalid parameters passed to this function.
3212 static int ufshcd_get_lu_wp(struct ufs_hba
*hba
,
3214 u8
*b_lu_write_protect
)
3218 if (!b_lu_write_protect
)
3221 * According to UFS device spec, RPMB LU can't be write
3222 * protected so skip reading bLUWriteProtect parameter for
3223 * it. For other W-LUs, UNIT DESCRIPTOR is not available.
3225 else if (lun
>= UFS_UPIU_MAX_GENERAL_LUN
)
3228 ret
= ufshcd_read_unit_desc_param(hba
,
3230 UNIT_DESC_PARAM_LU_WR_PROTECT
,
3232 sizeof(*b_lu_write_protect
));
3237 * ufshcd_get_lu_power_on_wp_status - get LU's power on write protect
3239 * @hba: per-adapter instance
3240 * @sdev: pointer to SCSI device
3243 static inline void ufshcd_get_lu_power_on_wp_status(struct ufs_hba
*hba
,
3244 struct scsi_device
*sdev
)
3246 if (hba
->dev_info
.f_power_on_wp_en
&&
3247 !hba
->dev_info
.is_lu_power_on_wp
) {
3248 u8 b_lu_write_protect
;
3250 if (!ufshcd_get_lu_wp(hba
, ufshcd_scsi_to_upiu_lun(sdev
->lun
),
3251 &b_lu_write_protect
) &&
3252 (b_lu_write_protect
== UFS_LU_POWER_ON_WP
))
3253 hba
->dev_info
.is_lu_power_on_wp
= true;
3258 * ufshcd_slave_alloc - handle initial SCSI device configurations
3259 * @sdev: pointer to SCSI device
3263 static int ufshcd_slave_alloc(struct scsi_device
*sdev
)
3265 struct ufs_hba
*hba
;
3267 hba
= shost_priv(sdev
->host
);
3269 /* Mode sense(6) is not supported by UFS, so use Mode sense(10) */
3270 sdev
->use_10_for_ms
= 1;
3272 /* allow SCSI layer to restart the device in case of errors */
3273 sdev
->allow_restart
= 1;
3275 /* REPORT SUPPORTED OPERATION CODES is not supported */
3276 sdev
->no_report_opcodes
= 1;
3279 ufshcd_set_queue_depth(sdev
);
3281 ufshcd_get_lu_power_on_wp_status(hba
, sdev
);
3287 * ufshcd_change_queue_depth - change queue depth
3288 * @sdev: pointer to SCSI device
3289 * @depth: required depth to set
3291 * Change queue depth and make sure the max. limits are not crossed.
3293 static int ufshcd_change_queue_depth(struct scsi_device
*sdev
, int depth
)
3295 struct ufs_hba
*hba
= shost_priv(sdev
->host
);
3297 if (depth
> hba
->nutrs
)
3299 return scsi_change_queue_depth(sdev
, depth
);
3303 * ufshcd_slave_configure - adjust SCSI device configurations
3304 * @sdev: pointer to SCSI device
3306 static int ufshcd_slave_configure(struct scsi_device
*sdev
)
3308 struct request_queue
*q
= sdev
->request_queue
;
3310 blk_queue_update_dma_pad(q
, PRDT_DATA_BYTE_COUNT_PAD
- 1);
3311 blk_queue_max_segment_size(q
, PRDT_DATA_BYTE_COUNT_MAX
);
3317 * ufshcd_slave_destroy - remove SCSI device configurations
3318 * @sdev: pointer to SCSI device
3320 static void ufshcd_slave_destroy(struct scsi_device
*sdev
)
3322 struct ufs_hba
*hba
;
3324 hba
= shost_priv(sdev
->host
);
3325 /* Drop the reference as it won't be needed anymore */
3326 if (ufshcd_scsi_to_upiu_lun(sdev
->lun
) == UFS_UPIU_UFS_DEVICE_WLUN
) {
3327 unsigned long flags
;
3329 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3330 hba
->sdev_ufs_device
= NULL
;
3331 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
3336 * ufshcd_task_req_compl - handle task management request completion
3337 * @hba: per adapter instance
3338 * @index: index of the completed request
3339 * @resp: task management service response
3341 * Returns non-zero value on error, zero on success
3343 static int ufshcd_task_req_compl(struct ufs_hba
*hba
, u32 index
, u8
*resp
)
3345 struct utp_task_req_desc
*task_req_descp
;
3346 struct utp_upiu_task_rsp
*task_rsp_upiup
;
3347 unsigned long flags
;
3351 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3353 /* Clear completed tasks from outstanding_tasks */
3354 __clear_bit(index
, &hba
->outstanding_tasks
);
3356 task_req_descp
= hba
->utmrdl_base_addr
;
3357 ocs_value
= ufshcd_get_tmr_ocs(&task_req_descp
[index
]);
3359 if (ocs_value
== OCS_SUCCESS
) {
3360 task_rsp_upiup
= (struct utp_upiu_task_rsp
*)
3361 task_req_descp
[index
].task_rsp_upiu
;
3362 task_result
= be32_to_cpu(task_rsp_upiup
->header
.dword_1
);
3363 task_result
= ((task_result
& MASK_TASK_RESPONSE
) >> 8);
3365 *resp
= (u8
)task_result
;
3367 dev_err(hba
->dev
, "%s: failed, ocs = 0x%x\n",
3368 __func__
, ocs_value
);
3370 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
3376 * ufshcd_scsi_cmd_status - Update SCSI command result based on SCSI status
3377 * @lrb: pointer to local reference block of completed command
3378 * @scsi_status: SCSI command status
3380 * Returns value base on SCSI command status
3383 ufshcd_scsi_cmd_status(struct ufshcd_lrb
*lrbp
, int scsi_status
)
3387 switch (scsi_status
) {
3388 case SAM_STAT_CHECK_CONDITION
:
3389 ufshcd_copy_sense_data(lrbp
);
3391 result
|= DID_OK
<< 16 |
3392 COMMAND_COMPLETE
<< 8 |
3395 case SAM_STAT_TASK_SET_FULL
:
3397 case SAM_STAT_TASK_ABORTED
:
3398 ufshcd_copy_sense_data(lrbp
);
3399 result
|= scsi_status
;
3402 result
|= DID_ERROR
<< 16;
3404 } /* end of switch */
3410 * ufshcd_transfer_rsp_status - Get overall status of the response
3411 * @hba: per adapter instance
3412 * @lrb: pointer to local reference block of completed command
3414 * Returns result of the command to notify SCSI midlayer
3417 ufshcd_transfer_rsp_status(struct ufs_hba
*hba
, struct ufshcd_lrb
*lrbp
)
3423 /* overall command status of utrd */
3424 ocs
= ufshcd_get_tr_ocs(lrbp
);
3428 result
= ufshcd_get_req_rsp(lrbp
->ucd_rsp_ptr
);
3431 case UPIU_TRANSACTION_RESPONSE
:
3433 * get the response UPIU result to extract
3434 * the SCSI command status
3436 result
= ufshcd_get_rsp_upiu_result(lrbp
->ucd_rsp_ptr
);
3439 * get the result based on SCSI status response
3440 * to notify the SCSI midlayer of the command status
3442 scsi_status
= result
& MASK_SCSI_STATUS
;
3443 result
= ufshcd_scsi_cmd_status(lrbp
, scsi_status
);
3446 * Currently we are only supporting BKOPs exception
3447 * events hence we can ignore BKOPs exception event
3448 * during power management callbacks. BKOPs exception
3449 * event is not expected to be raised in runtime suspend
3450 * callback as it allows the urgent bkops.
3451 * During system suspend, we are anyway forcefully
3452 * disabling the bkops and if urgent bkops is needed
3453 * it will be enabled on system resume. Long term
3454 * solution could be to abort the system suspend if
3455 * UFS device needs urgent BKOPs.
3457 if (!hba
->pm_op_in_progress
&&
3458 ufshcd_is_exception_event(lrbp
->ucd_rsp_ptr
))
3459 schedule_work(&hba
->eeh_work
);
3461 case UPIU_TRANSACTION_REJECT_UPIU
:
3462 /* TODO: handle Reject UPIU Response */
3463 result
= DID_ERROR
<< 16;
3465 "Reject UPIU not fully implemented\n");
3468 result
= DID_ERROR
<< 16;
3470 "Unexpected request response code = %x\n",
3476 result
|= DID_ABORT
<< 16;
3478 case OCS_INVALID_COMMAND_STATUS
:
3479 result
|= DID_REQUEUE
<< 16;
3481 case OCS_INVALID_CMD_TABLE_ATTR
:
3482 case OCS_INVALID_PRDT_ATTR
:
3483 case OCS_MISMATCH_DATA_BUF_SIZE
:
3484 case OCS_MISMATCH_RESP_UPIU_SIZE
:
3485 case OCS_PEER_COMM_FAILURE
:
3486 case OCS_FATAL_ERROR
:
3488 result
|= DID_ERROR
<< 16;
3490 "OCS error from controller = %x\n", ocs
);
3492 } /* end of switch */
3498 * ufshcd_uic_cmd_compl - handle completion of uic command
3499 * @hba: per adapter instance
3500 * @intr_status: interrupt status generated by the controller
3502 static void ufshcd_uic_cmd_compl(struct ufs_hba
*hba
, u32 intr_status
)
3504 if ((intr_status
& UIC_COMMAND_COMPL
) && hba
->active_uic_cmd
) {
3505 hba
->active_uic_cmd
->argument2
|=
3506 ufshcd_get_uic_cmd_result(hba
);
3507 hba
->active_uic_cmd
->argument3
=
3508 ufshcd_get_dme_attr_val(hba
);
3509 complete(&hba
->active_uic_cmd
->done
);
3512 if ((intr_status
& UFSHCD_UIC_PWR_MASK
) && hba
->uic_async_done
)
3513 complete(hba
->uic_async_done
);
3517 * __ufshcd_transfer_req_compl - handle SCSI and query command completion
3518 * @hba: per adapter instance
3519 * @completed_reqs: requests to complete
3521 static void __ufshcd_transfer_req_compl(struct ufs_hba
*hba
,
3522 unsigned long completed_reqs
)
3524 struct ufshcd_lrb
*lrbp
;
3525 struct scsi_cmnd
*cmd
;
3529 for_each_set_bit(index
, &completed_reqs
, hba
->nutrs
) {
3530 lrbp
= &hba
->lrb
[index
];
3533 result
= ufshcd_transfer_rsp_status(hba
, lrbp
);
3534 scsi_dma_unmap(cmd
);
3535 cmd
->result
= result
;
3536 /* Mark completed command as NULL in LRB */
3538 clear_bit_unlock(index
, &hba
->lrb_in_use
);
3539 /* Do not touch lrbp after scsi done */
3540 cmd
->scsi_done(cmd
);
3541 __ufshcd_release(hba
);
3542 } else if (lrbp
->command_type
== UTP_CMD_TYPE_DEV_MANAGE
) {
3543 if (hba
->dev_cmd
.complete
)
3544 complete(hba
->dev_cmd
.complete
);
3548 /* clear corresponding bits of completed commands */
3549 hba
->outstanding_reqs
^= completed_reqs
;
3551 ufshcd_clk_scaling_update_busy(hba
);
3553 /* we might have free'd some tags above */
3554 wake_up(&hba
->dev_cmd
.tag_wq
);
3558 * ufshcd_transfer_req_compl - handle SCSI and query command completion
3559 * @hba: per adapter instance
3561 static void ufshcd_transfer_req_compl(struct ufs_hba
*hba
)
3563 unsigned long completed_reqs
;
3566 /* Resetting interrupt aggregation counters first and reading the
3567 * DOOR_BELL afterward allows us to handle all the completed requests.
3568 * In order to prevent other interrupts starvation the DB is read once
3569 * after reset. The down side of this solution is the possibility of
3570 * false interrupt if device completes another request after resetting
3571 * aggregation and before reading the DB.
3573 if (ufshcd_is_intr_aggr_allowed(hba
))
3574 ufshcd_reset_intr_aggr(hba
);
3576 tr_doorbell
= ufshcd_readl(hba
, REG_UTP_TRANSFER_REQ_DOOR_BELL
);
3577 completed_reqs
= tr_doorbell
^ hba
->outstanding_reqs
;
3579 __ufshcd_transfer_req_compl(hba
, completed_reqs
);
3583 * ufshcd_disable_ee - disable exception event
3584 * @hba: per-adapter instance
3585 * @mask: exception event to disable
3587 * Disables exception event in the device so that the EVENT_ALERT
3590 * Returns zero on success, non-zero error value on failure.
3592 static int ufshcd_disable_ee(struct ufs_hba
*hba
, u16 mask
)
3597 if (!(hba
->ee_ctrl_mask
& mask
))
3600 val
= hba
->ee_ctrl_mask
& ~mask
;
3601 val
&= 0xFFFF; /* 2 bytes */
3602 err
= ufshcd_query_attr_retry(hba
, UPIU_QUERY_OPCODE_WRITE_ATTR
,
3603 QUERY_ATTR_IDN_EE_CONTROL
, 0, 0, &val
);
3605 hba
->ee_ctrl_mask
&= ~mask
;
3611 * ufshcd_enable_ee - enable exception event
3612 * @hba: per-adapter instance
3613 * @mask: exception event to enable
3615 * Enable corresponding exception event in the device to allow
3616 * device to alert host in critical scenarios.
3618 * Returns zero on success, non-zero error value on failure.
3620 static int ufshcd_enable_ee(struct ufs_hba
*hba
, u16 mask
)
3625 if (hba
->ee_ctrl_mask
& mask
)
3628 val
= hba
->ee_ctrl_mask
| mask
;
3629 val
&= 0xFFFF; /* 2 bytes */
3630 err
= ufshcd_query_attr_retry(hba
, UPIU_QUERY_OPCODE_WRITE_ATTR
,
3631 QUERY_ATTR_IDN_EE_CONTROL
, 0, 0, &val
);
3633 hba
->ee_ctrl_mask
|= mask
;
3639 * ufshcd_enable_auto_bkops - Allow device managed BKOPS
3640 * @hba: per-adapter instance
3642 * Allow device to manage background operations on its own. Enabling
3643 * this might lead to inconsistent latencies during normal data transfers
3644 * as the device is allowed to manage its own way of handling background
3647 * Returns zero on success, non-zero on failure.
3649 static int ufshcd_enable_auto_bkops(struct ufs_hba
*hba
)
3653 if (hba
->auto_bkops_enabled
)
3656 err
= ufshcd_query_flag_retry(hba
, UPIU_QUERY_OPCODE_SET_FLAG
,
3657 QUERY_FLAG_IDN_BKOPS_EN
, NULL
);
3659 dev_err(hba
->dev
, "%s: failed to enable bkops %d\n",
3664 hba
->auto_bkops_enabled
= true;
3666 /* No need of URGENT_BKOPS exception from the device */
3667 err
= ufshcd_disable_ee(hba
, MASK_EE_URGENT_BKOPS
);
3669 dev_err(hba
->dev
, "%s: failed to disable exception event %d\n",
3676 * ufshcd_disable_auto_bkops - block device in doing background operations
3677 * @hba: per-adapter instance
3679 * Disabling background operations improves command response latency but
3680 * has drawback of device moving into critical state where the device is
3681 * not-operable. Make sure to call ufshcd_enable_auto_bkops() whenever the
3682 * host is idle so that BKOPS are managed effectively without any negative
3685 * Returns zero on success, non-zero on failure.
3687 static int ufshcd_disable_auto_bkops(struct ufs_hba
*hba
)
3691 if (!hba
->auto_bkops_enabled
)
3695 * If host assisted BKOPs is to be enabled, make sure
3696 * urgent bkops exception is allowed.
3698 err
= ufshcd_enable_ee(hba
, MASK_EE_URGENT_BKOPS
);
3700 dev_err(hba
->dev
, "%s: failed to enable exception event %d\n",
3705 err
= ufshcd_query_flag_retry(hba
, UPIU_QUERY_OPCODE_CLEAR_FLAG
,
3706 QUERY_FLAG_IDN_BKOPS_EN
, NULL
);
3708 dev_err(hba
->dev
, "%s: failed to disable bkops %d\n",
3710 ufshcd_disable_ee(hba
, MASK_EE_URGENT_BKOPS
);
3714 hba
->auto_bkops_enabled
= false;
3720 * ufshcd_force_reset_auto_bkops - force enable of auto bkops
3721 * @hba: per adapter instance
3723 * After a device reset the device may toggle the BKOPS_EN flag
3724 * to default value. The s/w tracking variables should be updated
3725 * as well. Do this by forcing enable of auto bkops.
3727 static void ufshcd_force_reset_auto_bkops(struct ufs_hba
*hba
)
3729 hba
->auto_bkops_enabled
= false;
3730 hba
->ee_ctrl_mask
|= MASK_EE_URGENT_BKOPS
;
3731 ufshcd_enable_auto_bkops(hba
);
3734 static inline int ufshcd_get_bkops_status(struct ufs_hba
*hba
, u32
*status
)
3736 return ufshcd_query_attr_retry(hba
, UPIU_QUERY_OPCODE_READ_ATTR
,
3737 QUERY_ATTR_IDN_BKOPS_STATUS
, 0, 0, status
);
3741 * ufshcd_bkops_ctrl - control the auto bkops based on current bkops status
3742 * @hba: per-adapter instance
3743 * @status: bkops_status value
3745 * Read the bkops_status from the UFS device and Enable fBackgroundOpsEn
3746 * flag in the device to permit background operations if the device
3747 * bkops_status is greater than or equal to "status" argument passed to
3748 * this function, disable otherwise.
3750 * Returns 0 for success, non-zero in case of failure.
3752 * NOTE: Caller of this function can check the "hba->auto_bkops_enabled" flag
3753 * to know whether auto bkops is enabled or disabled after this function
3754 * returns control to it.
3756 static int ufshcd_bkops_ctrl(struct ufs_hba
*hba
,
3757 enum bkops_status status
)
3760 u32 curr_status
= 0;
3762 err
= ufshcd_get_bkops_status(hba
, &curr_status
);
3764 dev_err(hba
->dev
, "%s: failed to get BKOPS status %d\n",
3767 } else if (curr_status
> BKOPS_STATUS_MAX
) {
3768 dev_err(hba
->dev
, "%s: invalid BKOPS status %d\n",
3769 __func__
, curr_status
);
3774 if (curr_status
>= status
)
3775 err
= ufshcd_enable_auto_bkops(hba
);
3777 err
= ufshcd_disable_auto_bkops(hba
);
3783 * ufshcd_urgent_bkops - handle urgent bkops exception event
3784 * @hba: per-adapter instance
3786 * Enable fBackgroundOpsEn flag in the device to permit background
3789 * If BKOPs is enabled, this function returns 0, 1 if the bkops in not enabled
3790 * and negative error value for any other failure.
3792 static int ufshcd_urgent_bkops(struct ufs_hba
*hba
)
3794 return ufshcd_bkops_ctrl(hba
, hba
->urgent_bkops_lvl
);
3797 static inline int ufshcd_get_ee_status(struct ufs_hba
*hba
, u32
*status
)
3799 return ufshcd_query_attr_retry(hba
, UPIU_QUERY_OPCODE_READ_ATTR
,
3800 QUERY_ATTR_IDN_EE_STATUS
, 0, 0, status
);
3803 static void ufshcd_bkops_exception_event_handler(struct ufs_hba
*hba
)
3806 u32 curr_status
= 0;
3808 if (hba
->is_urgent_bkops_lvl_checked
)
3809 goto enable_auto_bkops
;
3811 err
= ufshcd_get_bkops_status(hba
, &curr_status
);
3813 dev_err(hba
->dev
, "%s: failed to get BKOPS status %d\n",
3819 * We are seeing that some devices are raising the urgent bkops
3820 * exception events even when BKOPS status doesn't indicate performace
3821 * impacted or critical. Handle these device by determining their urgent
3822 * bkops status at runtime.
3824 if (curr_status
< BKOPS_STATUS_PERF_IMPACT
) {
3825 dev_err(hba
->dev
, "%s: device raised urgent BKOPS exception for bkops status %d\n",
3826 __func__
, curr_status
);
3827 /* update the current status as the urgent bkops level */
3828 hba
->urgent_bkops_lvl
= curr_status
;
3829 hba
->is_urgent_bkops_lvl_checked
= true;
3833 err
= ufshcd_enable_auto_bkops(hba
);
3836 dev_err(hba
->dev
, "%s: failed to handle urgent bkops %d\n",
3841 * ufshcd_exception_event_handler - handle exceptions raised by device
3842 * @work: pointer to work data
3844 * Read bExceptionEventStatus attribute from the device and handle the
3845 * exception event accordingly.
3847 static void ufshcd_exception_event_handler(struct work_struct
*work
)
3849 struct ufs_hba
*hba
;
3852 hba
= container_of(work
, struct ufs_hba
, eeh_work
);
3854 pm_runtime_get_sync(hba
->dev
);
3855 err
= ufshcd_get_ee_status(hba
, &status
);
3857 dev_err(hba
->dev
, "%s: failed to get exception status %d\n",
3862 status
&= hba
->ee_ctrl_mask
;
3864 if (status
& MASK_EE_URGENT_BKOPS
)
3865 ufshcd_bkops_exception_event_handler(hba
);
3868 pm_runtime_put_sync(hba
->dev
);
3872 /* Complete requests that have door-bell cleared */
3873 static void ufshcd_complete_requests(struct ufs_hba
*hba
)
3875 ufshcd_transfer_req_compl(hba
);
3876 ufshcd_tmc_handler(hba
);
3880 * ufshcd_quirk_dl_nac_errors - This function checks if error handling is
3881 * to recover from the DL NAC errors or not.
3882 * @hba: per-adapter instance
3884 * Returns true if error handling is required, false otherwise
3886 static bool ufshcd_quirk_dl_nac_errors(struct ufs_hba
*hba
)
3888 unsigned long flags
;
3889 bool err_handling
= true;
3891 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3893 * UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS only workaround the
3894 * device fatal error and/or DL NAC & REPLAY timeout errors.
3896 if (hba
->saved_err
& (CONTROLLER_FATAL_ERROR
| SYSTEM_BUS_FATAL_ERROR
))
3899 if ((hba
->saved_err
& DEVICE_FATAL_ERROR
) ||
3900 ((hba
->saved_err
& UIC_ERROR
) &&
3901 (hba
->saved_uic_err
& UFSHCD_UIC_DL_TCx_REPLAY_ERROR
)))
3904 if ((hba
->saved_err
& UIC_ERROR
) &&
3905 (hba
->saved_uic_err
& UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
)) {
3908 * wait for 50ms to see if we can get any other errors or not.
3910 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
3912 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3915 * now check if we have got any other severe errors other than
3918 if ((hba
->saved_err
& INT_FATAL_ERRORS
) ||
3919 ((hba
->saved_err
& UIC_ERROR
) &&
3920 (hba
->saved_uic_err
& ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
)))
3924 * As DL NAC is the only error received so far, send out NOP
3925 * command to confirm if link is still active or not.
3926 * - If we don't get any response then do error recovery.
3927 * - If we get response then clear the DL NAC error bit.
3930 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
3931 err
= ufshcd_verify_dev_init(hba
);
3932 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3937 /* Link seems to be alive hence ignore the DL NAC errors */
3938 if (hba
->saved_uic_err
== UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
)
3939 hba
->saved_err
&= ~UIC_ERROR
;
3940 /* clear NAC error */
3941 hba
->saved_uic_err
&= ~UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
;
3942 if (!hba
->saved_uic_err
) {
3943 err_handling
= false;
3948 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
3949 return err_handling
;
3953 * ufshcd_err_handler - handle UFS errors that require s/w attention
3954 * @work: pointer to work structure
3956 static void ufshcd_err_handler(struct work_struct
*work
)
3958 struct ufs_hba
*hba
;
3959 unsigned long flags
;
3964 bool needs_reset
= false;
3966 hba
= container_of(work
, struct ufs_hba
, eh_work
);
3968 pm_runtime_get_sync(hba
->dev
);
3969 ufshcd_hold(hba
, false);
3971 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3972 if (hba
->ufshcd_state
== UFSHCD_STATE_RESET
)
3975 hba
->ufshcd_state
= UFSHCD_STATE_RESET
;
3976 ufshcd_set_eh_in_progress(hba
);
3978 /* Complete requests that have door-bell cleared by h/w */
3979 ufshcd_complete_requests(hba
);
3981 if (hba
->dev_quirks
& UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS
) {
3984 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
3985 /* release the lock as ufshcd_quirk_dl_nac_errors() may sleep */
3986 ret
= ufshcd_quirk_dl_nac_errors(hba
);
3987 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
3989 goto skip_err_handling
;
3991 if ((hba
->saved_err
& INT_FATAL_ERRORS
) ||
3992 ((hba
->saved_err
& UIC_ERROR
) &&
3993 (hba
->saved_uic_err
& (UFSHCD_UIC_DL_PA_INIT_ERROR
|
3994 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
|
3995 UFSHCD_UIC_DL_TCx_REPLAY_ERROR
))))
3999 * if host reset is required then skip clearing the pending
4000 * transfers forcefully because they will automatically get
4001 * cleared after link startup.
4004 goto skip_pending_xfer_clear
;
4006 /* release lock as clear command might sleep */
4007 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4008 /* Clear pending transfer requests */
4009 for_each_set_bit(tag
, &hba
->outstanding_reqs
, hba
->nutrs
) {
4010 if (ufshcd_clear_cmd(hba
, tag
)) {
4012 goto lock_skip_pending_xfer_clear
;
4016 /* Clear pending task management requests */
4017 for_each_set_bit(tag
, &hba
->outstanding_tasks
, hba
->nutmrs
) {
4018 if (ufshcd_clear_tm_cmd(hba
, tag
)) {
4020 goto lock_skip_pending_xfer_clear
;
4024 lock_skip_pending_xfer_clear
:
4025 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4027 /* Complete the requests that are cleared by s/w */
4028 ufshcd_complete_requests(hba
);
4030 if (err_xfer
|| err_tm
)
4033 skip_pending_xfer_clear
:
4034 /* Fatal errors need reset */
4036 unsigned long max_doorbells
= (1UL << hba
->nutrs
) - 1;
4039 * ufshcd_reset_and_restore() does the link reinitialization
4040 * which will need atleast one empty doorbell slot to send the
4041 * device management commands (NOP and query commands).
4042 * If there is no slot empty at this moment then free up last
4045 if (hba
->outstanding_reqs
== max_doorbells
)
4046 __ufshcd_transfer_req_compl(hba
,
4047 (1UL << (hba
->nutrs
- 1)));
4049 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4050 err
= ufshcd_reset_and_restore(hba
);
4051 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4053 dev_err(hba
->dev
, "%s: reset and restore failed\n",
4055 hba
->ufshcd_state
= UFSHCD_STATE_ERROR
;
4058 * Inform scsi mid-layer that we did reset and allow to handle
4059 * Unit Attention properly.
4061 scsi_report_bus_reset(hba
->host
, 0);
4063 hba
->saved_uic_err
= 0;
4068 hba
->ufshcd_state
= UFSHCD_STATE_OPERATIONAL
;
4069 if (hba
->saved_err
|| hba
->saved_uic_err
)
4070 dev_err_ratelimited(hba
->dev
, "%s: exit: saved_err 0x%x saved_uic_err 0x%x",
4071 __func__
, hba
->saved_err
, hba
->saved_uic_err
);
4074 ufshcd_clear_eh_in_progress(hba
);
4077 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4078 scsi_unblock_requests(hba
->host
);
4079 ufshcd_release(hba
);
4080 pm_runtime_put_sync(hba
->dev
);
4084 * ufshcd_update_uic_error - check and set fatal UIC error flags.
4085 * @hba: per-adapter instance
4087 static void ufshcd_update_uic_error(struct ufs_hba
*hba
)
4091 /* PA_INIT_ERROR is fatal and needs UIC reset */
4092 reg
= ufshcd_readl(hba
, REG_UIC_ERROR_CODE_DATA_LINK_LAYER
);
4093 if (reg
& UIC_DATA_LINK_LAYER_ERROR_PA_INIT
)
4094 hba
->uic_error
|= UFSHCD_UIC_DL_PA_INIT_ERROR
;
4095 else if (hba
->dev_quirks
&
4096 UFS_DEVICE_QUIRK_RECOVERY_FROM_DL_NAC_ERRORS
) {
4097 if (reg
& UIC_DATA_LINK_LAYER_ERROR_NAC_RECEIVED
)
4099 UFSHCD_UIC_DL_NAC_RECEIVED_ERROR
;
4100 else if (reg
& UIC_DATA_LINK_LAYER_ERROR_TCx_REPLAY_TIMEOUT
)
4101 hba
->uic_error
|= UFSHCD_UIC_DL_TCx_REPLAY_ERROR
;
4104 /* UIC NL/TL/DME errors needs software retry */
4105 reg
= ufshcd_readl(hba
, REG_UIC_ERROR_CODE_NETWORK_LAYER
);
4107 hba
->uic_error
|= UFSHCD_UIC_NL_ERROR
;
4109 reg
= ufshcd_readl(hba
, REG_UIC_ERROR_CODE_TRANSPORT_LAYER
);
4111 hba
->uic_error
|= UFSHCD_UIC_TL_ERROR
;
4113 reg
= ufshcd_readl(hba
, REG_UIC_ERROR_CODE_DME
);
4115 hba
->uic_error
|= UFSHCD_UIC_DME_ERROR
;
4117 dev_dbg(hba
->dev
, "%s: UIC error flags = 0x%08x\n",
4118 __func__
, hba
->uic_error
);
4122 * ufshcd_check_errors - Check for errors that need s/w attention
4123 * @hba: per-adapter instance
4125 static void ufshcd_check_errors(struct ufs_hba
*hba
)
4127 bool queue_eh_work
= false;
4129 if (hba
->errors
& INT_FATAL_ERRORS
)
4130 queue_eh_work
= true;
4132 if (hba
->errors
& UIC_ERROR
) {
4134 ufshcd_update_uic_error(hba
);
4136 queue_eh_work
= true;
4139 if (queue_eh_work
) {
4141 * update the transfer error masks to sticky bits, let's do this
4142 * irrespective of current ufshcd_state.
4144 hba
->saved_err
|= hba
->errors
;
4145 hba
->saved_uic_err
|= hba
->uic_error
;
4147 /* handle fatal errors only when link is functional */
4148 if (hba
->ufshcd_state
== UFSHCD_STATE_OPERATIONAL
) {
4149 /* block commands from scsi mid-layer */
4150 scsi_block_requests(hba
->host
);
4152 hba
->ufshcd_state
= UFSHCD_STATE_ERROR
;
4153 schedule_work(&hba
->eh_work
);
4157 * if (!queue_eh_work) -
4158 * Other errors are either non-fatal where host recovers
4159 * itself without s/w intervention or errors that will be
4160 * handled by the SCSI core layer.
4165 * ufshcd_tmc_handler - handle task management function completion
4166 * @hba: per adapter instance
4168 static void ufshcd_tmc_handler(struct ufs_hba
*hba
)
4172 tm_doorbell
= ufshcd_readl(hba
, REG_UTP_TASK_REQ_DOOR_BELL
);
4173 hba
->tm_condition
= tm_doorbell
^ hba
->outstanding_tasks
;
4174 wake_up(&hba
->tm_wq
);
4178 * ufshcd_sl_intr - Interrupt service routine
4179 * @hba: per adapter instance
4180 * @intr_status: contains interrupts generated by the controller
4182 static void ufshcd_sl_intr(struct ufs_hba
*hba
, u32 intr_status
)
4184 hba
->errors
= UFSHCD_ERROR_MASK
& intr_status
;
4186 ufshcd_check_errors(hba
);
4188 if (intr_status
& UFSHCD_UIC_MASK
)
4189 ufshcd_uic_cmd_compl(hba
, intr_status
);
4191 if (intr_status
& UTP_TASK_REQ_COMPL
)
4192 ufshcd_tmc_handler(hba
);
4194 if (intr_status
& UTP_TRANSFER_REQ_COMPL
)
4195 ufshcd_transfer_req_compl(hba
);
4199 * ufshcd_intr - Main interrupt service routine
4201 * @__hba: pointer to adapter instance
4203 * Returns IRQ_HANDLED - If interrupt is valid
4204 * IRQ_NONE - If invalid interrupt
4206 static irqreturn_t
ufshcd_intr(int irq
, void *__hba
)
4208 u32 intr_status
, enabled_intr_status
;
4209 irqreturn_t retval
= IRQ_NONE
;
4210 struct ufs_hba
*hba
= __hba
;
4212 spin_lock(hba
->host
->host_lock
);
4213 intr_status
= ufshcd_readl(hba
, REG_INTERRUPT_STATUS
);
4214 enabled_intr_status
=
4215 intr_status
& ufshcd_readl(hba
, REG_INTERRUPT_ENABLE
);
4218 ufshcd_writel(hba
, intr_status
, REG_INTERRUPT_STATUS
);
4220 if (enabled_intr_status
) {
4221 ufshcd_sl_intr(hba
, enabled_intr_status
);
4222 retval
= IRQ_HANDLED
;
4224 spin_unlock(hba
->host
->host_lock
);
4228 static int ufshcd_clear_tm_cmd(struct ufs_hba
*hba
, int tag
)
4231 u32 mask
= 1 << tag
;
4232 unsigned long flags
;
4234 if (!test_bit(tag
, &hba
->outstanding_tasks
))
4237 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4238 ufshcd_writel(hba
, ~(1 << tag
), REG_UTP_TASK_REQ_LIST_CLEAR
);
4239 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4241 /* poll for max. 1 sec to clear door bell register by h/w */
4242 err
= ufshcd_wait_for_register(hba
,
4243 REG_UTP_TASK_REQ_DOOR_BELL
,
4244 mask
, 0, 1000, 1000, true);
4250 * ufshcd_issue_tm_cmd - issues task management commands to controller
4251 * @hba: per adapter instance
4252 * @lun_id: LUN ID to which TM command is sent
4253 * @task_id: task ID to which the TM command is applicable
4254 * @tm_function: task management function opcode
4255 * @tm_response: task management service response return value
4257 * Returns non-zero value on error, zero on success.
4259 static int ufshcd_issue_tm_cmd(struct ufs_hba
*hba
, int lun_id
, int task_id
,
4260 u8 tm_function
, u8
*tm_response
)
4262 struct utp_task_req_desc
*task_req_descp
;
4263 struct utp_upiu_task_req
*task_req_upiup
;
4264 struct Scsi_Host
*host
;
4265 unsigned long flags
;
4273 * Get free slot, sleep if slots are unavailable.
4274 * Even though we use wait_event() which sleeps indefinitely,
4275 * the maximum wait time is bounded by %TM_CMD_TIMEOUT.
4277 wait_event(hba
->tm_tag_wq
, ufshcd_get_tm_free_slot(hba
, &free_slot
));
4278 ufshcd_hold(hba
, false);
4280 spin_lock_irqsave(host
->host_lock
, flags
);
4281 task_req_descp
= hba
->utmrdl_base_addr
;
4282 task_req_descp
+= free_slot
;
4284 /* Configure task request descriptor */
4285 task_req_descp
->header
.dword_0
= cpu_to_le32(UTP_REQ_DESC_INT_CMD
);
4286 task_req_descp
->header
.dword_2
=
4287 cpu_to_le32(OCS_INVALID_COMMAND_STATUS
);
4289 /* Configure task request UPIU */
4291 (struct utp_upiu_task_req
*) task_req_descp
->task_req_upiu
;
4292 task_tag
= hba
->nutrs
+ free_slot
;
4293 task_req_upiup
->header
.dword_0
=
4294 UPIU_HEADER_DWORD(UPIU_TRANSACTION_TASK_REQ
, 0,
4296 task_req_upiup
->header
.dword_1
=
4297 UPIU_HEADER_DWORD(0, tm_function
, 0, 0);
4299 * The host shall provide the same value for LUN field in the basic
4300 * header and for Input Parameter.
4302 task_req_upiup
->input_param1
= cpu_to_be32(lun_id
);
4303 task_req_upiup
->input_param2
= cpu_to_be32(task_id
);
4305 /* send command to the controller */
4306 __set_bit(free_slot
, &hba
->outstanding_tasks
);
4308 /* Make sure descriptors are ready before ringing the task doorbell */
4311 ufshcd_writel(hba
, 1 << free_slot
, REG_UTP_TASK_REQ_DOOR_BELL
);
4313 spin_unlock_irqrestore(host
->host_lock
, flags
);
4315 /* wait until the task management command is completed */
4316 err
= wait_event_timeout(hba
->tm_wq
,
4317 test_bit(free_slot
, &hba
->tm_condition
),
4318 msecs_to_jiffies(TM_CMD_TIMEOUT
));
4320 dev_err(hba
->dev
, "%s: task management cmd 0x%.2x timed-out\n",
4321 __func__
, tm_function
);
4322 if (ufshcd_clear_tm_cmd(hba
, free_slot
))
4323 dev_WARN(hba
->dev
, "%s: unable clear tm cmd (slot %d) after timeout\n",
4324 __func__
, free_slot
);
4327 err
= ufshcd_task_req_compl(hba
, free_slot
, tm_response
);
4330 clear_bit(free_slot
, &hba
->tm_condition
);
4331 ufshcd_put_tm_slot(hba
, free_slot
);
4332 wake_up(&hba
->tm_tag_wq
);
4334 ufshcd_release(hba
);
4339 * ufshcd_eh_device_reset_handler - device reset handler registered to
4341 * @cmd: SCSI command pointer
4343 * Returns SUCCESS/FAILED
4345 static int ufshcd_eh_device_reset_handler(struct scsi_cmnd
*cmd
)
4347 struct Scsi_Host
*host
;
4348 struct ufs_hba
*hba
;
4353 struct ufshcd_lrb
*lrbp
;
4354 unsigned long flags
;
4356 host
= cmd
->device
->host
;
4357 hba
= shost_priv(host
);
4358 tag
= cmd
->request
->tag
;
4360 lrbp
= &hba
->lrb
[tag
];
4361 err
= ufshcd_issue_tm_cmd(hba
, lrbp
->lun
, 0, UFS_LOGICAL_RESET
, &resp
);
4362 if (err
|| resp
!= UPIU_TASK_MANAGEMENT_FUNC_COMPL
) {
4368 /* clear the commands that were pending for corresponding LUN */
4369 for_each_set_bit(pos
, &hba
->outstanding_reqs
, hba
->nutrs
) {
4370 if (hba
->lrb
[pos
].lun
== lrbp
->lun
) {
4371 err
= ufshcd_clear_cmd(hba
, pos
);
4376 spin_lock_irqsave(host
->host_lock
, flags
);
4377 ufshcd_transfer_req_compl(hba
);
4378 spin_unlock_irqrestore(host
->host_lock
, flags
);
4383 dev_err(hba
->dev
, "%s: failed with err %d\n", __func__
, err
);
4390 * ufshcd_abort - abort a specific command
4391 * @cmd: SCSI command pointer
4393 * Abort the pending command in device by sending UFS_ABORT_TASK task management
4394 * command, and in host controller by clearing the door-bell register. There can
4395 * be race between controller sending the command to the device while abort is
4396 * issued. To avoid that, first issue UFS_QUERY_TASK to check if the command is
4397 * really issued and then try to abort it.
4399 * Returns SUCCESS/FAILED
4401 static int ufshcd_abort(struct scsi_cmnd
*cmd
)
4403 struct Scsi_Host
*host
;
4404 struct ufs_hba
*hba
;
4405 unsigned long flags
;
4410 struct ufshcd_lrb
*lrbp
;
4413 host
= cmd
->device
->host
;
4414 hba
= shost_priv(host
);
4415 tag
= cmd
->request
->tag
;
4416 if (!ufshcd_valid_tag(hba
, tag
)) {
4418 "%s: invalid command tag %d: cmd=0x%p, cmd->request=0x%p",
4419 __func__
, tag
, cmd
, cmd
->request
);
4423 ufshcd_hold(hba
, false);
4424 reg
= ufshcd_readl(hba
, REG_UTP_TRANSFER_REQ_DOOR_BELL
);
4425 /* If command is already aborted/completed, return SUCCESS */
4426 if (!(test_bit(tag
, &hba
->outstanding_reqs
))) {
4428 "%s: cmd at tag %d already completed, outstanding=0x%lx, doorbell=0x%x\n",
4429 __func__
, tag
, hba
->outstanding_reqs
, reg
);
4433 if (!(reg
& (1 << tag
))) {
4435 "%s: cmd was completed, but without a notifying intr, tag = %d",
4439 lrbp
= &hba
->lrb
[tag
];
4440 for (poll_cnt
= 100; poll_cnt
; poll_cnt
--) {
4441 err
= ufshcd_issue_tm_cmd(hba
, lrbp
->lun
, lrbp
->task_tag
,
4442 UFS_QUERY_TASK
, &resp
);
4443 if (!err
&& resp
== UPIU_TASK_MANAGEMENT_FUNC_SUCCEEDED
) {
4444 /* cmd pending in the device */
4446 } else if (!err
&& resp
== UPIU_TASK_MANAGEMENT_FUNC_COMPL
) {
4448 * cmd not pending in the device, check if it is
4451 reg
= ufshcd_readl(hba
, REG_UTP_TRANSFER_REQ_DOOR_BELL
);
4452 if (reg
& (1 << tag
)) {
4453 /* sleep for max. 200us to stabilize */
4454 usleep_range(100, 200);
4457 /* command completed already */
4461 err
= resp
; /* service response error */
4471 err
= ufshcd_issue_tm_cmd(hba
, lrbp
->lun
, lrbp
->task_tag
,
4472 UFS_ABORT_TASK
, &resp
);
4473 if (err
|| resp
!= UPIU_TASK_MANAGEMENT_FUNC_COMPL
) {
4475 err
= resp
; /* service response error */
4479 err
= ufshcd_clear_cmd(hba
, tag
);
4483 scsi_dma_unmap(cmd
);
4485 spin_lock_irqsave(host
->host_lock
, flags
);
4486 ufshcd_outstanding_req_clear(hba
, tag
);
4487 hba
->lrb
[tag
].cmd
= NULL
;
4488 spin_unlock_irqrestore(host
->host_lock
, flags
);
4490 clear_bit_unlock(tag
, &hba
->lrb_in_use
);
4491 wake_up(&hba
->dev_cmd
.tag_wq
);
4497 dev_err(hba
->dev
, "%s: failed with err %d\n", __func__
, err
);
4502 * This ufshcd_release() corresponds to the original scsi cmd that got
4503 * aborted here (as we won't get any IRQ for it).
4505 ufshcd_release(hba
);
4510 * ufshcd_host_reset_and_restore - reset and restore host controller
4511 * @hba: per-adapter instance
4513 * Note that host controller reset may issue DME_RESET to
4514 * local and remote (device) Uni-Pro stack and the attributes
4515 * are reset to default state.
4517 * Returns zero on success, non-zero on failure
4519 static int ufshcd_host_reset_and_restore(struct ufs_hba
*hba
)
4522 unsigned long flags
;
4524 /* Reset the host controller */
4525 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4526 ufshcd_hba_stop(hba
, false);
4527 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4529 err
= ufshcd_hba_enable(hba
);
4533 /* Establish the link again and restore the device */
4534 err
= ufshcd_probe_hba(hba
);
4536 if (!err
&& (hba
->ufshcd_state
!= UFSHCD_STATE_OPERATIONAL
))
4540 dev_err(hba
->dev
, "%s: Host init failed %d\n", __func__
, err
);
4546 * ufshcd_reset_and_restore - reset and re-initialize host/device
4547 * @hba: per-adapter instance
4549 * Reset and recover device, host and re-establish link. This
4550 * is helpful to recover the communication in fatal error conditions.
4552 * Returns zero on success, non-zero on failure
4554 static int ufshcd_reset_and_restore(struct ufs_hba
*hba
)
4557 unsigned long flags
;
4558 int retries
= MAX_HOST_RESET_RETRIES
;
4561 err
= ufshcd_host_reset_and_restore(hba
);
4562 } while (err
&& --retries
);
4565 * After reset the door-bell might be cleared, complete
4566 * outstanding requests in s/w here.
4568 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4569 ufshcd_transfer_req_compl(hba
);
4570 ufshcd_tmc_handler(hba
);
4571 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4577 * ufshcd_eh_host_reset_handler - host reset handler registered to scsi layer
4578 * @cmd - SCSI command pointer
4580 * Returns SUCCESS/FAILED
4582 static int ufshcd_eh_host_reset_handler(struct scsi_cmnd
*cmd
)
4585 unsigned long flags
;
4586 struct ufs_hba
*hba
;
4588 hba
= shost_priv(cmd
->device
->host
);
4590 ufshcd_hold(hba
, false);
4592 * Check if there is any race with fatal error handling.
4593 * If so, wait for it to complete. Even though fatal error
4594 * handling does reset and restore in some cases, don't assume
4595 * anything out of it. We are just avoiding race here.
4598 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4599 if (!(work_pending(&hba
->eh_work
) ||
4600 hba
->ufshcd_state
== UFSHCD_STATE_RESET
))
4602 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4603 dev_dbg(hba
->dev
, "%s: reset in progress\n", __func__
);
4604 flush_work(&hba
->eh_work
);
4607 hba
->ufshcd_state
= UFSHCD_STATE_RESET
;
4608 ufshcd_set_eh_in_progress(hba
);
4609 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4611 err
= ufshcd_reset_and_restore(hba
);
4613 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
4616 hba
->ufshcd_state
= UFSHCD_STATE_OPERATIONAL
;
4619 hba
->ufshcd_state
= UFSHCD_STATE_ERROR
;
4621 ufshcd_clear_eh_in_progress(hba
);
4622 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
4624 ufshcd_release(hba
);
4629 * ufshcd_get_max_icc_level - calculate the ICC level
4630 * @sup_curr_uA: max. current supported by the regulator
4631 * @start_scan: row at the desc table to start scan from
4632 * @buff: power descriptor buffer
4634 * Returns calculated max ICC level for specific regulator
4636 static u32
ufshcd_get_max_icc_level(int sup_curr_uA
, u32 start_scan
, char *buff
)
4643 for (i
= start_scan
; i
>= 0; i
--) {
4644 data
= be16_to_cpu(*((u16
*)(buff
+ 2*i
)));
4645 unit
= (data
& ATTR_ICC_LVL_UNIT_MASK
) >>
4646 ATTR_ICC_LVL_UNIT_OFFSET
;
4647 curr_uA
= data
& ATTR_ICC_LVL_VALUE_MASK
;
4649 case UFSHCD_NANO_AMP
:
4650 curr_uA
= curr_uA
/ 1000;
4652 case UFSHCD_MILI_AMP
:
4653 curr_uA
= curr_uA
* 1000;
4656 curr_uA
= curr_uA
* 1000 * 1000;
4658 case UFSHCD_MICRO_AMP
:
4662 if (sup_curr_uA
>= curr_uA
)
4667 pr_err("%s: Couldn't find valid icc_level = %d", __func__
, i
);
4674 * ufshcd_calc_icc_level - calculate the max ICC level
4675 * In case regulators are not initialized we'll return 0
4676 * @hba: per-adapter instance
4677 * @desc_buf: power descriptor buffer to extract ICC levels from.
4678 * @len: length of desc_buff
4680 * Returns calculated ICC level
4682 static u32
ufshcd_find_max_sup_active_icc_level(struct ufs_hba
*hba
,
4683 u8
*desc_buf
, int len
)
4687 if (!hba
->vreg_info
.vcc
|| !hba
->vreg_info
.vccq
||
4688 !hba
->vreg_info
.vccq2
) {
4690 "%s: Regulator capability was not set, actvIccLevel=%d",
4691 __func__
, icc_level
);
4695 if (hba
->vreg_info
.vcc
)
4696 icc_level
= ufshcd_get_max_icc_level(
4697 hba
->vreg_info
.vcc
->max_uA
,
4698 POWER_DESC_MAX_ACTV_ICC_LVLS
- 1,
4699 &desc_buf
[PWR_DESC_ACTIVE_LVLS_VCC_0
]);
4701 if (hba
->vreg_info
.vccq
)
4702 icc_level
= ufshcd_get_max_icc_level(
4703 hba
->vreg_info
.vccq
->max_uA
,
4705 &desc_buf
[PWR_DESC_ACTIVE_LVLS_VCCQ_0
]);
4707 if (hba
->vreg_info
.vccq2
)
4708 icc_level
= ufshcd_get_max_icc_level(
4709 hba
->vreg_info
.vccq2
->max_uA
,
4711 &desc_buf
[PWR_DESC_ACTIVE_LVLS_VCCQ2_0
]);
4716 static void ufshcd_init_icc_levels(struct ufs_hba
*hba
)
4719 int buff_len
= QUERY_DESC_POWER_MAX_SIZE
;
4720 u8 desc_buf
[QUERY_DESC_POWER_MAX_SIZE
];
4722 ret
= ufshcd_read_power_desc(hba
, desc_buf
, buff_len
);
4725 "%s: Failed reading power descriptor.len = %d ret = %d",
4726 __func__
, buff_len
, ret
);
4730 hba
->init_prefetch_data
.icc_level
=
4731 ufshcd_find_max_sup_active_icc_level(hba
,
4732 desc_buf
, buff_len
);
4733 dev_dbg(hba
->dev
, "%s: setting icc_level 0x%x",
4734 __func__
, hba
->init_prefetch_data
.icc_level
);
4736 ret
= ufshcd_query_attr_retry(hba
, UPIU_QUERY_OPCODE_WRITE_ATTR
,
4737 QUERY_ATTR_IDN_ACTIVE_ICC_LVL
, 0, 0,
4738 &hba
->init_prefetch_data
.icc_level
);
4742 "%s: Failed configuring bActiveICCLevel = %d ret = %d",
4743 __func__
, hba
->init_prefetch_data
.icc_level
, ret
);
4748 * ufshcd_scsi_add_wlus - Adds required W-LUs
4749 * @hba: per-adapter instance
4751 * UFS device specification requires the UFS devices to support 4 well known
4753 * "REPORT_LUNS" (address: 01h)
4754 * "UFS Device" (address: 50h)
4755 * "RPMB" (address: 44h)
4756 * "BOOT" (address: 30h)
4757 * UFS device's power management needs to be controlled by "POWER CONDITION"
4758 * field of SSU (START STOP UNIT) command. But this "power condition" field
4759 * will take effect only when its sent to "UFS device" well known logical unit
4760 * hence we require the scsi_device instance to represent this logical unit in
4761 * order for the UFS host driver to send the SSU command for power management.
4763 * We also require the scsi_device instance for "RPMB" (Replay Protected Memory
4764 * Block) LU so user space process can control this LU. User space may also
4765 * want to have access to BOOT LU.
4767 * This function adds scsi device instances for each of all well known LUs
4768 * (except "REPORT LUNS" LU).
4770 * Returns zero on success (all required W-LUs are added successfully),
4771 * non-zero error value on failure (if failed to add any of the required W-LU).
4773 static int ufshcd_scsi_add_wlus(struct ufs_hba
*hba
)
4776 struct scsi_device
*sdev_rpmb
;
4777 struct scsi_device
*sdev_boot
;
4779 hba
->sdev_ufs_device
= __scsi_add_device(hba
->host
, 0, 0,
4780 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_UFS_DEVICE_WLUN
), NULL
);
4781 if (IS_ERR(hba
->sdev_ufs_device
)) {
4782 ret
= PTR_ERR(hba
->sdev_ufs_device
);
4783 hba
->sdev_ufs_device
= NULL
;
4786 scsi_device_put(hba
->sdev_ufs_device
);
4788 sdev_boot
= __scsi_add_device(hba
->host
, 0, 0,
4789 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_BOOT_WLUN
), NULL
);
4790 if (IS_ERR(sdev_boot
)) {
4791 ret
= PTR_ERR(sdev_boot
);
4792 goto remove_sdev_ufs_device
;
4794 scsi_device_put(sdev_boot
);
4796 sdev_rpmb
= __scsi_add_device(hba
->host
, 0, 0,
4797 ufshcd_upiu_wlun_to_scsi_wlun(UFS_UPIU_RPMB_WLUN
), NULL
);
4798 if (IS_ERR(sdev_rpmb
)) {
4799 ret
= PTR_ERR(sdev_rpmb
);
4800 goto remove_sdev_boot
;
4802 scsi_device_put(sdev_rpmb
);
4806 scsi_remove_device(sdev_boot
);
4807 remove_sdev_ufs_device
:
4808 scsi_remove_device(hba
->sdev_ufs_device
);
4813 static int ufs_get_device_info(struct ufs_hba
*hba
,
4814 struct ufs_device_info
*card_data
)
4818 u8 str_desc_buf
[QUERY_DESC_STRING_MAX_SIZE
+ 1] = {0};
4819 u8 desc_buf
[QUERY_DESC_DEVICE_MAX_SIZE
];
4821 err
= ufshcd_read_device_desc(hba
, desc_buf
,
4822 QUERY_DESC_DEVICE_MAX_SIZE
);
4824 dev_err(hba
->dev
, "%s: Failed reading Device Desc. err = %d\n",
4830 * getting vendor (manufacturerID) and Bank Index in big endian
4833 card_data
->wmanufacturerid
= desc_buf
[DEVICE_DESC_PARAM_MANF_ID
] << 8 |
4834 desc_buf
[DEVICE_DESC_PARAM_MANF_ID
+ 1];
4836 model_index
= desc_buf
[DEVICE_DESC_PARAM_PRDCT_NAME
];
4838 err
= ufshcd_read_string_desc(hba
, model_index
, str_desc_buf
,
4839 QUERY_DESC_STRING_MAX_SIZE
, ASCII_STD
);
4841 dev_err(hba
->dev
, "%s: Failed reading Product Name. err = %d\n",
4846 str_desc_buf
[QUERY_DESC_STRING_MAX_SIZE
] = '\0';
4847 strlcpy(card_data
->model
, (str_desc_buf
+ QUERY_DESC_HDR_SIZE
),
4848 min_t(u8
, str_desc_buf
[QUERY_DESC_LENGTH_OFFSET
],
4851 /* Null terminate the model string */
4852 card_data
->model
[MAX_MODEL_LEN
] = '\0';
4858 void ufs_advertise_fixup_device(struct ufs_hba
*hba
)
4861 struct ufs_dev_fix
*f
;
4862 struct ufs_device_info card_data
;
4864 card_data
.wmanufacturerid
= 0;
4866 err
= ufs_get_device_info(hba
, &card_data
);
4868 dev_err(hba
->dev
, "%s: Failed getting device info. err = %d\n",
4873 for (f
= ufs_fixups
; f
->quirk
; f
++) {
4874 if (((f
->card
.wmanufacturerid
== card_data
.wmanufacturerid
) ||
4875 (f
->card
.wmanufacturerid
== UFS_ANY_VENDOR
)) &&
4876 (STR_PRFX_EQUAL(f
->card
.model
, card_data
.model
) ||
4877 !strcmp(f
->card
.model
, UFS_ANY_MODEL
)))
4878 hba
->dev_quirks
|= f
->quirk
;
4883 * ufshcd_tune_pa_tactivate - Tunes PA_TActivate of local UniPro
4884 * @hba: per-adapter instance
4886 * PA_TActivate parameter can be tuned manually if UniPro version is less than
4887 * 1.61. PA_TActivate needs to be greater than or equal to peerM-PHY's
4888 * RX_MIN_ACTIVATETIME_CAPABILITY attribute. This optimal value can help reduce
4889 * the hibern8 exit latency.
4891 * Returns zero on success, non-zero error value on failure.
4893 static int ufshcd_tune_pa_tactivate(struct ufs_hba
*hba
)
4896 u32 peer_rx_min_activatetime
= 0, tuned_pa_tactivate
;
4898 ret
= ufshcd_dme_peer_get(hba
,
4900 RX_MIN_ACTIVATETIME_CAPABILITY
,
4901 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
4902 &peer_rx_min_activatetime
);
4906 /* make sure proper unit conversion is applied */
4907 tuned_pa_tactivate
=
4908 ((peer_rx_min_activatetime
* RX_MIN_ACTIVATETIME_UNIT_US
)
4909 / PA_TACTIVATE_TIME_UNIT_US
);
4910 ret
= ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_TACTIVATE
),
4911 tuned_pa_tactivate
);
4918 * ufshcd_tune_pa_hibern8time - Tunes PA_Hibern8Time of local UniPro
4919 * @hba: per-adapter instance
4921 * PA_Hibern8Time parameter can be tuned manually if UniPro version is less than
4922 * 1.61. PA_Hibern8Time needs to be maximum of local M-PHY's
4923 * TX_HIBERN8TIME_CAPABILITY & peer M-PHY's RX_HIBERN8TIME_CAPABILITY.
4924 * This optimal value can help reduce the hibern8 exit latency.
4926 * Returns zero on success, non-zero error value on failure.
4928 static int ufshcd_tune_pa_hibern8time(struct ufs_hba
*hba
)
4931 u32 local_tx_hibern8_time_cap
= 0, peer_rx_hibern8_time_cap
= 0;
4932 u32 max_hibern8_time
, tuned_pa_hibern8time
;
4934 ret
= ufshcd_dme_get(hba
,
4935 UIC_ARG_MIB_SEL(TX_HIBERN8TIME_CAPABILITY
,
4936 UIC_ARG_MPHY_TX_GEN_SEL_INDEX(0)),
4937 &local_tx_hibern8_time_cap
);
4941 ret
= ufshcd_dme_peer_get(hba
,
4942 UIC_ARG_MIB_SEL(RX_HIBERN8TIME_CAPABILITY
,
4943 UIC_ARG_MPHY_RX_GEN_SEL_INDEX(0)),
4944 &peer_rx_hibern8_time_cap
);
4948 max_hibern8_time
= max(local_tx_hibern8_time_cap
,
4949 peer_rx_hibern8_time_cap
);
4950 /* make sure proper unit conversion is applied */
4951 tuned_pa_hibern8time
= ((max_hibern8_time
* HIBERN8TIME_UNIT_US
)
4952 / PA_HIBERN8_TIME_UNIT_US
);
4953 ret
= ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_HIBERN8TIME
),
4954 tuned_pa_hibern8time
);
4959 static void ufshcd_tune_unipro_params(struct ufs_hba
*hba
)
4961 if (ufshcd_is_unipro_pa_params_tuning_req(hba
)) {
4962 ufshcd_tune_pa_tactivate(hba
);
4963 ufshcd_tune_pa_hibern8time(hba
);
4966 if (hba
->dev_quirks
& UFS_DEVICE_QUIRK_PA_TACTIVATE
)
4967 /* set 1ms timeout for PA_TACTIVATE */
4968 ufshcd_dme_set(hba
, UIC_ARG_MIB(PA_TACTIVATE
), 10);
4972 * ufshcd_probe_hba - probe hba to detect device and initialize
4973 * @hba: per-adapter instance
4975 * Execute link-startup and verify device initialization
4977 static int ufshcd_probe_hba(struct ufs_hba
*hba
)
4981 ret
= ufshcd_link_startup(hba
);
4985 ufshcd_init_pwr_info(hba
);
4987 /* set the default level for urgent bkops */
4988 hba
->urgent_bkops_lvl
= BKOPS_STATUS_PERF_IMPACT
;
4989 hba
->is_urgent_bkops_lvl_checked
= false;
4991 /* UniPro link is active now */
4992 ufshcd_set_link_active(hba
);
4994 ret
= ufshcd_verify_dev_init(hba
);
4998 ret
= ufshcd_complete_dev_init(hba
);
5002 ufs_advertise_fixup_device(hba
);
5003 ufshcd_tune_unipro_params(hba
);
5005 ret
= ufshcd_set_vccq_rail_unused(hba
,
5006 (hba
->dev_quirks
& UFS_DEVICE_NO_VCCQ
) ? true : false);
5010 /* UFS device is also active now */
5011 ufshcd_set_ufs_dev_active(hba
);
5012 ufshcd_force_reset_auto_bkops(hba
);
5013 hba
->wlun_dev_clr_ua
= true;
5015 if (ufshcd_get_max_pwr_mode(hba
)) {
5017 "%s: Failed getting max supported power mode\n",
5020 ret
= ufshcd_config_pwr_mode(hba
, &hba
->max_pwr_info
.info
);
5022 dev_err(hba
->dev
, "%s: Failed setting power mode, err = %d\n",
5026 /* set the state as operational after switching to desired gear */
5027 hba
->ufshcd_state
= UFSHCD_STATE_OPERATIONAL
;
5029 * If we are in error handling context or in power management callbacks
5030 * context, no need to scan the host
5032 if (!ufshcd_eh_in_progress(hba
) && !hba
->pm_op_in_progress
) {
5035 /* clear any previous UFS device information */
5036 memset(&hba
->dev_info
, 0, sizeof(hba
->dev_info
));
5037 if (!ufshcd_query_flag_retry(hba
, UPIU_QUERY_OPCODE_READ_FLAG
,
5038 QUERY_FLAG_IDN_PWR_ON_WPE
, &flag
))
5039 hba
->dev_info
.f_power_on_wp_en
= flag
;
5041 if (!hba
->is_init_prefetch
)
5042 ufshcd_init_icc_levels(hba
);
5044 /* Add required well known logical units to scsi mid layer */
5045 if (ufshcd_scsi_add_wlus(hba
))
5048 scsi_scan_host(hba
->host
);
5049 pm_runtime_put_sync(hba
->dev
);
5052 if (!hba
->is_init_prefetch
)
5053 hba
->is_init_prefetch
= true;
5055 /* Resume devfreq after UFS device is detected */
5056 if (ufshcd_is_clkscaling_enabled(hba
))
5057 devfreq_resume_device(hba
->devfreq
);
5061 * If we failed to initialize the device or the device is not
5062 * present, turn off the power/clocks etc.
5064 if (ret
&& !ufshcd_eh_in_progress(hba
) && !hba
->pm_op_in_progress
) {
5065 pm_runtime_put_sync(hba
->dev
);
5066 ufshcd_hba_exit(hba
);
5073 * ufshcd_async_scan - asynchronous execution for probing hba
5074 * @data: data pointer to pass to this function
5075 * @cookie: cookie data
5077 static void ufshcd_async_scan(void *data
, async_cookie_t cookie
)
5079 struct ufs_hba
*hba
= (struct ufs_hba
*)data
;
5081 ufshcd_probe_hba(hba
);
5084 static enum blk_eh_timer_return
ufshcd_eh_timed_out(struct scsi_cmnd
*scmd
)
5086 unsigned long flags
;
5087 struct Scsi_Host
*host
;
5088 struct ufs_hba
*hba
;
5092 if (!scmd
|| !scmd
->device
|| !scmd
->device
->host
)
5093 return BLK_EH_NOT_HANDLED
;
5095 host
= scmd
->device
->host
;
5096 hba
= shost_priv(host
);
5098 return BLK_EH_NOT_HANDLED
;
5100 spin_lock_irqsave(host
->host_lock
, flags
);
5102 for_each_set_bit(index
, &hba
->outstanding_reqs
, hba
->nutrs
) {
5103 if (hba
->lrb
[index
].cmd
== scmd
) {
5109 spin_unlock_irqrestore(host
->host_lock
, flags
);
5112 * Bypass SCSI error handling and reset the block layer timer if this
5113 * SCSI command was not actually dispatched to UFS driver, otherwise
5114 * let SCSI layer handle the error as usual.
5116 return found
? BLK_EH_NOT_HANDLED
: BLK_EH_RESET_TIMER
;
5119 static struct scsi_host_template ufshcd_driver_template
= {
5120 .module
= THIS_MODULE
,
5122 .proc_name
= UFSHCD
,
5123 .queuecommand
= ufshcd_queuecommand
,
5124 .slave_alloc
= ufshcd_slave_alloc
,
5125 .slave_configure
= ufshcd_slave_configure
,
5126 .slave_destroy
= ufshcd_slave_destroy
,
5127 .change_queue_depth
= ufshcd_change_queue_depth
,
5128 .eh_abort_handler
= ufshcd_abort
,
5129 .eh_device_reset_handler
= ufshcd_eh_device_reset_handler
,
5130 .eh_host_reset_handler
= ufshcd_eh_host_reset_handler
,
5131 .eh_timed_out
= ufshcd_eh_timed_out
,
5133 .sg_tablesize
= SG_ALL
,
5134 .cmd_per_lun
= UFSHCD_CMD_PER_LUN
,
5135 .can_queue
= UFSHCD_CAN_QUEUE
,
5136 .max_host_blocked
= 1,
5137 .track_queue_depth
= 1,
5140 static int ufshcd_config_vreg_load(struct device
*dev
, struct ufs_vreg
*vreg
,
5148 ret
= regulator_set_load(vreg
->reg
, ua
);
5150 dev_err(dev
, "%s: %s set load (ua=%d) failed, err=%d\n",
5151 __func__
, vreg
->name
, ua
, ret
);
5157 static inline int ufshcd_config_vreg_lpm(struct ufs_hba
*hba
,
5158 struct ufs_vreg
*vreg
)
5162 else if (vreg
->unused
)
5165 return ufshcd_config_vreg_load(hba
->dev
, vreg
,
5166 UFS_VREG_LPM_LOAD_UA
);
5169 static inline int ufshcd_config_vreg_hpm(struct ufs_hba
*hba
,
5170 struct ufs_vreg
*vreg
)
5174 else if (vreg
->unused
)
5177 return ufshcd_config_vreg_load(hba
->dev
, vreg
, vreg
->max_uA
);
5180 static int ufshcd_config_vreg(struct device
*dev
,
5181 struct ufs_vreg
*vreg
, bool on
)
5184 struct regulator
*reg
= vreg
->reg
;
5185 const char *name
= vreg
->name
;
5186 int min_uV
, uA_load
;
5190 if (regulator_count_voltages(reg
) > 0) {
5191 min_uV
= on
? vreg
->min_uV
: 0;
5192 ret
= regulator_set_voltage(reg
, min_uV
, vreg
->max_uV
);
5194 dev_err(dev
, "%s: %s set voltage failed, err=%d\n",
5195 __func__
, name
, ret
);
5199 uA_load
= on
? vreg
->max_uA
: 0;
5200 ret
= ufshcd_config_vreg_load(dev
, vreg
, uA_load
);
5208 static int ufshcd_enable_vreg(struct device
*dev
, struct ufs_vreg
*vreg
)
5214 else if (vreg
->enabled
|| vreg
->unused
)
5217 ret
= ufshcd_config_vreg(dev
, vreg
, true);
5219 ret
= regulator_enable(vreg
->reg
);
5222 vreg
->enabled
= true;
5224 dev_err(dev
, "%s: %s enable failed, err=%d\n",
5225 __func__
, vreg
->name
, ret
);
5230 static int ufshcd_disable_vreg(struct device
*dev
, struct ufs_vreg
*vreg
)
5236 else if (!vreg
->enabled
|| vreg
->unused
)
5239 ret
= regulator_disable(vreg
->reg
);
5242 /* ignore errors on applying disable config */
5243 ufshcd_config_vreg(dev
, vreg
, false);
5244 vreg
->enabled
= false;
5246 dev_err(dev
, "%s: %s disable failed, err=%d\n",
5247 __func__
, vreg
->name
, ret
);
5253 static int ufshcd_setup_vreg(struct ufs_hba
*hba
, bool on
)
5256 struct device
*dev
= hba
->dev
;
5257 struct ufs_vreg_info
*info
= &hba
->vreg_info
;
5262 ret
= ufshcd_toggle_vreg(dev
, info
->vcc
, on
);
5266 ret
= ufshcd_toggle_vreg(dev
, info
->vccq
, on
);
5270 ret
= ufshcd_toggle_vreg(dev
, info
->vccq2
, on
);
5276 ufshcd_toggle_vreg(dev
, info
->vccq2
, false);
5277 ufshcd_toggle_vreg(dev
, info
->vccq
, false);
5278 ufshcd_toggle_vreg(dev
, info
->vcc
, false);
5283 static int ufshcd_setup_hba_vreg(struct ufs_hba
*hba
, bool on
)
5285 struct ufs_vreg_info
*info
= &hba
->vreg_info
;
5288 return ufshcd_toggle_vreg(hba
->dev
, info
->vdd_hba
, on
);
5293 static int ufshcd_get_vreg(struct device
*dev
, struct ufs_vreg
*vreg
)
5300 vreg
->reg
= devm_regulator_get(dev
, vreg
->name
);
5301 if (IS_ERR(vreg
->reg
)) {
5302 ret
= PTR_ERR(vreg
->reg
);
5303 dev_err(dev
, "%s: %s get failed, err=%d\n",
5304 __func__
, vreg
->name
, ret
);
5310 static int ufshcd_init_vreg(struct ufs_hba
*hba
)
5313 struct device
*dev
= hba
->dev
;
5314 struct ufs_vreg_info
*info
= &hba
->vreg_info
;
5319 ret
= ufshcd_get_vreg(dev
, info
->vcc
);
5323 ret
= ufshcd_get_vreg(dev
, info
->vccq
);
5327 ret
= ufshcd_get_vreg(dev
, info
->vccq2
);
5332 static int ufshcd_init_hba_vreg(struct ufs_hba
*hba
)
5334 struct ufs_vreg_info
*info
= &hba
->vreg_info
;
5337 return ufshcd_get_vreg(hba
->dev
, info
->vdd_hba
);
5342 static int ufshcd_set_vccq_rail_unused(struct ufs_hba
*hba
, bool unused
)
5345 struct ufs_vreg_info
*info
= &hba
->vreg_info
;
5349 else if (!info
->vccq
)
5353 /* shut off the rail here */
5354 ret
= ufshcd_toggle_vreg(hba
->dev
, info
->vccq
, false);
5356 * Mark this rail as no longer used, so it doesn't get enabled
5360 info
->vccq
->unused
= true;
5363 * rail should have been already enabled hence just make sure
5364 * that unused flag is cleared.
5366 info
->vccq
->unused
= false;
5372 static int __ufshcd_setup_clocks(struct ufs_hba
*hba
, bool on
,
5376 struct ufs_clk_info
*clki
;
5377 struct list_head
*head
= &hba
->clk_list_head
;
5378 unsigned long flags
;
5380 if (!head
|| list_empty(head
))
5383 list_for_each_entry(clki
, head
, list
) {
5384 if (!IS_ERR_OR_NULL(clki
->clk
)) {
5385 if (skip_ref_clk
&& !strcmp(clki
->name
, "ref_clk"))
5388 if (on
&& !clki
->enabled
) {
5389 ret
= clk_prepare_enable(clki
->clk
);
5391 dev_err(hba
->dev
, "%s: %s prepare enable failed, %d\n",
5392 __func__
, clki
->name
, ret
);
5395 } else if (!on
&& clki
->enabled
) {
5396 clk_disable_unprepare(clki
->clk
);
5399 dev_dbg(hba
->dev
, "%s: clk: %s %sabled\n", __func__
,
5400 clki
->name
, on
? "en" : "dis");
5404 ret
= ufshcd_vops_setup_clocks(hba
, on
);
5407 list_for_each_entry(clki
, head
, list
) {
5408 if (!IS_ERR_OR_NULL(clki
->clk
) && clki
->enabled
)
5409 clk_disable_unprepare(clki
->clk
);
5412 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
5413 hba
->clk_gating
.state
= CLKS_ON
;
5414 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
5419 static int ufshcd_setup_clocks(struct ufs_hba
*hba
, bool on
)
5421 return __ufshcd_setup_clocks(hba
, on
, false);
5424 static int ufshcd_init_clocks(struct ufs_hba
*hba
)
5427 struct ufs_clk_info
*clki
;
5428 struct device
*dev
= hba
->dev
;
5429 struct list_head
*head
= &hba
->clk_list_head
;
5431 if (!head
|| list_empty(head
))
5434 list_for_each_entry(clki
, head
, list
) {
5438 clki
->clk
= devm_clk_get(dev
, clki
->name
);
5439 if (IS_ERR(clki
->clk
)) {
5440 ret
= PTR_ERR(clki
->clk
);
5441 dev_err(dev
, "%s: %s clk get failed, %d\n",
5442 __func__
, clki
->name
, ret
);
5446 if (clki
->max_freq
) {
5447 ret
= clk_set_rate(clki
->clk
, clki
->max_freq
);
5449 dev_err(hba
->dev
, "%s: %s clk set rate(%dHz) failed, %d\n",
5450 __func__
, clki
->name
,
5451 clki
->max_freq
, ret
);
5454 clki
->curr_freq
= clki
->max_freq
;
5456 dev_dbg(dev
, "%s: clk: %s, rate: %lu\n", __func__
,
5457 clki
->name
, clk_get_rate(clki
->clk
));
5463 static int ufshcd_variant_hba_init(struct ufs_hba
*hba
)
5470 err
= ufshcd_vops_init(hba
);
5474 err
= ufshcd_vops_setup_regulators(hba
, true);
5481 ufshcd_vops_exit(hba
);
5484 dev_err(hba
->dev
, "%s: variant %s init failed err %d\n",
5485 __func__
, ufshcd_get_var_name(hba
), err
);
5489 static void ufshcd_variant_hba_exit(struct ufs_hba
*hba
)
5494 ufshcd_vops_setup_clocks(hba
, false);
5496 ufshcd_vops_setup_regulators(hba
, false);
5498 ufshcd_vops_exit(hba
);
5501 static int ufshcd_hba_init(struct ufs_hba
*hba
)
5506 * Handle host controller power separately from the UFS device power
5507 * rails as it will help controlling the UFS host controller power
5508 * collapse easily which is different than UFS device power collapse.
5509 * Also, enable the host controller power before we go ahead with rest
5510 * of the initialization here.
5512 err
= ufshcd_init_hba_vreg(hba
);
5516 err
= ufshcd_setup_hba_vreg(hba
, true);
5520 err
= ufshcd_init_clocks(hba
);
5522 goto out_disable_hba_vreg
;
5524 err
= ufshcd_setup_clocks(hba
, true);
5526 goto out_disable_hba_vreg
;
5528 err
= ufshcd_init_vreg(hba
);
5530 goto out_disable_clks
;
5532 err
= ufshcd_setup_vreg(hba
, true);
5534 goto out_disable_clks
;
5536 err
= ufshcd_variant_hba_init(hba
);
5538 goto out_disable_vreg
;
5540 hba
->is_powered
= true;
5544 ufshcd_setup_vreg(hba
, false);
5546 ufshcd_setup_clocks(hba
, false);
5547 out_disable_hba_vreg
:
5548 ufshcd_setup_hba_vreg(hba
, false);
5553 static void ufshcd_hba_exit(struct ufs_hba
*hba
)
5555 if (hba
->is_powered
) {
5556 ufshcd_variant_hba_exit(hba
);
5557 ufshcd_setup_vreg(hba
, false);
5558 ufshcd_setup_clocks(hba
, false);
5559 ufshcd_setup_hba_vreg(hba
, false);
5560 hba
->is_powered
= false;
5565 ufshcd_send_request_sense(struct ufs_hba
*hba
, struct scsi_device
*sdp
)
5567 unsigned char cmd
[6] = {REQUEST_SENSE
,
5571 SCSI_SENSE_BUFFERSIZE
,
5576 buffer
= kzalloc(SCSI_SENSE_BUFFERSIZE
, GFP_KERNEL
);
5582 ret
= scsi_execute_req_flags(sdp
, cmd
, DMA_FROM_DEVICE
, buffer
,
5583 SCSI_SENSE_BUFFERSIZE
, NULL
,
5584 msecs_to_jiffies(1000), 3, NULL
, REQ_PM
);
5586 pr_err("%s: failed with err %d\n", __func__
, ret
);
5594 * ufshcd_set_dev_pwr_mode - sends START STOP UNIT command to set device
5596 * @hba: per adapter instance
5597 * @pwr_mode: device power mode to set
5599 * Returns 0 if requested power mode is set successfully
5600 * Returns non-zero if failed to set the requested power mode
5602 static int ufshcd_set_dev_pwr_mode(struct ufs_hba
*hba
,
5603 enum ufs_dev_pwr_mode pwr_mode
)
5605 unsigned char cmd
[6] = { START_STOP
};
5606 struct scsi_sense_hdr sshdr
;
5607 struct scsi_device
*sdp
;
5608 unsigned long flags
;
5611 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
5612 sdp
= hba
->sdev_ufs_device
;
5614 ret
= scsi_device_get(sdp
);
5615 if (!ret
&& !scsi_device_online(sdp
)) {
5617 scsi_device_put(sdp
);
5622 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
5628 * If scsi commands fail, the scsi mid-layer schedules scsi error-
5629 * handling, which would wait for host to be resumed. Since we know
5630 * we are functional while we are here, skip host resume in error
5633 hba
->host
->eh_noresume
= 1;
5634 if (hba
->wlun_dev_clr_ua
) {
5635 ret
= ufshcd_send_request_sense(hba
, sdp
);
5638 /* Unit attention condition is cleared now */
5639 hba
->wlun_dev_clr_ua
= false;
5642 cmd
[4] = pwr_mode
<< 4;
5645 * Current function would be generally called from the power management
5646 * callbacks hence set the REQ_PM flag so that it doesn't resume the
5647 * already suspended childs.
5649 ret
= scsi_execute_req_flags(sdp
, cmd
, DMA_NONE
, NULL
, 0, &sshdr
,
5650 START_STOP_TIMEOUT
, 0, NULL
, REQ_PM
);
5652 sdev_printk(KERN_WARNING
, sdp
,
5653 "START_STOP failed for power mode: %d, result %x\n",
5655 if (driver_byte(ret
) & DRIVER_SENSE
)
5656 scsi_print_sense_hdr(sdp
, NULL
, &sshdr
);
5660 hba
->curr_dev_pwr_mode
= pwr_mode
;
5662 scsi_device_put(sdp
);
5663 hba
->host
->eh_noresume
= 0;
5667 static int ufshcd_link_state_transition(struct ufs_hba
*hba
,
5668 enum uic_link_state req_link_state
,
5669 int check_for_bkops
)
5673 if (req_link_state
== hba
->uic_link_state
)
5676 if (req_link_state
== UIC_LINK_HIBERN8_STATE
) {
5677 ret
= ufshcd_uic_hibern8_enter(hba
);
5679 ufshcd_set_link_hibern8(hba
);
5684 * If autobkops is enabled, link can't be turned off because
5685 * turning off the link would also turn off the device.
5687 else if ((req_link_state
== UIC_LINK_OFF_STATE
) &&
5688 (!check_for_bkops
|| (check_for_bkops
&&
5689 !hba
->auto_bkops_enabled
))) {
5691 * Let's make sure that link is in low power mode, we are doing
5692 * this currently by putting the link in Hibern8. Otherway to
5693 * put the link in low power mode is to send the DME end point
5694 * to device and then send the DME reset command to local
5695 * unipro. But putting the link in hibern8 is much faster.
5697 ret
= ufshcd_uic_hibern8_enter(hba
);
5701 * Change controller state to "reset state" which
5702 * should also put the link in off/reset state
5704 ufshcd_hba_stop(hba
, true);
5706 * TODO: Check if we need any delay to make sure that
5707 * controller is reset
5709 ufshcd_set_link_off(hba
);
5716 static void ufshcd_vreg_set_lpm(struct ufs_hba
*hba
)
5719 * It seems some UFS devices may keep drawing more than sleep current
5720 * (atleast for 500us) from UFS rails (especially from VCCQ rail).
5721 * To avoid this situation, add 2ms delay before putting these UFS
5722 * rails in LPM mode.
5724 if (!ufshcd_is_link_active(hba
) &&
5725 hba
->dev_quirks
& UFS_DEVICE_QUIRK_DELAY_BEFORE_LPM
)
5726 usleep_range(2000, 2100);
5729 * If UFS device is either in UFS_Sleep turn off VCC rail to save some
5732 * If UFS device and link is in OFF state, all power supplies (VCC,
5733 * VCCQ, VCCQ2) can be turned off if power on write protect is not
5734 * required. If UFS link is inactive (Hibern8 or OFF state) and device
5735 * is in sleep state, put VCCQ & VCCQ2 rails in LPM mode.
5737 * Ignore the error returned by ufshcd_toggle_vreg() as device is anyway
5738 * in low power state which would save some power.
5740 if (ufshcd_is_ufs_dev_poweroff(hba
) && ufshcd_is_link_off(hba
) &&
5741 !hba
->dev_info
.is_lu_power_on_wp
) {
5742 ufshcd_setup_vreg(hba
, false);
5743 } else if (!ufshcd_is_ufs_dev_active(hba
)) {
5744 ufshcd_toggle_vreg(hba
->dev
, hba
->vreg_info
.vcc
, false);
5745 if (!ufshcd_is_link_active(hba
)) {
5746 ufshcd_config_vreg_lpm(hba
, hba
->vreg_info
.vccq
);
5747 ufshcd_config_vreg_lpm(hba
, hba
->vreg_info
.vccq2
);
5752 static int ufshcd_vreg_set_hpm(struct ufs_hba
*hba
)
5756 if (ufshcd_is_ufs_dev_poweroff(hba
) && ufshcd_is_link_off(hba
) &&
5757 !hba
->dev_info
.is_lu_power_on_wp
) {
5758 ret
= ufshcd_setup_vreg(hba
, true);
5759 } else if (!ufshcd_is_ufs_dev_active(hba
)) {
5760 ret
= ufshcd_toggle_vreg(hba
->dev
, hba
->vreg_info
.vcc
, true);
5761 if (!ret
&& !ufshcd_is_link_active(hba
)) {
5762 ret
= ufshcd_config_vreg_hpm(hba
, hba
->vreg_info
.vccq
);
5765 ret
= ufshcd_config_vreg_hpm(hba
, hba
->vreg_info
.vccq2
);
5773 ufshcd_config_vreg_lpm(hba
, hba
->vreg_info
.vccq
);
5775 ufshcd_toggle_vreg(hba
->dev
, hba
->vreg_info
.vcc
, false);
5780 static void ufshcd_hba_vreg_set_lpm(struct ufs_hba
*hba
)
5782 if (ufshcd_is_link_off(hba
))
5783 ufshcd_setup_hba_vreg(hba
, false);
5786 static void ufshcd_hba_vreg_set_hpm(struct ufs_hba
*hba
)
5788 if (ufshcd_is_link_off(hba
))
5789 ufshcd_setup_hba_vreg(hba
, true);
5793 * ufshcd_suspend - helper function for suspend operations
5794 * @hba: per adapter instance
5795 * @pm_op: desired low power operation type
5797 * This function will try to put the UFS device and link into low power
5798 * mode based on the "rpm_lvl" (Runtime PM level) or "spm_lvl"
5799 * (System PM level).
5801 * If this function is called during shutdown, it will make sure that
5802 * both UFS device and UFS link is powered off.
5804 * NOTE: UFS device & link must be active before we enter in this function.
5806 * Returns 0 for success and non-zero for failure
5808 static int ufshcd_suspend(struct ufs_hba
*hba
, enum ufs_pm_op pm_op
)
5811 enum ufs_pm_level pm_lvl
;
5812 enum ufs_dev_pwr_mode req_dev_pwr_mode
;
5813 enum uic_link_state req_link_state
;
5815 hba
->pm_op_in_progress
= 1;
5816 if (!ufshcd_is_shutdown_pm(pm_op
)) {
5817 pm_lvl
= ufshcd_is_runtime_pm(pm_op
) ?
5818 hba
->rpm_lvl
: hba
->spm_lvl
;
5819 req_dev_pwr_mode
= ufs_get_pm_lvl_to_dev_pwr_mode(pm_lvl
);
5820 req_link_state
= ufs_get_pm_lvl_to_link_pwr_state(pm_lvl
);
5822 req_dev_pwr_mode
= UFS_POWERDOWN_PWR_MODE
;
5823 req_link_state
= UIC_LINK_OFF_STATE
;
5827 * If we can't transition into any of the low power modes
5828 * just gate the clocks.
5830 ufshcd_hold(hba
, false);
5831 hba
->clk_gating
.is_suspended
= true;
5833 if (req_dev_pwr_mode
== UFS_ACTIVE_PWR_MODE
&&
5834 req_link_state
== UIC_LINK_ACTIVE_STATE
) {
5838 if ((req_dev_pwr_mode
== hba
->curr_dev_pwr_mode
) &&
5839 (req_link_state
== hba
->uic_link_state
))
5842 /* UFS device & link must be active before we enter in this function */
5843 if (!ufshcd_is_ufs_dev_active(hba
) || !ufshcd_is_link_active(hba
)) {
5848 if (ufshcd_is_runtime_pm(pm_op
)) {
5849 if (ufshcd_can_autobkops_during_suspend(hba
)) {
5851 * The device is idle with no requests in the queue,
5852 * allow background operations if bkops status shows
5853 * that performance might be impacted.
5855 ret
= ufshcd_urgent_bkops(hba
);
5859 /* make sure that auto bkops is disabled */
5860 ufshcd_disable_auto_bkops(hba
);
5864 if ((req_dev_pwr_mode
!= hba
->curr_dev_pwr_mode
) &&
5865 ((ufshcd_is_runtime_pm(pm_op
) && !hba
->auto_bkops_enabled
) ||
5866 !ufshcd_is_runtime_pm(pm_op
))) {
5867 /* ensure that bkops is disabled */
5868 ufshcd_disable_auto_bkops(hba
);
5869 ret
= ufshcd_set_dev_pwr_mode(hba
, req_dev_pwr_mode
);
5874 ret
= ufshcd_link_state_transition(hba
, req_link_state
, 1);
5876 goto set_dev_active
;
5878 ufshcd_vreg_set_lpm(hba
);
5882 * The clock scaling needs access to controller registers. Hence, Wait
5883 * for pending clock scaling work to be done before clocks are
5886 if (ufshcd_is_clkscaling_enabled(hba
)) {
5887 devfreq_suspend_device(hba
->devfreq
);
5888 hba
->clk_scaling
.window_start_t
= 0;
5891 * Call vendor specific suspend callback. As these callbacks may access
5892 * vendor specific host controller register space call them before the
5893 * host clocks are ON.
5895 ret
= ufshcd_vops_suspend(hba
, pm_op
);
5897 goto set_link_active
;
5899 ret
= ufshcd_vops_setup_clocks(hba
, false);
5903 if (!ufshcd_is_link_active(hba
))
5904 ufshcd_setup_clocks(hba
, false);
5906 /* If link is active, device ref_clk can't be switched off */
5907 __ufshcd_setup_clocks(hba
, false, true);
5909 hba
->clk_gating
.state
= CLKS_OFF
;
5911 * Disable the host irq as host controller as there won't be any
5912 * host controller transaction expected till resume.
5914 ufshcd_disable_irq(hba
);
5915 /* Put the host controller in low power mode if possible */
5916 ufshcd_hba_vreg_set_lpm(hba
);
5920 ufshcd_vops_resume(hba
, pm_op
);
5922 ufshcd_vreg_set_hpm(hba
);
5923 if (ufshcd_is_link_hibern8(hba
) && !ufshcd_uic_hibern8_exit(hba
))
5924 ufshcd_set_link_active(hba
);
5925 else if (ufshcd_is_link_off(hba
))
5926 ufshcd_host_reset_and_restore(hba
);
5928 if (!ufshcd_set_dev_pwr_mode(hba
, UFS_ACTIVE_PWR_MODE
))
5929 ufshcd_disable_auto_bkops(hba
);
5931 hba
->clk_gating
.is_suspended
= false;
5932 ufshcd_release(hba
);
5934 hba
->pm_op_in_progress
= 0;
5939 * ufshcd_resume - helper function for resume operations
5940 * @hba: per adapter instance
5941 * @pm_op: runtime PM or system PM
5943 * This function basically brings the UFS device, UniPro link and controller
5946 * Returns 0 for success and non-zero for failure
5948 static int ufshcd_resume(struct ufs_hba
*hba
, enum ufs_pm_op pm_op
)
5951 enum uic_link_state old_link_state
;
5953 hba
->pm_op_in_progress
= 1;
5954 old_link_state
= hba
->uic_link_state
;
5956 ufshcd_hba_vreg_set_hpm(hba
);
5957 /* Make sure clocks are enabled before accessing controller */
5958 ret
= ufshcd_setup_clocks(hba
, true);
5962 /* enable the host irq as host controller would be active soon */
5963 ret
= ufshcd_enable_irq(hba
);
5965 goto disable_irq_and_vops_clks
;
5967 ret
= ufshcd_vreg_set_hpm(hba
);
5969 goto disable_irq_and_vops_clks
;
5972 * Call vendor specific resume callback. As these callbacks may access
5973 * vendor specific host controller register space call them when the
5974 * host clocks are ON.
5976 ret
= ufshcd_vops_resume(hba
, pm_op
);
5980 if (ufshcd_is_link_hibern8(hba
)) {
5981 ret
= ufshcd_uic_hibern8_exit(hba
);
5983 ufshcd_set_link_active(hba
);
5985 goto vendor_suspend
;
5986 } else if (ufshcd_is_link_off(hba
)) {
5987 ret
= ufshcd_host_reset_and_restore(hba
);
5989 * ufshcd_host_reset_and_restore() should have already
5990 * set the link state as active
5992 if (ret
|| !ufshcd_is_link_active(hba
))
5993 goto vendor_suspend
;
5996 if (!ufshcd_is_ufs_dev_active(hba
)) {
5997 ret
= ufshcd_set_dev_pwr_mode(hba
, UFS_ACTIVE_PWR_MODE
);
5999 goto set_old_link_state
;
6003 * If BKOPs operations are urgently needed at this moment then
6004 * keep auto-bkops enabled or else disable it.
6006 ufshcd_urgent_bkops(hba
);
6007 hba
->clk_gating
.is_suspended
= false;
6009 if (ufshcd_is_clkscaling_enabled(hba
))
6010 devfreq_resume_device(hba
->devfreq
);
6012 /* Schedule clock gating in case of no access to UFS device yet */
6013 ufshcd_release(hba
);
6017 ufshcd_link_state_transition(hba
, old_link_state
, 0);
6019 ufshcd_vops_suspend(hba
, pm_op
);
6021 ufshcd_vreg_set_lpm(hba
);
6022 disable_irq_and_vops_clks
:
6023 ufshcd_disable_irq(hba
);
6024 ufshcd_setup_clocks(hba
, false);
6026 hba
->pm_op_in_progress
= 0;
6031 * ufshcd_system_suspend - system suspend routine
6032 * @hba: per adapter instance
6033 * @pm_op: runtime PM or system PM
6035 * Check the description of ufshcd_suspend() function for more details.
6037 * Returns 0 for success and non-zero for failure
6039 int ufshcd_system_suspend(struct ufs_hba
*hba
)
6043 if (!hba
|| !hba
->is_powered
)
6046 if (pm_runtime_suspended(hba
->dev
)) {
6047 if (hba
->rpm_lvl
== hba
->spm_lvl
)
6049 * There is possibility that device may still be in
6050 * active state during the runtime suspend.
6052 if ((ufs_get_pm_lvl_to_dev_pwr_mode(hba
->spm_lvl
) ==
6053 hba
->curr_dev_pwr_mode
) && !hba
->auto_bkops_enabled
)
6057 * UFS device and/or UFS link low power states during runtime
6058 * suspend seems to be different than what is expected during
6059 * system suspend. Hence runtime resume the devic & link and
6060 * let the system suspend low power states to take effect.
6061 * TODO: If resume takes longer time, we might have optimize
6062 * it in future by not resuming everything if possible.
6064 ret
= ufshcd_runtime_resume(hba
);
6069 ret
= ufshcd_suspend(hba
, UFS_SYSTEM_PM
);
6072 hba
->is_sys_suspended
= true;
6075 EXPORT_SYMBOL(ufshcd_system_suspend
);
6078 * ufshcd_system_resume - system resume routine
6079 * @hba: per adapter instance
6081 * Returns 0 for success and non-zero for failure
6084 int ufshcd_system_resume(struct ufs_hba
*hba
)
6086 if (!hba
|| !hba
->is_powered
|| pm_runtime_suspended(hba
->dev
))
6088 * Let the runtime resume take care of resuming
6089 * if runtime suspended.
6093 return ufshcd_resume(hba
, UFS_SYSTEM_PM
);
6095 EXPORT_SYMBOL(ufshcd_system_resume
);
6098 * ufshcd_runtime_suspend - runtime suspend routine
6099 * @hba: per adapter instance
6101 * Check the description of ufshcd_suspend() function for more details.
6103 * Returns 0 for success and non-zero for failure
6105 int ufshcd_runtime_suspend(struct ufs_hba
*hba
)
6107 if (!hba
|| !hba
->is_powered
)
6110 return ufshcd_suspend(hba
, UFS_RUNTIME_PM
);
6112 EXPORT_SYMBOL(ufshcd_runtime_suspend
);
6115 * ufshcd_runtime_resume - runtime resume routine
6116 * @hba: per adapter instance
6118 * This function basically brings the UFS device, UniPro link and controller
6119 * to active state. Following operations are done in this function:
6121 * 1. Turn on all the controller related clocks
6122 * 2. Bring the UniPro link out of Hibernate state
6123 * 3. If UFS device is in sleep state, turn ON VCC rail and bring the UFS device
6125 * 4. If auto-bkops is enabled on the device, disable it.
6127 * So following would be the possible power state after this function return
6129 * S1: UFS device in Active state with VCC rail ON
6130 * UniPro link in Active state
6131 * All the UFS/UniPro controller clocks are ON
6133 * Returns 0 for success and non-zero for failure
6135 int ufshcd_runtime_resume(struct ufs_hba
*hba
)
6137 if (!hba
|| !hba
->is_powered
)
6140 return ufshcd_resume(hba
, UFS_RUNTIME_PM
);
6142 EXPORT_SYMBOL(ufshcd_runtime_resume
);
6144 int ufshcd_runtime_idle(struct ufs_hba
*hba
)
6148 EXPORT_SYMBOL(ufshcd_runtime_idle
);
6151 * ufshcd_shutdown - shutdown routine
6152 * @hba: per adapter instance
6154 * This function would power off both UFS device and UFS link.
6156 * Returns 0 always to allow force shutdown even in case of errors.
6158 int ufshcd_shutdown(struct ufs_hba
*hba
)
6162 if (ufshcd_is_ufs_dev_poweroff(hba
) && ufshcd_is_link_off(hba
))
6165 if (pm_runtime_suspended(hba
->dev
)) {
6166 ret
= ufshcd_runtime_resume(hba
);
6171 ret
= ufshcd_suspend(hba
, UFS_SHUTDOWN_PM
);
6174 dev_err(hba
->dev
, "%s failed, err %d\n", __func__
, ret
);
6175 /* allow force shutdown even in case of errors */
6178 EXPORT_SYMBOL(ufshcd_shutdown
);
6181 * ufshcd_remove - de-allocate SCSI host and host memory space
6182 * data structure memory
6183 * @hba - per adapter instance
6185 void ufshcd_remove(struct ufs_hba
*hba
)
6187 scsi_remove_host(hba
->host
);
6188 /* disable interrupts */
6189 ufshcd_disable_intr(hba
, hba
->intr_mask
);
6190 ufshcd_hba_stop(hba
, true);
6192 scsi_host_put(hba
->host
);
6194 ufshcd_exit_clk_gating(hba
);
6195 if (ufshcd_is_clkscaling_enabled(hba
))
6196 devfreq_remove_device(hba
->devfreq
);
6197 ufshcd_hba_exit(hba
);
6199 EXPORT_SYMBOL_GPL(ufshcd_remove
);
6202 * ufshcd_dealloc_host - deallocate Host Bus Adapter (HBA)
6203 * @hba: pointer to Host Bus Adapter (HBA)
6205 void ufshcd_dealloc_host(struct ufs_hba
*hba
)
6207 scsi_host_put(hba
->host
);
6209 EXPORT_SYMBOL_GPL(ufshcd_dealloc_host
);
6212 * ufshcd_set_dma_mask - Set dma mask based on the controller
6213 * addressing capability
6214 * @hba: per adapter instance
6216 * Returns 0 for success, non-zero for failure
6218 static int ufshcd_set_dma_mask(struct ufs_hba
*hba
)
6220 if (hba
->capabilities
& MASK_64_ADDRESSING_SUPPORT
) {
6221 if (!dma_set_mask_and_coherent(hba
->dev
, DMA_BIT_MASK(64)))
6224 return dma_set_mask_and_coherent(hba
->dev
, DMA_BIT_MASK(32));
6228 * ufshcd_alloc_host - allocate Host Bus Adapter (HBA)
6229 * @dev: pointer to device handle
6230 * @hba_handle: driver private handle
6231 * Returns 0 on success, non-zero value on failure
6233 int ufshcd_alloc_host(struct device
*dev
, struct ufs_hba
**hba_handle
)
6235 struct Scsi_Host
*host
;
6236 struct ufs_hba
*hba
;
6241 "Invalid memory reference for dev is NULL\n");
6246 host
= scsi_host_alloc(&ufshcd_driver_template
,
6247 sizeof(struct ufs_hba
));
6249 dev_err(dev
, "scsi_host_alloc failed\n");
6253 hba
= shost_priv(host
);
6261 EXPORT_SYMBOL(ufshcd_alloc_host
);
6263 static int ufshcd_scale_clks(struct ufs_hba
*hba
, bool scale_up
)
6266 struct ufs_clk_info
*clki
;
6267 struct list_head
*head
= &hba
->clk_list_head
;
6269 if (!head
|| list_empty(head
))
6272 ret
= ufshcd_vops_clk_scale_notify(hba
, scale_up
, PRE_CHANGE
);
6276 list_for_each_entry(clki
, head
, list
) {
6277 if (!IS_ERR_OR_NULL(clki
->clk
)) {
6278 if (scale_up
&& clki
->max_freq
) {
6279 if (clki
->curr_freq
== clki
->max_freq
)
6281 ret
= clk_set_rate(clki
->clk
, clki
->max_freq
);
6283 dev_err(hba
->dev
, "%s: %s clk set rate(%dHz) failed, %d\n",
6284 __func__
, clki
->name
,
6285 clki
->max_freq
, ret
);
6288 clki
->curr_freq
= clki
->max_freq
;
6290 } else if (!scale_up
&& clki
->min_freq
) {
6291 if (clki
->curr_freq
== clki
->min_freq
)
6293 ret
= clk_set_rate(clki
->clk
, clki
->min_freq
);
6295 dev_err(hba
->dev
, "%s: %s clk set rate(%dHz) failed, %d\n",
6296 __func__
, clki
->name
,
6297 clki
->min_freq
, ret
);
6300 clki
->curr_freq
= clki
->min_freq
;
6303 dev_dbg(hba
->dev
, "%s: clk: %s, rate: %lu\n", __func__
,
6304 clki
->name
, clk_get_rate(clki
->clk
));
6307 ret
= ufshcd_vops_clk_scale_notify(hba
, scale_up
, POST_CHANGE
);
6313 static int ufshcd_devfreq_target(struct device
*dev
,
6314 unsigned long *freq
, u32 flags
)
6317 struct ufs_hba
*hba
= dev_get_drvdata(dev
);
6319 if (!ufshcd_is_clkscaling_enabled(hba
))
6322 if (*freq
== UINT_MAX
)
6323 err
= ufshcd_scale_clks(hba
, true);
6324 else if (*freq
== 0)
6325 err
= ufshcd_scale_clks(hba
, false);
6330 static int ufshcd_devfreq_get_dev_status(struct device
*dev
,
6331 struct devfreq_dev_status
*stat
)
6333 struct ufs_hba
*hba
= dev_get_drvdata(dev
);
6334 struct ufs_clk_scaling
*scaling
= &hba
->clk_scaling
;
6335 unsigned long flags
;
6337 if (!ufshcd_is_clkscaling_enabled(hba
))
6340 memset(stat
, 0, sizeof(*stat
));
6342 spin_lock_irqsave(hba
->host
->host_lock
, flags
);
6343 if (!scaling
->window_start_t
)
6346 if (scaling
->is_busy_started
)
6347 scaling
->tot_busy_t
+= ktime_to_us(ktime_sub(ktime_get(),
6348 scaling
->busy_start_t
));
6350 stat
->total_time
= jiffies_to_usecs((long)jiffies
-
6351 (long)scaling
->window_start_t
);
6352 stat
->busy_time
= scaling
->tot_busy_t
;
6354 scaling
->window_start_t
= jiffies
;
6355 scaling
->tot_busy_t
= 0;
6357 if (hba
->outstanding_reqs
) {
6358 scaling
->busy_start_t
= ktime_get();
6359 scaling
->is_busy_started
= true;
6361 scaling
->busy_start_t
= ktime_set(0, 0);
6362 scaling
->is_busy_started
= false;
6364 spin_unlock_irqrestore(hba
->host
->host_lock
, flags
);
6368 static struct devfreq_dev_profile ufs_devfreq_profile
= {
6370 .target
= ufshcd_devfreq_target
,
6371 .get_dev_status
= ufshcd_devfreq_get_dev_status
,
6375 * ufshcd_init - Driver initialization routine
6376 * @hba: per-adapter instance
6377 * @mmio_base: base register address
6378 * @irq: Interrupt line of device
6379 * Returns 0 on success, non-zero value on failure
6381 int ufshcd_init(struct ufs_hba
*hba
, void __iomem
*mmio_base
, unsigned int irq
)
6384 struct Scsi_Host
*host
= hba
->host
;
6385 struct device
*dev
= hba
->dev
;
6389 "Invalid memory reference for mmio_base is NULL\n");
6394 hba
->mmio_base
= mmio_base
;
6397 err
= ufshcd_hba_init(hba
);
6401 /* Read capabilities registers */
6402 ufshcd_hba_capabilities(hba
);
6404 /* Get UFS version supported by the controller */
6405 hba
->ufs_version
= ufshcd_get_ufs_version(hba
);
6407 /* Get Interrupt bit mask per version */
6408 hba
->intr_mask
= ufshcd_get_intr_mask(hba
);
6410 err
= ufshcd_set_dma_mask(hba
);
6412 dev_err(hba
->dev
, "set dma mask failed\n");
6416 /* Allocate memory for host memory space */
6417 err
= ufshcd_memory_alloc(hba
);
6419 dev_err(hba
->dev
, "Memory allocation failed\n");
6424 ufshcd_host_memory_configure(hba
);
6426 host
->can_queue
= hba
->nutrs
;
6427 host
->cmd_per_lun
= hba
->nutrs
;
6428 host
->max_id
= UFSHCD_MAX_ID
;
6429 host
->max_lun
= UFS_MAX_LUNS
;
6430 host
->max_channel
= UFSHCD_MAX_CHANNEL
;
6431 host
->unique_id
= host
->host_no
;
6432 host
->max_cmd_len
= MAX_CDB_SIZE
;
6434 hba
->max_pwr_info
.is_valid
= false;
6436 /* Initailize wait queue for task management */
6437 init_waitqueue_head(&hba
->tm_wq
);
6438 init_waitqueue_head(&hba
->tm_tag_wq
);
6440 /* Initialize work queues */
6441 INIT_WORK(&hba
->eh_work
, ufshcd_err_handler
);
6442 INIT_WORK(&hba
->eeh_work
, ufshcd_exception_event_handler
);
6444 /* Initialize UIC command mutex */
6445 mutex_init(&hba
->uic_cmd_mutex
);
6447 /* Initialize mutex for device management commands */
6448 mutex_init(&hba
->dev_cmd
.lock
);
6450 /* Initialize device management tag acquire wait queue */
6451 init_waitqueue_head(&hba
->dev_cmd
.tag_wq
);
6453 ufshcd_init_clk_gating(hba
);
6456 * In order to avoid any spurious interrupt immediately after
6457 * registering UFS controller interrupt handler, clear any pending UFS
6458 * interrupt status and disable all the UFS interrupts.
6460 ufshcd_writel(hba
, ufshcd_readl(hba
, REG_INTERRUPT_STATUS
),
6461 REG_INTERRUPT_STATUS
);
6462 ufshcd_writel(hba
, 0, REG_INTERRUPT_ENABLE
);
6464 * Make sure that UFS interrupts are disabled and any pending interrupt
6465 * status is cleared before registering UFS interrupt handler.
6469 /* IRQ registration */
6470 err
= devm_request_irq(dev
, irq
, ufshcd_intr
, IRQF_SHARED
, UFSHCD
, hba
);
6472 dev_err(hba
->dev
, "request irq failed\n");
6475 hba
->is_irq_enabled
= true;
6478 err
= scsi_add_host(host
, hba
->dev
);
6480 dev_err(hba
->dev
, "scsi_add_host failed\n");
6484 /* Host controller enable */
6485 err
= ufshcd_hba_enable(hba
);
6487 dev_err(hba
->dev
, "Host controller enable failed\n");
6488 goto out_remove_scsi_host
;
6491 if (ufshcd_is_clkscaling_enabled(hba
)) {
6492 hba
->devfreq
= devfreq_add_device(dev
, &ufs_devfreq_profile
,
6493 "simple_ondemand", NULL
);
6494 if (IS_ERR(hba
->devfreq
)) {
6495 dev_err(hba
->dev
, "Unable to register with devfreq %ld\n",
6496 PTR_ERR(hba
->devfreq
));
6497 goto out_remove_scsi_host
;
6499 /* Suspend devfreq until the UFS device is detected */
6500 devfreq_suspend_device(hba
->devfreq
);
6501 hba
->clk_scaling
.window_start_t
= 0;
6504 /* Hold auto suspend until async scan completes */
6505 pm_runtime_get_sync(dev
);
6508 * The device-initialize-sequence hasn't been invoked yet.
6509 * Set the device to power-off state
6511 ufshcd_set_ufs_dev_poweroff(hba
);
6513 async_schedule(ufshcd_async_scan
, hba
);
6517 out_remove_scsi_host
:
6518 scsi_remove_host(hba
->host
);
6520 ufshcd_exit_clk_gating(hba
);
6522 hba
->is_irq_enabled
= false;
6523 scsi_host_put(host
);
6524 ufshcd_hba_exit(hba
);
6528 EXPORT_SYMBOL_GPL(ufshcd_init
);
6530 MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
6531 MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
6532 MODULE_DESCRIPTION("Generic UFS host controller driver Core");
6533 MODULE_LICENSE("GPL");
6534 MODULE_VERSION(UFSHCD_DRIVER_VERSION
);