1 /*
2  * Copyright (c) 2014, Fuzhou Rockchip Electronics Co., Ltd
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 as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  */
9 
10 #include <linux/module.h>
11 #include <linux/platform_device.h>
12 #include <linux/clk.h>
13 #include <linux/mmc/host.h>
14 #include <linux/mmc/dw_mmc.h>
15 #include <linux/of_address.h>
16 
17 #include "dw_mmc.h"
18 #include "dw_mmc-pltfm.h"
19 
20 #define RK3288_CLKGEN_DIV       2
21 
22 static void dw_mci_rockchip_prepare_command(struct dw_mci *host, u32 *cmdr)
23 {
24 	*cmdr |= SDMMC_CMD_USE_HOLD_REG;
25 }
26 
27 static int dw_mci_rk3288_setup_clock(struct dw_mci *host)
28 {
29 	host->bus_hz /= RK3288_CLKGEN_DIV;
30 
31 	return 0;
32 }
33 
34 static void dw_mci_rk3288_set_ios(struct dw_mci *host, struct mmc_ios *ios)
35 {
36 	int ret;
37 	unsigned int cclkin;
38 	u32 bus_hz;
39 
40 	if (ios->clock == 0)
41 		return;
42 
43 	/*
44 	 * cclkin: source clock of mmc controller
45 	 * bus_hz: card interface clock generated by CLKGEN
46 	 * bus_hz = cclkin / RK3288_CLKGEN_DIV
47 	 * ios->clock = (div == 0) ? bus_hz : (bus_hz / (2 * div))
48 	 *
49 	 * Note: div can only be 0 or 1
50 	 *       if DDR50 8bit mode(only emmc work in 8bit mode),
51 	 *       div must be set 1
52 	 */
53 	if (ios->bus_width == MMC_BUS_WIDTH_8 &&
54 	    ios->timing == MMC_TIMING_MMC_DDR52)
55 		cclkin = 2 * ios->clock * RK3288_CLKGEN_DIV;
56 	else
57 		cclkin = ios->clock * RK3288_CLKGEN_DIV;
58 
59 	ret = clk_set_rate(host->ciu_clk, cclkin);
60 	if (ret)
61 		dev_warn(host->dev, "failed to set rate %uHz\n", ios->clock);
62 
63 	bus_hz = clk_get_rate(host->ciu_clk) / RK3288_CLKGEN_DIV;
64 	if (bus_hz != host->bus_hz) {
65 		host->bus_hz = bus_hz;
66 		/* force dw_mci_setup_bus() */
67 		host->current_speed = 0;
68 	}
69 }
70 
71 static int dw_mci_rockchip_init(struct dw_mci *host)
72 {
73 	/* It is slot 8 on Rockchip SoCs */
74 	host->sdio_id0 = 8;
75 
76 	return 0;
77 }
78 
79 /* Common capabilities of RK3288 SoC */
80 static unsigned long dw_mci_rk3288_dwmmc_caps[4] = {
81 	MMC_CAP_RUNTIME_RESUME, /* emmc */
82 	MMC_CAP_RUNTIME_RESUME, /* sdmmc */
83 	MMC_CAP_RUNTIME_RESUME, /* sdio0 */
84 	MMC_CAP_RUNTIME_RESUME, /* sdio1 */
85 };
86 static const struct dw_mci_drv_data rk2928_drv_data = {
87 	.prepare_command        = dw_mci_rockchip_prepare_command,
88 	.init			= dw_mci_rockchip_init,
89 };
90 
91 static const struct dw_mci_drv_data rk3288_drv_data = {
92 	.caps			= dw_mci_rk3288_dwmmc_caps,
93 	.prepare_command        = dw_mci_rockchip_prepare_command,
94 	.set_ios		= dw_mci_rk3288_set_ios,
95 	.setup_clock    = dw_mci_rk3288_setup_clock,
96 	.init			= dw_mci_rockchip_init,
97 };
98 
99 static const struct of_device_id dw_mci_rockchip_match[] = {
100 	{ .compatible = "rockchip,rk2928-dw-mshc",
101 		.data = &rk2928_drv_data },
102 	{ .compatible = "rockchip,rk3288-dw-mshc",
103 		.data = &rk3288_drv_data },
104 	{},
105 };
106 MODULE_DEVICE_TABLE(of, dw_mci_rockchip_match);
107 
108 static int dw_mci_rockchip_probe(struct platform_device *pdev)
109 {
110 	const struct dw_mci_drv_data *drv_data;
111 	const struct of_device_id *match;
112 
113 	if (!pdev->dev.of_node)
114 		return -ENODEV;
115 
116 	match = of_match_node(dw_mci_rockchip_match, pdev->dev.of_node);
117 	drv_data = match->data;
118 
119 	return dw_mci_pltfm_register(pdev, drv_data);
120 }
121 
122 #ifdef CONFIG_PM_SLEEP
123 static int dw_mci_rockchip_suspend(struct device *dev)
124 {
125 	struct dw_mci *host = dev_get_drvdata(dev);
126 
127 	return dw_mci_suspend(host);
128 }
129 
130 static int dw_mci_rockchip_resume(struct device *dev)
131 {
132 	struct dw_mci *host = dev_get_drvdata(dev);
133 
134 	return dw_mci_resume(host);
135 }
136 #endif /* CONFIG_PM_SLEEP */
137 
138 static SIMPLE_DEV_PM_OPS(dw_mci_rockchip_pmops,
139 			 dw_mci_rockchip_suspend,
140 			 dw_mci_rockchip_resume);
141 
142 static struct platform_driver dw_mci_rockchip_pltfm_driver = {
143 	.probe		= dw_mci_rockchip_probe,
144 	.remove		= dw_mci_pltfm_remove,
145 	.driver		= {
146 		.name		= "dwmmc_rockchip",
147 		.of_match_table	= dw_mci_rockchip_match,
148 		.pm		= &dw_mci_rockchip_pmops,
149 	},
150 };
151 
152 module_platform_driver(dw_mci_rockchip_pltfm_driver);
153 
154 MODULE_AUTHOR("Addy Ke <addy.ke@rock-chips.com>");
155 MODULE_DESCRIPTION("Rockchip Specific DW-MSHC Driver Extension");
156 MODULE_ALIAS("platform:dwmmc-rockchip");
157 MODULE_LICENSE("GPL v2");
158