2 * Universal Flash Storage Host controller Platform bus based glue driver
4 * This code is based on drivers/scsi/ufs/ufshcd-pltfrm.c
5 * Copyright (C) 2011-2013 Samsung India Software Operations
8 * Santosh Yaraganavi <santosh.sy@samsung.com>
9 * Vinayak Holikatti <h.vinayak@samsung.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 * See the COPYING file in the top-level directory or visit
16 * <http://www.gnu.org/licenses/gpl-2.0.html>
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * This program is provided "AS IS" and "WITH ALL FAULTS" and
24 * without warranty of any kind. You are solely responsible for
25 * determining the appropriateness of using and distributing
26 * the program and assume all risks associated with your exercise
27 * of rights with respect to the program, including but not limited
28 * to infringement of third party rights, the risks and costs of
29 * program errors, damage to or loss of data, programs or equipment,
30 * and unavailability or interruption of operations. Under no
31 * circumstances will the contributor of this Program be liable for
32 * any damages of any kind arising from your use or distribution of
36 #include <linux/platform_device.h>
37 #include <linux/pm_runtime.h>
41 #include "ufshcd-pltfrm.h"
44 #define UFSHCD_DEFAULT_LANES_PER_DIRECTION 2
46 static int ufshcd_parse_clock_info(struct ufs_hba
*hba
)
51 struct device
*dev
= hba
->dev
;
52 struct device_node
*np
= dev
->of_node
;
55 struct ufs_clk_info
*clki
;
62 cnt
= of_property_count_strings(np
, "clock-names");
63 if (!cnt
|| (cnt
== -EINVAL
)) {
64 dev_info(dev
, "%s: Unable to find clocks, assuming enabled\n",
67 dev_err(dev
, "%s: count clock strings failed, err %d\n",
75 if (!of_get_property(np
, "freq-table-hz", &len
)) {
76 dev_info(dev
, "freq-table-hz property not specified\n");
83 sz
= len
/ sizeof(*clkfreq
);
85 dev_err(dev
, "%s len mismatch\n", "freq-table-hz");
90 clkfreq
= devm_kcalloc(dev
, sz
, sizeof(*clkfreq
),
97 ret
= of_property_read_u32_array(np
, "freq-table-hz",
99 if (ret
&& (ret
!= -EINVAL
)) {
100 dev_err(dev
, "%s: error reading array %d\n",
101 "freq-table-hz", ret
);
105 for (i
= 0; i
< sz
; i
+= 2) {
106 ret
= of_property_read_string_index(np
,
107 "clock-names", i
/2, (const char **)&name
);
111 clki
= devm_kzalloc(dev
, sizeof(*clki
), GFP_KERNEL
);
117 clki
->min_freq
= clkfreq
[i
];
118 clki
->max_freq
= clkfreq
[i
+1];
119 clki
->name
= kstrdup(name
, GFP_KERNEL
);
120 dev_dbg(dev
, "%s: min %u max %u name %s\n", "freq-table-hz",
121 clki
->min_freq
, clki
->max_freq
, clki
->name
);
122 list_add_tail(&clki
->list
, &hba
->clk_list_head
);
128 #define MAX_PROP_SIZE 32
129 static int ufshcd_populate_vreg(struct device
*dev
, const char *name
,
130 struct ufs_vreg
**out_vreg
)
133 char prop_name
[MAX_PROP_SIZE
];
134 struct ufs_vreg
*vreg
= NULL
;
135 struct device_node
*np
= dev
->of_node
;
138 dev_err(dev
, "%s: non DT initialization\n", __func__
);
142 snprintf(prop_name
, MAX_PROP_SIZE
, "%s-supply", name
);
143 if (!of_parse_phandle(np
, prop_name
, 0)) {
144 dev_info(dev
, "%s: Unable to find %s regulator, assuming enabled\n",
145 __func__
, prop_name
);
149 vreg
= devm_kzalloc(dev
, sizeof(*vreg
), GFP_KERNEL
);
153 vreg
->name
= kstrdup(name
, GFP_KERNEL
);
155 snprintf(prop_name
, MAX_PROP_SIZE
, "%s-max-microamp", name
);
156 if (of_property_read_u32(np
, prop_name
, &vreg
->max_uA
)) {
157 dev_info(dev
, "%s: unable to find %s\n", __func__
, prop_name
);
161 if (!strcmp(name
, "vcc")) {
162 if (of_property_read_bool(np
, "vcc-supply-1p8")) {
163 vreg
->min_uV
= UFS_VREG_VCC_1P8_MIN_UV
;
164 vreg
->max_uV
= UFS_VREG_VCC_1P8_MAX_UV
;
166 vreg
->min_uV
= UFS_VREG_VCC_MIN_UV
;
167 vreg
->max_uV
= UFS_VREG_VCC_MAX_UV
;
169 } else if (!strcmp(name
, "vccq")) {
170 vreg
->min_uV
= UFS_VREG_VCCQ_MIN_UV
;
171 vreg
->max_uV
= UFS_VREG_VCCQ_MAX_UV
;
172 } else if (!strcmp(name
, "vccq2")) {
173 vreg
->min_uV
= UFS_VREG_VCCQ2_MIN_UV
;
174 vreg
->max_uV
= UFS_VREG_VCCQ2_MAX_UV
;
186 * ufshcd_parse_regulator_info - get regulator info from device tree
187 * @hba: per adapter instance
189 * Get regulator info from device tree for vcc, vccq, vccq2 power supplies.
190 * If any of the supplies are not defined it is assumed that they are always-on
191 * and hence return zero. If the property is defined but parsing is failed
192 * then return corresponding error.
194 static int ufshcd_parse_regulator_info(struct ufs_hba
*hba
)
197 struct device
*dev
= hba
->dev
;
198 struct ufs_vreg_info
*info
= &hba
->vreg_info
;
200 err
= ufshcd_populate_vreg(dev
, "vdd-hba", &info
->vdd_hba
);
204 err
= ufshcd_populate_vreg(dev
, "vcc", &info
->vcc
);
208 err
= ufshcd_populate_vreg(dev
, "vccq", &info
->vccq
);
212 err
= ufshcd_populate_vreg(dev
, "vccq2", &info
->vccq2
);
219 * ufshcd_pltfrm_suspend - suspend power management function
220 * @dev: pointer to device handle
222 * Returns 0 if successful
223 * Returns non-zero otherwise
225 int ufshcd_pltfrm_suspend(struct device
*dev
)
227 return ufshcd_system_suspend(dev_get_drvdata(dev
));
229 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_suspend
);
232 * ufshcd_pltfrm_resume - resume power management function
233 * @dev: pointer to device handle
235 * Returns 0 if successful
236 * Returns non-zero otherwise
238 int ufshcd_pltfrm_resume(struct device
*dev
)
240 return ufshcd_system_resume(dev_get_drvdata(dev
));
242 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_resume
);
244 int ufshcd_pltfrm_runtime_suspend(struct device
*dev
)
246 return ufshcd_runtime_suspend(dev_get_drvdata(dev
));
248 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_runtime_suspend
);
250 int ufshcd_pltfrm_runtime_resume(struct device
*dev
)
252 return ufshcd_runtime_resume(dev_get_drvdata(dev
));
254 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_runtime_resume
);
256 int ufshcd_pltfrm_runtime_idle(struct device
*dev
)
258 return ufshcd_runtime_idle(dev_get_drvdata(dev
));
260 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_runtime_idle
);
262 #endif /* CONFIG_PM */
264 void ufshcd_pltfrm_shutdown(struct platform_device
*pdev
)
266 ufshcd_shutdown((struct ufs_hba
*)platform_get_drvdata(pdev
));
268 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_shutdown
);
270 static void ufshcd_init_lanes_per_dir(struct ufs_hba
*hba
)
272 struct device
*dev
= hba
->dev
;
275 ret
= of_property_read_u32(dev
->of_node
, "lanes-per-direction",
276 &hba
->lanes_per_direction
);
279 "%s: failed to read lanes-per-direction, ret=%d\n",
281 hba
->lanes_per_direction
= UFSHCD_DEFAULT_LANES_PER_DIRECTION
;
286 * ufshcd_get_pwr_dev_param - get finally agreed attributes for
288 * @pltfrm_param: pointer to platform parameters
289 * @dev_max: pointer to device attributes
290 * @agreed_pwr: returned agreed attributes
292 * Returns 0 on success, non-zero value on failure
294 int ufshcd_get_pwr_dev_param(struct ufs_dev_params
*pltfrm_param
,
295 struct ufs_pa_layer_attr
*dev_max
,
296 struct ufs_pa_layer_attr
*agreed_pwr
)
300 bool is_dev_sup_hs
= false;
301 bool is_pltfrm_max_hs
= false;
303 if (dev_max
->pwr_rx
== FAST_MODE
)
304 is_dev_sup_hs
= true;
306 if (pltfrm_param
->desired_working_mode
== UFS_HS_MODE
) {
307 is_pltfrm_max_hs
= true;
308 min_pltfrm_gear
= min_t(u32
, pltfrm_param
->hs_rx_gear
,
309 pltfrm_param
->hs_tx_gear
);
311 min_pltfrm_gear
= min_t(u32
, pltfrm_param
->pwm_rx_gear
,
312 pltfrm_param
->pwm_tx_gear
);
316 * device doesn't support HS but
317 * pltfrm_param->desired_working_mode is HS,
318 * thus device and pltfrm_param don't agree
320 if (!is_dev_sup_hs
&& is_pltfrm_max_hs
) {
321 pr_info("%s: device doesn't support HS\n",
324 } else if (is_dev_sup_hs
&& is_pltfrm_max_hs
) {
326 * since device supports HS, it supports FAST_MODE.
327 * since pltfrm_param->desired_working_mode is also HS
328 * then final decision (FAST/FASTAUTO) is done according
329 * to pltfrm_params as it is the restricting factor
331 agreed_pwr
->pwr_rx
= pltfrm_param
->rx_pwr_hs
;
332 agreed_pwr
->pwr_tx
= agreed_pwr
->pwr_rx
;
335 * here pltfrm_param->desired_working_mode is PWM.
336 * it doesn't matter whether device supports HS or PWM,
337 * in both cases pltfrm_param->desired_working_mode will
340 agreed_pwr
->pwr_rx
= pltfrm_param
->rx_pwr_pwm
;
341 agreed_pwr
->pwr_tx
= agreed_pwr
->pwr_rx
;
345 * we would like tx to work in the minimum number of lanes
346 * between device capability and vendor preferences.
347 * the same decision will be made for rx
349 agreed_pwr
->lane_tx
= min_t(u32
, dev_max
->lane_tx
,
350 pltfrm_param
->tx_lanes
);
351 agreed_pwr
->lane_rx
= min_t(u32
, dev_max
->lane_rx
,
352 pltfrm_param
->rx_lanes
);
354 /* device maximum gear is the minimum between device rx and tx gears */
355 min_dev_gear
= min_t(u32
, dev_max
->gear_rx
, dev_max
->gear_tx
);
358 * if both device capabilities and vendor pre-defined preferences are
359 * both HS or both PWM then set the minimum gear to be the chosen
361 * if one is PWM and one is HS then the one that is PWM get to decide
362 * what is the gear, as it is the one that also decided previously what
363 * pwr the device will be configured to.
365 if ((is_dev_sup_hs
&& is_pltfrm_max_hs
) ||
366 (!is_dev_sup_hs
&& !is_pltfrm_max_hs
)) {
367 agreed_pwr
->gear_rx
=
368 min_t(u32
, min_dev_gear
, min_pltfrm_gear
);
369 } else if (!is_dev_sup_hs
) {
370 agreed_pwr
->gear_rx
= min_dev_gear
;
372 agreed_pwr
->gear_rx
= min_pltfrm_gear
;
374 agreed_pwr
->gear_tx
= agreed_pwr
->gear_rx
;
376 agreed_pwr
->hs_rate
= pltfrm_param
->hs_rate
;
380 EXPORT_SYMBOL_GPL(ufshcd_get_pwr_dev_param
);
383 * ufshcd_pltfrm_init - probe routine of the driver
384 * @pdev: pointer to Platform device handle
385 * @vops: pointer to variant ops
387 * Returns 0 on success, non-zero value on failure
389 int ufshcd_pltfrm_init(struct platform_device
*pdev
,
390 const struct ufs_hba_variant_ops
*vops
)
393 void __iomem
*mmio_base
;
395 struct device
*dev
= &pdev
->dev
;
397 mmio_base
= devm_platform_ioremap_resource(pdev
, 0);
398 if (IS_ERR(mmio_base
)) {
399 err
= PTR_ERR(mmio_base
);
403 irq
= platform_get_irq(pdev
, 0);
409 err
= ufshcd_alloc_host(dev
, &hba
);
411 dev_err(&pdev
->dev
, "Allocation failed\n");
417 err
= ufshcd_parse_clock_info(hba
);
419 dev_err(&pdev
->dev
, "%s: clock parse failed %d\n",
423 err
= ufshcd_parse_regulator_info(hba
);
425 dev_err(&pdev
->dev
, "%s: regulator init failed %d\n",
430 ufshcd_init_lanes_per_dir(hba
);
432 err
= ufshcd_init(hba
, mmio_base
, irq
);
434 dev_err(dev
, "Initialization failed\n");
438 platform_set_drvdata(pdev
, hba
);
440 pm_runtime_set_active(&pdev
->dev
);
441 pm_runtime_enable(&pdev
->dev
);
446 ufshcd_dealloc_host(hba
);
450 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_init
);
452 MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
453 MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
454 MODULE_DESCRIPTION("UFS host controller Platform bus based glue driver");
455 MODULE_LICENSE("GPL");
456 MODULE_VERSION(UFSHCD_DRIVER_VERSION
);