blob: 1d1953dfc54b12136082a9c59bf242665526cfd4 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Albert Herranz7657c3a2009-12-17 15:27:20 -08002/*
3 * Freescale eSDHC controller driver.
4 *
Jerry Huangf060bc92012-02-14 14:05:37 +08005 * Copyright (c) 2007, 2010, 2012 Freescale Semiconductor, Inc.
Albert Herranz7657c3a2009-12-17 15:27:20 -08006 * Copyright (c) 2009 MontaVista Software, Inc.
7 *
8 * Authors: Xiaobo Xie <X.Xie@freescale.com>
9 * Anton Vorontsov <avorontsov@ru.mvista.com>
Albert Herranz7657c3a2009-12-17 15:27:20 -080010 */
11
Oded Gabbay66b50a02013-06-27 12:00:05 -040012#include <linux/err.h>
Albert Herranz7657c3a2009-12-17 15:27:20 -080013#include <linux/io.h>
Jerry Huangf060bc92012-02-14 14:05:37 +080014#include <linux/of.h>
yangbo luea356452017-04-20 16:14:41 +080015#include <linux/of_address.h>
Albert Herranz7657c3a2009-12-17 15:27:20 -080016#include <linux/delay.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040017#include <linux/module.h>
yangbo lu151ede42016-11-09 11:14:12 +080018#include <linux/sys_soc.h>
yangbo lu19c3a0e2017-04-20 16:14:40 +080019#include <linux/clk.h>
20#include <linux/ktime.h>
Laurentiu Tudor5552d7a2018-07-04 14:34:20 +030021#include <linux/dma-mapping.h>
Albert Herranz7657c3a2009-12-17 15:27:20 -080022#include <linux/mmc/host.h>
Yinbo Zhub214fe52019-03-11 02:16:47 +000023#include <linux/mmc/mmc.h>
Shawn Guo38576af2011-05-27 23:48:14 +080024#include "sdhci-pltfm.h"
Wolfram Sang80872e22010-10-15 12:21:03 +020025#include "sdhci-esdhc.h"
Albert Herranz7657c3a2009-12-17 15:27:20 -080026
Jerry Huang137ccd42012-03-08 11:25:02 +080027#define VENDOR_V_22 0x12
Haijun Zhanga4071fb2012-12-04 10:41:28 +080028#define VENDOR_V_23 0x13
yangbo luf4932cf2015-10-08 18:36:36 +080029
yinbo.zhu67fdfbd2018-06-25 16:46:24 +080030#define MMC_TIMING_NUM (MMC_TIMING_MMC_HS400 + 1)
31
32struct esdhc_clk_fixup {
33 const unsigned int sd_dflt_max_clk;
34 const unsigned int max_clk[MMC_TIMING_NUM];
35};
36
37static const struct esdhc_clk_fixup ls1021a_esdhc_clk = {
38 .sd_dflt_max_clk = 25000000,
39 .max_clk[MMC_TIMING_MMC_HS] = 46500000,
40 .max_clk[MMC_TIMING_SD_HS] = 46500000,
41};
42
43static const struct esdhc_clk_fixup ls1046a_esdhc_clk = {
44 .sd_dflt_max_clk = 25000000,
45 .max_clk[MMC_TIMING_UHS_SDR104] = 167000000,
46 .max_clk[MMC_TIMING_MMC_HS200] = 167000000,
47};
48
49static const struct esdhc_clk_fixup ls1012a_esdhc_clk = {
50 .sd_dflt_max_clk = 25000000,
51 .max_clk[MMC_TIMING_UHS_SDR104] = 125000000,
52 .max_clk[MMC_TIMING_MMC_HS200] = 125000000,
53};
54
55static const struct esdhc_clk_fixup p1010_esdhc_clk = {
56 .sd_dflt_max_clk = 20000000,
57 .max_clk[MMC_TIMING_LEGACY] = 20000000,
58 .max_clk[MMC_TIMING_MMC_HS] = 42000000,
59 .max_clk[MMC_TIMING_SD_HS] = 40000000,
60};
61
62static const struct of_device_id sdhci_esdhc_of_match[] = {
63 { .compatible = "fsl,ls1021a-esdhc", .data = &ls1021a_esdhc_clk},
64 { .compatible = "fsl,ls1046a-esdhc", .data = &ls1046a_esdhc_clk},
65 { .compatible = "fsl,ls1012a-esdhc", .data = &ls1012a_esdhc_clk},
66 { .compatible = "fsl,p1010-esdhc", .data = &p1010_esdhc_clk},
67 { .compatible = "fsl,mpc8379-esdhc" },
68 { .compatible = "fsl,mpc8536-esdhc" },
69 { .compatible = "fsl,esdhc" },
70 { }
71};
72MODULE_DEVICE_TABLE(of, sdhci_esdhc_of_match);
73
yangbo luf4932cf2015-10-08 18:36:36 +080074struct sdhci_esdhc {
75 u8 vendor_ver;
76 u8 spec_ver;
yangbo lu151ede42016-11-09 11:14:12 +080077 bool quirk_incorrect_hostver;
Yangbo Lu6079e632018-11-23 11:15:35 +080078 bool quirk_limited_clk_division;
Yangbo Lu48e304c2018-11-23 11:15:37 +080079 bool quirk_unreliable_pulse_detection;
Yinbo Zhub1f378a2018-08-23 16:48:32 +080080 bool quirk_fixup_tuning;
Yangbo Lu1f1929f2019-03-11 02:16:51 +000081 bool quirk_ignore_data_inhibit;
yangbo lu19c3a0e2017-04-20 16:14:40 +080082 unsigned int peripheral_clock;
yinbo.zhu67fdfbd2018-06-25 16:46:24 +080083 const struct esdhc_clk_fixup *clk_fixup;
Yinbo Zhub1f378a2018-08-23 16:48:32 +080084 u32 div_ratio;
yangbo luf4932cf2015-10-08 18:36:36 +080085};
86
87/**
88 * esdhc_read*_fixup - Fixup the value read from incompatible eSDHC register
89 * to make it compatible with SD spec.
90 *
91 * @host: pointer to sdhci_host
92 * @spec_reg: SD spec register address
93 * @value: 32bit eSDHC register value on spec_reg address
94 *
95 * In SD spec, there are 8/16/32/64 bits registers, while all of eSDHC
96 * registers are 32 bits. There are differences in register size, register
97 * address, register function, bit position and function between eSDHC spec
98 * and SD spec.
99 *
100 * Return a fixed up register value
101 */
102static u32 esdhc_readl_fixup(struct sdhci_host *host,
103 int spec_reg, u32 value)
Jerry Huang137ccd42012-03-08 11:25:02 +0800104{
yangbo luf4932cf2015-10-08 18:36:36 +0800105 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang8605e7a2016-02-16 21:08:26 +0800106 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
Jerry Huang137ccd42012-03-08 11:25:02 +0800107 u32 ret;
108
Jerry Huang137ccd42012-03-08 11:25:02 +0800109 /*
110 * The bit of ADMA flag in eSDHC is not compatible with standard
111 * SDHC register, so set fake flag SDHCI_CAN_DO_ADMA2 when ADMA is
112 * supported by eSDHC.
113 * And for many FSL eSDHC controller, the reset value of field
yangbo luf4932cf2015-10-08 18:36:36 +0800114 * SDHCI_CAN_DO_ADMA1 is 1, but some of them can't support ADMA,
Jerry Huang137ccd42012-03-08 11:25:02 +0800115 * only these vendor version is greater than 2.2/0x12 support ADMA.
Jerry Huang137ccd42012-03-08 11:25:02 +0800116 */
yangbo luf4932cf2015-10-08 18:36:36 +0800117 if ((spec_reg == SDHCI_CAPABILITIES) && (value & SDHCI_CAN_DO_ADMA1)) {
118 if (esdhc->vendor_ver > VENDOR_V_22) {
119 ret = value | SDHCI_CAN_DO_ADMA2;
120 return ret;
121 }
Jerry Huang137ccd42012-03-08 11:25:02 +0800122 }
Michael Walleb0921d52016-11-15 11:13:16 +0100123 /*
124 * The DAT[3:0] line signal levels and the CMD line signal level are
125 * not compatible with standard SDHC register. The line signal levels
126 * DAT[7:0] are at bits 31:24 and the command line signal level is at
127 * bit 23. All other bits are the same as in the standard SDHC
128 * register.
129 */
130 if (spec_reg == SDHCI_PRESENT_STATE) {
131 ret = value & 0x000fffff;
132 ret |= (value >> 4) & SDHCI_DATA_LVL_MASK;
133 ret |= (value << 1) & SDHCI_CMD_LVL;
134 return ret;
135 }
136
yangbo lu2f3110c2017-08-15 10:17:03 +0800137 /*
138 * DTS properties of mmc host are used to enable each speed mode
139 * according to soc and board capability. So clean up
140 * SDR50/SDR104/DDR50 support bits here.
141 */
142 if (spec_reg == SDHCI_CAPABILITIES_1) {
143 ret = value & ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_SDR104 |
144 SDHCI_SUPPORT_DDR50);
145 return ret;
146 }
147
Yangbo Lu1f1929f2019-03-11 02:16:51 +0000148 /*
149 * Some controllers have unreliable Data Line Active
150 * bit for commands with busy signal. This affects
151 * Command Inhibit (data) bit. Just ignore it since
152 * MMC core driver has already polled card status
153 * with CMD13 after any command with busy siganl.
154 */
155 if ((spec_reg == SDHCI_PRESENT_STATE) &&
156 (esdhc->quirk_ignore_data_inhibit == true)) {
157 ret = value & ~SDHCI_DATA_INHIBIT;
158 return ret;
159 }
160
yangbo luf4932cf2015-10-08 18:36:36 +0800161 ret = value;
Jerry Huang137ccd42012-03-08 11:25:02 +0800162 return ret;
163}
164
yangbo luf4932cf2015-10-08 18:36:36 +0800165static u16 esdhc_readw_fixup(struct sdhci_host *host,
166 int spec_reg, u32 value)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800167{
yangbo lu151ede42016-11-09 11:14:12 +0800168 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
169 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
Albert Herranz7657c3a2009-12-17 15:27:20 -0800170 u16 ret;
yangbo luf4932cf2015-10-08 18:36:36 +0800171 int shift = (spec_reg & 0x2) * 8;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800172
yangbo luf4932cf2015-10-08 18:36:36 +0800173 if (spec_reg == SDHCI_HOST_VERSION)
174 ret = value & 0xffff;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800175 else
yangbo luf4932cf2015-10-08 18:36:36 +0800176 ret = (value >> shift) & 0xffff;
yangbo lu151ede42016-11-09 11:14:12 +0800177 /* Workaround for T4240-R1.0-R2.0 eSDHC which has incorrect
178 * vendor version and spec version information.
179 */
180 if ((spec_reg == SDHCI_HOST_VERSION) &&
181 (esdhc->quirk_incorrect_hostver))
182 ret = (VENDOR_V_23 << SDHCI_VENDOR_VER_SHIFT) | SDHCI_SPEC_200;
Xu leie51cbc92011-09-09 20:05:46 +0800183 return ret;
184}
185
yangbo luf4932cf2015-10-08 18:36:36 +0800186static u8 esdhc_readb_fixup(struct sdhci_host *host,
187 int spec_reg, u32 value)
Xu leie51cbc92011-09-09 20:05:46 +0800188{
yangbo luf4932cf2015-10-08 18:36:36 +0800189 u8 ret;
190 u8 dma_bits;
191 int shift = (spec_reg & 0x3) * 8;
192
193 ret = (value >> shift) & 0xff;
Roy Zangba8c4dc2012-01-13 15:02:01 +0800194
195 /*
196 * "DMA select" locates at offset 0x28 in SD specification, but on
197 * P5020 or P3041, it locates at 0x29.
198 */
yangbo luf4932cf2015-10-08 18:36:36 +0800199 if (spec_reg == SDHCI_HOST_CONTROL) {
Roy Zangba8c4dc2012-01-13 15:02:01 +0800200 /* DMA select is 22,23 bits in Protocol Control Register */
yangbo luf4932cf2015-10-08 18:36:36 +0800201 dma_bits = (value >> 5) & SDHCI_CTRL_DMA_MASK;
Roy Zangba8c4dc2012-01-13 15:02:01 +0800202 /* fixup the result */
203 ret &= ~SDHCI_CTRL_DMA_MASK;
204 ret |= dma_bits;
205 }
yangbo luf4932cf2015-10-08 18:36:36 +0800206 return ret;
207}
208
209/**
210 * esdhc_write*_fixup - Fixup the SD spec register value so that it could be
211 * written into eSDHC register.
212 *
213 * @host: pointer to sdhci_host
214 * @spec_reg: SD spec register address
215 * @value: 8/16/32bit SD spec register value that would be written
216 * @old_value: 32bit eSDHC register value on spec_reg address
217 *
218 * In SD spec, there are 8/16/32/64 bits registers, while all of eSDHC
219 * registers are 32 bits. There are differences in register size, register
220 * address, register function, bit position and function between eSDHC spec
221 * and SD spec.
222 *
223 * Return a fixed up register value
224 */
225static u32 esdhc_writel_fixup(struct sdhci_host *host,
226 int spec_reg, u32 value, u32 old_value)
227{
228 u32 ret;
229
230 /*
231 * Enabling IRQSTATEN[BGESEN] is just to set IRQSTAT[BGE]
232 * when SYSCTL[RSTD] is set for some special operations.
233 * No any impact on other operation.
234 */
235 if (spec_reg == SDHCI_INT_ENABLE)
236 ret = value | SDHCI_INT_BLK_GAP;
237 else
238 ret = value;
Roy Zangba8c4dc2012-01-13 15:02:01 +0800239
Albert Herranz7657c3a2009-12-17 15:27:20 -0800240 return ret;
241}
242
yangbo luf4932cf2015-10-08 18:36:36 +0800243static u32 esdhc_writew_fixup(struct sdhci_host *host,
244 int spec_reg, u16 value, u32 old_value)
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800245{
yangbo luf4932cf2015-10-08 18:36:36 +0800246 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
247 int shift = (spec_reg & 0x2) * 8;
248 u32 ret;
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800249
yangbo luf4932cf2015-10-08 18:36:36 +0800250 switch (spec_reg) {
251 case SDHCI_TRANSFER_MODE:
252 /*
253 * Postpone this write, we must do it together with a
254 * command write that is down below. Return old value.
255 */
256 pltfm_host->xfer_mode_shadow = value;
257 return old_value;
258 case SDHCI_COMMAND:
259 ret = (value << 16) | pltfm_host->xfer_mode_shadow;
260 return ret;
261 }
262
263 ret = old_value & (~(0xffff << shift));
264 ret |= (value << shift);
265
266 if (spec_reg == SDHCI_BLOCK_SIZE) {
Albert Herranz7657c3a2009-12-17 15:27:20 -0800267 /*
268 * Two last DMA bits are reserved, and first one is used for
269 * non-standard blksz of 4096 bytes that we don't support
270 * yet. So clear the DMA boundary bits.
271 */
yangbo luf4932cf2015-10-08 18:36:36 +0800272 ret &= (~SDHCI_MAKE_BLKSZ(0x7, 0));
Albert Herranz7657c3a2009-12-17 15:27:20 -0800273 }
yangbo luf4932cf2015-10-08 18:36:36 +0800274 return ret;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800275}
276
yangbo luf4932cf2015-10-08 18:36:36 +0800277static u32 esdhc_writeb_fixup(struct sdhci_host *host,
278 int spec_reg, u8 value, u32 old_value)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800279{
yangbo luf4932cf2015-10-08 18:36:36 +0800280 u32 ret;
281 u32 dma_bits;
282 u8 tmp;
283 int shift = (spec_reg & 0x3) * 8;
284
Roy Zangba8c4dc2012-01-13 15:02:01 +0800285 /*
yangbo lu9e4703d2015-10-16 15:44:03 +0800286 * eSDHC doesn't have a standard power control register, so we do
287 * nothing here to avoid incorrect operation.
288 */
289 if (spec_reg == SDHCI_POWER_CONTROL)
290 return old_value;
291 /*
Roy Zangba8c4dc2012-01-13 15:02:01 +0800292 * "DMA select" location is offset 0x28 in SD specification, but on
293 * P5020 or P3041, it's located at 0x29.
294 */
yangbo luf4932cf2015-10-08 18:36:36 +0800295 if (spec_reg == SDHCI_HOST_CONTROL) {
Oded Gabbaydcaff042013-07-05 12:48:35 -0400296 /*
297 * If host control register is not standard, exit
298 * this function
299 */
300 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_HOST_CONTROL)
yangbo luf4932cf2015-10-08 18:36:36 +0800301 return old_value;
Oded Gabbaydcaff042013-07-05 12:48:35 -0400302
Roy Zangba8c4dc2012-01-13 15:02:01 +0800303 /* DMA select is 22,23 bits in Protocol Control Register */
yangbo luf4932cf2015-10-08 18:36:36 +0800304 dma_bits = (value & SDHCI_CTRL_DMA_MASK) << 5;
305 ret = (old_value & (~(SDHCI_CTRL_DMA_MASK << 5))) | dma_bits;
306 tmp = (value & (~SDHCI_CTRL_DMA_MASK)) |
307 (old_value & SDHCI_CTRL_DMA_MASK);
308 ret = (ret & (~0xff)) | tmp;
309
310 /* Prevent SDHCI core from writing reserved bits (e.g. HISPD) */
311 ret &= ~ESDHC_HOST_CONTROL_RES;
312 return ret;
Roy Zangba8c4dc2012-01-13 15:02:01 +0800313 }
314
yangbo luf4932cf2015-10-08 18:36:36 +0800315 ret = (old_value & (~(0xff << shift))) | (value << shift);
316 return ret;
317}
318
319static u32 esdhc_be_readl(struct sdhci_host *host, int reg)
320{
321 u32 ret;
322 u32 value;
323
yangbo lu2f3110c2017-08-15 10:17:03 +0800324 if (reg == SDHCI_CAPABILITIES_1)
325 value = ioread32be(host->ioaddr + ESDHC_CAPABILITIES_1);
326 else
327 value = ioread32be(host->ioaddr + reg);
328
yangbo luf4932cf2015-10-08 18:36:36 +0800329 ret = esdhc_readl_fixup(host, reg, value);
330
331 return ret;
332}
333
334static u32 esdhc_le_readl(struct sdhci_host *host, int reg)
335{
336 u32 ret;
337 u32 value;
338
yangbo lu2f3110c2017-08-15 10:17:03 +0800339 if (reg == SDHCI_CAPABILITIES_1)
340 value = ioread32(host->ioaddr + ESDHC_CAPABILITIES_1);
341 else
342 value = ioread32(host->ioaddr + reg);
343
yangbo luf4932cf2015-10-08 18:36:36 +0800344 ret = esdhc_readl_fixup(host, reg, value);
345
346 return ret;
347}
348
349static u16 esdhc_be_readw(struct sdhci_host *host, int reg)
350{
351 u16 ret;
352 u32 value;
353 int base = reg & ~0x3;
354
355 value = ioread32be(host->ioaddr + base);
356 ret = esdhc_readw_fixup(host, reg, value);
357 return ret;
358}
359
360static u16 esdhc_le_readw(struct sdhci_host *host, int reg)
361{
362 u16 ret;
363 u32 value;
364 int base = reg & ~0x3;
365
366 value = ioread32(host->ioaddr + base);
367 ret = esdhc_readw_fixup(host, reg, value);
368 return ret;
369}
370
371static u8 esdhc_be_readb(struct sdhci_host *host, int reg)
372{
373 u8 ret;
374 u32 value;
375 int base = reg & ~0x3;
376
377 value = ioread32be(host->ioaddr + base);
378 ret = esdhc_readb_fixup(host, reg, value);
379 return ret;
380}
381
382static u8 esdhc_le_readb(struct sdhci_host *host, int reg)
383{
384 u8 ret;
385 u32 value;
386 int base = reg & ~0x3;
387
388 value = ioread32(host->ioaddr + base);
389 ret = esdhc_readb_fixup(host, reg, value);
390 return ret;
391}
392
393static void esdhc_be_writel(struct sdhci_host *host, u32 val, int reg)
394{
395 u32 value;
396
397 value = esdhc_writel_fixup(host, reg, val, 0);
398 iowrite32be(value, host->ioaddr + reg);
399}
400
401static void esdhc_le_writel(struct sdhci_host *host, u32 val, int reg)
402{
403 u32 value;
404
405 value = esdhc_writel_fixup(host, reg, val, 0);
406 iowrite32(value, host->ioaddr + reg);
407}
408
409static void esdhc_be_writew(struct sdhci_host *host, u16 val, int reg)
410{
411 int base = reg & ~0x3;
412 u32 value;
413 u32 ret;
414
415 value = ioread32be(host->ioaddr + base);
416 ret = esdhc_writew_fixup(host, reg, val, value);
417 if (reg != SDHCI_TRANSFER_MODE)
418 iowrite32be(ret, host->ioaddr + base);
419}
420
421static void esdhc_le_writew(struct sdhci_host *host, u16 val, int reg)
422{
423 int base = reg & ~0x3;
424 u32 value;
425 u32 ret;
426
427 value = ioread32(host->ioaddr + base);
428 ret = esdhc_writew_fixup(host, reg, val, value);
429 if (reg != SDHCI_TRANSFER_MODE)
430 iowrite32(ret, host->ioaddr + base);
431}
432
433static void esdhc_be_writeb(struct sdhci_host *host, u8 val, int reg)
434{
435 int base = reg & ~0x3;
436 u32 value;
437 u32 ret;
438
439 value = ioread32be(host->ioaddr + base);
440 ret = esdhc_writeb_fixup(host, reg, val, value);
441 iowrite32be(ret, host->ioaddr + base);
442}
443
444static void esdhc_le_writeb(struct sdhci_host *host, u8 val, int reg)
445{
446 int base = reg & ~0x3;
447 u32 value;
448 u32 ret;
449
450 value = ioread32(host->ioaddr + base);
451 ret = esdhc_writeb_fixup(host, reg, val, value);
452 iowrite32(ret, host->ioaddr + base);
Albert Herranz7657c3a2009-12-17 15:27:20 -0800453}
454
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800455/*
456 * For Abort or Suspend after Stop at Block Gap, ignore the ADMA
457 * error(IRQSTAT[ADMAE]) if both Transfer Complete(IRQSTAT[TC])
458 * and Block Gap Event(IRQSTAT[BGE]) are also set.
459 * For Continue, apply soft reset for data(SYSCTL[RSTD]);
460 * and re-issue the entire read transaction from beginning.
461 */
yangbo luf4932cf2015-10-08 18:36:36 +0800462static void esdhc_of_adma_workaround(struct sdhci_host *host, u32 intmask)
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800463{
yangbo luf4932cf2015-10-08 18:36:36 +0800464 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang8605e7a2016-02-16 21:08:26 +0800465 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800466 bool applicable;
467 dma_addr_t dmastart;
468 dma_addr_t dmanow;
469
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800470 applicable = (intmask & SDHCI_INT_DATA_END) &&
yangbo luf4932cf2015-10-08 18:36:36 +0800471 (intmask & SDHCI_INT_BLK_GAP) &&
472 (esdhc->vendor_ver == VENDOR_V_23);
Haijun Zhanga4071fb2012-12-04 10:41:28 +0800473 if (!applicable)
474 return;
475
476 host->data->error = 0;
477 dmastart = sg_dma_address(host->data->sg);
478 dmanow = dmastart + host->data->bytes_xfered;
479 /*
480 * Force update to the next DMA block boundary.
481 */
482 dmanow = (dmanow & ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
483 SDHCI_DEFAULT_BOUNDARY_SIZE;
484 host->data->bytes_xfered = dmanow - dmastart;
485 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
486}
487
Wolfram Sang80872e22010-10-15 12:21:03 +0200488static int esdhc_of_enable_dma(struct sdhci_host *host)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800489{
yangbo luf4932cf2015-10-08 18:36:36 +0800490 u32 value;
Laurentiu Tudor5552d7a2018-07-04 14:34:20 +0300491 struct device *dev = mmc_dev(host->mmc);
492
493 if (of_device_is_compatible(dev->of_node, "fsl,ls1043a-esdhc") ||
494 of_device_is_compatible(dev->of_node, "fsl,ls1046a-esdhc"))
495 dma_set_mask_and_coherent(dev, DMA_BIT_MASK(40));
yangbo luf4932cf2015-10-08 18:36:36 +0800496
497 value = sdhci_readl(host, ESDHC_DMA_SYSCTL);
Russell King121bd082019-09-22 11:26:58 +0100498
499 if (of_dma_is_coherent(dev->of_node))
500 value |= ESDHC_DMA_SNOOP;
501 else
502 value &= ~ESDHC_DMA_SNOOP;
503
yangbo luf4932cf2015-10-08 18:36:36 +0800504 sdhci_writel(host, value, ESDHC_DMA_SYSCTL);
Albert Herranz7657c3a2009-12-17 15:27:20 -0800505 return 0;
506}
507
Wolfram Sang80872e22010-10-15 12:21:03 +0200508static unsigned int esdhc_of_get_max_clock(struct sdhci_host *host)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800509{
Shawn Guoe3071482011-07-20 17:13:36 -0400510 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
yangbo lu19c3a0e2017-04-20 16:14:40 +0800511 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
Albert Herranz7657c3a2009-12-17 15:27:20 -0800512
yangbo lu19c3a0e2017-04-20 16:14:40 +0800513 if (esdhc->peripheral_clock)
514 return esdhc->peripheral_clock;
515 else
516 return pltfm_host->clock;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800517}
518
Wolfram Sang80872e22010-10-15 12:21:03 +0200519static unsigned int esdhc_of_get_min_clock(struct sdhci_host *host)
Albert Herranz7657c3a2009-12-17 15:27:20 -0800520{
Shawn Guoe3071482011-07-20 17:13:36 -0400521 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
yangbo lu19c3a0e2017-04-20 16:14:40 +0800522 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
523 unsigned int clock;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800524
yangbo lu19c3a0e2017-04-20 16:14:40 +0800525 if (esdhc->peripheral_clock)
526 clock = esdhc->peripheral_clock;
527 else
528 clock = pltfm_host->clock;
529 return clock / 256 / 16;
Albert Herranz7657c3a2009-12-17 15:27:20 -0800530}
531
yangbo ludd3f6982017-09-21 16:43:31 +0800532static void esdhc_clock_enable(struct sdhci_host *host, bool enable)
533{
534 u32 val;
535 ktime_t timeout;
536
537 val = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
538
539 if (enable)
540 val |= ESDHC_CLOCK_SDCLKEN;
541 else
542 val &= ~ESDHC_CLOCK_SDCLKEN;
543
544 sdhci_writel(host, val, ESDHC_SYSTEM_CONTROL);
545
546 /* Wait max 20 ms */
547 timeout = ktime_add_ms(ktime_get(), 20);
548 val = ESDHC_CLOCK_STABLE;
Adrian Hunterea6d0272018-12-10 10:56:24 +0200549 while (1) {
550 bool timedout = ktime_after(ktime_get(), timeout);
551
552 if (sdhci_readl(host, ESDHC_PRSSTAT) & val)
553 break;
554 if (timedout) {
yangbo ludd3f6982017-09-21 16:43:31 +0800555 pr_err("%s: Internal clock never stabilised.\n",
556 mmc_hostname(host->mmc));
557 break;
558 }
559 udelay(10);
560 }
561}
562
Jerry Huangf060bc92012-02-14 14:05:37 +0800563static void esdhc_of_set_clock(struct sdhci_host *host, unsigned int clock)
564{
yangbo luf4932cf2015-10-08 18:36:36 +0800565 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang8605e7a2016-02-16 21:08:26 +0800566 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
Joakim Tjernlundbd455022015-04-20 23:12:13 +0200567 int pre_div = 1;
Dong Aishengd31fc002013-09-13 19:11:32 +0800568 int div = 1;
Yangbo Lu6079e632018-11-23 11:15:35 +0800569 int division;
yangbo lue145ac42017-04-26 10:45:49 +0800570 ktime_t timeout;
yinbo.zhu67fdfbd2018-06-25 16:46:24 +0800571 long fixup = 0;
Dong Aishengd31fc002013-09-13 19:11:32 +0800572 u32 temp;
573
Russell King1650d0c2014-04-25 12:58:50 +0100574 host->mmc->actual_clock = 0;
575
yangbo ludd3f6982017-09-21 16:43:31 +0800576 if (clock == 0) {
577 esdhc_clock_enable(host, false);
Russell King373073e2014-04-25 12:58:45 +0100578 return;
yangbo ludd3f6982017-09-21 16:43:31 +0800579 }
Dong Aishengd31fc002013-09-13 19:11:32 +0800580
Yangbo Lu77bd2f62015-08-11 10:53:34 +0800581 /* Workaround to start pre_div at 2 for VNN < VENDOR_V_23 */
yangbo luf4932cf2015-10-08 18:36:36 +0800582 if (esdhc->vendor_ver < VENDOR_V_23)
Yangbo Lu77bd2f62015-08-11 10:53:34 +0800583 pre_div = 2;
584
yinbo.zhu67fdfbd2018-06-25 16:46:24 +0800585 if (host->mmc->card && mmc_card_sd(host->mmc->card) &&
586 esdhc->clk_fixup && host->mmc->ios.timing == MMC_TIMING_LEGACY)
587 fixup = esdhc->clk_fixup->sd_dflt_max_clk;
588 else if (esdhc->clk_fixup)
589 fixup = esdhc->clk_fixup->max_clk[host->mmc->ios.timing];
yangbo lua627f022017-04-20 14:58:29 +0800590
yinbo.zhu67fdfbd2018-06-25 16:46:24 +0800591 if (fixup && clock > fixup)
592 clock = fixup;
Jerry Huangf060bc92012-02-14 14:05:37 +0800593
Dong Aishengd31fc002013-09-13 19:11:32 +0800594 temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
yangbo lue87d2db2016-12-26 17:46:30 +0800595 temp &= ~(ESDHC_CLOCK_SDCLKEN | ESDHC_CLOCK_IPGEN | ESDHC_CLOCK_HCKEN |
596 ESDHC_CLOCK_PEREN | ESDHC_CLOCK_MASK);
Dong Aishengd31fc002013-09-13 19:11:32 +0800597 sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
598
599 while (host->max_clk / pre_div / 16 > clock && pre_div < 256)
600 pre_div *= 2;
601
602 while (host->max_clk / pre_div / div > clock && div < 16)
603 div++;
604
Yangbo Lu6079e632018-11-23 11:15:35 +0800605 if (esdhc->quirk_limited_clk_division &&
606 clock == MMC_HS200_MAX_DTR &&
607 (host->mmc->ios.timing == MMC_TIMING_MMC_HS400 ||
608 host->flags & SDHCI_HS400_TUNING)) {
609 division = pre_div * div;
610 if (division <= 4) {
611 pre_div = 4;
612 div = 1;
613 } else if (division <= 8) {
614 pre_div = 4;
615 div = 2;
616 } else if (division <= 12) {
617 pre_div = 4;
618 div = 3;
619 } else {
Colin Ian Kingb11c36d2018-12-06 09:24:11 +0000620 pr_warn("%s: using unsupported clock division.\n",
Yangbo Lu6079e632018-11-23 11:15:35 +0800621 mmc_hostname(host->mmc));
622 }
623 }
624
Dong Aishengd31fc002013-09-13 19:11:32 +0800625 dev_dbg(mmc_dev(host->mmc), "desired SD clock: %d, actual: %d\n",
Dong Aishenge76b8552013-09-13 19:11:37 +0800626 clock, host->max_clk / pre_div / div);
Joakim Tjernlundbd455022015-04-20 23:12:13 +0200627 host->mmc->actual_clock = host->max_clk / pre_div / div;
Yinbo Zhub1f378a2018-08-23 16:48:32 +0800628 esdhc->div_ratio = pre_div * div;
Dong Aishengd31fc002013-09-13 19:11:32 +0800629 pre_div >>= 1;
630 div--;
631
632 temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
633 temp |= (ESDHC_CLOCK_IPGEN | ESDHC_CLOCK_HCKEN | ESDHC_CLOCK_PEREN
634 | (div << ESDHC_DIVIDER_SHIFT)
635 | (pre_div << ESDHC_PREDIV_SHIFT));
636 sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
yangbo lue87d2db2016-12-26 17:46:30 +0800637
Yangbo Lu54e08d92018-11-23 11:15:34 +0800638 if (host->mmc->ios.timing == MMC_TIMING_MMC_HS400 &&
639 clock == MMC_HS200_MAX_DTR) {
640 temp = sdhci_readl(host, ESDHC_TBCTL);
641 sdhci_writel(host, temp | ESDHC_HS400_MODE, ESDHC_TBCTL);
642 temp = sdhci_readl(host, ESDHC_SDCLKCTL);
643 sdhci_writel(host, temp | ESDHC_CMD_CLK_CTL, ESDHC_SDCLKCTL);
644 esdhc_clock_enable(host, true);
645
646 temp = sdhci_readl(host, ESDHC_DLLCFG0);
Yangbo Lu58d0bf82018-11-23 11:15:36 +0800647 temp |= ESDHC_DLL_ENABLE;
648 if (host->mmc->actual_clock == MMC_HS200_MAX_DTR)
649 temp |= ESDHC_DLL_FREQ_SEL;
Yangbo Lu54e08d92018-11-23 11:15:34 +0800650 sdhci_writel(host, temp, ESDHC_DLLCFG0);
651 temp = sdhci_readl(host, ESDHC_TBCTL);
652 sdhci_writel(host, temp | ESDHC_HS400_WNDW_ADJUST, ESDHC_TBCTL);
653
654 esdhc_clock_enable(host, false);
655 temp = sdhci_readl(host, ESDHC_DMA_SYSCTL);
656 temp |= ESDHC_FLUSH_ASYNC_FIFO;
657 sdhci_writel(host, temp, ESDHC_DMA_SYSCTL);
658 }
659
yangbo lue87d2db2016-12-26 17:46:30 +0800660 /* Wait max 20 ms */
yangbo lue145ac42017-04-26 10:45:49 +0800661 timeout = ktime_add_ms(ktime_get(), 20);
Adrian Hunterea6d0272018-12-10 10:56:24 +0200662 while (1) {
663 bool timedout = ktime_after(ktime_get(), timeout);
664
665 if (sdhci_readl(host, ESDHC_PRSSTAT) & ESDHC_CLOCK_STABLE)
666 break;
667 if (timedout) {
yangbo lue87d2db2016-12-26 17:46:30 +0800668 pr_err("%s: Internal clock never stabilised.\n",
669 mmc_hostname(host->mmc));
670 return;
671 }
yangbo lue145ac42017-04-26 10:45:49 +0800672 udelay(10);
yangbo lue87d2db2016-12-26 17:46:30 +0800673 }
674
Yangbo Lu54e08d92018-11-23 11:15:34 +0800675 temp = sdhci_readl(host, ESDHC_SYSTEM_CONTROL);
yangbo lue87d2db2016-12-26 17:46:30 +0800676 temp |= ESDHC_CLOCK_SDCLKEN;
677 sdhci_writel(host, temp, ESDHC_SYSTEM_CONTROL);
Jerry Huangf060bc92012-02-14 14:05:37 +0800678}
679
Russell King2317f562014-04-25 12:57:07 +0100680static void esdhc_pltfm_set_bus_width(struct sdhci_host *host, int width)
Oded Gabbay66b50a02013-06-27 12:00:05 -0400681{
682 u32 ctrl;
683
yangbo luf4932cf2015-10-08 18:36:36 +0800684 ctrl = sdhci_readl(host, ESDHC_PROCTL);
685 ctrl &= (~ESDHC_CTRL_BUSWIDTH_MASK);
Oded Gabbay66b50a02013-06-27 12:00:05 -0400686 switch (width) {
687 case MMC_BUS_WIDTH_8:
yangbo luf4932cf2015-10-08 18:36:36 +0800688 ctrl |= ESDHC_CTRL_8BITBUS;
Oded Gabbay66b50a02013-06-27 12:00:05 -0400689 break;
690
691 case MMC_BUS_WIDTH_4:
yangbo luf4932cf2015-10-08 18:36:36 +0800692 ctrl |= ESDHC_CTRL_4BITBUS;
Oded Gabbay66b50a02013-06-27 12:00:05 -0400693 break;
694
695 default:
Oded Gabbay66b50a02013-06-27 12:00:05 -0400696 break;
697 }
698
yangbo luf4932cf2015-10-08 18:36:36 +0800699 sdhci_writel(host, ctrl, ESDHC_PROCTL);
Oded Gabbay66b50a02013-06-27 12:00:05 -0400700}
701
Alessio Igor Bogani304f0a92014-12-09 09:40:38 +0100702static void esdhc_reset(struct sdhci_host *host, u8 mask)
703{
Yangbo Lu48e304c2018-11-23 11:15:37 +0800704 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
705 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
yinbo.zhuf2bc6002017-12-01 15:09:34 +0800706 u32 val;
707
Alessio Igor Bogani304f0a92014-12-09 09:40:38 +0100708 sdhci_reset(host, mask);
709
710 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
711 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
yinbo.zhuf2bc6002017-12-01 15:09:34 +0800712
Yinbo Zhu5dd195522019-03-11 02:16:44 +0000713 if (of_find_compatible_node(NULL, NULL, "fsl,p2020-esdhc"))
714 mdelay(5);
715
yinbo.zhuf2bc6002017-12-01 15:09:34 +0800716 if (mask & SDHCI_RESET_ALL) {
717 val = sdhci_readl(host, ESDHC_TBCTL);
718 val &= ~ESDHC_TB_EN;
719 sdhci_writel(host, val, ESDHC_TBCTL);
Yangbo Lu48e304c2018-11-23 11:15:37 +0800720
721 if (esdhc->quirk_unreliable_pulse_detection) {
722 val = sdhci_readl(host, ESDHC_DLLCFG1);
723 val &= ~ESDHC_DLL_PD_PULSE_STRETCH_SEL;
724 sdhci_writel(host, val, ESDHC_DLLCFG1);
725 }
yinbo.zhuf2bc6002017-12-01 15:09:34 +0800726 }
Alessio Igor Bogani304f0a92014-12-09 09:40:38 +0100727}
728
yangbo luea356452017-04-20 16:14:41 +0800729/* The SCFG, Supplemental Configuration Unit, provides SoC specific
730 * configuration and status registers for the device. There is a
731 * SDHC IO VSEL control register on SCFG for some platforms. It's
732 * used to support SDHC IO voltage switching.
733 */
734static const struct of_device_id scfg_device_ids[] = {
735 { .compatible = "fsl,t1040-scfg", },
736 { .compatible = "fsl,ls1012a-scfg", },
737 { .compatible = "fsl,ls1046a-scfg", },
738 {}
739};
740
741/* SDHC IO VSEL control register definition */
742#define SCFG_SDHCIOVSELCR 0x408
743#define SDHCIOVSELCR_TGLEN 0x80000000
744#define SDHCIOVSELCR_VSELVAL 0x60000000
745#define SDHCIOVSELCR_SDHC_VS 0x00000001
746
747static int esdhc_signal_voltage_switch(struct mmc_host *mmc,
748 struct mmc_ios *ios)
749{
750 struct sdhci_host *host = mmc_priv(mmc);
751 struct device_node *scfg_node;
752 void __iomem *scfg_base = NULL;
753 u32 sdhciovselcr;
754 u32 val;
755
756 /*
757 * Signal Voltage Switching is only applicable for Host Controllers
758 * v3.00 and above.
759 */
760 if (host->version < SDHCI_SPEC_300)
761 return 0;
762
763 val = sdhci_readl(host, ESDHC_PROCTL);
764
765 switch (ios->signal_voltage) {
766 case MMC_SIGNAL_VOLTAGE_330:
767 val &= ~ESDHC_VOLT_SEL;
768 sdhci_writel(host, val, ESDHC_PROCTL);
769 return 0;
770 case MMC_SIGNAL_VOLTAGE_180:
771 scfg_node = of_find_matching_node(NULL, scfg_device_ids);
772 if (scfg_node)
773 scfg_base = of_iomap(scfg_node, 0);
774 if (scfg_base) {
775 sdhciovselcr = SDHCIOVSELCR_TGLEN |
776 SDHCIOVSELCR_VSELVAL;
777 iowrite32be(sdhciovselcr,
778 scfg_base + SCFG_SDHCIOVSELCR);
779
780 val |= ESDHC_VOLT_SEL;
781 sdhci_writel(host, val, ESDHC_PROCTL);
782 mdelay(5);
783
784 sdhciovselcr = SDHCIOVSELCR_TGLEN |
785 SDHCIOVSELCR_SDHC_VS;
786 iowrite32be(sdhciovselcr,
787 scfg_base + SCFG_SDHCIOVSELCR);
788 iounmap(scfg_base);
789 } else {
790 val |= ESDHC_VOLT_SEL;
791 sdhci_writel(host, val, ESDHC_PROCTL);
792 }
793 return 0;
794 default:
795 return 0;
796 }
797}
798
Yinbo Zhub1f378a2018-08-23 16:48:32 +0800799static struct soc_device_attribute soc_fixup_tuning[] = {
800 { .family = "QorIQ T1040", .revision = "1.0", },
801 { .family = "QorIQ T2080", .revision = "1.0", },
802 { .family = "QorIQ T1023", .revision = "1.0", },
803 { .family = "QorIQ LS1021A", .revision = "1.0", },
804 { .family = "QorIQ LS1080A", .revision = "1.0", },
805 { .family = "QorIQ LS2080A", .revision = "1.0", },
806 { .family = "QorIQ LS1012A", .revision = "1.0", },
807 { .family = "QorIQ LS1043A", .revision = "1.*", },
808 { .family = "QorIQ LS1046A", .revision = "1.0", },
809 { },
810};
811
Yangbo Lu54e08d92018-11-23 11:15:34 +0800812static void esdhc_tuning_block_enable(struct sdhci_host *host, bool enable)
yangbo luba49cbd2017-04-20 16:14:42 +0800813{
yangbo luba49cbd2017-04-20 16:14:42 +0800814 u32 val;
815
yangbo luba49cbd2017-04-20 16:14:42 +0800816 esdhc_clock_enable(host, false);
Yangbo Lu54e08d92018-11-23 11:15:34 +0800817
yangbo luba49cbd2017-04-20 16:14:42 +0800818 val = sdhci_readl(host, ESDHC_DMA_SYSCTL);
819 val |= ESDHC_FLUSH_ASYNC_FIFO;
820 sdhci_writel(host, val, ESDHC_DMA_SYSCTL);
821
822 val = sdhci_readl(host, ESDHC_TBCTL);
Yangbo Lu54e08d92018-11-23 11:15:34 +0800823 if (enable)
824 val |= ESDHC_TB_EN;
825 else
826 val &= ~ESDHC_TB_EN;
yangbo luba49cbd2017-04-20 16:14:42 +0800827 sdhci_writel(host, val, ESDHC_TBCTL);
yangbo luba49cbd2017-04-20 16:14:42 +0800828
Yangbo Lu54e08d92018-11-23 11:15:34 +0800829 esdhc_clock_enable(host, true);
830}
831
832static int esdhc_execute_tuning(struct mmc_host *mmc, u32 opcode)
833{
834 struct sdhci_host *host = mmc_priv(mmc);
835 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
836 struct sdhci_esdhc *esdhc = sdhci_pltfm_priv(pltfm_host);
837 bool hs400_tuning;
Yangbo Lu04509d72019-06-14 16:29:53 +0800838 unsigned int clk;
Yangbo Lu54e08d92018-11-23 11:15:34 +0800839 u32 val;
840 int ret;
841
Yangbo Lu04509d72019-06-14 16:29:53 +0800842 /* For tuning mode, the sd clock divisor value
843 * must be larger than 3 according to reference manual.
844 */
845 clk = esdhc->peripheral_clock / 3;
846 if (host->clock > clk)
847 esdhc_of_set_clock(host, clk);
848
Yangbo Lu6079e632018-11-23 11:15:35 +0800849 if (esdhc->quirk_limited_clk_division &&
850 host->flags & SDHCI_HS400_TUNING)
851 esdhc_of_set_clock(host, host->clock);
852
Yangbo Lu54e08d92018-11-23 11:15:34 +0800853 esdhc_tuning_block_enable(host, true);
854
855 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
856 ret = sdhci_execute_tuning(mmc, opcode);
857
858 if (hs400_tuning) {
859 val = sdhci_readl(host, ESDHC_SDTIMNGCTL);
860 val |= ESDHC_FLW_CTL_BG;
861 sdhci_writel(host, val, ESDHC_SDTIMNGCTL);
862 }
863
Yinbo Zhub1f378a2018-08-23 16:48:32 +0800864 if (host->tuning_err == -EAGAIN && esdhc->quirk_fixup_tuning) {
865
866 /* program TBPTR[TB_WNDW_END_PTR] = 3*DIV_RATIO and
867 * program TBPTR[TB_WNDW_START_PTR] = 5*DIV_RATIO
868 */
869 val = sdhci_readl(host, ESDHC_TBPTR);
870 val = (val & ~((0x7f << 8) | 0x7f)) |
871 (3 * esdhc->div_ratio) | ((5 * esdhc->div_ratio) << 8);
872 sdhci_writel(host, val, ESDHC_TBPTR);
873
874 /* program the software tuning mode by setting
875 * TBCTL[TB_MODE]=2'h3
876 */
877 val = sdhci_readl(host, ESDHC_TBCTL);
878 val |= 0x3;
879 sdhci_writel(host, val, ESDHC_TBCTL);
880 sdhci_execute_tuning(mmc, opcode);
881 }
Yangbo Lu54e08d92018-11-23 11:15:34 +0800882 return ret;
883}
884
885static void esdhc_set_uhs_signaling(struct sdhci_host *host,
886 unsigned int timing)
887{
888 if (timing == MMC_TIMING_MMC_HS400)
889 esdhc_tuning_block_enable(host, true);
890 else
891 sdhci_set_uhs_signaling(host, timing);
yangbo luba49cbd2017-04-20 16:14:42 +0800892}
893
Yinbo Zhub214fe52019-03-11 02:16:47 +0000894static u32 esdhc_irq(struct sdhci_host *host, u32 intmask)
895{
896 u32 command;
897
898 if (of_find_compatible_node(NULL, NULL,
899 "fsl,p2020-esdhc")) {
900 command = SDHCI_GET_CMD(sdhci_readw(host,
901 SDHCI_COMMAND));
902 if (command == MMC_WRITE_MULTIPLE_BLOCK &&
903 sdhci_readw(host, SDHCI_BLOCK_COUNT) &&
904 intmask & SDHCI_INT_DATA_END) {
905 intmask &= ~SDHCI_INT_DATA_END;
906 sdhci_writel(host, SDHCI_INT_DATA_END,
907 SDHCI_INT_STATUS);
908 }
909 }
910 return intmask;
911}
912
Ulf Hansson9e48b332016-07-27 11:01:48 +0200913#ifdef CONFIG_PM_SLEEP
Russell King723f7922014-04-25 12:59:46 +0100914static u32 esdhc_proctl;
915static int esdhc_of_suspend(struct device *dev)
916{
917 struct sdhci_host *host = dev_get_drvdata(dev);
918
yangbo luf4932cf2015-10-08 18:36:36 +0800919 esdhc_proctl = sdhci_readl(host, SDHCI_HOST_CONTROL);
Russell King723f7922014-04-25 12:59:46 +0100920
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200921 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
922 mmc_retune_needed(host->mmc);
923
Russell King723f7922014-04-25 12:59:46 +0100924 return sdhci_suspend_host(host);
925}
926
Ulf Hansson06732b82014-05-23 10:36:44 +0200927static int esdhc_of_resume(struct device *dev)
Russell King723f7922014-04-25 12:59:46 +0100928{
929 struct sdhci_host *host = dev_get_drvdata(dev);
930 int ret = sdhci_resume_host(host);
931
932 if (ret == 0) {
933 /* Isn't this already done by sdhci_resume_host() ? --rmk */
934 esdhc_of_enable_dma(host);
yangbo luf4932cf2015-10-08 18:36:36 +0800935 sdhci_writel(host, esdhc_proctl, SDHCI_HOST_CONTROL);
Russell King723f7922014-04-25 12:59:46 +0100936 }
Russell King723f7922014-04-25 12:59:46 +0100937 return ret;
938}
Russell King723f7922014-04-25 12:59:46 +0100939#endif
940
Ulf Hansson9e48b332016-07-27 11:01:48 +0200941static SIMPLE_DEV_PM_OPS(esdhc_of_dev_pm_ops,
942 esdhc_of_suspend,
943 esdhc_of_resume);
944
yangbo luf4932cf2015-10-08 18:36:36 +0800945static const struct sdhci_ops sdhci_esdhc_be_ops = {
946 .read_l = esdhc_be_readl,
947 .read_w = esdhc_be_readw,
948 .read_b = esdhc_be_readb,
949 .write_l = esdhc_be_writel,
950 .write_w = esdhc_be_writew,
951 .write_b = esdhc_be_writeb,
952 .set_clock = esdhc_of_set_clock,
953 .enable_dma = esdhc_of_enable_dma,
954 .get_max_clock = esdhc_of_get_max_clock,
955 .get_min_clock = esdhc_of_get_min_clock,
956 .adma_workaround = esdhc_of_adma_workaround,
957 .set_bus_width = esdhc_pltfm_set_bus_width,
958 .reset = esdhc_reset,
Yangbo Lu54e08d92018-11-23 11:15:34 +0800959 .set_uhs_signaling = esdhc_set_uhs_signaling,
Yinbo Zhub214fe52019-03-11 02:16:47 +0000960 .irq = esdhc_irq,
yangbo luf4932cf2015-10-08 18:36:36 +0800961};
962
963static const struct sdhci_ops sdhci_esdhc_le_ops = {
964 .read_l = esdhc_le_readl,
965 .read_w = esdhc_le_readw,
966 .read_b = esdhc_le_readb,
967 .write_l = esdhc_le_writel,
968 .write_w = esdhc_le_writew,
969 .write_b = esdhc_le_writeb,
970 .set_clock = esdhc_of_set_clock,
971 .enable_dma = esdhc_of_enable_dma,
972 .get_max_clock = esdhc_of_get_max_clock,
973 .get_min_clock = esdhc_of_get_min_clock,
974 .adma_workaround = esdhc_of_adma_workaround,
975 .set_bus_width = esdhc_pltfm_set_bus_width,
976 .reset = esdhc_reset,
Yangbo Lu54e08d92018-11-23 11:15:34 +0800977 .set_uhs_signaling = esdhc_set_uhs_signaling,
Yinbo Zhub214fe52019-03-11 02:16:47 +0000978 .irq = esdhc_irq,
yangbo luf4932cf2015-10-08 18:36:36 +0800979};
980
981static const struct sdhci_pltfm_data sdhci_esdhc_be_pdata = {
yangbo lue9acc772016-12-26 17:40:44 +0800982 .quirks = ESDHC_DEFAULT_QUIRKS |
983#ifdef CONFIG_PPC
984 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
985#endif
986 SDHCI_QUIRK_NO_CARD_NO_RESET |
987 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
yangbo luf4932cf2015-10-08 18:36:36 +0800988 .ops = &sdhci_esdhc_be_ops,
Albert Herranz7657c3a2009-12-17 15:27:20 -0800989};
Shawn Guo38576af2011-05-27 23:48:14 +0800990
yangbo luf4932cf2015-10-08 18:36:36 +0800991static const struct sdhci_pltfm_data sdhci_esdhc_le_pdata = {
yangbo lue9acc772016-12-26 17:40:44 +0800992 .quirks = ESDHC_DEFAULT_QUIRKS |
993 SDHCI_QUIRK_NO_CARD_NO_RESET |
994 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
yangbo luf4932cf2015-10-08 18:36:36 +0800995 .ops = &sdhci_esdhc_le_ops,
996};
997
yangbo lu151ede42016-11-09 11:14:12 +0800998static struct soc_device_attribute soc_incorrect_hostver[] = {
999 { .family = "QorIQ T4240", .revision = "1.0", },
1000 { .family = "QorIQ T4240", .revision = "2.0", },
1001 { },
1002};
1003
Yangbo Lu6079e632018-11-23 11:15:35 +08001004static struct soc_device_attribute soc_fixup_sdhc_clkdivs[] = {
1005 { .family = "QorIQ LX2160A", .revision = "1.0", },
Yinbo Zhu8e9a6912019-03-07 02:32:44 +00001006 { .family = "QorIQ LX2160A", .revision = "2.0", },
Yinbo Zhu5f3ad192019-08-14 15:26:49 +08001007 { .family = "QorIQ LS1028A", .revision = "1.0", },
Yangbo Lu6079e632018-11-23 11:15:35 +08001008 { },
1009};
1010
Yangbo Lu48e304c2018-11-23 11:15:37 +08001011static struct soc_device_attribute soc_unreliable_pulse_detection[] = {
1012 { .family = "QorIQ LX2160A", .revision = "1.0", },
1013 { },
1014};
1015
yangbo luf4932cf2015-10-08 18:36:36 +08001016static void esdhc_init(struct platform_device *pdev, struct sdhci_host *host)
1017{
yinbo.zhu67fdfbd2018-06-25 16:46:24 +08001018 const struct of_device_id *match;
yangbo luf4932cf2015-10-08 18:36:36 +08001019 struct sdhci_pltfm_host *pltfm_host;
1020 struct sdhci_esdhc *esdhc;
yangbo lu19c3a0e2017-04-20 16:14:40 +08001021 struct device_node *np;
1022 struct clk *clk;
1023 u32 val;
yangbo luf4932cf2015-10-08 18:36:36 +08001024 u16 host_ver;
1025
1026 pltfm_host = sdhci_priv(host);
Jisheng Zhang8605e7a2016-02-16 21:08:26 +08001027 esdhc = sdhci_pltfm_priv(pltfm_host);
yangbo luf4932cf2015-10-08 18:36:36 +08001028
1029 host_ver = sdhci_readw(host, SDHCI_HOST_VERSION);
1030 esdhc->vendor_ver = (host_ver & SDHCI_VENDOR_VER_MASK) >>
1031 SDHCI_VENDOR_VER_SHIFT;
1032 esdhc->spec_ver = host_ver & SDHCI_SPEC_VER_MASK;
yangbo lu151ede42016-11-09 11:14:12 +08001033 if (soc_device_match(soc_incorrect_hostver))
1034 esdhc->quirk_incorrect_hostver = true;
1035 else
1036 esdhc->quirk_incorrect_hostver = false;
yangbo lu19c3a0e2017-04-20 16:14:40 +08001037
Yangbo Lu6079e632018-11-23 11:15:35 +08001038 if (soc_device_match(soc_fixup_sdhc_clkdivs))
1039 esdhc->quirk_limited_clk_division = true;
1040 else
1041 esdhc->quirk_limited_clk_division = false;
1042
Yangbo Lu48e304c2018-11-23 11:15:37 +08001043 if (soc_device_match(soc_unreliable_pulse_detection))
1044 esdhc->quirk_unreliable_pulse_detection = true;
1045 else
1046 esdhc->quirk_unreliable_pulse_detection = false;
1047
yinbo.zhu67fdfbd2018-06-25 16:46:24 +08001048 match = of_match_node(sdhci_esdhc_of_match, pdev->dev.of_node);
1049 if (match)
1050 esdhc->clk_fixup = match->data;
yangbo lu19c3a0e2017-04-20 16:14:40 +08001051 np = pdev->dev.of_node;
1052 clk = of_clk_get(np, 0);
1053 if (!IS_ERR(clk)) {
1054 /*
1055 * esdhc->peripheral_clock would be assigned with a value
1056 * which is eSDHC base clock when use periperal clock.
Yangbo Lu791463b2019-06-14 16:29:54 +08001057 * For some platforms, the clock value got by common clk
1058 * API is peripheral clock while the eSDHC base clock is
1059 * 1/2 peripheral clock.
yangbo lu19c3a0e2017-04-20 16:14:40 +08001060 */
Yangbo Lu791463b2019-06-14 16:29:54 +08001061 if (of_device_is_compatible(np, "fsl,ls1046a-esdhc") ||
1062 of_device_is_compatible(np, "fsl,ls1028a-esdhc"))
yangbo lu19c3a0e2017-04-20 16:14:40 +08001063 esdhc->peripheral_clock = clk_get_rate(clk) / 2;
1064 else
1065 esdhc->peripheral_clock = clk_get_rate(clk);
1066
1067 clk_put(clk);
1068 }
1069
1070 if (esdhc->peripheral_clock) {
1071 esdhc_clock_enable(host, false);
1072 val = sdhci_readl(host, ESDHC_DMA_SYSCTL);
1073 val |= ESDHC_PERIPHERAL_CLK_SEL;
1074 sdhci_writel(host, val, ESDHC_DMA_SYSCTL);
1075 esdhc_clock_enable(host, true);
1076 }
yangbo luf4932cf2015-10-08 18:36:36 +08001077}
1078
Yangbo Lu54e08d92018-11-23 11:15:34 +08001079static int esdhc_hs400_prepare_ddr(struct mmc_host *mmc)
1080{
1081 esdhc_tuning_block_enable(mmc_priv(mmc), false);
1082 return 0;
1083}
1084
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001085static int sdhci_esdhc_probe(struct platform_device *pdev)
Shawn Guo38576af2011-05-27 23:48:14 +08001086{
Oded Gabbay66b50a02013-06-27 12:00:05 -04001087 struct sdhci_host *host;
Oded Gabbaydcaff042013-07-05 12:48:35 -04001088 struct device_node *np;
yangbo lu1ef5e492015-11-25 10:05:37 +08001089 struct sdhci_pltfm_host *pltfm_host;
1090 struct sdhci_esdhc *esdhc;
Oded Gabbay66b50a02013-06-27 12:00:05 -04001091 int ret;
1092
yangbo luf4932cf2015-10-08 18:36:36 +08001093 np = pdev->dev.of_node;
1094
Julia Lawall150d4242016-08-05 10:56:46 +02001095 if (of_property_read_bool(np, "little-endian"))
Jisheng Zhang8605e7a2016-02-16 21:08:26 +08001096 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_le_pdata,
1097 sizeof(struct sdhci_esdhc));
yangbo luf4932cf2015-10-08 18:36:36 +08001098 else
Jisheng Zhang8605e7a2016-02-16 21:08:26 +08001099 host = sdhci_pltfm_init(pdev, &sdhci_esdhc_be_pdata,
1100 sizeof(struct sdhci_esdhc));
yangbo luf4932cf2015-10-08 18:36:36 +08001101
Oded Gabbay66b50a02013-06-27 12:00:05 -04001102 if (IS_ERR(host))
1103 return PTR_ERR(host);
1104
yangbo luea356452017-04-20 16:14:41 +08001105 host->mmc_host_ops.start_signal_voltage_switch =
1106 esdhc_signal_voltage_switch;
yangbo luba49cbd2017-04-20 16:14:42 +08001107 host->mmc_host_ops.execute_tuning = esdhc_execute_tuning;
Yangbo Lu54e08d92018-11-23 11:15:34 +08001108 host->mmc_host_ops.hs400_prepare_ddr = esdhc_hs400_prepare_ddr;
yangbo lu6b236f32017-04-20 16:14:44 +08001109 host->tuning_delay = 1;
yangbo luea356452017-04-20 16:14:41 +08001110
yangbo luf4932cf2015-10-08 18:36:36 +08001111 esdhc_init(pdev, host);
1112
Oded Gabbay66b50a02013-06-27 12:00:05 -04001113 sdhci_get_of_property(pdev);
1114
yangbo lu1ef5e492015-11-25 10:05:37 +08001115 pltfm_host = sdhci_priv(host);
Jisheng Zhang8605e7a2016-02-16 21:08:26 +08001116 esdhc = sdhci_pltfm_priv(pltfm_host);
Yinbo Zhub1f378a2018-08-23 16:48:32 +08001117 if (soc_device_match(soc_fixup_tuning))
1118 esdhc->quirk_fixup_tuning = true;
1119 else
1120 esdhc->quirk_fixup_tuning = false;
1121
yangbo lu1ef5e492015-11-25 10:05:37 +08001122 if (esdhc->vendor_ver == VENDOR_V_22)
1123 host->quirks2 |= SDHCI_QUIRK2_HOST_NO_CMD23;
1124
1125 if (esdhc->vendor_ver > VENDOR_V_22)
1126 host->quirks &= ~SDHCI_QUIRK_NO_BUSY_IRQ;
1127
Yinbo Zhu05cb6b22019-03-11 02:16:40 +00001128 if (of_find_compatible_node(NULL, NULL, "fsl,p2020-esdhc")) {
Yinbo Zhua46e4272019-03-11 02:16:36 +00001129 host->quirks2 |= SDHCI_QUIRK_RESET_AFTER_REQUEST;
Yinbo Zhu05cb6b22019-03-11 02:16:40 +00001130 host->quirks2 |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
1131 }
Yinbo Zhua46e4272019-03-11 02:16:36 +00001132
Yangbo Lu74fd5e32015-06-01 13:47:12 +08001133 if (of_device_is_compatible(np, "fsl,p5040-esdhc") ||
1134 of_device_is_compatible(np, "fsl,p5020-esdhc") ||
1135 of_device_is_compatible(np, "fsl,p4080-esdhc") ||
1136 of_device_is_compatible(np, "fsl,p1020-esdhc") ||
yangbo lue9acc772016-12-26 17:40:44 +08001137 of_device_is_compatible(np, "fsl,t1040-esdhc"))
Yangbo Lu74fd5e32015-06-01 13:47:12 +08001138 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
1139
yangbo lua22950c2015-10-08 18:36:57 +08001140 if (of_device_is_compatible(np, "fsl,ls1021a-esdhc"))
1141 host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
1142
Yangbo Lu1f1929f2019-03-11 02:16:51 +00001143 esdhc->quirk_ignore_data_inhibit = false;
Oded Gabbaydcaff042013-07-05 12:48:35 -04001144 if (of_device_is_compatible(np, "fsl,p2020-esdhc")) {
1145 /*
1146 * Freescale messed up with P2020 as it has a non-standard
1147 * host control register
1148 */
1149 host->quirks2 |= SDHCI_QUIRK2_BROKEN_HOST_CONTROL;
Yangbo Lu1f1929f2019-03-11 02:16:51 +00001150 esdhc->quirk_ignore_data_inhibit = true;
Oded Gabbaydcaff042013-07-05 12:48:35 -04001151 }
1152
Oded Gabbay66b50a02013-06-27 12:00:05 -04001153 /* call to generic mmc_of_parse to support additional capabilities */
Ulf Hanssonf0991402014-12-18 10:41:41 +01001154 ret = mmc_of_parse(host->mmc);
1155 if (ret)
1156 goto err;
1157
Haijun Zhang490104a2013-08-26 09:19:24 +08001158 mmc_of_parse_voltage(np, &host->ocr_mask);
Oded Gabbay66b50a02013-06-27 12:00:05 -04001159
1160 ret = sdhci_add_host(host);
1161 if (ret)
Ulf Hanssonf0991402014-12-18 10:41:41 +01001162 goto err;
Oded Gabbay66b50a02013-06-27 12:00:05 -04001163
Ulf Hanssonf0991402014-12-18 10:41:41 +01001164 return 0;
1165 err:
1166 sdhci_pltfm_free(pdev);
Oded Gabbay66b50a02013-06-27 12:00:05 -04001167 return ret;
Shawn Guo38576af2011-05-27 23:48:14 +08001168}
1169
Shawn Guo38576af2011-05-27 23:48:14 +08001170static struct platform_driver sdhci_esdhc_driver = {
1171 .driver = {
1172 .name = "sdhci-esdhc",
Shawn Guo38576af2011-05-27 23:48:14 +08001173 .of_match_table = sdhci_esdhc_of_match,
Ulf Hansson9e48b332016-07-27 11:01:48 +02001174 .pm = &esdhc_of_dev_pm_ops,
Shawn Guo38576af2011-05-27 23:48:14 +08001175 },
1176 .probe = sdhci_esdhc_probe,
Kevin Haocaebcae2015-02-27 15:47:31 +08001177 .remove = sdhci_pltfm_unregister,
Shawn Guo38576af2011-05-27 23:48:14 +08001178};
1179
Axel Lind1f81a62011-11-26 12:55:43 +08001180module_platform_driver(sdhci_esdhc_driver);
Shawn Guo38576af2011-05-27 23:48:14 +08001181
1182MODULE_DESCRIPTION("SDHCI OF driver for Freescale MPC eSDHC");
1183MODULE_AUTHOR("Xiaobo Xie <X.Xie@freescale.com>, "
1184 "Anton Vorontsov <avorontsov@ru.mvista.com>");
1185MODULE_LICENSE("GPL v2");