blob: 39ae79ba129308a5e24620c154ec5a4569599462 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Patrice Chotardae19b812017-09-04 17:56:22 +02002/*
Patrice Chotard789ee0e2017-10-23 09:53:58 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
Patrice Chotard5d9950d2020-12-02 18:47:30 +01004 * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
Patrice Chotardae19b812017-09-04 17:56:22 +02005 */
6
Patrick Delaunay758de432020-11-06 19:01:37 +01007#define LOG_CATEGORY UCLASS_MMC
8
Patrice Chotardae19b812017-09-04 17:56:22 +02009#include <common.h>
10#include <clk.h>
Simon Glass63334482019-11-14 12:57:39 -070011#include <cpu_func.h>
Patrice Chotardae19b812017-09-04 17:56:22 +020012#include <dm.h>
13#include <fdtdec.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <malloc.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060016#include <asm/bitops.h>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Patrick Delaunay758de432020-11-06 19:01:37 +010018#include <dm/device_compat.h>
Marek Vasut98a12052021-11-13 03:29:43 +010019#include <dm/pinctrl.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060020#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060021#include <linux/delay.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Patrice Chotardae19b812017-09-04 17:56:22 +020023#include <mmc.h>
24#include <reset.h>
25#include <asm/io.h>
26#include <asm/gpio.h>
27#include <linux/iopoll.h>
Yann Gautier22286ee2022-09-13 13:23:46 +020028#include <power/regulator.h>
Christophe Kerelloe0452e82019-07-30 19:16:45 +020029#include <watchdog.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060030#include <linux/printk.h>
Patrice Chotardae19b812017-09-04 17:56:22 +020031
32struct stm32_sdmmc2_plat {
33 struct mmc_config cfg;
34 struct mmc mmc;
Patrice Chotardae19b812017-09-04 17:56:22 +020035 fdt_addr_t base;
36 struct clk clk;
37 struct reset_ctl reset_ctl;
38 struct gpio_desc cd_gpio;
39 u32 clk_reg_msk;
40 u32 pwr_reg_msk;
Yann Gautier22286ee2022-09-13 13:23:46 +020041#if CONFIG_IS_ENABLED(DM_REGULATOR)
42 bool vqmmc_enabled;
43#endif
Patrice Chotardae19b812017-09-04 17:56:22 +020044};
45
46struct stm32_sdmmc2_ctx {
47 u32 cache_start;
48 u32 cache_end;
49 u32 data_length;
50 bool dpsm_abort;
51};
52
53/* SDMMC REGISTERS OFFSET */
54#define SDMMC_POWER 0x00 /* SDMMC power control */
55#define SDMMC_CLKCR 0x04 /* SDMMC clock control */
56#define SDMMC_ARG 0x08 /* SDMMC argument */
57#define SDMMC_CMD 0x0C /* SDMMC command */
58#define SDMMC_RESP1 0x14 /* SDMMC response 1 */
59#define SDMMC_RESP2 0x18 /* SDMMC response 2 */
60#define SDMMC_RESP3 0x1C /* SDMMC response 3 */
61#define SDMMC_RESP4 0x20 /* SDMMC response 4 */
62#define SDMMC_DTIMER 0x24 /* SDMMC data timer */
63#define SDMMC_DLEN 0x28 /* SDMMC data length */
64#define SDMMC_DCTRL 0x2C /* SDMMC data control */
65#define SDMMC_DCOUNT 0x30 /* SDMMC data counter */
66#define SDMMC_STA 0x34 /* SDMMC status */
67#define SDMMC_ICR 0x38 /* SDMMC interrupt clear */
68#define SDMMC_MASK 0x3C /* SDMMC mask */
69#define SDMMC_IDMACTRL 0x50 /* SDMMC DMA control */
70#define SDMMC_IDMABASE0 0x58 /* SDMMC DMA buffer 0 base address */
71
72/* SDMMC_POWER register */
Patrick Delaunay69351082018-06-27 10:15:33 +020073#define SDMMC_POWER_PWRCTRL_MASK GENMASK(1, 0)
74#define SDMMC_POWER_PWRCTRL_OFF 0
75#define SDMMC_POWER_PWRCTRL_CYCLE 2
76#define SDMMC_POWER_PWRCTRL_ON 3
Patrice Chotardae19b812017-09-04 17:56:22 +020077#define SDMMC_POWER_VSWITCH BIT(2)
78#define SDMMC_POWER_VSWITCHEN BIT(3)
79#define SDMMC_POWER_DIRPOL BIT(4)
80
81/* SDMMC_CLKCR register */
82#define SDMMC_CLKCR_CLKDIV GENMASK(9, 0)
83#define SDMMC_CLKCR_CLKDIV_MAX SDMMC_CLKCR_CLKDIV
84#define SDMMC_CLKCR_PWRSAV BIT(12)
85#define SDMMC_CLKCR_WIDBUS_4 BIT(14)
86#define SDMMC_CLKCR_WIDBUS_8 BIT(15)
87#define SDMMC_CLKCR_NEGEDGE BIT(16)
88#define SDMMC_CLKCR_HWFC_EN BIT(17)
89#define SDMMC_CLKCR_DDR BIT(18)
90#define SDMMC_CLKCR_BUSSPEED BIT(19)
Patrick Delaunaya36da362018-02-07 17:19:59 +010091#define SDMMC_CLKCR_SELCLKRX_MASK GENMASK(21, 20)
92#define SDMMC_CLKCR_SELCLKRX_CK 0
93#define SDMMC_CLKCR_SELCLKRX_CKIN BIT(20)
94#define SDMMC_CLKCR_SELCLKRX_FBCK BIT(21)
Patrice Chotardae19b812017-09-04 17:56:22 +020095
96/* SDMMC_CMD register */
97#define SDMMC_CMD_CMDINDEX GENMASK(5, 0)
98#define SDMMC_CMD_CMDTRANS BIT(6)
99#define SDMMC_CMD_CMDSTOP BIT(7)
100#define SDMMC_CMD_WAITRESP GENMASK(9, 8)
101#define SDMMC_CMD_WAITRESP_0 BIT(8)
102#define SDMMC_CMD_WAITRESP_1 BIT(9)
103#define SDMMC_CMD_WAITINT BIT(10)
104#define SDMMC_CMD_WAITPEND BIT(11)
105#define SDMMC_CMD_CPSMEN BIT(12)
106#define SDMMC_CMD_DTHOLD BIT(13)
107#define SDMMC_CMD_BOOTMODE BIT(14)
108#define SDMMC_CMD_BOOTEN BIT(15)
109#define SDMMC_CMD_CMDSUSPEND BIT(16)
110
111/* SDMMC_DCTRL register */
112#define SDMMC_DCTRL_DTEN BIT(0)
113#define SDMMC_DCTRL_DTDIR BIT(1)
114#define SDMMC_DCTRL_DTMODE GENMASK(3, 2)
115#define SDMMC_DCTRL_DBLOCKSIZE GENMASK(7, 4)
116#define SDMMC_DCTRL_DBLOCKSIZE_SHIFT 4
117#define SDMMC_DCTRL_RWSTART BIT(8)
118#define SDMMC_DCTRL_RWSTOP BIT(9)
119#define SDMMC_DCTRL_RWMOD BIT(10)
120#define SDMMC_DCTRL_SDMMCEN BIT(11)
121#define SDMMC_DCTRL_BOOTACKEN BIT(12)
122#define SDMMC_DCTRL_FIFORST BIT(13)
123
124/* SDMMC_STA register */
125#define SDMMC_STA_CCRCFAIL BIT(0)
126#define SDMMC_STA_DCRCFAIL BIT(1)
127#define SDMMC_STA_CTIMEOUT BIT(2)
128#define SDMMC_STA_DTIMEOUT BIT(3)
129#define SDMMC_STA_TXUNDERR BIT(4)
130#define SDMMC_STA_RXOVERR BIT(5)
131#define SDMMC_STA_CMDREND BIT(6)
132#define SDMMC_STA_CMDSENT BIT(7)
133#define SDMMC_STA_DATAEND BIT(8)
134#define SDMMC_STA_DHOLD BIT(9)
135#define SDMMC_STA_DBCKEND BIT(10)
136#define SDMMC_STA_DABORT BIT(11)
137#define SDMMC_STA_DPSMACT BIT(12)
138#define SDMMC_STA_CPSMACT BIT(13)
139#define SDMMC_STA_TXFIFOHE BIT(14)
140#define SDMMC_STA_RXFIFOHF BIT(15)
141#define SDMMC_STA_TXFIFOF BIT(16)
142#define SDMMC_STA_RXFIFOF BIT(17)
143#define SDMMC_STA_TXFIFOE BIT(18)
144#define SDMMC_STA_RXFIFOE BIT(19)
145#define SDMMC_STA_BUSYD0 BIT(20)
146#define SDMMC_STA_BUSYD0END BIT(21)
147#define SDMMC_STA_SDMMCIT BIT(22)
148#define SDMMC_STA_ACKFAIL BIT(23)
149#define SDMMC_STA_ACKTIMEOUT BIT(24)
150#define SDMMC_STA_VSWEND BIT(25)
151#define SDMMC_STA_CKSTOP BIT(26)
152#define SDMMC_STA_IDMATE BIT(27)
153#define SDMMC_STA_IDMABTC BIT(28)
154
155/* SDMMC_ICR register */
156#define SDMMC_ICR_CCRCFAILC BIT(0)
157#define SDMMC_ICR_DCRCFAILC BIT(1)
158#define SDMMC_ICR_CTIMEOUTC BIT(2)
159#define SDMMC_ICR_DTIMEOUTC BIT(3)
160#define SDMMC_ICR_TXUNDERRC BIT(4)
161#define SDMMC_ICR_RXOVERRC BIT(5)
162#define SDMMC_ICR_CMDRENDC BIT(6)
163#define SDMMC_ICR_CMDSENTC BIT(7)
164#define SDMMC_ICR_DATAENDC BIT(8)
165#define SDMMC_ICR_DHOLDC BIT(9)
166#define SDMMC_ICR_DBCKENDC BIT(10)
167#define SDMMC_ICR_DABORTC BIT(11)
168#define SDMMC_ICR_BUSYD0ENDC BIT(21)
169#define SDMMC_ICR_SDMMCITC BIT(22)
170#define SDMMC_ICR_ACKFAILC BIT(23)
171#define SDMMC_ICR_ACKTIMEOUTC BIT(24)
172#define SDMMC_ICR_VSWENDC BIT(25)
173#define SDMMC_ICR_CKSTOPC BIT(26)
174#define SDMMC_ICR_IDMATEC BIT(27)
175#define SDMMC_ICR_IDMABTCC BIT(28)
176#define SDMMC_ICR_STATIC_FLAGS ((GENMASK(28, 21)) | (GENMASK(11, 0)))
177
178/* SDMMC_MASK register */
179#define SDMMC_MASK_CCRCFAILIE BIT(0)
180#define SDMMC_MASK_DCRCFAILIE BIT(1)
181#define SDMMC_MASK_CTIMEOUTIE BIT(2)
182#define SDMMC_MASK_DTIMEOUTIE BIT(3)
183#define SDMMC_MASK_TXUNDERRIE BIT(4)
184#define SDMMC_MASK_RXOVERRIE BIT(5)
185#define SDMMC_MASK_CMDRENDIE BIT(6)
186#define SDMMC_MASK_CMDSENTIE BIT(7)
187#define SDMMC_MASK_DATAENDIE BIT(8)
188#define SDMMC_MASK_DHOLDIE BIT(9)
189#define SDMMC_MASK_DBCKENDIE BIT(10)
190#define SDMMC_MASK_DABORTIE BIT(11)
191#define SDMMC_MASK_TXFIFOHEIE BIT(14)
192#define SDMMC_MASK_RXFIFOHFIE BIT(15)
193#define SDMMC_MASK_RXFIFOFIE BIT(17)
194#define SDMMC_MASK_TXFIFOEIE BIT(18)
195#define SDMMC_MASK_BUSYD0ENDIE BIT(21)
196#define SDMMC_MASK_SDMMCITIE BIT(22)
197#define SDMMC_MASK_ACKFAILIE BIT(23)
198#define SDMMC_MASK_ACKTIMEOUTIE BIT(24)
199#define SDMMC_MASK_VSWENDIE BIT(25)
200#define SDMMC_MASK_CKSTOPIE BIT(26)
201#define SDMMC_MASK_IDMABTCIE BIT(28)
202
203/* SDMMC_IDMACTRL register */
204#define SDMMC_IDMACTRL_IDMAEN BIT(0)
205
206#define SDMMC_CMD_TIMEOUT 0xFFFFFFFF
Patrice Chotardbd16b4c2019-07-22 11:41:10 +0200207#define SDMMC_BUSYD0END_TIMEOUT_US 2000000
Patrice Chotardae19b812017-09-04 17:56:22 +0200208
Patrick Delaunay758de432020-11-06 19:01:37 +0100209static void stm32_sdmmc2_start_data(struct udevice *dev,
Patrice Chotardae19b812017-09-04 17:56:22 +0200210 struct mmc_data *data,
211 struct stm32_sdmmc2_ctx *ctx)
212{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200213 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200214 u32 data_ctrl, idmabase0;
215
216 /* Configure the SDMMC DPSM (Data Path State Machine) */
217 data_ctrl = (__ilog2(data->blocksize) <<
218 SDMMC_DCTRL_DBLOCKSIZE_SHIFT) &
219 SDMMC_DCTRL_DBLOCKSIZE;
220
221 if (data->flags & MMC_DATA_READ) {
222 data_ctrl |= SDMMC_DCTRL_DTDIR;
Patrice Chotard545c82e2024-03-08 15:26:14 +0100223 idmabase0 = (u32)(long)data->dest;
Patrice Chotardae19b812017-09-04 17:56:22 +0200224 } else {
Patrice Chotard545c82e2024-03-08 15:26:14 +0100225 idmabase0 = (u32)(long)data->src;
Patrice Chotardae19b812017-09-04 17:56:22 +0200226 }
227
Patrice Chotardae19b812017-09-04 17:56:22 +0200228 /* Set the SDMMC DataLength value */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200229 writel(ctx->data_length, plat->base + SDMMC_DLEN);
Patrice Chotardae19b812017-09-04 17:56:22 +0200230
231 /* Write to SDMMC DCTRL */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200232 writel(data_ctrl, plat->base + SDMMC_DCTRL);
Patrice Chotardae19b812017-09-04 17:56:22 +0200233
234 /* Cache align */
235 ctx->cache_start = rounddown(idmabase0, ARCH_DMA_MINALIGN);
236 ctx->cache_end = roundup(idmabase0 + ctx->data_length,
237 ARCH_DMA_MINALIGN);
238
239 /*
240 * Flush data cache before DMA start (clean and invalidate)
241 * Clean also needed for read
242 * Avoid issue on buffer not cached-aligned
243 */
244 flush_dcache_range(ctx->cache_start, ctx->cache_end);
245
246 /* Enable internal DMA */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200247 writel(idmabase0, plat->base + SDMMC_IDMABASE0);
248 writel(SDMMC_IDMACTRL_IDMAEN, plat->base + SDMMC_IDMACTRL);
Patrice Chotardae19b812017-09-04 17:56:22 +0200249}
250
Patrick Delaunay758de432020-11-06 19:01:37 +0100251static void stm32_sdmmc2_start_cmd(struct udevice *dev,
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100252 struct mmc_cmd *cmd, u32 cmd_param,
253 struct stm32_sdmmc2_ctx *ctx)
Patrice Chotardae19b812017-09-04 17:56:22 +0200254{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200255 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100256 u32 timeout = 0;
257
Patrick Delaunayf375d372022-06-30 10:01:46 +0200258 if (readl(plat->base + SDMMC_CMD) & SDMMC_CMD_CPSMEN)
259 writel(0, plat->base + SDMMC_CMD);
Patrice Chotardae19b812017-09-04 17:56:22 +0200260
261 cmd_param |= cmd->cmdidx | SDMMC_CMD_CPSMEN;
262 if (cmd->resp_type & MMC_RSP_PRESENT) {
263 if (cmd->resp_type & MMC_RSP_136)
264 cmd_param |= SDMMC_CMD_WAITRESP;
265 else if (cmd->resp_type & MMC_RSP_CRC)
266 cmd_param |= SDMMC_CMD_WAITRESP_0;
267 else
268 cmd_param |= SDMMC_CMD_WAITRESP_1;
269 }
270
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100271 /*
272 * SDMMC_DTIME must be set in two case:
273 * - on data transfert.
274 * - on busy request.
275 * If not done or too short, the dtimeout flag occurs and DPSM stays
276 * enabled/busy and waits for abort (stop transmission cmd).
277 * Next data command is not possible whereas DPSM is activated.
278 */
279 if (ctx->data_length) {
280 timeout = SDMMC_CMD_TIMEOUT;
281 } else {
Patrick Delaunayf375d372022-06-30 10:01:46 +0200282 writel(0, plat->base + SDMMC_DCTRL);
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100283
284 if (cmd->resp_type & MMC_RSP_BUSY)
285 timeout = SDMMC_CMD_TIMEOUT;
286 }
287
288 /* Set the SDMMC Data TimeOut value */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200289 writel(timeout, plat->base + SDMMC_DTIMER);
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100290
Patrice Chotardae19b812017-09-04 17:56:22 +0200291 /* Clear flags */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200292 writel(SDMMC_ICR_STATIC_FLAGS, plat->base + SDMMC_ICR);
Patrice Chotardae19b812017-09-04 17:56:22 +0200293
294 /* Set SDMMC argument value */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200295 writel(cmd->cmdarg, plat->base + SDMMC_ARG);
Patrice Chotardae19b812017-09-04 17:56:22 +0200296
297 /* Set SDMMC command parameters */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200298 writel(cmd_param, plat->base + SDMMC_CMD);
Patrice Chotardae19b812017-09-04 17:56:22 +0200299}
300
Patrick Delaunay758de432020-11-06 19:01:37 +0100301static int stm32_sdmmc2_end_cmd(struct udevice *dev,
Patrice Chotardae19b812017-09-04 17:56:22 +0200302 struct mmc_cmd *cmd,
303 struct stm32_sdmmc2_ctx *ctx)
304{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200305 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200306 u32 mask = SDMMC_STA_CTIMEOUT;
307 u32 status;
308 int ret;
309
310 if (cmd->resp_type & MMC_RSP_PRESENT) {
311 mask |= SDMMC_STA_CMDREND;
312 if (cmd->resp_type & MMC_RSP_CRC)
313 mask |= SDMMC_STA_CCRCFAIL;
314 } else {
315 mask |= SDMMC_STA_CMDSENT;
316 }
317
318 /* Polling status register */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200319 ret = readl_poll_timeout(plat->base + SDMMC_STA, status, status & mask,
Christophe Kerelloc9ab62c2017-10-09 17:02:28 +0200320 10000);
Patrice Chotardae19b812017-09-04 17:56:22 +0200321
322 if (ret < 0) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100323 dev_dbg(dev, "timeout reading SDMMC_STA register\n");
Patrice Chotardae19b812017-09-04 17:56:22 +0200324 ctx->dpsm_abort = true;
325 return ret;
326 }
327
328 /* Check status */
329 if (status & SDMMC_STA_CTIMEOUT) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100330 dev_dbg(dev, "error SDMMC_STA_CTIMEOUT (0x%x) for cmd %d\n",
331 status, cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200332 ctx->dpsm_abort = true;
333 return -ETIMEDOUT;
334 }
335
336 if (status & SDMMC_STA_CCRCFAIL && cmd->resp_type & MMC_RSP_CRC) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100337 dev_dbg(dev, "error SDMMC_STA_CCRCFAIL (0x%x) for cmd %d\n",
338 status, cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200339 ctx->dpsm_abort = true;
340 return -EILSEQ;
341 }
342
343 if (status & SDMMC_STA_CMDREND && cmd->resp_type & MMC_RSP_PRESENT) {
Patrick Delaunayf375d372022-06-30 10:01:46 +0200344 cmd->response[0] = readl(plat->base + SDMMC_RESP1);
Patrice Chotardae19b812017-09-04 17:56:22 +0200345 if (cmd->resp_type & MMC_RSP_136) {
Patrick Delaunayf375d372022-06-30 10:01:46 +0200346 cmd->response[1] = readl(plat->base + SDMMC_RESP2);
347 cmd->response[2] = readl(plat->base + SDMMC_RESP3);
348 cmd->response[3] = readl(plat->base + SDMMC_RESP4);
Patrice Chotardae19b812017-09-04 17:56:22 +0200349 }
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100350
351 /* Wait for BUSYD0END flag if busy status is detected */
352 if (cmd->resp_type & MMC_RSP_BUSY &&
353 status & SDMMC_STA_BUSYD0) {
354 mask = SDMMC_STA_DTIMEOUT | SDMMC_STA_BUSYD0END;
355
356 /* Polling status register */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200357 ret = readl_poll_timeout(plat->base + SDMMC_STA,
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100358 status, status & mask,
359 SDMMC_BUSYD0END_TIMEOUT_US);
360
361 if (ret < 0) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100362 dev_dbg(dev, "timeout reading SDMMC_STA\n");
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100363 ctx->dpsm_abort = true;
364 return ret;
365 }
366
367 if (status & SDMMC_STA_DTIMEOUT) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100368 dev_dbg(dev,
369 "error SDMMC_STA_DTIMEOUT (0x%x)\n",
370 status);
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100371 ctx->dpsm_abort = true;
372 return -ETIMEDOUT;
373 }
374 }
Patrice Chotardae19b812017-09-04 17:56:22 +0200375 }
376
377 return 0;
378}
379
Patrick Delaunay758de432020-11-06 19:01:37 +0100380static int stm32_sdmmc2_end_data(struct udevice *dev,
Patrice Chotardae19b812017-09-04 17:56:22 +0200381 struct mmc_cmd *cmd,
382 struct mmc_data *data,
383 struct stm32_sdmmc2_ctx *ctx)
384{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200385 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200386 u32 mask = SDMMC_STA_DCRCFAIL | SDMMC_STA_DTIMEOUT |
387 SDMMC_STA_IDMATE | SDMMC_STA_DATAEND;
388 u32 status;
389
390 if (data->flags & MMC_DATA_READ)
391 mask |= SDMMC_STA_RXOVERR;
392 else
393 mask |= SDMMC_STA_TXUNDERR;
394
Patrick Delaunayf375d372022-06-30 10:01:46 +0200395 status = readl(plat->base + SDMMC_STA);
Patrice Chotardae19b812017-09-04 17:56:22 +0200396 while (!(status & mask))
Patrick Delaunayf375d372022-06-30 10:01:46 +0200397 status = readl(plat->base + SDMMC_STA);
Patrice Chotardae19b812017-09-04 17:56:22 +0200398
399 /*
400 * Need invalidate the dcache again to avoid any
401 * cache-refill during the DMA operations (pre-fetching)
402 */
403 if (data->flags & MMC_DATA_READ)
404 invalidate_dcache_range(ctx->cache_start, ctx->cache_end);
405
406 if (status & SDMMC_STA_DCRCFAIL) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100407 dev_dbg(dev, "error SDMMC_STA_DCRCFAIL (0x%x) for cmd %d\n",
408 status, cmd->cmdidx);
Patrick Delaunayf375d372022-06-30 10:01:46 +0200409 if (readl(plat->base + SDMMC_DCOUNT))
Patrice Chotardae19b812017-09-04 17:56:22 +0200410 ctx->dpsm_abort = true;
411 return -EILSEQ;
412 }
413
414 if (status & SDMMC_STA_DTIMEOUT) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100415 dev_dbg(dev, "error SDMMC_STA_DTIMEOUT (0x%x) for cmd %d\n",
416 status, cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200417 ctx->dpsm_abort = true;
418 return -ETIMEDOUT;
419 }
420
421 if (status & SDMMC_STA_TXUNDERR) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100422 dev_dbg(dev, "error SDMMC_STA_TXUNDERR (0x%x) for cmd %d\n",
423 status, cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200424 ctx->dpsm_abort = true;
425 return -EIO;
426 }
427
428 if (status & SDMMC_STA_RXOVERR) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100429 dev_dbg(dev, "error SDMMC_STA_RXOVERR (0x%x) for cmd %d\n",
430 status, cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200431 ctx->dpsm_abort = true;
432 return -EIO;
433 }
434
435 if (status & SDMMC_STA_IDMATE) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100436 dev_dbg(dev, "error SDMMC_STA_IDMATE (0x%x) for cmd %d\n",
437 status, cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200438 ctx->dpsm_abort = true;
439 return -EIO;
440 }
441
442 return 0;
443}
444
445static int stm32_sdmmc2_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
446 struct mmc_data *data)
447{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200448 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200449 struct stm32_sdmmc2_ctx ctx;
450 u32 cmdat = data ? SDMMC_CMD_CMDTRANS : 0;
451 int ret, retry = 3;
452
Stefan Roese80877fa2022-09-02 14:10:46 +0200453 schedule();
Christophe Kerelloe0452e82019-07-30 19:16:45 +0200454
Patrice Chotardae19b812017-09-04 17:56:22 +0200455retry_cmd:
456 ctx.data_length = 0;
457 ctx.dpsm_abort = false;
458
459 if (data) {
460 ctx.data_length = data->blocks * data->blocksize;
Patrick Delaunay758de432020-11-06 19:01:37 +0100461 stm32_sdmmc2_start_data(dev, data, &ctx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200462 }
463
Patrick Delaunay758de432020-11-06 19:01:37 +0100464 stm32_sdmmc2_start_cmd(dev, cmd, cmdat, &ctx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200465
Patrice Chotard545c82e2024-03-08 15:26:14 +0100466 dev_dbg(dev, "send cmd %d data: 0x%x @ 0x%p\n",
467 cmd->cmdidx, data ? ctx.data_length : 0, data);
Patrice Chotardae19b812017-09-04 17:56:22 +0200468
Patrick Delaunay758de432020-11-06 19:01:37 +0100469 ret = stm32_sdmmc2_end_cmd(dev, cmd, &ctx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200470
471 if (data && !ret)
Patrick Delaunay758de432020-11-06 19:01:37 +0100472 ret = stm32_sdmmc2_end_data(dev, cmd, data, &ctx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200473
474 /* Clear flags */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200475 writel(SDMMC_ICR_STATIC_FLAGS, plat->base + SDMMC_ICR);
Patrice Chotardae19b812017-09-04 17:56:22 +0200476 if (data)
Patrick Delaunayf375d372022-06-30 10:01:46 +0200477 writel(0x0, plat->base + SDMMC_IDMACTRL);
Patrice Chotardae19b812017-09-04 17:56:22 +0200478
479 /*
480 * To stop Data Path State Machine, a stop_transmission command
481 * shall be send on cmd or data errors.
482 */
483 if (ctx.dpsm_abort && (cmd->cmdidx != MMC_CMD_STOP_TRANSMISSION)) {
484 struct mmc_cmd stop_cmd;
485
486 stop_cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
487 stop_cmd.cmdarg = 0;
488 stop_cmd.resp_type = MMC_RSP_R1b;
489
Patrick Delaunay758de432020-11-06 19:01:37 +0100490 dev_dbg(dev, "send STOP command to abort dpsm treatments\n");
Patrice Chotardae19b812017-09-04 17:56:22 +0200491
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100492 ctx.data_length = 0;
493
Patrick Delaunay758de432020-11-06 19:01:37 +0100494 stm32_sdmmc2_start_cmd(dev, &stop_cmd,
Christophe Kerello8a0b5232018-12-06 15:58:10 +0100495 SDMMC_CMD_CMDSTOP, &ctx);
Patrick Delaunay758de432020-11-06 19:01:37 +0100496 stm32_sdmmc2_end_cmd(dev, &stop_cmd, &ctx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200497
Patrick Delaunayf375d372022-06-30 10:01:46 +0200498 writel(SDMMC_ICR_STATIC_FLAGS, plat->base + SDMMC_ICR);
Patrice Chotardae19b812017-09-04 17:56:22 +0200499 }
500
501 if ((ret != -ETIMEDOUT) && (ret != 0) && retry) {
Patrick Delaunay758de432020-11-06 19:01:37 +0100502 dev_err(dev, "cmd %d failed, retrying ...\n", cmd->cmdidx);
Patrice Chotardae19b812017-09-04 17:56:22 +0200503 retry--;
504 goto retry_cmd;
505 }
506
Patrick Delaunay758de432020-11-06 19:01:37 +0100507 dev_dbg(dev, "end for CMD %d, ret = %d\n", cmd->cmdidx, ret);
Patrice Chotardae19b812017-09-04 17:56:22 +0200508
509 return ret;
510}
511
Patrick Delaunay69351082018-06-27 10:15:33 +0200512/*
513 * Reset the SDMMC with the RCC.SDMMCxRST register bit.
514 * This will reset the SDMMC to the reset state and the CPSM and DPSM
515 * to the Idle state. SDMMC is disabled, Signals Hiz.
516 */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200517static void stm32_sdmmc2_reset(struct stm32_sdmmc2_plat *plat)
Patrice Chotardae19b812017-09-04 17:56:22 +0200518{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200519 if (reset_valid(&plat->reset_ctl)) {
Patrick Delaunay6be3ccc2022-05-20 18:24:51 +0200520 /* Reset */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200521 reset_assert(&plat->reset_ctl);
Patrick Delaunay6be3ccc2022-05-20 18:24:51 +0200522 udelay(2);
Patrick Delaunayf375d372022-06-30 10:01:46 +0200523 reset_deassert(&plat->reset_ctl);
Patrick Delaunay6be3ccc2022-05-20 18:24:51 +0200524 }
Patrice Chotardae19b812017-09-04 17:56:22 +0200525
Patrick Delaunay69351082018-06-27 10:15:33 +0200526 /* init the needed SDMMC register after reset */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200527 writel(plat->pwr_reg_msk, plat->base + SDMMC_POWER);
Patrick Delaunay69351082018-06-27 10:15:33 +0200528}
529
530/*
531 * Set the SDMMC in power-cycle state.
532 * This will make that the SDMMC_D[7:0],
533 * SDMMC_CMD and SDMMC_CK are driven low, to prevent the card from being
534 * supplied through the signal lines.
535 */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200536static void stm32_sdmmc2_pwrcycle(struct stm32_sdmmc2_plat *plat)
Patrick Delaunay69351082018-06-27 10:15:33 +0200537{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200538 if ((readl(plat->base + SDMMC_POWER) & SDMMC_POWER_PWRCTRL_MASK) ==
Patrick Delaunay69351082018-06-27 10:15:33 +0200539 SDMMC_POWER_PWRCTRL_CYCLE)
540 return;
541
Patrick Delaunayf375d372022-06-30 10:01:46 +0200542 stm32_sdmmc2_reset(plat);
Patrick Delaunay69351082018-06-27 10:15:33 +0200543}
544
545/*
546 * set the SDMMC state Power-on: the card is clocked
547 * manage the SDMMC state control:
548 * Reset => Power-Cycle => Power-Off => Power
549 * PWRCTRL=10 PWCTRL=00 PWCTRL=11
550 */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200551static void stm32_sdmmc2_pwron(struct stm32_sdmmc2_plat *plat)
Patrick Delaunay69351082018-06-27 10:15:33 +0200552{
553 u32 pwrctrl =
Patrick Delaunayf375d372022-06-30 10:01:46 +0200554 readl(plat->base + SDMMC_POWER) & SDMMC_POWER_PWRCTRL_MASK;
Patrice Chotardae19b812017-09-04 17:56:22 +0200555
Patrick Delaunay69351082018-06-27 10:15:33 +0200556 if (pwrctrl == SDMMC_POWER_PWRCTRL_ON)
557 return;
558
559 /* warning: same PWRCTRL value after reset and for power-off state
560 * it is the reset state here = the only managed by the driver
561 */
562 if (pwrctrl == SDMMC_POWER_PWRCTRL_OFF) {
Patrick Delaunayf375d372022-06-30 10:01:46 +0200563 writel(SDMMC_POWER_PWRCTRL_CYCLE | plat->pwr_reg_msk,
564 plat->base + SDMMC_POWER);
Patrick Delaunay69351082018-06-27 10:15:33 +0200565 }
Patrice Chotardae19b812017-09-04 17:56:22 +0200566
567 /*
Patrick Delaunay69351082018-06-27 10:15:33 +0200568 * the remaining case is SDMMC_POWER_PWRCTRL_CYCLE
569 * switch to Power-Off state: SDMCC disable, signals drive 1
Patrice Chotardae19b812017-09-04 17:56:22 +0200570 */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200571 writel(SDMMC_POWER_PWRCTRL_OFF | plat->pwr_reg_msk,
572 plat->base + SDMMC_POWER);
Patrick Delaunay69351082018-06-27 10:15:33 +0200573
574 /* After the 1ms delay set the SDMMC to power-on */
575 mdelay(1);
Patrick Delaunayf375d372022-06-30 10:01:46 +0200576 writel(SDMMC_POWER_PWRCTRL_ON | plat->pwr_reg_msk,
577 plat->base + SDMMC_POWER);
Patrick Delaunay69351082018-06-27 10:15:33 +0200578
579 /* during the first 74 SDMMC_CK cycles the SDMMC is still disabled. */
Yann Gautier22286ee2022-09-13 13:23:46 +0200580
581#if CONFIG_IS_ENABLED(DM_REGULATOR)
582 if (plat->mmc.vqmmc_supply && !plat->vqmmc_enabled) {
583 if (regulator_set_enable_if_allowed(plat->mmc.vqmmc_supply, true))
584 dev_dbg(plat->mmc.dev, "failed to enable vqmmc-supply\n");
585 else
586 plat->vqmmc_enabled = true;
587 }
588#endif
Patrice Chotardae19b812017-09-04 17:56:22 +0200589}
590
591#define IS_RISING_EDGE(reg) (reg & SDMMC_CLKCR_NEGEDGE ? 0 : 1)
592static int stm32_sdmmc2_set_ios(struct udevice *dev)
593{
594 struct mmc *mmc = mmc_get_mmc_dev(dev);
Patrick Delaunayf375d372022-06-30 10:01:46 +0200595 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200596 u32 desired = mmc->clock;
Patrick Delaunayf375d372022-06-30 10:01:46 +0200597 u32 sys_clock = clk_get_rate(&plat->clk);
Patrice Chotardae19b812017-09-04 17:56:22 +0200598 u32 clk = 0;
599
Patrick Delaunay758de432020-11-06 19:01:37 +0100600 dev_dbg(dev, "bus_with = %d, clock = %d\n",
601 mmc->bus_width, mmc->clock);
Patrice Chotardae19b812017-09-04 17:56:22 +0200602
Patrick Delaunay69351082018-06-27 10:15:33 +0200603 if (mmc->clk_disable)
Patrick Delaunayf375d372022-06-30 10:01:46 +0200604 stm32_sdmmc2_pwrcycle(plat);
Patrick Delaunay69351082018-06-27 10:15:33 +0200605 else
Patrick Delaunayf375d372022-06-30 10:01:46 +0200606 stm32_sdmmc2_pwron(plat);
Patrice Chotardae19b812017-09-04 17:56:22 +0200607
608 /*
609 * clk_div = 0 => command and data generated on SDMMCCLK falling edge
610 * clk_div > 0 and NEGEDGE = 0 => command and data generated on
611 * SDMMCCLK rising edge
612 * clk_div > 0 and NEGEDGE = 1 => command and data generated on
613 * SDMMCCLK falling edge
614 */
Yann Gautier6bb25442022-09-13 13:23:44 +0200615 if (desired && (sys_clock > desired || mmc->ddr_mode ||
Patrick Delaunayf375d372022-06-30 10:01:46 +0200616 IS_RISING_EDGE(plat->clk_reg_msk))) {
Patrice Chotardae19b812017-09-04 17:56:22 +0200617 clk = DIV_ROUND_UP(sys_clock, 2 * desired);
618 if (clk > SDMMC_CLKCR_CLKDIV_MAX)
619 clk = SDMMC_CLKCR_CLKDIV_MAX;
620 }
621
Yann Gautier6bb25442022-09-13 13:23:44 +0200622 if (mmc->ddr_mode)
623 clk |= SDMMC_CLKCR_DDR;
624
Patrice Chotardae19b812017-09-04 17:56:22 +0200625 if (mmc->bus_width == 4)
626 clk |= SDMMC_CLKCR_WIDBUS_4;
627 if (mmc->bus_width == 8)
628 clk |= SDMMC_CLKCR_WIDBUS_8;
629
Patrick Delaunayf375d372022-06-30 10:01:46 +0200630 writel(clk | plat->clk_reg_msk | SDMMC_CLKCR_HWFC_EN,
631 plat->base + SDMMC_CLKCR);
Patrice Chotardae19b812017-09-04 17:56:22 +0200632
633 return 0;
634}
635
636static int stm32_sdmmc2_getcd(struct udevice *dev)
637{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200638 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200639
Patrick Delaunay758de432020-11-06 19:01:37 +0100640 dev_dbg(dev, "%s called\n", __func__);
Patrice Chotardae19b812017-09-04 17:56:22 +0200641
Patrick Delaunayf375d372022-06-30 10:01:46 +0200642 if (dm_gpio_is_valid(&plat->cd_gpio))
643 return dm_gpio_get_value(&plat->cd_gpio);
Patrice Chotardae19b812017-09-04 17:56:22 +0200644
645 return 1;
646}
647
Yann Gautierae3cd2a2019-09-19 17:56:13 +0200648static int stm32_sdmmc2_host_power_cycle(struct udevice *dev)
649{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200650 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Yann Gautierae3cd2a2019-09-19 17:56:13 +0200651
Patrick Delaunayf375d372022-06-30 10:01:46 +0200652 writel(SDMMC_POWER_PWRCTRL_CYCLE | plat->pwr_reg_msk,
653 plat->base + SDMMC_POWER);
Yann Gautierae3cd2a2019-09-19 17:56:13 +0200654
655 return 0;
656}
657
Patrice Chotardae19b812017-09-04 17:56:22 +0200658static const struct dm_mmc_ops stm32_sdmmc2_ops = {
659 .send_cmd = stm32_sdmmc2_send_cmd,
660 .set_ios = stm32_sdmmc2_set_ios,
661 .get_cd = stm32_sdmmc2_getcd,
Yann Gautierae3cd2a2019-09-19 17:56:13 +0200662 .host_power_cycle = stm32_sdmmc2_host_power_cycle,
Patrice Chotardae19b812017-09-04 17:56:22 +0200663};
664
Patrick Delaunay4f6a1ba2022-06-30 10:01:47 +0200665static int stm32_sdmmc2_of_to_plat(struct udevice *dev)
666{
667 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
668 struct mmc_config *cfg = &plat->cfg;
669 int ret;
670
671 plat->base = dev_read_addr(dev);
672 if (plat->base == FDT_ADDR_T_NONE)
673 return -EINVAL;
674
675 if (dev_read_bool(dev, "st,neg-edge"))
676 plat->clk_reg_msk |= SDMMC_CLKCR_NEGEDGE;
677 if (dev_read_bool(dev, "st,sig-dir"))
678 plat->pwr_reg_msk |= SDMMC_POWER_DIRPOL;
679 if (dev_read_bool(dev, "st,use-ckin"))
680 plat->clk_reg_msk |= SDMMC_CLKCR_SELCLKRX_CKIN;
681
682 cfg->f_min = 400000;
683 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
684 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
685 cfg->name = "STM32 SD/MMC";
686 cfg->host_caps = 0;
687 cfg->f_max = 52000000;
688 ret = mmc_of_parse(dev, cfg);
689 if (ret)
690 return ret;
691
Yann Gautier69049092022-09-13 13:23:45 +0200692 cfg->host_caps &= ~(UHS_CAPS | MMC_MODE_HS200 | MMC_MODE_HS400 | MMC_MODE_HS400_ES);
693
Patrick Delaunay4f6a1ba2022-06-30 10:01:47 +0200694 ret = clk_get_by_index(dev, 0, &plat->clk);
695 if (ret)
696 return ret;
697
698 ret = reset_get_by_index(dev, 0, &plat->reset_ctl);
699 if (ret)
700 dev_dbg(dev, "No reset provided\n");
701
702 gpio_request_by_name(dev, "cd-gpios", 0, &plat->cd_gpio,
703 GPIOD_IS_IN);
704
705 return 0;
706}
707
Marek Vasut98a12052021-11-13 03:29:43 +0100708static int stm32_sdmmc2_probe_level_translator(struct udevice *dev)
709{
Patrick Delaunayf375d372022-06-30 10:01:46 +0200710 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Marek Vasut98a12052021-11-13 03:29:43 +0100711 struct gpio_desc cmd_gpio;
712 struct gpio_desc ck_gpio;
713 struct gpio_desc ckin_gpio;
714 int clk_hi, clk_lo, ret;
715
Marek Vasut98a12052021-11-13 03:29:43 +0100716 ret = gpio_request_by_name(dev, "st,cmd-gpios", 0, &cmd_gpio,
717 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
718 if (ret)
719 goto exit_cmd;
720
721 ret = gpio_request_by_name(dev, "st,ck-gpios", 0, &ck_gpio,
722 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
723 if (ret)
724 goto exit_ck;
725
726 ret = gpio_request_by_name(dev, "st,ckin-gpios", 0, &ckin_gpio,
727 GPIOD_IS_IN);
728 if (ret)
729 goto exit_ckin;
730
731 /* All GPIOs are valid, test whether level translator works */
732
733 /* Sample CKIN */
734 clk_hi = !!dm_gpio_get_value(&ckin_gpio);
735
736 /* Set CK low */
737 dm_gpio_set_value(&ck_gpio, 0);
738
739 /* Sample CKIN */
740 clk_lo = !!dm_gpio_get_value(&ckin_gpio);
741
742 /* Tristate all */
743 dm_gpio_set_dir_flags(&cmd_gpio, GPIOD_IS_IN);
744 dm_gpio_set_dir_flags(&ck_gpio, GPIOD_IS_IN);
745
746 /* Level translator is present if CK signal is propagated to CKIN */
747 if (!clk_hi || clk_lo)
Patrick Delaunayf375d372022-06-30 10:01:46 +0200748 plat->clk_reg_msk &= ~SDMMC_CLKCR_SELCLKRX_CKIN;
Marek Vasut98a12052021-11-13 03:29:43 +0100749
750 dm_gpio_free(dev, &ckin_gpio);
751
752exit_ckin:
753 dm_gpio_free(dev, &ck_gpio);
754exit_ck:
755 dm_gpio_free(dev, &cmd_gpio);
756exit_cmd:
757 pinctrl_select_state(dev, "default");
758
759 return 0;
760}
761
Patrice Chotardae19b812017-09-04 17:56:22 +0200762static int stm32_sdmmc2_probe(struct udevice *dev)
763{
764 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Simon Glassfa20e932020-12-03 16:55:20 -0700765 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200766 int ret;
767
Patrick Delaunayf375d372022-06-30 10:01:46 +0200768 ret = clk_enable(&plat->clk);
Sean Andersond318eb32023-12-16 14:38:42 -0500769 if (ret)
Patrick Delaunay4f6a1ba2022-06-30 10:01:47 +0200770 return ret;
Patrice Chotardae19b812017-09-04 17:56:22 +0200771
772 upriv->mmc = &plat->mmc;
773
Patrick Delaunay4f6a1ba2022-06-30 10:01:47 +0200774 if (plat->clk_reg_msk & SDMMC_CLKCR_SELCLKRX_CKIN)
775 stm32_sdmmc2_probe_level_translator(dev);
776
Patrick Delaunay69351082018-06-27 10:15:33 +0200777 /* SDMMC init */
Patrick Delaunayf375d372022-06-30 10:01:46 +0200778 stm32_sdmmc2_reset(plat);
Patrice Chotardae19b812017-09-04 17:56:22 +0200779
Patrick Delaunay4f6a1ba2022-06-30 10:01:47 +0200780 return 0;
Patrice Chotardae19b812017-09-04 17:56:22 +0200781}
782
Patrick Delaunay1db48bf2022-06-30 10:01:45 +0200783static int stm32_sdmmc2_bind(struct udevice *dev)
Patrice Chotardae19b812017-09-04 17:56:22 +0200784{
Simon Glassfa20e932020-12-03 16:55:20 -0700785 struct stm32_sdmmc2_plat *plat = dev_get_plat(dev);
Patrice Chotardae19b812017-09-04 17:56:22 +0200786
787 return mmc_bind(dev, &plat->mmc, &plat->cfg);
788}
789
790static const struct udevice_id stm32_sdmmc2_ids[] = {
791 { .compatible = "st,stm32-sdmmc2" },
Patrick Delaunaydc9caf52024-03-08 15:26:13 +0100792 { .compatible = "st,stm32mp25-sdmmc2" },
Patrice Chotardae19b812017-09-04 17:56:22 +0200793 { }
794};
795
796U_BOOT_DRIVER(stm32_sdmmc2) = {
797 .name = "stm32_sdmmc2",
798 .id = UCLASS_MMC,
799 .of_match = stm32_sdmmc2_ids,
800 .ops = &stm32_sdmmc2_ops,
801 .probe = stm32_sdmmc2_probe,
Patrick Delaunay1db48bf2022-06-30 10:01:45 +0200802 .bind = stm32_sdmmc2_bind,
Patrick Delaunay4f6a1ba2022-06-30 10:01:47 +0200803 .of_to_plat = stm32_sdmmc2_of_to_plat,
Simon Glass71fa5b42020-12-03 16:55:18 -0700804 .plat_auto = sizeof(struct stm32_sdmmc2_plat),
Patrice Chotardae19b812017-09-04 17:56:22 +0200805};