blob: 706fb12357960675f736065807892073211d01c7 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kever Yang65922e02016-07-18 17:00:58 +08002/*
3 * (C) Copyright 2016 Fuzhou Rockchip Electronics Co., Ltd
4 *
5 * Rockchip SD Host Controller Interface
Kever Yang65922e02016-07-18 17:00:58 +08006 */
7
8#include <common.h>
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +08009#include <clk.h>
Kever Yang65922e02016-07-18 17:00:58 +080010#include <dm.h>
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080011#include <dm/ofnode.h>
Kever Yangdd99a022017-02-13 17:38:57 +080012#include <dt-structs.h>
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080013#include <linux/delay.h>
Simon Glassd66c5f72020-02-03 07:36:15 -070014#include <linux/err.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090015#include <linux/libfdt.h>
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080016#include <linux/iopoll.h>
Kever Yang65922e02016-07-18 17:00:58 +080017#include <malloc.h>
Kever Yangdd99a022017-02-13 17:38:57 +080018#include <mapmem.h>
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080019#include "mmc_private.h"
Kever Yang65922e02016-07-18 17:00:58 +080020#include <sdhci.h>
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080021#include <syscon.h>
22#include <asm/arch-rockchip/clock.h>
23#include <asm/arch-rockchip/hardware.h>
Kever Yang65922e02016-07-18 17:00:58 +080024
Alper Nebi Yasak6f198692022-03-15 20:46:28 +030025/* DWCMSHC specific Mode Select value */
26#define DWCMSHC_CTRL_HS400 0x7
Kever Yang65922e02016-07-18 17:00:58 +080027/* 400KHz is max freq for card ID etc. Use that as min */
28#define EMMC_MIN_FREQ 400000
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080029#define KHz (1000)
30#define MHz (1000 * KHz)
31#define SDHCI_TUNING_LOOP_COUNT 40
32
33#define PHYCTRL_CALDONE_MASK 0x1
34#define PHYCTRL_CALDONE_SHIFT 0x6
35#define PHYCTRL_CALDONE_DONE 0x1
36#define PHYCTRL_DLLRDY_MASK 0x1
37#define PHYCTRL_DLLRDY_SHIFT 0x5
38#define PHYCTRL_DLLRDY_DONE 0x1
39#define PHYCTRL_FREQSEL_200M 0x0
40#define PHYCTRL_FREQSEL_50M 0x1
41#define PHYCTRL_FREQSEL_100M 0x2
42#define PHYCTRL_FREQSEL_150M 0x3
43#define PHYCTRL_DLL_LOCK_WO_TMOUT(x) \
44 ((((x) >> PHYCTRL_DLLRDY_SHIFT) & PHYCTRL_DLLRDY_MASK) ==\
45 PHYCTRL_DLLRDY_DONE)
Kever Yang65922e02016-07-18 17:00:58 +080046
Alper Nebi Yasak9099d032022-03-15 20:46:27 +030047#define ARASAN_VENDOR_REGISTER 0x78
48#define ARASAN_VENDOR_ENHANCED_STROBE BIT(0)
49
Jonas Karlman9168fbf2023-04-18 16:46:35 +000050/* Rockchip specific Registers */
51#define DWCMSHC_EMMC_EMMC_CTRL 0x52c
Alper Nebi Yasak6f198692022-03-15 20:46:28 +030052#define DWCMSHC_CARD_IS_EMMC BIT(0)
53#define DWCMSHC_ENHANCED_STROBE BIT(8)
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +080054#define DWCMSHC_EMMC_DLL_CTRL 0x800
55#define DWCMSHC_EMMC_DLL_CTRL_RESET BIT(1)
56#define DWCMSHC_EMMC_DLL_RXCLK 0x804
57#define DWCMSHC_EMMC_DLL_TXCLK 0x808
58#define DWCMSHC_EMMC_DLL_STRBIN 0x80c
Jonas Karlmanee7115f2023-04-18 16:46:39 +000059#define DWCMSHC_EMMC_DLL_CMDOUT 0x810
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +080060#define DWCMSHC_EMMC_DLL_STATUS0 0x840
61#define DWCMSHC_EMMC_DLL_STATUS1 0x844
62#define DWCMSHC_EMMC_DLL_START BIT(0)
Jonas Karlman9168fbf2023-04-18 16:46:35 +000063#define DWCMSHC_EMMC_DLL_LOCKED BIT(8)
64#define DWCMSHC_EMMC_DLL_TIMEOUT BIT(9)
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +080065#define DWCMSHC_EMMC_DLL_START_POINT 16
66#define DWCMSHC_EMMC_DLL_START_DEFAULT 5
67#define DWCMSHC_EMMC_DLL_INC_VALUE 2
68#define DWCMSHC_EMMC_DLL_INC 8
Vasily Khoruzhickb58c6832023-03-08 17:28:30 -080069#define DWCMSHC_EMMC_DLL_BYPASS BIT(24)
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +080070#define DWCMSHC_EMMC_DLL_DLYENA BIT(27)
Jonas Karlman9168fbf2023-04-18 16:46:35 +000071#define DLL_RXCLK_NO_INVERTER BIT(29)
72#define DLL_RXCLK_ORI_GATE BIT(31)
Jonas Karlmanf4f60052023-04-18 16:46:37 +000073#define DLL_TXCLK_TAPNUM_DEFAULT 0x10
Jonas Karlman9168fbf2023-04-18 16:46:35 +000074#define DLL_TXCLK_TAPNUM_FROM_SW BIT(24)
Jonas Karlmanee7115f2023-04-18 16:46:39 +000075#define DLL_TXCLK_NO_INVERTER BIT(29)
Jonas Karlmanf4f60052023-04-18 16:46:37 +000076#define DLL_STRBIN_TAPNUM_DEFAULT 0x4
Alper Nebi Yasak6f198692022-03-15 20:46:28 +030077#define DLL_STRBIN_TAPNUM_FROM_SW BIT(24)
78#define DLL_STRBIN_DELAY_NUM_SEL BIT(26)
79#define DLL_STRBIN_DELAY_NUM_OFFSET 16
Jonas Karlmanf4f60052023-04-18 16:46:37 +000080#define DLL_STRBIN_DELAY_NUM_DEFAULT 0x10
Jonas Karlmanee7115f2023-04-18 16:46:39 +000081#define DLL_CMDOUT_TAPNUM_90_DEGREES 0x8
82#define DLL_CMDOUT_TAPNUM_FROM_SW BIT(24)
83#define DLL_CMDOUT_SRC_CLK_NEG BIT(28)
84#define DLL_CMDOUT_EN_SRC_CLK_NEG BIT(29)
85#define DLL_CMDOUT_BOTH_CLK_EDGE BIT(30)
Alper Nebi Yasak6f198692022-03-15 20:46:28 +030086
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +080087#define DLL_LOCK_WO_TMOUT(x) \
88 ((((x) & DWCMSHC_EMMC_DLL_LOCKED) == DWCMSHC_EMMC_DLL_LOCKED) && \
89 (((x) & DWCMSHC_EMMC_DLL_TIMEOUT) == 0))
90#define ROCKCHIP_MAX_CLKS 3
91
Jonas Karlmanee7115f2023-04-18 16:46:39 +000092#define FLAG_INVERTER_FLAG_IN_RXCLK BIT(0)
93
Kever Yang65922e02016-07-18 17:00:58 +080094struct rockchip_sdhc_plat {
95 struct mmc_config cfg;
96 struct mmc mmc;
97};
98
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +080099struct rockchip_emmc_phy {
100 u32 emmcphy_con[7];
101 u32 reserved;
102 u32 emmcphy_status;
103};
104
Kever Yang65922e02016-07-18 17:00:58 +0800105struct rockchip_sdhc {
106 struct sdhci_host host;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800107 struct udevice *dev;
Kever Yang65922e02016-07-18 17:00:58 +0800108 void *base;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800109 struct rockchip_emmc_phy *phy;
110 struct clk emmc_clk;
111};
112
113struct sdhci_data {
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800114 int (*get_phy)(struct udevice *dev);
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300115
116 /**
117 * set_control_reg() - Set SDHCI control registers
118 *
119 * This is the set_control_reg() SDHCI operation that should be
120 * used for the hardware this driver data is associated with.
121 * Normally, this is used to set up control registers for
122 * voltage level and UHS speed mode.
123 *
124 * @host: SDHCI host structure
125 */
126 void (*set_control_reg)(struct sdhci_host *host);
127
128 /**
129 * set_ios_post() - Host specific hook after set_ios() calls
130 *
131 * This is the set_ios_post() SDHCI operation that should be
132 * used for the hardware this driver data is associated with.
133 * Normally, this is a hook that is called after sdhci_set_ios()
134 * that does any necessary host-specific configuration.
135 *
136 * @host: SDHCI host structure
137 * Return: 0 if successful, -ve on error
138 */
139 int (*set_ios_post)(struct sdhci_host *host);
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300140
Jonas Karlmanea312462023-04-18 16:46:29 +0000141 void (*set_clock)(struct sdhci_host *host, u32 div);
142 int (*config_dll)(struct sdhci_host *host, u32 clock, bool enable);
143
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300144 /**
145 * set_enhanced_strobe() - Set HS400 Enhanced Strobe config
146 *
147 * This is the set_enhanced_strobe() SDHCI operation that should
148 * be used for the hardware this driver data is associated with.
149 * Normally, this is used to set any host-specific configuration
150 * necessary for HS400 ES.
151 *
152 * @host: SDHCI host structure
153 * Return: 0 if successful, -ve on error
154 */
155 int (*set_enhanced_strobe)(struct sdhci_host *host);
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000156
157 u32 flags;
158 u8 hs200_txclk_tapnum;
159 u8 hs400_txclk_tapnum;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800160};
161
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800162static void rk3399_emmc_phy_power_on(struct rockchip_emmc_phy *phy, u32 clock)
163{
164 u32 caldone, dllrdy, freqsel;
165
166 writel(RK_CLRSETBITS(7 << 4, 0), &phy->emmcphy_con[6]);
167 writel(RK_CLRSETBITS(1 << 11, 1 << 11), &phy->emmcphy_con[0]);
168 writel(RK_CLRSETBITS(0xf << 7, 6 << 7), &phy->emmcphy_con[0]);
169
170 /*
171 * According to the user manual, calpad calibration
172 * cycle takes more than 2us without the minimal recommended
173 * value, so we may need a little margin here
174 */
175 udelay(3);
176 writel(RK_CLRSETBITS(1, 1), &phy->emmcphy_con[6]);
177
178 /*
179 * According to the user manual, it asks driver to
180 * wait 5us for calpad busy trimming. But it seems that
181 * 5us of caldone isn't enough for all cases.
182 */
183 udelay(500);
184 caldone = readl(&phy->emmcphy_status);
185 caldone = (caldone >> PHYCTRL_CALDONE_SHIFT) & PHYCTRL_CALDONE_MASK;
186 if (caldone != PHYCTRL_CALDONE_DONE) {
187 printf("%s: caldone timeout.\n", __func__);
188 return;
189 }
190
191 /* Set the frequency of the DLL operation */
192 if (clock < 75 * MHz)
193 freqsel = PHYCTRL_FREQSEL_50M;
194 else if (clock < 125 * MHz)
195 freqsel = PHYCTRL_FREQSEL_100M;
196 else if (clock < 175 * MHz)
197 freqsel = PHYCTRL_FREQSEL_150M;
198 else
199 freqsel = PHYCTRL_FREQSEL_200M;
200
201 /* Set the frequency of the DLL operation */
202 writel(RK_CLRSETBITS(3 << 12, freqsel << 12), &phy->emmcphy_con[0]);
203 writel(RK_CLRSETBITS(1 << 1, 1 << 1), &phy->emmcphy_con[6]);
204
Yifeng Zhao58ec23b2021-10-15 16:41:27 +0800205 /* REN Enable on STRB Line for HS400 */
206 writel(RK_CLRSETBITS(0, 1 << 9), &phy->emmcphy_con[2]);
207
Ariel D'Alessandro85573612022-04-12 10:31:35 -0300208 read_poll_timeout(readl, dllrdy, PHYCTRL_DLL_LOCK_WO_TMOUT(dllrdy), 1,
209 5000, &phy->emmcphy_status);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800210}
211
212static void rk3399_emmc_phy_power_off(struct rockchip_emmc_phy *phy)
213{
214 writel(RK_CLRSETBITS(1, 0), &phy->emmcphy_con[6]);
215 writel(RK_CLRSETBITS(1 << 1, 0), &phy->emmcphy_con[6]);
216}
217
218static int rk3399_emmc_get_phy(struct udevice *dev)
219{
220 struct rockchip_sdhc *priv = dev_get_priv(dev);
221 ofnode phy_node;
222 void *grf_base;
223 u32 grf_phy_offset, phandle;
224
225 phandle = dev_read_u32_default(dev, "phys", 0);
226 phy_node = ofnode_get_by_phandle(phandle);
227 if (!ofnode_valid(phy_node)) {
228 debug("Not found emmc phy device\n");
229 return -ENODEV;
230 }
231
232 grf_base = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
Haolin Li2ecb7492022-03-22 05:58:02 -0700233 if (IS_ERR_OR_NULL(grf_base)) {
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800234 printf("%s Get syscon grf failed", __func__);
235 return -ENODEV;
236 }
237 grf_phy_offset = ofnode_read_u32_default(phy_node, "reg", 0);
238
239 priv->phy = (struct rockchip_emmc_phy *)(grf_base + grf_phy_offset);
240
241 return 0;
242}
243
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300244static int rk3399_sdhci_set_enhanced_strobe(struct sdhci_host *host)
245{
246 struct mmc *mmc = host->mmc;
247 u32 vendor;
248
249 vendor = sdhci_readl(host, ARASAN_VENDOR_REGISTER);
250 if (mmc->selected_mode == MMC_HS_400_ES)
251 vendor |= ARASAN_VENDOR_ENHANCED_STROBE;
252 else
253 vendor &= ~ARASAN_VENDOR_ENHANCED_STROBE;
254 sdhci_writel(host, vendor, ARASAN_VENDOR_REGISTER);
255
256 return 0;
257}
258
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300259static void rk3399_sdhci_set_control_reg(struct sdhci_host *host)
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800260{
261 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300262 struct mmc *mmc = host->mmc;
263 uint clock = mmc->tran_speed;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800264 int cycle_phy = host->clock != clock && clock > EMMC_MIN_FREQ;
265
266 if (cycle_phy)
267 rk3399_emmc_phy_power_off(priv->phy);
268
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300269 sdhci_set_control_reg(host);
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300270
271 /*
272 * Reinitializing the device tries to set it to lower-speed modes
273 * first, which fails if the Enhanced Strobe bit is set, making
274 * the device impossible to use. Set the correct value here to
275 * let reinitialization attempts succeed.
276 */
277 if (CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT))
278 rk3399_sdhci_set_enhanced_strobe(host);
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300279};
280
281static int rk3399_sdhci_set_ios_post(struct sdhci_host *host)
282{
283 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
284 struct mmc *mmc = host->mmc;
285 uint clock = mmc->tran_speed;
286 int cycle_phy = host->clock != clock && clock > EMMC_MIN_FREQ;
287
288 if (!clock)
289 clock = mmc->clock;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800290
291 if (cycle_phy)
292 rk3399_emmc_phy_power_on(priv->phy, clock);
293
294 return 0;
295}
296
Jonas Karlman78df6352023-04-20 15:55:15 +0000297static void rk3568_sdhci_set_clock(struct sdhci_host *host, u32 div)
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800298{
299 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
Jonas Karlman78df6352023-04-20 15:55:15 +0000300 struct mmc *mmc = host->mmc;
301 ulong rate;
302
303 rate = clk_set_rate(&priv->emmc_clk, mmc->clock);
304 if (IS_ERR_VALUE(rate))
305 printf("%s: Set clock rate failed: %ld\n", __func__, (long)rate);
306}
307
308static int rk3568_sdhci_config_dll(struct sdhci_host *host, u32 clock, bool enable)
309{
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000310 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
311 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
312 struct mmc *mmc = host->mmc;
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800313 int val, ret;
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000314 u32 extra, txclk_tapnum;
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800315
Jonas Karlman68bc7022024-02-04 20:53:07 +0000316 if (!enable) {
317 sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CTRL);
Jonas Karlman78df6352023-04-20 15:55:15 +0000318 return 0;
Jonas Karlman68bc7022024-02-04 20:53:07 +0000319 }
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800320
321 if (clock >= 100 * MHz) {
322 /* reset DLL */
323 sdhci_writel(host, DWCMSHC_EMMC_DLL_CTRL_RESET, DWCMSHC_EMMC_DLL_CTRL);
324 udelay(1);
325 sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CTRL);
326
327 /* Init DLL settings */
328 extra = DWCMSHC_EMMC_DLL_START_DEFAULT << DWCMSHC_EMMC_DLL_START_POINT |
329 DWCMSHC_EMMC_DLL_INC_VALUE << DWCMSHC_EMMC_DLL_INC |
330 DWCMSHC_EMMC_DLL_START;
331 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CTRL);
332
Ariel D'Alessandro85573612022-04-12 10:31:35 -0300333 ret = read_poll_timeout(readl, val, DLL_LOCK_WO_TMOUT(val), 1,
334 500,
335 host->ioaddr + DWCMSHC_EMMC_DLL_STATUS0);
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800336 if (ret)
337 return ret;
338
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000339 extra = DWCMSHC_EMMC_DLL_DLYENA | DLL_RXCLK_ORI_GATE;
340 if (data->flags & FLAG_INVERTER_FLAG_IN_RXCLK)
341 extra |= DLL_RXCLK_NO_INVERTER;
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800342 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_RXCLK);
343
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000344 txclk_tapnum = data->hs200_txclk_tapnum;
345 if (mmc->selected_mode == MMC_HS_400 ||
346 mmc->selected_mode == MMC_HS_400_ES) {
347 txclk_tapnum = data->hs400_txclk_tapnum;
348
349 extra = DLL_CMDOUT_SRC_CLK_NEG |
350 DLL_CMDOUT_BOTH_CLK_EDGE |
351 DWCMSHC_EMMC_DLL_DLYENA |
352 DLL_CMDOUT_TAPNUM_90_DEGREES |
353 DLL_CMDOUT_TAPNUM_FROM_SW;
354 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CMDOUT);
355 }
356
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800357 extra = DWCMSHC_EMMC_DLL_DLYENA |
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000358 DLL_TXCLK_TAPNUM_FROM_SW |
359 DLL_TXCLK_NO_INVERTER |
360 txclk_tapnum;
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800361 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_TXCLK);
362
363 extra = DWCMSHC_EMMC_DLL_DLYENA |
Alper Nebi Yasak6f198692022-03-15 20:46:28 +0300364 DLL_STRBIN_TAPNUM_DEFAULT |
365 DLL_STRBIN_TAPNUM_FROM_SW;
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800366 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN);
367 } else {
Vasily Khoruzhickb58c6832023-03-08 17:28:30 -0800368 /*
369 * Disable DLL and reset both of sample and drive clock.
370 * The bypass bit and start bit need to be set if DLL is not locked.
371 */
Jonas Karlman9168fbf2023-04-18 16:46:35 +0000372 extra = DWCMSHC_EMMC_DLL_BYPASS | DWCMSHC_EMMC_DLL_START;
373 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CTRL);
Vasily Khoruzhickb58c6832023-03-08 17:28:30 -0800374 sdhci_writel(host, DLL_RXCLK_ORI_GATE, DWCMSHC_EMMC_DLL_RXCLK);
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800375 sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_TXCLK);
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000376 sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_CMDOUT);
Alper Nebi Yasak6f198692022-03-15 20:46:28 +0300377 /*
378 * Before switching to hs400es mode, the driver will enable
379 * enhanced strobe first. PHY needs to configure the parameters
380 * of enhanced strobe first.
381 */
382 extra = DWCMSHC_EMMC_DLL_DLYENA |
383 DLL_STRBIN_DELAY_NUM_SEL |
384 DLL_STRBIN_DELAY_NUM_DEFAULT << DLL_STRBIN_DELAY_NUM_OFFSET;
385 sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN);
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800386 }
387
388 return 0;
389}
390
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300391static int rk3568_sdhci_set_ios_post(struct sdhci_host *host)
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800392{
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800393 struct mmc *mmc = host->mmc;
Jonas Karlman9168fbf2023-04-18 16:46:35 +0000394 u32 reg;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800395
Jonas Karlmandbe75fbe2023-04-18 16:46:33 +0000396 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
397 reg &= ~SDHCI_CTRL_UHS_MASK;
398
399 switch (mmc->selected_mode) {
400 case UHS_SDR25:
401 case MMC_HS:
402 case MMC_HS_52:
403 reg |= SDHCI_CTRL_UHS_SDR25;
404 break;
405 case UHS_SDR50:
406 reg |= SDHCI_CTRL_UHS_SDR50;
407 break;
408 case UHS_DDR50:
409 case MMC_DDR_52:
410 reg |= SDHCI_CTRL_UHS_DDR50;
411 break;
412 case UHS_SDR104:
413 case MMC_HS_200:
414 reg |= SDHCI_CTRL_UHS_SDR104;
415 break;
416 case MMC_HS_400:
417 case MMC_HS_400_ES:
Alper Nebi Yasak6f198692022-03-15 20:46:28 +0300418 reg |= DWCMSHC_CTRL_HS400;
Jonas Karlmandbe75fbe2023-04-18 16:46:33 +0000419 break;
420 default:
421 reg |= SDHCI_CTRL_UHS_SDR12;
422 }
Alper Nebi Yasak6f198692022-03-15 20:46:28 +0300423
Jonas Karlmandbe75fbe2023-04-18 16:46:33 +0000424 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
425
Jonas Karlman9168fbf2023-04-18 16:46:35 +0000426 reg = sdhci_readw(host, DWCMSHC_EMMC_EMMC_CTRL);
Jonas Karlmandbe75fbe2023-04-18 16:46:33 +0000427
428 if (IS_MMC(mmc))
Alper Nebi Yasak6f198692022-03-15 20:46:28 +0300429 reg |= DWCMSHC_CARD_IS_EMMC;
Jonas Karlmandbe75fbe2023-04-18 16:46:33 +0000430 else
431 reg &= ~DWCMSHC_CARD_IS_EMMC;
432
433 if (mmc->selected_mode == MMC_HS_400_ES)
434 reg |= DWCMSHC_ENHANCED_STROBE;
435 else
436 reg &= ~DWCMSHC_ENHANCED_STROBE;
437
Jonas Karlman9168fbf2023-04-18 16:46:35 +0000438 sdhci_writew(host, reg, DWCMSHC_EMMC_EMMC_CTRL);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800439
440 return 0;
441}
442
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300443static void rockchip_sdhci_set_control_reg(struct sdhci_host *host)
444{
445 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
446 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
447
448 if (data->set_control_reg)
449 data->set_control_reg(host);
450}
451
452static int rockchip_sdhci_set_ios_post(struct sdhci_host *host)
453{
454 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
455 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
456
457 if (data->set_ios_post)
458 return data->set_ios_post(host);
459
460 return 0;
461}
462
Jonas Karlmanea312462023-04-18 16:46:29 +0000463static void rockchip_sdhci_set_clock(struct sdhci_host *host, u32 div)
464{
465 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
466 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
467
468 if (data->set_clock)
469 data->set_clock(host, div);
470}
471
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800472static int rockchip_sdhci_execute_tuning(struct mmc *mmc, u8 opcode)
473{
Jonas Karlman99f38882023-04-18 16:46:26 +0000474 struct rockchip_sdhc *priv = dev_get_priv(mmc->dev);
475 struct sdhci_host *host = &priv->host;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800476 char tuning_loop_counter = SDHCI_TUNING_LOOP_COUNT;
477 struct mmc_cmd cmd;
478 u32 ctrl, blk_size;
Jonas Karlmanfdea3712023-04-18 16:46:31 +0000479 int ret;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800480
481 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
482 ctrl |= SDHCI_CTRL_EXEC_TUNING;
483 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
484
485 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800486
487 blk_size = SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, 64);
Jonas Karlmanfdea3712023-04-18 16:46:31 +0000488 if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200 && mmc->bus_width == 8)
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800489 blk_size = SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, 128);
490 sdhci_writew(host, blk_size, SDHCI_BLOCK_SIZE);
491 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
492
493 cmd.cmdidx = opcode;
494 cmd.resp_type = MMC_RSP_R1;
495 cmd.cmdarg = 0;
496
497 do {
Jonas Karlmanfdea3712023-04-18 16:46:31 +0000498 ret = mmc_send_cmd(mmc, &cmd, NULL);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800499 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Jonas Karlmanfdea3712023-04-18 16:46:31 +0000500 if (ret || tuning_loop_counter-- == 0)
501 break;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800502 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
503
Jonas Karlmanfdea3712023-04-18 16:46:31 +0000504 if (ret || tuning_loop_counter < 0 || !(ctrl & SDHCI_CTRL_TUNED_CLK)) {
505 if (!ret)
506 ret = -EIO;
507 printf("%s: Tuning failed: %d\n", __func__, ret);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800508
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800509 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
Jonas Karlmanfdea3712023-04-18 16:46:31 +0000510 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
511 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800512 }
513
514 /* Enable only interrupts served by the SD controller */
515 sdhci_writel(host, SDHCI_INT_DATA_MASK | SDHCI_INT_CMD_MASK, SDHCI_INT_ENABLE);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800516
517 return ret;
518}
519
Jonas Karlmanea312462023-04-18 16:46:29 +0000520static int rockchip_sdhci_config_dll(struct sdhci_host *host, u32 clock, bool enable)
521{
522 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
523 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
524
525 if (data->config_dll)
526 return data->config_dll(host, clock, enable);
527
528 return 0;
529}
530
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300531static int rockchip_sdhci_set_enhanced_strobe(struct sdhci_host *host)
532{
533 struct rockchip_sdhc *priv = container_of(host, struct rockchip_sdhc, host);
534 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(priv->dev);
535
536 if (data->set_enhanced_strobe)
537 return data->set_enhanced_strobe(host);
538
Jonas Karlmandd2707f2023-04-18 16:46:34 +0000539 return 0;
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300540}
541
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800542static struct sdhci_ops rockchip_sdhci_ops = {
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300543 .set_control_reg = rockchip_sdhci_set_control_reg,
Jonas Karlmanea312462023-04-18 16:46:29 +0000544 .set_ios_post = rockchip_sdhci_set_ios_post,
545 .set_clock = rockchip_sdhci_set_clock,
546 .platform_execute_tuning = rockchip_sdhci_execute_tuning,
547 .config_dll = rockchip_sdhci_config_dll,
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300548 .set_enhanced_strobe = rockchip_sdhci_set_enhanced_strobe,
Kever Yang65922e02016-07-18 17:00:58 +0800549};
550
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800551static int rockchip_sdhci_probe(struct udevice *dev)
Kever Yang65922e02016-07-18 17:00:58 +0800552{
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800553 struct sdhci_data *data = (struct sdhci_data *)dev_get_driver_data(dev);
Kever Yang65922e02016-07-18 17:00:58 +0800554 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassfa20e932020-12-03 16:55:20 -0700555 struct rockchip_sdhc_plat *plat = dev_get_plat(dev);
Jonas Karlman99f38882023-04-18 16:46:26 +0000556 struct rockchip_sdhc *priv = dev_get_priv(dev);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800557 struct mmc_config *cfg = &plat->cfg;
Jonas Karlman99f38882023-04-18 16:46:26 +0000558 struct sdhci_host *host = &priv->host;
Kever Yang9ea1fdf2016-12-28 11:32:35 +0800559 struct clk clk;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800560 int ret;
Kever Yang9ea1fdf2016-12-28 11:32:35 +0800561
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800562 host->max_clk = cfg->f_max;
Kever Yang9ea1fdf2016-12-28 11:32:35 +0800563 ret = clk_get_by_index(dev, 0, &clk);
564 if (!ret) {
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800565 ret = clk_set_rate(&clk, host->max_clk);
Kever Yang9ea1fdf2016-12-28 11:32:35 +0800566 if (IS_ERR_VALUE(ret))
567 printf("%s clk set rate fail!\n", __func__);
568 } else {
569 printf("%s fail to get clk\n", __func__);
570 }
Kever Yang65922e02016-07-18 17:00:58 +0800571
Jonas Karlman99f38882023-04-18 16:46:26 +0000572 priv->emmc_clk = clk;
573 priv->dev = dev;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800574
575 if (data->get_phy) {
576 ret = data->get_phy(dev);
577 if (ret)
578 return ret;
579 }
580
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800581 host->ops = &rockchip_sdhci_ops;
Kever Yang65922e02016-07-18 17:00:58 +0800582 host->quirks = SDHCI_QUIRK_WAIT_SEND_CMD;
583
Kever Yang65922e02016-07-18 17:00:58 +0800584 host->mmc = &plat->mmc;
Jonas Karlman99f38882023-04-18 16:46:26 +0000585 host->mmc->priv = &priv->host;
Kever Yang65922e02016-07-18 17:00:58 +0800586 host->mmc->dev = dev;
587 upriv->mmc = host->mmc;
588
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800589 ret = sdhci_setup_cfg(cfg, host, cfg->f_max, EMMC_MIN_FREQ);
Kever Yang36d9bf82019-07-19 18:01:11 +0800590 if (ret)
591 return ret;
592
Jonas Karlman5d259362023-04-18 16:46:45 +0000593 /*
Jonas Karlmanf79c5372023-05-06 17:41:11 +0000594 * Disable use of DMA and force use of PIO mode in SPL to fix an issue
595 * where loading part of TF-A into SRAM using DMA silently fails.
596 */
597 if (IS_ENABLED(CONFIG_SPL_BUILD) &&
598 dev_read_bool(dev, "u-boot,spl-fifo-mode"))
599 host->flags &= ~USE_DMA;
600
601 /*
Jonas Karlman5d259362023-04-18 16:46:45 +0000602 * Reading more than 4 blocks with a single CMD18 command in PIO mode
603 * triggers Data End Bit Error on RK3568 and RK3588. Limit to reading
604 * max 4 blocks in one command when using PIO mode.
605 */
Jonas Karlmanf9059472023-05-06 17:41:09 +0000606 if (!(host->flags & USE_DMA) &&
607 (device_is_compatible(dev, "rockchip,rk3568-dwcmshc") ||
608 device_is_compatible(dev, "rockchip,rk3588-dwcmshc")))
Jonas Karlman5d259362023-04-18 16:46:45 +0000609 cfg->b_max = 4;
610
Kever Yang65922e02016-07-18 17:00:58 +0800611 return sdhci_probe(dev);
612}
613
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800614static int rockchip_sdhci_of_to_plat(struct udevice *dev)
Kever Yang65922e02016-07-18 17:00:58 +0800615{
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800616 struct rockchip_sdhc_plat *plat = dev_get_plat(dev);
Jonas Karlman99f38882023-04-18 16:46:26 +0000617 struct rockchip_sdhc *priv = dev_get_priv(dev);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800618 struct mmc_config *cfg = &plat->cfg;
Jonas Karlman99f38882023-04-18 16:46:26 +0000619 struct sdhci_host *host = &priv->host;
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800620 int ret;
Kever Yang65922e02016-07-18 17:00:58 +0800621
622 host->name = dev->name;
Philipp Tomsichdbb28282017-09-11 22:04:21 +0200623 host->ioaddr = dev_read_addr_ptr(dev);
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800624
625 ret = mmc_of_parse(dev, cfg);
626 if (ret)
627 return ret;
Kever Yang65922e02016-07-18 17:00:58 +0800628
629 return 0;
630}
631
632static int rockchip_sdhci_bind(struct udevice *dev)
633{
Simon Glassfa20e932020-12-03 16:55:20 -0700634 struct rockchip_sdhc_plat *plat = dev_get_plat(dev);
Kever Yang65922e02016-07-18 17:00:58 +0800635
Masahiro Yamadacdb67f32016-09-06 22:17:32 +0900636 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
Kever Yang65922e02016-07-18 17:00:58 +0800637}
638
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800639static const struct sdhci_data rk3399_data = {
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800640 .get_phy = rk3399_emmc_get_phy,
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300641 .set_control_reg = rk3399_sdhci_set_control_reg,
642 .set_ios_post = rk3399_sdhci_set_ios_post,
Alper Nebi Yasak9099d032022-03-15 20:46:27 +0300643 .set_enhanced_strobe = rk3399_sdhci_set_enhanced_strobe,
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800644};
645
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800646static const struct sdhci_data rk3568_data = {
Alper Nebi Yasak676a5a52022-01-29 01:42:37 +0300647 .set_ios_post = rk3568_sdhci_set_ios_post,
Jonas Karlman78df6352023-04-20 15:55:15 +0000648 .set_clock = rk3568_sdhci_set_clock,
649 .config_dll = rk3568_sdhci_config_dll,
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000650 .flags = FLAG_INVERTER_FLAG_IN_RXCLK,
651 .hs200_txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT,
Jonas Karlman68bc7022024-02-04 20:53:07 +0000652 .hs400_txclk_tapnum = 0x8,
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800653};
654
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000655static const struct sdhci_data rk3588_data = {
656 .set_ios_post = rk3568_sdhci_set_ios_post,
657 .set_clock = rk3568_sdhci_set_clock,
658 .config_dll = rk3568_sdhci_config_dll,
659 .hs200_txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT,
Jonas Karlman68bc7022024-02-04 20:53:07 +0000660 .hs400_txclk_tapnum = 0x9,
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000661};
662
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800663static const struct udevice_id sdhci_ids[] = {
664 {
665 .compatible = "arasan,sdhci-5.1",
666 .data = (ulong)&rk3399_data,
667 },
Yifeng Zhaoe5dddfa2021-06-29 16:24:42 +0800668 {
669 .compatible = "rockchip,rk3568-dwcmshc",
670 .data = (ulong)&rk3568_data,
671 },
Jonas Karlmanee7115f2023-04-18 16:46:39 +0000672 {
673 .compatible = "rockchip,rk3588-dwcmshc",
674 .data = (ulong)&rk3588_data,
675 },
Kever Yang65922e02016-07-18 17:00:58 +0800676 { }
677};
678
679U_BOOT_DRIVER(arasan_sdhci_drv) = {
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800680 .name = "rockchip_sdhci_5_1",
Kever Yang65922e02016-07-18 17:00:58 +0800681 .id = UCLASS_MMC,
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800682 .of_match = sdhci_ids,
683 .of_to_plat = rockchip_sdhci_of_to_plat,
Kever Yang65922e02016-07-18 17:00:58 +0800684 .ops = &sdhci_ops,
685 .bind = rockchip_sdhci_bind,
Yifeng Zhao5c2a5ab2021-06-29 16:24:41 +0800686 .probe = rockchip_sdhci_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700687 .priv_auto = sizeof(struct rockchip_sdhc),
Simon Glass71fa5b42020-12-03 16:55:18 -0700688 .plat_auto = sizeof(struct rockchip_sdhc_plat),
Kever Yang65922e02016-07-18 17:00:58 +0800689};