• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Universal Flash Storage Host controller driver
3  *
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.
7  *
8  * Authors:
9  *	Santosh Yaraganavi <santosh.sy@samsung.com>
10  *	Vinayak Holikatti <h.vinayak@samsung.com>
11  *
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>
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
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
34  * this program.
35  */
36 
37 #ifndef _UFSHCD_H
38 #define _UFSHCD_H
39 
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/init.h>
43 #include <linux/interrupt.h>
44 #include <linux/io.h>
45 #include <linux/delay.h>
46 #include <linux/slab.h>
47 #include <linux/spinlock.h>
48 #include <linux/rwsem.h>
49 #include <linux/workqueue.h>
50 #include <linux/errno.h>
51 #include <linux/types.h>
52 #include <linux/wait.h>
53 #include <linux/bitops.h>
54 #include <linux/pm_runtime.h>
55 #include <linux/clk.h>
56 #include <linux/completion.h>
57 #include <linux/regulator/consumer.h>
58 #include "unipro.h"
59 
60 #include <asm/irq.h>
61 #include <asm/byteorder.h>
62 #include <scsi/scsi.h>
63 #include <scsi/scsi_cmnd.h>
64 #include <scsi/scsi_host.h>
65 #include <scsi/scsi_tcq.h>
66 #include <scsi/scsi_dbg.h>
67 #include <scsi/scsi_eh.h>
68 
69 #include "ufs.h"
70 #include "ufshci.h"
71 
72 #define UFSHCD "ufshcd"
73 #define UFSHCD_DRIVER_VERSION "0.2"
74 
75 struct ufs_hba;
76 
77 enum dev_cmd_type {
78 	DEV_CMD_TYPE_NOP		= 0x0,
79 	DEV_CMD_TYPE_QUERY		= 0x1,
80 };
81 
82 /**
83  * struct uic_command - UIC command structure
84  * @command: UIC command
85  * @argument1: UIC command argument 1
86  * @argument2: UIC command argument 2
87  * @argument3: UIC command argument 3
88  * @cmd_active: Indicate if UIC command is outstanding
89  * @result: UIC command result
90  * @done: UIC command completion
91  */
92 struct uic_command {
93 	u32 command;
94 	u32 argument1;
95 	u32 argument2;
96 	u32 argument3;
97 	int cmd_active;
98 	int result;
99 	struct completion done;
100 };
101 
102 /* Used to differentiate the power management options */
103 enum ufs_pm_op {
104 	UFS_RUNTIME_PM,
105 	UFS_SYSTEM_PM,
106 	UFS_SHUTDOWN_PM,
107 };
108 
109 #define ufshcd_is_runtime_pm(op) ((op) == UFS_RUNTIME_PM)
110 #define ufshcd_is_system_pm(op) ((op) == UFS_SYSTEM_PM)
111 #define ufshcd_is_shutdown_pm(op) ((op) == UFS_SHUTDOWN_PM)
112 
113 /* Host <-> Device UniPro Link state */
114 enum uic_link_state {
115 	UIC_LINK_OFF_STATE	= 0, /* Link powered down or disabled */
116 	UIC_LINK_ACTIVE_STATE	= 1, /* Link is in Fast/Slow/Sleep state */
117 	UIC_LINK_HIBERN8_STATE	= 2, /* Link is in Hibernate state */
118 };
119 
120 #define ufshcd_is_link_off(hba) ((hba)->uic_link_state == UIC_LINK_OFF_STATE)
121 #define ufshcd_is_link_active(hba) ((hba)->uic_link_state == \
122 				    UIC_LINK_ACTIVE_STATE)
123 #define ufshcd_is_link_hibern8(hba) ((hba)->uic_link_state == \
124 				    UIC_LINK_HIBERN8_STATE)
125 #define ufshcd_set_link_off(hba) ((hba)->uic_link_state = UIC_LINK_OFF_STATE)
126 #define ufshcd_set_link_active(hba) ((hba)->uic_link_state = \
127 				    UIC_LINK_ACTIVE_STATE)
128 #define ufshcd_set_link_hibern8(hba) ((hba)->uic_link_state = \
129 				    UIC_LINK_HIBERN8_STATE)
130 
131 /*
132  * UFS Power management levels.
133  * Each level is in increasing order of power savings.
134  */
135 enum ufs_pm_level {
136 	UFS_PM_LVL_0, /* UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE */
137 	UFS_PM_LVL_1, /* UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE */
138 	UFS_PM_LVL_2, /* UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE */
139 	UFS_PM_LVL_3, /* UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE */
140 	UFS_PM_LVL_4, /* UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE */
141 	UFS_PM_LVL_5, /* UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE */
142 	UFS_PM_LVL_MAX
143 };
144 
145 struct ufs_pm_lvl_states {
146 	enum ufs_dev_pwr_mode dev_state;
147 	enum uic_link_state link_state;
148 };
149 
150 /**
151  * struct ufshcd_lrb - local reference block
152  * @utr_descriptor_ptr: UTRD address of the command
153  * @ucd_req_ptr: UCD address of the command
154  * @ucd_rsp_ptr: Response UPIU address for this command
155  * @ucd_prdt_ptr: PRDT address of the command
156  * @utrd_dma_addr: UTRD dma address for debug
157  * @ucd_prdt_dma_addr: PRDT dma address for debug
158  * @ucd_rsp_dma_addr: UPIU response dma address for debug
159  * @ucd_req_dma_addr: UPIU request dma address for debug
160  * @cmd: pointer to SCSI command
161  * @sense_buffer: pointer to sense buffer address of the SCSI command
162  * @sense_bufflen: Length of the sense buffer
163  * @scsi_status: SCSI status of the command
164  * @command_type: SCSI, UFS, Query.
165  * @task_tag: Task tag of the command
166  * @lun: LUN of the command
167  * @intr_cmd: Interrupt command (doesn't participate in interrupt aggregation)
168  * @issue_time_stamp: time stamp for debug purposes
169  * @compl_time_stamp: time stamp for statistics
170  * @crypto_enable: whether or not the request needs inline crypto operations
171  * @crypto_key_slot: the key slot to use for inline crypto
172  * @data_unit_num: the data unit number for the first block for inline crypto
173  * @req_abort_skip: skip request abort task flag
174  */
175 struct ufshcd_lrb {
176 	struct utp_transfer_req_desc *utr_descriptor_ptr;
177 	struct utp_upiu_req *ucd_req_ptr;
178 	struct utp_upiu_rsp *ucd_rsp_ptr;
179 	struct ufshcd_sg_entry *ucd_prdt_ptr;
180 
181 	dma_addr_t utrd_dma_addr;
182 	dma_addr_t ucd_req_dma_addr;
183 	dma_addr_t ucd_rsp_dma_addr;
184 	dma_addr_t ucd_prdt_dma_addr;
185 
186 	struct scsi_cmnd *cmd;
187 	u8 *sense_buffer;
188 	unsigned int sense_bufflen;
189 	int scsi_status;
190 
191 	int command_type;
192 	int task_tag;
193 	u8 lun; /* UPIU LUN id field is only 8-bit wide */
194 	bool intr_cmd;
195 	ktime_t issue_time_stamp;
196 	ktime_t compl_time_stamp;
197 #if IS_ENABLED(CONFIG_SCSI_UFS_CRYPTO)
198 	bool crypto_enable;
199 	u8 crypto_key_slot;
200 	u64 data_unit_num;
201 #endif /* CONFIG_SCSI_UFS_CRYPTO */
202 
203 	bool req_abort_skip;
204 };
205 
206 /**
207  * struct ufs_query - holds relevant data structures for query request
208  * @request: request upiu and function
209  * @descriptor: buffer for sending/receiving descriptor
210  * @response: response upiu and response
211  */
212 struct ufs_query {
213 	struct ufs_query_req request;
214 	u8 *descriptor;
215 	struct ufs_query_res response;
216 };
217 
218 /**
219  * struct ufs_dev_cmd - all assosiated fields with device management commands
220  * @type: device management command type - Query, NOP OUT
221  * @lock: lock to allow one command at a time
222  * @complete: internal commands completion
223  * @tag_wq: wait queue until free command slot is available
224  */
225 struct ufs_dev_cmd {
226 	enum dev_cmd_type type;
227 	struct mutex lock;
228 	struct completion *complete;
229 	wait_queue_head_t tag_wq;
230 	struct ufs_query query;
231 };
232 
233 struct ufs_desc_size {
234 	int dev_desc;
235 	int pwr_desc;
236 	int geom_desc;
237 	int interc_desc;
238 	int unit_desc;
239 	int conf_desc;
240 	int hlth_desc;
241 };
242 
243 /**
244  * struct ufs_clk_info - UFS clock related info
245  * @list: list headed by hba->clk_list_head
246  * @clk: clock node
247  * @name: clock name
248  * @max_freq: maximum frequency supported by the clock
249  * @min_freq: min frequency that can be used for clock scaling
250  * @curr_freq: indicates the current frequency that it is set to
251  * @enabled: variable to check against multiple enable/disable
252  */
253 struct ufs_clk_info {
254 	struct list_head list;
255 	struct clk *clk;
256 	const char *name;
257 	u32 max_freq;
258 	u32 min_freq;
259 	u32 curr_freq;
260 	bool enabled;
261 };
262 
263 enum ufs_notify_change_status {
264 	PRE_CHANGE,
265 	POST_CHANGE,
266 };
267 
268 struct ufs_pa_layer_attr {
269 	u32 gear_rx;
270 	u32 gear_tx;
271 	u32 lane_rx;
272 	u32 lane_tx;
273 	u32 pwr_rx;
274 	u32 pwr_tx;
275 	u32 hs_rate;
276 };
277 
278 struct ufs_pwr_mode_info {
279 	bool is_valid;
280 	struct ufs_pa_layer_attr info;
281 };
282 
283 union ufs_crypto_cfg_entry;
284 
285 /**
286  * struct ufs_hba_variant_ops - variant specific callbacks
287  * @name: variant name
288  * @init: called when the driver is initialized
289  * @exit: called to cleanup everything done in init
290  * @get_ufs_hci_version: called to get UFS HCI version
291  * @clk_scale_notify: notifies that clks are scaled up/down
292  * @setup_clocks: called before touching any of the controller registers
293  * @setup_regulators: called before accessing the host controller
294  * @hce_enable_notify: called before and after HCE enable bit is set to allow
295  *                     variant specific Uni-Pro initialization.
296  * @link_startup_notify: called before and after Link startup is carried out
297  *                       to allow variant specific Uni-Pro initialization.
298  * @pwr_change_notify: called before and after a power mode change
299  *			is carried out to allow vendor spesific capabilities
300  *			to be set.
301  * @setup_xfer_req: called before any transfer request is issued
302  *                  to set some things
303  * @setup_task_mgmt: called before any task management request is issued
304  *                  to set some things
305  * @hibern8_notify: called around hibern8 enter/exit
306  * @apply_dev_quirks: called to apply device specific quirks
307  * @suspend: called during host controller PM callback
308  * @resume: called during host controller PM callback
309  * @dbg_register_dump: used to dump controller debug information
310  * @phy_initialization: used to initialize phys
311  * @device_reset: called to issue a reset pulse on the UFS device
312  * @program_key: program an inline encryption key into a keyslot
313  */
314 struct ufs_hba_variant_ops {
315 	const char *name;
316 	int	(*init)(struct ufs_hba *);
317 	void    (*exit)(struct ufs_hba *);
318 	u32	(*get_ufs_hci_version)(struct ufs_hba *);
319 	int	(*clk_scale_notify)(struct ufs_hba *, bool,
320 				    enum ufs_notify_change_status);
321 	int	(*setup_clocks)(struct ufs_hba *, bool,
322 				enum ufs_notify_change_status);
323 	int     (*setup_regulators)(struct ufs_hba *, bool);
324 	int	(*hce_enable_notify)(struct ufs_hba *,
325 				     enum ufs_notify_change_status);
326 	int	(*link_startup_notify)(struct ufs_hba *,
327 				       enum ufs_notify_change_status);
328 	int	(*pwr_change_notify)(struct ufs_hba *,
329 					enum ufs_notify_change_status status,
330 					struct ufs_pa_layer_attr *,
331 					struct ufs_pa_layer_attr *);
332 	void	(*setup_xfer_req)(struct ufs_hba *, int, bool);
333 	void	(*setup_task_mgmt)(struct ufs_hba *, int, u8);
334 	void    (*hibern8_notify)(struct ufs_hba *, enum uic_cmd_dme,
335 					enum ufs_notify_change_status);
336 	int	(*apply_dev_quirks)(struct ufs_hba *);
337 	int     (*suspend)(struct ufs_hba *, enum ufs_pm_op);
338 	int     (*resume)(struct ufs_hba *, enum ufs_pm_op);
339 	void	(*dbg_register_dump)(struct ufs_hba *hba);
340 	int	(*phy_initialization)(struct ufs_hba *);
341 	void	(*device_reset)(struct ufs_hba *hba);
342 	int	(*program_key)(struct ufs_hba *hba,
343 			       const union ufs_crypto_cfg_entry *cfg, int slot);
344 };
345 
346 struct keyslot_mgmt_ll_ops;
347 struct ufs_hba_crypto_variant_ops {
348 	void (*setup_rq_keyslot_manager)(struct ufs_hba *hba,
349 					 struct request_queue *q);
350 	void (*destroy_rq_keyslot_manager)(struct ufs_hba *hba,
351 					   struct request_queue *q);
352 	int (*hba_init_crypto)(struct ufs_hba *hba,
353 			       const struct keyslot_mgmt_ll_ops *ksm_ops);
354 	void (*enable)(struct ufs_hba *hba);
355 	void (*disable)(struct ufs_hba *hba);
356 	int (*suspend)(struct ufs_hba *hba, enum ufs_pm_op pm_op);
357 	int (*resume)(struct ufs_hba *hba, enum ufs_pm_op pm_op);
358 	int (*debug)(struct ufs_hba *hba);
359 	int (*prepare_lrbp_crypto)(struct ufs_hba *hba,
360 				   struct scsi_cmnd *cmd,
361 				   struct ufshcd_lrb *lrbp);
362 	int (*complete_lrbp_crypto)(struct ufs_hba *hba,
363 				    struct scsi_cmnd *cmd,
364 				    struct ufshcd_lrb *lrbp);
365 	void *priv;
366 };
367 
368 /* clock gating state  */
369 enum clk_gating_state {
370 	CLKS_OFF,
371 	CLKS_ON,
372 	REQ_CLKS_OFF,
373 	REQ_CLKS_ON,
374 };
375 
376 /**
377  * struct ufs_clk_gating - UFS clock gating related info
378  * @gate_work: worker to turn off clocks after some delay as specified in
379  * delay_ms
380  * @ungate_work: worker to turn on clocks that will be used in case of
381  * interrupt context
382  * @state: the current clocks state
383  * @delay_ms: gating delay in ms
384  * @is_suspended: clk gating is suspended when set to 1 which can be used
385  * during suspend/resume
386  * @delay_attr: sysfs attribute to control delay_attr
387  * @enable_attr: sysfs attribute to enable/disable clock gating
388  * @is_enabled: Indicates the current status of clock gating
389  * @active_reqs: number of requests that are pending and should be waited for
390  * completion before gating clocks.
391  */
392 struct ufs_clk_gating {
393 	struct delayed_work gate_work;
394 	struct work_struct ungate_work;
395 	enum clk_gating_state state;
396 	unsigned long delay_ms;
397 	bool is_suspended;
398 	struct device_attribute delay_attr;
399 	struct device_attribute enable_attr;
400 	bool is_enabled;
401 	int active_reqs;
402 	struct workqueue_struct *clk_gating_workq;
403 };
404 
405 struct ufs_saved_pwr_info {
406 	struct ufs_pa_layer_attr info;
407 	bool is_valid;
408 };
409 
410 /**
411  * struct ufs_clk_scaling - UFS clock scaling related data
412  * @active_reqs: number of requests that are pending. If this is zero when
413  * devfreq ->target() function is called then schedule "suspend_work" to
414  * suspend devfreq.
415  * @tot_busy_t: Total busy time in current polling window
416  * @window_start_t: Start time (in jiffies) of the current polling window
417  * @busy_start_t: Start time of current busy period
418  * @enable_attr: sysfs attribute to enable/disable clock scaling
419  * @saved_pwr_info: UFS power mode may also be changed during scaling and this
420  * one keeps track of previous power mode.
421  * @workq: workqueue to schedule devfreq suspend/resume work
422  * @suspend_work: worker to suspend devfreq
423  * @resume_work: worker to resume devfreq
424  * @is_allowed: tracks if scaling is currently allowed or not
425  * @is_busy_started: tracks if busy period has started or not
426  * @is_suspended: tracks if devfreq is suspended or not
427  */
428 struct ufs_clk_scaling {
429 	int active_reqs;
430 	unsigned long tot_busy_t;
431 	unsigned long window_start_t;
432 	ktime_t busy_start_t;
433 	struct device_attribute enable_attr;
434 	struct ufs_saved_pwr_info saved_pwr_info;
435 	struct workqueue_struct *workq;
436 	struct work_struct suspend_work;
437 	struct work_struct resume_work;
438 	bool is_allowed;
439 	bool is_busy_started;
440 	bool is_suspended;
441 };
442 
443 #define UFS_ERR_REG_HIST_LENGTH 8
444 /**
445  * struct ufs_err_reg_hist - keeps history of errors
446  * @pos: index to indicate cyclic buffer position
447  * @reg: cyclic buffer for registers value
448  * @tstamp: cyclic buffer for time stamp
449  */
450 struct ufs_err_reg_hist {
451 	int pos;
452 	u32 reg[UFS_ERR_REG_HIST_LENGTH];
453 	ktime_t tstamp[UFS_ERR_REG_HIST_LENGTH];
454 };
455 
456 /**
457  * struct ufs_stats - keeps usage/err statistics
458  * @hibern8_exit_cnt: Counter to keep track of number of exits,
459  *		reset this after link-startup.
460  * @last_hibern8_exit_tstamp: Set time after the hibern8 exit.
461  *		Clear after the first successful command completion.
462  * @pa_err: tracks pa-uic errors
463  * @dl_err: tracks dl-uic errors
464  * @nl_err: tracks nl-uic errors
465  * @tl_err: tracks tl-uic errors
466  * @dme_err: tracks dme errors
467  * @auto_hibern8_err: tracks auto-hibernate errors
468  * @fatal_err: tracks fatal errors
469  * @linkup_err: tracks link-startup errors
470  * @resume_err: tracks resume errors
471  * @suspend_err: tracks suspend errors
472  * @dev_reset: tracks device reset events
473  * @host_reset: tracks host reset events
474  * @tsk_abort: tracks task abort events
475  */
476 struct ufs_stats {
477 	u32 hibern8_exit_cnt;
478 	ktime_t last_hibern8_exit_tstamp;
479 
480 	/* uic specific errors */
481 	struct ufs_err_reg_hist pa_err;
482 	struct ufs_err_reg_hist dl_err;
483 	struct ufs_err_reg_hist nl_err;
484 	struct ufs_err_reg_hist tl_err;
485 	struct ufs_err_reg_hist dme_err;
486 
487 	/* fatal errors */
488 	struct ufs_err_reg_hist auto_hibern8_err;
489 	struct ufs_err_reg_hist fatal_err;
490 	struct ufs_err_reg_hist link_startup_err;
491 	struct ufs_err_reg_hist resume_err;
492 	struct ufs_err_reg_hist suspend_err;
493 
494 	/* abnormal events */
495 	struct ufs_err_reg_hist dev_reset;
496 	struct ufs_err_reg_hist host_reset;
497 	struct ufs_err_reg_hist task_abort;
498 };
499 
500 /**
501  * struct ufs_hba - per adapter private structure
502  * @mmio_base: UFSHCI base register address
503  * @ucdl_base_addr: UFS Command Descriptor base address
504  * @utrdl_base_addr: UTP Transfer Request Descriptor base address
505  * @utmrdl_base_addr: UTP Task Management Descriptor base address
506  * @ucdl_dma_addr: UFS Command Descriptor DMA address
507  * @utrdl_dma_addr: UTRDL DMA address
508  * @utmrdl_dma_addr: UTMRDL DMA address
509  * @host: Scsi_Host instance of the driver
510  * @dev: device handle
511  * @lrb: local reference block
512  * @lrb_in_use: lrb in use
513  * @outstanding_tasks: Bits representing outstanding task requests
514  * @outstanding_reqs: Bits representing outstanding transfer requests
515  * @capabilities: UFS Controller Capabilities
516  * @nutrs: Transfer Request Queue depth supported by controller
517  * @nutmrs: Task Management Queue depth supported by controller
518  * @ufs_version: UFS Version to which controller complies
519  * @vops: pointer to variant specific operations
520  * @priv: pointer to variant specific private data
521  * @irq: Irq number of the controller
522  * @active_uic_cmd: handle of active UIC command
523  * @uic_cmd_mutex: mutex for uic command
524  * @tm_wq: wait queue for task management
525  * @tm_tag_wq: wait queue for free task management slots
526  * @tm_slots_in_use: bit map of task management request slots in use
527  * @pwr_done: completion for power mode change
528  * @tm_condition: condition variable for task management
529  * @ufshcd_state: UFSHCD states
530  * @eh_flags: Error handling flags
531  * @intr_mask: Interrupt Mask Bits
532  * @ee_ctrl_mask: Exception event control mask
533  * @is_powered: flag to check if HBA is powered
534  * @eh_work: Worker to handle UFS errors that require s/w attention
535  * @eeh_work: Worker to handle exception events
536  * @errors: HBA errors
537  * @uic_error: UFS interconnect layer error status
538  * @saved_err: sticky error mask
539  * @saved_uic_err: sticky UIC error mask
540  * @silence_err_logs: flag to silence error logs
541  * @dev_cmd: ufs device management command information
542  * @last_dme_cmd_tstamp: time stamp of the last completed DME command
543  * @auto_bkops_enabled: to track whether bkops is enabled in device
544  * @vreg_info: UFS device voltage regulator information
545  * @clk_list_head: UFS host controller clocks list node head
546  * @pwr_info: holds current power mode
547  * @max_pwr_info: keeps the device max valid pwm
548  * @desc_size: descriptor sizes reported by device
549  * @urgent_bkops_lvl: keeps track of urgent bkops level for device
550  * @is_urgent_bkops_lvl_checked: keeps track if the urgent bkops level for
551  *  device is known or not.
552  * @scsi_block_reqs_cnt: reference counting for scsi block requests
553  * @crypto_capabilities: Content of crypto capabilities register (0x100)
554  * @crypto_cap_array: Array of crypto capabilities
555  * @crypto_cfg_register: Start of the crypto cfg array
556  * @ksm: the keyslot manager tied to this hba
557  */
558 struct ufs_hba {
559 	void __iomem *mmio_base;
560 
561 	/* Virtual memory reference */
562 	struct utp_transfer_cmd_desc *ucdl_base_addr;
563 	struct utp_transfer_req_desc *utrdl_base_addr;
564 	struct utp_task_req_desc *utmrdl_base_addr;
565 
566 	/* DMA memory reference */
567 	dma_addr_t ucdl_dma_addr;
568 	dma_addr_t utrdl_dma_addr;
569 	dma_addr_t utmrdl_dma_addr;
570 
571 	struct Scsi_Host *host;
572 	struct device *dev;
573 	/*
574 	 * This field is to keep a reference to "scsi_device" corresponding to
575 	 * "UFS device" W-LU.
576 	 */
577 	struct scsi_device *sdev_ufs_device;
578 
579 	enum ufs_dev_pwr_mode curr_dev_pwr_mode;
580 	enum uic_link_state uic_link_state;
581 	/* Desired UFS power management level during runtime PM */
582 	enum ufs_pm_level rpm_lvl;
583 	/* Desired UFS power management level during system PM */
584 	enum ufs_pm_level spm_lvl;
585 	struct device_attribute rpm_lvl_attr;
586 	struct device_attribute spm_lvl_attr;
587 	int pm_op_in_progress;
588 
589 	/* Auto-Hibernate Idle Timer register value */
590 	u32 ahit;
591 
592 	struct ufshcd_lrb *lrb;
593 	unsigned long lrb_in_use;
594 
595 	unsigned long outstanding_tasks;
596 	unsigned long outstanding_reqs;
597 
598 	u32 capabilities;
599 	int nutrs;
600 	int nutmrs;
601 	u32 ufs_version;
602 	const struct ufs_hba_variant_ops *vops;
603 	void *priv;
604 	const struct ufs_hba_crypto_variant_ops *crypto_vops;
605 	unsigned int irq;
606 	bool is_irq_enabled;
607 	enum ufs_ref_clk_freq dev_ref_clk_freq;
608 
609 	/* Interrupt aggregation support is broken */
610 	#define UFSHCD_QUIRK_BROKEN_INTR_AGGR			0x1
611 
612 	/*
613 	 * delay before each dme command is required as the unipro
614 	 * layer has shown instabilities
615 	 */
616 	#define UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS		0x2
617 
618 	/*
619 	 * If UFS host controller is having issue in processing LCC (Line
620 	 * Control Command) coming from device then enable this quirk.
621 	 * When this quirk is enabled, host controller driver should disable
622 	 * the LCC transmission on UFS device (by clearing TX_LCC_ENABLE
623 	 * attribute of device to 0).
624 	 */
625 	#define UFSHCD_QUIRK_BROKEN_LCC				0x4
626 
627 	/*
628 	 * The attribute PA_RXHSUNTERMCAP specifies whether or not the
629 	 * inbound Link supports unterminated line in HS mode. Setting this
630 	 * attribute to 1 fixes moving to HS gear.
631 	 */
632 	#define UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP		0x8
633 
634 	/*
635 	 * This quirk needs to be enabled if the host contoller only allows
636 	 * accessing the peer dme attributes in AUTO mode (FAST AUTO or
637 	 * SLOW AUTO).
638 	 */
639 	#define UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE		0x10
640 
641 	/*
642 	 * This quirk needs to be enabled if the host contoller doesn't
643 	 * advertise the correct version in UFS_VER register. If this quirk
644 	 * is enabled, standard UFS host driver will call the vendor specific
645 	 * ops (get_ufs_hci_version) to get the correct version.
646 	 */
647 	#define UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION		0x20
648 
649 	/*
650 	 * This quirk needs to be enabled if the host contoller regards
651 	 * resolution of the values of PRDTO and PRDTL in UTRD as byte.
652 	 */
653 	#define UFSHCD_QUIRK_PRDT_BYTE_GRAN			0x80
654 
655 	/*
656 	 * Clear handling for transfer/task request list is just opposite.
657 	 */
658 	#define UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR		0x100
659 
660 	/*
661 	 * This quirk needs to be enabled if host controller doesn't allow
662 	 * that the interrupt aggregation timer and counter are reset by s/w.
663 	 */
664 	#define UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR		0x200
665 
666 	/*
667 	 * This quirks needs to be enabled if host controller cannot be
668 	 * enabled via HCE register.
669 	 */
670 	#define UFSHCI_QUIRK_BROKEN_HCE				0x400
671 
672 	/*
673 	 * This quirk needs to be enabled if the host controller advertises
674 	 * inline encryption support but it doesn't work correctly.
675 	 */
676 	#define UFSHCD_QUIRK_BROKEN_CRYPTO			0x800
677 
678 	unsigned int quirks;	/* Deviations from standard UFSHCI spec. */
679 
680 	/* Device deviations from standard UFS device spec. */
681 	unsigned int dev_quirks;
682 
683 	wait_queue_head_t tm_wq;
684 	wait_queue_head_t tm_tag_wq;
685 	unsigned long tm_condition;
686 	unsigned long tm_slots_in_use;
687 
688 	struct uic_command *active_uic_cmd;
689 	struct mutex uic_cmd_mutex;
690 	struct completion *uic_async_done;
691 
692 	u32 ufshcd_state;
693 	u32 eh_flags;
694 	u32 intr_mask;
695 	u16 ee_ctrl_mask;
696 	bool is_powered;
697 
698 	/* Work Queues */
699 	struct work_struct eh_work;
700 	struct work_struct eeh_work;
701 
702 	/* HBA Errors */
703 	u32 errors;
704 	u32 uic_error;
705 	u32 saved_err;
706 	u32 saved_uic_err;
707 	struct ufs_stats ufs_stats;
708 	bool silence_err_logs;
709 
710 	/* Device management request data */
711 	struct ufs_dev_cmd dev_cmd;
712 	ktime_t last_dme_cmd_tstamp;
713 
714 	/* Keeps information of the UFS device connected to this host */
715 	struct ufs_dev_info dev_info;
716 	bool auto_bkops_enabled;
717 	struct ufs_vreg_info vreg_info;
718 	struct list_head clk_list_head;
719 
720 	bool wlun_dev_clr_ua;
721 
722 	/* Number of requests aborts */
723 	int req_abort_count;
724 
725 	/* Number of lanes available (1 or 2) for Rx/Tx */
726 	u32 lanes_per_direction;
727 	struct ufs_pa_layer_attr pwr_info;
728 	struct ufs_pwr_mode_info max_pwr_info;
729 
730 	struct ufs_clk_gating clk_gating;
731 	/* Control to enable/disable host capabilities */
732 	u32 caps;
733 	/* Allow dynamic clk gating */
734 #define UFSHCD_CAP_CLK_GATING	(1 << 0)
735 	/* Allow hiberb8 with clk gating */
736 #define UFSHCD_CAP_HIBERN8_WITH_CLK_GATING (1 << 1)
737 	/* Allow dynamic clk scaling */
738 #define UFSHCD_CAP_CLK_SCALING	(1 << 2)
739 	/* Allow auto bkops to enabled during runtime suspend */
740 #define UFSHCD_CAP_AUTO_BKOPS_SUSPEND (1 << 3)
741 	/*
742 	 * This capability allows host controller driver to use the UFS HCI's
743 	 * interrupt aggregation capability.
744 	 * CAUTION: Enabling this might reduce overall UFS throughput.
745 	 */
746 #define UFSHCD_CAP_INTR_AGGR (1 << 4)
747 	/*
748 	 * This capability allows the device auto-bkops to be always enabled
749 	 * except during suspend (both runtime and suspend).
750 	 * Enabling this capability means that device will always be allowed
751 	 * to do background operation when it's active but it might degrade
752 	 * the performance of ongoing read/write operations.
753 	 */
754 #define UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND (1 << 5)
755 	/*
756 	 * This capability allows host controller driver to automatically
757 	 * enable runtime power management by itself instead of waiting
758 	 * for userspace to control the power management.
759 	 */
760 #define UFSHCD_CAP_RPM_AUTOSUSPEND (1 << 6)
761 	/*
762 	 * This capability allows the host controller driver to use the
763 	 * inline crypto engine, if it is present
764 	 */
765 #define UFSHCD_CAP_CRYPTO (1 << 7)
766 
767 	struct devfreq *devfreq;
768 	struct ufs_clk_scaling clk_scaling;
769 	bool is_sys_suspended;
770 
771 	enum bkops_status urgent_bkops_lvl;
772 	bool is_urgent_bkops_lvl_checked;
773 
774 	struct rw_semaphore clk_scaling_lock;
775 	struct ufs_desc_size desc_size;
776 	atomic_t scsi_block_reqs_cnt;
777 
778 	struct device		bsg_dev;
779 	struct request_queue	*bsg_queue;
780 
781 #ifdef CONFIG_SCSI_UFS_CRYPTO
782 	/* crypto */
783 	union ufs_crypto_capabilities crypto_capabilities;
784 	union ufs_crypto_cap_entry *crypto_cap_array;
785 	u32 crypto_cfg_register;
786 	struct keyslot_manager *ksm;
787 #endif /* CONFIG_SCSI_UFS_CRYPTO */
788 };
789 
790 /* Returns true if clocks can be gated. Otherwise false */
ufshcd_is_clkgating_allowed(struct ufs_hba * hba)791 static inline bool ufshcd_is_clkgating_allowed(struct ufs_hba *hba)
792 {
793 	return hba->caps & UFSHCD_CAP_CLK_GATING;
794 }
ufshcd_can_hibern8_during_gating(struct ufs_hba * hba)795 static inline bool ufshcd_can_hibern8_during_gating(struct ufs_hba *hba)
796 {
797 	return hba->caps & UFSHCD_CAP_HIBERN8_WITH_CLK_GATING;
798 }
ufshcd_is_clkscaling_supported(struct ufs_hba * hba)799 static inline int ufshcd_is_clkscaling_supported(struct ufs_hba *hba)
800 {
801 	return hba->caps & UFSHCD_CAP_CLK_SCALING;
802 }
ufshcd_can_autobkops_during_suspend(struct ufs_hba * hba)803 static inline bool ufshcd_can_autobkops_during_suspend(struct ufs_hba *hba)
804 {
805 	return hba->caps & UFSHCD_CAP_AUTO_BKOPS_SUSPEND;
806 }
ufshcd_is_rpm_autosuspend_allowed(struct ufs_hba * hba)807 static inline bool ufshcd_is_rpm_autosuspend_allowed(struct ufs_hba *hba)
808 {
809 	return hba->caps & UFSHCD_CAP_RPM_AUTOSUSPEND;
810 }
811 
ufshcd_is_intr_aggr_allowed(struct ufs_hba * hba)812 static inline bool ufshcd_is_intr_aggr_allowed(struct ufs_hba *hba)
813 {
814 /* DWC UFS Core has the Interrupt aggregation feature but is not detectable*/
815 #ifndef CONFIG_SCSI_UFS_DWC
816 	if ((hba->caps & UFSHCD_CAP_INTR_AGGR) &&
817 	    !(hba->quirks & UFSHCD_QUIRK_BROKEN_INTR_AGGR))
818 		return true;
819 	else
820 		return false;
821 #else
822 return true;
823 #endif
824 }
825 
ufshcd_is_auto_hibern8_supported(struct ufs_hba * hba)826 static inline bool ufshcd_is_auto_hibern8_supported(struct ufs_hba *hba)
827 {
828 	return (hba->capabilities & MASK_AUTO_HIBERN8_SUPPORT);
829 }
830 
831 #define ufshcd_writel(hba, val, reg)	\
832 	writel((val), (hba)->mmio_base + (reg))
833 #define ufshcd_readl(hba, reg)	\
834 	readl((hba)->mmio_base + (reg))
835 
836 /**
837  * ufshcd_rmwl - read modify write into a register
838  * @hba - per adapter instance
839  * @mask - mask to apply on read value
840  * @val - actual value to write
841  * @reg - register address
842  */
ufshcd_rmwl(struct ufs_hba * hba,u32 mask,u32 val,u32 reg)843 static inline void ufshcd_rmwl(struct ufs_hba *hba, u32 mask, u32 val, u32 reg)
844 {
845 	u32 tmp;
846 
847 	tmp = ufshcd_readl(hba, reg);
848 	tmp &= ~mask;
849 	tmp |= (val & mask);
850 	ufshcd_writel(hba, tmp, reg);
851 }
852 
853 int ufshcd_alloc_host(struct device *, struct ufs_hba **);
854 void ufshcd_dealloc_host(struct ufs_hba *);
855 int ufshcd_init(struct ufs_hba * , void __iomem * , unsigned int);
856 void ufshcd_remove(struct ufs_hba *);
857 int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
858 				u32 val, unsigned long interval_us,
859 				unsigned long timeout_ms, bool can_sleep);
860 void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk);
861 
check_upiu_size(void)862 static inline void check_upiu_size(void)
863 {
864 	BUILD_BUG_ON(ALIGNED_UPIU_SIZE <
865 		GENERAL_UPIU_REQUEST_SIZE + QUERY_DESC_MAX_SIZE);
866 }
867 
868 /**
869  * ufshcd_set_variant - set variant specific data to the hba
870  * @hba - per adapter instance
871  * @variant - pointer to variant specific data
872  */
ufshcd_set_variant(struct ufs_hba * hba,void * variant)873 static inline void ufshcd_set_variant(struct ufs_hba *hba, void *variant)
874 {
875 	BUG_ON(!hba);
876 	hba->priv = variant;
877 }
878 
879 /**
880  * ufshcd_get_variant - get variant specific data from the hba
881  * @hba - per adapter instance
882  */
ufshcd_get_variant(struct ufs_hba * hba)883 static inline void *ufshcd_get_variant(struct ufs_hba *hba)
884 {
885 	BUG_ON(!hba);
886 	return hba->priv;
887 }
ufshcd_keep_autobkops_enabled_except_suspend(struct ufs_hba * hba)888 static inline bool ufshcd_keep_autobkops_enabled_except_suspend(
889 							struct ufs_hba *hba)
890 {
891 	return hba->caps & UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND;
892 }
893 
894 extern int ufshcd_runtime_suspend(struct ufs_hba *hba);
895 extern int ufshcd_runtime_resume(struct ufs_hba *hba);
896 extern int ufshcd_runtime_idle(struct ufs_hba *hba);
897 extern int ufshcd_system_suspend(struct ufs_hba *hba);
898 extern int ufshcd_system_resume(struct ufs_hba *hba);
899 extern int ufshcd_shutdown(struct ufs_hba *hba);
900 extern int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
901 			       u8 attr_set, u32 mib_val, u8 peer);
902 extern int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
903 			       u32 *mib_val, u8 peer);
904 extern int ufshcd_config_pwr_mode(struct ufs_hba *hba,
905 			struct ufs_pa_layer_attr *desired_pwr_mode);
906 
907 /* UIC command interfaces for DME primitives */
908 #define DME_LOCAL	0
909 #define DME_PEER	1
910 #define ATTR_SET_NOR	0	/* NORMAL */
911 #define ATTR_SET_ST	1	/* STATIC */
912 
ufshcd_dme_set(struct ufs_hba * hba,u32 attr_sel,u32 mib_val)913 static inline int ufshcd_dme_set(struct ufs_hba *hba, u32 attr_sel,
914 				 u32 mib_val)
915 {
916 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
917 				   mib_val, DME_LOCAL);
918 }
919 
ufshcd_dme_st_set(struct ufs_hba * hba,u32 attr_sel,u32 mib_val)920 static inline int ufshcd_dme_st_set(struct ufs_hba *hba, u32 attr_sel,
921 				    u32 mib_val)
922 {
923 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
924 				   mib_val, DME_LOCAL);
925 }
926 
ufshcd_dme_peer_set(struct ufs_hba * hba,u32 attr_sel,u32 mib_val)927 static inline int ufshcd_dme_peer_set(struct ufs_hba *hba, u32 attr_sel,
928 				      u32 mib_val)
929 {
930 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
931 				   mib_val, DME_PEER);
932 }
933 
ufshcd_dme_peer_st_set(struct ufs_hba * hba,u32 attr_sel,u32 mib_val)934 static inline int ufshcd_dme_peer_st_set(struct ufs_hba *hba, u32 attr_sel,
935 					 u32 mib_val)
936 {
937 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
938 				   mib_val, DME_PEER);
939 }
940 
ufshcd_dme_get(struct ufs_hba * hba,u32 attr_sel,u32 * mib_val)941 static inline int ufshcd_dme_get(struct ufs_hba *hba,
942 				 u32 attr_sel, u32 *mib_val)
943 {
944 	return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_LOCAL);
945 }
946 
ufshcd_dme_peer_get(struct ufs_hba * hba,u32 attr_sel,u32 * mib_val)947 static inline int ufshcd_dme_peer_get(struct ufs_hba *hba,
948 				      u32 attr_sel, u32 *mib_val)
949 {
950 	return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_PEER);
951 }
952 
ufshcd_is_hs_mode(struct ufs_pa_layer_attr * pwr_info)953 static inline bool ufshcd_is_hs_mode(struct ufs_pa_layer_attr *pwr_info)
954 {
955 	return (pwr_info->pwr_rx == FAST_MODE ||
956 		pwr_info->pwr_rx == FASTAUTO_MODE) &&
957 		(pwr_info->pwr_tx == FAST_MODE ||
958 		pwr_info->pwr_tx == FASTAUTO_MODE);
959 }
960 
961 /* Expose Query-Request API */
962 int ufshcd_query_descriptor_retry(struct ufs_hba *hba,
963 				  enum query_opcode opcode,
964 				  enum desc_idn idn, u8 index,
965 				  u8 selector,
966 				  u8 *desc_buf, int *buf_len);
967 int ufshcd_read_desc_param(struct ufs_hba *hba,
968 			   enum desc_idn desc_id,
969 			   int desc_index,
970 			   u8 param_offset,
971 			   u8 *param_read_buf,
972 			   u8 param_size);
973 int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
974 		      enum attr_idn idn, u8 index, u8 selector, u32 *attr_val);
975 int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
976 	enum flag_idn idn, bool *flag_res);
977 
978 void ufshcd_auto_hibern8_enable(struct ufs_hba *hba);
979 
980 #define SD_ASCII_STD true
981 #define SD_RAW false
982 int ufshcd_read_string_desc(struct ufs_hba *hba, u8 desc_index,
983 			    u8 **buf, bool ascii);
984 
985 int ufshcd_hold(struct ufs_hba *hba, bool async);
986 void ufshcd_release(struct ufs_hba *hba);
987 
988 int ufshcd_map_desc_id_to_length(struct ufs_hba *hba, enum desc_idn desc_id,
989 	int *desc_length);
990 
991 u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba);
992 
993 int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd);
994 
995 int ufshcd_exec_raw_upiu_cmd(struct ufs_hba *hba,
996 			     struct utp_upiu_req *req_upiu,
997 			     struct utp_upiu_req *rsp_upiu,
998 			     int msgcode,
999 			     u8 *desc_buff, int *buff_len,
1000 			     enum query_opcode desc_op);
1001 
1002 /* Wrapper functions for safely calling variant operations */
ufshcd_get_var_name(struct ufs_hba * hba)1003 static inline const char *ufshcd_get_var_name(struct ufs_hba *hba)
1004 {
1005 	if (hba->vops)
1006 		return hba->vops->name;
1007 	return "";
1008 }
1009 
ufshcd_vops_init(struct ufs_hba * hba)1010 static inline int ufshcd_vops_init(struct ufs_hba *hba)
1011 {
1012 	if (hba->vops && hba->vops->init)
1013 		return hba->vops->init(hba);
1014 
1015 	return 0;
1016 }
1017 
ufshcd_vops_exit(struct ufs_hba * hba)1018 static inline void ufshcd_vops_exit(struct ufs_hba *hba)
1019 {
1020 	if (hba->vops && hba->vops->exit)
1021 		return hba->vops->exit(hba);
1022 }
1023 
ufshcd_vops_get_ufs_hci_version(struct ufs_hba * hba)1024 static inline u32 ufshcd_vops_get_ufs_hci_version(struct ufs_hba *hba)
1025 {
1026 	if (hba->vops && hba->vops->get_ufs_hci_version)
1027 		return hba->vops->get_ufs_hci_version(hba);
1028 
1029 	return ufshcd_readl(hba, REG_UFS_VERSION);
1030 }
1031 
ufshcd_vops_clk_scale_notify(struct ufs_hba * hba,bool up,enum ufs_notify_change_status status)1032 static inline int ufshcd_vops_clk_scale_notify(struct ufs_hba *hba,
1033 			bool up, enum ufs_notify_change_status status)
1034 {
1035 	if (hba->vops && hba->vops->clk_scale_notify)
1036 		return hba->vops->clk_scale_notify(hba, up, status);
1037 	return 0;
1038 }
1039 
ufshcd_vops_setup_clocks(struct ufs_hba * hba,bool on,enum ufs_notify_change_status status)1040 static inline int ufshcd_vops_setup_clocks(struct ufs_hba *hba, bool on,
1041 					enum ufs_notify_change_status status)
1042 {
1043 	if (hba->vops && hba->vops->setup_clocks)
1044 		return hba->vops->setup_clocks(hba, on, status);
1045 	return 0;
1046 }
1047 
ufshcd_vops_setup_regulators(struct ufs_hba * hba,bool status)1048 static inline int ufshcd_vops_setup_regulators(struct ufs_hba *hba, bool status)
1049 {
1050 	if (hba->vops && hba->vops->setup_regulators)
1051 		return hba->vops->setup_regulators(hba, status);
1052 
1053 	return 0;
1054 }
1055 
ufshcd_vops_hce_enable_notify(struct ufs_hba * hba,bool status)1056 static inline int ufshcd_vops_hce_enable_notify(struct ufs_hba *hba,
1057 						bool status)
1058 {
1059 	if (hba->vops && hba->vops->hce_enable_notify)
1060 		return hba->vops->hce_enable_notify(hba, status);
1061 
1062 	return 0;
1063 }
ufshcd_vops_link_startup_notify(struct ufs_hba * hba,bool status)1064 static inline int ufshcd_vops_link_startup_notify(struct ufs_hba *hba,
1065 						bool status)
1066 {
1067 	if (hba->vops && hba->vops->link_startup_notify)
1068 		return hba->vops->link_startup_notify(hba, status);
1069 
1070 	return 0;
1071 }
1072 
ufshcd_vops_pwr_change_notify(struct ufs_hba * hba,bool status,struct ufs_pa_layer_attr * dev_max_params,struct ufs_pa_layer_attr * dev_req_params)1073 static inline int ufshcd_vops_pwr_change_notify(struct ufs_hba *hba,
1074 				  bool status,
1075 				  struct ufs_pa_layer_attr *dev_max_params,
1076 				  struct ufs_pa_layer_attr *dev_req_params)
1077 {
1078 	if (hba->vops && hba->vops->pwr_change_notify)
1079 		return hba->vops->pwr_change_notify(hba, status,
1080 					dev_max_params, dev_req_params);
1081 
1082 	return -ENOTSUPP;
1083 }
1084 
ufshcd_vops_setup_xfer_req(struct ufs_hba * hba,int tag,bool is_scsi_cmd)1085 static inline void ufshcd_vops_setup_xfer_req(struct ufs_hba *hba, int tag,
1086 					bool is_scsi_cmd)
1087 {
1088 	if (hba->vops && hba->vops->setup_xfer_req)
1089 		return hba->vops->setup_xfer_req(hba, tag, is_scsi_cmd);
1090 }
1091 
ufshcd_vops_setup_task_mgmt(struct ufs_hba * hba,int tag,u8 tm_function)1092 static inline void ufshcd_vops_setup_task_mgmt(struct ufs_hba *hba,
1093 					int tag, u8 tm_function)
1094 {
1095 	if (hba->vops && hba->vops->setup_task_mgmt)
1096 		return hba->vops->setup_task_mgmt(hba, tag, tm_function);
1097 }
1098 
ufshcd_vops_hibern8_notify(struct ufs_hba * hba,enum uic_cmd_dme cmd,enum ufs_notify_change_status status)1099 static inline void ufshcd_vops_hibern8_notify(struct ufs_hba *hba,
1100 					enum uic_cmd_dme cmd,
1101 					enum ufs_notify_change_status status)
1102 {
1103 	if (hba->vops && hba->vops->hibern8_notify)
1104 		return hba->vops->hibern8_notify(hba, cmd, status);
1105 }
1106 
ufshcd_vops_apply_dev_quirks(struct ufs_hba * hba)1107 static inline int ufshcd_vops_apply_dev_quirks(struct ufs_hba *hba)
1108 {
1109 	if (hba->vops && hba->vops->apply_dev_quirks)
1110 		return hba->vops->apply_dev_quirks(hba);
1111 	return 0;
1112 }
1113 
ufshcd_vops_suspend(struct ufs_hba * hba,enum ufs_pm_op op)1114 static inline int ufshcd_vops_suspend(struct ufs_hba *hba, enum ufs_pm_op op)
1115 {
1116 	if (hba->vops && hba->vops->suspend)
1117 		return hba->vops->suspend(hba, op);
1118 
1119 	return 0;
1120 }
1121 
ufshcd_vops_resume(struct ufs_hba * hba,enum ufs_pm_op op)1122 static inline int ufshcd_vops_resume(struct ufs_hba *hba, enum ufs_pm_op op)
1123 {
1124 	if (hba->vops && hba->vops->resume)
1125 		return hba->vops->resume(hba, op);
1126 
1127 	return 0;
1128 }
1129 
ufshcd_vops_dbg_register_dump(struct ufs_hba * hba)1130 static inline void ufshcd_vops_dbg_register_dump(struct ufs_hba *hba)
1131 {
1132 	if (hba->vops && hba->vops->dbg_register_dump)
1133 		hba->vops->dbg_register_dump(hba);
1134 }
1135 
ufshcd_vops_device_reset(struct ufs_hba * hba)1136 static inline void ufshcd_vops_device_reset(struct ufs_hba *hba)
1137 {
1138 	if (hba->vops && hba->vops->device_reset)
1139 		hba->vops->device_reset(hba);
1140 }
1141 
1142 extern struct ufs_pm_lvl_states ufs_pm_lvl_states[];
1143 
1144 /*
1145  * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
1146  * @scsi_lun: scsi LUN id
1147  *
1148  * Returns UPIU LUN id
1149  */
ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun)1150 static inline u8 ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun)
1151 {
1152 	if (scsi_is_wlun(scsi_lun))
1153 		return (scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID)
1154 			| UFS_UPIU_WLUN_ID;
1155 	else
1156 		return scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID;
1157 }
1158 
1159 int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
1160 		     const char *prefix);
1161 int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
1162 int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
1163 #endif /* End of Header */
1164