2 * Universal Flash Storage Host controller driver
4 * This code is based on drivers/scsi/ufs/ufshcd.h
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
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/init.h>
43 #include <linux/interrupt.h>
45 #include <linux/delay.h>
46 #include <linux/slab.h>
47 #include <linux/spinlock.h>
48 #include <linux/workqueue.h>
49 #include <linux/errno.h>
50 #include <linux/types.h>
51 #include <linux/wait.h>
52 #include <linux/bitops.h>
53 #include <linux/pm_runtime.h>
54 #include <linux/clk.h>
55 #include <linux/completion.h>
56 #include <linux/regulator/consumer.h>
60 #include <asm/byteorder.h>
61 #include <scsi/scsi.h>
62 #include <scsi/scsi_cmnd.h>
63 #include <scsi/scsi_host.h>
64 #include <scsi/scsi_tcq.h>
65 #include <scsi/scsi_dbg.h>
66 #include <scsi/scsi_eh.h>
71 #define UFSHCD "ufshcd"
72 #define UFSHCD_DRIVER_VERSION "0.2"
77 DEV_CMD_TYPE_NOP
= 0x0,
78 DEV_CMD_TYPE_QUERY
= 0x1,
82 * struct uic_command - UIC command structure
83 * @command: UIC command
84 * @argument1: UIC command argument 1
85 * @argument2: UIC command argument 2
86 * @argument3: UIC command argument 3
87 * @cmd_active: Indicate if UIC command is outstanding
88 * @result: UIC command result
89 * @done: UIC command completion
98 struct completion done
;
101 /* Used to differentiate the power management options */
108 #define ufshcd_is_runtime_pm(op) ((op) == UFS_RUNTIME_PM)
109 #define ufshcd_is_system_pm(op) ((op) == UFS_SYSTEM_PM)
110 #define ufshcd_is_shutdown_pm(op) ((op) == UFS_SHUTDOWN_PM)
112 /* Host <-> Device UniPro Link state */
113 enum uic_link_state
{
114 UIC_LINK_OFF_STATE
= 0, /* Link powered down or disabled */
115 UIC_LINK_ACTIVE_STATE
= 1, /* Link is in Fast/Slow/Sleep state */
116 UIC_LINK_HIBERN8_STATE
= 2, /* Link is in Hibernate state */
119 #define ufshcd_is_link_off(hba) ((hba)->uic_link_state == UIC_LINK_OFF_STATE)
120 #define ufshcd_is_link_active(hba) ((hba)->uic_link_state == \
121 UIC_LINK_ACTIVE_STATE)
122 #define ufshcd_is_link_hibern8(hba) ((hba)->uic_link_state == \
123 UIC_LINK_HIBERN8_STATE)
124 #define ufshcd_set_link_off(hba) ((hba)->uic_link_state = UIC_LINK_OFF_STATE)
125 #define ufshcd_set_link_active(hba) ((hba)->uic_link_state = \
126 UIC_LINK_ACTIVE_STATE)
127 #define ufshcd_set_link_hibern8(hba) ((hba)->uic_link_state = \
128 UIC_LINK_HIBERN8_STATE)
131 * UFS Power management levels.
132 * Each level is in increasing order of power savings.
135 UFS_PM_LVL_0
, /* UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE */
136 UFS_PM_LVL_1
, /* UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE */
137 UFS_PM_LVL_2
, /* UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE */
138 UFS_PM_LVL_3
, /* UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE */
139 UFS_PM_LVL_4
, /* UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE */
140 UFS_PM_LVL_5
, /* UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE */
144 struct ufs_pm_lvl_states
{
145 enum ufs_dev_pwr_mode dev_state
;
146 enum uic_link_state link_state
;
150 * struct ufshcd_lrb - local reference block
151 * @utr_descriptor_ptr: UTRD address of the command
152 * @ucd_req_ptr: UCD address of the command
153 * @ucd_rsp_ptr: Response UPIU address for this command
154 * @ucd_prdt_ptr: PRDT address of the command
155 * @cmd: pointer to SCSI command
156 * @sense_buffer: pointer to sense buffer address of the SCSI command
157 * @sense_bufflen: Length of the sense buffer
158 * @scsi_status: SCSI status of the command
159 * @command_type: SCSI, UFS, Query.
160 * @task_tag: Task tag of the command
161 * @lun: LUN of the command
162 * @intr_cmd: Interrupt command (doesn't participate in interrupt aggregation)
165 struct utp_transfer_req_desc
*utr_descriptor_ptr
;
166 struct utp_upiu_req
*ucd_req_ptr
;
167 struct utp_upiu_rsp
*ucd_rsp_ptr
;
168 struct ufshcd_sg_entry
*ucd_prdt_ptr
;
170 struct scsi_cmnd
*cmd
;
172 unsigned int sense_bufflen
;
177 u8 lun
; /* UPIU LUN id field is only 8-bit wide */
182 * struct ufs_query - holds relevant data structures for query request
183 * @request: request upiu and function
184 * @descriptor: buffer for sending/receiving descriptor
185 * @response: response upiu and response
188 struct ufs_query_req request
;
190 struct ufs_query_res response
;
194 * struct ufs_dev_cmd - all assosiated fields with device management commands
195 * @type: device management command type - Query, NOP OUT
196 * @lock: lock to allow one command at a time
197 * @complete: internal commands completion
198 * @tag_wq: wait queue until free command slot is available
201 enum dev_cmd_type type
;
203 struct completion
*complete
;
204 wait_queue_head_t tag_wq
;
205 struct ufs_query query
;
209 * struct ufs_clk_info - UFS clock related info
210 * @list: list headed by hba->clk_list_head
213 * @max_freq: maximum frequency supported by the clock
214 * @min_freq: min frequency that can be used for clock scaling
215 * @curr_freq: indicates the current frequency that it is set to
216 * @enabled: variable to check against multiple enable/disable
218 struct ufs_clk_info
{
219 struct list_head list
;
228 enum ufs_notify_change_status
{
233 struct ufs_pa_layer_attr
{
243 struct ufs_pwr_mode_info
{
245 struct ufs_pa_layer_attr info
;
249 * struct ufs_hba_variant_ops - variant specific callbacks
250 * @name: variant name
251 * @init: called when the driver is initialized
252 * @exit: called to cleanup everything done in init
253 * @get_ufs_hci_version: called to get UFS HCI version
254 * @clk_scale_notify: notifies that clks are scaled up/down
255 * @setup_clocks: called before touching any of the controller registers
256 * @setup_regulators: called before accessing the host controller
257 * @hce_enable_notify: called before and after HCE enable bit is set to allow
258 * variant specific Uni-Pro initialization.
259 * @link_startup_notify: called before and after Link startup is carried out
260 * to allow variant specific Uni-Pro initialization.
261 * @pwr_change_notify: called before and after a power mode change
262 * is carried out to allow vendor spesific capabilities
264 * @suspend: called during host controller PM callback
265 * @resume: called during host controller PM callback
266 * @dbg_register_dump: used to dump controller debug information
268 struct ufs_hba_variant_ops
{
270 int (*init
)(struct ufs_hba
*);
271 void (*exit
)(struct ufs_hba
*);
272 u32 (*get_ufs_hci_version
)(struct ufs_hba
*);
273 int (*clk_scale_notify
)(struct ufs_hba
*, bool,
274 enum ufs_notify_change_status
);
275 int (*setup_clocks
)(struct ufs_hba
*, bool);
276 int (*setup_regulators
)(struct ufs_hba
*, bool);
277 int (*hce_enable_notify
)(struct ufs_hba
*,
278 enum ufs_notify_change_status
);
279 int (*link_startup_notify
)(struct ufs_hba
*,
280 enum ufs_notify_change_status
);
281 int (*pwr_change_notify
)(struct ufs_hba
*,
282 enum ufs_notify_change_status status
,
283 struct ufs_pa_layer_attr
*,
284 struct ufs_pa_layer_attr
*);
285 int (*suspend
)(struct ufs_hba
*, enum ufs_pm_op
);
286 int (*resume
)(struct ufs_hba
*, enum ufs_pm_op
);
287 void (*dbg_register_dump
)(struct ufs_hba
*hba
);
290 /* clock gating state */
291 enum clk_gating_state
{
299 * struct ufs_clk_gating - UFS clock gating related info
300 * @gate_work: worker to turn off clocks after some delay as specified in
302 * @ungate_work: worker to turn on clocks that will be used in case of
304 * @state: the current clocks state
305 * @delay_ms: gating delay in ms
306 * @is_suspended: clk gating is suspended when set to 1 which can be used
307 * during suspend/resume
308 * @delay_attr: sysfs attribute to control delay_attr
309 * @active_reqs: number of requests that are pending and should be waited for
310 * completion before gating clocks.
312 struct ufs_clk_gating
{
313 struct delayed_work gate_work
;
314 struct work_struct ungate_work
;
315 enum clk_gating_state state
;
316 unsigned long delay_ms
;
318 struct device_attribute delay_attr
;
322 struct ufs_clk_scaling
{
323 ktime_t busy_start_t
;
324 bool is_busy_started
;
325 unsigned long tot_busy_t
;
326 unsigned long window_start_t
;
330 * struct ufs_init_prefetch - contains data that is pre-fetched once during
332 * @icc_level: icc level which was read during initialization
334 struct ufs_init_prefetch
{
339 * struct ufs_hba - per adapter private structure
340 * @mmio_base: UFSHCI base register address
341 * @ucdl_base_addr: UFS Command Descriptor base address
342 * @utrdl_base_addr: UTP Transfer Request Descriptor base address
343 * @utmrdl_base_addr: UTP Task Management Descriptor base address
344 * @ucdl_dma_addr: UFS Command Descriptor DMA address
345 * @utrdl_dma_addr: UTRDL DMA address
346 * @utmrdl_dma_addr: UTMRDL DMA address
347 * @host: Scsi_Host instance of the driver
348 * @dev: device handle
349 * @lrb: local reference block
350 * @lrb_in_use: lrb in use
351 * @outstanding_tasks: Bits representing outstanding task requests
352 * @outstanding_reqs: Bits representing outstanding transfer requests
353 * @capabilities: UFS Controller Capabilities
354 * @nutrs: Transfer Request Queue depth supported by controller
355 * @nutmrs: Task Management Queue depth supported by controller
356 * @ufs_version: UFS Version to which controller complies
357 * @vops: pointer to variant specific operations
358 * @priv: pointer to variant specific private data
359 * @irq: Irq number of the controller
360 * @active_uic_cmd: handle of active UIC command
361 * @uic_cmd_mutex: mutex for uic command
362 * @tm_wq: wait queue for task management
363 * @tm_tag_wq: wait queue for free task management slots
364 * @tm_slots_in_use: bit map of task management request slots in use
365 * @pwr_done: completion for power mode change
366 * @tm_condition: condition variable for task management
367 * @ufshcd_state: UFSHCD states
368 * @eh_flags: Error handling flags
369 * @intr_mask: Interrupt Mask Bits
370 * @ee_ctrl_mask: Exception event control mask
371 * @is_powered: flag to check if HBA is powered
372 * @is_init_prefetch: flag to check if data was pre-fetched in initialization
373 * @init_prefetch_data: data pre-fetched during initialization
374 * @eh_work: Worker to handle UFS errors that require s/w attention
375 * @eeh_work: Worker to handle exception events
376 * @errors: HBA errors
377 * @uic_error: UFS interconnect layer error status
378 * @saved_err: sticky error mask
379 * @saved_uic_err: sticky UIC error mask
380 * @dev_cmd: ufs device management command information
381 * @last_dme_cmd_tstamp: time stamp of the last completed DME command
382 * @auto_bkops_enabled: to track whether bkops is enabled in device
383 * @vreg_info: UFS device voltage regulator information
384 * @clk_list_head: UFS host controller clocks list node head
385 * @pwr_info: holds current power mode
386 * @max_pwr_info: keeps the device max valid pwm
387 * @urgent_bkops_lvl: keeps track of urgent bkops level for device
388 * @is_urgent_bkops_lvl_checked: keeps track if the urgent bkops level for
389 * device is known or not.
392 void __iomem
*mmio_base
;
394 /* Virtual memory reference */
395 struct utp_transfer_cmd_desc
*ucdl_base_addr
;
396 struct utp_transfer_req_desc
*utrdl_base_addr
;
397 struct utp_task_req_desc
*utmrdl_base_addr
;
399 /* DMA memory reference */
400 dma_addr_t ucdl_dma_addr
;
401 dma_addr_t utrdl_dma_addr
;
402 dma_addr_t utmrdl_dma_addr
;
404 struct Scsi_Host
*host
;
407 * This field is to keep a reference to "scsi_device" corresponding to
410 struct scsi_device
*sdev_ufs_device
;
412 enum ufs_dev_pwr_mode curr_dev_pwr_mode
;
413 enum uic_link_state uic_link_state
;
414 /* Desired UFS power management level during runtime PM */
415 enum ufs_pm_level rpm_lvl
;
416 /* Desired UFS power management level during system PM */
417 enum ufs_pm_level spm_lvl
;
418 int pm_op_in_progress
;
420 struct ufshcd_lrb
*lrb
;
421 unsigned long lrb_in_use
;
423 unsigned long outstanding_tasks
;
424 unsigned long outstanding_reqs
;
430 struct ufs_hba_variant_ops
*vops
;
435 /* Interrupt aggregation support is broken */
436 #define UFSHCD_QUIRK_BROKEN_INTR_AGGR UFS_BIT(0)
439 * delay before each dme command is required as the unipro
440 * layer has shown instabilities
442 #define UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS UFS_BIT(1)
445 * If UFS host controller is having issue in processing LCC (Line
446 * Control Command) coming from device then enable this quirk.
447 * When this quirk is enabled, host controller driver should disable
448 * the LCC transmission on UFS device (by clearing TX_LCC_ENABLE
449 * attribute of device to 0).
451 #define UFSHCD_QUIRK_BROKEN_LCC UFS_BIT(2)
454 * The attribute PA_RXHSUNTERMCAP specifies whether or not the
455 * inbound Link supports unterminated line in HS mode. Setting this
456 * attribute to 1 fixes moving to HS gear.
458 #define UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP UFS_BIT(3)
461 * This quirk needs to be enabled if the host contoller only allows
462 * accessing the peer dme attributes in AUTO mode (FAST AUTO or
465 #define UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE UFS_BIT(4)
468 * This quirk needs to be enabled if the host contoller doesn't
469 * advertise the correct version in UFS_VER register. If this quirk
470 * is enabled, standard UFS host driver will call the vendor specific
471 * ops (get_ufs_hci_version) to get the correct version.
473 #define UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION UFS_BIT(5)
475 unsigned int quirks
; /* Deviations from standard UFSHCI spec. */
477 /* Device deviations from standard UFS device spec. */
478 unsigned int dev_quirks
;
480 wait_queue_head_t tm_wq
;
481 wait_queue_head_t tm_tag_wq
;
482 unsigned long tm_condition
;
483 unsigned long tm_slots_in_use
;
485 struct uic_command
*active_uic_cmd
;
486 struct mutex uic_cmd_mutex
;
487 struct completion
*uic_async_done
;
494 bool is_init_prefetch
;
495 struct ufs_init_prefetch init_prefetch_data
;
498 struct work_struct eh_work
;
499 struct work_struct eeh_work
;
507 /* Device management request data */
508 struct ufs_dev_cmd dev_cmd
;
509 ktime_t last_dme_cmd_tstamp
;
511 /* Keeps information of the UFS device connected to this host */
512 struct ufs_dev_info dev_info
;
513 bool auto_bkops_enabled
;
514 struct ufs_vreg_info vreg_info
;
515 struct list_head clk_list_head
;
517 bool wlun_dev_clr_ua
;
519 /* Number of lanes available (1 or 2) for Rx/Tx */
520 u32 lanes_per_direction
;
521 struct ufs_pa_layer_attr pwr_info
;
522 struct ufs_pwr_mode_info max_pwr_info
;
524 struct ufs_clk_gating clk_gating
;
525 /* Control to enable/disable host capabilities */
527 /* Allow dynamic clk gating */
528 #define UFSHCD_CAP_CLK_GATING (1 << 0)
529 /* Allow hiberb8 with clk gating */
530 #define UFSHCD_CAP_HIBERN8_WITH_CLK_GATING (1 << 1)
531 /* Allow dynamic clk scaling */
532 #define UFSHCD_CAP_CLK_SCALING (1 << 2)
533 /* Allow auto bkops to enabled during runtime suspend */
534 #define UFSHCD_CAP_AUTO_BKOPS_SUSPEND (1 << 3)
536 * This capability allows host controller driver to use the UFS HCI's
537 * interrupt aggregation capability.
538 * CAUTION: Enabling this might reduce overall UFS throughput.
540 #define UFSHCD_CAP_INTR_AGGR (1 << 4)
542 struct devfreq
*devfreq
;
543 struct ufs_clk_scaling clk_scaling
;
544 bool is_sys_suspended
;
546 enum bkops_status urgent_bkops_lvl
;
547 bool is_urgent_bkops_lvl_checked
;
550 /* Returns true if clocks can be gated. Otherwise false */
551 static inline bool ufshcd_is_clkgating_allowed(struct ufs_hba
*hba
)
553 return hba
->caps
& UFSHCD_CAP_CLK_GATING
;
555 static inline bool ufshcd_can_hibern8_during_gating(struct ufs_hba
*hba
)
557 return hba
->caps
& UFSHCD_CAP_HIBERN8_WITH_CLK_GATING
;
559 static inline int ufshcd_is_clkscaling_enabled(struct ufs_hba
*hba
)
561 return hba
->caps
& UFSHCD_CAP_CLK_SCALING
;
563 static inline bool ufshcd_can_autobkops_during_suspend(struct ufs_hba
*hba
)
565 return hba
->caps
& UFSHCD_CAP_AUTO_BKOPS_SUSPEND
;
568 static inline bool ufshcd_is_intr_aggr_allowed(struct ufs_hba
*hba
)
570 if ((hba
->caps
& UFSHCD_CAP_INTR_AGGR
) &&
571 !(hba
->quirks
& UFSHCD_QUIRK_BROKEN_INTR_AGGR
))
577 #define ufshcd_writel(hba, val, reg) \
578 writel((val), (hba)->mmio_base + (reg))
579 #define ufshcd_readl(hba, reg) \
580 readl((hba)->mmio_base + (reg))
583 * ufshcd_rmwl - read modify write into a register
584 * @hba - per adapter instance
585 * @mask - mask to apply on read value
586 * @val - actual value to write
587 * @reg - register address
589 static inline void ufshcd_rmwl(struct ufs_hba
*hba
, u32 mask
, u32 val
, u32 reg
)
593 tmp
= ufshcd_readl(hba
, reg
);
596 ufshcd_writel(hba
, tmp
, reg
);
599 int ufshcd_alloc_host(struct device
*, struct ufs_hba
**);
600 void ufshcd_dealloc_host(struct ufs_hba
*);
601 int ufshcd_init(struct ufs_hba
* , void __iomem
* , unsigned int);
602 void ufshcd_remove(struct ufs_hba
*);
603 int ufshcd_wait_for_register(struct ufs_hba
*hba
, u32 reg
, u32 mask
,
604 u32 val
, unsigned long interval_us
,
605 unsigned long timeout_ms
, bool can_sleep
);
607 static inline void check_upiu_size(void)
609 BUILD_BUG_ON(ALIGNED_UPIU_SIZE
<
610 GENERAL_UPIU_REQUEST_SIZE
+ QUERY_DESC_MAX_SIZE
);
614 * ufshcd_set_variant - set variant specific data to the hba
615 * @hba - per adapter instance
616 * @variant - pointer to variant specific data
618 static inline void ufshcd_set_variant(struct ufs_hba
*hba
, void *variant
)
625 * ufshcd_get_variant - get variant specific data from the hba
626 * @hba - per adapter instance
628 static inline void *ufshcd_get_variant(struct ufs_hba
*hba
)
634 extern int ufshcd_runtime_suspend(struct ufs_hba
*hba
);
635 extern int ufshcd_runtime_resume(struct ufs_hba
*hba
);
636 extern int ufshcd_runtime_idle(struct ufs_hba
*hba
);
637 extern int ufshcd_system_suspend(struct ufs_hba
*hba
);
638 extern int ufshcd_system_resume(struct ufs_hba
*hba
);
639 extern int ufshcd_shutdown(struct ufs_hba
*hba
);
640 extern int ufshcd_dme_set_attr(struct ufs_hba
*hba
, u32 attr_sel
,
641 u8 attr_set
, u32 mib_val
, u8 peer
);
642 extern int ufshcd_dme_get_attr(struct ufs_hba
*hba
, u32 attr_sel
,
643 u32
*mib_val
, u8 peer
);
645 /* UIC command interfaces for DME primitives */
648 #define ATTR_SET_NOR 0 /* NORMAL */
649 #define ATTR_SET_ST 1 /* STATIC */
651 static inline int ufshcd_dme_set(struct ufs_hba
*hba
, u32 attr_sel
,
654 return ufshcd_dme_set_attr(hba
, attr_sel
, ATTR_SET_NOR
,
658 static inline int ufshcd_dme_st_set(struct ufs_hba
*hba
, u32 attr_sel
,
661 return ufshcd_dme_set_attr(hba
, attr_sel
, ATTR_SET_ST
,
665 static inline int ufshcd_dme_peer_set(struct ufs_hba
*hba
, u32 attr_sel
,
668 return ufshcd_dme_set_attr(hba
, attr_sel
, ATTR_SET_NOR
,
672 static inline int ufshcd_dme_peer_st_set(struct ufs_hba
*hba
, u32 attr_sel
,
675 return ufshcd_dme_set_attr(hba
, attr_sel
, ATTR_SET_ST
,
679 static inline int ufshcd_dme_get(struct ufs_hba
*hba
,
680 u32 attr_sel
, u32
*mib_val
)
682 return ufshcd_dme_get_attr(hba
, attr_sel
, mib_val
, DME_LOCAL
);
685 static inline int ufshcd_dme_peer_get(struct ufs_hba
*hba
,
686 u32 attr_sel
, u32
*mib_val
)
688 return ufshcd_dme_get_attr(hba
, attr_sel
, mib_val
, DME_PEER
);
691 int ufshcd_read_device_desc(struct ufs_hba
*hba
, u8
*buf
, u32 size
);
693 static inline bool ufshcd_is_hs_mode(struct ufs_pa_layer_attr
*pwr_info
)
695 return (pwr_info
->pwr_rx
== FAST_MODE
||
696 pwr_info
->pwr_rx
== FASTAUTO_MODE
) &&
697 (pwr_info
->pwr_tx
== FAST_MODE
||
698 pwr_info
->pwr_tx
== FASTAUTO_MODE
);
701 #define ASCII_STD true
703 int ufshcd_read_string_desc(struct ufs_hba
*hba
, int desc_index
, u8
*buf
,
704 u32 size
, bool ascii
);
706 /* Expose Query-Request API */
707 int ufshcd_query_flag(struct ufs_hba
*hba
, enum query_opcode opcode
,
708 enum flag_idn idn
, bool *flag_res
);
709 int ufshcd_hold(struct ufs_hba
*hba
, bool async
);
710 void ufshcd_release(struct ufs_hba
*hba
);
711 u32
ufshcd_get_local_unipro_ver(struct ufs_hba
*hba
);
713 /* Wrapper functions for safely calling variant operations */
714 static inline const char *ufshcd_get_var_name(struct ufs_hba
*hba
)
717 return hba
->vops
->name
;
721 static inline int ufshcd_vops_init(struct ufs_hba
*hba
)
723 if (hba
->vops
&& hba
->vops
->init
)
724 return hba
->vops
->init(hba
);
729 static inline void ufshcd_vops_exit(struct ufs_hba
*hba
)
731 if (hba
->vops
&& hba
->vops
->exit
)
732 return hba
->vops
->exit(hba
);
735 static inline u32
ufshcd_vops_get_ufs_hci_version(struct ufs_hba
*hba
)
737 if (hba
->vops
&& hba
->vops
->get_ufs_hci_version
)
738 return hba
->vops
->get_ufs_hci_version(hba
);
740 return ufshcd_readl(hba
, REG_UFS_VERSION
);
743 static inline int ufshcd_vops_clk_scale_notify(struct ufs_hba
*hba
,
744 bool up
, enum ufs_notify_change_status status
)
746 if (hba
->vops
&& hba
->vops
->clk_scale_notify
)
747 return hba
->vops
->clk_scale_notify(hba
, up
, status
);
751 static inline int ufshcd_vops_setup_clocks(struct ufs_hba
*hba
, bool on
)
753 if (hba
->vops
&& hba
->vops
->setup_clocks
)
754 return hba
->vops
->setup_clocks(hba
, on
);
758 static inline int ufshcd_vops_setup_regulators(struct ufs_hba
*hba
, bool status
)
760 if (hba
->vops
&& hba
->vops
->setup_regulators
)
761 return hba
->vops
->setup_regulators(hba
, status
);
766 static inline int ufshcd_vops_hce_enable_notify(struct ufs_hba
*hba
,
769 if (hba
->vops
&& hba
->vops
->hce_enable_notify
)
770 return hba
->vops
->hce_enable_notify(hba
, status
);
774 static inline int ufshcd_vops_link_startup_notify(struct ufs_hba
*hba
,
777 if (hba
->vops
&& hba
->vops
->link_startup_notify
)
778 return hba
->vops
->link_startup_notify(hba
, status
);
783 static inline int ufshcd_vops_pwr_change_notify(struct ufs_hba
*hba
,
785 struct ufs_pa_layer_attr
*dev_max_params
,
786 struct ufs_pa_layer_attr
*dev_req_params
)
788 if (hba
->vops
&& hba
->vops
->pwr_change_notify
)
789 return hba
->vops
->pwr_change_notify(hba
, status
,
790 dev_max_params
, dev_req_params
);
795 static inline int ufshcd_vops_suspend(struct ufs_hba
*hba
, enum ufs_pm_op op
)
797 if (hba
->vops
&& hba
->vops
->suspend
)
798 return hba
->vops
->suspend(hba
, op
);
803 static inline int ufshcd_vops_resume(struct ufs_hba
*hba
, enum ufs_pm_op op
)
805 if (hba
->vops
&& hba
->vops
->resume
)
806 return hba
->vops
->resume(hba
, op
);
811 static inline void ufshcd_vops_dbg_register_dump(struct ufs_hba
*hba
)
813 if (hba
->vops
&& hba
->vops
->dbg_register_dump
)
814 hba
->vops
->dbg_register_dump(hba
);
817 #endif /* End of Header */