Merge tag 'lsk-v4.4-16.05-android'
[firefly-linux-kernel-4.4.55.git] / drivers / mmc / host / sdhci-of-arasan.c
1 /*
2  * Arasan Secure Digital Host Controller Interface.
3  * Copyright (C) 2011 - 2012 Michal Simek <monstr@monstr.eu>
4  * Copyright (c) 2012 Wind River Systems, Inc.
5  * Copyright (C) 2013 Pengutronix e.K.
6  * Copyright (C) 2013 Xilinx Inc.
7  *
8  * Based on sdhci-of-esdhc.c
9  *
10  * Copyright (c) 2007 Freescale Semiconductor, Inc.
11  * Copyright (c) 2009 MontaVista Software, Inc.
12  *
13  * Authors: Xiaobo Xie <X.Xie@freescale.com>
14  *          Anton Vorontsov <avorontsov@ru.mvista.com>
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or (at
19  * your option) any later version.
20  */
21
22 #include <linux/module.h>
23 #include <linux/of_device.h>
24 #include <linux/phy/phy.h>
25 #include "sdhci-pltfm.h"
26
27 #define SDHCI_ARASAN_CLK_CTRL_OFFSET    0x2c
28 #define SDHCI_ARASAN_VENDOR_REGISTER    0x78
29
30 #define VENDOR_ENHANCED_STROBE          BIT(0)
31 #define CLK_CTRL_TIMEOUT_SHIFT          16
32 #define CLK_CTRL_TIMEOUT_MASK           (0xf << CLK_CTRL_TIMEOUT_SHIFT)
33 #define CLK_CTRL_TIMEOUT_MIN_EXP        13
34
35 /**
36  * struct sdhci_arasan_data
37  * @clk_ahb:    Pointer to the AHB clock
38  * @phy: Pointer to the generic phy
39  */
40 struct sdhci_arasan_data {
41         struct clk      *clk_ahb;
42         struct phy      *phy;
43 };
44
45 static unsigned int sdhci_arasan_get_timeout_clock(struct sdhci_host *host)
46 {
47         u32 div;
48         unsigned long freq;
49         struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
50
51         div = readl(host->ioaddr + SDHCI_ARASAN_CLK_CTRL_OFFSET);
52         div = (div & CLK_CTRL_TIMEOUT_MASK) >> CLK_CTRL_TIMEOUT_SHIFT;
53
54         freq = clk_get_rate(pltfm_host->clk);
55         freq /= 1 << (CLK_CTRL_TIMEOUT_MIN_EXP + div);
56
57         return freq;
58 }
59
60 static int sdhci_arasan_enhanced_strobe(struct mmc_host *mmc,
61                                         bool enable)
62 {
63         u32 vendor;
64         struct sdhci_host *host = mmc_priv(mmc);
65
66         vendor = readl(host->ioaddr + SDHCI_ARASAN_VENDOR_REGISTER);
67         if (enable)
68                 vendor |= VENDOR_ENHANCED_STROBE;
69         else
70                 vendor &= (~VENDOR_ENHANCED_STROBE);
71
72         writel(vendor, host->ioaddr + SDHCI_ARASAN_VENDOR_REGISTER);
73
74         return 0;
75 }
76
77 static void sdhci_arasan_set_clock(struct sdhci_host *host, unsigned int clock)
78 {
79         struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
80         struct sdhci_arasan_data *sdhci_arasan = pltfm_host->priv;
81         bool ctrl_phy = false;
82
83         if (clock > MMC_HIGH_52_MAX_DTR && (!IS_ERR(sdhci_arasan->phy)))
84                 ctrl_phy = true;
85
86         if (ctrl_phy) {
87                 spin_unlock_irq(&host->lock);
88                 phy_power_off(sdhci_arasan->phy);
89                 spin_lock_irq(&host->lock);
90         }
91
92         sdhci_set_clock(host, clock);
93
94         if (ctrl_phy) {
95                 spin_unlock_irq(&host->lock);
96                 phy_power_on(sdhci_arasan->phy);
97                 spin_lock_irq(&host->lock);
98         }
99 }
100
101 static struct sdhci_ops sdhci_arasan_ops = {
102         .set_clock = sdhci_arasan_set_clock,
103         .get_max_clock = sdhci_pltfm_clk_get_max_clock,
104         .get_timeout_clock = sdhci_arasan_get_timeout_clock,
105         .set_bus_width = sdhci_set_bus_width,
106         .reset = sdhci_reset,
107         .set_uhs_signaling = sdhci_set_uhs_signaling,
108 };
109
110 static struct sdhci_pltfm_data sdhci_arasan_pdata = {
111         .ops = &sdhci_arasan_ops,
112         .quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
113         .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
114                         SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
115 };
116
117 #ifdef CONFIG_PM_SLEEP
118 /**
119  * sdhci_arasan_suspend - Suspend method for the driver
120  * @dev:        Address of the device structure
121  * Return: 0 on success and error value on error
122  *
123  * Put the device in a low power state.
124  */
125 static int sdhci_arasan_suspend(struct device *dev)
126 {
127         struct platform_device *pdev = to_platform_device(dev);
128         struct sdhci_host *host = platform_get_drvdata(pdev);
129         struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
130         struct sdhci_arasan_data *sdhci_arasan = pltfm_host->priv;
131         int ret;
132
133         ret = sdhci_suspend_host(host);
134         if (ret)
135                 return ret;
136
137         if (!IS_ERR(sdhci_arasan->phy)) {
138                 ret = phy_power_off(sdhci_arasan->phy);
139                 if (ret) {
140                         dev_err(dev, "Cannot power off phy.\n");
141                         sdhci_resume_host(host);
142                         return ret;
143                 }
144         }
145
146         clk_disable(pltfm_host->clk);
147         clk_disable(sdhci_arasan->clk_ahb);
148
149         return 0;
150 }
151
152 /**
153  * sdhci_arasan_resume - Resume method for the driver
154  * @dev:        Address of the device structure
155  * Return: 0 on success and error value on error
156  *
157  * Resume operation after suspend
158  */
159 static int sdhci_arasan_resume(struct device *dev)
160 {
161         struct platform_device *pdev = to_platform_device(dev);
162         struct sdhci_host *host = platform_get_drvdata(pdev);
163         struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
164         struct sdhci_arasan_data *sdhci_arasan = pltfm_host->priv;
165         int ret;
166
167         ret = clk_enable(sdhci_arasan->clk_ahb);
168         if (ret) {
169                 dev_err(dev, "Cannot enable AHB clock.\n");
170                 return ret;
171         }
172
173         ret = clk_enable(pltfm_host->clk);
174         if (ret) {
175                 dev_err(dev, "Cannot enable SD clock.\n");
176                 return ret;
177         }
178
179         if (!IS_ERR(sdhci_arasan->phy)) {
180                 ret = phy_power_on(sdhci_arasan->phy);
181                 if (ret) {
182                         dev_err(dev, "Cannot power on phy.\n");
183                         return ret;
184                 }
185         }
186
187         return sdhci_resume_host(host);
188 }
189 #endif /* ! CONFIG_PM_SLEEP */
190
191 static SIMPLE_DEV_PM_OPS(sdhci_arasan_dev_pm_ops, sdhci_arasan_suspend,
192                          sdhci_arasan_resume);
193
194 static int sdhci_arasan_probe(struct platform_device *pdev)
195 {
196         int ret;
197         struct clk *clk_xin;
198         struct sdhci_host *host;
199         struct sdhci_pltfm_host *pltfm_host;
200         struct sdhci_arasan_data *sdhci_arasan;
201
202         sdhci_arasan = devm_kzalloc(&pdev->dev, sizeof(*sdhci_arasan),
203                         GFP_KERNEL);
204         if (!sdhci_arasan)
205                 return -ENOMEM;
206
207         sdhci_arasan->clk_ahb = devm_clk_get(&pdev->dev, "clk_ahb");
208         if (IS_ERR(sdhci_arasan->clk_ahb)) {
209                 dev_err(&pdev->dev, "clk_ahb clock not found.\n");
210                 ret = PTR_ERR(sdhci_arasan->clk_ahb);
211                 goto err_pltfm_free;
212         }
213
214         clk_xin = devm_clk_get(&pdev->dev, "clk_xin");
215         if (IS_ERR(clk_xin)) {
216                 dev_err(&pdev->dev, "clk_xin clock not found.\n");
217                 ret = PTR_ERR(clk_xin);
218                 goto err_pltfm_free;
219         }
220
221         ret = clk_prepare_enable(sdhci_arasan->clk_ahb);
222         if (ret) {
223                 dev_err(&pdev->dev, "Unable to enable AHB clock.\n");
224                 goto err_pltfm_free;
225         }
226
227         ret = clk_prepare_enable(clk_xin);
228         if (ret) {
229                 dev_err(&pdev->dev, "Unable to enable SD clock.\n");
230                 goto clk_dis_ahb;
231         }
232
233         host = sdhci_pltfm_init(pdev, &sdhci_arasan_pdata, 0);
234         if (IS_ERR(host)) {
235                 ret = PTR_ERR(host);
236                 goto clk_disable_all;
237         }
238
239         if (of_device_is_compatible(pdev->dev.of_node, "arasan,sdhci-4.9a")) {
240                 host->quirks |= SDHCI_QUIRK_NO_HISPD_BIT;
241                 host->quirks2 |= SDHCI_QUIRK2_HOST_NO_CMD23;
242         }
243
244         sdhci_get_of_property(pdev);
245         pltfm_host = sdhci_priv(host);
246         pltfm_host->priv = sdhci_arasan;
247         pltfm_host->clk = clk_xin;
248
249         ret = mmc_of_parse(host->mmc);
250         if (ret) {
251                 dev_err(&pdev->dev, "parsing dt failed (%u)\n", ret);
252                 goto clk_disable_all;
253         }
254
255         sdhci_arasan->phy = ERR_PTR(-ENODEV);
256         if (of_device_is_compatible(pdev->dev.of_node,
257                                     "arasan,sdhci-5.1")) {
258                 sdhci_arasan->phy = devm_phy_get(&pdev->dev,
259                                                  "phy_arasan");
260                 if (IS_ERR(sdhci_arasan->phy)) {
261                         ret = PTR_ERR(sdhci_arasan->phy);
262                         dev_err(&pdev->dev, "No phy for arasan,sdhci-5.1.\n");
263                         goto clk_disable_all;
264                 }
265
266                 ret = phy_init(sdhci_arasan->phy);
267                 if (ret < 0) {
268                         dev_err(&pdev->dev, "phy_init err.\n");
269                         goto clk_disable_all;
270                 }
271
272                 ret = phy_power_on(sdhci_arasan->phy);
273                 if (ret < 0) {
274                         dev_err(&pdev->dev, "phy_power_on err.\n");
275                         goto err_phy_power;
276                 }
277
278                 host->mmc_host_ops.prepare_enhanced_strobe =
279                                         sdhci_arasan_enhanced_strobe;
280         }
281
282         ret = sdhci_add_host(host);
283         if (ret)
284                 goto err_add_host;
285
286         return 0;
287
288 err_add_host:
289         if (!IS_ERR(sdhci_arasan->phy))
290                 phy_power_off(sdhci_arasan->phy);
291 err_phy_power:
292         if (!IS_ERR(sdhci_arasan->phy))
293                 phy_exit(sdhci_arasan->phy);
294 clk_disable_all:
295         clk_disable_unprepare(clk_xin);
296 clk_dis_ahb:
297         clk_disable_unprepare(sdhci_arasan->clk_ahb);
298 err_pltfm_free:
299         sdhci_pltfm_free(pdev);
300         return ret;
301 }
302
303 static int sdhci_arasan_remove(struct platform_device *pdev)
304 {
305         int ret;
306         struct sdhci_host *host = platform_get_drvdata(pdev);
307         struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
308         struct sdhci_arasan_data *sdhci_arasan = pltfm_host->priv;
309
310         if (!IS_ERR(sdhci_arasan->phy)) {
311                 phy_power_off(sdhci_arasan->phy);
312                 phy_exit(sdhci_arasan->phy);
313         }
314
315         ret = sdhci_pltfm_unregister(pdev);
316
317         clk_disable_unprepare(sdhci_arasan->clk_ahb);
318
319         return ret;
320 }
321
322 static const struct of_device_id sdhci_arasan_of_match[] = {
323         { .compatible = "arasan,sdhci-8.9a" },
324         { .compatible = "arasan,sdhci-5.1" },
325         { .compatible = "arasan,sdhci-4.9a" },
326         { }
327 };
328 MODULE_DEVICE_TABLE(of, sdhci_arasan_of_match);
329
330 static struct platform_driver sdhci_arasan_driver = {
331         .driver = {
332                 .name = "sdhci-arasan",
333                 .of_match_table = sdhci_arasan_of_match,
334                 .pm = &sdhci_arasan_dev_pm_ops,
335         },
336         .probe = sdhci_arasan_probe,
337         .remove = sdhci_arasan_remove,
338 };
339
340 module_platform_driver(sdhci_arasan_driver);
341
342 MODULE_DESCRIPTION("Driver for the Arasan SDHCI Controller");
343 MODULE_AUTHOR("Soeren Brinkmann <soren.brinkmann@xilinx.com>");
344 MODULE_LICENSE("GPL");