1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Universal Flash Storage Host controller Platform bus based glue driver
4 * Copyright (C) 2011-2013 Samsung India Software Operations
7 * Santosh Yaraganavi <santosh.sy@samsung.com>
8 * Vinayak Holikatti <h.vinayak@samsung.com>
11 #include <linux/platform_device.h>
12 #include <linux/pm_runtime.h>
16 #include "ufshcd-pltfrm.h"
19 #define UFSHCD_DEFAULT_LANES_PER_DIRECTION 2
21 static int ufshcd_parse_clock_info(struct ufs_hba *hba)
26 struct device *dev = hba->dev;
27 struct device_node *np = dev->of_node;
30 struct ufs_clk_info *clki;
37 cnt = of_property_count_strings(np, "clock-names");
38 if (!cnt || (cnt == -EINVAL)) {
39 dev_info(dev, "%s: Unable to find clocks, assuming enabled\n",
42 dev_err(dev, "%s: count clock strings failed, err %d\n",
50 if (!of_get_property(np, "freq-table-hz", &len)) {
51 dev_info(dev, "freq-table-hz property not specified\n");
58 sz = len / sizeof(*clkfreq);
60 dev_err(dev, "%s len mismatch\n", "freq-table-hz");
65 clkfreq = devm_kcalloc(dev, sz, sizeof(*clkfreq),
72 ret = of_property_read_u32_array(np, "freq-table-hz",
74 if (ret && (ret != -EINVAL)) {
75 dev_err(dev, "%s: error reading array %d\n",
76 "freq-table-hz", ret);
80 for (i = 0; i < sz; i += 2) {
81 ret = of_property_read_string_index(np,
82 "clock-names", i/2, (const char **)&name);
86 clki = devm_kzalloc(dev, sizeof(*clki), GFP_KERNEL);
92 clki->min_freq = clkfreq[i];
93 clki->max_freq = clkfreq[i+1];
94 clki->name = kstrdup(name, GFP_KERNEL);
95 if (!strcmp(name, "ref_clk"))
96 clki->keep_link_active = true;
97 dev_dbg(dev, "%s: min %u max %u name %s\n", "freq-table-hz",
98 clki->min_freq, clki->max_freq, clki->name);
99 list_add_tail(&clki->list, &hba->clk_list_head);
105 #define MAX_PROP_SIZE 32
106 static int ufshcd_populate_vreg(struct device *dev, const char *name,
107 struct ufs_vreg **out_vreg)
109 char prop_name[MAX_PROP_SIZE];
110 struct ufs_vreg *vreg = NULL;
111 struct device_node *np = dev->of_node;
114 dev_err(dev, "%s: non DT initialization\n", __func__);
118 snprintf(prop_name, MAX_PROP_SIZE, "%s-supply", name);
119 if (!of_parse_phandle(np, prop_name, 0)) {
120 dev_info(dev, "%s: Unable to find %s regulator, assuming enabled\n",
121 __func__, prop_name);
125 vreg = devm_kzalloc(dev, sizeof(*vreg), GFP_KERNEL);
129 vreg->name = kstrdup(name, GFP_KERNEL);
131 snprintf(prop_name, MAX_PROP_SIZE, "%s-max-microamp", name);
132 if (of_property_read_u32(np, prop_name, &vreg->max_uA)) {
133 dev_info(dev, "%s: unable to find %s\n", __func__, prop_name);
142 * ufshcd_parse_regulator_info - get regulator info from device tree
143 * @hba: per adapter instance
145 * Get regulator info from device tree for vcc, vccq, vccq2 power supplies.
146 * If any of the supplies are not defined it is assumed that they are always-on
147 * and hence return zero. If the property is defined but parsing is failed
148 * then return corresponding error.
150 static int ufshcd_parse_regulator_info(struct ufs_hba *hba)
153 struct device *dev = hba->dev;
154 struct ufs_vreg_info *info = &hba->vreg_info;
156 err = ufshcd_populate_vreg(dev, "vdd-hba", &info->vdd_hba);
160 err = ufshcd_populate_vreg(dev, "vcc", &info->vcc);
164 err = ufshcd_populate_vreg(dev, "vccq", &info->vccq);
168 err = ufshcd_populate_vreg(dev, "vccq2", &info->vccq2);
175 * ufshcd_pltfrm_suspend - suspend power management function
176 * @dev: pointer to device handle
178 * Returns 0 if successful
179 * Returns non-zero otherwise
181 int ufshcd_pltfrm_suspend(struct device *dev)
183 return ufshcd_system_suspend(dev_get_drvdata(dev));
185 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_suspend);
188 * ufshcd_pltfrm_resume - resume power management function
189 * @dev: pointer to device handle
191 * Returns 0 if successful
192 * Returns non-zero otherwise
194 int ufshcd_pltfrm_resume(struct device *dev)
196 return ufshcd_system_resume(dev_get_drvdata(dev));
198 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_resume);
200 int ufshcd_pltfrm_runtime_suspend(struct device *dev)
202 return ufshcd_runtime_suspend(dev_get_drvdata(dev));
204 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_runtime_suspend);
206 int ufshcd_pltfrm_runtime_resume(struct device *dev)
208 return ufshcd_runtime_resume(dev_get_drvdata(dev));
210 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_runtime_resume);
212 int ufshcd_pltfrm_runtime_idle(struct device *dev)
214 return ufshcd_runtime_idle(dev_get_drvdata(dev));
216 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_runtime_idle);
218 #endif /* CONFIG_PM */
220 void ufshcd_pltfrm_shutdown(struct platform_device *pdev)
222 ufshcd_shutdown((struct ufs_hba *)platform_get_drvdata(pdev));
224 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_shutdown);
226 static void ufshcd_init_lanes_per_dir(struct ufs_hba *hba)
228 struct device *dev = hba->dev;
231 ret = of_property_read_u32(dev->of_node, "lanes-per-direction",
232 &hba->lanes_per_direction);
235 "%s: failed to read lanes-per-direction, ret=%d\n",
237 hba->lanes_per_direction = UFSHCD_DEFAULT_LANES_PER_DIRECTION;
242 * ufshcd_get_pwr_dev_param - get finally agreed attributes for
244 * @pltfrm_param: pointer to platform parameters
245 * @dev_max: pointer to device attributes
246 * @agreed_pwr: returned agreed attributes
248 * Returns 0 on success, non-zero value on failure
250 int ufshcd_get_pwr_dev_param(struct ufs_dev_params *pltfrm_param,
251 struct ufs_pa_layer_attr *dev_max,
252 struct ufs_pa_layer_attr *agreed_pwr)
256 bool is_dev_sup_hs = false;
257 bool is_pltfrm_max_hs = false;
259 if (dev_max->pwr_rx == FAST_MODE)
260 is_dev_sup_hs = true;
262 if (pltfrm_param->desired_working_mode == UFS_HS_MODE) {
263 is_pltfrm_max_hs = true;
264 min_pltfrm_gear = min_t(u32, pltfrm_param->hs_rx_gear,
265 pltfrm_param->hs_tx_gear);
267 min_pltfrm_gear = min_t(u32, pltfrm_param->pwm_rx_gear,
268 pltfrm_param->pwm_tx_gear);
272 * device doesn't support HS but
273 * pltfrm_param->desired_working_mode is HS,
274 * thus device and pltfrm_param don't agree
276 if (!is_dev_sup_hs && is_pltfrm_max_hs) {
277 pr_info("%s: device doesn't support HS\n",
280 } else if (is_dev_sup_hs && is_pltfrm_max_hs) {
282 * since device supports HS, it supports FAST_MODE.
283 * since pltfrm_param->desired_working_mode is also HS
284 * then final decision (FAST/FASTAUTO) is done according
285 * to pltfrm_params as it is the restricting factor
287 agreed_pwr->pwr_rx = pltfrm_param->rx_pwr_hs;
288 agreed_pwr->pwr_tx = agreed_pwr->pwr_rx;
291 * here pltfrm_param->desired_working_mode is PWM.
292 * it doesn't matter whether device supports HS or PWM,
293 * in both cases pltfrm_param->desired_working_mode will
296 agreed_pwr->pwr_rx = pltfrm_param->rx_pwr_pwm;
297 agreed_pwr->pwr_tx = agreed_pwr->pwr_rx;
301 * we would like tx to work in the minimum number of lanes
302 * between device capability and vendor preferences.
303 * the same decision will be made for rx
305 agreed_pwr->lane_tx = min_t(u32, dev_max->lane_tx,
306 pltfrm_param->tx_lanes);
307 agreed_pwr->lane_rx = min_t(u32, dev_max->lane_rx,
308 pltfrm_param->rx_lanes);
310 /* device maximum gear is the minimum between device rx and tx gears */
311 min_dev_gear = min_t(u32, dev_max->gear_rx, dev_max->gear_tx);
314 * if both device capabilities and vendor pre-defined preferences are
315 * both HS or both PWM then set the minimum gear to be the chosen
317 * if one is PWM and one is HS then the one that is PWM get to decide
318 * what is the gear, as it is the one that also decided previously what
319 * pwr the device will be configured to.
321 if ((is_dev_sup_hs && is_pltfrm_max_hs) ||
322 (!is_dev_sup_hs && !is_pltfrm_max_hs)) {
323 agreed_pwr->gear_rx =
324 min_t(u32, min_dev_gear, min_pltfrm_gear);
325 } else if (!is_dev_sup_hs) {
326 agreed_pwr->gear_rx = min_dev_gear;
328 agreed_pwr->gear_rx = min_pltfrm_gear;
330 agreed_pwr->gear_tx = agreed_pwr->gear_rx;
332 agreed_pwr->hs_rate = pltfrm_param->hs_rate;
336 EXPORT_SYMBOL_GPL(ufshcd_get_pwr_dev_param);
338 void ufshcd_init_pwr_dev_param(struct ufs_dev_params *dev_param)
340 dev_param->tx_lanes = 2;
341 dev_param->rx_lanes = 2;
342 dev_param->hs_rx_gear = UFS_HS_G3;
343 dev_param->hs_tx_gear = UFS_HS_G3;
344 dev_param->pwm_rx_gear = UFS_PWM_G4;
345 dev_param->pwm_tx_gear = UFS_PWM_G4;
346 dev_param->rx_pwr_pwm = SLOW_MODE;
347 dev_param->tx_pwr_pwm = SLOW_MODE;
348 dev_param->rx_pwr_hs = FAST_MODE;
349 dev_param->tx_pwr_hs = FAST_MODE;
350 dev_param->hs_rate = PA_HS_MODE_B;
351 dev_param->desired_working_mode = UFS_HS_MODE;
353 EXPORT_SYMBOL_GPL(ufshcd_init_pwr_dev_param);
356 * ufshcd_pltfrm_init - probe routine of the driver
357 * @pdev: pointer to Platform device handle
358 * @vops: pointer to variant ops
360 * Returns 0 on success, non-zero value on failure
362 int ufshcd_pltfrm_init(struct platform_device *pdev,
363 const struct ufs_hba_variant_ops *vops)
366 void __iomem *mmio_base;
368 struct device *dev = &pdev->dev;
370 mmio_base = devm_platform_ioremap_resource(pdev, 0);
371 if (IS_ERR(mmio_base)) {
372 err = PTR_ERR(mmio_base);
376 irq = platform_get_irq(pdev, 0);
382 err = ufshcd_alloc_host(dev, &hba);
384 dev_err(&pdev->dev, "Allocation failed\n");
390 err = ufshcd_parse_clock_info(hba);
392 dev_err(&pdev->dev, "%s: clock parse failed %d\n",
396 err = ufshcd_parse_regulator_info(hba);
398 dev_err(&pdev->dev, "%s: regulator init failed %d\n",
403 ufshcd_init_lanes_per_dir(hba);
405 err = ufshcd_init(hba, mmio_base, irq);
407 dev_err(dev, "Initialization failed\n");
411 platform_set_drvdata(pdev, hba);
413 pm_runtime_set_active(&pdev->dev);
414 pm_runtime_enable(&pdev->dev);
419 ufshcd_dealloc_host(hba);
423 EXPORT_SYMBOL_GPL(ufshcd_pltfrm_init);
425 MODULE_AUTHOR("Santosh Yaragnavi <santosh.sy@samsung.com>");
426 MODULE_AUTHOR("Vinayak Holikatti <h.vinayak@samsung.com>");
427 MODULE_DESCRIPTION("UFS host controller Platform bus based glue driver");
428 MODULE_LICENSE("GPL");
429 MODULE_VERSION(UFSHCD_DRIVER_VERSION);