blob: 97aaf1e4ec3887d4eb91325b1363dcf3cb282716 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasute94cad92018-04-08 15:22:58 +02002/*
3 * Copyright (C) 2018 Marek Vasut <marek.vasut@gmail.com>
Marek Vasute94cad92018-04-08 15:22:58 +02004 */
5
Marek Vasutd2661d82020-04-04 12:45:04 +02006#include <bouncebuf.h>
Marek Vasute94cad92018-04-08 15:22:58 +02007#include <clk.h>
8#include <fdtdec.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Marek Vasute94cad92018-04-08 15:22:58 +020011#include <mmc.h>
12#include <dm.h>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Simon Glass336d4612020-02-03 07:36:16 -070014#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060015#include <linux/bitops.h>
Marek Vasute94cad92018-04-08 15:22:58 +020016#include <linux/compat.h>
Simon Glassc05ed002020-05-10 11:40:11 -060017#include <linux/delay.h>
Marek Vasute94cad92018-04-08 15:22:58 +020018#include <linux/dma-direction.h>
19#include <linux/io.h>
20#include <linux/sizes.h>
21#include <power/regulator.h>
Paul Barker93c811b2023-10-16 10:25:38 +010022#include <reset.h>
Marek Vasute94cad92018-04-08 15:22:58 +020023#include <asm/unaligned.h>
Marek Vasutcb0b6b02018-04-13 23:51:33 +020024#include "tmio-common.h"
Marek Vasute94cad92018-04-08 15:22:58 +020025
Marek Vasut50aa1d92018-06-13 08:02:55 +020026#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
27 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
28 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
Marek Vasutf63968b2018-04-08 19:09:17 +020029
30/* SCC registers */
31#define RENESAS_SDHI_SCC_DTCNTL 0x800
Marek Vasut1bac2b62019-05-19 02:33:06 +020032#define RENESAS_SDHI_SCC_DTCNTL_TAPEN BIT(0)
33#define RENESAS_SDHI_SCC_DTCNTL_TAPNUM_SHIFT 16
34#define RENESAS_SDHI_SCC_DTCNTL_TAPNUM_MASK 0xff
Marek Vasutf63968b2018-04-08 19:09:17 +020035#define RENESAS_SDHI_SCC_TAPSET 0x804
36#define RENESAS_SDHI_SCC_DT2FF 0x808
37#define RENESAS_SDHI_SCC_CKSEL 0x80c
Marek Vasut1bac2b62019-05-19 02:33:06 +020038#define RENESAS_SDHI_SCC_CKSEL_DTSEL BIT(0)
39#define RENESAS_SDHI_SCC_RVSCNTL 0x810
40#define RENESAS_SDHI_SCC_RVSCNTL_RVSEN BIT(0)
Marek Vasutf63968b2018-04-08 19:09:17 +020041#define RENESAS_SDHI_SCC_RVSREQ 0x814
Marek Vasut1bac2b62019-05-19 02:33:06 +020042#define RENESAS_SDHI_SCC_RVSREQ_RVSERR BIT(2)
Marek Vasut69000662019-11-23 13:36:23 +010043#define RENESAS_SDHI_SCC_RVSREQ_REQTAPUP BIT(1)
44#define RENESAS_SDHI_SCC_RVSREQ_REQTAPDOWN BIT(0)
Marek Vasutf63968b2018-04-08 19:09:17 +020045#define RENESAS_SDHI_SCC_SMPCMP 0x818
Marek Vasut69000662019-11-23 13:36:23 +010046#define RENESAS_SDHI_SCC_SMPCMP_CMD_ERR (BIT(24) | BIT(8))
47#define RENESAS_SDHI_SCC_SMPCMP_CMD_REQUP BIT(24)
48#define RENESAS_SDHI_SCC_SMPCMP_CMD_REQDOWN BIT(8)
Marek Vasut1bac2b62019-05-19 02:33:06 +020049#define RENESAS_SDHI_SCC_TMPPORT2 0x81c
50#define RENESAS_SDHI_SCC_TMPPORT2_HS400EN BIT(31)
51#define RENESAS_SDHI_SCC_TMPPORT2_HS400OSEL BIT(4)
Marek Vasutb5900a52019-05-19 03:47:07 +020052#define RENESAS_SDHI_SCC_TMPPORT3 0x828
53#define RENESAS_SDHI_SCC_TMPPORT3_OFFSET_0 3
54#define RENESAS_SDHI_SCC_TMPPORT3_OFFSET_1 2
55#define RENESAS_SDHI_SCC_TMPPORT3_OFFSET_2 1
56#define RENESAS_SDHI_SCC_TMPPORT3_OFFSET_3 0
57#define RENESAS_SDHI_SCC_TMPPORT3_OFFSET_MASK 0x3
58#define RENESAS_SDHI_SCC_TMPPORT4 0x82c
59#define RENESAS_SDHI_SCC_TMPPORT4_DLL_ACC_START BIT(0)
60#define RENESAS_SDHI_SCC_TMPPORT5 0x830
61#define RENESAS_SDHI_SCC_TMPPORT5_DLL_RW_SEL_R BIT(8)
62#define RENESAS_SDHI_SCC_TMPPORT5_DLL_RW_SEL_W (0 << 8)
63#define RENESAS_SDHI_SCC_TMPPORT5_DLL_ADR_MASK 0x3F
64#define RENESAS_SDHI_SCC_TMPPORT6 0x834
65#define RENESAS_SDHI_SCC_TMPPORT7 0x838
66#define RENESAS_SDHI_SCC_TMPPORT_DISABLE_WP_CODE 0xa5000000
67#define RENESAS_SDHI_SCC_TMPPORT_CALIB_CODE_MASK 0x1f
68#define RENESAS_SDHI_SCC_TMPPORT_MANUAL_MODE BIT(7)
Marek Vasutf63968b2018-04-08 19:09:17 +020069
70#define RENESAS_SDHI_MAX_TAP 3
71
Marek Vasut56b0bb92019-11-23 13:36:25 +010072#define CALIB_TABLE_MAX (RENESAS_SDHI_SCC_TMPPORT_CALIB_CODE_MASK + 1)
73
Hai Pham6d7d4c42023-01-26 21:05:56 +010074static const u8 r8a7796_rev13_calib_table[2][CALIB_TABLE_MAX] = {
Hai Phamaf95db52023-01-26 21:05:57 +010075 { 3, 3, 3, 3, 3, 3, 3, 4, 4, 5, 6, 7, 8, 9, 10, 15,
76 16, 16, 16, 16, 16, 16, 17, 18, 18, 19, 20, 21, 22, 23, 24, 25 },
77 { 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 7, 8, 11,
78 12, 17, 18, 18, 18, 18, 18, 18, 18, 19, 20, 21, 22, 23, 25, 25 }
Marek Vasut56b0bb92019-11-23 13:36:25 +010079};
80
81static const u8 r8a77965_calib_table[2][CALIB_TABLE_MAX] = {
Hai Phamaf95db52023-01-26 21:05:57 +010082 { 1, 2, 6, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 15, 15, 16,
83 17, 18, 19, 20, 21, 22, 23, 24, 25, 25, 26, 27, 28, 29, 30, 31 },
84 { 2, 3, 4, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17,
85 17, 17, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 31, 31, 31 }
Marek Vasut56b0bb92019-11-23 13:36:25 +010086};
87
88static const u8 r8a77990_calib_table[2][CALIB_TABLE_MAX] = {
89 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
90 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
Hai Phamaf95db52023-01-26 21:05:57 +010091 { 0, 0, 0, 1, 2, 3, 3, 4, 4, 4, 5, 5, 6, 8, 9, 10,
92 11, 12, 13, 15, 16, 17, 17, 18, 18, 19, 20, 22, 24, 25, 26, 26 }
Marek Vasut56b0bb92019-11-23 13:36:25 +010093};
94
95static int rmobile_is_gen3_mmc0(struct tmio_sd_priv *priv)
96{
97 /* On R-Car Gen3, MMC0 is at 0xee140000 */
98 return (uintptr_t)(priv->regbase) == 0xee140000;
99}
100
Marek Vasutb5900a52019-05-19 03:47:07 +0200101static u32 sd_scc_tmpport_read32(struct tmio_sd_priv *priv, u32 addr)
102{
103 /* read mode */
104 tmio_sd_writel(priv, RENESAS_SDHI_SCC_TMPPORT5_DLL_RW_SEL_R |
105 (RENESAS_SDHI_SCC_TMPPORT5_DLL_ADR_MASK & addr),
106 RENESAS_SDHI_SCC_TMPPORT5);
107
108 /* access start and stop */
109 tmio_sd_writel(priv, RENESAS_SDHI_SCC_TMPPORT4_DLL_ACC_START,
110 RENESAS_SDHI_SCC_TMPPORT4);
111 tmio_sd_writel(priv, 0, RENESAS_SDHI_SCC_TMPPORT4);
112
113 return tmio_sd_readl(priv, RENESAS_SDHI_SCC_TMPPORT7);
114}
115
116static void sd_scc_tmpport_write32(struct tmio_sd_priv *priv, u32 addr, u32 val)
117{
118 /* write mode */
119 tmio_sd_writel(priv, RENESAS_SDHI_SCC_TMPPORT5_DLL_RW_SEL_W |
120 (RENESAS_SDHI_SCC_TMPPORT5_DLL_ADR_MASK & addr),
121 RENESAS_SDHI_SCC_TMPPORT5);
122 tmio_sd_writel(priv, val, RENESAS_SDHI_SCC_TMPPORT6);
123
124 /* access start and stop */
125 tmio_sd_writel(priv, RENESAS_SDHI_SCC_TMPPORT4_DLL_ACC_START,
126 RENESAS_SDHI_SCC_TMPPORT4);
127 tmio_sd_writel(priv, 0, RENESAS_SDHI_SCC_TMPPORT4);
128}
129
Marek Vasut69000662019-11-23 13:36:23 +0100130static bool renesas_sdhi_check_scc_error(struct udevice *dev)
131{
132 struct tmio_sd_priv *priv = dev_get_priv(dev);
133 struct mmc *mmc = mmc_get_mmc_dev(dev);
134 unsigned long new_tap = priv->tap_set;
Marek Vasut1bdcb832019-11-23 13:36:24 +0100135 unsigned long error_tap = priv->tap_set;
Marek Vasut69000662019-11-23 13:36:23 +0100136 u32 reg, smpcmp;
137
138 if ((priv->caps & TMIO_SD_CAP_RCAR_UHS) &&
139 (mmc->selected_mode != UHS_SDR104) &&
140 (mmc->selected_mode != MMC_HS_200) &&
141 (mmc->selected_mode != MMC_HS_400) &&
142 (priv->nrtaps != 4))
143 return false;
144
145 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSCNTL);
146 /* Handle automatic tuning correction */
147 if (reg & RENESAS_SDHI_SCC_RVSCNTL_RVSEN) {
148 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSREQ);
149 if (reg & RENESAS_SDHI_SCC_RVSREQ_RVSERR) {
150 tmio_sd_writel(priv, 0, RENESAS_SDHI_SCC_RVSREQ);
151 return true;
152 }
153
154 return false;
155 }
156
157 /* Handle manual tuning correction */
158 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSREQ);
159 if (!reg) /* No error */
160 return false;
161
162 tmio_sd_writel(priv, 0, RENESAS_SDHI_SCC_RVSREQ);
163
164 if (mmc->selected_mode == MMC_HS_400) {
165 /*
166 * Correction Error Status contains CMD and DAT signal status.
167 * In HS400, DAT signal based on DS signal, not CLK.
168 * Therefore, use only CMD status.
169 */
170 smpcmp = tmio_sd_readl(priv, RENESAS_SDHI_SCC_SMPCMP) &
171 RENESAS_SDHI_SCC_SMPCMP_CMD_ERR;
172
173 switch (smpcmp) {
174 case 0:
175 return false; /* No error in CMD signal */
176 case RENESAS_SDHI_SCC_SMPCMP_CMD_REQUP:
177 new_tap = (priv->tap_set +
178 priv->tap_num + 1) % priv->tap_num;
Marek Vasut1bdcb832019-11-23 13:36:24 +0100179 error_tap = (priv->tap_set +
180 priv->tap_num - 1) % priv->tap_num;
Marek Vasut69000662019-11-23 13:36:23 +0100181 break;
182 case RENESAS_SDHI_SCC_SMPCMP_CMD_REQDOWN:
183 new_tap = (priv->tap_set +
184 priv->tap_num - 1) % priv->tap_num;
Marek Vasut1bdcb832019-11-23 13:36:24 +0100185 error_tap = (priv->tap_set +
186 priv->tap_num + 1) % priv->tap_num;
Marek Vasut69000662019-11-23 13:36:23 +0100187 break;
188 default:
189 return true; /* Need re-tune */
190 }
191
Marek Vasut1bdcb832019-11-23 13:36:24 +0100192 if (priv->hs400_bad_tap & BIT(new_tap)) {
193 /*
194 * New tap is bad tap (cannot change).
195 * Compare with HS200 tuning result.
196 * In HS200 tuning, when smpcmp[error_tap]
197 * is OK, retune is executed.
198 */
199 if (priv->smpcmp & BIT(error_tap))
200 return true; /* Need retune */
201
202 return false; /* cannot change */
203 }
204
Marek Vasut69000662019-11-23 13:36:23 +0100205 priv->tap_set = new_tap;
206 } else {
207 if (reg & RENESAS_SDHI_SCC_RVSREQ_RVSERR)
208 return true; /* Need re-tune */
209 else if (reg & RENESAS_SDHI_SCC_RVSREQ_REQTAPUP)
210 priv->tap_set = (priv->tap_set +
211 priv->tap_num + 1) % priv->tap_num;
212 else if (reg & RENESAS_SDHI_SCC_RVSREQ_REQTAPDOWN)
213 priv->tap_set = (priv->tap_set +
214 priv->tap_num - 1) % priv->tap_num;
215 else
216 return false;
217 }
218
219 /* Set TAP position */
220 tmio_sd_writel(priv, priv->tap_set >> ((priv->nrtaps == 4) ? 1 : 0),
221 RENESAS_SDHI_SCC_TAPSET);
222
223 return false;
224}
225
Marek Vasutb5900a52019-05-19 03:47:07 +0200226static void renesas_sdhi_adjust_hs400_mode_enable(struct tmio_sd_priv *priv)
227{
228 u32 calib_code;
229
230 if (!priv->adjust_hs400_enable)
231 return;
232
233 if (!priv->needs_adjust_hs400)
234 return;
235
Marek Vasut56b0bb92019-11-23 13:36:25 +0100236 if (!priv->adjust_hs400_calib_table)
237 return;
238
Marek Vasutb5900a52019-05-19 03:47:07 +0200239 /*
240 * Enabled Manual adjust HS400 mode
241 *
242 * 1) Disabled Write Protect
243 * W(addr=0x00, WP_DISABLE_CODE)
Marek Vasut56b0bb92019-11-23 13:36:25 +0100244 *
245 * 2) Read Calibration code
246 * read_value = R(addr=0x26)
247 * 3) Refer to calibration table
248 * Calibration code = table[read_value]
249 * 4) Enabled Manual Calibration
Marek Vasutb5900a52019-05-19 03:47:07 +0200250 * W(addr=0x22, manual mode | Calibration code)
Marek Vasut56b0bb92019-11-23 13:36:25 +0100251 * 5) Set Offset value to TMPPORT3 Reg
Marek Vasutb5900a52019-05-19 03:47:07 +0200252 */
253 sd_scc_tmpport_write32(priv, 0x00,
254 RENESAS_SDHI_SCC_TMPPORT_DISABLE_WP_CODE);
255 calib_code = sd_scc_tmpport_read32(priv, 0x26);
256 calib_code &= RENESAS_SDHI_SCC_TMPPORT_CALIB_CODE_MASK;
Marek Vasutb5900a52019-05-19 03:47:07 +0200257 sd_scc_tmpport_write32(priv, 0x22,
258 RENESAS_SDHI_SCC_TMPPORT_MANUAL_MODE |
Marek Vasut56b0bb92019-11-23 13:36:25 +0100259 priv->adjust_hs400_calib_table[calib_code]);
Marek Vasutb5900a52019-05-19 03:47:07 +0200260 tmio_sd_writel(priv, priv->adjust_hs400_offset,
261 RENESAS_SDHI_SCC_TMPPORT3);
262
263 /* Clear flag */
264 priv->needs_adjust_hs400 = false;
265}
266
267static void renesas_sdhi_adjust_hs400_mode_disable(struct tmio_sd_priv *priv)
268{
269
270 /* Disabled Manual adjust HS400 mode
271 *
272 * 1) Disabled Write Protect
273 * W(addr=0x00, WP_DISABLE_CODE)
274 * 2) Disabled Manual Calibration
275 * W(addr=0x22, 0)
276 * 3) Clear offset value to TMPPORT3 Reg
277 */
278 sd_scc_tmpport_write32(priv, 0x00,
279 RENESAS_SDHI_SCC_TMPPORT_DISABLE_WP_CODE);
280 sd_scc_tmpport_write32(priv, 0x22, 0);
281 tmio_sd_writel(priv, 0, RENESAS_SDHI_SCC_TMPPORT3);
282}
283
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200284static unsigned int renesas_sdhi_init_tuning(struct tmio_sd_priv *priv)
Marek Vasutf63968b2018-04-08 19:09:17 +0200285{
286 u32 reg;
287
288 /* Initialize SCC */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200289 tmio_sd_writel(priv, 0, TMIO_SD_INFO1);
Marek Vasutf63968b2018-04-08 19:09:17 +0200290
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200291 reg = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
292 reg &= ~TMIO_SD_CLKCTL_SCLKEN;
293 tmio_sd_writel(priv, reg, TMIO_SD_CLKCTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200294
295 /* Set sampling clock selection range */
Marek Vasuta376dde2018-06-13 08:02:55 +0200296 tmio_sd_writel(priv, (0x8 << RENESAS_SDHI_SCC_DTCNTL_TAPNUM_SHIFT) |
297 RENESAS_SDHI_SCC_DTCNTL_TAPEN,
298 RENESAS_SDHI_SCC_DTCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200299
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200300 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_CKSEL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200301 reg |= RENESAS_SDHI_SCC_CKSEL_DTSEL;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200302 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_CKSEL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200303
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200304 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200305 reg &= ~RENESAS_SDHI_SCC_RVSCNTL_RVSEN;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200306 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200307
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200308 tmio_sd_writel(priv, 0x300 /* scc_tappos */,
Marek Vasutf63968b2018-04-08 19:09:17 +0200309 RENESAS_SDHI_SCC_DT2FF);
310
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200311 reg = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
312 reg |= TMIO_SD_CLKCTL_SCLKEN;
313 tmio_sd_writel(priv, reg, TMIO_SD_CLKCTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200314
315 /* Read TAPNUM */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200316 return (tmio_sd_readl(priv, RENESAS_SDHI_SCC_DTCNTL) >>
Marek Vasutf63968b2018-04-08 19:09:17 +0200317 RENESAS_SDHI_SCC_DTCNTL_TAPNUM_SHIFT) &
318 RENESAS_SDHI_SCC_DTCNTL_TAPNUM_MASK;
319}
320
Marek Vasut70d2c9942023-11-05 23:42:45 +0100321static void renesas_sdhi_reset_tuning(struct tmio_sd_priv *priv, bool clk_disable)
Marek Vasutf63968b2018-04-08 19:09:17 +0200322{
323 u32 reg;
324
325 /* Reset SCC */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200326 reg = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
327 reg &= ~TMIO_SD_CLKCTL_SCLKEN;
328 tmio_sd_writel(priv, reg, TMIO_SD_CLKCTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200329
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200330 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_CKSEL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200331 reg &= ~RENESAS_SDHI_SCC_CKSEL_DTSEL;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200332 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_CKSEL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200333
Marek Vasutdc1488f2018-06-13 08:02:55 +0200334 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_TMPPORT2);
335 reg &= ~(RENESAS_SDHI_SCC_TMPPORT2_HS400EN |
336 RENESAS_SDHI_SCC_TMPPORT2_HS400OSEL);
337 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_TMPPORT2);
338
Marek Vasutb5900a52019-05-19 03:47:07 +0200339 /* Disable HS400 mode adjustment */
340 renesas_sdhi_adjust_hs400_mode_disable(priv);
341
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200342 reg = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
343 reg |= TMIO_SD_CLKCTL_SCLKEN;
344 tmio_sd_writel(priv, reg, TMIO_SD_CLKCTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200345
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200346 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200347 reg &= ~RENESAS_SDHI_SCC_RVSCNTL_RVSEN;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200348 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200349
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200350 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200351 reg &= ~RENESAS_SDHI_SCC_RVSCNTL_RVSEN;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200352 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasut70d2c9942023-11-05 23:42:45 +0100353
354 if (clk_disable) {
355 reg = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
356 reg &= ~TMIO_SD_CLKCTL_SCLKEN;
357 tmio_sd_writel(priv, reg, TMIO_SD_CLKCTL);
358 }
Marek Vasutf63968b2018-04-08 19:09:17 +0200359}
360
Marek Vasut50aa1d92018-06-13 08:02:55 +0200361static int renesas_sdhi_hs400(struct udevice *dev)
362{
363 struct tmio_sd_priv *priv = dev_get_priv(dev);
364 struct mmc *mmc = mmc_get_mmc_dev(dev);
365 bool hs400 = (mmc->selected_mode == MMC_HS_400);
366 int ret, taps = hs400 ? priv->nrtaps : 8;
Hai Pham4dbbc3f2023-01-29 02:50:22 +0100367 const u32 sdn_rate = 200000000;
368 u32 sdnh_rate = 800000000;
Marek Vasut1bdcb832019-11-23 13:36:24 +0100369 unsigned long new_tap;
Marek Vasut50aa1d92018-06-13 08:02:55 +0200370 u32 reg;
371
Hai Pham4dbbc3f2023-01-29 02:50:22 +0100372 if (clk_valid(&priv->clkh) && !priv->needs_clkh_fallback) {
373 /* HS400 on 4tap SoC => SDnH=400 MHz, SDn=200 MHz */
374 if (taps == 4)
375 sdnh_rate /= 2;
376 ret = clk_set_rate(&priv->clkh, sdnh_rate);
377 if (ret < 0)
378 return ret;
379 }
380
381 ret = clk_set_rate(&priv->clk, sdn_rate);
Marek Vasut50aa1d92018-06-13 08:02:55 +0200382 if (ret < 0)
383 return ret;
384
Marek Vasut8f39b032019-11-23 13:36:22 +0100385 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSCNTL);
386 reg &= ~RENESAS_SDHI_SCC_RVSCNTL_RVSEN;
387 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasut50aa1d92018-06-13 08:02:55 +0200388
389 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_TMPPORT2);
390 if (hs400) {
391 reg |= RENESAS_SDHI_SCC_TMPPORT2_HS400EN |
392 RENESAS_SDHI_SCC_TMPPORT2_HS400OSEL;
393 } else {
394 reg &= ~(RENESAS_SDHI_SCC_TMPPORT2_HS400EN |
395 RENESAS_SDHI_SCC_TMPPORT2_HS400OSEL);
396 }
397
398 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_TMPPORT2);
399
Marek Vasutb5900a52019-05-19 03:47:07 +0200400 /* Disable HS400 mode adjustment */
401 if (!hs400)
402 renesas_sdhi_adjust_hs400_mode_disable(priv);
403
Marek Vasutba41c452019-02-19 19:32:28 +0100404 tmio_sd_writel(priv, (0x8 << RENESAS_SDHI_SCC_DTCNTL_TAPNUM_SHIFT) |
Marek Vasut50aa1d92018-06-13 08:02:55 +0200405 RENESAS_SDHI_SCC_DTCNTL_TAPEN,
406 RENESAS_SDHI_SCC_DTCNTL);
407
Marek Vasut1bdcb832019-11-23 13:36:24 +0100408 /* Avoid bad TAP */
409 if (priv->hs400_bad_tap & BIT(priv->tap_set)) {
410 new_tap = (priv->tap_set +
411 priv->tap_num + 1) % priv->tap_num;
412
413 if (priv->hs400_bad_tap & BIT(new_tap))
414 new_tap = (priv->tap_set +
415 priv->tap_num - 1) % priv->tap_num;
416
417 if (priv->hs400_bad_tap & BIT(new_tap)) {
418 new_tap = priv->tap_set;
419 debug("Three consecutive bad tap is prohibited\n");
420 }
421
422 priv->tap_set = new_tap;
423 tmio_sd_writel(priv, priv->tap_set, RENESAS_SDHI_SCC_TAPSET);
424 }
425
Marek Vasut50aa1d92018-06-13 08:02:55 +0200426 if (taps == 4) {
427 tmio_sd_writel(priv, priv->tap_set >> 1,
428 RENESAS_SDHI_SCC_TAPSET);
Marek Vasutdc419fc2019-11-23 13:36:20 +0100429 tmio_sd_writel(priv, hs400 ? 0x100 : 0x300,
430 RENESAS_SDHI_SCC_DT2FF);
Marek Vasut50aa1d92018-06-13 08:02:55 +0200431 } else {
432 tmio_sd_writel(priv, priv->tap_set, RENESAS_SDHI_SCC_TAPSET);
Marek Vasutdc419fc2019-11-23 13:36:20 +0100433 tmio_sd_writel(priv, 0x300, RENESAS_SDHI_SCC_DT2FF);
Marek Vasut50aa1d92018-06-13 08:02:55 +0200434 }
435
436 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_CKSEL);
437 reg |= RENESAS_SDHI_SCC_CKSEL_DTSEL;
438 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_CKSEL);
439
Marek Vasutb5900a52019-05-19 03:47:07 +0200440 /* Execute adjust hs400 offset after setting to HS400 mode */
441 if (hs400)
442 priv->needs_adjust_hs400 = true;
443
Marek Vasut50aa1d92018-06-13 08:02:55 +0200444 return 0;
445}
446
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200447static void renesas_sdhi_prepare_tuning(struct tmio_sd_priv *priv,
Marek Vasutf63968b2018-04-08 19:09:17 +0200448 unsigned long tap)
449{
450 /* Set sampling clock position */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200451 tmio_sd_writel(priv, tap, RENESAS_SDHI_SCC_TAPSET);
Marek Vasutf63968b2018-04-08 19:09:17 +0200452}
453
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200454static unsigned int renesas_sdhi_compare_scc_data(struct tmio_sd_priv *priv)
Marek Vasutf63968b2018-04-08 19:09:17 +0200455{
456 /* Get comparison of sampling data */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200457 return tmio_sd_readl(priv, RENESAS_SDHI_SCC_SMPCMP);
Marek Vasutf63968b2018-04-08 19:09:17 +0200458}
459
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200460static int renesas_sdhi_select_tuning(struct tmio_sd_priv *priv,
Marek Vasut37c39902019-11-23 13:36:18 +0100461 unsigned int taps)
Marek Vasutf63968b2018-04-08 19:09:17 +0200462{
463 unsigned long tap_cnt; /* counter of tuning success */
Marek Vasutf63968b2018-04-08 19:09:17 +0200464 unsigned long tap_start;/* start position of tuning success */
465 unsigned long tap_end; /* end position of tuning success */
466 unsigned long ntap; /* temporary counter of tuning success */
467 unsigned long match_cnt;/* counter of matching data */
468 unsigned long i;
469 bool select = false;
470 u32 reg;
471
Marek Vasutb5900a52019-05-19 03:47:07 +0200472 priv->needs_adjust_hs400 = false;
473
Marek Vasutf63968b2018-04-08 19:09:17 +0200474 /* Clear SCC_RVSREQ */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200475 tmio_sd_writel(priv, 0, RENESAS_SDHI_SCC_RVSREQ);
Marek Vasutf63968b2018-04-08 19:09:17 +0200476
477 /* Merge the results */
Marek Vasut0196a582019-11-23 13:36:17 +0100478 for (i = 0; i < priv->tap_num * 2; i++) {
Marek Vasutf63968b2018-04-08 19:09:17 +0200479 if (!(taps & BIT(i))) {
Marek Vasut0196a582019-11-23 13:36:17 +0100480 taps &= ~BIT(i % priv->tap_num);
481 taps &= ~BIT((i % priv->tap_num) + priv->tap_num);
Marek Vasutf63968b2018-04-08 19:09:17 +0200482 }
Marek Vasut37c39902019-11-23 13:36:18 +0100483 if (!(priv->smpcmp & BIT(i))) {
484 priv->smpcmp &= ~BIT(i % priv->tap_num);
485 priv->smpcmp &= ~BIT((i % priv->tap_num) + priv->tap_num);
Marek Vasutf63968b2018-04-08 19:09:17 +0200486 }
487 }
488
489 /*
490 * Find the longest consecutive run of successful probes. If that
491 * is more than RENESAS_SDHI_MAX_TAP probes long then use the
492 * center index as the tap.
493 */
494 tap_cnt = 0;
495 ntap = 0;
496 tap_start = 0;
497 tap_end = 0;
Marek Vasut0196a582019-11-23 13:36:17 +0100498 for (i = 0; i < priv->tap_num * 2; i++) {
Marek Vasutf63968b2018-04-08 19:09:17 +0200499 if (taps & BIT(i))
500 ntap++;
501 else {
502 if (ntap > tap_cnt) {
503 tap_start = i - ntap;
504 tap_end = i - 1;
505 tap_cnt = ntap;
506 }
507 ntap = 0;
508 }
509 }
510
511 if (ntap > tap_cnt) {
512 tap_start = i - ntap;
513 tap_end = i - 1;
514 tap_cnt = ntap;
515 }
516
517 /*
518 * If all of the TAP is OK, the sampling clock position is selected by
519 * identifying the change point of data.
520 */
Marek Vasut0196a582019-11-23 13:36:17 +0100521 if (tap_cnt == priv->tap_num * 2) {
Marek Vasutf63968b2018-04-08 19:09:17 +0200522 match_cnt = 0;
523 ntap = 0;
524 tap_start = 0;
525 tap_end = 0;
Marek Vasut0196a582019-11-23 13:36:17 +0100526 for (i = 0; i < priv->tap_num * 2; i++) {
Marek Vasut37c39902019-11-23 13:36:18 +0100527 if (priv->smpcmp & BIT(i))
Marek Vasutf63968b2018-04-08 19:09:17 +0200528 ntap++;
529 else {
530 if (ntap > match_cnt) {
531 tap_start = i - ntap;
532 tap_end = i - 1;
533 match_cnt = ntap;
534 }
535 ntap = 0;
536 }
537 }
538 if (ntap > match_cnt) {
539 tap_start = i - ntap;
540 tap_end = i - 1;
541 match_cnt = ntap;
542 }
543 if (match_cnt)
544 select = true;
545 } else if (tap_cnt >= RENESAS_SDHI_MAX_TAP)
546 select = true;
547
548 if (select)
Marek Vasut0196a582019-11-23 13:36:17 +0100549 priv->tap_set = ((tap_start + tap_end) / 2) % priv->tap_num;
Marek Vasutf63968b2018-04-08 19:09:17 +0200550 else
551 return -EIO;
552
553 /* Set SCC */
Marek Vasut95ead3d2018-06-13 08:02:55 +0200554 tmio_sd_writel(priv, priv->tap_set, RENESAS_SDHI_SCC_TAPSET);
Marek Vasutf63968b2018-04-08 19:09:17 +0200555
556 /* Enable auto re-tuning */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200557 reg = tmio_sd_readl(priv, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200558 reg |= RENESAS_SDHI_SCC_RVSCNTL_RVSEN;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200559 tmio_sd_writel(priv, reg, RENESAS_SDHI_SCC_RVSCNTL);
Marek Vasutf63968b2018-04-08 19:09:17 +0200560
561 return 0;
562}
563
564int renesas_sdhi_execute_tuning(struct udevice *dev, uint opcode)
565{
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200566 struct tmio_sd_priv *priv = dev_get_priv(dev);
Marek Vasutf63968b2018-04-08 19:09:17 +0200567 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
568 struct mmc *mmc = upriv->mmc;
569 unsigned int tap_num;
Marek Vasut37c39902019-11-23 13:36:18 +0100570 unsigned int taps = 0;
Marek Vasutf63968b2018-04-08 19:09:17 +0200571 int i, ret = 0;
572 u32 caps;
573
574 /* Only supported on Renesas RCar */
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200575 if (!(priv->caps & TMIO_SD_CAP_RCAR_UHS))
Marek Vasutf63968b2018-04-08 19:09:17 +0200576 return -EINVAL;
577
578 /* clock tuning is not needed for upto 52MHz */
579 if (!((mmc->selected_mode == MMC_HS_200) ||
Marek Vasut50aa1d92018-06-13 08:02:55 +0200580 (mmc->selected_mode == MMC_HS_400) ||
Marek Vasutf63968b2018-04-08 19:09:17 +0200581 (mmc->selected_mode == UHS_SDR104) ||
582 (mmc->selected_mode == UHS_SDR50)))
583 return 0;
584
585 tap_num = renesas_sdhi_init_tuning(priv);
586 if (!tap_num)
587 /* Tuning is not supported */
588 goto out;
589
Marek Vasut0196a582019-11-23 13:36:17 +0100590 priv->tap_num = tap_num;
591
592 if (priv->tap_num * 2 >= sizeof(taps) * 8) {
Marek Vasutf63968b2018-04-08 19:09:17 +0200593 dev_err(dev,
594 "Too many taps, skipping tuning. Please consider updating size of taps field of tmio_mmc_host\n");
595 goto out;
596 }
597
Marek Vasut37c39902019-11-23 13:36:18 +0100598 priv->smpcmp = 0;
599
Marek Vasutf63968b2018-04-08 19:09:17 +0200600 /* Issue CMD19 twice for each tap */
Marek Vasut0196a582019-11-23 13:36:17 +0100601 for (i = 0; i < 2 * priv->tap_num; i++) {
602 renesas_sdhi_prepare_tuning(priv, i % priv->tap_num);
Marek Vasutf63968b2018-04-08 19:09:17 +0200603
604 /* Force PIO for the tuning */
605 caps = priv->caps;
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200606 priv->caps &= ~TMIO_SD_CAP_DMA_INTERNAL;
Marek Vasutf63968b2018-04-08 19:09:17 +0200607
608 ret = mmc_send_tuning(mmc, opcode, NULL);
609
610 priv->caps = caps;
611
612 if (ret == 0)
613 taps |= BIT(i);
614
615 ret = renesas_sdhi_compare_scc_data(priv);
616 if (ret == 0)
Marek Vasut37c39902019-11-23 13:36:18 +0100617 priv->smpcmp |= BIT(i);
Marek Vasutf63968b2018-04-08 19:09:17 +0200618
619 mdelay(1);
Hai Pham99ab3d82023-06-20 00:38:25 +0200620
621 /*
622 * eMMC specification specifies that CMD12 can be used to stop a tuning
623 * command, but SD specification does not, so do nothing unless it is
624 * eMMC.
625 */
626 if (ret && (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200)) {
627 ret = mmc_send_stop_transmission(mmc, false);
628 if (ret < 0)
629 dev_dbg(dev, "Tuning abort fail (%d)\n", ret);
630 }
Marek Vasutf63968b2018-04-08 19:09:17 +0200631 }
632
Marek Vasut37c39902019-11-23 13:36:18 +0100633 ret = renesas_sdhi_select_tuning(priv, taps);
Marek Vasutf63968b2018-04-08 19:09:17 +0200634
635out:
636 if (ret < 0) {
637 dev_warn(dev, "Tuning procedure failed\n");
Marek Vasut70d2c9942023-11-05 23:42:45 +0100638 renesas_sdhi_reset_tuning(priv, true);
Marek Vasutf63968b2018-04-08 19:09:17 +0200639 }
640
641 return ret;
642}
Marek Vasut50aa1d92018-06-13 08:02:55 +0200643#else
644static int renesas_sdhi_hs400(struct udevice *dev)
645{
646 return 0;
647}
Marek Vasutf63968b2018-04-08 19:09:17 +0200648#endif
649
650static int renesas_sdhi_set_ios(struct udevice *dev)
651{
Marek Vasut50aa1d92018-06-13 08:02:55 +0200652 struct tmio_sd_priv *priv = dev_get_priv(dev);
653 u32 tmp;
654 int ret;
655
656 /* Stop the clock before changing its rate to avoid a glitch signal */
657 tmp = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
658 tmp &= ~TMIO_SD_CLKCTL_SCLKEN;
659 tmio_sd_writel(priv, tmp, TMIO_SD_CLKCTL);
660
661 ret = renesas_sdhi_hs400(dev);
662 if (ret)
663 return ret;
664
665 ret = tmio_sd_set_ios(dev);
Marek Vasutcf39f3f2018-04-09 20:47:31 +0200666
667 mdelay(10);
668
Marek Vasut50aa1d92018-06-13 08:02:55 +0200669#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
670 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
671 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
672 struct mmc *mmc = mmc_get_mmc_dev(dev);
673 if ((priv->caps & TMIO_SD_CAP_RCAR_UHS) &&
674 (mmc->selected_mode != UHS_SDR104) &&
675 (mmc->selected_mode != MMC_HS_200) &&
676 (mmc->selected_mode != MMC_HS_400)) {
Marek Vasut70d2c9942023-11-05 23:42:45 +0100677 renesas_sdhi_reset_tuning(priv, mmc->clk_disable);
Marek Vasut50aa1d92018-06-13 08:02:55 +0200678 }
Marek Vasutf63968b2018-04-08 19:09:17 +0200679#endif
680
681 return ret;
682}
683
Marek Vasut2fc10752018-10-28 19:28:56 +0100684#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300685static int renesas_sdhi_wait_dat0(struct udevice *dev, int state,
686 int timeout_us)
Marek Vasut2fc10752018-10-28 19:28:56 +0100687{
688 int ret = -ETIMEDOUT;
689 bool dat0_high;
690 bool target_dat0_high = !!state;
691 struct tmio_sd_priv *priv = dev_get_priv(dev);
692
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300693 timeout_us = DIV_ROUND_UP(timeout_us, 10); /* check every 10 us. */
694 while (timeout_us--) {
Marek Vasut2fc10752018-10-28 19:28:56 +0100695 dat0_high = !!(tmio_sd_readl(priv, TMIO_SD_INFO2) & TMIO_SD_INFO2_DAT0);
696 if (dat0_high == target_dat0_high) {
697 ret = 0;
698 break;
699 }
700 udelay(10);
701 }
702
703 return ret;
704}
705#endif
706
Marek Vasutd2661d82020-04-04 12:45:04 +0200707#define RENESAS_SDHI_DMA_ALIGNMENT 128
708
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200709static int renesas_sdhi_addr_aligned_gen(uintptr_t ubuf,
710 size_t len, size_t len_aligned)
Marek Vasutd2661d82020-04-04 12:45:04 +0200711{
Marek Vasutd2661d82020-04-04 12:45:04 +0200712 /* Check if start is aligned */
713 if (!IS_ALIGNED(ubuf, RENESAS_SDHI_DMA_ALIGNMENT)) {
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200714 debug("Unaligned buffer address %lx\n", ubuf);
Marek Vasutd2661d82020-04-04 12:45:04 +0200715 return 0;
716 }
717
718 /* Check if length is aligned */
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200719 if (len != len_aligned) {
720 debug("Unaligned buffer length %zu\n", len);
Marek Vasutd2661d82020-04-04 12:45:04 +0200721 return 0;
722 }
723
724#ifdef CONFIG_PHYS_64BIT
725 /* Check if below 32bit boundary */
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200726 if ((ubuf >> 32) || (ubuf + len_aligned) >> 32) {
727 debug("Buffer above 32bit boundary %lx-%lx\n",
728 ubuf, ubuf + len_aligned);
Marek Vasutd2661d82020-04-04 12:45:04 +0200729 return 0;
730 }
731#endif
732
733 /* Aligned */
734 return 1;
735}
736
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200737static int renesas_sdhi_addr_aligned(struct bounce_buffer *state)
738{
739 uintptr_t ubuf = (uintptr_t)state->user_buffer;
740
741 return renesas_sdhi_addr_aligned_gen(ubuf, state->len,
742 state->len_aligned);
743}
744
Marek Vasutb5900a52019-05-19 03:47:07 +0200745static int renesas_sdhi_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
746 struct mmc_data *data)
747{
Marek Vasutd2661d82020-04-04 12:45:04 +0200748 struct bounce_buffer bbstate;
749 unsigned int bbflags;
750 bool bbok = false;
751 size_t len;
752 void *buf;
Marek Vasutb5900a52019-05-19 03:47:07 +0200753 int ret;
754
Marek Vasutd2661d82020-04-04 12:45:04 +0200755 if (data) {
756 if (data->flags & MMC_DATA_READ) {
757 buf = data->dest;
758 bbflags = GEN_BB_WRITE;
759 } else {
760 buf = (void *)data->src;
761 bbflags = GEN_BB_READ;
762 }
763 len = data->blocks * data->blocksize;
764
765 ret = bounce_buffer_start_extalign(&bbstate, buf, len, bbflags,
766 RENESAS_SDHI_DMA_ALIGNMENT,
767 renesas_sdhi_addr_aligned);
768 /*
769 * If the amount of data to transfer is too large, we can get
770 * -ENOMEM when starting the bounce buffer. If that happens,
771 * fall back to PIO as it was before, otherwise use the BB.
772 */
773 if (!ret) {
774 bbok = true;
775 if (data->flags & MMC_DATA_READ)
776 data->dest = bbstate.bounce_buffer;
777 else
778 data->src = bbstate.bounce_buffer;
779 }
780 }
781
Marek Vasutb5900a52019-05-19 03:47:07 +0200782 ret = tmio_sd_send_cmd(dev, cmd, data);
Marek Vasutd2661d82020-04-04 12:45:04 +0200783
784 if (data && bbok) {
785 buf = bbstate.user_buffer;
786
787 bounce_buffer_stop(&bbstate);
788
789 if (data->flags & MMC_DATA_READ)
790 data->dest = buf;
791 else
792 data->src = buf;
793 }
794
Marek Vasutb5900a52019-05-19 03:47:07 +0200795 if (ret)
796 return ret;
797
798#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
799 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
800 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
801 struct tmio_sd_priv *priv = dev_get_priv(dev);
802
Marek Vasut69000662019-11-23 13:36:23 +0100803 renesas_sdhi_check_scc_error(dev);
804
Marek Vasutb5900a52019-05-19 03:47:07 +0200805 if (cmd->cmdidx == MMC_CMD_SEND_STATUS)
806 renesas_sdhi_adjust_hs400_mode_enable(priv);
807#endif
808
809 return 0;
810}
811
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200812int renesas_sdhi_get_b_max(struct udevice *dev, void *dst, lbaint_t blkcnt)
813{
814 struct tmio_sd_priv *priv = dev_get_priv(dev);
815 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
816 struct mmc *mmc = upriv->mmc;
817 size_t len = blkcnt * mmc->read_bl_len;
818 size_t len_align = roundup(len, RENESAS_SDHI_DMA_ALIGNMENT);
819
820 if (renesas_sdhi_addr_aligned_gen((uintptr_t)dst, len, len_align)) {
821 if (priv->quirks & TMIO_SD_CAP_16BIT)
822 return U16_MAX;
823 else
824 return U32_MAX;
825 } else {
826 return (CONFIG_SYS_MALLOC_LEN / 4) / mmc->read_bl_len;
827 }
828}
829
Marek Vasute94cad92018-04-08 15:22:58 +0200830static const struct dm_mmc_ops renesas_sdhi_ops = {
Marek Vasutb5900a52019-05-19 03:47:07 +0200831 .send_cmd = renesas_sdhi_send_cmd,
Marek Vasutf63968b2018-04-08 19:09:17 +0200832 .set_ios = renesas_sdhi_set_ios,
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200833 .get_cd = tmio_sd_get_cd,
Marek Vasut50aa1d92018-06-13 08:02:55 +0200834#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
835 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
836 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
Marek Vasutf63968b2018-04-08 19:09:17 +0200837 .execute_tuning = renesas_sdhi_execute_tuning,
838#endif
Marek Vasut2fc10752018-10-28 19:28:56 +0100839#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
840 .wait_dat0 = renesas_sdhi_wait_dat0,
841#endif
Marek Vasut4a66d4e2020-04-04 12:45:06 +0200842 .get_b_max = renesas_sdhi_get_b_max,
Marek Vasute94cad92018-04-08 15:22:58 +0200843};
844
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200845#define RENESAS_GEN2_QUIRKS TMIO_SD_CAP_RCAR_GEN2
Marek Vasutf98833d2018-04-08 18:49:52 +0200846#define RENESAS_GEN3_QUIRKS \
Marek Vasutcb0b6b02018-04-13 23:51:33 +0200847 TMIO_SD_CAP_64BIT | TMIO_SD_CAP_RCAR_GEN3 | TMIO_SD_CAP_RCAR_UHS
Marek Vasutf98833d2018-04-08 18:49:52 +0200848
Marek Vasute94cad92018-04-08 15:22:58 +0200849static const struct udevice_id renesas_sdhi_match[] = {
Marek Vasutf98833d2018-04-08 18:49:52 +0200850 { .compatible = "renesas,sdhi-r8a7790", .data = RENESAS_GEN2_QUIRKS },
851 { .compatible = "renesas,sdhi-r8a7791", .data = RENESAS_GEN2_QUIRKS },
852 { .compatible = "renesas,sdhi-r8a7792", .data = RENESAS_GEN2_QUIRKS },
853 { .compatible = "renesas,sdhi-r8a7793", .data = RENESAS_GEN2_QUIRKS },
854 { .compatible = "renesas,sdhi-r8a7794", .data = RENESAS_GEN2_QUIRKS },
855 { .compatible = "renesas,sdhi-r8a7795", .data = RENESAS_GEN3_QUIRKS },
856 { .compatible = "renesas,sdhi-r8a7796", .data = RENESAS_GEN3_QUIRKS },
Hai Phamd919bb92023-01-26 21:05:59 +0100857 { .compatible = "renesas,sdhi-r8a77961", .data = RENESAS_GEN3_QUIRKS },
Adam Ford4ce95662020-06-30 09:30:10 -0500858 { .compatible = "renesas,rcar-gen3-sdhi", .data = RENESAS_GEN3_QUIRKS },
Marek Vasutf98833d2018-04-08 18:49:52 +0200859 { .compatible = "renesas,sdhi-r8a77965", .data = RENESAS_GEN3_QUIRKS },
860 { .compatible = "renesas,sdhi-r8a77970", .data = RENESAS_GEN3_QUIRKS },
Marek Vasutd6291522018-04-26 13:19:29 +0200861 { .compatible = "renesas,sdhi-r8a77990", .data = RENESAS_GEN3_QUIRKS },
Marek Vasutf98833d2018-04-08 18:49:52 +0200862 { .compatible = "renesas,sdhi-r8a77995", .data = RENESAS_GEN3_QUIRKS },
Hai Pham632a7b12023-02-28 22:24:06 +0100863 { .compatible = "renesas,rcar-gen4-sdhi", .data = RENESAS_GEN3_QUIRKS },
Marek Vasute94cad92018-04-08 15:22:58 +0200864 { /* sentinel */ }
865};
866
Marek Vasut8ec6a042018-06-13 08:02:55 +0200867static ulong renesas_sdhi_clk_get_rate(struct tmio_sd_priv *priv)
868{
869 return clk_get_rate(&priv->clk);
870}
871
Marek Vasutd34bd2d2018-06-13 08:02:55 +0200872static void renesas_sdhi_filter_caps(struct udevice *dev)
873{
Marek Vasutd34bd2d2018-06-13 08:02:55 +0200874 struct tmio_sd_priv *priv = dev_get_priv(dev);
875
876 if (!(priv->caps & TMIO_SD_CAP_RCAR_GEN3))
877 return;
878
Marek Vasut8a73bef2021-01-03 11:38:25 +0100879 if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL)
880 priv->idma_bus_width = TMIO_SD_DMA_MODE_BUS_WIDTH;
881
Marek Vasut56b0bb92019-11-23 13:36:25 +0100882#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
883 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
884 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
Simon Glassc69cda22020-12-03 16:55:20 -0700885 struct tmio_sd_plat *plat = dev_get_plat(dev);
Marek Vasut56b0bb92019-11-23 13:36:25 +0100886
Hai Pham6d7d4c42023-01-26 21:05:56 +0100887 /* HS400 is not supported on H3 ES1.x, M3W ES1.[012], V3M, V3H ES1.x, D3 */
Marek Vasutd34bd2d2018-06-13 08:02:55 +0200888 if (((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
889 (rmobile_get_cpu_rev_integer() <= 1)) ||
890 ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
891 (rmobile_get_cpu_rev_integer() == 1) &&
Hai Pham6d7d4c42023-01-26 21:05:56 +0100892 (rmobile_get_cpu_rev_fraction() <= 2)) ||
893 (rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77970) ||
894 ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77980) &&
895 (rmobile_get_cpu_rev_integer() <= 1)) ||
896 (rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77995))
Marek Vasutd34bd2d2018-06-13 08:02:55 +0200897 plat->cfg.host_caps &= ~MMC_MODE_HS400;
Marek Vasut50aa1d92018-06-13 08:02:55 +0200898
Marek Vasut1bdcb832019-11-23 13:36:24 +0100899 /* H3 ES2.0, ES3.0 and M3W ES1.2 and M3N bad taps */
900 if (((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
901 (rmobile_get_cpu_rev_integer() >= 2)) ||
902 ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
903 (rmobile_get_cpu_rev_integer() == 1) &&
904 (rmobile_get_cpu_rev_fraction() == 2)) ||
905 (rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77965))
906 priv->hs400_bad_tap = BIT(2) | BIT(3) | BIT(6) | BIT(7);
907
908 /* M3W ES1.x for x>2 can use HS400 with manual adjustment and taps */
Marek Vasutb5900a52019-05-19 03:47:07 +0200909 if ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
910 (rmobile_get_cpu_rev_integer() == 1) &&
911 (rmobile_get_cpu_rev_fraction() > 2)) {
912 priv->adjust_hs400_enable = true;
Hai Pham1cdabcc2023-01-26 21:05:58 +0100913 priv->adjust_hs400_offset = 3;
Marek Vasut1bdcb832019-11-23 13:36:24 +0100914 priv->hs400_bad_tap = BIT(1) | BIT(3) | BIT(5) | BIT(7);
Marek Vasut56b0bb92019-11-23 13:36:25 +0100915 priv->adjust_hs400_calib_table =
Hai Pham6d7d4c42023-01-26 21:05:56 +0100916 r8a7796_rev13_calib_table[!rmobile_is_gen3_mmc0(priv)];
Marek Vasutb5900a52019-05-19 03:47:07 +0200917 }
918
Hai Phamd919bb92023-01-26 21:05:59 +0100919 /* M3W+ bad taps */
920 if ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
921 (rmobile_get_cpu_rev_integer() == 3))
922 priv->hs400_bad_tap = BIT(1) | BIT(3) | BIT(5) | BIT(7);
923
Marek Vasutb5900a52019-05-19 03:47:07 +0200924 /* M3N can use HS400 with manual adjustment */
925 if (rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77965) {
926 priv->adjust_hs400_enable = true;
Marek Vasute5d3f3d2019-11-23 13:36:21 +0100927 priv->adjust_hs400_offset = 3;
Marek Vasut56b0bb92019-11-23 13:36:25 +0100928 priv->adjust_hs400_calib_table =
929 r8a77965_calib_table[!rmobile_is_gen3_mmc0(priv)];
Marek Vasutb5900a52019-05-19 03:47:07 +0200930 }
931
932 /* E3 can use HS400 with manual adjustment */
933 if (rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77990) {
934 priv->adjust_hs400_enable = true;
Marek Vasute5d3f3d2019-11-23 13:36:21 +0100935 priv->adjust_hs400_offset = 3;
Marek Vasut56b0bb92019-11-23 13:36:25 +0100936 priv->adjust_hs400_calib_table =
937 r8a77990_calib_table[!rmobile_is_gen3_mmc0(priv)];
Marek Vasutb5900a52019-05-19 03:47:07 +0200938 }
939
Hai Pham01cbce82023-01-26 21:05:55 +0100940 /* H3 ES1.x, ES2.0 and M3W ES1.[0123] uses 4 tuning taps */
Marek Vasut81099882019-11-23 13:36:19 +0100941 if (((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
942 (rmobile_get_cpu_rev_integer() <= 2)) ||
943 ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
944 (rmobile_get_cpu_rev_integer() == 1) &&
Hai Pham01cbce82023-01-26 21:05:55 +0100945 (rmobile_get_cpu_rev_fraction() <= 3)))
Marek Vasut50aa1d92018-06-13 08:02:55 +0200946 priv->nrtaps = 4;
947 else
948 priv->nrtaps = 8;
Marek Vasut56b0bb92019-11-23 13:36:25 +0100949#endif
Marek Vasut992bcf42019-01-11 23:45:54 +0100950 /* H3 ES1.x and M3W ES1.0 uses bit 17 for DTRAEND */
951 if (((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7795) &&
952 (rmobile_get_cpu_rev_integer() <= 1)) ||
953 ((rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A7796) &&
954 (rmobile_get_cpu_rev_integer() == 1) &&
955 (rmobile_get_cpu_rev_fraction() == 0)))
956 priv->read_poll_flag = TMIO_SD_DMA_INFO1_END_RD;
957 else
958 priv->read_poll_flag = TMIO_SD_DMA_INFO1_END_RD2;
Hai Pham3c78ce82023-01-26 21:06:01 +0100959
960 /* V3M handles SD0H differently than other Gen3 SoCs */
961 if (rmobile_get_cpu_type() == RMOBILE_CPU_TYPE_R8A77970)
962 priv->needs_clkh_fallback = true;
963 else
964 priv->needs_clkh_fallback = false;
Marek Vasutd34bd2d2018-06-13 08:02:55 +0200965}
966
Paul Barker93c811b2023-10-16 10:25:38 +0100967static int rzg2l_sdhi_setup(struct udevice *dev)
968{
969 struct tmio_sd_priv *priv = dev_get_priv(dev);
970 struct clk imclk2, aclk;
971 struct reset_ctl rst;
972 int ret;
973
974 /*
975 * On members of the RZ/G2L SoC family, we need to enable
976 * additional chip detect and bus clocks, then release the SDHI
977 * module from reset.
978 */
979 ret = clk_get_by_name(dev, "cd", &imclk2);
980 if (ret < 0) {
981 dev_err(dev, "failed to get imclk2 (chip detect clk)\n");
982 goto err_get_imclk2;
983 }
984
985 ret = clk_get_by_name(dev, "aclk", &aclk);
986 if (ret < 0) {
987 dev_err(dev, "failed to get aclk\n");
988 goto err_get_aclk;
989 }
990
991 ret = clk_enable(&imclk2);
992 if (ret < 0) {
993 dev_err(dev, "failed to enable imclk2 (chip detect clk)\n");
994 goto err_imclk2;
995 }
996
997 ret = clk_enable(&aclk);
998 if (ret < 0) {
999 dev_err(dev, "failed to enable aclk\n");
1000 goto err_aclk;
1001 }
1002
1003 ret = reset_get_by_index(dev, 0, &rst);
1004 if (ret < 0) {
1005 dev_err(dev, "failed to get reset line\n");
Paul Barkerfa8422d2023-10-19 15:50:38 +01001006 goto err_get_reset;
Paul Barker93c811b2023-10-16 10:25:38 +01001007 }
1008
1009 ret = reset_deassert(&rst);
1010 if (ret < 0) {
1011 dev_err(dev, "failed to de-assert reset line\n");
1012 goto err_reset;
1013 }
1014
1015 ret = tmio_sd_probe(dev, priv->quirks);
1016 if (ret)
1017 goto err_tmio_probe;
1018
1019 return 0;
1020
1021err_tmio_probe:
1022 reset_assert(&rst);
1023err_reset:
Paul Barkerfa8422d2023-10-19 15:50:38 +01001024 reset_free(&rst);
1025err_get_reset:
Paul Barker93c811b2023-10-16 10:25:38 +01001026 clk_disable(&aclk);
1027err_aclk:
1028 clk_disable(&imclk2);
1029err_imclk2:
1030 clk_free(&aclk);
1031err_get_aclk:
1032 clk_free(&imclk2);
1033err_get_imclk2:
1034 return ret;
1035}
1036
Marek Vasutc769e602018-04-08 17:45:23 +02001037static int renesas_sdhi_probe(struct udevice *dev)
1038{
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +09001039 struct tmio_sd_priv *priv = dev_get_priv(dev);
Marek Vasut7cf7ef82018-04-08 18:14:22 +02001040 struct fdt_resource reg_res;
1041 DECLARE_GLOBAL_DATA_PTR;
1042 int ret;
1043
Marek Vasut8ec6a042018-06-13 08:02:55 +02001044 priv->clk_get_rate = renesas_sdhi_clk_get_rate;
1045
Paul Barkere84dddf2023-10-16 10:25:37 +01001046 priv->quirks = dev_get_driver_data(dev);
1047 if (priv->quirks == RENESAS_GEN2_QUIRKS) {
Marek Vasutf98833d2018-04-08 18:49:52 +02001048 ret = fdt_get_resource(gd->fdt_blob, dev_of_offset(dev),
1049 "reg", 0, &reg_res);
1050 if (ret < 0) {
1051 dev_err(dev, "\"reg\" resource not found, ret=%i\n",
1052 ret);
1053 return ret;
1054 }
Marek Vasut7cf7ef82018-04-08 18:14:22 +02001055
Marek Vasutf98833d2018-04-08 18:49:52 +02001056 if (fdt_resource_size(&reg_res) == 0x100)
Paul Barkere84dddf2023-10-16 10:25:37 +01001057 priv->quirks |= TMIO_SD_CAP_16BIT;
Marek Vasutf98833d2018-04-08 18:49:52 +02001058 }
Marek Vasutc769e602018-04-08 17:45:23 +02001059
Marek Vasut8ec6a042018-06-13 08:02:55 +02001060 ret = clk_get_by_index(dev, 0, &priv->clk);
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +09001061 if (ret < 0) {
1062 dev_err(dev, "failed to get host clock\n");
1063 return ret;
1064 }
1065
Hai Pham4dbbc3f2023-01-29 02:50:22 +01001066 /* optional SDnH clock */
1067 ret = clk_get_by_name(dev, "clkh", &priv->clkh);
Marek Vasut6ddffa82023-02-27 23:49:27 +01001068 if (ret < 0) {
Hai Pham4dbbc3f2023-01-29 02:50:22 +01001069 dev_dbg(dev, "failed to get clkh\n");
Marek Vasut6ddffa82023-02-27 23:49:27 +01001070 } else {
1071 ret = clk_set_rate(&priv->clkh, 800000000);
1072 if (ret < 0) {
Marek Vasutf20a61a2023-02-27 23:49:28 +01001073 dev_err(dev, "failed to set rate for SDnH clock (%d)\n", ret);
1074 goto err_clk;
Marek Vasut6ddffa82023-02-27 23:49:27 +01001075 }
1076 }
Hai Pham4dbbc3f2023-01-29 02:50:22 +01001077
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +09001078 /* set to max rate */
Marek Vasut8ec6a042018-06-13 08:02:55 +02001079 ret = clk_set_rate(&priv->clk, 200000000);
1080 if (ret < 0) {
Marek Vasutf20a61a2023-02-27 23:49:28 +01001081 dev_err(dev, "failed to set rate for SDn clock (%d)\n", ret);
1082 goto err_clkh;
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +09001083 }
1084
Marek Vasut8ec6a042018-06-13 08:02:55 +02001085 ret = clk_enable(&priv->clk);
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +09001086 if (ret) {
Marek Vasutf20a61a2023-02-27 23:49:28 +01001087 dev_err(dev, "failed to enable SDn clock (%d)\n", ret);
1088 goto err_clkh;
Masahiro Yamada30b5d9a2018-04-20 18:14:24 +09001089 }
1090
Paul Barker93c811b2023-10-16 10:25:38 +01001091 if (device_is_compatible(dev, "renesas,sdhi-r9a07g044"))
1092 ret = rzg2l_sdhi_setup(dev);
1093 else
1094 ret = tmio_sd_probe(dev, priv->quirks);
Marek Vasutf20a61a2023-02-27 23:49:28 +01001095 if (ret)
1096 goto err_tmio_probe;
Marek Vasutd34bd2d2018-06-13 08:02:55 +02001097
1098 renesas_sdhi_filter_caps(dev);
1099
Marek Vasut50aa1d92018-06-13 08:02:55 +02001100#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
1101 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
1102 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
Marek Vasutf20a61a2023-02-27 23:49:28 +01001103 if (priv->caps & TMIO_SD_CAP_RCAR_UHS)
Marek Vasut70d2c9942023-11-05 23:42:45 +01001104 renesas_sdhi_reset_tuning(priv, true);
Marek Vasutf63968b2018-04-08 19:09:17 +02001105#endif
Marek Vasutf20a61a2023-02-27 23:49:28 +01001106 return 0;
1107
1108err_tmio_probe:
1109 clk_disable(&priv->clk);
1110err_clkh:
1111 clk_free(&priv->clkh);
1112err_clk:
1113 clk_free(&priv->clk);
Marek Vasutf63968b2018-04-08 19:09:17 +02001114 return ret;
Marek Vasutc769e602018-04-08 17:45:23 +02001115}
1116
Marek Vasute94cad92018-04-08 15:22:58 +02001117U_BOOT_DRIVER(renesas_sdhi) = {
1118 .name = "renesas-sdhi",
1119 .id = UCLASS_MMC,
1120 .of_match = renesas_sdhi_match,
Marek Vasutcb0b6b02018-04-13 23:51:33 +02001121 .bind = tmio_sd_bind,
Marek Vasutc769e602018-04-08 17:45:23 +02001122 .probe = renesas_sdhi_probe,
Simon Glass41575d82020-12-03 16:55:17 -07001123 .priv_auto = sizeof(struct tmio_sd_priv),
Simon Glasscaa4daa2020-12-03 16:55:18 -07001124 .plat_auto = sizeof(struct tmio_sd_plat),
Marek Vasute94cad92018-04-08 15:22:58 +02001125 .ops = &renesas_sdhi_ops,
1126};