1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/of_platform.h>
11 #include <linux/platform_device.h>
12 #include <linux/pm_runtime.h>
14 #define TI_UFS_SS_CTRL 0x4
15 #define TI_UFS_SS_RST_N_PCS BIT(0)
16 #define TI_UFS_SS_CLK_26MHZ BIT(4)
18 static int ti_j721e_ufs_probe(struct platform_device *pdev)
20 struct device *dev = &pdev->dev;
21 unsigned long clk_rate;
22 void __iomem *regbase;
27 regbase = devm_platform_ioremap_resource(pdev, 0);
29 return PTR_ERR(regbase);
31 pm_runtime_enable(dev);
32 ret = pm_runtime_get_sync(dev);
34 pm_runtime_put_noidle(dev);
38 /* Select MPHY refclk frequency */
39 clk = devm_clk_get(dev, NULL);
42 dev_err(dev, "Cannot claim MPHY clock.\n");
45 clk_rate = clk_get_rate(clk);
46 if (clk_rate == 26000000)
47 reg |= TI_UFS_SS_CLK_26MHZ;
48 devm_clk_put(dev, clk);
50 /* Take UFS slave device out of reset */
51 reg |= TI_UFS_SS_RST_N_PCS;
52 writel(reg, regbase + TI_UFS_SS_CTRL);
54 ret = of_platform_populate(pdev->dev.of_node, NULL, NULL,
57 dev_err(dev, "failed to populate child nodes %d\n", ret);
64 pm_runtime_put_sync(dev);
66 pm_runtime_disable(dev);
70 static int ti_j721e_ufs_remove(struct platform_device *pdev)
72 of_platform_depopulate(&pdev->dev);
73 pm_runtime_put_sync(&pdev->dev);
74 pm_runtime_disable(&pdev->dev);
79 static const struct of_device_id ti_j721e_ufs_of_match[] = {
81 .compatible = "ti,j721e-ufs",
86 static struct platform_driver ti_j721e_ufs_driver = {
87 .probe = ti_j721e_ufs_probe,
88 .remove = ti_j721e_ufs_remove,
90 .name = "ti-j721e-ufs",
91 .of_match_table = ti_j721e_ufs_of_match,
94 module_platform_driver(ti_j721e_ufs_driver);
97 MODULE_DESCRIPTION("TI UFS host controller glue driver");
98 MODULE_LICENSE("GPL v2");