blob: de9cfb05598a099be53e3d93941bab8d2fa43e54 [file] [log] [blame]
Yaniv Gardi81c0fc52015-01-15 16:32:37 +02001/*
2 * Copyright (c) 2013-2015, Linux Foundation. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
15#include <linux/time.h>
16#include <linux/of.h>
17#include <linux/platform_device.h>
18#include <linux/phy/phy.h>
19
20#include <linux/phy/phy-qcom-ufs.h>
21#include "ufshcd.h"
22#include "unipro.h"
23#include "ufs-qcom.h"
24#include "ufshci.h"
25
26static struct ufs_qcom_host *ufs_qcom_hosts[MAX_UFS_QCOM_HOSTS];
27
28static void ufs_qcom_get_speed_mode(struct ufs_pa_layer_attr *p, char *result);
29static int ufs_qcom_get_bus_vote(struct ufs_qcom_host *host,
30 const char *speed_mode);
31static int ufs_qcom_set_bus_vote(struct ufs_qcom_host *host, int vote);
32
33static int ufs_qcom_get_connected_tx_lanes(struct ufs_hba *hba, u32 *tx_lanes)
34{
35 int err = 0;
36
37 err = ufshcd_dme_get(hba,
38 UIC_ARG_MIB(PA_CONNECTEDTXDATALANES), tx_lanes);
39 if (err)
40 dev_err(hba->dev, "%s: couldn't read PA_CONNECTEDTXDATALANES %d\n",
41 __func__, err);
42
43 return err;
44}
45
46static int ufs_qcom_host_clk_get(struct device *dev,
47 const char *name, struct clk **clk_out)
48{
49 struct clk *clk;
50 int err = 0;
51
52 clk = devm_clk_get(dev, name);
53 if (IS_ERR(clk)) {
54 err = PTR_ERR(clk);
55 dev_err(dev, "%s: failed to get %s err %d",
56 __func__, name, err);
57 } else {
58 *clk_out = clk;
59 }
60
61 return err;
62}
63
64static int ufs_qcom_host_clk_enable(struct device *dev,
65 const char *name, struct clk *clk)
66{
67 int err = 0;
68
69 err = clk_prepare_enable(clk);
70 if (err)
71 dev_err(dev, "%s: %s enable failed %d\n", __func__, name, err);
72
73 return err;
74}
75
76static void ufs_qcom_disable_lane_clks(struct ufs_qcom_host *host)
77{
78 if (!host->is_lane_clks_enabled)
79 return;
80
81 clk_disable_unprepare(host->tx_l1_sync_clk);
82 clk_disable_unprepare(host->tx_l0_sync_clk);
83 clk_disable_unprepare(host->rx_l1_sync_clk);
84 clk_disable_unprepare(host->rx_l0_sync_clk);
85
86 host->is_lane_clks_enabled = false;
87}
88
89static int ufs_qcom_enable_lane_clks(struct ufs_qcom_host *host)
90{
91 int err = 0;
92 struct device *dev = host->hba->dev;
93
94 if (host->is_lane_clks_enabled)
95 return 0;
96
97 err = ufs_qcom_host_clk_enable(dev, "rx_lane0_sync_clk",
98 host->rx_l0_sync_clk);
99 if (err)
100 goto out;
101
102 err = ufs_qcom_host_clk_enable(dev, "tx_lane0_sync_clk",
103 host->tx_l0_sync_clk);
104 if (err)
105 goto disable_rx_l0;
106
107 err = ufs_qcom_host_clk_enable(dev, "rx_lane1_sync_clk",
108 host->rx_l1_sync_clk);
109 if (err)
110 goto disable_tx_l0;
111
112 err = ufs_qcom_host_clk_enable(dev, "tx_lane1_sync_clk",
113 host->tx_l1_sync_clk);
114 if (err)
115 goto disable_rx_l1;
116
117 host->is_lane_clks_enabled = true;
118 goto out;
119
120disable_rx_l1:
121 clk_disable_unprepare(host->rx_l1_sync_clk);
122disable_tx_l0:
123 clk_disable_unprepare(host->tx_l0_sync_clk);
124disable_rx_l0:
125 clk_disable_unprepare(host->rx_l0_sync_clk);
126out:
127 return err;
128}
129
130static int ufs_qcom_init_lane_clks(struct ufs_qcom_host *host)
131{
132 int err = 0;
133 struct device *dev = host->hba->dev;
134
135 err = ufs_qcom_host_clk_get(dev,
136 "rx_lane0_sync_clk", &host->rx_l0_sync_clk);
137 if (err)
138 goto out;
139
140 err = ufs_qcom_host_clk_get(dev,
141 "tx_lane0_sync_clk", &host->tx_l0_sync_clk);
142 if (err)
143 goto out;
144
145 err = ufs_qcom_host_clk_get(dev, "rx_lane1_sync_clk",
146 &host->rx_l1_sync_clk);
147 if (err)
148 goto out;
149
150 err = ufs_qcom_host_clk_get(dev, "tx_lane1_sync_clk",
151 &host->tx_l1_sync_clk);
152out:
153 return err;
154}
155
156static int ufs_qcom_link_startup_post_change(struct ufs_hba *hba)
157{
158 struct ufs_qcom_host *host = hba->priv;
159 struct phy *phy = host->generic_phy;
160 u32 tx_lanes;
161 int err = 0;
162
163 err = ufs_qcom_get_connected_tx_lanes(hba, &tx_lanes);
164 if (err)
165 goto out;
166
167 err = ufs_qcom_phy_set_tx_lane_enable(phy, tx_lanes);
168 if (err)
169 dev_err(hba->dev, "%s: ufs_qcom_phy_set_tx_lane_enable failed\n",
170 __func__);
171
172out:
173 return err;
174}
175
176static int ufs_qcom_check_hibern8(struct ufs_hba *hba)
177{
178 int err;
179 u32 tx_fsm_val = 0;
180 unsigned long timeout = jiffies + msecs_to_jiffies(HBRN8_POLL_TOUT_MS);
181
182 do {
183 err = ufshcd_dme_get(hba,
184 UIC_ARG_MIB(MPHY_TX_FSM_STATE), &tx_fsm_val);
185 if (err || tx_fsm_val == TX_FSM_HIBERN8)
186 break;
187
188 /* sleep for max. 200us */
189 usleep_range(100, 200);
190 } while (time_before(jiffies, timeout));
191
192 /*
193 * we might have scheduled out for long during polling so
194 * check the state again.
195 */
196 if (time_after(jiffies, timeout))
197 err = ufshcd_dme_get(hba,
198 UIC_ARG_MIB(MPHY_TX_FSM_STATE), &tx_fsm_val);
199
200 if (err) {
201 dev_err(hba->dev, "%s: unable to get TX_FSM_STATE, err %d\n",
202 __func__, err);
203 } else if (tx_fsm_val != TX_FSM_HIBERN8) {
204 err = tx_fsm_val;
205 dev_err(hba->dev, "%s: invalid TX_FSM_STATE = %d\n",
206 __func__, err);
207 }
208
209 return err;
210}
211
212static int ufs_qcom_power_up_sequence(struct ufs_hba *hba)
213{
214 struct ufs_qcom_host *host = hba->priv;
215 struct phy *phy = host->generic_phy;
216 int ret = 0;
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200217 bool is_rate_B = (UFS_QCOM_LIMIT_HS_RATE == PA_HS_MODE_B)
218 ? true : false;
219
220 /* Assert PHY reset and apply PHY calibration values */
221 ufs_qcom_assert_reset(hba);
222 /* provide 1ms delay to let the reset pulse propagate */
223 usleep_range(1000, 1100);
224
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200225 ret = ufs_qcom_phy_calibrate_phy(phy, is_rate_B);
226 if (ret) {
227 dev_err(hba->dev, "%s: ufs_qcom_phy_calibrate_phy() failed, ret = %d\n",
228 __func__, ret);
229 goto out;
230 }
231
232 /* De-assert PHY reset and start serdes */
233 ufs_qcom_deassert_reset(hba);
234
235 /*
236 * after reset deassertion, phy will need all ref clocks,
237 * voltage, current to settle down before starting serdes.
238 */
239 usleep_range(1000, 1100);
240 ret = ufs_qcom_phy_start_serdes(phy);
241 if (ret) {
242 dev_err(hba->dev, "%s: ufs_qcom_phy_start_serdes() failed, ret = %d\n",
243 __func__, ret);
244 goto out;
245 }
246
247 ret = ufs_qcom_phy_is_pcs_ready(phy);
248 if (ret)
249 dev_err(hba->dev, "%s: is_physical_coding_sublayer_ready() failed, ret = %d\n",
250 __func__, ret);
251
252out:
253 return ret;
254}
255
256/*
257 * The UTP controller has a number of internal clock gating cells (CGCs).
258 * Internal hardware sub-modules within the UTP controller control the CGCs.
259 * Hardware CGCs disable the clock to inactivate UTP sub-modules not involved
260 * in a specific operation, UTP controller CGCs are by default disabled and
261 * this function enables them (after every UFS link startup) to save some power
262 * leakage.
263 */
264static void ufs_qcom_enable_hw_clk_gating(struct ufs_hba *hba)
265{
266 ufshcd_writel(hba,
267 ufshcd_readl(hba, REG_UFS_CFG2) | REG_UFS_CFG2_CGC_EN_ALL,
268 REG_UFS_CFG2);
269
270 /* Ensure that HW clock gating is enabled before next operations */
271 mb();
272}
273
274static int ufs_qcom_hce_enable_notify(struct ufs_hba *hba, bool status)
275{
276 struct ufs_qcom_host *host = hba->priv;
277 int err = 0;
278
279 switch (status) {
280 case PRE_CHANGE:
281 ufs_qcom_power_up_sequence(hba);
282 /*
283 * The PHY PLL output is the source of tx/rx lane symbol
284 * clocks, hence, enable the lane clocks only after PHY
285 * is initialized.
286 */
287 err = ufs_qcom_enable_lane_clks(host);
288 break;
289 case POST_CHANGE:
290 /* check if UFS PHY moved from DISABLED to HIBERN8 */
291 err = ufs_qcom_check_hibern8(hba);
292 ufs_qcom_enable_hw_clk_gating(hba);
293
294 break;
295 default:
296 dev_err(hba->dev, "%s: invalid status %d\n", __func__, status);
297 err = -EINVAL;
298 break;
299 }
300 return err;
301}
302
303/**
304 * Returns non-zero for success (which rate of core_clk) and 0
305 * in case of a failure
306 */
307static unsigned long
308ufs_qcom_cfg_timers(struct ufs_hba *hba, u32 gear, u32 hs, u32 rate)
309{
Yaniv Gardi81c7e062015-05-17 18:54:58 +0300310 struct ufs_qcom_host *host = hba->priv;
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200311 struct ufs_clk_info *clki;
312 u32 core_clk_period_in_ns;
313 u32 tx_clk_cycles_per_us = 0;
314 unsigned long core_clk_rate = 0;
315 u32 core_clk_cycles_per_us = 0;
316
317 static u32 pwm_fr_table[][2] = {
318 {UFS_PWM_G1, 0x1},
319 {UFS_PWM_G2, 0x1},
320 {UFS_PWM_G3, 0x1},
321 {UFS_PWM_G4, 0x1},
322 };
323
324 static u32 hs_fr_table_rA[][2] = {
325 {UFS_HS_G1, 0x1F},
326 {UFS_HS_G2, 0x3e},
327 };
328
329 static u32 hs_fr_table_rB[][2] = {
330 {UFS_HS_G1, 0x24},
331 {UFS_HS_G2, 0x49},
332 };
333
Yaniv Gardi81c7e062015-05-17 18:54:58 +0300334 /*
335 * The Qunipro controller does not use following registers:
336 * SYS1CLK_1US_REG, TX_SYMBOL_CLK_1US_REG, CLK_NS_REG &
337 * UFS_REG_PA_LINK_STARTUP_TIMER
338 * But UTP controller uses SYS1CLK_1US_REG register for Interrupt
339 * Aggregation logic.
340 */
341 if (ufs_qcom_cap_qunipro(host) && !ufshcd_is_intr_aggr_allowed(hba))
342 goto out;
343
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200344 if (gear == 0) {
345 dev_err(hba->dev, "%s: invalid gear = %d\n", __func__, gear);
346 goto out_error;
347 }
348
349 list_for_each_entry(clki, &hba->clk_list_head, list) {
350 if (!strcmp(clki->name, "core_clk"))
351 core_clk_rate = clk_get_rate(clki->clk);
352 }
353
354 /* If frequency is smaller than 1MHz, set to 1MHz */
355 if (core_clk_rate < DEFAULT_CLK_RATE_HZ)
356 core_clk_rate = DEFAULT_CLK_RATE_HZ;
357
358 core_clk_cycles_per_us = core_clk_rate / USEC_PER_SEC;
359 ufshcd_writel(hba, core_clk_cycles_per_us, REG_UFS_SYS1CLK_1US);
360
361 core_clk_period_in_ns = NSEC_PER_SEC / core_clk_rate;
362 core_clk_period_in_ns <<= OFFSET_CLK_NS_REG;
363 core_clk_period_in_ns &= MASK_CLK_NS_REG;
364
365 switch (hs) {
366 case FASTAUTO_MODE:
367 case FAST_MODE:
368 if (rate == PA_HS_MODE_A) {
369 if (gear > ARRAY_SIZE(hs_fr_table_rA)) {
370 dev_err(hba->dev,
371 "%s: index %d exceeds table size %zu\n",
372 __func__, gear,
373 ARRAY_SIZE(hs_fr_table_rA));
374 goto out_error;
375 }
376 tx_clk_cycles_per_us = hs_fr_table_rA[gear-1][1];
377 } else if (rate == PA_HS_MODE_B) {
378 if (gear > ARRAY_SIZE(hs_fr_table_rB)) {
379 dev_err(hba->dev,
380 "%s: index %d exceeds table size %zu\n",
381 __func__, gear,
382 ARRAY_SIZE(hs_fr_table_rB));
383 goto out_error;
384 }
385 tx_clk_cycles_per_us = hs_fr_table_rB[gear-1][1];
386 } else {
387 dev_err(hba->dev, "%s: invalid rate = %d\n",
388 __func__, rate);
389 goto out_error;
390 }
391 break;
392 case SLOWAUTO_MODE:
393 case SLOW_MODE:
394 if (gear > ARRAY_SIZE(pwm_fr_table)) {
395 dev_err(hba->dev,
396 "%s: index %d exceeds table size %zu\n",
397 __func__, gear,
398 ARRAY_SIZE(pwm_fr_table));
399 goto out_error;
400 }
401 tx_clk_cycles_per_us = pwm_fr_table[gear-1][1];
402 break;
403 case UNCHANGED:
404 default:
405 dev_err(hba->dev, "%s: invalid mode = %d\n", __func__, hs);
406 goto out_error;
407 }
408
409 /* this register 2 fields shall be written at once */
410 ufshcd_writel(hba, core_clk_period_in_ns | tx_clk_cycles_per_us,
411 REG_UFS_TX_SYMBOL_CLK_NS_US);
412 goto out;
413
414out_error:
415 core_clk_rate = 0;
416out:
417 return core_clk_rate;
418}
419
420static int ufs_qcom_link_startup_notify(struct ufs_hba *hba, bool status)
421{
422 unsigned long core_clk_rate = 0;
423 u32 core_clk_cycles_per_100ms;
424
425 switch (status) {
426 case PRE_CHANGE:
427 core_clk_rate = ufs_qcom_cfg_timers(hba, UFS_PWM_G1,
428 SLOWAUTO_MODE, 0);
429 if (!core_clk_rate) {
430 dev_err(hba->dev, "%s: ufs_qcom_cfg_timers() failed\n",
431 __func__);
432 return -EINVAL;
433 }
434 core_clk_cycles_per_100ms =
435 (core_clk_rate / MSEC_PER_SEC) * 100;
436 ufshcd_writel(hba, core_clk_cycles_per_100ms,
437 REG_UFS_PA_LINK_STARTUP_TIMER);
438 break;
439 case POST_CHANGE:
440 ufs_qcom_link_startup_post_change(hba);
441 break;
442 default:
443 break;
444 }
445
446 return 0;
447}
448
449static int ufs_qcom_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
450{
451 struct ufs_qcom_host *host = hba->priv;
452 struct phy *phy = host->generic_phy;
453 int ret = 0;
454
455 if (ufs_qcom_is_link_off(hba)) {
456 /*
457 * Disable the tx/rx lane symbol clocks before PHY is
458 * powered down as the PLL source should be disabled
459 * after downstream clocks are disabled.
460 */
461 ufs_qcom_disable_lane_clks(host);
462 phy_power_off(phy);
463
464 /* Assert PHY soft reset */
465 ufs_qcom_assert_reset(hba);
466 goto out;
467 }
468
469 /*
470 * If UniPro link is not active, PHY ref_clk, main PHY analog power
471 * rail and low noise analog power rail for PLL can be switched off.
472 */
473 if (!ufs_qcom_is_link_active(hba))
474 phy_power_off(phy);
475
476out:
477 return ret;
478}
479
480static int ufs_qcom_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
481{
482 struct ufs_qcom_host *host = hba->priv;
483 struct phy *phy = host->generic_phy;
484 int err;
485
486 err = phy_power_on(phy);
487 if (err) {
488 dev_err(hba->dev, "%s: failed enabling regs, err = %d\n",
489 __func__, err);
490 goto out;
491 }
492
493 hba->is_sys_suspended = false;
494
495out:
496 return err;
497}
498
499struct ufs_qcom_dev_params {
500 u32 pwm_rx_gear; /* pwm rx gear to work in */
501 u32 pwm_tx_gear; /* pwm tx gear to work in */
502 u32 hs_rx_gear; /* hs rx gear to work in */
503 u32 hs_tx_gear; /* hs tx gear to work in */
504 u32 rx_lanes; /* number of rx lanes */
505 u32 tx_lanes; /* number of tx lanes */
506 u32 rx_pwr_pwm; /* rx pwm working pwr */
507 u32 tx_pwr_pwm; /* tx pwm working pwr */
508 u32 rx_pwr_hs; /* rx hs working pwr */
509 u32 tx_pwr_hs; /* tx hs working pwr */
510 u32 hs_rate; /* rate A/B to work in HS */
511 u32 desired_working_mode;
512};
513
514static int ufs_qcom_get_pwr_dev_param(struct ufs_qcom_dev_params *qcom_param,
515 struct ufs_pa_layer_attr *dev_max,
516 struct ufs_pa_layer_attr *agreed_pwr)
517{
518 int min_qcom_gear;
519 int min_dev_gear;
520 bool is_dev_sup_hs = false;
521 bool is_qcom_max_hs = false;
522
523 if (dev_max->pwr_rx == FAST_MODE)
524 is_dev_sup_hs = true;
525
526 if (qcom_param->desired_working_mode == FAST) {
527 is_qcom_max_hs = true;
528 min_qcom_gear = min_t(u32, qcom_param->hs_rx_gear,
529 qcom_param->hs_tx_gear);
530 } else {
531 min_qcom_gear = min_t(u32, qcom_param->pwm_rx_gear,
532 qcom_param->pwm_tx_gear);
533 }
534
535 /*
536 * device doesn't support HS but qcom_param->desired_working_mode is
537 * HS, thus device and qcom_param don't agree
538 */
539 if (!is_dev_sup_hs && is_qcom_max_hs) {
540 pr_err("%s: failed to agree on power mode (device doesn't support HS but requested power is HS)\n",
541 __func__);
542 return -ENOTSUPP;
543 } else if (is_dev_sup_hs && is_qcom_max_hs) {
544 /*
545 * since device supports HS, it supports FAST_MODE.
546 * since qcom_param->desired_working_mode is also HS
547 * then final decision (FAST/FASTAUTO) is done according
548 * to qcom_params as it is the restricting factor
549 */
550 agreed_pwr->pwr_rx = agreed_pwr->pwr_tx =
551 qcom_param->rx_pwr_hs;
552 } else {
553 /*
554 * here qcom_param->desired_working_mode is PWM.
555 * it doesn't matter whether device supports HS or PWM,
556 * in both cases qcom_param->desired_working_mode will
557 * determine the mode
558 */
559 agreed_pwr->pwr_rx = agreed_pwr->pwr_tx =
560 qcom_param->rx_pwr_pwm;
561 }
562
563 /*
564 * we would like tx to work in the minimum number of lanes
565 * between device capability and vendor preferences.
566 * the same decision will be made for rx
567 */
568 agreed_pwr->lane_tx = min_t(u32, dev_max->lane_tx,
569 qcom_param->tx_lanes);
570 agreed_pwr->lane_rx = min_t(u32, dev_max->lane_rx,
571 qcom_param->rx_lanes);
572
573 /* device maximum gear is the minimum between device rx and tx gears */
574 min_dev_gear = min_t(u32, dev_max->gear_rx, dev_max->gear_tx);
575
576 /*
577 * if both device capabilities and vendor pre-defined preferences are
578 * both HS or both PWM then set the minimum gear to be the chosen
579 * working gear.
580 * if one is PWM and one is HS then the one that is PWM get to decide
581 * what is the gear, as it is the one that also decided previously what
582 * pwr the device will be configured to.
583 */
584 if ((is_dev_sup_hs && is_qcom_max_hs) ||
585 (!is_dev_sup_hs && !is_qcom_max_hs))
586 agreed_pwr->gear_rx = agreed_pwr->gear_tx =
587 min_t(u32, min_dev_gear, min_qcom_gear);
588 else if (!is_dev_sup_hs)
589 agreed_pwr->gear_rx = agreed_pwr->gear_tx = min_dev_gear;
590 else
591 agreed_pwr->gear_rx = agreed_pwr->gear_tx = min_qcom_gear;
592
593 agreed_pwr->hs_rate = qcom_param->hs_rate;
594 return 0;
595}
596
597static int ufs_qcom_update_bus_bw_vote(struct ufs_qcom_host *host)
598{
599 int vote;
600 int err = 0;
601 char mode[BUS_VECTOR_NAME_LEN];
602
603 ufs_qcom_get_speed_mode(&host->dev_req_params, mode);
604
605 vote = ufs_qcom_get_bus_vote(host, mode);
606 if (vote >= 0)
607 err = ufs_qcom_set_bus_vote(host, vote);
608 else
609 err = vote;
610
611 if (err)
612 dev_err(host->hba->dev, "%s: failed %d\n", __func__, err);
613 else
614 host->bus_vote.saved_vote = vote;
615 return err;
616}
617
618static int ufs_qcom_pwr_change_notify(struct ufs_hba *hba,
619 bool status,
620 struct ufs_pa_layer_attr *dev_max_params,
621 struct ufs_pa_layer_attr *dev_req_params)
622{
623 u32 val;
624 struct ufs_qcom_host *host = hba->priv;
625 struct phy *phy = host->generic_phy;
626 struct ufs_qcom_dev_params ufs_qcom_cap;
627 int ret = 0;
628 int res = 0;
629
630 if (!dev_req_params) {
631 pr_err("%s: incoming dev_req_params is NULL\n", __func__);
632 ret = -EINVAL;
633 goto out;
634 }
635
636 switch (status) {
637 case PRE_CHANGE:
638 ufs_qcom_cap.tx_lanes = UFS_QCOM_LIMIT_NUM_LANES_TX;
639 ufs_qcom_cap.rx_lanes = UFS_QCOM_LIMIT_NUM_LANES_RX;
640 ufs_qcom_cap.hs_rx_gear = UFS_QCOM_LIMIT_HSGEAR_RX;
641 ufs_qcom_cap.hs_tx_gear = UFS_QCOM_LIMIT_HSGEAR_TX;
642 ufs_qcom_cap.pwm_rx_gear = UFS_QCOM_LIMIT_PWMGEAR_RX;
643 ufs_qcom_cap.pwm_tx_gear = UFS_QCOM_LIMIT_PWMGEAR_TX;
644 ufs_qcom_cap.rx_pwr_pwm = UFS_QCOM_LIMIT_RX_PWR_PWM;
645 ufs_qcom_cap.tx_pwr_pwm = UFS_QCOM_LIMIT_TX_PWR_PWM;
646 ufs_qcom_cap.rx_pwr_hs = UFS_QCOM_LIMIT_RX_PWR_HS;
647 ufs_qcom_cap.tx_pwr_hs = UFS_QCOM_LIMIT_TX_PWR_HS;
648 ufs_qcom_cap.hs_rate = UFS_QCOM_LIMIT_HS_RATE;
649 ufs_qcom_cap.desired_working_mode =
650 UFS_QCOM_LIMIT_DESIRED_MODE;
651
652 ret = ufs_qcom_get_pwr_dev_param(&ufs_qcom_cap,
653 dev_max_params,
654 dev_req_params);
655 if (ret) {
656 pr_err("%s: failed to determine capabilities\n",
657 __func__);
658 goto out;
659 }
660
661 break;
662 case POST_CHANGE:
663 if (!ufs_qcom_cfg_timers(hba, dev_req_params->gear_rx,
664 dev_req_params->pwr_rx,
665 dev_req_params->hs_rate)) {
666 dev_err(hba->dev, "%s: ufs_qcom_cfg_timers() failed\n",
667 __func__);
668 /*
669 * we return error code at the end of the routine,
670 * but continue to configure UFS_PHY_TX_LANE_ENABLE
671 * and bus voting as usual
672 */
673 ret = -EINVAL;
674 }
675
676 val = ~(MAX_U32 << dev_req_params->lane_tx);
677 res = ufs_qcom_phy_set_tx_lane_enable(phy, val);
678 if (res) {
679 dev_err(hba->dev, "%s: ufs_qcom_phy_set_tx_lane_enable() failed res = %d\n",
680 __func__, res);
681 ret = res;
682 }
683
684 /* cache the power mode parameters to use internally */
685 memcpy(&host->dev_req_params,
686 dev_req_params, sizeof(*dev_req_params));
687 ufs_qcom_update_bus_bw_vote(host);
688 break;
689 default:
690 ret = -EINVAL;
691 break;
692 }
693out:
694 return ret;
695}
696
697/**
698 * ufs_qcom_advertise_quirks - advertise the known QCOM UFS controller quirks
699 * @hba: host controller instance
700 *
701 * QCOM UFS host controller might have some non standard behaviours (quirks)
702 * than what is specified by UFSHCI specification. Advertise all such
703 * quirks to standard UFS host controller driver so standard takes them into
704 * account.
705 */
706static void ufs_qcom_advertise_quirks(struct ufs_hba *hba)
707{
Yaniv Gardicad2e032015-03-31 17:37:14 +0300708 struct ufs_qcom_host *host = hba->priv;
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200709
Yaniv Gardi81c7e062015-05-17 18:54:58 +0300710 if (host->hw_ver.major == 0x01) {
Yaniv Gardi81637432015-05-17 18:55:02 +0300711 hba->quirks |= UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS
Yaniv Gardi2c0cc2e2015-05-17 18:55:04 +0300712 | UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP
713 | UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE;
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200714
Yaniv Gardi81c7e062015-05-17 18:54:58 +0300715 if (host->hw_ver.minor == 0x0001 && host->hw_ver.step == 0x0001)
716 hba->quirks |= UFSHCD_QUIRK_BROKEN_INTR_AGGR;
717 }
718
Yaniv Gardicad2e032015-03-31 17:37:14 +0300719 if (host->hw_ver.major >= 0x2) {
Yaniv Gardi2f018372015-05-17 18:55:00 +0300720 hba->quirks |= UFSHCD_QUIRK_BROKEN_LCC;
721
Yaniv Gardicad2e032015-03-31 17:37:14 +0300722 if (!ufs_qcom_cap_qunipro(host))
723 /* Legacy UniPro mode still need following quirks */
Yaniv Gardi81637432015-05-17 18:55:02 +0300724 hba->quirks |= (UFSHCD_QUIRK_DELAY_BEFORE_DME_CMDS
Yaniv Gardi2c0cc2e2015-05-17 18:55:04 +0300725 | UFSHCD_QUIRK_DME_PEER_ACCESS_AUTO_MODE
Yaniv Gardi81637432015-05-17 18:55:02 +0300726 | UFSHCD_QUIRK_BROKEN_PA_RXHSUNTERMCAP);
Yaniv Gardicad2e032015-03-31 17:37:14 +0300727 }
728}
729
730static void ufs_qcom_set_caps(struct ufs_hba *hba)
731{
732 struct ufs_qcom_host *host = hba->priv;
733
734 if (host->hw_ver.major >= 0x2)
735 host->caps = UFS_QCOM_CAP_QUNIPRO;
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200736}
737
738static int ufs_qcom_get_bus_vote(struct ufs_qcom_host *host,
739 const char *speed_mode)
740{
741 struct device *dev = host->hba->dev;
742 struct device_node *np = dev->of_node;
743 int err;
744 const char *key = "qcom,bus-vector-names";
745
746 if (!speed_mode) {
747 err = -EINVAL;
748 goto out;
749 }
750
751 if (host->bus_vote.is_max_bw_needed && !!strcmp(speed_mode, "MIN"))
752 err = of_property_match_string(np, key, "MAX");
753 else
754 err = of_property_match_string(np, key, speed_mode);
755
756out:
757 if (err < 0)
758 dev_err(dev, "%s: Invalid %s mode %d\n",
759 __func__, speed_mode, err);
760 return err;
761}
762
763static int ufs_qcom_set_bus_vote(struct ufs_qcom_host *host, int vote)
764{
765 int err = 0;
766
767 if (vote != host->bus_vote.curr_vote)
768 host->bus_vote.curr_vote = vote;
769
770 return err;
771}
772
773static void ufs_qcom_get_speed_mode(struct ufs_pa_layer_attr *p, char *result)
774{
775 int gear = max_t(u32, p->gear_rx, p->gear_tx);
776 int lanes = max_t(u32, p->lane_rx, p->lane_tx);
777 int pwr;
778
779 /* default to PWM Gear 1, Lane 1 if power mode is not initialized */
780 if (!gear)
781 gear = 1;
782
783 if (!lanes)
784 lanes = 1;
785
786 if (!p->pwr_rx && !p->pwr_tx) {
787 pwr = SLOWAUTO_MODE;
788 snprintf(result, BUS_VECTOR_NAME_LEN, "MIN");
789 } else if (p->pwr_rx == FAST_MODE || p->pwr_rx == FASTAUTO_MODE ||
790 p->pwr_tx == FAST_MODE || p->pwr_tx == FASTAUTO_MODE) {
791 pwr = FAST_MODE;
792 snprintf(result, BUS_VECTOR_NAME_LEN, "%s_R%s_G%d_L%d", "HS",
793 p->hs_rate == PA_HS_MODE_B ? "B" : "A", gear, lanes);
794 } else {
795 pwr = SLOW_MODE;
796 snprintf(result, BUS_VECTOR_NAME_LEN, "%s_G%d_L%d",
797 "PWM", gear, lanes);
798 }
799}
800
801static int ufs_qcom_setup_clocks(struct ufs_hba *hba, bool on)
802{
803 struct ufs_qcom_host *host = hba->priv;
804 int err = 0;
805 int vote = 0;
806
807 /*
808 * In case ufs_qcom_init() is not yet done, simply ignore.
809 * This ufs_qcom_setup_clocks() shall be called from
810 * ufs_qcom_init() after init is done.
811 */
812 if (!host)
813 return 0;
814
815 if (on) {
816 err = ufs_qcom_phy_enable_iface_clk(host->generic_phy);
817 if (err)
818 goto out;
819
820 err = ufs_qcom_phy_enable_ref_clk(host->generic_phy);
821 if (err) {
822 dev_err(hba->dev, "%s enable phy ref clock failed, err=%d\n",
823 __func__, err);
824 ufs_qcom_phy_disable_iface_clk(host->generic_phy);
825 goto out;
826 }
827 /* enable the device ref clock */
828 ufs_qcom_phy_enable_dev_ref_clk(host->generic_phy);
829 vote = host->bus_vote.saved_vote;
830 if (vote == host->bus_vote.min_bw_vote)
831 ufs_qcom_update_bus_bw_vote(host);
832 } else {
833 /* M-PHY RMMI interface clocks can be turned off */
834 ufs_qcom_phy_disable_iface_clk(host->generic_phy);
835 if (!ufs_qcom_is_link_active(hba)) {
836 /* turn off UFS local PHY ref_clk */
837 ufs_qcom_phy_disable_ref_clk(host->generic_phy);
838 /* disable device ref_clk */
839 ufs_qcom_phy_disable_dev_ref_clk(host->generic_phy);
840 }
841 vote = host->bus_vote.min_bw_vote;
842 }
843
844 err = ufs_qcom_set_bus_vote(host, vote);
845 if (err)
846 dev_err(hba->dev, "%s: set bus vote failed %d\n",
847 __func__, err);
848
849out:
850 return err;
851}
852
853static ssize_t
854show_ufs_to_mem_max_bus_bw(struct device *dev, struct device_attribute *attr,
855 char *buf)
856{
857 struct ufs_hba *hba = dev_get_drvdata(dev);
858 struct ufs_qcom_host *host = hba->priv;
859
860 return snprintf(buf, PAGE_SIZE, "%u\n",
861 host->bus_vote.is_max_bw_needed);
862}
863
864static ssize_t
865store_ufs_to_mem_max_bus_bw(struct device *dev, struct device_attribute *attr,
866 const char *buf, size_t count)
867{
868 struct ufs_hba *hba = dev_get_drvdata(dev);
869 struct ufs_qcom_host *host = hba->priv;
870 uint32_t value;
871
872 if (!kstrtou32(buf, 0, &value)) {
873 host->bus_vote.is_max_bw_needed = !!value;
874 ufs_qcom_update_bus_bw_vote(host);
875 }
876
877 return count;
878}
879
880static int ufs_qcom_bus_register(struct ufs_qcom_host *host)
881{
882 int err;
883 struct device *dev = host->hba->dev;
884 struct device_node *np = dev->of_node;
885
886 err = of_property_count_strings(np, "qcom,bus-vector-names");
887 if (err < 0 ) {
888 dev_err(dev, "%s: qcom,bus-vector-names not specified correctly %d\n",
889 __func__, err);
890 goto out;
891 }
892
893 /* cache the vote index for minimum and maximum bandwidth */
894 host->bus_vote.min_bw_vote = ufs_qcom_get_bus_vote(host, "MIN");
895 host->bus_vote.max_bw_vote = ufs_qcom_get_bus_vote(host, "MAX");
896
897 host->bus_vote.max_bus_bw.show = show_ufs_to_mem_max_bus_bw;
898 host->bus_vote.max_bus_bw.store = store_ufs_to_mem_max_bus_bw;
899 sysfs_attr_init(&host->bus_vote.max_bus_bw.attr);
900 host->bus_vote.max_bus_bw.attr.name = "max_bus_bw";
901 host->bus_vote.max_bus_bw.attr.mode = S_IRUGO | S_IWUSR;
902 err = device_create_file(dev, &host->bus_vote.max_bus_bw);
903out:
904 return err;
905}
906
907#define ANDROID_BOOT_DEV_MAX 30
908static char android_boot_dev[ANDROID_BOOT_DEV_MAX];
909static int get_android_boot_dev(char *str)
910{
911 strlcpy(android_boot_dev, str, ANDROID_BOOT_DEV_MAX);
912 return 1;
913}
914__setup("androidboot.bootdevice=", get_android_boot_dev);
915
916/**
917 * ufs_qcom_init - bind phy with controller
918 * @hba: host controller instance
919 *
920 * Binds PHY with controller and powers up PHY enabling clocks
921 * and regulators.
922 *
923 * Returns -EPROBE_DEFER if binding fails, returns negative error
924 * on phy power up failure and returns zero on success.
925 */
926static int ufs_qcom_init(struct ufs_hba *hba)
927{
928 int err;
929 struct device *dev = hba->dev;
930 struct ufs_qcom_host *host;
931
932 if (strlen(android_boot_dev) && strcmp(android_boot_dev, dev_name(dev)))
933 return -ENODEV;
934
935 host = devm_kzalloc(dev, sizeof(*host), GFP_KERNEL);
936 if (!host) {
937 err = -ENOMEM;
938 dev_err(dev, "%s: no memory for qcom ufs host\n", __func__);
939 goto out;
940 }
941
942 host->hba = hba;
943 hba->priv = (void *)host;
944
945 host->generic_phy = devm_phy_get(dev, "ufsphy");
946
947 if (IS_ERR(host->generic_phy)) {
948 err = PTR_ERR(host->generic_phy);
949 dev_err(dev, "%s: PHY get failed %d\n", __func__, err);
950 goto out;
951 }
952
953 err = ufs_qcom_bus_register(host);
954 if (err)
955 goto out_host_free;
956
Yaniv Gardibfdbe8b2015-03-31 17:37:13 +0300957 ufs_qcom_get_controller_revision(hba, &host->hw_ver.major,
958 &host->hw_ver.minor, &host->hw_ver.step);
959
960 /* update phy revision information before calling phy_init() */
961 ufs_qcom_phy_save_controller_version(host->generic_phy,
962 host->hw_ver.major, host->hw_ver.minor, host->hw_ver.step);
963
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200964 phy_init(host->generic_phy);
965 err = phy_power_on(host->generic_phy);
966 if (err)
967 goto out_unregister_bus;
968
969 err = ufs_qcom_init_lane_clks(host);
970 if (err)
971 goto out_disable_phy;
972
Yaniv Gardicad2e032015-03-31 17:37:14 +0300973 ufs_qcom_set_caps(hba);
Yaniv Gardi81c0fc52015-01-15 16:32:37 +0200974 ufs_qcom_advertise_quirks(hba);
975
976 hba->caps |= UFSHCD_CAP_CLK_GATING | UFSHCD_CAP_CLK_SCALING;
977 hba->caps |= UFSHCD_CAP_AUTO_BKOPS_SUSPEND;
978
979 ufs_qcom_setup_clocks(hba, true);
980
981 if (hba->dev->id < MAX_UFS_QCOM_HOSTS)
982 ufs_qcom_hosts[hba->dev->id] = host;
983
984 goto out;
985
986out_disable_phy:
987 phy_power_off(host->generic_phy);
988out_unregister_bus:
989 phy_exit(host->generic_phy);
990out_host_free:
991 devm_kfree(dev, host);
992 hba->priv = NULL;
993out:
994 return err;
995}
996
997static void ufs_qcom_exit(struct ufs_hba *hba)
998{
999 struct ufs_qcom_host *host = hba->priv;
1000
1001 ufs_qcom_disable_lane_clks(host);
1002 phy_power_off(host->generic_phy);
1003}
1004
1005static
1006void ufs_qcom_clk_scale_notify(struct ufs_hba *hba)
1007{
1008 struct ufs_qcom_host *host = hba->priv;
1009 struct ufs_pa_layer_attr *dev_req_params = &host->dev_req_params;
1010
1011 if (!dev_req_params)
1012 return;
1013
1014 ufs_qcom_cfg_timers(hba, dev_req_params->gear_rx,
1015 dev_req_params->pwr_rx,
1016 dev_req_params->hs_rate);
1017}
1018
1019/**
1020 * struct ufs_hba_qcom_vops - UFS QCOM specific variant operations
1021 *
1022 * The variant operations configure the necessary controller and PHY
1023 * handshake during initialization.
1024 */
1025static const struct ufs_hba_variant_ops ufs_hba_qcom_vops = {
1026 .name = "qcom",
1027 .init = ufs_qcom_init,
1028 .exit = ufs_qcom_exit,
1029 .clk_scale_notify = ufs_qcom_clk_scale_notify,
1030 .setup_clocks = ufs_qcom_setup_clocks,
1031 .hce_enable_notify = ufs_qcom_hce_enable_notify,
1032 .link_startup_notify = ufs_qcom_link_startup_notify,
1033 .pwr_change_notify = ufs_qcom_pwr_change_notify,
1034 .suspend = ufs_qcom_suspend,
1035 .resume = ufs_qcom_resume,
1036};
1037EXPORT_SYMBOL(ufs_hba_qcom_vops);