blob: 7630600217a2ef91e7d3629e5a4d2a0716c24c2a [file] [log] [blame]
Vinayak Holikattie0eca632013-02-25 21:44:33 +05301/*
2 * Universal Flash Storage Host controller driver
3 *
4 * This code is based on drivers/scsi/ufs/ufshcd.h
5 * Copyright (C) 2011-2013 Samsung India Software Operations
Yaniv Gardidc3c8d32016-02-01 15:02:46 +02006 * Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
Vinayak Holikattie0eca632013-02-25 21:44:33 +05307 *
8 * Authors:
9 * Santosh Yaraganavi <santosh.sy@samsung.com>
10 * Vinayak Holikatti <h.vinayak@samsung.com>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 * See the COPYING file in the top-level directory or visit
17 * <http://www.gnu.org/licenses/gpl-2.0.html>
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * This program is provided "AS IS" and "WITH ALL FAULTS" and
25 * without warranty of any kind. You are solely responsible for
26 * determining the appropriateness of using and distributing
27 * the program and assume all risks associated with your exercise
28 * of rights with respect to the program, including but not limited
29 * to infringement of third party rights, the risks and costs of
30 * program errors, damage to or loss of data, programs or equipment,
31 * and unavailability or interruption of operations. Under no
32 * circumstances will the contributor of this Program be liable for
33 * any damages of any kind arising from your use or distribution of
34 * this program.
35 */
36
37#ifndef _UFSHCD_H
38#define _UFSHCD_H
39
40#include <linux/module.h>
41#include <linux/kernel.h>
42#include <linux/init.h>
43#include <linux/interrupt.h>
44#include <linux/io.h>
45#include <linux/delay.h>
46#include <linux/slab.h>
47#include <linux/spinlock.h>
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -080048#include <linux/rwsem.h>
Vinayak Holikattie0eca632013-02-25 21:44:33 +053049#include <linux/workqueue.h>
50#include <linux/errno.h>
51#include <linux/types.h>
52#include <linux/wait.h>
53#include <linux/bitops.h>
54#include <linux/pm_runtime.h>
55#include <linux/clk.h>
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053056#include <linux/completion.h>
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +030057#include <linux/regulator/consumer.h>
Yaniv Gardif37aabc2016-03-10 17:37:20 +020058#include "unipro.h"
Vinayak Holikattie0eca632013-02-25 21:44:33 +053059
60#include <asm/irq.h>
61#include <asm/byteorder.h>
62#include <scsi/scsi.h>
63#include <scsi/scsi_cmnd.h>
64#include <scsi/scsi_host.h>
65#include <scsi/scsi_tcq.h>
66#include <scsi/scsi_dbg.h>
67#include <scsi/scsi_eh.h>
68
69#include "ufs.h"
70#include "ufshci.h"
71
72#define UFSHCD "ufshcd"
73#define UFSHCD_DRIVER_VERSION "0.2"
74
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +030075struct ufs_hba;
76
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053077enum dev_cmd_type {
78 DEV_CMD_TYPE_NOP = 0x0,
Dolev Raviv68078d52013-07-30 00:35:58 +053079 DEV_CMD_TYPE_QUERY = 0x1,
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +053080};
81
Vinayak Holikattie0eca632013-02-25 21:44:33 +053082/**
83 * struct uic_command - UIC command structure
84 * @command: UIC command
85 * @argument1: UIC command argument 1
86 * @argument2: UIC command argument 2
87 * @argument3: UIC command argument 3
88 * @cmd_active: Indicate if UIC command is outstanding
89 * @result: UIC command result
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053090 * @done: UIC command completion
Vinayak Holikattie0eca632013-02-25 21:44:33 +053091 */
92struct uic_command {
93 u32 command;
94 u32 argument1;
95 u32 argument2;
96 u32 argument3;
97 int cmd_active;
98 int result;
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +053099 struct completion done;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530100};
101
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300102/* Used to differentiate the power management options */
103enum ufs_pm_op {
104 UFS_RUNTIME_PM,
105 UFS_SYSTEM_PM,
106 UFS_SHUTDOWN_PM,
107};
108
109#define ufshcd_is_runtime_pm(op) ((op) == UFS_RUNTIME_PM)
110#define ufshcd_is_system_pm(op) ((op) == UFS_SYSTEM_PM)
111#define ufshcd_is_shutdown_pm(op) ((op) == UFS_SHUTDOWN_PM)
112
113/* Host <-> Device UniPro Link state */
114enum uic_link_state {
115 UIC_LINK_OFF_STATE = 0, /* Link powered down or disabled */
116 UIC_LINK_ACTIVE_STATE = 1, /* Link is in Fast/Slow/Sleep state */
117 UIC_LINK_HIBERN8_STATE = 2, /* Link is in Hibernate state */
118};
119
120#define ufshcd_is_link_off(hba) ((hba)->uic_link_state == UIC_LINK_OFF_STATE)
121#define ufshcd_is_link_active(hba) ((hba)->uic_link_state == \
122 UIC_LINK_ACTIVE_STATE)
123#define ufshcd_is_link_hibern8(hba) ((hba)->uic_link_state == \
124 UIC_LINK_HIBERN8_STATE)
125#define ufshcd_set_link_off(hba) ((hba)->uic_link_state = UIC_LINK_OFF_STATE)
126#define ufshcd_set_link_active(hba) ((hba)->uic_link_state = \
127 UIC_LINK_ACTIVE_STATE)
128#define ufshcd_set_link_hibern8(hba) ((hba)->uic_link_state = \
129 UIC_LINK_HIBERN8_STATE)
130
131/*
132 * UFS Power management levels.
133 * Each level is in increasing order of power savings.
134 */
135enum ufs_pm_level {
136 UFS_PM_LVL_0, /* UFS_ACTIVE_PWR_MODE, UIC_LINK_ACTIVE_STATE */
137 UFS_PM_LVL_1, /* UFS_ACTIVE_PWR_MODE, UIC_LINK_HIBERN8_STATE */
138 UFS_PM_LVL_2, /* UFS_SLEEP_PWR_MODE, UIC_LINK_ACTIVE_STATE */
139 UFS_PM_LVL_3, /* UFS_SLEEP_PWR_MODE, UIC_LINK_HIBERN8_STATE */
140 UFS_PM_LVL_4, /* UFS_POWERDOWN_PWR_MODE, UIC_LINK_HIBERN8_STATE */
141 UFS_PM_LVL_5, /* UFS_POWERDOWN_PWR_MODE, UIC_LINK_OFF_STATE */
142 UFS_PM_LVL_MAX
143};
144
145struct ufs_pm_lvl_states {
146 enum ufs_dev_pwr_mode dev_state;
147 enum uic_link_state link_state;
148};
149
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530150/**
151 * struct ufshcd_lrb - local reference block
152 * @utr_descriptor_ptr: UTRD address of the command
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530153 * @ucd_req_ptr: UCD address of the command
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530154 * @ucd_rsp_ptr: Response UPIU address for this command
155 * @ucd_prdt_ptr: PRDT address of the command
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800156 * @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
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530160 * @cmd: pointer to SCSI command
161 * @sense_buffer: pointer to sense buffer address of the SCSI command
162 * @sense_bufflen: Length of the sense buffer
163 * @scsi_status: SCSI status of the command
164 * @command_type: SCSI, UFS, Query.
165 * @task_tag: Task tag of the command
166 * @lun: LUN of the command
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530167 * @intr_cmd: Interrupt command (doesn't participate in interrupt aggregation)
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800168 * @issue_time_stamp: time stamp for debug purposes
Gilad Bronere0b299e2017-02-03 16:56:40 -0800169 * @req_abort_skip: skip request abort task flag
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530170 */
171struct ufshcd_lrb {
172 struct utp_transfer_req_desc *utr_descriptor_ptr;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530173 struct utp_upiu_req *ucd_req_ptr;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530174 struct utp_upiu_rsp *ucd_rsp_ptr;
175 struct ufshcd_sg_entry *ucd_prdt_ptr;
176
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800177 dma_addr_t utrd_dma_addr;
178 dma_addr_t ucd_req_dma_addr;
179 dma_addr_t ucd_rsp_dma_addr;
180 dma_addr_t ucd_prdt_dma_addr;
181
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530182 struct scsi_cmnd *cmd;
183 u8 *sense_buffer;
184 unsigned int sense_bufflen;
185 int scsi_status;
186
187 int command_type;
188 int task_tag;
Subhash Jadavani0ce147d2014-09-25 15:32:29 +0300189 u8 lun; /* UPIU LUN id field is only 8-bit wide */
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530190 bool intr_cmd;
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800191 ktime_t issue_time_stamp;
Gilad Bronere0b299e2017-02-03 16:56:40 -0800192
193 bool req_abort_skip;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530194};
195
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530196/**
Tomas Winklera230c2f2016-02-09 10:25:41 +0200197 * struct ufs_query - holds relevant data structures for query request
Dolev Raviv68078d52013-07-30 00:35:58 +0530198 * @request: request upiu and function
199 * @descriptor: buffer for sending/receiving descriptor
200 * @response: response upiu and response
201 */
202struct ufs_query {
203 struct ufs_query_req request;
204 u8 *descriptor;
205 struct ufs_query_res response;
206};
207
208/**
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530209 * struct ufs_dev_cmd - all assosiated fields with device management commands
210 * @type: device management command type - Query, NOP OUT
211 * @lock: lock to allow one command at a time
212 * @complete: internal commands completion
213 * @tag_wq: wait queue until free command slot is available
214 */
215struct ufs_dev_cmd {
216 enum dev_cmd_type type;
217 struct mutex lock;
218 struct completion *complete;
219 wait_queue_head_t tag_wq;
Dolev Raviv68078d52013-07-30 00:35:58 +0530220 struct ufs_query query;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530221};
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530222
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +0300223/**
224 * struct ufs_clk_info - UFS clock related info
225 * @list: list headed by hba->clk_list_head
226 * @clk: clock node
227 * @name: clock name
228 * @max_freq: maximum frequency supported by the clock
Sahitya Tummala4cff6d992014-09-25 15:32:33 +0300229 * @min_freq: min frequency that can be used for clock scaling
Sahitya Tummala856b3482014-09-25 15:32:34 +0300230 * @curr_freq: indicates the current frequency that it is set to
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +0300231 * @enabled: variable to check against multiple enable/disable
232 */
233struct ufs_clk_info {
234 struct list_head list;
235 struct clk *clk;
236 const char *name;
237 u32 max_freq;
Sahitya Tummala4cff6d992014-09-25 15:32:33 +0300238 u32 min_freq;
Sahitya Tummala856b3482014-09-25 15:32:34 +0300239 u32 curr_freq;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +0300240 bool enabled;
241};
242
Yaniv Gardif06fcc72015-10-28 13:15:51 +0200243enum ufs_notify_change_status {
244 PRE_CHANGE,
245 POST_CHANGE,
246};
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300247
248struct ufs_pa_layer_attr {
249 u32 gear_rx;
250 u32 gear_tx;
251 u32 lane_rx;
252 u32 lane_tx;
253 u32 pwr_rx;
254 u32 pwr_tx;
255 u32 hs_rate;
256};
257
258struct ufs_pwr_mode_info {
259 bool is_valid;
260 struct ufs_pa_layer_attr info;
261};
262
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300263/**
264 * struct ufs_hba_variant_ops - variant specific callbacks
265 * @name: variant name
266 * @init: called when the driver is initialized
267 * @exit: called to cleanup everything done in init
Yaniv Gardi9949e702015-05-17 18:55:05 +0300268 * @get_ufs_hci_version: called to get UFS HCI version
Sahitya Tummala856b3482014-09-25 15:32:34 +0300269 * @clk_scale_notify: notifies that clks are scaled up/down
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300270 * @setup_clocks: called before touching any of the controller registers
271 * @setup_regulators: called before accessing the host controller
272 * @hce_enable_notify: called before and after HCE enable bit is set to allow
273 * variant specific Uni-Pro initialization.
274 * @link_startup_notify: called before and after Link startup is carried out
275 * to allow variant specific Uni-Pro initialization.
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300276 * @pwr_change_notify: called before and after a power mode change
277 * is carried out to allow vendor spesific capabilities
278 * to be set.
Kiwoong Kim0e675ef2016-11-10 21:14:36 +0900279 * @setup_xfer_req: called before any transfer request is issued
280 * to set some things
Kiwoong Kimd2877be2016-11-10 21:16:15 +0900281 * @setup_task_mgmt: called before any task management request is issued
282 * to set some things
Kiwoong Kimee32c902016-11-10 21:17:43 +0900283 * @hibern8_notify: called around hibern8 enter/exit
Subhash Jadavani56d4a182016-12-05 19:25:32 -0800284 * @apply_dev_quirks: called to apply device specific quirks
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300285 * @suspend: called during host controller PM callback
286 * @resume: called during host controller PM callback
Yaniv Gardi6e3fd442015-10-28 13:15:50 +0200287 * @dbg_register_dump: used to dump controller debug information
Joao Pinto4b9ffb52016-05-11 12:21:30 +0100288 * @phy_initialization: used to initialize phys
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300289 */
290struct ufs_hba_variant_ops {
291 const char *name;
292 int (*init)(struct ufs_hba *);
293 void (*exit)(struct ufs_hba *);
Yaniv Gardi9949e702015-05-17 18:55:05 +0300294 u32 (*get_ufs_hci_version)(struct ufs_hba *);
Yaniv Gardif06fcc72015-10-28 13:15:51 +0200295 int (*clk_scale_notify)(struct ufs_hba *, bool,
296 enum ufs_notify_change_status);
Subhash Jadavani1e879e82016-10-06 21:48:22 -0700297 int (*setup_clocks)(struct ufs_hba *, bool,
298 enum ufs_notify_change_status);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300299 int (*setup_regulators)(struct ufs_hba *, bool);
Yaniv Gardif06fcc72015-10-28 13:15:51 +0200300 int (*hce_enable_notify)(struct ufs_hba *,
301 enum ufs_notify_change_status);
302 int (*link_startup_notify)(struct ufs_hba *,
303 enum ufs_notify_change_status);
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300304 int (*pwr_change_notify)(struct ufs_hba *,
Yaniv Gardif06fcc72015-10-28 13:15:51 +0200305 enum ufs_notify_change_status status,
306 struct ufs_pa_layer_attr *,
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300307 struct ufs_pa_layer_attr *);
Kiwoong Kim0e675ef2016-11-10 21:14:36 +0900308 void (*setup_xfer_req)(struct ufs_hba *, int, bool);
Kiwoong Kimd2877be2016-11-10 21:16:15 +0900309 void (*setup_task_mgmt)(struct ufs_hba *, int, u8);
Kiwoong Kimee32c902016-11-10 21:17:43 +0900310 void (*hibern8_notify)(struct ufs_hba *, enum uic_cmd_dme,
Subhash Jadavani56d4a182016-12-05 19:25:32 -0800311 enum ufs_notify_change_status);
312 int (*apply_dev_quirks)(struct ufs_hba *);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300313 int (*suspend)(struct ufs_hba *, enum ufs_pm_op);
314 int (*resume)(struct ufs_hba *, enum ufs_pm_op);
Yaniv Gardi6e3fd442015-10-28 13:15:50 +0200315 void (*dbg_register_dump)(struct ufs_hba *hba);
Joao Pinto4b9ffb52016-05-11 12:21:30 +0100316 int (*phy_initialization)(struct ufs_hba *);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300317};
318
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300319/* clock gating state */
320enum clk_gating_state {
321 CLKS_OFF,
322 CLKS_ON,
323 REQ_CLKS_OFF,
324 REQ_CLKS_ON,
325};
326
327/**
328 * struct ufs_clk_gating - UFS clock gating related info
329 * @gate_work: worker to turn off clocks after some delay as specified in
330 * delay_ms
331 * @ungate_work: worker to turn on clocks that will be used in case of
332 * interrupt context
333 * @state: the current clocks state
334 * @delay_ms: gating delay in ms
335 * @is_suspended: clk gating is suspended when set to 1 which can be used
336 * during suspend/resume
337 * @delay_attr: sysfs attribute to control delay_attr
Sahitya Tummalab4274112016-12-22 18:40:39 -0800338 * @enable_attr: sysfs attribute to enable/disable clock gating
339 * @is_enabled: Indicates the current status of clock gating
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300340 * @active_reqs: number of requests that are pending and should be waited for
341 * completion before gating clocks.
342 */
343struct ufs_clk_gating {
344 struct delayed_work gate_work;
345 struct work_struct ungate_work;
346 enum clk_gating_state state;
347 unsigned long delay_ms;
348 bool is_suspended;
349 struct device_attribute delay_attr;
Sahitya Tummalab4274112016-12-22 18:40:39 -0800350 struct device_attribute enable_attr;
351 bool is_enabled;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300352 int active_reqs;
353};
354
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -0800355struct ufs_saved_pwr_info {
356 struct ufs_pa_layer_attr info;
357 bool is_valid;
358};
359
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -0800360/**
361 * struct ufs_clk_scaling - UFS clock scaling related data
362 * @active_reqs: number of requests that are pending. If this is zero when
363 * devfreq ->target() function is called then schedule "suspend_work" to
364 * suspend devfreq.
365 * @tot_busy_t: Total busy time in current polling window
366 * @window_start_t: Start time (in jiffies) of the current polling window
367 * @busy_start_t: Start time of current busy period
368 * @enable_attr: sysfs attribute to enable/disable clock scaling
369 * @saved_pwr_info: UFS power mode may also be changed during scaling and this
370 * one keeps track of previous power mode.
371 * @workq: workqueue to schedule devfreq suspend/resume work
372 * @suspend_work: worker to suspend devfreq
373 * @resume_work: worker to resume devfreq
374 * @is_allowed: tracks if scaling is currently allowed or not
375 * @is_busy_started: tracks if busy period has started or not
376 * @is_suspended: tracks if devfreq is suspended or not
377 */
Sahitya Tummala856b3482014-09-25 15:32:34 +0300378struct ufs_clk_scaling {
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -0800379 int active_reqs;
380 unsigned long tot_busy_t;
Sahitya Tummala856b3482014-09-25 15:32:34 +0300381 unsigned long window_start_t;
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -0800382 ktime_t busy_start_t;
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -0800383 struct device_attribute enable_attr;
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -0800384 struct ufs_saved_pwr_info saved_pwr_info;
subhashj@codeaurora.org401f1e42017-02-03 16:57:39 -0800385 struct workqueue_struct *workq;
386 struct work_struct suspend_work;
387 struct work_struct resume_work;
388 bool is_allowed;
389 bool is_busy_started;
390 bool is_suspended;
Sahitya Tummala856b3482014-09-25 15:32:34 +0300391};
392
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530393/**
Yaniv Gardi3a4bf062014-09-25 15:32:27 +0300394 * struct ufs_init_prefetch - contains data that is pre-fetched once during
395 * initialization
396 * @icc_level: icc level which was read during initialization
397 */
398struct ufs_init_prefetch {
399 u32 icc_level;
400};
401
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800402#define UIC_ERR_REG_HIST_LENGTH 8
403/**
404 * struct ufs_uic_err_reg_hist - keeps history of uic errors
405 * @pos: index to indicate cyclic buffer position
406 * @reg: cyclic buffer for registers value
407 * @tstamp: cyclic buffer for time stamp
408 */
409struct ufs_uic_err_reg_hist {
410 int pos;
411 u32 reg[UIC_ERR_REG_HIST_LENGTH];
412 ktime_t tstamp[UIC_ERR_REG_HIST_LENGTH];
413};
414
415/**
416 * struct ufs_stats - keeps usage/err statistics
417 * @hibern8_exit_cnt: Counter to keep track of number of exits,
418 * reset this after link-startup.
419 * @last_hibern8_exit_tstamp: Set time after the hibern8 exit.
420 * Clear after the first successful command completion.
421 * @pa_err: tracks pa-uic errors
422 * @dl_err: tracks dl-uic errors
423 * @nl_err: tracks nl-uic errors
424 * @tl_err: tracks tl-uic errors
425 * @dme_err: tracks dme errors
426 */
427struct ufs_stats {
428 u32 hibern8_exit_cnt;
429 ktime_t last_hibern8_exit_tstamp;
430 struct ufs_uic_err_reg_hist pa_err;
431 struct ufs_uic_err_reg_hist dl_err;
432 struct ufs_uic_err_reg_hist nl_err;
433 struct ufs_uic_err_reg_hist tl_err;
434 struct ufs_uic_err_reg_hist dme_err;
435};
436
Yaniv Gardi3a4bf062014-09-25 15:32:27 +0300437/**
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530438 * struct ufs_hba - per adapter private structure
439 * @mmio_base: UFSHCI base register address
440 * @ucdl_base_addr: UFS Command Descriptor base address
441 * @utrdl_base_addr: UTP Transfer Request Descriptor base address
442 * @utmrdl_base_addr: UTP Task Management Descriptor base address
443 * @ucdl_dma_addr: UFS Command Descriptor DMA address
444 * @utrdl_dma_addr: UTRDL DMA address
445 * @utmrdl_dma_addr: UTMRDL DMA address
446 * @host: Scsi_Host instance of the driver
447 * @dev: device handle
448 * @lrb: local reference block
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530449 * @lrb_in_use: lrb in use
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530450 * @outstanding_tasks: Bits representing outstanding task requests
451 * @outstanding_reqs: Bits representing outstanding transfer requests
452 * @capabilities: UFS Controller Capabilities
453 * @nutrs: Transfer Request Queue depth supported by controller
454 * @nutmrs: Task Management Queue depth supported by controller
455 * @ufs_version: UFS Version to which controller complies
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300456 * @vops: pointer to variant specific operations
457 * @priv: pointer to variant specific private data
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530458 * @irq: Irq number of the controller
459 * @active_uic_cmd: handle of active UIC command
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530460 * @uic_cmd_mutex: mutex for uic command
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530461 * @tm_wq: wait queue for task management
462 * @tm_tag_wq: wait queue for free task management slots
463 * @tm_slots_in_use: bit map of task management request slots in use
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +0530464 * @pwr_done: completion for power mode change
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530465 * @tm_condition: condition variable for task management
466 * @ufshcd_state: UFSHCD states
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530467 * @eh_flags: Error handling flags
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530468 * @intr_mask: Interrupt Mask Bits
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530469 * @ee_ctrl_mask: Exception event control mask
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +0300470 * @is_powered: flag to check if HBA is powered
Yaniv Gardi3a4bf062014-09-25 15:32:27 +0300471 * @is_init_prefetch: flag to check if data was pre-fetched in initialization
472 * @init_prefetch_data: data pre-fetched during initialization
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530473 * @eh_work: Worker to handle UFS errors that require s/w attention
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530474 * @eeh_work: Worker to handle exception events
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530475 * @errors: HBA errors
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530476 * @uic_error: UFS interconnect layer error status
477 * @saved_err: sticky error mask
478 * @saved_uic_err: sticky UIC error mask
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530479 * @dev_cmd: ufs device management command information
Yaniv Gardicad2e032015-03-31 17:37:14 +0300480 * @last_dme_cmd_tstamp: time stamp of the last completed DME command
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530481 * @auto_bkops_enabled: to track whether bkops is enabled in device
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +0300482 * @vreg_info: UFS device voltage regulator information
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +0300483 * @clk_list_head: UFS host controller clocks list node head
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300484 * @pwr_info: holds current power mode
485 * @max_pwr_info: keeps the device max valid pwm
Yaniv Gardiafdfff52016-03-10 17:37:15 +0200486 * @urgent_bkops_lvl: keeps track of urgent bkops level for device
487 * @is_urgent_bkops_lvl_checked: keeps track if the urgent bkops level for
488 * device is known or not.
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530489 */
490struct ufs_hba {
491 void __iomem *mmio_base;
492
493 /* Virtual memory reference */
494 struct utp_transfer_cmd_desc *ucdl_base_addr;
495 struct utp_transfer_req_desc *utrdl_base_addr;
496 struct utp_task_req_desc *utmrdl_base_addr;
497
498 /* DMA memory reference */
499 dma_addr_t ucdl_dma_addr;
500 dma_addr_t utrdl_dma_addr;
501 dma_addr_t utmrdl_dma_addr;
502
503 struct Scsi_Host *host;
504 struct device *dev;
Subhash Jadavani2a8fa602014-09-25 15:32:28 +0300505 /*
506 * This field is to keep a reference to "scsi_device" corresponding to
507 * "UFS device" W-LU.
508 */
509 struct scsi_device *sdev_ufs_device;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530510
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300511 enum ufs_dev_pwr_mode curr_dev_pwr_mode;
512 enum uic_link_state uic_link_state;
513 /* Desired UFS power management level during runtime PM */
514 enum ufs_pm_level rpm_lvl;
515 /* Desired UFS power management level during system PM */
516 enum ufs_pm_level spm_lvl;
subhashj@codeaurora.org09690d52016-12-22 18:41:00 -0800517 struct device_attribute rpm_lvl_attr;
518 struct device_attribute spm_lvl_attr;
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300519 int pm_op_in_progress;
520
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530521 struct ufshcd_lrb *lrb;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530522 unsigned long lrb_in_use;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530523
524 unsigned long outstanding_tasks;
525 unsigned long outstanding_reqs;
526
527 u32 capabilities;
528 int nutrs;
529 int nutmrs;
530 u32 ufs_version;
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300531 struct ufs_hba_variant_ops *vops;
532 void *priv;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530533 unsigned int irq;
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300534 bool is_irq_enabled;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530535
Yaniv Gardib8521902015-05-17 18:54:57 +0300536 /* Interrupt aggregation support is broken */
537 #define UFSHCD_QUIRK_BROKEN_INTR_AGGR UFS_BIT(0)
538
Yaniv Gardicad2e032015-03-31 17:37:14 +0300539 /*
540 * delay before each dme command is required as the unipro
541 * layer has shown instabilities
542 */
Yaniv Gardib8521902015-05-17 18:54:57 +0300543 #define UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS UFS_BIT(1)
544
Yaniv Gardi7ca38cf2015-05-17 18:54:59 +0300545 /*
546 * If UFS host controller is having issue in processing LCC (Line
547 * Control Command) coming from device then enable this quirk.
548 * When this quirk is enabled, host controller driver should disable
549 * the LCC transmission on UFS device (by clearing TX_LCC_ENABLE
550 * attribute of device to 0).
551 */
552 #define UFSHCD_QUIRK_BROKEN_LCC UFS_BIT(2)
Yaniv Gardicad2e032015-03-31 17:37:14 +0300553
Yaniv Gardic3a2f9e2015-05-17 18:55:01 +0300554 /*
555 * The attribute PA_RXHSUNTERMCAP specifies whether or not the
556 * inbound Link supports unterminated line in HS mode. Setting this
557 * attribute to 1 fixes moving to HS gear.
558 */
559 #define UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP UFS_BIT(3)
560
Yaniv Gardi874237f2015-05-17 18:55:03 +0300561 /*
562 * This quirk needs to be enabled if the host contoller only allows
563 * accessing the peer dme attributes in AUTO mode (FAST AUTO or
564 * SLOW AUTO).
565 */
566 #define UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE UFS_BIT(4)
567
Yaniv Gardi9949e702015-05-17 18:55:05 +0300568 /*
569 * This quirk needs to be enabled if the host contoller doesn't
570 * advertise the correct version in UFS_VER register. If this quirk
571 * is enabled, standard UFS host driver will call the vendor specific
572 * ops (get_ufs_hci_version) to get the correct version.
573 */
574 #define UFSHCD_QUIRK_BROKEN_UFS_HCI_VERSION UFS_BIT(5)
575
Kiwoong Kim75b1cc42016-11-22 17:06:59 +0900576 /*
577 * This quirk needs to be enabled if the host contoller regards
578 * resolution of the values of PRDTO and PRDTL in UTRD as byte.
579 */
580 #define UFSHCD_QUIRK_PRDT_BYTE_GRAN UFS_BIT(7)
581
Yaniv Gardicad2e032015-03-31 17:37:14 +0300582 unsigned int quirks; /* Deviations from standard UFSHCI spec. */
Seungwon Jeon6ccf44fe2013-06-26 22:39:29 +0530583
Yaniv Gardic58ab7a2016-03-10 17:37:10 +0200584 /* Device deviations from standard UFS device spec. */
585 unsigned int dev_quirks;
586
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530587 wait_queue_head_t tm_wq;
588 wait_queue_head_t tm_tag_wq;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530589 unsigned long tm_condition;
Sujit Reddy Thummae2933132014-05-26 10:59:12 +0530590 unsigned long tm_slots_in_use;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530591
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300592 struct uic_command *active_uic_cmd;
593 struct mutex uic_cmd_mutex;
594 struct completion *uic_async_done;
Seungwon Jeon53b3d9c2013-08-31 21:40:22 +0530595
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530596 u32 ufshcd_state;
Sujit Reddy Thumma3441da72014-05-26 10:59:14 +0530597 u32 eh_flags;
Seungwon Jeon2fbd0092013-06-26 22:39:27 +0530598 u32 intr_mask;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530599 u16 ee_ctrl_mask;
Sujit Reddy Thumma1d337ec2014-09-25 15:32:26 +0300600 bool is_powered;
Yaniv Gardi3a4bf062014-09-25 15:32:27 +0300601 bool is_init_prefetch;
602 struct ufs_init_prefetch init_prefetch_data;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530603
604 /* Work Queues */
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530605 struct work_struct eh_work;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530606 struct work_struct eeh_work;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530607
608 /* HBA Errors */
609 u32 errors;
Sujit Reddy Thummae8e7f272014-05-26 10:59:15 +0530610 u32 uic_error;
611 u32 saved_err;
612 u32 saved_uic_err;
Dolev Ravivff8e20c2016-12-22 18:42:18 -0800613 struct ufs_stats ufs_stats;
Sujit Reddy Thumma5a0b0cb2013-07-30 00:35:57 +0530614
615 /* Device management request data */
616 struct ufs_dev_cmd dev_cmd;
Yaniv Gardicad2e032015-03-31 17:37:14 +0300617 ktime_t last_dme_cmd_tstamp;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530618
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300619 /* Keeps information of the UFS device connected to this host */
620 struct ufs_dev_info dev_info;
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530621 bool auto_bkops_enabled;
Sujit Reddy Thummaaa497612014-09-25 15:32:22 +0300622 struct ufs_vreg_info vreg_info;
Sujit Reddy Thummac6e79da2014-09-25 15:32:23 +0300623 struct list_head clk_list_head;
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300624
625 bool wlun_dev_clr_ua;
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300626
Gilad Broner7fabb772017-02-03 16:56:50 -0800627 /* Number of requests aborts */
628 int req_abort_count;
629
Yaniv Gardi54b879b2016-03-10 17:37:05 +0200630 /* Number of lanes available (1 or 2) for Rx/Tx */
631 u32 lanes_per_direction;
Dolev Raviv7eb584d2014-09-25 15:32:31 +0300632 struct ufs_pa_layer_attr pwr_info;
633 struct ufs_pwr_mode_info max_pwr_info;
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300634
635 struct ufs_clk_gating clk_gating;
636 /* Control to enable/disable host capabilities */
637 u32 caps;
638 /* Allow dynamic clk gating */
639#define UFSHCD_CAP_CLK_GATING (1 << 0)
640 /* Allow hiberb8 with clk gating */
641#define UFSHCD_CAP_HIBERN8_WITH_CLK_GATING (1 << 1)
Sahitya Tummala856b3482014-09-25 15:32:34 +0300642 /* Allow dynamic clk scaling */
643#define UFSHCD_CAP_CLK_SCALING (1 << 2)
Subhash Jadavani374a2462014-09-25 15:32:35 +0300644 /* Allow auto bkops to enabled during runtime suspend */
645#define UFSHCD_CAP_AUTO_BKOPS_SUSPEND (1 << 3)
Yaniv Gardib8521902015-05-17 18:54:57 +0300646 /*
647 * This capability allows host controller driver to use the UFS HCI's
648 * interrupt aggregation capability.
649 * CAUTION: Enabling this might reduce overall UFS throughput.
650 */
651#define UFSHCD_CAP_INTR_AGGR (1 << 4)
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -0800652 /*
653 * This capability allows the device auto-bkops to be always enabled
654 * except during suspend (both runtime and suspend).
655 * Enabling this capability means that device will always be allowed
656 * to do background operation when it's active but it might degrade
657 * the performance of ongoing read/write operations.
658 */
659#define UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND (1 << 5)
Sahitya Tummala856b3482014-09-25 15:32:34 +0300660
661 struct devfreq *devfreq;
662 struct ufs_clk_scaling clk_scaling;
Dolev Ravive7850602014-09-25 15:32:36 +0300663 bool is_sys_suspended;
Yaniv Gardiafdfff52016-03-10 17:37:15 +0200664
665 enum bkops_status urgent_bkops_lvl;
666 bool is_urgent_bkops_lvl_checked;
subhashj@codeaurora.orga3cd5ec2017-02-03 16:57:02 -0800667
668 struct rw_semaphore clk_scaling_lock;
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530669};
670
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300671/* Returns true if clocks can be gated. Otherwise false */
672static inline bool ufshcd_is_clkgating_allowed(struct ufs_hba *hba)
673{
674 return hba->caps & UFSHCD_CAP_CLK_GATING;
675}
676static inline bool ufshcd_can_hibern8_during_gating(struct ufs_hba *hba)
677{
678 return hba->caps & UFSHCD_CAP_HIBERN8_WITH_CLK_GATING;
679}
Sahitya Tummalafcb0c4b2016-12-22 18:40:50 -0800680static inline int ufshcd_is_clkscaling_supported(struct ufs_hba *hba)
Sahitya Tummala856b3482014-09-25 15:32:34 +0300681{
682 return hba->caps & UFSHCD_CAP_CLK_SCALING;
683}
Subhash Jadavani374a2462014-09-25 15:32:35 +0300684static inline bool ufshcd_can_autobkops_during_suspend(struct ufs_hba *hba)
685{
686 return hba->caps & UFSHCD_CAP_AUTO_BKOPS_SUSPEND;
687}
688
Yaniv Gardib8521902015-05-17 18:54:57 +0300689static inline bool ufshcd_is_intr_aggr_allowed(struct ufs_hba *hba)
690{
Joao Pinto4b9ffb52016-05-11 12:21:30 +0100691/* DWC UFS Core has the Interrupt aggregation feature but is not detectable*/
692#ifndef CONFIG_SCSI_UFS_DWC
Yaniv Gardib8521902015-05-17 18:54:57 +0300693 if ((hba->caps & UFSHCD_CAP_INTR_AGGR) &&
694 !(hba->quirks & UFSHCD_QUIRK_BROKEN_INTR_AGGR))
695 return true;
696 else
697 return false;
Joao Pinto4b9ffb52016-05-11 12:21:30 +0100698#else
699return true;
700#endif
Yaniv Gardib8521902015-05-17 18:54:57 +0300701}
702
Seungwon Jeonb873a2752013-06-26 22:39:26 +0530703#define ufshcd_writel(hba, val, reg) \
704 writel((val), (hba)->mmio_base + (reg))
705#define ufshcd_readl(hba, reg) \
706 readl((hba)->mmio_base + (reg))
707
Dolev Ravive7850602014-09-25 15:32:36 +0300708/**
709 * ufshcd_rmwl - read modify write into a register
710 * @hba - per adapter instance
711 * @mask - mask to apply on read value
712 * @val - actual value to write
713 * @reg - register address
714 */
715static inline void ufshcd_rmwl(struct ufs_hba *hba, u32 mask, u32 val, u32 reg)
716{
717 u32 tmp;
718
719 tmp = ufshcd_readl(hba, reg);
720 tmp &= ~mask;
721 tmp |= (val & mask);
722 ufshcd_writel(hba, tmp, reg);
723}
724
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300725int ufshcd_alloc_host(struct device *, struct ufs_hba **);
Yaniv Gardi47555a52015-10-28 13:15:49 +0200726void ufshcd_dealloc_host(struct ufs_hba *);
Sujit Reddy Thumma5c0c28a2014-09-25 15:32:21 +0300727int ufshcd_init(struct ufs_hba * , void __iomem * , unsigned int);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530728void ufshcd_remove(struct ufs_hba *);
Yaniv Gardi596585a2016-03-10 17:37:08 +0200729int ufshcd_wait_for_register(struct ufs_hba *hba, u32 reg, u32 mask,
730 u32 val, unsigned long interval_us,
731 unsigned long timeout_ms, bool can_sleep);
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530732
Dolev Raviv68078d52013-07-30 00:35:58 +0530733static inline void check_upiu_size(void)
734{
735 BUILD_BUG_ON(ALIGNED_UPIU_SIZE <
736 GENERAL_UPIU_REQUEST_SIZE + QUERY_DESC_MAX_SIZE);
737}
738
Yaniv Gardi1ce58982015-10-28 13:15:47 +0200739/**
740 * ufshcd_set_variant - set variant specific data to the hba
741 * @hba - per adapter instance
742 * @variant - pointer to variant specific data
743 */
744static inline void ufshcd_set_variant(struct ufs_hba *hba, void *variant)
745{
746 BUG_ON(!hba);
747 hba->priv = variant;
748}
749
750/**
751 * ufshcd_get_variant - get variant specific data from the hba
752 * @hba - per adapter instance
753 */
754static inline void *ufshcd_get_variant(struct ufs_hba *hba)
755{
756 BUG_ON(!hba);
757 return hba->priv;
758}
subhashj@codeaurora.org4e768e72016-12-22 18:41:22 -0800759static inline bool ufshcd_keep_autobkops_enabled_except_suspend(
760 struct ufs_hba *hba)
761{
762 return hba->caps & UFSHCD_CAP_KEEP_AUTO_BKOPS_ENABLED_EXCEPT_SUSPEND;
763}
Yaniv Gardi1ce58982015-10-28 13:15:47 +0200764
Sujit Reddy Thumma66ec6d52013-07-30 00:35:59 +0530765extern int ufshcd_runtime_suspend(struct ufs_hba *hba);
766extern int ufshcd_runtime_resume(struct ufs_hba *hba);
767extern int ufshcd_runtime_idle(struct ufs_hba *hba);
Subhash Jadavani57d104c2014-09-25 15:32:30 +0300768extern int ufshcd_system_suspend(struct ufs_hba *hba);
769extern int ufshcd_system_resume(struct ufs_hba *hba);
770extern int ufshcd_shutdown(struct ufs_hba *hba);
Seungwon Jeon12b4fdb2013-08-31 21:40:21 +0530771extern int ufshcd_dme_set_attr(struct ufs_hba *hba, u32 attr_sel,
772 u8 attr_set, u32 mib_val, u8 peer);
773extern int ufshcd_dme_get_attr(struct ufs_hba *hba, u32 attr_sel,
774 u32 *mib_val, u8 peer);
775
776/* UIC command interfaces for DME primitives */
777#define DME_LOCAL 0
778#define DME_PEER 1
779#define ATTR_SET_NOR 0 /* NORMAL */
780#define ATTR_SET_ST 1 /* STATIC */
781
782static inline int ufshcd_dme_set(struct ufs_hba *hba, u32 attr_sel,
783 u32 mib_val)
784{
785 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
786 mib_val, DME_LOCAL);
787}
788
789static inline int ufshcd_dme_st_set(struct ufs_hba *hba, u32 attr_sel,
790 u32 mib_val)
791{
792 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
793 mib_val, DME_LOCAL);
794}
795
796static inline int ufshcd_dme_peer_set(struct ufs_hba *hba, u32 attr_sel,
797 u32 mib_val)
798{
799 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_NOR,
800 mib_val, DME_PEER);
801}
802
803static inline int ufshcd_dme_peer_st_set(struct ufs_hba *hba, u32 attr_sel,
804 u32 mib_val)
805{
806 return ufshcd_dme_set_attr(hba, attr_sel, ATTR_SET_ST,
807 mib_val, DME_PEER);
808}
809
810static inline int ufshcd_dme_get(struct ufs_hba *hba,
811 u32 attr_sel, u32 *mib_val)
812{
813 return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_LOCAL);
814}
815
816static inline int ufshcd_dme_peer_get(struct ufs_hba *hba,
817 u32 attr_sel, u32 *mib_val)
818{
819 return ufshcd_dme_get_attr(hba, attr_sel, mib_val, DME_PEER);
820}
821
Yaniv Gardif37aabc2016-03-10 17:37:20 +0200822static inline bool ufshcd_is_hs_mode(struct ufs_pa_layer_attr *pwr_info)
823{
824 return (pwr_info->pwr_rx == FAST_MODE ||
825 pwr_info->pwr_rx == FASTAUTO_MODE) &&
826 (pwr_info->pwr_tx == FAST_MODE ||
827 pwr_info->pwr_tx == FASTAUTO_MODE);
828}
829
Yaniv Gardidc3c8d32016-02-01 15:02:46 +0200830/* Expose Query-Request API */
831int ufshcd_query_flag(struct ufs_hba *hba, enum query_opcode opcode,
832 enum flag_idn idn, bool *flag_res);
Sahitya Tummala1ab27c92014-09-25 15:32:32 +0300833int ufshcd_hold(struct ufs_hba *hba, bool async);
834void ufshcd_release(struct ufs_hba *hba);
Yaniv Gardi37113102016-03-10 17:37:16 +0200835u32 ufshcd_get_local_unipro_ver(struct ufs_hba *hba);
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200836
837/* Wrapper functions for safely calling variant operations */
838static inline const char *ufshcd_get_var_name(struct ufs_hba *hba)
839{
840 if (hba->vops)
841 return hba->vops->name;
842 return "";
843}
844
845static inline int ufshcd_vops_init(struct ufs_hba *hba)
846{
847 if (hba->vops && hba->vops->init)
848 return hba->vops->init(hba);
849
850 return 0;
851}
852
853static inline void ufshcd_vops_exit(struct ufs_hba *hba)
854{
855 if (hba->vops && hba->vops->exit)
856 return hba->vops->exit(hba);
857}
858
859static inline u32 ufshcd_vops_get_ufs_hci_version(struct ufs_hba *hba)
860{
861 if (hba->vops && hba->vops->get_ufs_hci_version)
862 return hba->vops->get_ufs_hci_version(hba);
863
864 return ufshcd_readl(hba, REG_UFS_VERSION);
865}
866
Yaniv Gardif06fcc72015-10-28 13:15:51 +0200867static inline int ufshcd_vops_clk_scale_notify(struct ufs_hba *hba,
868 bool up, enum ufs_notify_change_status status)
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200869{
870 if (hba->vops && hba->vops->clk_scale_notify)
Yaniv Gardif06fcc72015-10-28 13:15:51 +0200871 return hba->vops->clk_scale_notify(hba, up, status);
872 return 0;
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200873}
874
Subhash Jadavani1e879e82016-10-06 21:48:22 -0700875static inline int ufshcd_vops_setup_clocks(struct ufs_hba *hba, bool on,
876 enum ufs_notify_change_status status)
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200877{
878 if (hba->vops && hba->vops->setup_clocks)
Subhash Jadavani1e879e82016-10-06 21:48:22 -0700879 return hba->vops->setup_clocks(hba, on, status);
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200880 return 0;
881}
882
883static inline int ufshcd_vops_setup_regulators(struct ufs_hba *hba, bool status)
884{
885 if (hba->vops && hba->vops->setup_regulators)
886 return hba->vops->setup_regulators(hba, status);
887
888 return 0;
889}
890
891static inline int ufshcd_vops_hce_enable_notify(struct ufs_hba *hba,
892 bool status)
893{
894 if (hba->vops && hba->vops->hce_enable_notify)
895 return hba->vops->hce_enable_notify(hba, status);
896
897 return 0;
898}
899static inline int ufshcd_vops_link_startup_notify(struct ufs_hba *hba,
900 bool status)
901{
902 if (hba->vops && hba->vops->link_startup_notify)
903 return hba->vops->link_startup_notify(hba, status);
904
905 return 0;
906}
907
908static inline int ufshcd_vops_pwr_change_notify(struct ufs_hba *hba,
909 bool status,
910 struct ufs_pa_layer_attr *dev_max_params,
911 struct ufs_pa_layer_attr *dev_req_params)
912{
913 if (hba->vops && hba->vops->pwr_change_notify)
914 return hba->vops->pwr_change_notify(hba, status,
915 dev_max_params, dev_req_params);
916
917 return -ENOTSUPP;
918}
919
Kiwoong Kim0e675ef2016-11-10 21:14:36 +0900920static inline void ufshcd_vops_setup_xfer_req(struct ufs_hba *hba, int tag,
921 bool is_scsi_cmd)
922{
923 if (hba->vops && hba->vops->setup_xfer_req)
924 return hba->vops->setup_xfer_req(hba, tag, is_scsi_cmd);
925}
926
Kiwoong Kimd2877be2016-11-10 21:16:15 +0900927static inline void ufshcd_vops_setup_task_mgmt(struct ufs_hba *hba,
928 int tag, u8 tm_function)
929{
930 if (hba->vops && hba->vops->setup_task_mgmt)
931 return hba->vops->setup_task_mgmt(hba, tag, tm_function);
932}
933
Kiwoong Kimee32c902016-11-10 21:17:43 +0900934static inline void ufshcd_vops_hibern8_notify(struct ufs_hba *hba,
935 enum uic_cmd_dme cmd,
936 enum ufs_notify_change_status status)
937{
938 if (hba->vops && hba->vops->hibern8_notify)
939 return hba->vops->hibern8_notify(hba, cmd, status);
940}
941
Subhash Jadavani56d4a182016-12-05 19:25:32 -0800942static inline int ufshcd_vops_apply_dev_quirks(struct ufs_hba *hba)
943{
944 if (hba->vops && hba->vops->apply_dev_quirks)
945 return hba->vops->apply_dev_quirks(hba);
946 return 0;
947}
948
Yaniv Gardi0263bcd2015-10-28 13:15:48 +0200949static inline int ufshcd_vops_suspend(struct ufs_hba *hba, enum ufs_pm_op op)
950{
951 if (hba->vops && hba->vops->suspend)
952 return hba->vops->suspend(hba, op);
953
954 return 0;
955}
956
957static inline int ufshcd_vops_resume(struct ufs_hba *hba, enum ufs_pm_op op)
958{
959 if (hba->vops && hba->vops->resume)
960 return hba->vops->resume(hba, op);
961
962 return 0;
963}
964
Yaniv Gardi6e3fd442015-10-28 13:15:50 +0200965static inline void ufshcd_vops_dbg_register_dump(struct ufs_hba *hba)
966{
967 if (hba->vops && hba->vops->dbg_register_dump)
968 hba->vops->dbg_register_dump(hba);
969}
970
Vinayak Holikattie0eca632013-02-25 21:44:33 +0530971#endif /* End of Header */