blob: fe834ec296922be72654bd280b4236a484189eb6 [file] [log] [blame]
Maksim Kiselev6d6a8902024-12-11 23:10:59 +03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2024 Maksim Kiselev <bigunclemax@gmail.com>
4 */
5
6#include <clk.h>
7#include <dm.h>
8#include <linux/bitfield.h>
Tom Rini546e96b2025-05-21 16:51:20 -06009#include <linux/sizes.h>
Maksim Kiselev6d6a8902024-12-11 23:10:59 +030010#include <sdhci.h>
11
12/* DWCMSHC specific Mode Select value */
13#define DWCMSHC_CTRL_HS400 0x7
14/* 400KHz is max freq for card ID etc. Use that as min */
15#define EMMC_MIN_FREQ 400000
16#define SDHCI_TUNING_LOOP_COUNT 128
17
18/* PHY register area pointer */
19#define DWC_MSHC_PTR_PHY_R 0x300
20
21/* PHY general configuration */
22#define PHY_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x00)
23#define PHY_CNFG_RSTN_DEASSERT 0x1 /* Deassert PHY reset */
24#define PHY_CNFG_PAD_SP_MASK GENMASK(19, 16) /* bits [19:16] */
25#define PHY_CNFG_PAD_SP 0x0c /* PMOS TX drive strength */
26#define PHY_CNFG_PAD_SN_MASK GENMASK(23, 20) /* bits [23:20] */
27#define PHY_CNFG_PAD_SN 0x0c /* NMOS TX drive strength */
28
29/* PHY command/response pad settings */
30#define PHY_CMDPAD_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x04)
31
32/* PHY data pad settings */
33#define PHY_DATAPAD_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x06)
34
35/* PHY clock pad settings */
36#define PHY_CLKPAD_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x08)
37
38/* PHY strobe pad settings */
39#define PHY_STBPAD_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x0a)
40
41/* PHY reset pad settings */
42#define PHY_RSTNPAD_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x0c)
43
44/* Bitfields are common for all pad settings */
45#define PHY_PAD_RXSEL_1V8 0x1 /* Receiver type select for 1.8V */
46#define PHY_PAD_RXSEL_3V3 0x2 /* Receiver type select for 3.3V */
47
48#define PHY_PAD_WEAKPULL_MASK GENMASK(4, 3) /* bits [4:3] */
49#define PHY_PAD_WEAKPULL_PULLUP 0x1 /* Weak pull up enabled */
50#define PHY_PAD_WEAKPULL_PULLDOWN 0x2 /* Weak pull down enabled */
51
52#define PHY_PAD_TXSLEW_CTRL_P_MASK GENMASK(8, 5) /* bits [8:5] */
53#define PHY_PAD_TXSLEW_CTRL_P 0x3 /* Slew control for P-Type pad TX */
54#define PHY_PAD_TXSLEW_CTRL_N_MASK GENMASK(12, 9) /* bits [12:9] */
55#define PHY_PAD_TXSLEW_CTRL_N 0x3 /* Slew control for N-Type pad TX */
56
57/* PHY CLK delay line settings */
58#define PHY_SDCLKDL_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x1d)
59#define PHY_SDCLKDL_CNFG_UPDATE BIT(4) /* set before writing to SDCLKDL_DC */
60
61/* PHY CLK delay line delay code */
62#define PHY_SDCLKDL_DC_R (DWC_MSHC_PTR_PHY_R + 0x1e)
63#define PHY_SDCLKDL_DC_INITIAL 0x40 /* initial delay code */
64#define PHY_SDCLKDL_DC_DEFAULT 0x32 /* default delay code */
65#define PHY_SDCLKDL_DC_HS400 0x18 /* delay code for HS400 mode */
66
67/* PHY drift_cclk_rx delay line configuration setting */
68#define PHY_ATDL_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x21)
69#define PHY_ATDL_CNFG_INPSEL_MASK GENMASK(3, 2) /* bits [3:2] */
70#define PHY_ATDL_CNFG_INPSEL 0x3 /* delay line input source */
71
72/* PHY DLL control settings */
73#define PHY_DLL_CTRL_R (DWC_MSHC_PTR_PHY_R + 0x24)
74#define PHY_DLL_CTRL_DISABLE 0x0 /* PHY DLL is enabled */
75#define PHY_DLL_CTRL_ENABLE 0x1 /* PHY DLL is disabled */
76
77/* PHY DLL configuration register 1 */
78#define PHY_DLL_CNFG1_R (DWC_MSHC_PTR_PHY_R + 0x25)
79#define PHY_DLL_CNFG1_SLVDLY_MASK GENMASK(5, 4) /* bits [5:4] */
80#define PHY_DLL_CNFG1_SLVDLY 0x2 /* DLL slave update delay input */
81#define PHY_DLL_CNFG1_WAITCYCLE 0x5 /* DLL wait cycle input */
82
83/* PHY DLL configuration register 2 */
84#define PHY_DLL_CNFG2_R (DWC_MSHC_PTR_PHY_R + 0x26)
85#define PHY_DLL_CNFG2_JUMPSTEP 0xa /* DLL jump step input */
86
87/* PHY DLL master and slave delay line configuration settings */
88#define PHY_DLLDL_CNFG_R (DWC_MSHC_PTR_PHY_R + 0x28)
89#define PHY_DLLDL_CNFG_SLV_INPSEL_MASK GENMASK(6, 5) /* bits [6:5] */
90#define PHY_DLLDL_CNFG_SLV_INPSEL 0x3 /* clock source select for slave DL */
91
92/* Vendor specific Registers */
93#define P_VENDOR_SPECIFIC_AREA 0x500
94
95#define DWCMSHC_EMMC_CONTROL 0x2c
96#define DWCMSHC_CARD_IS_EMMC BIT(0)
97#define DWCMSHC_ENHANCED_STROBE BIT(8)
98#define DWCMSHC_EMMC_ATCTRL 0x40
99/* Tuning and auto-tuning fields in AT_CTRL_R control register */
100#define AT_CTRL_AT_EN BIT(0) /* autotuning is enabled */
101#define AT_CTRL_CI_SEL BIT(1) /* interval to drive center phase select */
102#define AT_CTRL_SWIN_TH_EN BIT(2) /* sampling window threshold enable */
103#define AT_CTRL_RPT_TUNE_ERR BIT(3) /* enable reporting framing errors */
104#define AT_CTRL_SW_TUNE_EN BIT(4) /* enable software managed tuning */
105#define AT_CTRL_WIN_EDGE_SEL_MASK GENMASK(11, 8) /* bits [11:8] */
106#define AT_CTRL_WIN_EDGE_SEL 0xf /* sampling window edge select */
107#define AT_CTRL_TUNE_CLK_STOP_EN BIT(16) /* clocks stopped during phase code change */
108#define AT_CTRL_PRE_CHANGE_DLY_MASK GENMASK(18, 17) /* bits [18:17] */
109#define AT_CTRL_PRE_CHANGE_DLY 0x1 /* 2-cycle latency */
110#define AT_CTRL_POST_CHANGE_DLY_MASK GENMASK(20, 19) /* bits [20:19] */
111#define AT_CTRL_POST_CHANGE_DLY 0x3 /* 4-cycle latency */
112#define AT_CTRL_SWIN_TH_VAL_MASK GENMASK(31, 24) /* bits [31:24] */
113#define AT_CTRL_SWIN_TH_VAL 0x9 /* sampling window threshold */
114
115#define FLAG_IO_FIXED_1V8 BIT(0)
116
117#define BOUNDARY_OK(addr, len) \
118 (((addr) | (SZ_128M - 1)) == (((addr) + (len) - 1) | (SZ_128M - 1)))
119
120struct snps_sdhci_plat {
121 struct mmc_config cfg;
122 struct mmc mmc;
123 u16 delay_line;
124 u16 flags;
125};
126
127/*
128 * If DMA addr spans 128MB boundary, we split the DMA transfer into two
129 * so that each DMA transfer doesn't exceed the boundary.
130 */
131void snps_sdhci_adma_write_desc(struct sdhci_host *host, void **desc,
132 dma_addr_t addr, int len, bool end)
133{
134 int tmplen, offset;
135
136 if (likely(!len || BOUNDARY_OK(addr, len))) {
137 sdhci_adma_write_desc(host, desc, addr, len, end);
138 return;
139 }
140
141 offset = addr & (SZ_128M - 1);
142 tmplen = SZ_128M - offset;
143 sdhci_adma_write_desc(host, desc, addr, tmplen, false);
144
145 addr += tmplen;
146 len -= tmplen;
147 sdhci_adma_write_desc(host, desc, addr, len, end);
148}
149
150static void snps_sdhci_set_phy(struct sdhci_host *host)
151{
152 struct snps_sdhci_plat *plat = dev_get_plat(host->mmc->dev);
153 u32 rxsel = PHY_PAD_RXSEL_3V3;
154 u32 val;
155
156 if (plat->flags & FLAG_IO_FIXED_1V8 ||
157 host->mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
158 rxsel = PHY_PAD_RXSEL_1V8;
159
160 /* deassert phy reset & set tx drive strength */
161 val = PHY_CNFG_RSTN_DEASSERT;
162 val |= FIELD_PREP(PHY_CNFG_PAD_SP_MASK, PHY_CNFG_PAD_SP);
163 val |= FIELD_PREP(PHY_CNFG_PAD_SN_MASK, PHY_CNFG_PAD_SN);
164 sdhci_writel(host, val, PHY_CNFG_R);
165
166 /* disable delay line */
167 sdhci_writeb(host, PHY_SDCLKDL_CNFG_UPDATE, PHY_SDCLKDL_CNFG_R);
168
169 /* set delay line */
170 sdhci_writeb(host, plat->delay_line, PHY_SDCLKDL_DC_R);
171 sdhci_writeb(host, PHY_DLL_CNFG2_JUMPSTEP, PHY_DLL_CNFG2_R);
172
173 /* enable delay lane */
174 val = sdhci_readb(host, PHY_SDCLKDL_CNFG_R);
175 val &= ~(PHY_SDCLKDL_CNFG_UPDATE);
176 sdhci_writeb(host, val, PHY_SDCLKDL_CNFG_R);
177
178 /* configure phy pads */
179 val = rxsel;
180 val |= FIELD_PREP(PHY_PAD_WEAKPULL_MASK, PHY_PAD_WEAKPULL_PULLUP);
181 val |= FIELD_PREP(PHY_PAD_TXSLEW_CTRL_P_MASK, PHY_PAD_TXSLEW_CTRL_P);
182 val |= FIELD_PREP(PHY_PAD_TXSLEW_CTRL_N_MASK, PHY_PAD_TXSLEW_CTRL_N);
183 sdhci_writew(host, val, PHY_CMDPAD_CNFG_R);
184 sdhci_writew(host, val, PHY_DATAPAD_CNFG_R);
185 sdhci_writew(host, val, PHY_RSTNPAD_CNFG_R);
186
187 val = FIELD_PREP(PHY_PAD_TXSLEW_CTRL_P_MASK, PHY_PAD_TXSLEW_CTRL_P);
188 val |= FIELD_PREP(PHY_PAD_TXSLEW_CTRL_N_MASK, PHY_PAD_TXSLEW_CTRL_N);
189 sdhci_writew(host, val, PHY_CLKPAD_CNFG_R);
190
191 val = rxsel;
192 val |= FIELD_PREP(PHY_PAD_WEAKPULL_MASK, PHY_PAD_WEAKPULL_PULLDOWN);
193 val |= FIELD_PREP(PHY_PAD_TXSLEW_CTRL_P_MASK, PHY_PAD_TXSLEW_CTRL_P);
194 val |= FIELD_PREP(PHY_PAD_TXSLEW_CTRL_N_MASK, PHY_PAD_TXSLEW_CTRL_N);
195 sdhci_writew(host, val, PHY_STBPAD_CNFG_R);
196
197 /* enable data strobe mode */
198 if (plat->flags & FLAG_IO_FIXED_1V8 ||
199 host->mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180) {
200 u8 sel = FIELD_PREP(PHY_DLLDL_CNFG_SLV_INPSEL_MASK, PHY_DLLDL_CNFG_SLV_INPSEL);
201
202 sdhci_writeb(host, sel, PHY_DLLDL_CNFG_R);
203 }
204
205 /* enable phy dll */
206 sdhci_writeb(host, PHY_DLL_CTRL_ENABLE, PHY_DLL_CTRL_R);
207
208 sdhci_writeb(host, FIELD_PREP(PHY_DLL_CNFG1_SLVDLY_MASK, PHY_DLL_CNFG1_SLVDLY) |
209 PHY_DLL_CNFG1_WAITCYCLE, PHY_DLL_CNFG1_R);
210}
211
212static int snps_sdhci_set_ios_post(struct sdhci_host *host)
213{
214 struct snps_sdhci_plat *plat = dev_get_plat(host->mmc->dev);
215 struct mmc *mmc = host->mmc;
216 u32 reg;
217
218 reg = sdhci_readw(host, SDHCI_HOST_CONTROL2);
219 reg &= ~SDHCI_CTRL_UHS_MASK;
220
221 switch (mmc->selected_mode) {
222 case UHS_SDR50:
223 case MMC_HS_52:
224 reg |= SDHCI_CTRL_UHS_SDR50;
225 break;
226 case UHS_DDR50:
227 case MMC_DDR_52:
228 reg |= SDHCI_CTRL_UHS_DDR50;
229 break;
230 case UHS_SDR104:
231 case MMC_HS_200:
232 reg |= SDHCI_CTRL_UHS_SDR104;
233 break;
234 case MMC_HS_400:
235 case MMC_HS_400_ES:
236 reg |= DWCMSHC_CTRL_HS400;
237 break;
238 default:
239 reg |= SDHCI_CTRL_UHS_SDR12;
240 }
241
242 if ((plat->flags & FLAG_IO_FIXED_1V8) ||
243 mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
244 reg |= SDHCI_CTRL_VDD_180;
245 else
246 reg &= ~SDHCI_CTRL_VDD_180;
247
248 sdhci_writew(host, reg, SDHCI_HOST_CONTROL2);
249
250 reg = sdhci_readw(host, P_VENDOR_SPECIFIC_AREA + DWCMSHC_EMMC_CONTROL);
251
252 if (IS_MMC(mmc))
253 reg |= DWCMSHC_CARD_IS_EMMC;
254 else
255 reg &= ~DWCMSHC_CARD_IS_EMMC;
256
257 if (mmc->selected_mode == MMC_HS_400_ES)
258 reg |= DWCMSHC_ENHANCED_STROBE;
259 else
260 reg &= ~DWCMSHC_ENHANCED_STROBE;
261
262 sdhci_writeb(host, reg, P_VENDOR_SPECIFIC_AREA + DWCMSHC_EMMC_CONTROL);
263
264 if (mmc->selected_mode == MMC_HS_400 ||
265 mmc->selected_mode == MMC_HS_400_ES)
266 plat->delay_line = PHY_SDCLKDL_DC_HS400;
267 else
268 sdhci_writeb(host, 0, PHY_DLLDL_CNFG_R);
269
270 snps_sdhci_set_phy(host);
271
272 return 0;
273}
274
275static int snps_sdhci_execute_tuning(struct mmc *mmc, u8 opcode)
276{
277 struct sdhci_host *host = dev_get_priv(mmc->dev);
278 char tuning_loop_counter = SDHCI_TUNING_LOOP_COUNT;
279 struct mmc_cmd cmd;
280 u32 ctrl, blk_size, val;
281 int ret;
282
283 sdhci_writeb(host, FIELD_PREP(PHY_ATDL_CNFG_INPSEL_MASK, PHY_ATDL_CNFG_INPSEL),
284 PHY_ATDL_CNFG_R);
285 val = sdhci_readl(host, P_VENDOR_SPECIFIC_AREA + DWCMSHC_EMMC_ATCTRL);
286
287 /*
288 * configure tuning settings:
289 * - center phase select code driven in block gap interval
290 * - disable reporting of framing errors
291 * - disable software managed tuning
292 * - disable user selection of sampling window edges,
293 * instead tuning calculated edges are used
294 */
295 val &= ~(AT_CTRL_CI_SEL | AT_CTRL_RPT_TUNE_ERR | AT_CTRL_SW_TUNE_EN |
296 FIELD_PREP(AT_CTRL_WIN_EDGE_SEL_MASK, AT_CTRL_WIN_EDGE_SEL));
297
298 /*
299 * configure tuning settings:
300 * - enable auto-tuning
301 * - enable sampling window threshold
302 * - stop clocks during phase code change
303 * - set max latency in cycles between tx and rx clocks
304 * - set max latency in cycles to switch output phase
305 * - set max sampling window threshold value
306 */
307 val |= AT_CTRL_AT_EN | AT_CTRL_SWIN_TH_EN | AT_CTRL_TUNE_CLK_STOP_EN;
308 val |= FIELD_PREP(AT_CTRL_PRE_CHANGE_DLY_MASK, AT_CTRL_PRE_CHANGE_DLY);
309 val |= FIELD_PREP(AT_CTRL_POST_CHANGE_DLY_MASK, AT_CTRL_POST_CHANGE_DLY);
310 val |= FIELD_PREP(AT_CTRL_SWIN_TH_VAL_MASK, AT_CTRL_SWIN_TH_VAL);
311
312 sdhci_writel(host, val, P_VENDOR_SPECIFIC_AREA + DWCMSHC_EMMC_ATCTRL);
313 val = sdhci_readl(host, P_VENDOR_SPECIFIC_AREA + DWCMSHC_EMMC_ATCTRL);
314
315 /* perform tuning */
316 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
317 ctrl |= SDHCI_CTRL_EXEC_TUNING;
318 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
319
320 blk_size = SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, 64);
321 if (opcode == MMC_CMD_SEND_TUNING_BLOCK_HS200 && mmc->bus_width == 8)
322 blk_size = SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG, 128);
323 sdhci_writew(host, blk_size, SDHCI_BLOCK_SIZE);
324 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
325
326 cmd.cmdidx = opcode;
327 cmd.resp_type = MMC_RSP_R1;
328 cmd.cmdarg = 0;
329
330 do {
331 ret = mmc_send_cmd(mmc, &cmd, NULL);
332 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
333 if (ret || tuning_loop_counter-- == 0)
334 break;
335
336 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
337
338 if (ret || tuning_loop_counter < 0 || !(ctrl & SDHCI_CTRL_TUNED_CLK)) {
339 if (!ret)
340 ret = -EIO;
341 printf("%s: Tuning failed: %d\n", __func__, ret);
342
343 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
344 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
345 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
346 }
347
348 return ret;
349}
350
351static int snps_sdhci_set_enhanced_strobe(struct sdhci_host *host)
352{
353 return 0;
354}
355
356static const struct sdhci_ops snps_sdhci_ops = {
357 .set_ios_post = snps_sdhci_set_ios_post,
358 .platform_execute_tuning = snps_sdhci_execute_tuning,
359 .set_enhanced_strobe = snps_sdhci_set_enhanced_strobe,
360#if CONFIG_IS_ENABLED(MMC_SDHCI_ADMA_HELPERS)
361 .adma_write_desc = snps_sdhci_adma_write_desc,
362#endif
363};
364
365static int snps_sdhci_probe(struct udevice *dev)
366{
367 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
368 struct snps_sdhci_plat *plat = dev_get_plat(dev);
369 struct mmc_config *cfg = &plat->cfg;
370 struct sdhci_host *host = dev_get_priv(dev);
371 struct clk clk;
372 int ret;
373
374 plat->delay_line = PHY_SDCLKDL_DC_DEFAULT;
375
376 ret = clk_get_by_name(dev, "core", &clk);
377 if (ret)
378 return ret;
379
380 ret = clk_prepare_enable(&clk);
381 if (ret)
382 return ret;
383
384 host->max_clk = clk_get_rate(&clk);
385
386 host->ops = &snps_sdhci_ops;
387
388 host->mmc = &plat->mmc;
389 host->mmc->priv = host;
390 host->mmc->dev = dev;
391 upriv->mmc = host->mmc;
392
393 ret = sdhci_setup_cfg(cfg, host, cfg->f_max, EMMC_MIN_FREQ);
394 if (ret)
395 return ret;
396
397 if ((dev_read_bool(dev, "mmc-ddr-1_8v")) ||
398 (dev_read_bool(dev, "mmc-hs200-1_8v")) ||
399 (dev_read_bool(dev, "mmc-hs400-1_8v")))
400 plat->flags |= FLAG_IO_FIXED_1V8;
401 else
402 plat->flags &= ~FLAG_IO_FIXED_1V8;
403
404 return sdhci_probe(dev);
405}
406
407static int snps_sdhci_of_to_plat(struct udevice *dev)
408{
409 struct snps_sdhci_plat *plat = dev_get_plat(dev);
410 struct mmc_config *cfg = &plat->cfg;
411 struct sdhci_host *host = dev_get_priv(dev);
412 int ret;
413
414 host->name = dev->name;
415 host->ioaddr = dev_read_addr_ptr(dev);
416
417 ret = mmc_of_parse(dev, cfg);
418 if (ret)
419 return ret;
420
421 return 0;
422}
423
424static int snps_sdhci_bind(struct udevice *dev)
425{
426 struct snps_sdhci_plat *plat = dev_get_plat(dev);
427
428 return sdhci_bind(dev, &plat->mmc, &plat->cfg);
429}
430
431static const struct udevice_id snps_sdhci_ids[] = {
432 { .compatible = "thead,th1520-dwcmshc" }
433};
434
435U_BOOT_DRIVER(snps_sdhci_drv) = {
436 .name = "snps_sdhci",
437 .id = UCLASS_MMC,
438 .of_match = snps_sdhci_ids,
439 .of_to_plat = snps_sdhci_of_to_plat,
440 .ops = &sdhci_ops,
441 .bind = snps_sdhci_bind,
442 .probe = snps_sdhci_probe,
443 .priv_auto = sizeof(struct sdhci_host),
444 .plat_auto = sizeof(struct snps_sdhci_plat),
445};