xref: /linux/include/ufs/ufshcd.h (revision bba2c3615bd6cfee7456d1130f2e6b01b3f4e9ba)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Universal Flash Storage Host controller driver
4  * Copyright (C) 2011-2013 Samsung India Software Operations
5  * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
6  *
7  * Authors:
8  *	Santosh Yaraganavi <santosh.sy@samsung.com>
9  *	Vinayak Holikatti <h.vinayak@samsung.com>
10  */
11 
12 #ifndef _UFSHCD_H
13 #define _UFSHCD_H
14 
15 #include <linux/bitfield.h>
16 #include <linux/blk-crypto-profile.h>
17 #include <linux/blk-mq.h>
18 #include <linux/devfreq.h>
19 #include <linux/fault-inject.h>
20 #include <linux/debugfs.h>
21 #include <linux/msi.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/dma-direction.h>
24 #include <scsi/scsi_device.h>
25 #include <scsi/scsi_host.h>
26 #include <ufs/unipro.h>
27 #include <ufs/ufs.h>
28 #include <ufs/ufs_quirks.h>
29 #include <ufs/ufshci.h>
30 
31 #define UFSHCD "ufshcd"
32 
33 struct scsi_device;
34 struct ufs_hba;
35 
36 enum dev_cmd_type {
37 	DEV_CMD_TYPE_NOP		= 0x0,
38 	DEV_CMD_TYPE_QUERY		= 0x1,
39 	DEV_CMD_TYPE_RPMB		= 0x2,
40 };
41 
42 enum ufs_event_type {
43 	/* uic specific errors */
44 	UFS_EVT_PA_ERR = 0,
45 	UFS_EVT_DL_ERR,
46 	UFS_EVT_NL_ERR,
47 	UFS_EVT_TL_ERR,
48 	UFS_EVT_DME_ERR,
49 
50 	/* fatal errors */
51 	UFS_EVT_AUTO_HIBERN8_ERR,
52 	UFS_EVT_FATAL_ERR,
53 	UFS_EVT_LINK_STARTUP_FAIL,
54 	UFS_EVT_RESUME_ERR,
55 	UFS_EVT_SUSPEND_ERR,
56 	UFS_EVT_WL_SUSP_ERR,
57 	UFS_EVT_WL_RES_ERR,
58 
59 	/* abnormal events */
60 	UFS_EVT_DEV_RESET,
61 	UFS_EVT_HOST_RESET,
62 	UFS_EVT_ABORT,
63 
64 	UFS_EVT_CNT,
65 };
66 
67 /**
68  * struct uic_command - UIC command structure
69  * @command: UIC command
70  * @argument1: UIC command argument 1
71  * @argument2: UIC command argument 2
72  * @argument3: UIC command argument 3
73  * @cmd_active: Indicate if UIC command is outstanding
74  * @done: UIC command completion
75  */
76 struct uic_command {
77 	const u32 command;
78 	const u32 argument1;
79 	u32 argument2;
80 	u32 argument3;
81 	bool cmd_active;
82 	struct completion done;
83 };
84 
85 /* Used to differentiate the power management options */
86 enum ufs_pm_op {
87 	UFS_RUNTIME_PM,
88 	UFS_SYSTEM_PM,
89 	UFS_SHUTDOWN_PM,
90 };
91 
92 /* Host <-> Device UniPro Link state */
93 enum uic_link_state {
94 	UIC_LINK_OFF_STATE	= 0, /* Link powered down or disabled */
95 	UIC_LINK_ACTIVE_STATE	= 1, /* Link is in Fast/Slow/Sleep state */
96 	UIC_LINK_HIBERN8_STATE	= 2, /* Link is in Hibernate state */
97 	UIC_LINK_BROKEN_STATE	= 3, /* Link is in broken state */
98 };
99 
100 #define ufshcd_is_link_off(hba) ((hba)->uic_link_state == UIC_LINK_OFF_STATE)
101 #define ufshcd_is_link_active(hba) ((hba)->uic_link_state == \
102 				    UIC_LINK_ACTIVE_STATE)
103 #define ufshcd_is_link_hibern8(hba) ((hba)->uic_link_state == \
104 				    UIC_LINK_HIBERN8_STATE)
105 #define ufshcd_is_link_broken(hba) ((hba)->uic_link_state == \
106 				   UIC_LINK_BROKEN_STATE)
107 #define ufshcd_set_link_off(hba) ((hba)->uic_link_state = UIC_LINK_OFF_STATE)
108 #define ufshcd_set_link_active(hba) ((hba)->uic_link_state = \
109 				    UIC_LINK_ACTIVE_STATE)
110 #define ufshcd_set_link_hibern8(hba) ((hba)->uic_link_state = \
111 				    UIC_LINK_HIBERN8_STATE)
112 #define ufshcd_set_link_broken(hba) ((hba)->uic_link_state = \
113 				    UIC_LINK_BROKEN_STATE)
114 
115 #define ufshcd_set_ufs_dev_active(h) \
116 	((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
117 #define ufshcd_set_ufs_dev_sleep(h) \
118 	((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
119 #define ufshcd_set_ufs_dev_poweroff(h) \
120 	((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
121 #define ufshcd_set_ufs_dev_deepsleep(h) \
122 	((h)->curr_dev_pwr_mode = UFS_DEEPSLEEP_PWR_MODE)
123 #define ufshcd_is_ufs_dev_active(h) \
124 	((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
125 #define ufshcd_is_ufs_dev_sleep(h) \
126 	((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
127 #define ufshcd_is_ufs_dev_poweroff(h) \
128 	((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
129 #define ufshcd_is_ufs_dev_deepsleep(h) \
130 	((h)->curr_dev_pwr_mode == UFS_DEEPSLEEP_PWR_MODE)
131 
132 /*
133  * UFS Power management levels.
134  * Each level is in increasing order of power savings, except DeepSleep
135  * which is lower than PowerDown with power on but not PowerDown with
136  * power off.
137  */
138 enum ufs_pm_level {
139 	UFS_PM_LVL_0,
140 	UFS_PM_LVL_1,
141 	UFS_PM_LVL_2,
142 	UFS_PM_LVL_3,
143 	UFS_PM_LVL_4,
144 	UFS_PM_LVL_5,
145 	UFS_PM_LVL_6,
146 	UFS_PM_LVL_MAX
147 };
148 
149 struct ufs_pm_lvl_states {
150 	enum ufs_dev_pwr_mode dev_state;
151 	enum uic_link_state link_state;
152 };
153 
154 /**
155  * struct ufshcd_lrb - local reference block
156  * @utr_descriptor_ptr: UTRD address of the command
157  * @ucd_req_ptr: UCD address of the command
158  * @ucd_rsp_ptr: Response UPIU address for this command
159  * @ucd_prdt_ptr: PRDT address of the command
160  * @utrd_dma_addr: UTRD dma address for debug
161  * @ucd_prdt_dma_addr: PRDT dma address for debug
162  * @ucd_rsp_dma_addr: UPIU response dma address for debug
163  * @ucd_req_dma_addr: UPIU request dma address for debug
164  * @scsi_status: SCSI status of the command
165  * @command_type: SCSI, UFS, Query.
166  * @task_tag: Task tag of the command
167  * @lun: LUN of the command
168  * @intr_cmd: Interrupt command (doesn't participate in interrupt aggregation)
169  * @req_abort_skip: skip request abort task flag
170  * @issue_time_stamp: time stamp for debug purposes (CLOCK_MONOTONIC)
171  * @issue_time_stamp_local_clock: time stamp for debug purposes (local_clock)
172  * @compl_time_stamp: time stamp for statistics (CLOCK_MONOTONIC)
173  * @compl_time_stamp_local_clock: time stamp for debug purposes (local_clock)
174  * @crypto_key_slot: the key slot to use for inline crypto (-1 if none)
175  * @data_unit_num: the data unit number for the first block for inline crypto
176  */
177 struct ufshcd_lrb {
178 	struct utp_transfer_req_desc *utr_descriptor_ptr;
179 	struct utp_upiu_req *ucd_req_ptr;
180 	struct utp_upiu_rsp *ucd_rsp_ptr;
181 	struct ufshcd_sg_entry *ucd_prdt_ptr;
182 
183 	dma_addr_t utrd_dma_addr;
184 	dma_addr_t ucd_req_dma_addr;
185 	dma_addr_t ucd_rsp_dma_addr;
186 	dma_addr_t ucd_prdt_dma_addr;
187 
188 	int scsi_status;
189 
190 	int command_type;
191 	u8 lun; /* UPIU LUN id field is only 8-bit wide */
192 	bool intr_cmd;
193 	bool req_abort_skip;
194 	ktime_t issue_time_stamp;
195 	u64 issue_time_stamp_local_clock;
196 	ktime_t compl_time_stamp;
197 	u64 compl_time_stamp_local_clock;
198 #ifdef CONFIG_SCSI_UFS_CRYPTO
199 	int crypto_key_slot;
200 	u64 data_unit_num;
201 #endif
202 };
203 
204 /**
205  * struct ufs_query_req - parameters for building a query request
206  * @query_func: UPIU header query function
207  * @upiu_req: the query request data
208  */
209 struct ufs_query_req {
210 	u8 query_func;
211 	struct utp_upiu_query upiu_req;
212 };
213 
214 /**
215  * struct ufs_query_resp - UPIU QUERY
216  * @response: device response code
217  * @upiu_res: query response data
218  */
219 struct ufs_query_res {
220 	struct utp_upiu_query upiu_res;
221 };
222 
223 /**
224  * struct ufs_query - holds relevant data structures for query request
225  * @request: request upiu and function
226  * @descriptor: buffer for sending/receiving descriptor
227  * @response: response upiu and response
228  */
229 struct ufs_query {
230 	struct ufs_query_req request;
231 	u8 *descriptor;
232 	struct ufs_query_res response;
233 };
234 
235 /**
236  * struct ufs_dev_cmd - all assosiated fields with device management commands
237  * @type: device management command type - Query, NOP OUT
238  * @lock: lock to allow one command at a time
239  * @query: Device management query information
240  */
241 struct ufs_dev_cmd {
242 	enum dev_cmd_type type;
243 	struct mutex lock;
244 	struct ufs_query query;
245 };
246 
247 /**
248  * struct ufs_clk_info - UFS clock related info
249  * @list: list headed by hba->clk_list_head
250  * @clk: clock node
251  * @name: clock name
252  * @max_freq: maximum frequency supported by the clock
253  * @min_freq: min frequency that can be used for clock scaling
254  * @curr_freq: indicates the current frequency that it is set to
255  * @keep_link_active: indicates that the clk should not be disabled if
256  *		      link is active
257  * @enabled: variable to check against multiple enable/disable
258  */
259 struct ufs_clk_info {
260 	struct list_head list;
261 	struct clk *clk;
262 	const char *name;
263 	u32 max_freq;
264 	u32 min_freq;
265 	u32 curr_freq;
266 	bool keep_link_active;
267 	bool enabled;
268 };
269 
270 enum ufs_notify_change_status {
271 	PRE_CHANGE,
272 	POST_CHANGE,
273 };
274 
275 struct ufs_pa_layer_attr {
276 	u32 gear_rx;
277 	u32 gear_tx;
278 	u32 lane_rx;
279 	u32 lane_tx;
280 	u32 pwr_rx;
281 	u32 pwr_tx;
282 	u32 hs_rate;
283 };
284 
285 struct ufs_pwr_mode_info {
286 	bool is_valid;
287 	struct ufs_pa_layer_attr info;
288 };
289 
290 #define UFS_MAX_LANES	2
291 
292 /**
293  * struct tx_eqtr_iter - TX Equalization Training iterator
294  * @preshoot_bitmap: PreShoot bitmap
295  * @deemphasis_bitmap: DeEmphasis bitmap
296  * @preshoot: PreShoot value
297  * @deemphasis: DeEmphasis value
298  * @fom: Figure-of-Merit read out from RX_FOM
299  * @is_updated: Flag to indicate if updated since previous iteration
300  */
301 struct tx_eqtr_iter {
302 	unsigned long preshoot_bitmap;
303 	unsigned long deemphasis_bitmap;
304 	u8 preshoot;
305 	u8 deemphasis;
306 	u8 fom[UFS_MAX_LANES];
307 	bool is_updated;
308 };
309 
310 /**
311  * struct ufshcd_tx_eq_settings - TX Equalization settings
312  * @preshoot: PreShoot value
313  * @deemphasis: DeEmphasis value
314  * @fom_val: Figure-of-Merit value read out from RX_FOM (Bit[6:0])
315  * @precode_en: Flag to indicate whether need to enable pre-coding
316  */
317 struct ufshcd_tx_eq_settings {
318 	u8 preshoot;
319 	u8 deemphasis;
320 	u8 fom_val;
321 	bool precode_en;
322 };
323 
324 /**
325  * struct ufshcd_tx_eqtr_data - Data used during TX Equalization Training procedure
326  * @host: Optimal TX EQ settings identified for host TX Lanes during TX EQTR
327  * @device: Optimal TX EQ settings identified for device TX Lanes during TX EQTR
328  * @host_fom: Host TX EQTR FOM record
329  * @device_fom: Device TX EQTR FOM record
330  */
331 struct ufshcd_tx_eqtr_data {
332 	struct ufshcd_tx_eq_settings host[UFS_MAX_LANES];
333 	struct ufshcd_tx_eq_settings device[UFS_MAX_LANES];
334 	u8 host_fom[UFS_MAX_LANES][TX_HS_NUM_PRESHOOT][TX_HS_NUM_DEEMPHASIS];
335 	u8 device_fom[UFS_MAX_LANES][TX_HS_NUM_PRESHOOT][TX_HS_NUM_DEEMPHASIS];
336 };
337 
338 /**
339  * struct ufshcd_tx_eqtr_record - TX Equalization Training record
340  * @host_fom: Host TX EQTR FOM record
341  * @device_fom: Device TX EQTR FOM record
342  * @last_record_ts: Timestamp of the most recent TX EQTR record
343  * @last_record_index: Index of the most recent TX EQTR record
344  * @saved_adapt_eqtr: Saved Adaptation length setting for TX EQTR
345  */
346 struct ufshcd_tx_eqtr_record {
347 	u8 host_fom[UFS_MAX_LANES][TX_HS_NUM_PRESHOOT][TX_HS_NUM_DEEMPHASIS];
348 	u8 device_fom[UFS_MAX_LANES][TX_HS_NUM_PRESHOOT][TX_HS_NUM_DEEMPHASIS];
349 	ktime_t last_record_ts;
350 	u16 last_record_index;
351 	u16 saved_adapt_eqtr;
352 };
353 
354 /**
355  * struct ufshcd_tx_eq_params - TX Equalization parameters structure
356  * @host: TX EQ settings for host TX Lanes
357  * @device: TX EQ settings for device TX Lanes
358  * @eqtr_record: Pointer to TX EQTR record
359  * @is_valid: True if parameter contains valid TX Equalization settings
360  * @is_applied: True if settings have been applied to UniPro of both sides
361  * @is_trained: True if parameters obtained from TX EQTR procedure
362  */
363 struct ufshcd_tx_eq_params {
364 	struct ufshcd_tx_eq_settings host[UFS_MAX_LANES];
365 	struct ufshcd_tx_eq_settings device[UFS_MAX_LANES];
366 	struct ufshcd_tx_eqtr_record *eqtr_record;
367 	bool is_valid;
368 	bool is_applied;
369 	bool is_trained;
370 };
371 
372 /**
373  * struct ufs_hba_variant_ops - variant specific callbacks
374  * @name: variant name
375  * @max_num_rtt: maximum RTT supported by the host
376  * @init: called when the driver is initialized
377  * @exit: called to cleanup everything done in init
378  * @set_dma_mask: For setting another DMA mask than indicated by the 64AS
379  *	capability bit.
380  * @get_ufs_hci_version: called to get UFS HCI version
381  * @clk_scale_notify: notifies that clks are scaled up/down
382  * @setup_clocks: called before touching any of the controller registers
383  * @hce_enable_notify: called before and after HCE enable bit is set to allow
384  *                     variant specific Uni-Pro initialization.
385  * @link_startup_notify: called before and after Link startup is carried out
386  *                       to allow variant specific Uni-Pro initialization.
387  * @negotiate_pwr_mode: called to negotiate power mode.
388  * @pwr_change_notify: called before and after a power mode change
389  *			is carried out to allow vendor spesific capabilities
390  *			to be set.
391  * @setup_xfer_req: called before any transfer request is issued
392  *                  to set some things
393  * @setup_task_mgmt: called before any task management request is issued
394  *                  to set some things
395  * @hibern8_notify: called around hibern8 enter/exit
396  * @apply_dev_quirks: called to apply device specific quirks
397  * @fixup_dev_quirks: called to modify device specific quirks
398  * @suspend: called during host controller PM callback
399  * @resume: called during host controller PM callback
400  * @dbg_register_dump: used to dump controller debug information
401  * @phy_initialization: used to initialize phys
402  * @device_reset: called to issue a reset pulse on the UFS device
403  * @config_scaling_param: called to configure clock scaling parameters
404  * @fill_crypto_prdt: initialize crypto-related fields in the PRDT
405  * @event_notify: called to notify important events
406  * @mcq_config_resource: called to configure MCQ platform resources
407  * @get_hba_mac: reports maximum number of outstanding commands supported by
408  *	the controller. Should be implemented for UFSHCI 4.0 or later
409  *	controllers that are not compliant with the UFSHCI 4.0 specification.
410  * @op_runtime_config: called to config Operation and runtime regs Pointers
411  * @get_outstanding_cqs: called to get outstanding completion queues
412  * @config_esi: called to config Event Specific Interrupt
413  * @config_scsi_dev: called to configure SCSI device parameters
414  * @freq_to_gear_speed: called to map clock frequency to the max supported gear speed
415  * @apply_tx_eqtr_settings: called to apply settings for TX Equalization
416  *	Training settings.
417  * @get_rx_fom: called to get Figure of Merit (FOM) value.
418  * @tx_eqtr_notify: called before and after TX Equalization Training procedure
419  *	to allow platform vendor specific configs to take place.
420  */
421 struct ufs_hba_variant_ops {
422 	const char *name;
423 	int	max_num_rtt;
424 	int	(*init)(struct ufs_hba *);
425 	void    (*exit)(struct ufs_hba *);
426 	u32	(*get_ufs_hci_version)(struct ufs_hba *);
427 	int	(*set_dma_mask)(struct ufs_hba *);
428 	int	(*clk_scale_notify)(struct ufs_hba *, bool, unsigned long,
429 				enum ufs_notify_change_status);
430 	int	(*setup_clocks)(struct ufs_hba *, bool,
431 				enum ufs_notify_change_status);
432 	int	(*hce_enable_notify)(struct ufs_hba *,
433 				     enum ufs_notify_change_status);
434 	int	(*link_startup_notify)(struct ufs_hba *,
435 				       enum ufs_notify_change_status);
436 	int	(*negotiate_pwr_mode)(struct ufs_hba *hba,
437 				      const struct ufs_pa_layer_attr *desired_pwr_mode,
438 				      struct ufs_pa_layer_attr *final_params);
439 	int	(*pwr_change_notify)(struct ufs_hba *hba,
440 				     enum ufs_notify_change_status status,
441 				     struct ufs_pa_layer_attr *final_params);
442 	void	(*setup_xfer_req)(struct ufs_hba *hba, int tag,
443 				  bool is_scsi_cmd);
444 	void	(*setup_task_mgmt)(struct ufs_hba *, int, u8);
445 	void    (*hibern8_notify)(struct ufs_hba *, enum uic_cmd_dme,
446 					enum ufs_notify_change_status);
447 	int	(*apply_dev_quirks)(struct ufs_hba *hba);
448 	void	(*fixup_dev_quirks)(struct ufs_hba *hba);
449 	int     (*suspend)(struct ufs_hba *, enum ufs_pm_op,
450 					enum ufs_notify_change_status);
451 	int     (*resume)(struct ufs_hba *, enum ufs_pm_op);
452 	void	(*dbg_register_dump)(struct ufs_hba *hba);
453 	int	(*phy_initialization)(struct ufs_hba *);
454 	int	(*device_reset)(struct ufs_hba *hba);
455 	void	(*config_scaling_param)(struct ufs_hba *hba,
456 				struct devfreq_dev_profile *profile,
457 				struct devfreq_simple_ondemand_data *data);
458 	int	(*fill_crypto_prdt)(struct ufs_hba *hba,
459 				    const struct bio_crypt_ctx *crypt_ctx,
460 				    void *prdt, unsigned int num_segments);
461 	void	(*event_notify)(struct ufs_hba *hba,
462 				enum ufs_event_type evt, void *data);
463 	int	(*mcq_config_resource)(struct ufs_hba *hba);
464 	int	(*get_hba_mac)(struct ufs_hba *hba);
465 	int	(*op_runtime_config)(struct ufs_hba *hba);
466 	int	(*get_outstanding_cqs)(struct ufs_hba *hba,
467 				       unsigned long *ocqs);
468 	int	(*config_esi)(struct ufs_hba *hba);
469 	void	(*config_scsi_dev)(struct scsi_device *sdev);
470 	u32	(*freq_to_gear_speed)(struct ufs_hba *hba, unsigned long freq);
471 	int	(*get_rx_fom)(struct ufs_hba *hba,
472 			      struct ufs_pa_layer_attr *pwr_mode,
473 			      struct tx_eqtr_iter *h_iter,
474 			      struct tx_eqtr_iter *d_iter);
475 	int	(*apply_tx_eqtr_settings)(struct ufs_hba *hba,
476 					  struct ufs_pa_layer_attr *pwr_mode,
477 					  struct tx_eqtr_iter *h_iter,
478 					  struct tx_eqtr_iter *d_iter);
479 	int	(*tx_eqtr_notify)(struct ufs_hba *hba,
480 				  enum ufs_notify_change_status status,
481 				  struct ufs_pa_layer_attr *pwr_mode);
482 };
483 
484 /* clock gating state  */
485 enum clk_gating_state {
486 	CLKS_OFF,
487 	CLKS_ON,
488 	REQ_CLKS_OFF,
489 	REQ_CLKS_ON,
490 };
491 
492 /**
493  * struct ufs_clk_gating - UFS clock gating related info
494  * @gate_work: worker to turn off clocks after some delay as specified in
495  * delay_ms
496  * @ungate_work: worker to turn on clocks that will be used in case of
497  * interrupt context
498  * @clk_gating_workq: workqueue for clock gating work.
499  * @lock: serialize access to some struct ufs_clk_gating members. An outer lock
500  * relative to the host lock
501  * @state: the current clocks state
502  * @delay_ms: gating delay in ms
503  * @is_suspended: clk gating is suspended when set to 1 which can be used
504  * during suspend/resume
505  * @delay_attr: sysfs attribute to control delay_attr
506  * @enable_attr: sysfs attribute to enable/disable clock gating
507  * @is_enabled: Indicates the current status of clock gating
508  * @is_initialized: Indicates whether clock gating is initialized or not
509  * @active_reqs: number of requests that are pending and should be waited for
510  * completion before gating clocks.
511  */
512 struct ufs_clk_gating {
513 	struct delayed_work gate_work;
514 	struct work_struct ungate_work;
515 	struct workqueue_struct *clk_gating_workq;
516 
517 	spinlock_t lock;
518 
519 	enum clk_gating_state state;
520 	unsigned long delay_ms;
521 	bool is_suspended;
522 	struct device_attribute delay_attr;
523 	struct device_attribute enable_attr;
524 	bool is_enabled;
525 	bool is_initialized;
526 	int active_reqs;
527 };
528 
529 /**
530  * struct ufs_clk_scaling - UFS clock scaling related data
531  * @workq: workqueue to schedule devfreq suspend/resume work
532  * @suspend_work: worker to suspend devfreq
533  * @resume_work: worker to resume devfreq
534  * @lock: serialize access to some struct ufs_clk_scaling members
535  * @active_reqs: number of requests that are pending. If this is zero when
536  * devfreq ->target() function is called then schedule "suspend_work" to
537  * suspend devfreq.
538  * @tot_busy_t: Total busy time in current polling window
539  * @window_start_t: Start time (in jiffies) of the current polling window
540  * @busy_start_t: Start time of current busy period
541  * @enable_attr: sysfs attribute to enable/disable clock scaling
542  * @saved_pwr_info: UFS power mode may also be changed during scaling and this
543  * one keeps track of previous power mode.
544  * @target_freq: frequency requested by devfreq framework
545  * @min_gear: lowest HS gear to scale down to
546  * @wb_gear: enable Write Booster when HS gear scales above or equal to it, else
547  *		disable Write Booster
548  * @is_enabled: tracks if scaling is currently enabled or not, controlled by
549  *		clkscale_enable sysfs node
550  * @is_allowed: tracks if scaling is currently allowed or not, used to block
551  *		clock scaling which is not invoked from devfreq governor
552  * @is_initialized: Indicates whether clock scaling is initialized or not
553  * @is_busy_started: tracks if busy period has started or not
554  * @is_suspended: tracks if devfreq is suspended or not
555  */
556 struct ufs_clk_scaling {
557 	struct workqueue_struct *workq;
558 	struct work_struct suspend_work;
559 	struct work_struct resume_work;
560 
561 	spinlock_t lock;
562 
563 	int active_reqs;
564 	unsigned long tot_busy_t;
565 	ktime_t window_start_t;
566 	ktime_t busy_start_t;
567 	struct device_attribute enable_attr;
568 	struct ufs_pa_layer_attr saved_pwr_info;
569 	unsigned long target_freq;
570 	u32 min_gear;
571 	u32 wb_gear;
572 	bool is_enabled;
573 	bool is_allowed;
574 	bool is_initialized;
575 	bool is_busy_started;
576 	bool is_suspended;
577 	bool suspend_on_no_request;
578 };
579 
580 #define UFS_EVENT_HIST_LENGTH 8
581 /**
582  * struct ufs_event_hist - keeps history of errors
583  * @pos: index to indicate cyclic buffer position
584  * @val: cyclic buffer for registers value
585  * @tstamp: cyclic buffer for time stamp
586  * @cnt: error counter
587  */
588 struct ufs_event_hist {
589 	int pos;
590 	u32 val[UFS_EVENT_HIST_LENGTH];
591 	u64 tstamp[UFS_EVENT_HIST_LENGTH];
592 	unsigned long long cnt;
593 };
594 
595 /**
596  * struct ufs_stats - keeps usage/err statistics
597  * @hibern8_exit_cnt: Counter to keep track of number of exits,
598  *		reset this after link-startup.
599  * @last_hibern8_exit_tstamp: Set time after the hibern8 exit.
600  *		Clear after the first successful command completion.
601  * @event: array with event history.
602  */
603 struct ufs_stats {
604 	u32 hibern8_exit_cnt;
605 	u64 last_hibern8_exit_tstamp;
606 	struct ufs_event_hist event[UFS_EVT_CNT];
607 };
608 
609 /**
610  * enum ufshcd_state - UFS host controller state
611  * @UFSHCD_STATE_RESET: Link is not operational. Postpone SCSI command
612  *	processing.
613  * @UFSHCD_STATE_OPERATIONAL: The host controller is operational and can process
614  *	SCSI commands.
615  * @UFSHCD_STATE_EH_SCHEDULED_NON_FATAL: The error handler has been scheduled.
616  *	SCSI commands may be submitted to the controller.
617  * @UFSHCD_STATE_EH_SCHEDULED_FATAL: The error handler has been scheduled. Fail
618  *	newly submitted SCSI commands with error code DID_BAD_TARGET.
619  * @UFSHCD_STATE_ERROR: An unrecoverable error occurred, e.g. link recovery
620  *	failed. Fail all SCSI commands with error code DID_ERROR.
621  */
622 enum ufshcd_state {
623 	UFSHCD_STATE_RESET,
624 	UFSHCD_STATE_OPERATIONAL,
625 	UFSHCD_STATE_EH_SCHEDULED_NON_FATAL,
626 	UFSHCD_STATE_EH_SCHEDULED_FATAL,
627 	UFSHCD_STATE_ERROR,
628 };
629 
630 /**
631  * enum ufshcd_pmc_policy - Power Mode change policy
632  * @UFSHCD_PMC_POLICY_DONT_FORCE: Do not force a Power Mode change.
633  * @UFSHCD_PMC_POLICY_FORCE: Force a Power Mode change even if current Power
634  *	Mode is same as target Power Mode.
635  */
636 enum ufshcd_pmc_policy {
637 	UFSHCD_PMC_POLICY_DONT_FORCE,
638 	UFSHCD_PMC_POLICY_FORCE,
639 };
640 
641 enum ufshcd_quirks {
642 	/* Interrupt aggregation support is broken */
643 	UFSHCD_QUIRK_BROKEN_INTR_AGGR			= 1 << 0,
644 
645 	/*
646 	 * delay before each dme command is required as the unipro
647 	 * layer has shown instabilities
648 	 */
649 	UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS		= 1 << 1,
650 
651 	/*
652 	 * If UFS host controller is having issue in processing LCC (Line
653 	 * Control Command) coming from device then enable this quirk.
654 	 * When this quirk is enabled, host controller driver should disable
655 	 * the LCC transmission on UFS device (by clearing TX_LCC_ENABLE
656 	 * attribute of device to 0).
657 	 */
658 	UFSHCD_QUIRK_BROKEN_LCC				= 1 << 2,
659 
660 	/*
661 	 * The attribute PA_RXHSUNTERMCAP specifies whether or not the
662 	 * inbound Link supports unterminated line in HS mode. Setting this
663 	 * attribute to 1 fixes moving to HS gear.
664 	 */
665 	UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP		= 1 << 3,
666 
667 	/*
668 	 * This quirk needs to be enabled if the host controller only allows
669 	 * accessing the peer dme attributes in AUTO mode (FAST AUTO or
670 	 * SLOW AUTO).
671 	 */
672 	UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE		= 1 << 4,
673 
674 	/*
675 	 * This quirk needs to be enabled if the host controller doesn't
676 	 * advertise the correct version in UFS_VER register. If this quirk
677 	 * is enabled, standard UFS host driver will call the vendor specific
678 	 * ops (get_ufs_hci_version) to get the correct version.
679 	 */
680 	UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION		= 1 << 5,
681 
682 	/*
683 	 * Clear handling for transfer/task request list is just opposite.
684 	 */
685 	UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR		= 1 << 6,
686 
687 	/*
688 	 * This quirk needs to be enabled if host controller doesn't allow
689 	 * that the interrupt aggregation timer and counter are reset by s/w.
690 	 */
691 	UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR		= 1 << 7,
692 
693 	/*
694 	 * This quirks needs to be enabled if host controller cannot be
695 	 * enabled via HCE register.
696 	 */
697 	UFSHCI_QUIRK_BROKEN_HCE				= 1 << 8,
698 
699 	/*
700 	 * This quirk needs to be enabled if the host controller regards
701 	 * resolution of the values of PRDTO and PRDTL in UTRD as byte.
702 	 */
703 	UFSHCD_QUIRK_PRDT_BYTE_GRAN			= 1 << 9,
704 
705 	/*
706 	 * This quirk needs to be enabled if the host controller reports
707 	 * OCS FATAL ERROR with device error through sense data
708 	 */
709 	UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR		= 1 << 10,
710 
711 	/*
712 	 * This quirk needs to be enabled if the host controller has
713 	 * auto-hibernate capability but it doesn't work.
714 	 */
715 	UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8		= 1 << 11,
716 
717 	/*
718 	 * This quirk needs to disable manual flush for write booster
719 	 */
720 	UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL		= 1 << 12,
721 
722 	/*
723 	 * This quirk needs to disable unipro timeout values
724 	 * before power mode change
725 	 */
726 	UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING = 1 << 13,
727 
728 	/*
729 	 * This quirk needs to be enabled if the host controller does not
730 	 * support UIC command
731 	 */
732 	UFSHCD_QUIRK_BROKEN_UIC_CMD			= 1 << 15,
733 
734 	/*
735 	 * This quirk needs to be enabled if the host controller cannot
736 	 * support physical host configuration.
737 	 */
738 	UFSHCD_QUIRK_SKIP_PH_CONFIGURATION		= 1 << 16,
739 
740 	/*
741 	 * This quirk needs to be enabled if the host controller has
742 	 * auto-hibernate capability but it's FASTAUTO only.
743 	 */
744 	UFSHCD_QUIRK_HIBERN_FASTAUTO			= 1 << 18,
745 
746 	/*
747 	 * This quirk needs to be enabled if the host controller needs
748 	 * to reinit the device after switching to maximum gear.
749 	 */
750 	UFSHCD_QUIRK_REINIT_AFTER_MAX_GEAR_SWITCH       = 1 << 19,
751 
752 	/*
753 	 * Some host raises interrupt (per queue) in addition to
754 	 * CQES (traditional) when ESI is disabled.
755 	 * Enable this quirk will disable CQES and use per queue interrupt.
756 	 */
757 	UFSHCD_QUIRK_MCQ_BROKEN_INTR			= 1 << 20,
758 
759 	/*
760 	 * Some host does not implement SQ Run Time Command (SQRTC) register
761 	 * thus need this quirk to skip related flow.
762 	 */
763 	UFSHCD_QUIRK_MCQ_BROKEN_RTC			= 1 << 21,
764 
765 	/*
766 	 * This quirk needs to be enabled if the host controller supports inline
767 	 * encryption but it needs to initialize the crypto capabilities in a
768 	 * nonstandard way and/or needs to override blk_crypto_ll_ops.  If
769 	 * enabled, the standard code won't initialize the blk_crypto_profile;
770 	 * ufs_hba_variant_ops::init() must do it instead.
771 	 */
772 	UFSHCD_QUIRK_CUSTOM_CRYPTO_PROFILE		= 1 << 22,
773 
774 	/*
775 	 * This quirk needs to be enabled if the host controller supports inline
776 	 * encryption but does not support the CRYPTO_GENERAL_ENABLE bit, i.e.
777 	 * host controller initialization fails if that bit is set.
778 	 */
779 	UFSHCD_QUIRK_BROKEN_CRYPTO_ENABLE		= 1 << 23,
780 
781 	/*
782 	 * This quirk needs to be enabled if the host controller driver copies
783 	 * cryptographic keys into the PRDT in order to send them to hardware,
784 	 * and therefore the PRDT should be zeroized after each request (as per
785 	 * the standard best practice for managing keys).
786 	 */
787 	UFSHCD_QUIRK_KEYS_IN_PRDT			= 1 << 24,
788 
789 	/*
790 	 * This quirk indicates that the controller reports the value 1 (not
791 	 * supported) in the Legacy Single DoorBell Support (LSDBS) bit of the
792 	 * Controller Capabilities register although it supports the legacy
793 	 * single doorbell mode.
794 	 */
795 	UFSHCD_QUIRK_BROKEN_LSDBS_CAP			= 1 << 25,
796 
797 	/*
798 	 * This quirk indicates that DME_LINKSTARTUP should not be issued a 2nd
799 	 * time (refer link_startup_again) after the 1st time was successful,
800 	 * because it causes link startup to become unreliable.
801 	 */
802 	UFSHCD_QUIRK_PERFORM_LINK_STARTUP_ONCE		= 1 << 26,
803 
804 	/*
805 	 * On some platforms, the VCC regulator has a slow ramp-up time. Add a
806 	 * delay after enabling VCC to ensure it's stable.
807 	 */
808 	UFSHCD_QUIRK_VCC_ON_DELAY			= 1 << 27,
809 
810 	/*
811 	 * This quirk indicates that Host supports TX Equalization Training
812 	 * (EQTR) using Adapt L0L1L2L3 length which is larger than what is
813 	 * allowed by M-PHY spec ver 6.0.
814 	 */
815 	UFSHCD_QUIRK_EXTENDED_TX_EQTR_ADAPT_LENGTH_L0L1L2L3	= 1 << 28,
816 };
817 
818 enum ufshcd_caps {
819 	/* Allow dynamic clk gating */
820 	UFSHCD_CAP_CLK_GATING				= 1 << 0,
821 
822 	/* Allow hiberb8 with clk gating */
823 	UFSHCD_CAP_HIBERN8_WITH_CLK_GATING		= 1 << 1,
824 
825 	/* Allow dynamic clk scaling */
826 	UFSHCD_CAP_CLK_SCALING				= 1 << 2,
827 
828 	/* Allow auto bkops to enabled during runtime suspend */
829 	UFSHCD_CAP_AUTO_BKOPS_SUSPEND			= 1 << 3,
830 
831 	/*
832 	 * This capability allows host controller driver to use the UFS HCI's
833 	 * interrupt aggregation capability.
834 	 * CAUTION: Enabling this might reduce overall UFS throughput.
835 	 */
836 	UFSHCD_CAP_INTR_AGGR				= 1 << 4,
837 
838 	/*
839 	 * This capability allows the device auto-bkops to be always enabled
840 	 * except during suspend (both runtime and suspend).
841 	 * Enabling this capability means that device will always be allowed
842 	 * to do background operation when it's active but it might degrade
843 	 * the performance of ongoing read/write operations.
844 	 */
845 	UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND = 1 << 5,
846 
847 	/*
848 	 * This capability allows host controller driver to automatically
849 	 * enable runtime power management by itself instead of waiting
850 	 * for userspace to control the power management.
851 	 */
852 	UFSHCD_CAP_RPM_AUTOSUSPEND			= 1 << 6,
853 
854 	/*
855 	 * This capability allows the host controller driver to turn-on
856 	 * WriteBooster, if the underlying device supports it and is
857 	 * provisioned to be used. This would increase the write performance.
858 	 */
859 	UFSHCD_CAP_WB_EN				= 1 << 7,
860 
861 	/*
862 	 * This capability allows the host controller driver to use the
863 	 * inline crypto engine, if it is present
864 	 */
865 	UFSHCD_CAP_CRYPTO				= 1 << 8,
866 
867 	/*
868 	 * This capability allows the controller regulators to be put into
869 	 * lpm mode aggressively during clock gating.
870 	 * This would increase power savings.
871 	 */
872 	UFSHCD_CAP_AGGR_POWER_COLLAPSE			= 1 << 9,
873 
874 	/*
875 	 * This capability allows the host controller driver to use DeepSleep,
876 	 * if it is supported by the UFS device. The host controller driver must
877 	 * support device hardware reset via the hba->device_reset() callback,
878 	 * in order to exit DeepSleep state.
879 	 */
880 	UFSHCD_CAP_DEEPSLEEP				= 1 << 10,
881 
882 	/*
883 	 * This capability allows the host controller driver to use temperature
884 	 * notification if it is supported by the UFS device.
885 	 */
886 	UFSHCD_CAP_TEMP_NOTIF				= 1 << 11,
887 
888 	/*
889 	 * Enable WriteBooster when scaling up the clock and disable
890 	 * WriteBooster when scaling the clock down.
891 	 */
892 	UFSHCD_CAP_WB_WITH_CLK_SCALING			= 1 << 12,
893 
894 	/*
895 	 * This capability allows the host controller driver to apply TX
896 	 * Equalization settings discovered from UFS attributes, variant
897 	 * specific operations and TX Equaliztion Training procedure.
898 	 */
899 	UFSHCD_CAP_TX_EQUALIZATION			= 1 << 13,
900 };
901 
902 struct ufs_hba_variant_params {
903 	struct devfreq_dev_profile devfreq_profile;
904 	struct devfreq_simple_ondemand_data ondemand_data;
905 	u16 hba_enable_delay_us;
906 	u32 wb_flush_threshold;
907 };
908 
909 struct ufs_hba_monitor {
910 	unsigned long chunk_size;
911 
912 	unsigned long nr_sec_rw[2];
913 	ktime_t total_busy[2];
914 
915 	unsigned long nr_req[2];
916 	/* latencies*/
917 	ktime_t lat_sum[2];
918 	ktime_t lat_max[2];
919 	ktime_t lat_min[2];
920 
921 	u32 nr_queued[2];
922 	ktime_t busy_start_ts[2];
923 
924 	ktime_t enabled_ts;
925 	bool enabled;
926 };
927 
928 /**
929  * struct ufshcd_mcq_opr_info_t - Operation and Runtime registers
930  *
931  * @offset: Doorbell Address Offset
932  * @stride: Steps proportional to queue [0...31]
933  * @base: base address
934  */
935 struct ufshcd_mcq_opr_info_t {
936 	unsigned long offset;
937 	unsigned long stride;
938 	void __iomem *base;
939 };
940 
941 enum ufshcd_mcq_opr {
942 	OPR_SQD,
943 	OPR_SQIS,
944 	OPR_CQD,
945 	OPR_CQIS,
946 	OPR_MAX,
947 };
948 
949 /**
950  * struct ufs_hba - per adapter private structure
951  * @mmio_base: UFSHCI base register address
952  * @ucdl_base_addr: UFS Command Descriptor base address
953  * @utrdl_base_addr: UTP Transfer Request Descriptor base address
954  * @utmrdl_base_addr: UTP Task Management Descriptor base address
955  * @ucdl_dma_addr: UFS Command Descriptor DMA address
956  * @utrdl_dma_addr: UTRDL DMA address
957  * @utmrdl_dma_addr: UTMRDL DMA address
958  * @host: Scsi_Host instance of the driver
959  * @dev: device handle
960  * @ufs_device_wlun: WLUN that controls the entire UFS device.
961  * @ufs_rpmb_wlun: RPMB WLUN SCSI device
962  * @hwmon_device: device instance registered with the hwmon core.
963  * @curr_dev_pwr_mode: active UFS device power mode.
964  * @uic_link_state: active state of the link to the UFS device.
965  * @rpm_lvl: desired UFS power management level during runtime PM.
966  * @spm_lvl: desired UFS power management level during system PM.
967  * @pm_lvl_min: minimum supported power management level.
968  * @pm_op_in_progress: whether or not a PM operation is in progress.
969  * @ahit: value of Auto-Hibernate Idle Timer register.
970  * @outstanding_tasks: Bits representing outstanding task requests
971  * @outstanding_lock: Protects @outstanding_reqs.
972  * @outstanding_reqs: Bits representing outstanding transfer requests
973  * @capabilities: UFS Controller Capabilities
974  * @mcq_capabilities: UFS Multi Circular Queue capabilities
975  * @nutrs: Transfer Request Queue depth supported by controller
976  * @nortt - Max outstanding RTTs supported by controller
977  * @nutmrs: Task Management Queue depth supported by controller
978  * @ufs_version: UFS Version to which controller complies
979  * @vops: pointer to variant specific operations
980  * @vps: pointer to variant specific parameters
981  * @priv: pointer to variant specific private data
982  * @sg_entry_size: size of struct ufshcd_sg_entry (may include variant fields)
983  * @irq: Irq number of the controller
984  * @is_irq_enabled: whether or not the UFS controller interrupt is enabled.
985  * @dev_ref_clk_freq: reference clock frequency
986  * @quirks: bitmask with information about deviations from the UFSHCI standard.
987  * @dev_quirks: bitmask with information about deviations from the UFS standard.
988  * @tmf_tag_set: TMF tag set.
989  * @tmf_queue: Used to allocate TMF tags.
990  * @tmf_rqs: array with pointers to TMF requests while these are in progress.
991  * @active_uic_cmd: pointer to active UIC command.
992  * @uic_cmd_mutex: mutex used for serializing UIC command processing.
993  * @uic_async_done: completion used to wait for power mode or hibernation state
994  *	changes.
995  * @ufshcd_state: UFSHCD state
996  * @eh_flags: Error handling flags
997  * @intr_mask: Interrupt Mask Bits
998  * @ee_ctrl_mask: Exception event control mask
999  * @ee_drv_mask: Exception event mask for driver
1000  * @ee_usr_mask: Exception event mask for user (set via debugfs)
1001  * @ee_ctrl_mutex: Used to serialize exception event information.
1002  * @is_powered: flag to check if HBA is powered
1003  * @shutting_down: flag to check if shutdown has been invoked
1004  * @host_sem: semaphore used to serialize concurrent contexts
1005  * @eh_wq: Workqueue that eh_work works on
1006  * @eh_work: Worker to handle UFS errors that require s/w attention
1007  * @eeh_work: Worker to handle exception events
1008  * @errors: HBA errors
1009  * @uic_error: UFS interconnect layer error status
1010  * @saved_err: sticky error mask
1011  * @saved_uic_err: sticky UIC error mask
1012  * @ufs_stats: various error counters
1013  * @force_reset: flag to force eh_work perform a full reset
1014  * @silence_err_logs: flag to silence error logs
1015  * @dev_cmd: ufs device management command information
1016  * @last_dme_cmd_tstamp: time stamp of the last completed DME command
1017  * @nop_out_timeout: NOP OUT timeout value
1018  * @dev_info: information about the UFS device
1019  * @auto_bkops_enabled: to track whether bkops is enabled in device
1020  * @vreg_info: UFS device voltage regulator information
1021  * @clk_list_head: UFS host controller clocks list node head
1022  * @use_pm_opp: Indicates whether OPP based scaling is used or not
1023  * @req_abort_count: number of times ufshcd_abort() has been called
1024  * @lanes_per_direction: number of lanes per data direction between the UFS
1025  *	controller and the UFS device.
1026  * @pwr_info: holds current power mode
1027  * @max_pwr_info: keeps the device max valid pwm
1028  * @clk_gating: information related to clock gating
1029  * @caps: bitmask with information about UFS controller capabilities
1030  * @devfreq: frequency scaling information owned by the devfreq core
1031  * @clk_scaling: frequency scaling information owned by the UFS driver
1032  * @is_sys_suspended: UFS device has been suspended because of system suspend
1033  * @urgent_bkops_lvl: keeps track of urgent bkops level for device
1034  * @is_urgent_bkops_lvl_checked: keeps track if the urgent bkops level for
1035  *  device is known or not.
1036  * @wb_mutex: used to serialize devfreq and sysfs write booster toggling
1037  * @clk_scaling_lock: used to serialize device commands and clock scaling
1038  * @desc_size: descriptor sizes reported by device
1039  * @bsg_dev: struct device associated with the BSG queue
1040  * @bsg_queue: BSG queue associated with the UFS controller
1041  * @rpm_dev_flush_recheck_work: used to suspend from RPM (runtime power
1042  *	management) after the UFS device has finished a WriteBooster buffer
1043  *	flush or auto BKOP.
1044  * @monitor: statistics about UFS commands
1045  * @crypto_capabilities: Content of crypto capabilities register (0x100)
1046  * @crypto_cap_array: Array of crypto capabilities
1047  * @crypto_cfg_register: Start of the crypto cfg array
1048  * @crypto_profile: the crypto profile of this hba (if applicable)
1049  * @debugfs_root: UFS controller debugfs root directory
1050  * @debugfs_ee_work: used to restore ee_ctrl_mask after a delay
1051  * @debugfs_ee_rate_limit_ms: user configurable delay after which to restore
1052  *	ee_ctrl_mask
1053  * @luns_avail: number of regular and well known LUNs supported by the UFS
1054  *	device
1055  * @nr_hw_queues: number of hardware queues configured
1056  * @nr_queues: number of Queues of different queue types
1057  * @complete_put: whether or not to call ufshcd_rpm_put() from inside
1058  *	ufshcd_resume_complete()
1059  * @mcq_sup: is mcq supported by UFSHC
1060  * @mcq_enabled: is mcq ready to accept requests
1061  * @mcq_esi_enabled: is mcq ESI configured
1062  * @res: array of resource info of MCQ registers
1063  * @mcq_base: Multi circular queue registers base address
1064  * @uhq: array of supported hardware queues
1065  * @mcq_opr: MCQ operation and runtime registers
1066  * @ufs_rtc_update_work: A work for UFS RTC periodic update
1067  * @pm_qos_req: PM QoS request handle
1068  * @pm_qos_enabled: flag to check if pm qos is enabled
1069  * @pm_qos_mutex: synchronizes PM QoS request and status updates
1070  * @critical_health_count: count of critical health exceptions
1071  * @dev_lvl_exception_count: count of device level exceptions since last reset
1072  * @dev_lvl_exception_id: vendor specific information about the device level exception event.
1073  * @dme_qos_notification: Bitfield of pending DME Quality of Service (QoS)
1074  *	events. Bits[3:1] reflect the corresponding bits of UIC DME Error Code
1075  *	field within the Host Controller's UECDME register. Bit[0] is a flag
1076  *	indicating that the DME QoS Monitor has been reset by the host.
1077  * @dme_qos_sysfs_handle: handle for 'dme_qos_notification' sysfs entry
1078  * @rpmbs: list of OP-TEE RPMB devices (one per RPMB region)
1079  * @host_preshoot_cap: a bitfield to indicate supported PreShoot dBs of host's TX lanes, cache of
1080  *	host M-PHY TX_HS_PreShoot_Setting_Capability Attribute (ID 0x15)
1081  * @host_deemphasis_cap: a bitfield to indicate supported DeEmphasis dBs of host's TX lanes, cache
1082  *	of host M-PHY TX_HS_DeEmphasis_Setting_Capability Attribute (ID 0x12)
1083  * @device_preshoot_cap: a bitfield to indicate supported PreShoot dBs of device's TX lanes, cache
1084  *	of device M-PHY TX_HS_PreShoot_Setting_Capability Attribute (ID 0x15)
1085  * @device_deemphasis_cap: a bitfield to indicate supported DeEmphasis dBs of device's TX lanes,
1086  *	cache of device M-PHY TX_HS_DeEmphasis_Setting_Capability Attribute (ID 0x12)
1087  * @tx_eq_params: TX Equalization settings
1088  */
1089 struct ufs_hba {
1090 	void __iomem *mmio_base;
1091 
1092 	/* Virtual memory reference */
1093 	struct utp_transfer_cmd_desc *ucdl_base_addr;
1094 	struct utp_transfer_req_desc *utrdl_base_addr;
1095 	struct utp_task_req_desc *utmrdl_base_addr;
1096 
1097 	/* DMA memory reference */
1098 	dma_addr_t ucdl_dma_addr;
1099 	dma_addr_t utrdl_dma_addr;
1100 	dma_addr_t utmrdl_dma_addr;
1101 
1102 	struct Scsi_Host *host;
1103 	struct device *dev;
1104 	struct scsi_device *ufs_device_wlun;
1105 	struct scsi_device *ufs_rpmb_wlun;
1106 
1107 #ifdef CONFIG_SCSI_UFS_HWMON
1108 	struct device *hwmon_device;
1109 #endif
1110 
1111 	enum ufs_dev_pwr_mode curr_dev_pwr_mode;
1112 	enum uic_link_state uic_link_state;
1113 	/* Desired UFS power management level during runtime PM */
1114 	enum ufs_pm_level rpm_lvl;
1115 	/* Desired UFS power management level during system PM */
1116 	enum ufs_pm_level spm_lvl;
1117 	enum ufs_pm_level pm_lvl_min;
1118 	int pm_op_in_progress;
1119 
1120 	/* Auto-Hibernate Idle Timer register value */
1121 	u32 ahit;
1122 
1123 	unsigned long outstanding_tasks;
1124 	spinlock_t outstanding_lock;
1125 	unsigned long outstanding_reqs;
1126 
1127 	u32 capabilities;
1128 	int nutrs;
1129 	int nortt;
1130 	u32 mcq_capabilities;
1131 	int nutmrs;
1132 	u32 ufs_version;
1133 	const struct ufs_hba_variant_ops *vops;
1134 	struct ufs_hba_variant_params *vps;
1135 	void *priv;
1136 #ifdef CONFIG_SCSI_UFS_VARIABLE_SG_ENTRY_SIZE
1137 	size_t sg_entry_size;
1138 #endif
1139 	unsigned int irq;
1140 	bool is_irq_enabled;
1141 	enum ufs_ref_clk_freq dev_ref_clk_freq;
1142 
1143 	unsigned int quirks;	/* Deviations from standard UFSHCI spec. */
1144 
1145 	/* Device deviations from standard UFS device spec. */
1146 	unsigned int dev_quirks;
1147 
1148 	struct blk_mq_tag_set tmf_tag_set;
1149 	struct request_queue *tmf_queue;
1150 	struct request **tmf_rqs;
1151 
1152 	struct uic_command *active_uic_cmd;
1153 	struct mutex uic_cmd_mutex;
1154 	struct completion *uic_async_done;
1155 
1156 	enum ufshcd_state ufshcd_state;
1157 	u32 eh_flags;
1158 	u32 intr_mask;
1159 	u16 ee_ctrl_mask;
1160 	u16 ee_drv_mask;
1161 	u16 ee_usr_mask;
1162 	struct mutex ee_ctrl_mutex;
1163 	bool is_powered;
1164 	bool shutting_down;
1165 	struct semaphore host_sem;
1166 
1167 	/* Work Queues */
1168 	struct workqueue_struct *eh_wq;
1169 	struct work_struct eh_work;
1170 	struct work_struct eeh_work;
1171 
1172 	/* HBA Errors */
1173 	u32 errors;
1174 	u32 uic_error;
1175 	u32 saved_err;
1176 	u32 saved_uic_err;
1177 	struct ufs_stats ufs_stats;
1178 	bool force_reset;
1179 	bool silence_err_logs;
1180 
1181 	/* Device management request data */
1182 	struct ufs_dev_cmd dev_cmd;
1183 	ktime_t last_dme_cmd_tstamp;
1184 	int nop_out_timeout;
1185 
1186 	/* Keeps information of the UFS device connected to this host */
1187 	struct ufs_dev_info dev_info;
1188 	bool auto_bkops_enabled;
1189 	struct ufs_vreg_info vreg_info;
1190 	struct list_head clk_list_head;
1191 	bool use_pm_opp;
1192 
1193 	/* Number of requests aborts */
1194 	int req_abort_count;
1195 
1196 	/* Number of lanes available (1 or 2) for Rx/Tx */
1197 	u32 lanes_per_direction;
1198 	struct ufs_pa_layer_attr pwr_info;
1199 	struct ufs_pwr_mode_info max_pwr_info;
1200 
1201 	struct ufs_clk_gating clk_gating;
1202 	/* Control to enable/disable host capabilities */
1203 	u32 caps;
1204 
1205 	struct devfreq *devfreq;
1206 	struct ufs_clk_scaling clk_scaling;
1207 	bool is_sys_suspended;
1208 
1209 	enum bkops_status urgent_bkops_lvl;
1210 	bool is_urgent_bkops_lvl_checked;
1211 
1212 	struct mutex wb_mutex;
1213 	struct rw_semaphore clk_scaling_lock;
1214 
1215 	struct device		bsg_dev;
1216 	struct request_queue	*bsg_queue;
1217 	struct delayed_work rpm_dev_flush_recheck_work;
1218 
1219 	struct ufs_hba_monitor	monitor;
1220 
1221 #ifdef CONFIG_SCSI_UFS_CRYPTO
1222 	union ufs_crypto_capabilities crypto_capabilities;
1223 	union ufs_crypto_cap_entry *crypto_cap_array;
1224 	u32 crypto_cfg_register;
1225 	struct blk_crypto_profile crypto_profile;
1226 #endif
1227 #ifdef CONFIG_DEBUG_FS
1228 	struct dentry *debugfs_root;
1229 	struct delayed_work debugfs_ee_work;
1230 	u32 debugfs_ee_rate_limit_ms;
1231 #endif
1232 #ifdef CONFIG_SCSI_UFS_FAULT_INJECTION
1233 	struct fault_attr trigger_eh_attr;
1234 	struct fault_attr timeout_attr;
1235 #endif
1236 	u32 luns_avail;
1237 	unsigned int nr_hw_queues;
1238 	unsigned int nr_queues[HCTX_MAX_TYPES];
1239 	bool complete_put;
1240 	bool scsi_host_added;
1241 	bool mcq_sup;
1242 	bool lsdb_sup;
1243 	bool mcq_enabled;
1244 	bool mcq_esi_enabled;
1245 	void __iomem *mcq_base;
1246 	struct ufs_hw_queue *uhq;
1247 	struct ufshcd_mcq_opr_info_t mcq_opr[OPR_MAX];
1248 
1249 	struct delayed_work ufs_rtc_update_work;
1250 	struct pm_qos_request pm_qos_req;
1251 	bool pm_qos_enabled;
1252 	/* synchronizes PM QoS request and status updates */
1253 	struct mutex pm_qos_mutex;
1254 
1255 	int critical_health_count;
1256 	atomic_t dev_lvl_exception_count;
1257 	u64 dev_lvl_exception_id;
1258 
1259 	atomic_t dme_qos_notification;
1260 	struct kernfs_node *dme_qos_sysfs_handle;
1261 
1262 	u32 vcc_off_delay_us;
1263 	struct list_head rpmbs;
1264 
1265 	u8 host_preshoot_cap;
1266 	u8 host_deemphasis_cap;
1267 	u8 device_preshoot_cap;
1268 	u8 device_deemphasis_cap;
1269 	struct ufshcd_tx_eq_params tx_eq_params[UFS_HS_GEAR_MAX];
1270 };
1271 
1272 /**
1273  * struct ufs_hw_queue - per hardware queue structure
1274  * @mcq_sq_head: base address of submission queue head pointer
1275  * @mcq_sq_tail: base address of submission queue tail pointer
1276  * @mcq_cq_head: base address of completion queue head pointer
1277  * @mcq_cq_tail: base address of completion queue tail pointer
1278  * @sqe_base_addr: submission queue entry base address
1279  * @sqe_dma_addr: submission queue dma address
1280  * @cqe_base_addr: completion queue base address
1281  * @cqe_dma_addr: completion queue dma address
1282  * @max_entries: max number of slots in this hardware queue
1283  * @id: hardware queue ID
1284  * @sq_tp_slot: current slot to which SQ tail pointer is pointing
1285  * @sq_lock: serialize submission queue access
1286  * @cq_tail_slot: current slot to which CQ tail pointer is pointing
1287  * @cq_head_slot: current slot to which CQ head pointer is pointing
1288  * @cq_lock: Synchronize between multiple polling instances
1289  * @sq_mutex: prevent submission queue concurrent access
1290  */
1291 struct ufs_hw_queue {
1292 	void __iomem *mcq_sq_head;
1293 	void __iomem *mcq_sq_tail;
1294 	void __iomem *mcq_cq_head;
1295 	void __iomem *mcq_cq_tail;
1296 
1297 	struct utp_transfer_req_desc *sqe_base_addr;
1298 	dma_addr_t sqe_dma_addr;
1299 	struct cq_entry *cqe_base_addr;
1300 	dma_addr_t cqe_dma_addr;
1301 	u32 max_entries;
1302 	u32 id;
1303 	u32 sq_tail_slot;
1304 	spinlock_t sq_lock;
1305 	u32 cq_tail_slot;
1306 	u32 cq_head_slot;
1307 	spinlock_t cq_lock;
1308 	/* prevent concurrent access to submission queue */
1309 	struct mutex sq_mutex;
1310 };
1311 
1312 #define MCQ_QCFG_SIZE		0x40
1313 
1314 static inline unsigned int ufshcd_mcq_opr_offset(struct ufs_hba *hba,
1315 		enum ufshcd_mcq_opr opr, int idx)
1316 {
1317 	return hba->mcq_opr[opr].offset + hba->mcq_opr[opr].stride * idx;
1318 }
1319 
1320 static inline unsigned int ufshcd_mcq_cfg_offset(unsigned int reg, int idx)
1321 {
1322 	return reg + MCQ_QCFG_SIZE * idx;
1323 }
1324 
1325 #ifdef CONFIG_SCSI_UFS_VARIABLE_SG_ENTRY_SIZE
1326 static inline size_t ufshcd_sg_entry_size(const struct ufs_hba *hba)
1327 {
1328 	return hba->sg_entry_size;
1329 }
1330 
1331 static inline void ufshcd_set_sg_entry_size(struct ufs_hba *hba, size_t sg_entry_size)
1332 {
1333 	WARN_ON_ONCE(sg_entry_size < sizeof(struct ufshcd_sg_entry));
1334 	hba->sg_entry_size = sg_entry_size;
1335 }
1336 #else
1337 static inline size_t ufshcd_sg_entry_size(const struct ufs_hba *hba)
1338 {
1339 	return sizeof(struct ufshcd_sg_entry);
1340 }
1341 
1342 #define ufshcd_set_sg_entry_size(hba, sg_entry_size)                   \
1343 	({ (void)(hba); BUILD_BUG_ON(sg_entry_size != sizeof(struct ufshcd_sg_entry)); })
1344 #endif
1345 
1346 #ifdef CONFIG_SCSI_UFS_CRYPTO
1347 static inline struct ufs_hba *
1348 ufs_hba_from_crypto_profile(struct blk_crypto_profile *profile)
1349 {
1350 	return container_of(profile, struct ufs_hba, crypto_profile);
1351 }
1352 #endif
1353 
1354 static inline size_t ufshcd_get_ucd_size(const struct ufs_hba *hba)
1355 {
1356 	return sizeof(struct utp_transfer_cmd_desc) + SG_ALL * ufshcd_sg_entry_size(hba);
1357 }
1358 
1359 /* Returns true if clocks can be gated. Otherwise false */
1360 static inline bool ufshcd_is_clkgating_allowed(struct ufs_hba *hba)
1361 {
1362 	return hba->caps & UFSHCD_CAP_CLK_GATING;
1363 }
1364 static inline bool ufshcd_can_hibern8_during_gating(struct ufs_hba *hba)
1365 {
1366 	return hba->caps & UFSHCD_CAP_HIBERN8_WITH_CLK_GATING;
1367 }
1368 static inline int ufshcd_is_clkscaling_supported(struct ufs_hba *hba)
1369 {
1370 	return hba->caps & UFSHCD_CAP_CLK_SCALING;
1371 }
1372 static inline bool ufshcd_can_autobkops_during_suspend(struct ufs_hba *hba)
1373 {
1374 	return hba->caps & UFSHCD_CAP_AUTO_BKOPS_SUSPEND;
1375 }
1376 static inline bool ufshcd_is_rpm_autosuspend_allowed(struct ufs_hba *hba)
1377 {
1378 	return hba->caps & UFSHCD_CAP_RPM_AUTOSUSPEND;
1379 }
1380 
1381 static inline bool ufshcd_is_intr_aggr_allowed(struct ufs_hba *hba)
1382 {
1383 	return (hba->caps & UFSHCD_CAP_INTR_AGGR) &&
1384 		!(hba->quirks & UFSHCD_QUIRK_BROKEN_INTR_AGGR);
1385 }
1386 
1387 static inline bool ufshcd_can_aggressive_pc(struct ufs_hba *hba)
1388 {
1389 	return !!(ufshcd_is_link_hibern8(hba) &&
1390 		  (hba->caps & UFSHCD_CAP_AGGR_POWER_COLLAPSE));
1391 }
1392 
1393 static inline bool ufshcd_is_auto_hibern8_supported(struct ufs_hba *hba)
1394 {
1395 	return (hba->capabilities & MASK_AUTO_HIBERN8_SUPPORT) &&
1396 		!(hba->quirks & UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8);
1397 }
1398 
1399 static inline bool ufshcd_is_auto_hibern8_enabled(struct ufs_hba *hba)
1400 {
1401 	return FIELD_GET(UFSHCI_AHIBERN8_TIMER_MASK, hba->ahit);
1402 }
1403 
1404 static inline bool ufshcd_is_wb_allowed(struct ufs_hba *hba)
1405 {
1406 	return hba->caps & UFSHCD_CAP_WB_EN;
1407 }
1408 
1409 static inline bool ufshcd_enable_wb_if_scaling_up(struct ufs_hba *hba)
1410 {
1411 	return hba->caps & UFSHCD_CAP_WB_WITH_CLK_SCALING;
1412 }
1413 
1414 static inline bool ufshcd_is_tx_eq_supported(struct ufs_hba *hba)
1415 {
1416 	return hba->caps & UFSHCD_CAP_TX_EQUALIZATION &&
1417 	       hba->ufs_version >= ufshci_version(5, 0) &&
1418 	       hba->dev_info.wspecversion >= 0x500;
1419 }
1420 
1421 #define ufsmcq_writel(hba, val, reg)	\
1422 	writel((val), (hba)->mcq_base + (reg))
1423 #define ufsmcq_readl(hba, reg)	\
1424 	readl((hba)->mcq_base + (reg))
1425 
1426 #define ufsmcq_writelx(hba, val, reg)	\
1427 	writel_relaxed((val), (hba)->mcq_base + (reg))
1428 #define ufsmcq_readlx(hba, reg)	\
1429 	readl_relaxed((hba)->mcq_base + (reg))
1430 
1431 #define ufshcd_writel(hba, val, reg)	\
1432 	writel((val), (hba)->mmio_base + (reg))
1433 #define ufshcd_readl(hba, reg)	\
1434 	readl((hba)->mmio_base + (reg))
1435 
1436 static inline const char *ufs_hs_rate_to_str(enum ufs_hs_gear_rate rate)
1437 {
1438 	switch (rate) {
1439 	case PA_HS_MODE_A:
1440 		return "A";
1441 	case PA_HS_MODE_B:
1442 		return "B";
1443 	default:
1444 		return "Unknown";
1445 	}
1446 }
1447 
1448 /**
1449  * ufshcd_rmwl - perform read/modify/write for a controller register
1450  * @hba: per adapter instance
1451  * @mask: mask to apply on read value
1452  * @val: actual value to write
1453  * @reg: register address
1454  */
1455 static inline void ufshcd_rmwl(struct ufs_hba *hba, u32 mask, u32 val, u32 reg)
1456 {
1457 	u32 tmp;
1458 
1459 	tmp = ufshcd_readl(hba, reg);
1460 	tmp &= ~mask;
1461 	tmp |= (val & mask);
1462 	ufshcd_writel(hba, tmp, reg);
1463 }
1464 
1465 void ufshcd_enable_irq(struct ufs_hba *hba);
1466 void ufshcd_disable_irq(struct ufs_hba *hba);
1467 int ufshcd_alloc_host(struct device *, struct ufs_hba **);
1468 int ufshcd_hba_enable(struct ufs_hba *hba);
1469 int ufshcd_init(struct ufs_hba *, void __iomem *, unsigned int);
1470 int ufshcd_link_recovery(struct ufs_hba *hba);
1471 int ufshcd_make_hba_operational(struct ufs_hba *hba);
1472 void ufshcd_remove(struct ufs_hba *);
1473 int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
1474 int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
1475 void ufshcd_delay_us(unsigned long us, unsigned long tolerance);
1476 void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk);
1477 void ufshcd_update_evt_hist(struct ufs_hba *hba, u32 id, u32 val);
1478 void ufshcd_hba_stop(struct ufs_hba *hba);
1479 void ufshcd_schedule_eh_work(struct ufs_hba *hba);
1480 void ufshcd_mcq_config_mac(struct ufs_hba *hba, u32 max_active_cmds);
1481 unsigned int ufshcd_mcq_queue_cfg_addr(struct ufs_hba *hba);
1482 u32 ufshcd_mcq_read_cqis(struct ufs_hba *hba, int i);
1483 void ufshcd_mcq_write_cqis(struct ufs_hba *hba, u32 val, int i);
1484 unsigned long ufshcd_mcq_poll_cqe_lock(struct ufs_hba *hba,
1485 					 struct ufs_hw_queue *hwq);
1486 void ufshcd_mcq_make_queues_operational(struct ufs_hba *hba);
1487 void ufshcd_mcq_enable(struct ufs_hba *hba);
1488 void ufshcd_mcq_enable_esi(struct ufs_hba *hba);
1489 void ufshcd_mcq_config_esi(struct ufs_hba *hba, struct msi_msg *msg);
1490 
1491 int ufshcd_opp_config_clks(struct device *dev, struct opp_table *opp_table,
1492 			   struct dev_pm_opp *opp, void *data,
1493 			   bool scaling_down);
1494 /**
1495  * ufshcd_set_variant - set variant specific data to the hba
1496  * @hba: per adapter instance
1497  * @variant: pointer to variant specific data
1498  */
1499 static inline void ufshcd_set_variant(struct ufs_hba *hba, void *variant)
1500 {
1501 	BUG_ON(!hba);
1502 	hba->priv = variant;
1503 }
1504 
1505 /**
1506  * ufshcd_get_variant - get variant specific data from the hba
1507  * @hba: per adapter instance
1508  */
1509 static inline void *ufshcd_get_variant(struct ufs_hba *hba)
1510 {
1511 	BUG_ON(!hba);
1512 	return hba->priv;
1513 }
1514 
1515 extern int ufshcd_runtime_suspend(struct device *dev);
1516 extern int ufshcd_runtime_resume(struct device *dev);
1517 extern int ufshcd_system_suspend(struct device *dev);
1518 extern int ufshcd_system_resume(struct device *dev);
1519 extern int ufshcd_system_freeze(struct device *dev);
1520 extern int ufshcd_system_thaw(struct device *dev);
1521 extern int ufshcd_system_restore(struct device *dev);
1522 
1523 extern int ufshcd_dme_reset(struct ufs_hba *hba);
1524 extern int ufshcd_dme_enable(struct ufs_hba *hba);
1525 extern int ufshcd_dme_configure_adapt(struct ufs_hba *hba,
1526 				      int agreed_gear,
1527 				      int adapt_val);
1528 extern int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
1529 			       u8 attr_set, u32 mib_val, u8 peer);
1530 extern int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
1531 			       u32 *mib_val, u8 peer);
1532 extern int ufshcd_change_power_mode(struct ufs_hba *hba,
1533 				    struct ufs_pa_layer_attr *pwr_mode,
1534 				    enum ufshcd_pmc_policy pmc_policy);
1535 extern int ufshcd_config_pwr_mode(struct ufs_hba *hba,
1536 				  struct ufs_pa_layer_attr *desired_pwr_mode,
1537 				  enum ufshcd_pmc_policy pmc_policy);
1538 extern int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode);
1539 extern int ufshcd_apply_tx_eq_settings(struct ufs_hba *hba,
1540 				       struct ufshcd_tx_eq_params *params,
1541 				       u32 gear);
1542 
1543 /* UIC command interfaces for DME primitives */
1544 #define DME_LOCAL	0
1545 #define DME_PEER	1
1546 #define ATTR_SET_NOR	0	/* NORMAL */
1547 #define ATTR_SET_ST	1	/* STATIC */
1548 
1549 static inline int ufshcd_dme_set(struct ufs_hba *hba, u32 attr_sel,
1550 				 u32 mib_val)
1551 {
1552 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
1553 				   mib_val, DME_LOCAL);
1554 }
1555 
1556 static inline int ufshcd_dme_st_set(struct ufs_hba *hba, u32 attr_sel,
1557 				    u32 mib_val)
1558 {
1559 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
1560 				   mib_val, DME_LOCAL);
1561 }
1562 
1563 static inline int ufshcd_dme_peer_set(struct ufs_hba *hba, u32 attr_sel,
1564 				      u32 mib_val)
1565 {
1566 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
1567 				   mib_val, DME_PEER);
1568 }
1569 
1570 static inline int ufshcd_dme_peer_st_set(struct ufs_hba *hba, u32 attr_sel,
1571 					 u32 mib_val)
1572 {
1573 	return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
1574 				   mib_val, DME_PEER);
1575 }
1576 
1577 static inline int ufshcd_dme_get(struct ufs_hba *hba,
1578 				 u32 attr_sel, u32 *mib_val)
1579 {
1580 	return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_LOCAL);
1581 }
1582 
1583 static inline int ufshcd_dme_peer_get(struct ufs_hba *hba,
1584 				      u32 attr_sel, u32 *mib_val)
1585 {
1586 	return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_PEER);
1587 }
1588 
1589 static inline bool ufshcd_is_hs_mode(const struct ufs_pa_layer_attr *pwr_info)
1590 {
1591 	return (pwr_info->pwr_rx == FAST_MODE ||
1592 		pwr_info->pwr_rx == FASTAUTO_MODE) &&
1593 		(pwr_info->pwr_tx == FAST_MODE ||
1594 		pwr_info->pwr_tx == FASTAUTO_MODE);
1595 }
1596 
1597 static inline int ufshcd_disable_host_tx_lcc(struct ufs_hba *hba)
1598 {
1599 	return ufshcd_dme_set(hba, UIC_ARG_MIB(PA_LOCAL_TX_LCC_ENABLE), 0);
1600 }
1601 
1602 void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit);
1603 void ufshcd_fixup_dev_quirks(struct ufs_hba *hba,
1604 			     const struct ufs_dev_quirk *fixups);
1605 
1606 void ufshcd_hold(struct ufs_hba *hba);
1607 void ufshcd_release(struct ufs_hba *hba);
1608 
1609 void ufshcd_clkgate_delay_set(struct device *dev, unsigned long value);
1610 
1611 int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg);
1612 
1613 int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd);
1614 
1615 int ufshcd_advanced_rpmb_req_handler(struct ufs_hba *hba, struct utp_upiu_req *req_upiu,
1616 				     struct utp_upiu_req *rsp_upiu, struct ufs_ehs *ehs_req,
1617 				     struct ufs_ehs *ehs_rsp, int sg_cnt,
1618 				     struct scatterlist *sg_list, enum dma_data_direction dir);
1619 int ufshcd_wb_toggle(struct ufs_hba *hba, bool enable);
1620 int ufshcd_wb_toggle_buf_flush(struct ufs_hba *hba, bool enable);
1621 int ufshcd_wb_set_resize_en(struct ufs_hba *hba, enum wb_resize_en en_mode);
1622 int ufshcd_suspend_prepare(struct device *dev);
1623 int __ufshcd_suspend_prepare(struct device *dev, bool rpm_ok_for_spm);
1624 void ufshcd_resume_complete(struct device *dev);
1625 bool ufshcd_is_hba_active(struct ufs_hba *hba);
1626 void ufshcd_pm_qos_init(struct ufs_hba *hba);
1627 void ufshcd_pm_qos_exit(struct ufs_hba *hba);
1628 int ufshcd_dme_rmw(struct ufs_hba *hba, u32 mask, u32 val, u32 attr);
1629 
1630 /* Wrapper functions for safely calling variant operations */
1631 static inline int ufshcd_vops_init(struct ufs_hba *hba)
1632 {
1633 	if (hba->vops && hba->vops->init)
1634 		return hba->vops->init(hba);
1635 
1636 	return 0;
1637 }
1638 
1639 static inline int ufshcd_vops_phy_initialization(struct ufs_hba *hba)
1640 {
1641 	if (hba->vops && hba->vops->phy_initialization)
1642 		return hba->vops->phy_initialization(hba);
1643 
1644 	return 0;
1645 }
1646 
1647 extern const struct ufs_pm_lvl_states ufs_pm_lvl_states[];
1648 
1649 int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
1650 		     const char *prefix);
1651 
1652 int __ufshcd_write_ee_control(struct ufs_hba *hba, u32 ee_ctrl_mask);
1653 int ufshcd_write_ee_control(struct ufs_hba *hba);
1654 int ufshcd_update_ee_control(struct ufs_hba *hba, u16 *mask,
1655 			     const u16 *other_mask, u16 set, u16 clr);
1656 void ufshcd_force_error_recovery(struct ufs_hba *hba);
1657 void ufshcd_pm_qos_update(struct ufs_hba *hba, bool on);
1658 u32 ufshcd_us_to_ahit(unsigned int timer);
1659 
1660 #endif /* End of Header */
1661