blob: c354711f8f564c132e0f89512b10a060a4e6c932 [file] [log] [blame]
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +02001/*
2 * Atmel SDMMC controller driver.
3 *
4 * Copyright (C) 2015 Atmel,
5 * 2015 Ludovic Desroches <ludovic.desroches@atmel.com>
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <linux/clk.h>
Ludovic Desroches4e289a72016-04-07 11:13:09 +020018#include <linux/delay.h>
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +020019#include <linux/err.h>
20#include <linux/io.h>
Ludovic Desroches44064332016-04-28 14:59:26 +020021#include <linux/kernel.h>
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +020022#include <linux/mmc/host.h>
ludovic.desroches@atmel.com64e5cd72016-03-17 14:54:34 +010023#include <linux/mmc/slot-gpio.h>
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +020024#include <linux/module.h>
25#include <linux/of.h>
26#include <linux/of_device.h>
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +010027#include <linux/pm.h>
28#include <linux/pm_runtime.h>
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +020029
30#include "sdhci-pltfm.h"
31
Ludovic Desroches80df2b32017-03-28 11:00:45 +020032#define SDMMC_MC1R 0x204
33#define SDMMC_MC1R_DDR BIT(3)
Ludovic Desroches347be002017-07-26 16:02:46 +020034#define SDMMC_MC1R_FCD BIT(7)
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +020035#define SDMMC_CACR 0x230
36#define SDMMC_CACR_CAPWREN BIT(0)
37#define SDMMC_CACR_KEY (0x46 << 8)
38
Ludovic Desroches44064332016-04-28 14:59:26 +020039#define SDHCI_AT91_PRESET_COMMON_CONF 0x400 /* drv type B, programmable clock mode */
40
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +020041struct sdhci_at91_priv {
42 struct clk *hclock;
43 struct clk *gck;
44 struct clk *mainck;
45};
46
Ludovic Desroches347be002017-07-26 16:02:46 +020047static void sdhci_at91_set_force_card_detect(struct sdhci_host *host)
48{
49 u8 mc1r;
50
51 mc1r = readb(host->ioaddr + SDMMC_MC1R);
52 mc1r |= SDMMC_MC1R_FCD;
53 writeb(mc1r, host->ioaddr + SDMMC_MC1R);
54}
55
Ludovic Desroches4e289a72016-04-07 11:13:09 +020056static void sdhci_at91_set_clock(struct sdhci_host *host, unsigned int clock)
57{
58 u16 clk;
59 unsigned long timeout;
60
61 host->mmc->actual_clock = 0;
62
63 /*
64 * There is no requirement to disable the internal clock before
65 * changing the SD clock configuration. Moreover, disabling the
66 * internal clock, changing the configuration and re-enabling the
67 * internal clock causes some bugs. It can prevent to get the internal
68 * clock stable flag ready and an unexpected switch to the base clock
69 * when using presets.
70 */
71 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
72 clk &= SDHCI_CLOCK_INT_EN;
73 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
74
75 if (clock == 0)
76 return;
77
78 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
79
80 clk |= SDHCI_CLOCK_INT_EN;
81 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
82
83 /* Wait max 20 ms */
84 timeout = 20;
85 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
86 & SDHCI_CLOCK_INT_STABLE)) {
87 if (timeout == 0) {
88 pr_err("%s: Internal clock never stabilised.\n",
89 mmc_hostname(host->mmc));
90 return;
91 }
92 timeout--;
93 mdelay(1);
94 }
95
96 clk |= SDHCI_CLOCK_CARD_EN;
97 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
98}
99
Romain Izardace22e62017-03-09 16:18:20 +0100100/*
101 * In this specific implementation of the SDHCI controller, the power register
102 * needs to have a valid voltage set even when the power supply is managed by
103 * an external regulator.
104 */
105static void sdhci_at91_set_power(struct sdhci_host *host, unsigned char mode,
106 unsigned short vdd)
107{
108 if (!IS_ERR(host->mmc->supply.vmmc)) {
109 struct mmc_host *mmc = host->mmc;
110
111 spin_unlock_irq(&host->lock);
112 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
113 spin_lock_irq(&host->lock);
114 }
115 sdhci_set_power_noreg(host, mode, vdd);
116}
117
Ludovic Desroches80df2b32017-03-28 11:00:45 +0200118void sdhci_at91_set_uhs_signaling(struct sdhci_host *host, unsigned int timing)
119{
120 if (timing == MMC_TIMING_MMC_DDR52)
121 sdhci_writeb(host, SDMMC_MC1R_DDR, SDMMC_MC1R);
122 sdhci_set_uhs_signaling(host, timing);
123}
124
Ludovic Desroches347be002017-07-26 16:02:46 +0200125static void sdhci_at91_reset(struct sdhci_host *host, u8 mask)
126{
127 sdhci_reset(host, mask);
128
Michał Mirosławbddeb422020-03-15 17:44:25 +0100129 if ((host->mmc->caps & MMC_CAP_NONREMOVABLE)
130 || mmc_gpio_get_cd(host->mmc) >= 0)
Ludovic Desroches347be002017-07-26 16:02:46 +0200131 sdhci_at91_set_force_card_detect(host);
132}
133
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200134static const struct sdhci_ops sdhci_at91_sama5d2_ops = {
Ludovic Desroches4e289a72016-04-07 11:13:09 +0200135 .set_clock = sdhci_at91_set_clock,
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200136 .set_bus_width = sdhci_set_bus_width,
Ludovic Desroches347be002017-07-26 16:02:46 +0200137 .reset = sdhci_at91_reset,
Ludovic Desroches80df2b32017-03-28 11:00:45 +0200138 .set_uhs_signaling = sdhci_at91_set_uhs_signaling,
Romain Izardace22e62017-03-09 16:18:20 +0100139 .set_power = sdhci_at91_set_power,
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200140};
141
142static const struct sdhci_pltfm_data soc_data_sama5d2 = {
143 .ops = &sdhci_at91_sama5d2_ops,
144};
145
146static const struct of_device_id sdhci_at91_dt_match[] = {
147 { .compatible = "atmel,sama5d2-sdhci", .data = &soc_data_sama5d2 },
148 {}
149};
150
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100151#ifdef CONFIG_PM
152static int sdhci_at91_runtime_suspend(struct device *dev)
153{
154 struct sdhci_host *host = dev_get_drvdata(dev);
155 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang10f1c132016-02-16 21:08:25 +0800156 struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host);
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100157 int ret;
158
159 ret = sdhci_runtime_suspend_host(host);
160
161 clk_disable_unprepare(priv->gck);
162 clk_disable_unprepare(priv->hclock);
163 clk_disable_unprepare(priv->mainck);
164
165 return ret;
166}
167
168static int sdhci_at91_runtime_resume(struct device *dev)
169{
170 struct sdhci_host *host = dev_get_drvdata(dev);
171 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang10f1c132016-02-16 21:08:25 +0800172 struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host);
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100173 int ret;
174
175 ret = clk_prepare_enable(priv->mainck);
176 if (ret) {
177 dev_err(dev, "can't enable mainck\n");
178 return ret;
179 }
180
181 ret = clk_prepare_enable(priv->hclock);
182 if (ret) {
183 dev_err(dev, "can't enable hclock\n");
184 return ret;
185 }
186
187 ret = clk_prepare_enable(priv->gck);
188 if (ret) {
189 dev_err(dev, "can't enable gck\n");
190 return ret;
191 }
192
193 return sdhci_runtime_resume_host(host);
194}
195#endif /* CONFIG_PM */
196
197static const struct dev_pm_ops sdhci_at91_dev_pm_ops = {
198 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
199 pm_runtime_force_resume)
200 SET_RUNTIME_PM_OPS(sdhci_at91_runtime_suspend,
201 sdhci_at91_runtime_resume,
202 NULL)
203};
204
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200205static int sdhci_at91_probe(struct platform_device *pdev)
206{
207 const struct of_device_id *match;
208 const struct sdhci_pltfm_data *soc_data;
209 struct sdhci_host *host;
210 struct sdhci_pltfm_host *pltfm_host;
211 struct sdhci_at91_priv *priv;
212 unsigned int caps0, caps1;
213 unsigned int clk_base, clk_mul;
214 unsigned int gck_rate, real_gck_rate;
215 int ret;
Ludovic Desroches44064332016-04-28 14:59:26 +0200216 unsigned int preset_div;
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200217
218 match = of_match_device(sdhci_at91_dt_match, &pdev->dev);
219 if (!match)
220 return -EINVAL;
221 soc_data = match->data;
222
Jisheng Zhang10f1c132016-02-16 21:08:25 +0800223 host = sdhci_pltfm_init(pdev, soc_data, sizeof(*priv));
224 if (IS_ERR(host))
225 return PTR_ERR(host);
226
227 pltfm_host = sdhci_priv(host);
228 priv = sdhci_pltfm_priv(pltfm_host);
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200229
230 priv->mainck = devm_clk_get(&pdev->dev, "baseclk");
231 if (IS_ERR(priv->mainck)) {
232 dev_err(&pdev->dev, "failed to get baseclk\n");
233 return PTR_ERR(priv->mainck);
234 }
235
236 priv->hclock = devm_clk_get(&pdev->dev, "hclock");
237 if (IS_ERR(priv->hclock)) {
238 dev_err(&pdev->dev, "failed to get hclock\n");
239 return PTR_ERR(priv->hclock);
240 }
241
242 priv->gck = devm_clk_get(&pdev->dev, "multclk");
243 if (IS_ERR(priv->gck)) {
244 dev_err(&pdev->dev, "failed to get multclk\n");
245 return PTR_ERR(priv->gck);
246 }
247
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200248 /*
249 * The mult clock is provided by as a generated clock by the PMC
250 * controller. In order to set the rate of gck, we have to get the
251 * base clock rate and the clock mult from capabilities.
252 */
253 clk_prepare_enable(priv->hclock);
254 caps0 = readl(host->ioaddr + SDHCI_CAPABILITIES);
255 caps1 = readl(host->ioaddr + SDHCI_CAPABILITIES_1);
256 clk_base = (caps0 & SDHCI_CLOCK_V3_BASE_MASK) >> SDHCI_CLOCK_BASE_SHIFT;
257 clk_mul = (caps1 & SDHCI_CLOCK_MUL_MASK) >> SDHCI_CLOCK_MUL_SHIFT;
258 gck_rate = clk_base * 1000000 * (clk_mul + 1);
259 ret = clk_set_rate(priv->gck, gck_rate);
260 if (ret < 0) {
261 dev_err(&pdev->dev, "failed to set gck");
262 goto hclock_disable_unprepare;
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200263 }
264 /*
265 * We need to check if we have the requested rate for gck because in
266 * some cases this rate could be not supported. If it happens, the rate
267 * is the closest one gck can provide. We have to update the value
268 * of clk mul.
269 */
270 real_gck_rate = clk_get_rate(priv->gck);
271 if (real_gck_rate != gck_rate) {
272 clk_mul = real_gck_rate / (clk_base * 1000000) - 1;
273 caps1 &= (~SDHCI_CLOCK_MUL_MASK);
274 caps1 |= ((clk_mul << SDHCI_CLOCK_MUL_SHIFT) & SDHCI_CLOCK_MUL_MASK);
275 /* Set capabilities in r/w mode. */
276 writel(SDMMC_CACR_KEY | SDMMC_CACR_CAPWREN, host->ioaddr + SDMMC_CACR);
277 writel(caps1, host->ioaddr + SDHCI_CAPABILITIES_1);
278 /* Set capabilities in ro mode. */
279 writel(0, host->ioaddr + SDMMC_CACR);
280 dev_info(&pdev->dev, "update clk mul to %u as gck rate is %u Hz\n",
281 clk_mul, real_gck_rate);
282 }
283
Ludovic Desroches44064332016-04-28 14:59:26 +0200284 /*
285 * We have to set preset values because it depends on the clk_mul
286 * value. Moreover, SDR104 is supported in a degraded mode since the
287 * maximum sd clock value is 120 MHz instead of 208 MHz. For that
288 * reason, we need to use presets to support SDR104.
289 */
290 preset_div = DIV_ROUND_UP(real_gck_rate, 24000000) - 1;
291 writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div,
292 host->ioaddr + SDHCI_PRESET_FOR_SDR12);
293 preset_div = DIV_ROUND_UP(real_gck_rate, 50000000) - 1;
294 writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div,
295 host->ioaddr + SDHCI_PRESET_FOR_SDR25);
296 preset_div = DIV_ROUND_UP(real_gck_rate, 100000000) - 1;
297 writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div,
298 host->ioaddr + SDHCI_PRESET_FOR_SDR50);
299 preset_div = DIV_ROUND_UP(real_gck_rate, 120000000) - 1;
300 writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div,
301 host->ioaddr + SDHCI_PRESET_FOR_SDR104);
302 preset_div = DIV_ROUND_UP(real_gck_rate, 50000000) - 1;
303 writew(SDHCI_AT91_PRESET_COMMON_CONF | preset_div,
304 host->ioaddr + SDHCI_PRESET_FOR_DDR50);
305
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200306 clk_prepare_enable(priv->mainck);
307 clk_prepare_enable(priv->gck);
308
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200309 ret = mmc_of_parse(host->mmc);
310 if (ret)
311 goto clocks_disable_unprepare;
312
313 sdhci_get_of_property(pdev);
314
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100315 pm_runtime_get_noresume(&pdev->dev);
316 pm_runtime_set_active(&pdev->dev);
317 pm_runtime_enable(&pdev->dev);
318 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
319 pm_runtime_use_autosuspend(&pdev->dev);
320
Eugen Hristevf0d32422019-08-08 08:35:40 +0000321 /* HS200 is broken at this moment */
Eugen Hristev3bd30f02019-11-14 12:59:26 +0000322 host->quirks2 |= SDHCI_QUIRK2_BROKEN_HS200;
Eugen Hristevf0d32422019-08-08 08:35:40 +0000323
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200324 ret = sdhci_add_host(host);
325 if (ret)
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100326 goto pm_runtime_disable;
327
ludovic.desroches@atmel.com64e5cd72016-03-17 14:54:34 +0100328 /*
329 * When calling sdhci_runtime_suspend_host(), the sdhci layer makes
330 * the assumption that all the clocks of the controller are disabled.
331 * It means we can't get irq from it when it is runtime suspended.
332 * For that reason, it is not planned to wake-up on a card detect irq
333 * from the controller.
334 * If we want to use runtime PM and to be able to wake-up on card
335 * insertion, we have to use a GPIO for the card detection or we can
336 * use polling. Be aware that using polling will resume/suspend the
337 * controller between each attempt.
338 * Disable SDHCI_QUIRK_BROKEN_CARD_DETECTION to be sure nobody tries
339 * to enable polling via device tree with broken-cd property.
340 */
Jaehoon Chung860951c2016-06-21 10:13:26 +0900341 if (mmc_card_is_removable(host->mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +0200342 mmc_gpio_get_cd(host->mmc) < 0) {
ludovic.desroches@atmel.com64e5cd72016-03-17 14:54:34 +0100343 host->mmc->caps |= MMC_CAP_NEEDS_POLL;
344 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
345 }
346
Ludovic Desroches347be002017-07-26 16:02:46 +0200347 /*
348 * If the device attached to the MMC bus is not removable, it is safer
349 * to set the Force Card Detect bit. People often don't connect the
350 * card detect signal and use this pin for another purpose. If the card
351 * detect pin is not muxed to SDHCI controller, a default value is
352 * used. This value can be different from a SoC revision to another
353 * one. Problems come when this default value is not card present. To
354 * avoid this case, if the device is non removable then the card
355 * detection procedure using the SDMCC_CD signal is bypassed.
356 * This bit is reset when a software reset for all command is performed
357 * so we need to implement our own reset function to set back this bit.
Michał Mirosławbddeb422020-03-15 17:44:25 +0100358 *
359 * WA: SAMA5D2 doesn't drive CMD if using CD GPIO line.
Ludovic Desroches347be002017-07-26 16:02:46 +0200360 */
Michał Mirosławbddeb422020-03-15 17:44:25 +0100361 if ((host->mmc->caps & MMC_CAP_NONREMOVABLE)
362 || mmc_gpio_get_cd(host->mmc) >= 0)
Ludovic Desroches347be002017-07-26 16:02:46 +0200363 sdhci_at91_set_force_card_detect(host);
364
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100365 pm_runtime_put_autosuspend(&pdev->dev);
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200366
367 return 0;
368
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100369pm_runtime_disable:
370 pm_runtime_disable(&pdev->dev);
371 pm_runtime_set_suspended(&pdev->dev);
Jisheng Zhang2df9d582016-02-02 19:55:06 +0800372 pm_runtime_put_noidle(&pdev->dev);
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200373clocks_disable_unprepare:
374 clk_disable_unprepare(priv->gck);
375 clk_disable_unprepare(priv->mainck);
376hclock_disable_unprepare:
377 clk_disable_unprepare(priv->hclock);
378 sdhci_pltfm_free(pdev);
379 return ret;
380}
381
382static int sdhci_at91_remove(struct platform_device *pdev)
383{
384 struct sdhci_host *host = platform_get_drvdata(pdev);
385 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang10f1c132016-02-16 21:08:25 +0800386 struct sdhci_at91_priv *priv = sdhci_pltfm_priv(pltfm_host);
387 struct clk *gck = priv->gck;
388 struct clk *hclock = priv->hclock;
389 struct clk *mainck = priv->mainck;
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200390
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100391 pm_runtime_get_sync(&pdev->dev);
392 pm_runtime_disable(&pdev->dev);
393 pm_runtime_put_noidle(&pdev->dev);
394
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200395 sdhci_pltfm_unregister(pdev);
396
Jisheng Zhang10f1c132016-02-16 21:08:25 +0800397 clk_disable_unprepare(gck);
398 clk_disable_unprepare(hclock);
399 clk_disable_unprepare(mainck);
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200400
401 return 0;
402}
403
404static struct platform_driver sdhci_at91_driver = {
405 .driver = {
406 .name = "sdhci-at91",
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200407 .of_match_table = sdhci_at91_dt_match,
ludovic.desroches@atmel.comf5f17812015-11-11 19:11:48 +0100408 .pm = &sdhci_at91_dev_pm_ops,
ludovic.desroches@atmel.combb5f8ea2015-07-29 16:22:47 +0200409 },
410 .probe = sdhci_at91_probe,
411 .remove = sdhci_at91_remove,
412};
413
414module_platform_driver(sdhci_at91_driver);
415
416MODULE_DESCRIPTION("SDHCI driver for at91");
417MODULE_AUTHOR("Ludovic Desroches <ludovic.desroches@atmel.com>");
418MODULE_LICENSE("GPL v2");