scsi: ufs: core: mcq: Calculate queue depth
[linux-block.git] / include / ufs / ufshcd.h
CommitLineData
67351119 1/* SPDX-License-Identifier: GPL-2.0-or-later */
e0eca63e
VH
2/*
3 * Universal Flash Storage Host controller driver
e0eca63e 4 * Copyright (C) 2011-2013 Samsung India Software Operations
dc3c8d3a 5 * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
e0eca63e
VH
6 *
7 * Authors:
8 * Santosh Yaraganavi <santosh.sy@samsung.com>
9 * Vinayak Holikatti <h.vinayak@samsung.com>
e0eca63e
VH
10 */
11
12#ifndef _UFSHCD_H
13#define _UFSHCD_H
14
5a244e0e 15#include <linux/bitfield.h>
1e8d44bd 16#include <linux/blk-crypto-profile.h>
3f06f780
BVA
17#include <linux/blk-mq.h>
18#include <linux/devfreq.h>
19#include <linux/pm_runtime.h>
f3e57da5 20#include <linux/dma-direction.h>
3f06f780 21#include <scsi/scsi_device.h>
dd11376b
BVA
22#include <ufs/unipro.h>
23#include <ufs/ufs.h>
24#include <ufs/ufs_quirks.h>
25#include <ufs/ufshci.h>
e0eca63e
VH
26
27#define UFSHCD "ufshcd"
e0eca63e 28
5c0c28a8
SRT
29struct ufs_hba;
30
5a0b0cb9
SRT
31enum dev_cmd_type {
32 DEV_CMD_TYPE_NOP = 0x0,
68078d5c 33 DEV_CMD_TYPE_QUERY = 0x1,
6ff265fc 34 DEV_CMD_TYPE_RPMB = 0x2,
5a0b0cb9
SRT
35};
36
e965e5e0
SC
37enum ufs_event_type {
38 /* uic specific errors */
39 UFS_EVT_PA_ERR = 0,
40 UFS_EVT_DL_ERR,
41 UFS_EVT_NL_ERR,
42 UFS_EVT_TL_ERR,
43 UFS_EVT_DME_ERR,
44
45 /* fatal errors */
46 UFS_EVT_AUTO_HIBERN8_ERR,
47 UFS_EVT_FATAL_ERR,
48 UFS_EVT_LINK_STARTUP_FAIL,
49 UFS_EVT_RESUME_ERR,
50 UFS_EVT_SUSPEND_ERR,
b294ff3e
AD
51 UFS_EVT_WL_SUSP_ERR,
52 UFS_EVT_WL_RES_ERR,
e965e5e0
SC
53
54 /* abnormal events */
55 UFS_EVT_DEV_RESET,
56 UFS_EVT_HOST_RESET,
57 UFS_EVT_ABORT,
58
59 UFS_EVT_CNT,
60};
61
e0eca63e
VH
62/**
63 * struct uic_command - UIC command structure
64 * @command: UIC command
65 * @argument1: UIC command argument 1
66 * @argument2: UIC command argument 2
67 * @argument3: UIC command argument 3
0f52fcb9 68 * @cmd_active: Indicate if UIC command is outstanding
6ccf44fe 69 * @done: UIC command completion
e0eca63e
VH
70 */
71struct uic_command {
72 u32 command;
73 u32 argument1;
74 u32 argument2;
75 u32 argument3;
0f52fcb9 76 int cmd_active;
6ccf44fe 77 struct completion done;
e0eca63e
VH
78};
79
57d104c1
SJ
80/* Used to differentiate the power management options */
81enum ufs_pm_op {
82 UFS_RUNTIME_PM,
83 UFS_SYSTEM_PM,
84 UFS_SHUTDOWN_PM,
85};
86
57d104c1
SJ
87/* Host <-> Device UniPro Link state */
88enum uic_link_state {
89 UIC_LINK_OFF_STATE = 0, /* Link powered down or disabled */
90 UIC_LINK_ACTIVE_STATE = 1, /* Link is in Fast/Slow/Sleep state */
91 UIC_LINK_HIBERN8_STATE = 2, /* Link is in Hibernate state */
4db7a236 92 UIC_LINK_BROKEN_STATE = 3, /* Link is in broken state */
57d104c1
SJ
93};
94
95#define ufshcd_is_link_off(hba) ((hba)->uic_link_state == UIC_LINK_OFF_STATE)
96#define ufshcd_is_link_active(hba) ((hba)->uic_link_state == \
97 UIC_LINK_ACTIVE_STATE)
98#define ufshcd_is_link_hibern8(hba) ((hba)->uic_link_state == \
99 UIC_LINK_HIBERN8_STATE)
4db7a236
CG
100#define ufshcd_is_link_broken(hba) ((hba)->uic_link_state == \
101 UIC_LINK_BROKEN_STATE)
57d104c1
SJ
102#define ufshcd_set_link_off(hba) ((hba)->uic_link_state = UIC_LINK_OFF_STATE)
103#define ufshcd_set_link_active(hba) ((hba)->uic_link_state = \
104 UIC_LINK_ACTIVE_STATE)
105#define ufshcd_set_link_hibern8(hba) ((hba)->uic_link_state = \
106 UIC_LINK_HIBERN8_STATE)
4db7a236
CG
107#define ufshcd_set_link_broken(hba) ((hba)->uic_link_state = \
108 UIC_LINK_BROKEN_STATE)
57d104c1 109
1764fa2a
SC
110#define ufshcd_set_ufs_dev_active(h) \
111 ((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
112#define ufshcd_set_ufs_dev_sleep(h) \
113 ((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
114#define ufshcd_set_ufs_dev_poweroff(h) \
115 ((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
fe1d4c2e
AH
116#define ufshcd_set_ufs_dev_deepsleep(h) \
117 ((h)->curr_dev_pwr_mode = UFS_DEEPSLEEP_PWR_MODE)
1764fa2a
SC
118#define ufshcd_is_ufs_dev_active(h) \
119 ((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
120#define ufshcd_is_ufs_dev_sleep(h) \
121 ((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
122#define ufshcd_is_ufs_dev_poweroff(h) \
123 ((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
fe1d4c2e
AH
124#define ufshcd_is_ufs_dev_deepsleep(h) \
125 ((h)->curr_dev_pwr_mode == UFS_DEEPSLEEP_PWR_MODE)
1764fa2a 126
57d104c1
SJ
127/*
128 * UFS Power management levels.
fe1d4c2e
AH
129 * Each level is in increasing order of power savings, except DeepSleep
130 * which is lower than PowerDown with power on but not PowerDown with
131 * power off.
57d104c1
SJ
132 */
133enum ufs_pm_level {
e2ac7ab2
BVA
134 UFS_PM_LVL_0,
135 UFS_PM_LVL_1,
136 UFS_PM_LVL_2,
137 UFS_PM_LVL_3,
138 UFS_PM_LVL_4,
139 UFS_PM_LVL_5,
140 UFS_PM_LVL_6,
57d104c1
SJ
141 UFS_PM_LVL_MAX
142};
143
144struct ufs_pm_lvl_states {
145 enum ufs_dev_pwr_mode dev_state;
146 enum uic_link_state link_state;
147};
148
e0eca63e
VH
149/**
150 * struct ufshcd_lrb - local reference block
151 * @utr_descriptor_ptr: UTRD address of the command
5a0b0cb9 152 * @ucd_req_ptr: UCD address of the command
e0eca63e
VH
153 * @ucd_rsp_ptr: Response UPIU address for this command
154 * @ucd_prdt_ptr: PRDT address of the command
ff8e20c6
DR
155 * @utrd_dma_addr: UTRD dma address for debug
156 * @ucd_prdt_dma_addr: PRDT dma address for debug
157 * @ucd_rsp_dma_addr: UPIU response dma address for debug
158 * @ucd_req_dma_addr: UPIU request dma address for debug
e0eca63e 159 * @cmd: pointer to SCSI command
e0eca63e
VH
160 * @scsi_status: SCSI status of the command
161 * @command_type: SCSI, UFS, Query.
162 * @task_tag: Task tag of the command
163 * @lun: LUN of the command
5a0b0cb9 164 * @intr_cmd: Interrupt command (doesn't participate in interrupt aggregation)
0f85e747
DL
165 * @issue_time_stamp: time stamp for debug purposes (CLOCK_MONOTONIC)
166 * @issue_time_stamp_local_clock: time stamp for debug purposes (local_clock)
167 * @compl_time_stamp: time stamp for statistics (CLOCK_MONOTONIC)
168 * @compl_time_stamp_local_clock: time stamp for debug purposes (local_clock)
df043c74
ST
169 * @crypto_key_slot: the key slot to use for inline crypto (-1 if none)
170 * @data_unit_num: the data unit number for the first block for inline crypto
e0b299e3 171 * @req_abort_skip: skip request abort task flag
e0eca63e
VH
172 */
173struct ufshcd_lrb {
174 struct utp_transfer_req_desc *utr_descriptor_ptr;
5a0b0cb9 175 struct utp_upiu_req *ucd_req_ptr;
e0eca63e
VH
176 struct utp_upiu_rsp *ucd_rsp_ptr;
177 struct ufshcd_sg_entry *ucd_prdt_ptr;
178
ff8e20c6
DR
179 dma_addr_t utrd_dma_addr;
180 dma_addr_t ucd_req_dma_addr;
181 dma_addr_t ucd_rsp_dma_addr;
182 dma_addr_t ucd_prdt_dma_addr;
183
e0eca63e 184 struct scsi_cmnd *cmd;
e0eca63e
VH
185 int scsi_status;
186
187 int command_type;
188 int task_tag;
0ce147d4 189 u8 lun; /* UPIU LUN id field is only 8-bit wide */
5a0b0cb9 190 bool intr_cmd;
ff8e20c6 191 ktime_t issue_time_stamp;
0f85e747 192 u64 issue_time_stamp_local_clock;
09017188 193 ktime_t compl_time_stamp;
0f85e747 194 u64 compl_time_stamp_local_clock;
df043c74
ST
195#ifdef CONFIG_SCSI_UFS_CRYPTO
196 int crypto_key_slot;
197 u64 data_unit_num;
198#endif
e0b299e3
GB
199
200 bool req_abort_skip;
e0eca63e
VH
201};
202
68078d5c 203/**
a230c2f6 204 * struct ufs_query - holds relevant data structures for query request
68078d5c
DR
205 * @request: request upiu and function
206 * @descriptor: buffer for sending/receiving descriptor
207 * @response: response upiu and response
208 */
209struct ufs_query {
210 struct ufs_query_req request;
211 u8 *descriptor;
212 struct ufs_query_res response;
213};
214
5a0b0cb9
SRT
215/**
216 * struct ufs_dev_cmd - all assosiated fields with device management commands
217 * @type: device management command type - Query, NOP OUT
218 * @lock: lock to allow one command at a time
219 * @complete: internal commands completion
cff91daf 220 * @query: Device management query information
5a0b0cb9
SRT
221 */
222struct ufs_dev_cmd {
223 enum dev_cmd_type type;
224 struct mutex lock;
225 struct completion *complete;
68078d5c 226 struct ufs_query query;
5a0b0cb9 227};
e0eca63e 228
c6e79dac
SRT
229/**
230 * struct ufs_clk_info - UFS clock related info
231 * @list: list headed by hba->clk_list_head
232 * @clk: clock node
233 * @name: clock name
234 * @max_freq: maximum frequency supported by the clock
4cff6d99 235 * @min_freq: min frequency that can be used for clock scaling
856b3483 236 * @curr_freq: indicates the current frequency that it is set to
81309c24 237 * @keep_link_active: indicates that the clk should not be disabled if
cff91daf 238 * link is active
c6e79dac
SRT
239 * @enabled: variable to check against multiple enable/disable
240 */
241struct ufs_clk_info {
242 struct list_head list;
243 struct clk *clk;
244 const char *name;
245 u32 max_freq;
4cff6d99 246 u32 min_freq;
856b3483 247 u32 curr_freq;
81309c24 248 bool keep_link_active;
c6e79dac
SRT
249 bool enabled;
250};
251
f06fcc71
YG
252enum ufs_notify_change_status {
253 PRE_CHANGE,
254 POST_CHANGE,
255};
7eb584db
DR
256
257struct ufs_pa_layer_attr {
258 u32 gear_rx;
259 u32 gear_tx;
260 u32 lane_rx;
261 u32 lane_tx;
262 u32 pwr_rx;
263 u32 pwr_tx;
264 u32 hs_rate;
265};
266
267struct ufs_pwr_mode_info {
268 bool is_valid;
269 struct ufs_pa_layer_attr info;
270};
271
5c0c28a8
SRT
272/**
273 * struct ufs_hba_variant_ops - variant specific callbacks
274 * @name: variant name
275 * @init: called when the driver is initialized
276 * @exit: called to cleanup everything done in init
9949e702 277 * @get_ufs_hci_version: called to get UFS HCI version
856b3483 278 * @clk_scale_notify: notifies that clks are scaled up/down
5c0c28a8 279 * @setup_clocks: called before touching any of the controller registers
5c0c28a8
SRT
280 * @hce_enable_notify: called before and after HCE enable bit is set to allow
281 * variant specific Uni-Pro initialization.
282 * @link_startup_notify: called before and after Link startup is carried out
283 * to allow variant specific Uni-Pro initialization.
7eb584db
DR
284 * @pwr_change_notify: called before and after a power mode change
285 * is carried out to allow vendor spesific capabilities
286 * to be set.
0e675efa
KK
287 * @setup_xfer_req: called before any transfer request is issued
288 * to set some things
d2877be4
KK
289 * @setup_task_mgmt: called before any task management request is issued
290 * to set some things
ee32c909 291 * @hibern8_notify: called around hibern8 enter/exit
56d4a186 292 * @apply_dev_quirks: called to apply device specific quirks
cff91daf 293 * @fixup_dev_quirks: called to modify device specific quirks
57d104c1
SJ
294 * @suspend: called during host controller PM callback
295 * @resume: called during host controller PM callback
6e3fd44d 296 * @dbg_register_dump: used to dump controller debug information
4b9ffb5a 297 * @phy_initialization: used to initialize phys
d8d9f793 298 * @device_reset: called to issue a reset pulse on the UFS device
cff91daf 299 * @config_scaling_param: called to configure clock scaling parameters
1bc726e2 300 * @program_key: program or evict an inline encryption key
172614a9 301 * @event_notify: called to notify important events
c2c38c57 302 * @reinit_notify: called to notify reinit of UFSHCD during max gear switch
c263b4ef 303 * @mcq_config_resource: called to configure MCQ platform resources
7224c806 304 * @get_hba_mac: called to get vendor specific mac value, mandatory for mcq mode
5c0c28a8
SRT
305 */
306struct ufs_hba_variant_ops {
307 const char *name;
308 int (*init)(struct ufs_hba *);
309 void (*exit)(struct ufs_hba *);
9949e702 310 u32 (*get_ufs_hci_version)(struct ufs_hba *);
f06fcc71
YG
311 int (*clk_scale_notify)(struct ufs_hba *, bool,
312 enum ufs_notify_change_status);
1e879e8f
SJ
313 int (*setup_clocks)(struct ufs_hba *, bool,
314 enum ufs_notify_change_status);
f06fcc71
YG
315 int (*hce_enable_notify)(struct ufs_hba *,
316 enum ufs_notify_change_status);
317 int (*link_startup_notify)(struct ufs_hba *,
318 enum ufs_notify_change_status);
7eb584db 319 int (*pwr_change_notify)(struct ufs_hba *,
f06fcc71
YG
320 enum ufs_notify_change_status status,
321 struct ufs_pa_layer_attr *,
7eb584db 322 struct ufs_pa_layer_attr *);
b427609e
BVA
323 void (*setup_xfer_req)(struct ufs_hba *hba, int tag,
324 bool is_scsi_cmd);
d2877be4 325 void (*setup_task_mgmt)(struct ufs_hba *, int, u8);
ee32c909 326 void (*hibern8_notify)(struct ufs_hba *, enum uic_cmd_dme,
56d4a186 327 enum ufs_notify_change_status);
09750066 328 int (*apply_dev_quirks)(struct ufs_hba *hba);
c28c00ba 329 void (*fixup_dev_quirks)(struct ufs_hba *hba);
9561f584
PW
330 int (*suspend)(struct ufs_hba *, enum ufs_pm_op,
331 enum ufs_notify_change_status);
57d104c1 332 int (*resume)(struct ufs_hba *, enum ufs_pm_op);
6e3fd44d 333 void (*dbg_register_dump)(struct ufs_hba *hba);
4b9ffb5a 334 int (*phy_initialization)(struct ufs_hba *);
151f1b66 335 int (*device_reset)(struct ufs_hba *hba);
2c75f9a5 336 void (*config_scaling_param)(struct ufs_hba *hba,
c906e832
BVA
337 struct devfreq_dev_profile *profile,
338 struct devfreq_simple_ondemand_data *data);
1bc726e2
EB
339 int (*program_key)(struct ufs_hba *hba,
340 const union ufs_crypto_cfg_entry *cfg, int slot);
172614a9
SC
341 void (*event_notify)(struct ufs_hba *hba,
342 enum ufs_event_type evt, void *data);
c2c38c57 343 void (*reinit_notify)(struct ufs_hba *);
c263b4ef 344 int (*mcq_config_resource)(struct ufs_hba *hba);
7224c806 345 int (*get_hba_mac)(struct ufs_hba *hba);
5c0c28a8
SRT
346};
347
1ab27c9c
ST
348/* clock gating state */
349enum clk_gating_state {
350 CLKS_OFF,
351 CLKS_ON,
352 REQ_CLKS_OFF,
353 REQ_CLKS_ON,
354};
355
356/**
357 * struct ufs_clk_gating - UFS clock gating related info
358 * @gate_work: worker to turn off clocks after some delay as specified in
359 * delay_ms
360 * @ungate_work: worker to turn on clocks that will be used in case of
361 * interrupt context
362 * @state: the current clocks state
363 * @delay_ms: gating delay in ms
364 * @is_suspended: clk gating is suspended when set to 1 which can be used
365 * during suspend/resume
366 * @delay_attr: sysfs attribute to control delay_attr
b427411a
ST
367 * @enable_attr: sysfs attribute to enable/disable clock gating
368 * @is_enabled: Indicates the current status of clock gating
4543d9d7 369 * @is_initialized: Indicates whether clock gating is initialized or not
1ab27c9c
ST
370 * @active_reqs: number of requests that are pending and should be waited for
371 * completion before gating clocks.
cff91daf 372 * @clk_gating_workq: workqueue for clock gating work.
1ab27c9c
ST
373 */
374struct ufs_clk_gating {
375 struct delayed_work gate_work;
376 struct work_struct ungate_work;
377 enum clk_gating_state state;
378 unsigned long delay_ms;
379 bool is_suspended;
380 struct device_attribute delay_attr;
b427411a
ST
381 struct device_attribute enable_attr;
382 bool is_enabled;
4543d9d7 383 bool is_initialized;
1ab27c9c 384 int active_reqs;
10e5e375 385 struct workqueue_struct *clk_gating_workq;
1ab27c9c
ST
386};
387
a3cd5ec5 388struct ufs_saved_pwr_info {
389 struct ufs_pa_layer_attr info;
390 bool is_valid;
391};
392
401f1e44 393/**
394 * struct ufs_clk_scaling - UFS clock scaling related data
395 * @active_reqs: number of requests that are pending. If this is zero when
396 * devfreq ->target() function is called then schedule "suspend_work" to
397 * suspend devfreq.
398 * @tot_busy_t: Total busy time in current polling window
399 * @window_start_t: Start time (in jiffies) of the current polling window
400 * @busy_start_t: Start time of current busy period
401 * @enable_attr: sysfs attribute to enable/disable clock scaling
402 * @saved_pwr_info: UFS power mode may also be changed during scaling and this
403 * one keeps track of previous power mode.
404 * @workq: workqueue to schedule devfreq suspend/resume work
405 * @suspend_work: worker to suspend devfreq
406 * @resume_work: worker to resume devfreq
29b87e92 407 * @min_gear: lowest HS gear to scale down to
0e9d4ca4 408 * @is_enabled: tracks if scaling is currently enabled or not, controlled by
cff91daf 409 * clkscale_enable sysfs node
0e9d4ca4 410 * @is_allowed: tracks if scaling is currently allowed or not, used to block
cff91daf 411 * clock scaling which is not invoked from devfreq governor
4543d9d7 412 * @is_initialized: Indicates whether clock scaling is initialized or not
401f1e44 413 * @is_busy_started: tracks if busy period has started or not
414 * @is_suspended: tracks if devfreq is suspended or not
415 */
856b3483 416struct ufs_clk_scaling {
401f1e44 417 int active_reqs;
418 unsigned long tot_busy_t;
b1bf66d1 419 ktime_t window_start_t;
401f1e44 420 ktime_t busy_start_t;
fcb0c4b0 421 struct device_attribute enable_attr;
a3cd5ec5 422 struct ufs_saved_pwr_info saved_pwr_info;
401f1e44 423 struct workqueue_struct *workq;
424 struct work_struct suspend_work;
425 struct work_struct resume_work;
29b87e92 426 u32 min_gear;
0e9d4ca4 427 bool is_enabled;
401f1e44 428 bool is_allowed;
4543d9d7 429 bool is_initialized;
401f1e44 430 bool is_busy_started;
431 bool is_suspended;
856b3483
ST
432};
433
e965e5e0 434#define UFS_EVENT_HIST_LENGTH 8
ff8e20c6 435/**
e965e5e0 436 * struct ufs_event_hist - keeps history of errors
ff8e20c6 437 * @pos: index to indicate cyclic buffer position
cff91daf 438 * @val: cyclic buffer for registers value
ff8e20c6 439 * @tstamp: cyclic buffer for time stamp
b6cacaf2 440 * @cnt: error counter
ff8e20c6 441 */
e965e5e0 442struct ufs_event_hist {
ff8e20c6 443 int pos;
e965e5e0 444 u32 val[UFS_EVENT_HIST_LENGTH];
0f85e747 445 u64 tstamp[UFS_EVENT_HIST_LENGTH];
b6cacaf2 446 unsigned long long cnt;
ff8e20c6
DR
447};
448
449/**
450 * struct ufs_stats - keeps usage/err statistics
3f8af604
CG
451 * @last_intr_status: record the last interrupt status.
452 * @last_intr_ts: record the last interrupt timestamp.
ff8e20c6
DR
453 * @hibern8_exit_cnt: Counter to keep track of number of exits,
454 * reset this after link-startup.
455 * @last_hibern8_exit_tstamp: Set time after the hibern8 exit.
456 * Clear after the first successful command completion.
cff91daf 457 * @event: array with event history.
ff8e20c6
DR
458 */
459struct ufs_stats {
3f8af604 460 u32 last_intr_status;
0f85e747 461 u64 last_intr_ts;
3f8af604 462
ff8e20c6 463 u32 hibern8_exit_cnt;
0f85e747 464 u64 last_hibern8_exit_tstamp;
e965e5e0 465 struct ufs_event_hist event[UFS_EVT_CNT];
ff8e20c6
DR
466};
467
9c202090
BVA
468/**
469 * enum ufshcd_state - UFS host controller state
470 * @UFSHCD_STATE_RESET: Link is not operational. Postpone SCSI command
471 * processing.
472 * @UFSHCD_STATE_OPERATIONAL: The host controller is operational and can process
473 * SCSI commands.
474 * @UFSHCD_STATE_EH_SCHEDULED_NON_FATAL: The error handler has been scheduled.
475 * SCSI commands may be submitted to the controller.
476 * @UFSHCD_STATE_EH_SCHEDULED_FATAL: The error handler has been scheduled. Fail
477 * newly submitted SCSI commands with error code DID_BAD_TARGET.
478 * @UFSHCD_STATE_ERROR: An unrecoverable error occurred, e.g. link recovery
479 * failed. Fail all SCSI commands with error code DID_ERROR.
480 */
481enum ufshcd_state {
482 UFSHCD_STATE_RESET,
483 UFSHCD_STATE_OPERATIONAL,
484 UFSHCD_STATE_EH_SCHEDULED_NON_FATAL,
485 UFSHCD_STATE_EH_SCHEDULED_FATAL,
486 UFSHCD_STATE_ERROR,
487};
488
c3f7d1fc
CH
489enum ufshcd_quirks {
490 /* Interrupt aggregation support is broken */
491 UFSHCD_QUIRK_BROKEN_INTR_AGGR = 1 << 0,
492
493 /*
494 * delay before each dme command is required as the unipro
495 * layer has shown instabilities
496 */
497 UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS = 1 << 1,
498
499 /*
500 * If UFS host controller is having issue in processing LCC (Line
501 * Control Command) coming from device then enable this quirk.
502 * When this quirk is enabled, host controller driver should disable
503 * the LCC transmission on UFS device (by clearing TX_LCC_ENABLE
504 * attribute of device to 0).
505 */
506 UFSHCD_QUIRK_BROKEN_LCC = 1 << 2,
507
508 /*
509 * The attribute PA_RXHSUNTERMCAP specifies whether or not the
510 * inbound Link supports unterminated line in HS mode. Setting this
511 * attribute to 1 fixes moving to HS gear.
512 */
513 UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP = 1 << 3,
514
515 /*
516 * This quirk needs to be enabled if the host controller only allows
517 * accessing the peer dme attributes in AUTO mode (FAST AUTO or
518 * SLOW AUTO).
519 */
520 UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE = 1 << 4,
521
522 /*
523 * This quirk needs to be enabled if the host controller doesn't
524 * advertise the correct version in UFS_VER register. If this quirk
525 * is enabled, standard UFS host driver will call the vendor specific
526 * ops (get_ufs_hci_version) to get the correct version.
527 */
528 UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION = 1 << 5,
87183841
AA
529
530 /*
531 * Clear handling for transfer/task request list is just opposite.
532 */
533 UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR = 1 << 6,
b638b5eb
AA
534
535 /*
536 * This quirk needs to be enabled if host controller doesn't allow
537 * that the interrupt aggregation timer and counter are reset by s/w.
538 */
539 UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR = 1 << 7,
39bf2d83
AA
540
541 /*
542 * This quirks needs to be enabled if host controller cannot be
543 * enabled via HCE register.
544 */
545 UFSHCI_QUIRK_BROKEN_HCE = 1 << 8,
26f968d7
AA
546
547 /*
548 * This quirk needs to be enabled if the host controller regards
549 * resolution of the values of PRDTO and PRDTL in UTRD as byte.
550 */
551 UFSHCD_QUIRK_PRDT_BYTE_GRAN = 1 << 9,
d779a6e9
KK
552
553 /*
554 * This quirk needs to be enabled if the host controller reports
555 * OCS FATAL ERROR with device error through sense data
556 */
557 UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR = 1 << 10,
5df6f2de 558
8da76f71
AH
559 /*
560 * This quirk needs to be enabled if the host controller has
561 * auto-hibernate capability but it doesn't work.
562 */
563 UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8 = 1 << 11,
02f74150 564
5df6f2de
KK
565 /*
566 * This quirk needs to disable manual flush for write booster
567 */
02f74150
MP
568 UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL = 1 << 12,
569
b1d0d2eb
KK
570 /*
571 * This quirk needs to disable unipro timeout values
572 * before power mode change
573 */
574 UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING = 1 << 13,
575
2b2bfc8a
KK
576 /*
577 * This quirk allows only sg entries aligned with page size.
578 */
9599a1cf 579 UFSHCD_QUIRK_ALIGN_SG_WITH_PAGE_SIZE = 1 << 14,
a22bcfdb 580
581 /*
582 * This quirk needs to be enabled if the host controller does not
583 * support UIC command
584 */
585 UFSHCD_QUIRK_BROKEN_UIC_CMD = 1 << 15,
10fb4f87 586
587 /*
588 * This quirk needs to be enabled if the host controller cannot
589 * support physical host configuration.
590 */
591 UFSHCD_QUIRK_SKIP_PH_CONFIGURATION = 1 << 16,
6554400d
YS
592
593 /*
594 * This quirk needs to be enabled if the host controller has
595 * 64-bit addressing supported capability but it doesn't work.
596 */
597 UFSHCD_QUIRK_BROKEN_64BIT_ADDRESS = 1 << 17,
2f11bbc2
YS
598
599 /*
600 * This quirk needs to be enabled if the host controller has
601 * auto-hibernate capability but it's FASTAUTO only.
602 */
603 UFSHCD_QUIRK_HIBERN_FASTAUTO = 1 << 18,
96a7141d
MS
604
605 /*
606 * This quirk needs to be enabled if the host controller needs
607 * to reinit the device after switching to maximum gear.
608 */
609 UFSHCD_QUIRK_REINIT_AFTER_MAX_GEAR_SWITCH = 1 << 19,
c3f7d1fc
CH
610};
611
c2014682
SC
612enum ufshcd_caps {
613 /* Allow dynamic clk gating */
614 UFSHCD_CAP_CLK_GATING = 1 << 0,
615
616 /* Allow hiberb8 with clk gating */
617 UFSHCD_CAP_HIBERN8_WITH_CLK_GATING = 1 << 1,
618
619 /* Allow dynamic clk scaling */
620 UFSHCD_CAP_CLK_SCALING = 1 << 2,
621
622 /* Allow auto bkops to enabled during runtime suspend */
623 UFSHCD_CAP_AUTO_BKOPS_SUSPEND = 1 << 3,
624
625 /*
626 * This capability allows host controller driver to use the UFS HCI's
627 * interrupt aggregation capability.
628 * CAUTION: Enabling this might reduce overall UFS throughput.
629 */
630 UFSHCD_CAP_INTR_AGGR = 1 << 4,
631
632 /*
633 * This capability allows the device auto-bkops to be always enabled
634 * except during suspend (both runtime and suspend).
635 * Enabling this capability means that device will always be allowed
636 * to do background operation when it's active but it might degrade
637 * the performance of ongoing read/write operations.
638 */
639 UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND = 1 << 5,
640
641 /*
642 * This capability allows host controller driver to automatically
643 * enable runtime power management by itself instead of waiting
644 * for userspace to control the power management.
645 */
646 UFSHCD_CAP_RPM_AUTOSUSPEND = 1 << 6,
3d17b9b5
AD
647
648 /*
649 * This capability allows the host controller driver to turn-on
650 * WriteBooster, if the underlying device supports it and is
651 * provisioned to be used. This would increase the write performance.
652 */
653 UFSHCD_CAP_WB_EN = 1 << 7,
5e7341e1
ST
654
655 /*
656 * This capability allows the host controller driver to use the
657 * inline crypto engine, if it is present
658 */
659 UFSHCD_CAP_CRYPTO = 1 << 8,
dd7143e2
CG
660
661 /*
662 * This capability allows the controller regulators to be put into
663 * lpm mode aggressively during clock gating.
664 * This would increase power savings.
665 */
666 UFSHCD_CAP_AGGR_POWER_COLLAPSE = 1 << 9,
fe1d4c2e
AH
667
668 /*
669 * This capability allows the host controller driver to use DeepSleep,
670 * if it is supported by the UFS device. The host controller driver must
671 * support device hardware reset via the hba->device_reset() callback,
672 * in order to exit DeepSleep state.
673 */
674 UFSHCD_CAP_DEEPSLEEP = 1 << 10,
e88e2d32
AA
675
676 /*
677 * This capability allows the host controller driver to use temperature
678 * notification if it is supported by the UFS device.
679 */
680 UFSHCD_CAP_TEMP_NOTIF = 1 << 11,
87bd0501
PW
681
682 /*
683 * Enable WriteBooster when scaling up the clock and disable
684 * WriteBooster when scaling the clock down.
685 */
686 UFSHCD_CAP_WB_WITH_CLK_SCALING = 1 << 12,
c2014682
SC
687};
688
90b8491c
SC
689struct ufs_hba_variant_params {
690 struct devfreq_dev_profile devfreq_profile;
691 struct devfreq_simple_ondemand_data ondemand_data;
692 u16 hba_enable_delay_us;
d14734ae 693 u32 wb_flush_threshold;
90b8491c
SC
694};
695
f02bc975
DP
696#ifdef CONFIG_SCSI_UFS_HPB
697/**
698 * struct ufshpb_dev_info - UFSHPB device related info
699 * @num_lu: the number of user logical unit to check whether all lu finished
700 * initialization
701 * @rgn_size: device reported HPB region size
702 * @srgn_size: device reported HPB sub-region size
703 * @slave_conf_cnt: counter to check all lu finished initialization
704 * @hpb_disabled: flag to check if HPB is disabled
41d8a933
DP
705 * @max_hpb_single_cmd: device reported bMAX_DATA_SIZE_FOR_SINGLE_CMD value
706 * @is_legacy: flag to check HPB 1.0
119ee38c 707 * @control_mode: either host or device
f02bc975
DP
708 */
709struct ufshpb_dev_info {
710 int num_lu;
711 int rgn_size;
712 int srgn_size;
713 atomic_t slave_conf_cnt;
714 bool hpb_disabled;
41d8a933
DP
715 u8 max_hpb_single_cmd;
716 bool is_legacy;
119ee38c 717 u8 control_mode;
f02bc975
DP
718};
719#endif
720
1d8613a2
CG
721struct ufs_hba_monitor {
722 unsigned long chunk_size;
723
724 unsigned long nr_sec_rw[2];
725 ktime_t total_busy[2];
726
727 unsigned long nr_req[2];
728 /* latencies*/
729 ktime_t lat_sum[2];
730 ktime_t lat_max[2];
731 ktime_t lat_min[2];
732
733 u32 nr_queued[2];
734 ktime_t busy_start_ts[2];
735
736 ktime_t enabled_ts;
737 bool enabled;
738};
739
c263b4ef
AD
740/**
741 * struct ufshcd_res_info_t - MCQ related resource regions
742 *
743 * @name: resource name
744 * @resource: pointer to resource region
745 * @base: register base address
746 */
747struct ufshcd_res_info {
748 const char *name;
749 struct resource *resource;
750 void __iomem *base;
751};
752
753enum ufshcd_res {
754 RES_UFS,
755 RES_MCQ,
756 RES_MCQ_SQD,
757 RES_MCQ_SQIS,
758 RES_MCQ_CQD,
759 RES_MCQ_CQIS,
760 RES_MCQ_VS,
761 RES_MAX,
762};
763
e0eca63e
VH
764/**
765 * struct ufs_hba - per adapter private structure
766 * @mmio_base: UFSHCI base register address
767 * @ucdl_base_addr: UFS Command Descriptor base address
768 * @utrdl_base_addr: UTP Transfer Request Descriptor base address
769 * @utmrdl_base_addr: UTP Task Management Descriptor base address
770 * @ucdl_dma_addr: UFS Command Descriptor DMA address
771 * @utrdl_dma_addr: UTRDL DMA address
772 * @utmrdl_dma_addr: UTMRDL DMA address
773 * @host: Scsi_Host instance of the driver
774 * @dev: device handle
e2106584 775 * @ufs_device_wlun: WLUN that controls the entire UFS device.
cff91daf
BVA
776 * @hwmon_device: device instance registered with the hwmon core.
777 * @curr_dev_pwr_mode: active UFS device power mode.
778 * @uic_link_state: active state of the link to the UFS device.
779 * @rpm_lvl: desired UFS power management level during runtime PM.
780 * @spm_lvl: desired UFS power management level during system PM.
781 * @pm_op_in_progress: whether or not a PM operation is in progress.
782 * @ahit: value of Auto-Hibernate Idle Timer register.
e0eca63e
VH
783 * @lrb: local reference block
784 * @outstanding_tasks: Bits representing outstanding task requests
169f5eb2 785 * @outstanding_lock: Protects @outstanding_reqs.
e0eca63e
VH
786 * @outstanding_reqs: Bits representing outstanding transfer requests
787 * @capabilities: UFS Controller Capabilities
6e1d850a 788 * @mcq_capabilities: UFS Multi Circular Queue capabilities
e0eca63e
VH
789 * @nutrs: Transfer Request Queue depth supported by controller
790 * @nutmrs: Task Management Queue depth supported by controller
945c3cca 791 * @reserved_slot: Used to submit device commands. Protected by @dev_cmd.lock.
e0eca63e 792 * @ufs_version: UFS Version to which controller complies
5c0c28a8 793 * @vops: pointer to variant specific operations
cff91daf 794 * @vps: pointer to variant specific parameters
5c0c28a8 795 * @priv: pointer to variant specific private data
ada1e653 796 * @sg_entry_size: size of struct ufshcd_sg_entry (may include variant fields)
e0eca63e 797 * @irq: Irq number of the controller
cff91daf
BVA
798 * @is_irq_enabled: whether or not the UFS controller interrupt is enabled.
799 * @dev_ref_clk_freq: reference clock frequency
800 * @quirks: bitmask with information about deviations from the UFSHCI standard.
801 * @dev_quirks: bitmask with information about deviations from the UFS standard.
69a6c269
BVA
802 * @tmf_tag_set: TMF tag set.
803 * @tmf_queue: Used to allocate TMF tags.
cff91daf
BVA
804 * @tmf_rqs: array with pointers to TMF requests while these are in progress.
805 * @active_uic_cmd: handle of active UIC command
806 * @uic_cmd_mutex: mutex for UIC command
807 * @uic_async_done: completion used during UIC processing
9c202090 808 * @ufshcd_state: UFSHCD state
3441da7d 809 * @eh_flags: Error handling flags
2fbd009b 810 * @intr_mask: Interrupt Mask Bits
66ec6d59 811 * @ee_ctrl_mask: Exception event control mask
cff91daf
BVA
812 * @ee_drv_mask: Exception event mask for driver
813 * @ee_usr_mask: Exception event mask for user (set via debugfs)
814 * @ee_ctrl_mutex: Used to serialize exception event information.
1d337ec2 815 * @is_powered: flag to check if HBA is powered
9cd20d3f
CG
816 * @shutting_down: flag to check if shutdown has been invoked
817 * @host_sem: semaphore used to serialize concurrent contexts
88b09900
AH
818 * @eh_wq: Workqueue that eh_work works on
819 * @eh_work: Worker to handle UFS errors that require s/w attention
66ec6d59 820 * @eeh_work: Worker to handle exception events
e0eca63e 821 * @errors: HBA errors
e8e7f271
SRT
822 * @uic_error: UFS interconnect layer error status
823 * @saved_err: sticky error mask
824 * @saved_uic_err: sticky UIC error mask
cff91daf 825 * @ufs_stats: various error counters
4db7a236 826 * @force_reset: flag to force eh_work perform a full reset
2355b66e 827 * @force_pmc: flag to force a power mode change
2df74b69 828 * @silence_err_logs: flag to silence error logs
5a0b0cb9 829 * @dev_cmd: ufs device management command information
cad2e03d 830 * @last_dme_cmd_tstamp: time stamp of the last completed DME command
cff91daf
BVA
831 * @nop_out_timeout: NOP OUT timeout value
832 * @dev_info: information about the UFS device
66ec6d59 833 * @auto_bkops_enabled: to track whether bkops is enabled in device
aa497613 834 * @vreg_info: UFS device voltage regulator information
c6e79dac 835 * @clk_list_head: UFS host controller clocks list node head
cff91daf
BVA
836 * @req_abort_count: number of times ufshcd_abort() has been called
837 * @lanes_per_direction: number of lanes per data direction between the UFS
838 * controller and the UFS device.
7eb584db
DR
839 * @pwr_info: holds current power mode
840 * @max_pwr_info: keeps the device max valid pwm
cff91daf
BVA
841 * @clk_gating: information related to clock gating
842 * @caps: bitmask with information about UFS controller capabilities
843 * @devfreq: frequency scaling information owned by the devfreq core
844 * @clk_scaling: frequency scaling information owned by the UFS driver
1a547cbc
BVA
845 * @system_suspending: system suspend has been started and system resume has
846 * not yet finished.
847 * @is_sys_suspended: UFS device has been suspended because of system suspend
afdfff59
YG
848 * @urgent_bkops_lvl: keeps track of urgent bkops level for device
849 * @is_urgent_bkops_lvl_checked: keeps track if the urgent bkops level for
850 * device is known or not.
cff91daf
BVA
851 * @clk_scaling_lock: used to serialize device commands and clock scaling
852 * @desc_size: descriptor sizes reported by device
38135535 853 * @scsi_block_reqs_cnt: reference counting for scsi block requests
cff91daf
BVA
854 * @bsg_dev: struct device associated with the BSG queue
855 * @bsg_queue: BSG queue associated with the UFS controller
856 * @rpm_dev_flush_recheck_work: used to suspend from RPM (runtime power
857 * management) after the UFS device has finished a WriteBooster buffer
858 * flush or auto BKOP.
859 * @ufshpb_dev: information related to HPB (Host Performance Booster).
860 * @monitor: statistics about UFS commands
70297a8a
ST
861 * @crypto_capabilities: Content of crypto capabilities register (0x100)
862 * @crypto_cap_array: Array of crypto capabilities
863 * @crypto_cfg_register: Start of the crypto cfg array
cb77cb5a 864 * @crypto_profile: the crypto profile of this hba (if applicable)
cff91daf
BVA
865 * @debugfs_root: UFS controller debugfs root directory
866 * @debugfs_ee_work: used to restore ee_ctrl_mask after a delay
867 * @debugfs_ee_rate_limit_ms: user configurable delay after which to restore
868 * ee_ctrl_mask
869 * @luns_avail: number of regular and well known LUNs supported by the UFS
870 * device
57b1c0ef
AD
871 * @nr_hw_queues: number of hardware queues configured
872 * @nr_queues: number of Queues of different queue types
cff91daf
BVA
873 * @complete_put: whether or not to call ufshcd_rpm_put() from inside
874 * ufshcd_resume_complete()
6e1d850a 875 * @ext_iid_sup: is EXT_IID is supported by UFSHC
305a357d 876 * @mcq_sup: is mcq supported by UFSHC
c263b4ef
AD
877 * @res: array of resource info of MCQ registers
878 * @mcq_base: Multi circular queue registers base address
e0eca63e
VH
879 */
880struct ufs_hba {
881 void __iomem *mmio_base;
882
883 /* Virtual memory reference */
884 struct utp_transfer_cmd_desc *ucdl_base_addr;
885 struct utp_transfer_req_desc *utrdl_base_addr;
886 struct utp_task_req_desc *utmrdl_base_addr;
887
888 /* DMA memory reference */
889 dma_addr_t ucdl_dma_addr;
890 dma_addr_t utrdl_dma_addr;
891 dma_addr_t utmrdl_dma_addr;
892
893 struct Scsi_Host *host;
894 struct device *dev;
e2106584 895 struct scsi_device *ufs_device_wlun;
e0eca63e 896
e88e2d32
AA
897#ifdef CONFIG_SCSI_UFS_HWMON
898 struct device *hwmon_device;
899#endif
900
57d104c1
SJ
901 enum ufs_dev_pwr_mode curr_dev_pwr_mode;
902 enum uic_link_state uic_link_state;
903 /* Desired UFS power management level during runtime PM */
904 enum ufs_pm_level rpm_lvl;
905 /* Desired UFS power management level during system PM */
906 enum ufs_pm_level spm_lvl;
907 int pm_op_in_progress;
908
ad448378
AH
909 /* Auto-Hibernate Idle Timer register value */
910 u32 ahit;
911
e0eca63e
VH
912 struct ufshcd_lrb *lrb;
913
914 unsigned long outstanding_tasks;
169f5eb2 915 spinlock_t outstanding_lock;
e0eca63e
VH
916 unsigned long outstanding_reqs;
917
918 u32 capabilities;
919 int nutrs;
6e1d850a 920 u32 mcq_capabilities;
e0eca63e 921 int nutmrs;
945c3cca 922 u32 reserved_slot;
e0eca63e 923 u32 ufs_version;
176eb927 924 const struct ufs_hba_variant_ops *vops;
90b8491c 925 struct ufs_hba_variant_params *vps;
5c0c28a8 926 void *priv;
ada1e653
EB
927#ifdef CONFIG_SCSI_UFS_VARIABLE_SG_ENTRY_SIZE
928 size_t sg_entry_size;
929#endif
e0eca63e 930 unsigned int irq;
57d104c1 931 bool is_irq_enabled;
9e1e8a75 932 enum ufs_ref_clk_freq dev_ref_clk_freq;
e0eca63e 933
cad2e03d 934 unsigned int quirks; /* Deviations from standard UFSHCI spec. */
6ccf44fe 935
c58ab7aa
YG
936 /* Device deviations from standard UFS device spec. */
937 unsigned int dev_quirks;
938
69a6c269
BVA
939 struct blk_mq_tag_set tmf_tag_set;
940 struct request_queue *tmf_queue;
f5ef336f 941 struct request **tmf_rqs;
e0eca63e 942
57d104c1
SJ
943 struct uic_command *active_uic_cmd;
944 struct mutex uic_cmd_mutex;
945 struct completion *uic_async_done;
53b3d9c3 946
9c202090 947 enum ufshcd_state ufshcd_state;
3441da7d 948 u32 eh_flags;
2fbd009b 949 u32 intr_mask;
cff91daf
BVA
950 u16 ee_ctrl_mask;
951 u16 ee_drv_mask;
952 u16 ee_usr_mask;
cd469475 953 struct mutex ee_ctrl_mutex;
1d337ec2 954 bool is_powered;
9cd20d3f
CG
955 bool shutting_down;
956 struct semaphore host_sem;
e0eca63e
VH
957
958 /* Work Queues */
88b09900
AH
959 struct workqueue_struct *eh_wq;
960 struct work_struct eh_work;
66ec6d59 961 struct work_struct eeh_work;
e0eca63e
VH
962
963 /* HBA Errors */
964 u32 errors;
e8e7f271
SRT
965 u32 uic_error;
966 u32 saved_err;
967 u32 saved_uic_err;
ff8e20c6 968 struct ufs_stats ufs_stats;
4db7a236 969 bool force_reset;
2355b66e 970 bool force_pmc;
2df74b69 971 bool silence_err_logs;
5a0b0cb9
SRT
972
973 /* Device management request data */
974 struct ufs_dev_cmd dev_cmd;
cad2e03d 975 ktime_t last_dme_cmd_tstamp;
1cbc9ad3 976 int nop_out_timeout;
66ec6d59 977
57d104c1
SJ
978 /* Keeps information of the UFS device connected to this host */
979 struct ufs_dev_info dev_info;
66ec6d59 980 bool auto_bkops_enabled;
aa497613 981 struct ufs_vreg_info vreg_info;
c6e79dac 982 struct list_head clk_list_head;
57d104c1 983
7fabb77b
GB
984 /* Number of requests aborts */
985 int req_abort_count;
986
54b879b7
YG
987 /* Number of lanes available (1 or 2) for Rx/Tx */
988 u32 lanes_per_direction;
7eb584db
DR
989 struct ufs_pa_layer_attr pwr_info;
990 struct ufs_pwr_mode_info max_pwr_info;
1ab27c9c
ST
991
992 struct ufs_clk_gating clk_gating;
993 /* Control to enable/disable host capabilities */
994 u32 caps;
856b3483
ST
995
996 struct devfreq *devfreq;
997 struct ufs_clk_scaling clk_scaling;
1a547cbc 998 bool system_suspending;
e785060e 999 bool is_sys_suspended;
afdfff59
YG
1000
1001 enum bkops_status urgent_bkops_lvl;
1002 bool is_urgent_bkops_lvl_checked;
a3cd5ec5 1003
1004 struct rw_semaphore clk_scaling_lock;
38135535 1005 atomic_t scsi_block_reqs_cnt;
df032bf2
AA
1006
1007 struct device bsg_dev;
1008 struct request_queue *bsg_queue;
51dd905b 1009 struct delayed_work rpm_dev_flush_recheck_work;
70297a8a 1010
f02bc975
DP
1011#ifdef CONFIG_SCSI_UFS_HPB
1012 struct ufshpb_dev_info ufshpb_dev;
1013#endif
1014
1d8613a2
CG
1015 struct ufs_hba_monitor monitor;
1016
70297a8a
ST
1017#ifdef CONFIG_SCSI_UFS_CRYPTO
1018 union ufs_crypto_capabilities crypto_capabilities;
1019 union ufs_crypto_cap_entry *crypto_cap_array;
1020 u32 crypto_cfg_register;
cb77cb5a 1021 struct blk_crypto_profile crypto_profile;
70297a8a 1022#endif
b6cacaf2
AH
1023#ifdef CONFIG_DEBUG_FS
1024 struct dentry *debugfs_root;
7deedfda
AH
1025 struct delayed_work debugfs_ee_work;
1026 u32 debugfs_ee_rate_limit_ms;
b6cacaf2 1027#endif
b294ff3e 1028 u32 luns_avail;
57b1c0ef
AD
1029 unsigned int nr_hw_queues;
1030 unsigned int nr_queues[HCTX_MAX_TYPES];
b294ff3e 1031 bool complete_put;
6e1d850a 1032 bool ext_iid_sup;
0cab4023 1033 bool scsi_host_added;
305a357d 1034 bool mcq_sup;
c263b4ef
AD
1035 struct ufshcd_res_info res[RES_MAX];
1036 void __iomem *mcq_base;
e0eca63e
VH
1037};
1038
ada1e653
EB
1039#ifdef CONFIG_SCSI_UFS_VARIABLE_SG_ENTRY_SIZE
1040static inline size_t ufshcd_sg_entry_size(const struct ufs_hba *hba)
1041{
1042 return hba->sg_entry_size;
1043}
1044
1045static inline void ufshcd_set_sg_entry_size(struct ufs_hba *hba, size_t sg_entry_size)
1046{
1047 WARN_ON_ONCE(sg_entry_size < sizeof(struct ufshcd_sg_entry));
1048 hba->sg_entry_size = sg_entry_size;
1049}
1050#else
1051static inline size_t ufshcd_sg_entry_size(const struct ufs_hba *hba)
1052{
1053 return sizeof(struct ufshcd_sg_entry);
1054}
1055
1056#define ufshcd_set_sg_entry_size(hba, sg_entry_size) \
1057 ({ (void)(hba); BUILD_BUG_ON(sg_entry_size != sizeof(struct ufshcd_sg_entry)); })
1058#endif
1059
1060static inline size_t sizeof_utp_transfer_cmd_desc(const struct ufs_hba *hba)
1061{
1062 return sizeof(struct utp_transfer_cmd_desc) + SG_ALL * ufshcd_sg_entry_size(hba);
1063}
1064
1ab27c9c
ST
1065/* Returns true if clocks can be gated. Otherwise false */
1066static inline bool ufshcd_is_clkgating_allowed(struct ufs_hba *hba)
1067{
1068 return hba->caps & UFSHCD_CAP_CLK_GATING;
1069}
1070static inline bool ufshcd_can_hibern8_during_gating(struct ufs_hba *hba)
1071{
1072 return hba->caps & UFSHCD_CAP_HIBERN8_WITH_CLK_GATING;
1073}
fcb0c4b0 1074static inline int ufshcd_is_clkscaling_supported(struct ufs_hba *hba)
856b3483
ST
1075{
1076 return hba->caps & UFSHCD_CAP_CLK_SCALING;
1077}
374a246e
SJ
1078static inline bool ufshcd_can_autobkops_during_suspend(struct ufs_hba *hba)
1079{
1080 return hba->caps & UFSHCD_CAP_AUTO_BKOPS_SUSPEND;
1081}
49615ba1
SC
1082static inline bool ufshcd_is_rpm_autosuspend_allowed(struct ufs_hba *hba)
1083{
1084 return hba->caps & UFSHCD_CAP_RPM_AUTOSUSPEND;
1085}
374a246e 1086
b852190e
YG
1087static inline bool ufshcd_is_intr_aggr_allowed(struct ufs_hba *hba)
1088{
1c0810e7
KP
1089 return (hba->caps & UFSHCD_CAP_INTR_AGGR) &&
1090 !(hba->quirks & UFSHCD_QUIRK_BROKEN_INTR_AGGR);
b852190e
YG
1091}
1092
dd7143e2
CG
1093static inline bool ufshcd_can_aggressive_pc(struct ufs_hba *hba)
1094{
1095 return !!(ufshcd_is_link_hibern8(hba) &&
1096 (hba->caps & UFSHCD_CAP_AGGR_POWER_COLLAPSE));
1097}
1098
ee5f1042
SC
1099static inline bool ufshcd_is_auto_hibern8_supported(struct ufs_hba *hba)
1100{
8da76f71
AH
1101 return (hba->capabilities & MASK_AUTO_HIBERN8_SUPPORT) &&
1102 !(hba->quirks & UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8);
ee5f1042
SC
1103}
1104
5a244e0e
SC
1105static inline bool ufshcd_is_auto_hibern8_enabled(struct ufs_hba *hba)
1106{
51d1628f 1107 return FIELD_GET(UFSHCI_AHIBERN8_TIMER_MASK, hba->ahit);
5a244e0e
SC
1108}
1109
3d17b9b5
AD
1110static inline bool ufshcd_is_wb_allowed(struct ufs_hba *hba)
1111{
1112 return hba->caps & UFSHCD_CAP_WB_EN;
1113}
1114
87bd0501
PW
1115static inline bool ufshcd_enable_wb_if_scaling_up(struct ufs_hba *hba)
1116{
1117 return hba->caps & UFSHCD_CAP_WB_WITH_CLK_SCALING;
1118}
1119
b873a275
SJ
1120#define ufshcd_writel(hba, val, reg) \
1121 writel((val), (hba)->mmio_base + (reg))
1122#define ufshcd_readl(hba, reg) \
1123 readl((hba)->mmio_base + (reg))
1124
e785060e 1125/**
cff91daf
BVA
1126 * ufshcd_rmwl - perform read/modify/write for a controller register
1127 * @hba: per adapter instance
1128 * @mask: mask to apply on read value
1129 * @val: actual value to write
1130 * @reg: register address
e785060e
DR
1131 */
1132static inline void ufshcd_rmwl(struct ufs_hba *hba, u32 mask, u32 val, u32 reg)
1133{
1134 u32 tmp;
1135
1136 tmp = ufshcd_readl(hba, reg);
1137 tmp &= ~mask;
1138 tmp |= (val & mask);
1139 ufshcd_writel(hba, tmp, reg);
1140}
1141
5c0c28a8 1142int ufshcd_alloc_host(struct device *, struct ufs_hba **);
47555a5c 1143void ufshcd_dealloc_host(struct ufs_hba *);
9d19bf7a 1144int ufshcd_hba_enable(struct ufs_hba *hba);
ecd7beb3 1145int ufshcd_init(struct ufs_hba *, void __iomem *, unsigned int);
087c5efa 1146int ufshcd_link_recovery(struct ufs_hba *hba);
9d19bf7a 1147int ufshcd_make_hba_operational(struct ufs_hba *hba);
e0eca63e 1148void ufshcd_remove(struct ufs_hba *);
525943a5 1149int ufshcd_uic_hibern8_enter(struct ufs_hba *hba);
9d19bf7a 1150int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
5c955c10 1151void ufshcd_delay_us(unsigned long us, unsigned long tolerance);
9e1e8a75 1152void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk);
e965e5e0 1153void ufshcd_update_evt_hist(struct ufs_hba *hba, u32 id, u32 val);
3a95f5b3 1154void ufshcd_hba_stop(struct ufs_hba *hba);
267a59f6 1155void ufshcd_schedule_eh_work(struct ufs_hba *hba);
e0eca63e 1156
1ce5898a
YG
1157/**
1158 * ufshcd_set_variant - set variant specific data to the hba
cff91daf
BVA
1159 * @hba: per adapter instance
1160 * @variant: pointer to variant specific data
1ce5898a
YG
1161 */
1162static inline void ufshcd_set_variant(struct ufs_hba *hba, void *variant)
1163{
1164 BUG_ON(!hba);
1165 hba->priv = variant;
1166}
1167
1168/**
1169 * ufshcd_get_variant - get variant specific data from the hba
cff91daf 1170 * @hba: per adapter instance
1ce5898a
YG
1171 */
1172static inline void *ufshcd_get_variant(struct ufs_hba *hba)
1173{
1174 BUG_ON(!hba);
1175 return hba->priv;
1176}
e88e2d32 1177
9bb25e5d 1178#ifdef CONFIG_PM
f1ecbe1e
BVA
1179extern int ufshcd_runtime_suspend(struct device *dev);
1180extern int ufshcd_runtime_resume(struct device *dev);
9bb25e5d
BVA
1181#endif
1182#ifdef CONFIG_PM_SLEEP
f1ecbe1e
BVA
1183extern int ufshcd_system_suspend(struct device *dev);
1184extern int ufshcd_system_resume(struct device *dev);
9bb25e5d 1185#endif
57d104c1 1186extern int ufshcd_shutdown(struct ufs_hba *hba);
fc85a74e
SC
1187extern int ufshcd_dme_configure_adapt(struct ufs_hba *hba,
1188 int agreed_gear,
1189 int adapt_val);
12b4fdb4
SJ
1190extern int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
1191 u8 attr_set, u32 mib_val, u8 peer);
1192extern int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
1193 u32 *mib_val, u8 peer);
0d846e70
AA
1194extern int ufshcd_config_pwr_mode(struct ufs_hba *hba,
1195 struct ufs_pa_layer_attr *desired_pwr_mode);
fc53683b 1196extern int ufshcd_uic_change_pwr_mode(struct ufs_hba *hba, u8 mode);
12b4fdb4
SJ
1197
1198/* UIC command interfaces for DME primitives */
1199#define DME_LOCAL 0
1200#define DME_PEER 1
1201#define ATTR_SET_NOR 0 /* NORMAL */
1202#define ATTR_SET_ST 1 /* STATIC */
1203
1204static inline int ufshcd_dme_set(struct ufs_hba *hba, u32 attr_sel,
1205 u32 mib_val)
1206{
1207 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
1208 mib_val, DME_LOCAL);
1209}
1210
1211static inline int ufshcd_dme_st_set(struct ufs_hba *hba, u32 attr_sel,
1212 u32 mib_val)
1213{
1214 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
1215 mib_val, DME_LOCAL);
1216}
1217
1218static inline int ufshcd_dme_peer_set(struct ufs_hba *hba, u32 attr_sel,
1219 u32 mib_val)
1220{
1221 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
1222 mib_val, DME_PEER);
1223}
1224
1225static inline int ufshcd_dme_peer_st_set(struct ufs_hba *hba, u32 attr_sel,
1226 u32 mib_val)
1227{
1228 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
1229 mib_val, DME_PEER);
1230}
1231
1232static inline int ufshcd_dme_get(struct ufs_hba *hba,
1233 u32 attr_sel, u32 *mib_val)
1234{
1235 return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_LOCAL);
1236}
1237
1238static inline int ufshcd_dme_peer_get(struct ufs_hba *hba,
1239 u32 attr_sel, u32 *mib_val)
1240{
1241 return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_PEER);
1242}
1243
f37aabcf
YG
1244static inline bool ufshcd_is_hs_mode(struct ufs_pa_layer_attr *pwr_info)
1245{
1246 return (pwr_info->pwr_rx == FAST_MODE ||
1247 pwr_info->pwr_rx == FASTAUTO_MODE) &&
1248 (pwr_info->pwr_tx == FAST_MODE ||
1249 pwr_info->pwr_tx == FASTAUTO_MODE);
1250}
1251
984eaac1
SC
1252static inline int ufshcd_disable_host_tx_lcc(struct ufs_hba *hba)
1253{
1254 return ufshcd_dme_set(hba, UIC_ARG_MIB(PA_LOCAL_TX_LCC_ENABLE), 0);
1255}
1256
71d848b8 1257void ufshcd_auto_hibern8_enable(struct ufs_hba *hba);
ba7af5ec 1258void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit);
aead21f3
BVA
1259void ufshcd_fixup_dev_quirks(struct ufs_hba *hba,
1260 const struct ufs_dev_quirk *fixups);
4b828fe1
TW
1261#define SD_ASCII_STD true
1262#define SD_RAW false
1263int ufshcd_read_string_desc(struct ufs_hba *hba, u8 desc_index,
1264 u8 **buf, bool ascii);
2238d31c 1265
1ab27c9c
ST
1266int ufshcd_hold(struct ufs_hba *hba, bool async);
1267void ufshcd_release(struct ufs_hba *hba);
a4b0e8a4 1268
ad8a647e
BVA
1269void ufshcd_clkgate_delay_set(struct device *dev, unsigned long value);
1270
37113106 1271u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba);
0263bcd0 1272
1d6f9dec
SC
1273int ufshcd_get_vreg(struct device *dev, struct ufs_vreg *vreg);
1274
e77044c5
AA
1275int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd);
1276
5e0a86ee
AA
1277int ufshcd_exec_raw_upiu_cmd(struct ufs_hba *hba,
1278 struct utp_upiu_req *req_upiu,
1279 struct utp_upiu_req *rsp_upiu,
1280 int msgcode,
1281 u8 *desc_buff, int *buff_len,
1282 enum query_opcode desc_op);
6ff265fc
BH
1283int ufshcd_advanced_rpmb_req_handler(struct ufs_hba *hba, struct utp_upiu_req *req_upiu,
1284 struct utp_upiu_req *rsp_upiu, struct ufs_ehs *ehs_req,
1285 struct ufs_ehs *ehs_rsp, int sg_cnt,
1286 struct scatterlist *sg_list, enum dma_data_direction dir);
3b5f3c0d 1287int ufshcd_wb_toggle(struct ufs_hba *hba, bool enable);
6c4148ce 1288int ufshcd_wb_toggle_buf_flush(struct ufs_hba *hba, bool enable);
b294ff3e 1289int ufshcd_suspend_prepare(struct device *dev);
ddba1cf7 1290int __ufshcd_suspend_prepare(struct device *dev, bool rpm_ok_for_spm);
b294ff3e 1291void ufshcd_resume_complete(struct device *dev);
8e834ca5 1292
0263bcd0 1293/* Wrapper functions for safely calling variant operations */
0263bcd0
YG
1294static inline int ufshcd_vops_init(struct ufs_hba *hba)
1295{
1296 if (hba->vops && hba->vops->init)
1297 return hba->vops->init(hba);
1298
1299 return 0;
1300}
1301
92bcebe4
SC
1302static inline int ufshcd_vops_phy_initialization(struct ufs_hba *hba)
1303{
1304 if (hba->vops && hba->vops->phy_initialization)
1305 return hba->vops->phy_initialization(hba);
1306
1307 return 0;
1308}
1309
35d11ec2 1310extern const struct ufs_pm_lvl_states ufs_pm_lvl_states[];
cbb6813e 1311
ba80917d
TW
1312int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
1313 const char *prefix);
1314
7deedfda
AH
1315int __ufshcd_write_ee_control(struct ufs_hba *hba, u32 ee_ctrl_mask);
1316int ufshcd_write_ee_control(struct ufs_hba *hba);
35d11ec2
KK
1317int ufshcd_update_ee_control(struct ufs_hba *hba, u16 *mask,
1318 const u16 *other_mask, u16 set, u16 clr);
cd469475 1319
e0eca63e 1320#endif /* End of Header */