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