1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Universal Flash Storage Host controller driver
4 * Copyright (C) 2011-2013 Samsung India Software Operations
5 * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
8 * Santosh Yaraganavi <santosh.sy@samsung.com>
9 * Vinayak Holikatti <h.vinayak@samsung.com>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/interrupt.h>
20 #include <linux/delay.h>
21 #include <linux/slab.h>
22 #include <linux/spinlock.h>
23 #include <linux/rwsem.h>
24 #include <linux/workqueue.h>
25 #include <linux/errno.h>
26 #include <linux/types.h>
27 #include <linux/wait.h>
28 #include <linux/bitops.h>
29 #include <linux/pm_runtime.h>
30 #include <linux/clk.h>
31 #include <linux/completion.h>
32 #include <linux/regulator/consumer.h>
33 #include <linux/bitfield.h>
34 #include <linux/devfreq.h>
35 #include <linux/keyslot-manager.h>
39 #include <asm/byteorder.h>
40 #include <scsi/scsi.h>
41 #include <scsi/scsi_cmnd.h>
42 #include <scsi/scsi_host.h>
43 #include <scsi/scsi_tcq.h>
44 #include <scsi/scsi_dbg.h>
45 #include <scsi/scsi_eh.h>
48 #include "ufs_quirks.h"
51 #define UFSHCD "ufshcd"
52 #define UFSHCD_DRIVER_VERSION "0.2"
57 DEV_CMD_TYPE_NOP = 0x0,
58 DEV_CMD_TYPE_QUERY = 0x1,
62 /* uic specific errors */
70 UFS_EVT_AUTO_HIBERN8_ERR,
72 UFS_EVT_LINK_STARTUP_FAIL,
87 * struct uic_command - UIC command structure
88 * @command: UIC command
89 * @argument1: UIC command argument 1
90 * @argument2: UIC command argument 2
91 * @argument3: UIC command argument 3
92 * @cmd_active: Indicate if UIC command is outstanding
93 * @done: UIC command completion
101 struct completion done;
104 /* Used to differentiate the power management options */
111 /* Host <-> Device UniPro Link state */
112 enum uic_link_state {
113 UIC_LINK_OFF_STATE = 0, /* Link powered down or disabled */
114 UIC_LINK_ACTIVE_STATE = 1, /* Link is in Fast/Slow/Sleep state */
115 UIC_LINK_HIBERN8_STATE = 2, /* Link is in Hibernate state */
116 UIC_LINK_BROKEN_STATE = 3, /* Link is in broken state */
119 #define ufshcd_is_link_off(hba) ((hba)->uic_link_state == UIC_LINK_OFF_STATE)
120 #define ufshcd_is_link_active(hba) ((hba)->uic_link_state == \
121 UIC_LINK_ACTIVE_STATE)
122 #define ufshcd_is_link_hibern8(hba) ((hba)->uic_link_state == \
123 UIC_LINK_HIBERN8_STATE)
124 #define ufshcd_is_link_broken(hba) ((hba)->uic_link_state == \
125 UIC_LINK_BROKEN_STATE)
126 #define ufshcd_set_link_off(hba) ((hba)->uic_link_state = UIC_LINK_OFF_STATE)
127 #define ufshcd_set_link_active(hba) ((hba)->uic_link_state = \
128 UIC_LINK_ACTIVE_STATE)
129 #define ufshcd_set_link_hibern8(hba) ((hba)->uic_link_state = \
130 UIC_LINK_HIBERN8_STATE)
131 #define ufshcd_set_link_broken(hba) ((hba)->uic_link_state = \
132 UIC_LINK_BROKEN_STATE)
134 #define ufshcd_set_ufs_dev_active(h) \
135 ((h)->curr_dev_pwr_mode = UFS_ACTIVE_PWR_MODE)
136 #define ufshcd_set_ufs_dev_sleep(h) \
137 ((h)->curr_dev_pwr_mode = UFS_SLEEP_PWR_MODE)
138 #define ufshcd_set_ufs_dev_poweroff(h) \
139 ((h)->curr_dev_pwr_mode = UFS_POWERDOWN_PWR_MODE)
140 #define ufshcd_set_ufs_dev_deepsleep(h) \
141 ((h)->curr_dev_pwr_mode = UFS_DEEPSLEEP_PWR_MODE)
142 #define ufshcd_is_ufs_dev_active(h) \
143 ((h)->curr_dev_pwr_mode == UFS_ACTIVE_PWR_MODE)
144 #define ufshcd_is_ufs_dev_sleep(h) \
145 ((h)->curr_dev_pwr_mode == UFS_SLEEP_PWR_MODE)
146 #define ufshcd_is_ufs_dev_poweroff(h) \
147 ((h)->curr_dev_pwr_mode == UFS_POWERDOWN_PWR_MODE)
148 #define ufshcd_is_ufs_dev_deepsleep(h) \
149 ((h)->curr_dev_pwr_mode == UFS_DEEPSLEEP_PWR_MODE)
152 * UFS Power management levels.
153 * Each level is in increasing order of power savings, except DeepSleep
154 * which is lower than PowerDown with power on but not PowerDown with
168 struct ufs_pm_lvl_states {
169 enum ufs_dev_pwr_mode dev_state;
170 enum uic_link_state link_state;
174 * struct ufshcd_lrb - local reference block
175 * @utr_descriptor_ptr: UTRD address of the command
176 * @ucd_req_ptr: UCD address of the command
177 * @ucd_rsp_ptr: Response UPIU address for this command
178 * @ucd_prdt_ptr: PRDT address of the command
179 * @utrd_dma_addr: UTRD dma address for debug
180 * @ucd_prdt_dma_addr: PRDT dma address for debug
181 * @ucd_rsp_dma_addr: UPIU response dma address for debug
182 * @ucd_req_dma_addr: UPIU request dma address for debug
183 * @cmd: pointer to SCSI command
184 * @sense_buffer: pointer to sense buffer address of the SCSI command
185 * @sense_bufflen: Length of the sense buffer
186 * @scsi_status: SCSI status of the command
187 * @command_type: SCSI, UFS, Query.
188 * @task_tag: Task tag of the command
189 * @lun: LUN of the command
190 * @intr_cmd: Interrupt command (doesn't participate in interrupt aggregation)
191 * @issue_time_stamp: time stamp for debug purposes
192 * @compl_time_stamp: time stamp for statistics
193 * @crypto_key_slot: the key slot to use for inline crypto (-1 if none)
194 * @data_unit_num: the data unit number for the first block for inline crypto
195 * @req_abort_skip: skip request abort task flag
198 struct utp_transfer_req_desc *utr_descriptor_ptr;
199 struct utp_upiu_req *ucd_req_ptr;
200 struct utp_upiu_rsp *ucd_rsp_ptr;
201 struct ufshcd_sg_entry *ucd_prdt_ptr;
203 dma_addr_t utrd_dma_addr;
204 dma_addr_t ucd_req_dma_addr;
205 dma_addr_t ucd_rsp_dma_addr;
206 dma_addr_t ucd_prdt_dma_addr;
208 struct scsi_cmnd *cmd;
210 unsigned int sense_bufflen;
215 u8 lun; /* UPIU LUN id field is only 8-bit wide */
217 ktime_t issue_time_stamp;
218 ktime_t compl_time_stamp;
219 #ifdef CONFIG_SCSI_UFS_CRYPTO
228 * struct ufs_query - holds relevant data structures for query request
229 * @request: request upiu and function
230 * @descriptor: buffer for sending/receiving descriptor
231 * @response: response upiu and response
234 struct ufs_query_req request;
236 struct ufs_query_res response;
240 * struct ufs_dev_cmd - all assosiated fields with device management commands
241 * @type: device management command type - Query, NOP OUT
242 * @lock: lock to allow one command at a time
243 * @complete: internal commands completion
246 enum dev_cmd_type type;
248 struct completion *complete;
249 struct ufs_query query;
253 * struct ufs_clk_info - UFS clock related info
254 * @list: list headed by hba->clk_list_head
257 * @max_freq: maximum frequency supported by the clock
258 * @min_freq: min frequency that can be used for clock scaling
259 * @curr_freq: indicates the current frequency that it is set to
260 * @keep_link_active: indicates that the clk should not be disabled if
262 * @enabled: variable to check against multiple enable/disable
264 struct ufs_clk_info {
265 struct list_head list;
271 bool keep_link_active;
275 enum ufs_notify_change_status {
280 struct ufs_pa_layer_attr {
290 struct ufs_pwr_mode_info {
292 struct ufs_pa_layer_attr info;
296 * struct ufs_hba_variant_ops - variant specific callbacks
297 * @name: variant name
298 * @init: called when the driver is initialized
299 * @exit: called to cleanup everything done in init
300 * @get_ufs_hci_version: called to get UFS HCI version
301 * @clk_scale_notify: notifies that clks are scaled up/down
302 * @setup_clocks: called before touching any of the controller registers
303 * @hce_enable_notify: called before and after HCE enable bit is set to allow
304 * variant specific Uni-Pro initialization.
305 * @link_startup_notify: called before and after Link startup is carried out
306 * to allow variant specific Uni-Pro initialization.
307 * @pwr_change_notify: called before and after a power mode change
308 * is carried out to allow vendor spesific capabilities
310 * @setup_xfer_req: called before any transfer request is issued
312 * @setup_task_mgmt: called before any task management request is issued
314 * @hibern8_notify: called around hibern8 enter/exit
315 * @apply_dev_quirks: called to apply device specific quirks
316 * @suspend: called during host controller PM callback
317 * @resume: called during host controller PM callback
318 * @dbg_register_dump: used to dump controller debug information
319 * @phy_initialization: used to initialize phys
320 * @device_reset: called to issue a reset pulse on the UFS device
321 * @program_key: program or evict an inline encryption key
322 * @event_notify: called to notify important events
324 struct ufs_hba_variant_ops {
326 int (*init)(struct ufs_hba *);
327 void (*exit)(struct ufs_hba *);
328 u32 (*get_ufs_hci_version)(struct ufs_hba *);
329 int (*clk_scale_notify)(struct ufs_hba *, bool,
330 enum ufs_notify_change_status);
331 int (*setup_clocks)(struct ufs_hba *, bool,
332 enum ufs_notify_change_status);
333 int (*hce_enable_notify)(struct ufs_hba *,
334 enum ufs_notify_change_status);
335 int (*link_startup_notify)(struct ufs_hba *,
336 enum ufs_notify_change_status);
337 int (*pwr_change_notify)(struct ufs_hba *,
338 enum ufs_notify_change_status status,
339 struct ufs_pa_layer_attr *,
340 struct ufs_pa_layer_attr *);
341 void (*setup_xfer_req)(struct ufs_hba *, int, bool);
342 void (*setup_task_mgmt)(struct ufs_hba *, int, u8);
343 void (*hibern8_notify)(struct ufs_hba *, enum uic_cmd_dme,
344 enum ufs_notify_change_status);
345 int (*apply_dev_quirks)(struct ufs_hba *hba);
346 void (*fixup_dev_quirks)(struct ufs_hba *hba);
347 int (*suspend)(struct ufs_hba *, enum ufs_pm_op);
348 int (*resume)(struct ufs_hba *, enum ufs_pm_op);
349 void (*dbg_register_dump)(struct ufs_hba *hba);
350 int (*phy_initialization)(struct ufs_hba *);
351 int (*device_reset)(struct ufs_hba *hba);
352 void (*config_scaling_param)(struct ufs_hba *hba,
353 struct devfreq_dev_profile *profile,
355 int (*program_key)(struct ufs_hba *hba,
356 const union ufs_crypto_cfg_entry *cfg, int slot);
357 void (*event_notify)(struct ufs_hba *hba,
358 enum ufs_event_type evt, void *data);
361 /* clock gating state */
362 enum clk_gating_state {
370 * struct ufs_clk_gating - UFS clock gating related info
371 * @gate_work: worker to turn off clocks after some delay as specified in
373 * @ungate_work: worker to turn on clocks that will be used in case of
375 * @state: the current clocks state
376 * @delay_ms: gating delay in ms
377 * @is_suspended: clk gating is suspended when set to 1 which can be used
378 * during suspend/resume
379 * @delay_attr: sysfs attribute to control delay_attr
380 * @enable_attr: sysfs attribute to enable/disable clock gating
381 * @is_enabled: Indicates the current status of clock gating
382 * @is_initialized: Indicates whether clock gating is initialized or not
383 * @active_reqs: number of requests that are pending and should be waited for
384 * completion before gating clocks.
386 struct ufs_clk_gating {
387 struct delayed_work gate_work;
388 struct work_struct ungate_work;
389 enum clk_gating_state state;
390 unsigned long delay_ms;
392 struct device_attribute delay_attr;
393 struct device_attribute enable_attr;
397 struct workqueue_struct *clk_gating_workq;
400 struct ufs_saved_pwr_info {
401 struct ufs_pa_layer_attr info;
406 * struct ufs_clk_scaling - UFS clock scaling related data
407 * @active_reqs: number of requests that are pending. If this is zero when
408 * devfreq ->target() function is called then schedule "suspend_work" to
410 * @tot_busy_t: Total busy time in current polling window
411 * @window_start_t: Start time (in jiffies) of the current polling window
412 * @busy_start_t: Start time of current busy period
413 * @enable_attr: sysfs attribute to enable/disable clock scaling
414 * @saved_pwr_info: UFS power mode may also be changed during scaling and this
415 * one keeps track of previous power mode.
416 * @workq: workqueue to schedule devfreq suspend/resume work
417 * @suspend_work: worker to suspend devfreq
418 * @resume_work: worker to resume devfreq
419 * @min_gear: lowest HS gear to scale down to
420 * @is_enabled: tracks if scaling is currently enabled or not, controlled by
421 clkscale_enable sysfs node
422 * @is_allowed: tracks if scaling is currently allowed or not, used to block
423 clock scaling which is not invoked from devfreq governor
424 * @is_initialized: Indicates whether clock scaling is initialized or not
425 * @is_busy_started: tracks if busy period has started or not
426 * @is_suspended: tracks if devfreq is suspended or not
428 struct ufs_clk_scaling {
430 unsigned long tot_busy_t;
431 ktime_t window_start_t;
432 ktime_t busy_start_t;
433 struct device_attribute enable_attr;
434 struct ufs_saved_pwr_info saved_pwr_info;
435 struct workqueue_struct *workq;
436 struct work_struct suspend_work;
437 struct work_struct resume_work;
442 bool is_busy_started;
446 #define UFS_EVENT_HIST_LENGTH 8
448 * struct ufs_event_hist - keeps history of errors
449 * @pos: index to indicate cyclic buffer position
450 * @reg: cyclic buffer for registers value
451 * @tstamp: cyclic buffer for time stamp
452 * @cnt: error counter
454 struct ufs_event_hist {
456 u32 val[UFS_EVENT_HIST_LENGTH];
457 ktime_t tstamp[UFS_EVENT_HIST_LENGTH];
458 unsigned long long cnt;
462 * struct ufs_stats - keeps usage/err statistics
463 * @last_intr_status: record the last interrupt status.
464 * @last_intr_ts: record the last interrupt timestamp.
465 * @hibern8_exit_cnt: Counter to keep track of number of exits,
466 * reset this after link-startup.
467 * @last_hibern8_exit_tstamp: Set time after the hibern8 exit.
468 * Clear after the first successful command completion.
471 u32 last_intr_status;
472 ktime_t last_intr_ts;
474 u32 hibern8_exit_cnt;
475 ktime_t last_hibern8_exit_tstamp;
476 struct ufs_event_hist event[UFS_EVT_CNT];
480 * enum ufshcd_state - UFS host controller state
481 * @UFSHCD_STATE_RESET: Link is not operational. Postpone SCSI command
483 * @UFSHCD_STATE_OPERATIONAL: The host controller is operational and can process
485 * @UFSHCD_STATE_EH_SCHEDULED_NON_FATAL: The error handler has been scheduled.
486 * SCSI commands may be submitted to the controller.
487 * @UFSHCD_STATE_EH_SCHEDULED_FATAL: The error handler has been scheduled. Fail
488 * newly submitted SCSI commands with error code DID_BAD_TARGET.
489 * @UFSHCD_STATE_ERROR: An unrecoverable error occurred, e.g. link recovery
490 * failed. Fail all SCSI commands with error code DID_ERROR.
494 UFSHCD_STATE_OPERATIONAL,
495 UFSHCD_STATE_EH_SCHEDULED_NON_FATAL,
496 UFSHCD_STATE_EH_SCHEDULED_FATAL,
501 /* Interrupt aggregation support is broken */
502 UFSHCD_QUIRK_BROKEN_INTR_AGGR = 1 << 0,
505 * delay before each dme command is required as the unipro
506 * layer has shown instabilities
508 UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS = 1 << 1,
511 * If UFS host controller is having issue in processing LCC (Line
512 * Control Command) coming from device then enable this quirk.
513 * When this quirk is enabled, host controller driver should disable
514 * the LCC transmission on UFS device (by clearing TX_LCC_ENABLE
515 * attribute of device to 0).
517 UFSHCD_QUIRK_BROKEN_LCC = 1 << 2,
520 * The attribute PA_RXHSUNTERMCAP specifies whether or not the
521 * inbound Link supports unterminated line in HS mode. Setting this
522 * attribute to 1 fixes moving to HS gear.
524 UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP = 1 << 3,
527 * This quirk needs to be enabled if the host controller only allows
528 * accessing the peer dme attributes in AUTO mode (FAST AUTO or
531 UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE = 1 << 4,
534 * This quirk needs to be enabled if the host controller doesn't
535 * advertise the correct version in UFS_VER register. If this quirk
536 * is enabled, standard UFS host driver will call the vendor specific
537 * ops (get_ufs_hci_version) to get the correct version.
539 UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION = 1 << 5,
542 * Clear handling for transfer/task request list is just opposite.
544 UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR = 1 << 6,
547 * This quirk needs to be enabled if host controller doesn't allow
548 * that the interrupt aggregation timer and counter are reset by s/w.
550 UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR = 1 << 7,
553 * This quirks needs to be enabled if host controller cannot be
554 * enabled via HCE register.
556 UFSHCI_QUIRK_BROKEN_HCE = 1 << 8,
559 * This quirk needs to be enabled if the host controller regards
560 * resolution of the values of PRDTO and PRDTL in UTRD as byte.
562 UFSHCD_QUIRK_PRDT_BYTE_GRAN = 1 << 9,
565 * This quirk needs to be enabled if the host controller reports
566 * OCS FATAL ERROR with device error through sense data
568 UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR = 1 << 10,
571 * This quirk needs to be enabled if the host controller has
572 * auto-hibernate capability but it doesn't work.
574 UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8 = 1 << 11,
577 * This quirk needs to disable manual flush for write booster
579 UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL = 1 << 12,
582 * This quirk needs to disable unipro timeout values
583 * before power mode change
585 UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING = 1 << 13,
588 * This quirk allows only sg entries aligned with page size.
590 UFSHCD_QUIRK_ALIGN_SG_WITH_PAGE_SIZE = 1 << 14,
594 /* Allow dynamic clk gating */
595 UFSHCD_CAP_CLK_GATING = 1 << 0,
597 /* Allow hiberb8 with clk gating */
598 UFSHCD_CAP_HIBERN8_WITH_CLK_GATING = 1 << 1,
600 /* Allow dynamic clk scaling */
601 UFSHCD_CAP_CLK_SCALING = 1 << 2,
603 /* Allow auto bkops to enabled during runtime suspend */
604 UFSHCD_CAP_AUTO_BKOPS_SUSPEND = 1 << 3,
607 * This capability allows host controller driver to use the UFS HCI's
608 * interrupt aggregation capability.
609 * CAUTION: Enabling this might reduce overall UFS throughput.
611 UFSHCD_CAP_INTR_AGGR = 1 << 4,
614 * This capability allows the device auto-bkops to be always enabled
615 * except during suspend (both runtime and suspend).
616 * Enabling this capability means that device will always be allowed
617 * to do background operation when it's active but it might degrade
618 * the performance of ongoing read/write operations.
620 UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND = 1 << 5,
623 * This capability allows host controller driver to automatically
624 * enable runtime power management by itself instead of waiting
625 * for userspace to control the power management.
627 UFSHCD_CAP_RPM_AUTOSUSPEND = 1 << 6,
630 * This capability allows the host controller driver to turn-on
631 * WriteBooster, if the underlying device supports it and is
632 * provisioned to be used. This would increase the write performance.
634 UFSHCD_CAP_WB_EN = 1 << 7,
637 * This capability allows the host controller driver to use the
638 * inline crypto engine, if it is present
640 UFSHCD_CAP_CRYPTO = 1 << 8,
643 * This capability allows the controller regulators to be put into
644 * lpm mode aggressively during clock gating.
645 * This would increase power savings.
647 UFSHCD_CAP_AGGR_POWER_COLLAPSE = 1 << 9,
650 * This capability allows the host controller driver to use DeepSleep,
651 * if it is supported by the UFS device. The host controller driver must
652 * support device hardware reset via the hba->device_reset() callback,
653 * in order to exit DeepSleep state.
655 UFSHCD_CAP_DEEPSLEEP = 1 << 10,
658 struct ufs_hba_variant_params {
659 struct devfreq_dev_profile devfreq_profile;
660 struct devfreq_simple_ondemand_data ondemand_data;
661 u16 hba_enable_delay_us;
662 u32 wb_flush_threshold;
665 #ifdef CONFIG_SCSI_UFS_HPB
667 * struct ufshpb_dev_info - UFSHPB device related info
668 * @num_lu: the number of user logical unit to check whether all lu finished
670 * @rgn_size: device reported HPB region size
671 * @srgn_size: device reported HPB sub-region size
672 * @slave_conf_cnt: counter to check all lu finished initialization
673 * @hpb_disabled: flag to check if HPB is disabled
674 * @max_hpb_single_cmd: device reported bMAX_DATA_SIZE_FOR_SINGLE_CMD value
675 * @is_legacy: flag to check HPB 1.0
676 * @control_mode: either host or device
678 struct ufshpb_dev_info {
682 atomic_t slave_conf_cnt;
684 u8 max_hpb_single_cmd;
690 struct ufs_hba_monitor {
691 unsigned long chunk_size;
693 unsigned long nr_sec_rw[2];
694 ktime_t total_busy[2];
696 unsigned long nr_req[2];
703 ktime_t busy_start_ts[2];
710 * struct ufs_hba - per adapter private structure
711 * @mmio_base: UFSHCI base register address
712 * @ucdl_base_addr: UFS Command Descriptor base address
713 * @utrdl_base_addr: UTP Transfer Request Descriptor base address
714 * @utmrdl_base_addr: UTP Task Management Descriptor base address
715 * @ucdl_dma_addr: UFS Command Descriptor DMA address
716 * @utrdl_dma_addr: UTRDL DMA address
717 * @utmrdl_dma_addr: UTMRDL DMA address
718 * @host: Scsi_Host instance of the driver
719 * @dev: device handle
720 * @lrb: local reference block
721 * @cmd_queue: Used to allocate command tags from hba->host->tag_set.
722 * @outstanding_tasks: Bits representing outstanding task requests
723 * @outstanding_lock: Protects @outstanding_reqs.
724 * @outstanding_reqs: Bits representing outstanding transfer requests
725 * @capabilities: UFS Controller Capabilities
726 * @nutrs: Transfer Request Queue depth supported by controller
727 * @nutmrs: Task Management Queue depth supported by controller
728 * @ufs_version: UFS Version to which controller complies
729 * @vops: pointer to variant specific operations
730 * @priv: pointer to variant specific private data
731 * @irq: Irq number of the controller
732 * @active_uic_cmd: handle of active UIC command
733 * @uic_cmd_mutex: mutex for UIC command
734 * @tmf_tag_set: TMF tag set.
735 * @tmf_queue: Used to allocate TMF tags.
736 * @pwr_done: completion for power mode change
737 * @ufshcd_state: UFSHCD state
738 * @eh_flags: Error handling flags
739 * @intr_mask: Interrupt Mask Bits
740 * @ee_ctrl_mask: Exception event control mask
741 * @is_powered: flag to check if HBA is powered
742 * @shutting_down: flag to check if shutdown has been invoked
743 * @host_sem: semaphore used to serialize concurrent contexts
744 * @eh_wq: Workqueue that eh_work works on
745 * @eh_work: Worker to handle UFS errors that require s/w attention
746 * @eeh_work: Worker to handle exception events
747 * @errors: HBA errors
748 * @uic_error: UFS interconnect layer error status
749 * @saved_err: sticky error mask
750 * @saved_uic_err: sticky UIC error mask
751 * @force_reset: flag to force eh_work perform a full reset
752 * @force_pmc: flag to force a power mode change
753 * @silence_err_logs: flag to silence error logs
754 * @dev_cmd: ufs device management command information
755 * @last_dme_cmd_tstamp: time stamp of the last completed DME command
756 * @auto_bkops_enabled: to track whether bkops is enabled in device
757 * @vreg_info: UFS device voltage regulator information
758 * @clk_list_head: UFS host controller clocks list node head
759 * @pwr_info: holds current power mode
760 * @max_pwr_info: keeps the device max valid pwm
761 * @desc_size: descriptor sizes reported by device
762 * @urgent_bkops_lvl: keeps track of urgent bkops level for device
763 * @is_urgent_bkops_lvl_checked: keeps track if the urgent bkops level for
764 * device is known or not.
765 * @scsi_block_reqs_cnt: reference counting for scsi block requests
766 * @crypto_capabilities: Content of crypto capabilities register (0x100)
767 * @crypto_cap_array: Array of crypto capabilities
768 * @crypto_cfg_register: Start of the crypto cfg array
769 * @ksm: the keyslot manager tied to this hba
772 void __iomem *mmio_base;
774 /* Virtual memory reference */
775 struct utp_transfer_cmd_desc *ucdl_base_addr;
776 struct utp_transfer_req_desc *utrdl_base_addr;
777 struct utp_task_req_desc *utmrdl_base_addr;
779 /* DMA memory reference */
780 dma_addr_t ucdl_dma_addr;
781 dma_addr_t utrdl_dma_addr;
782 dma_addr_t utmrdl_dma_addr;
784 struct Scsi_Host *host;
786 struct request_queue *cmd_queue;
788 * This field is to keep a reference to "scsi_device" corresponding to
791 struct scsi_device *sdev_ufs_device;
792 struct scsi_device *sdev_rpmb;
794 enum ufs_dev_pwr_mode curr_dev_pwr_mode;
795 enum uic_link_state uic_link_state;
796 /* Desired UFS power management level during runtime PM */
797 enum ufs_pm_level rpm_lvl;
798 /* Desired UFS power management level during system PM */
799 enum ufs_pm_level spm_lvl;
800 struct device_attribute rpm_lvl_attr;
801 struct device_attribute spm_lvl_attr;
802 int pm_op_in_progress;
804 /* Auto-Hibernate Idle Timer register value */
807 struct ufshcd_lrb *lrb;
809 unsigned long outstanding_tasks;
810 spinlock_t outstanding_lock;
811 unsigned long outstanding_reqs;
817 const struct ufs_hba_variant_ops *vops;
818 struct ufs_hba_variant_params *vps;
822 enum ufs_ref_clk_freq dev_ref_clk_freq;
824 unsigned int quirks; /* Deviations from standard UFSHCI spec. */
826 /* Device deviations from standard UFS device spec. */
827 unsigned int dev_quirks;
829 struct blk_mq_tag_set tmf_tag_set;
830 struct request_queue *tmf_queue;
831 struct request **tmf_rqs;
833 struct uic_command *active_uic_cmd;
834 struct mutex uic_cmd_mutex;
835 struct completion *uic_async_done;
837 enum ufshcd_state ufshcd_state;
840 u16 ee_ctrl_mask; /* Exception event mask */
841 u16 ee_drv_mask; /* Exception event mask for driver */
842 u16 ee_usr_mask; /* Exception event mask for user (via debugfs) */
843 struct mutex ee_ctrl_mutex;
846 struct semaphore host_sem;
849 struct workqueue_struct *eh_wq;
850 struct work_struct eh_work;
851 struct work_struct eeh_work;
858 struct ufs_stats ufs_stats;
861 bool silence_err_logs;
863 /* Device management request data */
864 struct ufs_dev_cmd dev_cmd;
865 ktime_t last_dme_cmd_tstamp;
868 /* Keeps information of the UFS device connected to this host */
869 struct ufs_dev_info dev_info;
870 bool auto_bkops_enabled;
871 struct ufs_vreg_info vreg_info;
872 struct list_head clk_list_head;
874 bool wlun_dev_clr_ua;
875 bool wlun_rpmb_clr_ua;
877 /* Number of requests aborts */
880 /* Number of lanes available (1 or 2) for Rx/Tx */
881 u32 lanes_per_direction;
882 struct ufs_pa_layer_attr pwr_info;
883 struct ufs_pwr_mode_info max_pwr_info;
885 struct ufs_clk_gating clk_gating;
886 /* Control to enable/disable host capabilities */
889 struct devfreq *devfreq;
890 struct ufs_clk_scaling clk_scaling;
891 bool is_sys_suspended;
893 enum bkops_status urgent_bkops_lvl;
894 bool is_urgent_bkops_lvl_checked;
896 struct rw_semaphore clk_scaling_lock;
897 unsigned char desc_size[QUERY_DESC_IDN_MAX];
898 atomic_t scsi_block_reqs_cnt;
900 struct device bsg_dev;
901 struct request_queue *bsg_queue;
902 struct delayed_work rpm_dev_flush_recheck_work;
904 #ifdef CONFIG_SCSI_UFS_HPB
905 struct ufshpb_dev_info ufshpb_dev;
908 struct ufs_hba_monitor monitor;
910 #ifdef CONFIG_SCSI_UFS_CRYPTO
911 union ufs_crypto_capabilities crypto_capabilities;
912 union ufs_crypto_cap_entry *crypto_cap_array;
913 u32 crypto_cfg_register;
914 struct blk_keyslot_manager ksm;
916 #ifdef CONFIG_DEBUG_FS
917 struct dentry *debugfs_root;
918 struct delayed_work debugfs_ee_work;
919 u32 debugfs_ee_rate_limit_ms;
923 bool rpmb_complete_put;
926 /* Returns true if clocks can be gated. Otherwise false */
927 static inline bool ufshcd_is_clkgating_allowed(struct ufs_hba *hba)
929 return hba->caps & UFSHCD_CAP_CLK_GATING;
931 static inline bool ufshcd_can_hibern8_during_gating(struct ufs_hba *hba)
933 return hba->caps & UFSHCD_CAP_HIBERN8_WITH_CLK_GATING;
935 static inline int ufshcd_is_clkscaling_supported(struct ufs_hba *hba)
937 return hba->caps & UFSHCD_CAP_CLK_SCALING;
939 static inline bool ufshcd_can_autobkops_during_suspend(struct ufs_hba *hba)
941 return hba->caps & UFSHCD_CAP_AUTO_BKOPS_SUSPEND;
943 static inline bool ufshcd_is_rpm_autosuspend_allowed(struct ufs_hba *hba)
945 return hba->caps & UFSHCD_CAP_RPM_AUTOSUSPEND;
948 static inline bool ufshcd_is_intr_aggr_allowed(struct ufs_hba *hba)
950 return (hba->caps & UFSHCD_CAP_INTR_AGGR) &&
951 !(hba->quirks & UFSHCD_QUIRK_BROKEN_INTR_AGGR);
954 static inline bool ufshcd_can_aggressive_pc(struct ufs_hba *hba)
956 return !!(ufshcd_is_link_hibern8(hba) &&
957 (hba->caps & UFSHCD_CAP_AGGR_POWER_COLLAPSE));
960 static inline bool ufshcd_is_auto_hibern8_supported(struct ufs_hba *hba)
962 return (hba->capabilities & MASK_AUTO_HIBERN8_SUPPORT) &&
963 !(hba->quirks & UFSHCD_QUIRK_BROKEN_AUTO_HIBERN8);
966 static inline bool ufshcd_is_auto_hibern8_enabled(struct ufs_hba *hba)
968 return FIELD_GET(UFSHCI_AHIBERN8_TIMER_MASK, hba->ahit) ? true : false;
971 static inline bool ufshcd_is_wb_allowed(struct ufs_hba *hba)
973 return hba->caps & UFSHCD_CAP_WB_EN;
976 static inline bool ufshcd_is_user_access_allowed(struct ufs_hba *hba)
978 return !hba->shutting_down;
981 #define ufshcd_writel(hba, val, reg) \
982 writel((val), (hba)->mmio_base + (reg))
983 #define ufshcd_readl(hba, reg) \
984 readl((hba)->mmio_base + (reg))
987 * ufshcd_rmwl - read modify write into a register
988 * @hba - per adapter instance
989 * @mask - mask to apply on read value
990 * @val - actual value to write
991 * @reg - register address
993 static inline void ufshcd_rmwl(struct ufs_hba *hba, u32 mask, u32 val, u32 reg)
997 tmp = ufshcd_readl(hba, reg);
1000 ufshcd_writel(hba, tmp, reg);
1003 int ufshcd_alloc_host(struct device *, struct ufs_hba **);
1004 void ufshcd_dealloc_host(struct ufs_hba *);
1005 int ufshcd_hba_enable(struct ufs_hba *hba);
1006 int ufshcd_init(struct ufs_hba *, void __iomem *, unsigned int);
1007 int ufshcd_link_recovery(struct ufs_hba *hba);
1008 int ufshcd_make_hba_operational(struct ufs_hba *hba);
1009 void ufshcd_remove(struct ufs_hba *);
1010 int ufshcd_uic_hibern8_exit(struct ufs_hba *hba);
1011 void ufshcd_delay_us(unsigned long us, unsigned long tolerance);
1012 int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
1013 u32 val, unsigned long interval_us,
1014 unsigned long timeout_ms);
1015 void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk);
1016 void ufshcd_update_evt_hist(struct ufs_hba *hba, u32 id, u32 val);
1017 void ufshcd_hba_stop(struct ufs_hba *hba);
1019 static inline void check_upiu_size(void)
1021 BUILD_BUG_ON(ALIGNED_UPIU_SIZE <
1022 GENERAL_UPIU_REQUEST_SIZE + QUERY_DESC_MAX_SIZE);
1026 * ufshcd_set_variant - set variant specific data to the hba
1027 * @hba - per adapter instance
1028 * @variant - pointer to variant specific data
1030 static inline void ufshcd_set_variant(struct ufs_hba *hba, void *variant)
1033 hba->priv = variant;
1037 * ufshcd_get_variant - get variant specific data from the hba
1038 * @hba - per adapter instance
1040 static inline void *ufshcd_get_variant(struct ufs_hba *hba)
1045 static inline bool ufshcd_keep_autobkops_enabled_except_suspend(
1046 struct ufs_hba *hba)
1048 return hba->caps & UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND;
1051 static inline u8 ufshcd_wb_get_query_index(struct ufs_hba *hba)
1053 if (hba->dev_info.wb_buffer_type == WB_BUF_MODE_LU_DEDICATED)
1054 return hba->dev_info.wb_dedicated_lu;
1059 extern int ufshcd_runtime_suspend(struct device *dev);
1060 extern int ufshcd_runtime_resume(struct device *dev);
1062 #ifdef CONFIG_PM_SLEEP
1063 extern int ufshcd_system_suspend(struct device *dev);
1064 extern int ufshcd_system_resume(struct device *dev);
1066 extern int ufshcd_shutdown(struct ufs_hba *hba);
1067 extern int ufshcd_dme_configure_adapt(struct ufs_hba *hba,
1070 extern int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
1071 u8 attr_set, u32 mib_val, u8 peer);
1072 extern int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
1073 u32 *mib_val, u8 peer);
1074 extern int ufshcd_config_pwr_mode(struct ufs_hba *hba,
1075 struct ufs_pa_layer_attr *desired_pwr_mode);
1077 /* UIC command interfaces for DME primitives */
1080 #define ATTR_SET_NOR 0 /* NORMAL */
1081 #define ATTR_SET_ST 1 /* STATIC */
1083 static inline int ufshcd_dme_set(struct ufs_hba *hba, u32 attr_sel,
1086 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
1087 mib_val, DME_LOCAL);
1090 static inline int ufshcd_dme_st_set(struct ufs_hba *hba, u32 attr_sel,
1093 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
1094 mib_val, DME_LOCAL);
1097 static inline int ufshcd_dme_peer_set(struct ufs_hba *hba, u32 attr_sel,
1100 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
1104 static inline int ufshcd_dme_peer_st_set(struct ufs_hba *hba, u32 attr_sel,
1107 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
1111 static inline int ufshcd_dme_get(struct ufs_hba *hba,
1112 u32 attr_sel, u32 *mib_val)
1114 return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_LOCAL);
1117 static inline int ufshcd_dme_peer_get(struct ufs_hba *hba,
1118 u32 attr_sel, u32 *mib_val)
1120 return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_PEER);
1123 static inline bool ufshcd_is_hs_mode(struct ufs_pa_layer_attr *pwr_info)
1125 return (pwr_info->pwr_rx == FAST_MODE ||
1126 pwr_info->pwr_rx == FASTAUTO_MODE) &&
1127 (pwr_info->pwr_tx == FAST_MODE ||
1128 pwr_info->pwr_tx == FASTAUTO_MODE);
1131 static inline int ufshcd_disable_host_tx_lcc(struct ufs_hba *hba)
1133 return ufshcd_dme_set(hba, UIC_ARG_MIB(PA_LOCAL_TX_LCC_ENABLE), 0);
1136 /* Expose Query-Request API */
1137 int ufshcd_query_descriptor_retry(struct ufs_hba *hba,
1138 enum query_opcode opcode,
1139 enum desc_idn idn, u8 index,
1141 u8 *desc_buf, int *buf_len);
1142 int ufshcd_read_desc_param(struct ufs_hba *hba,
1143 enum desc_idn desc_id,
1148 int ufshcd_query_attr_retry(struct ufs_hba *hba, enum query_opcode opcode,
1149 enum attr_idn idn, u8 index, u8 selector,
1151 int ufshcd_query_attr(struct ufs_hba *hba, enum query_opcode opcode,
1152 enum attr_idn idn, u8 index, u8 selector, u32 *attr_val);
1153 int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
1154 enum flag_idn idn, u8 index, bool *flag_res);
1156 void ufshcd_auto_hibern8_enable(struct ufs_hba *hba);
1157 void ufshcd_auto_hibern8_update(struct ufs_hba *hba, u32 ahit);
1158 void ufshcd_fixup_dev_quirks(struct ufs_hba *hba, struct ufs_dev_fix *fixups);
1159 #define SD_ASCII_STD true
1160 #define SD_RAW false
1161 int ufshcd_read_string_desc(struct ufs_hba *hba, u8 desc_index,
1162 u8 **buf, bool ascii);
1164 int ufshcd_hold(struct ufs_hba *hba, bool async);
1165 void ufshcd_release(struct ufs_hba *hba);
1167 void ufshcd_map_desc_id_to_length(struct ufs_hba *hba, enum desc_idn desc_id,
1170 u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba);
1172 int ufshcd_send_uic_cmd(struct ufs_hba *hba, struct uic_command *uic_cmd);
1174 int ufshcd_exec_raw_upiu_cmd(struct ufs_hba *hba,
1175 struct utp_upiu_req *req_upiu,
1176 struct utp_upiu_req *rsp_upiu,
1178 u8 *desc_buff, int *buff_len,
1179 enum query_opcode desc_op);
1181 int ufshcd_wb_toggle(struct ufs_hba *hba, bool enable);
1182 int ufshcd_suspend_prepare(struct device *dev);
1183 void ufshcd_resume_complete(struct device *dev);
1185 /* Wrapper functions for safely calling variant operations */
1186 static inline const char *ufshcd_get_var_name(struct ufs_hba *hba)
1189 return hba->vops->name;
1193 static inline int ufshcd_vops_init(struct ufs_hba *hba)
1195 if (hba->vops && hba->vops->init)
1196 return hba->vops->init(hba);
1201 static inline void ufshcd_vops_exit(struct ufs_hba *hba)
1203 if (hba->vops && hba->vops->exit)
1204 return hba->vops->exit(hba);
1207 static inline u32 ufshcd_vops_get_ufs_hci_version(struct ufs_hba *hba)
1209 if (hba->vops && hba->vops->get_ufs_hci_version)
1210 return hba->vops->get_ufs_hci_version(hba);
1212 return ufshcd_readl(hba, REG_UFS_VERSION);
1215 static inline int ufshcd_vops_clk_scale_notify(struct ufs_hba *hba,
1216 bool up, enum ufs_notify_change_status status)
1218 if (hba->vops && hba->vops->clk_scale_notify)
1219 return hba->vops->clk_scale_notify(hba, up, status);
1223 static inline void ufshcd_vops_event_notify(struct ufs_hba *hba,
1224 enum ufs_event_type evt,
1227 if (hba->vops && hba->vops->event_notify)
1228 hba->vops->event_notify(hba, evt, data);
1231 static inline int ufshcd_vops_setup_clocks(struct ufs_hba *hba, bool on,
1232 enum ufs_notify_change_status status)
1234 if (hba->vops && hba->vops->setup_clocks)
1235 return hba->vops->setup_clocks(hba, on, status);
1239 static inline int ufshcd_vops_hce_enable_notify(struct ufs_hba *hba,
1242 if (hba->vops && hba->vops->hce_enable_notify)
1243 return hba->vops->hce_enable_notify(hba, status);
1247 static inline int ufshcd_vops_link_startup_notify(struct ufs_hba *hba,
1250 if (hba->vops && hba->vops->link_startup_notify)
1251 return hba->vops->link_startup_notify(hba, status);
1256 static inline int ufshcd_vops_phy_initialization(struct ufs_hba *hba)
1258 if (hba->vops && hba->vops->phy_initialization)
1259 return hba->vops->phy_initialization(hba);
1264 static inline int ufshcd_vops_pwr_change_notify(struct ufs_hba *hba,
1265 enum ufs_notify_change_status status,
1266 struct ufs_pa_layer_attr *dev_max_params,
1267 struct ufs_pa_layer_attr *dev_req_params)
1269 if (hba->vops && hba->vops->pwr_change_notify)
1270 return hba->vops->pwr_change_notify(hba, status,
1271 dev_max_params, dev_req_params);
1276 static inline void ufshcd_vops_setup_task_mgmt(struct ufs_hba *hba,
1277 int tag, u8 tm_function)
1279 if (hba->vops && hba->vops->setup_task_mgmt)
1280 return hba->vops->setup_task_mgmt(hba, tag, tm_function);
1283 static inline void ufshcd_vops_hibern8_notify(struct ufs_hba *hba,
1284 enum uic_cmd_dme cmd,
1285 enum ufs_notify_change_status status)
1287 if (hba->vops && hba->vops->hibern8_notify)
1288 return hba->vops->hibern8_notify(hba, cmd, status);
1291 static inline int ufshcd_vops_apply_dev_quirks(struct ufs_hba *hba)
1293 if (hba->vops && hba->vops->apply_dev_quirks)
1294 return hba->vops->apply_dev_quirks(hba);
1298 static inline void ufshcd_vops_fixup_dev_quirks(struct ufs_hba *hba)
1300 if (hba->vops && hba->vops->fixup_dev_quirks)
1301 hba->vops->fixup_dev_quirks(hba);
1304 static inline int ufshcd_vops_suspend(struct ufs_hba *hba, enum ufs_pm_op op)
1306 if (hba->vops && hba->vops->suspend)
1307 return hba->vops->suspend(hba, op);
1312 static inline int ufshcd_vops_resume(struct ufs_hba *hba, enum ufs_pm_op op)
1314 if (hba->vops && hba->vops->resume)
1315 return hba->vops->resume(hba, op);
1320 static inline void ufshcd_vops_dbg_register_dump(struct ufs_hba *hba)
1322 if (hba->vops && hba->vops->dbg_register_dump)
1323 hba->vops->dbg_register_dump(hba);
1326 static inline int ufshcd_vops_device_reset(struct ufs_hba *hba)
1328 if (hba->vops && hba->vops->device_reset)
1329 return hba->vops->device_reset(hba);
1334 static inline void ufshcd_vops_config_scaling_param(struct ufs_hba *hba,
1335 struct devfreq_dev_profile
1336 *profile, void *data)
1338 if (hba->vops && hba->vops->config_scaling_param)
1339 hba->vops->config_scaling_param(hba, profile, data);
1342 extern struct ufs_pm_lvl_states ufs_pm_lvl_states[];
1345 * ufshcd_scsi_to_upiu_lun - maps scsi LUN to UPIU LUN
1346 * @scsi_lun: scsi LUN id
1348 * Returns UPIU LUN id
1350 static inline u8 ufshcd_scsi_to_upiu_lun(unsigned int scsi_lun)
1352 if (scsi_is_wlun(scsi_lun))
1353 return (scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID)
1356 return scsi_lun & UFS_UPIU_MAX_UNIT_NUM_ID;
1359 int ufshcd_dump_regs(struct ufs_hba *hba, size_t offset, size_t len,
1360 const char *prefix);
1362 int __ufshcd_write_ee_control(struct ufs_hba *hba, u32 ee_ctrl_mask);
1363 int ufshcd_write_ee_control(struct ufs_hba *hba);
1364 int ufshcd_update_ee_control(struct ufs_hba *hba, u16 *mask, u16 *other_mask,
1367 static inline int ufshcd_update_ee_drv_mask(struct ufs_hba *hba,
1370 return ufshcd_update_ee_control(hba, &hba->ee_drv_mask,
1371 &hba->ee_usr_mask, set, clr);
1374 static inline int ufshcd_update_ee_usr_mask(struct ufs_hba *hba,
1377 return ufshcd_update_ee_control(hba, &hba->ee_usr_mask,
1378 &hba->ee_drv_mask, set, clr);
1381 static inline int ufshcd_rpm_get_sync(struct ufs_hba *hba)
1383 return pm_runtime_get_sync(&hba->sdev_ufs_device->sdev_gendev);
1386 static inline int ufshcd_rpm_put_sync(struct ufs_hba *hba)
1388 return pm_runtime_put_sync(&hba->sdev_ufs_device->sdev_gendev);
1391 static inline int ufshcd_rpm_put(struct ufs_hba *hba)
1393 return pm_runtime_put(&hba->sdev_ufs_device->sdev_gendev);
1396 static inline int ufshcd_rpmb_rpm_get_sync(struct ufs_hba *hba)
1398 return pm_runtime_get_sync(&hba->sdev_rpmb->sdev_gendev);
1401 static inline int ufshcd_rpmb_rpm_put(struct ufs_hba *hba)
1403 return pm_runtime_put(&hba->sdev_rpmb->sdev_gendev);
1406 #endif /* End of Header */