blob: f3ccd021d802f76dc9e870d228f3ca1c71672810 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sandeep Paulraj57418d22010-12-20 20:01:21 -05002/*
3 * Davinci MMC Controller Driver
4 *
5 * Copyright (C) 2010 Texas Instruments Incorporated
Sandeep Paulraj57418d22010-12-20 20:01:21 -05006 */
7
8#include <config.h>
9#include <common.h>
Adam Forddf6565c2018-08-09 06:15:12 -050010#include <dm.h>
Jaehoon Chung915ffa52016-07-19 16:33:36 +090011#include <errno.h>
Sandeep Paulraj57418d22010-12-20 20:01:21 -050012#include <mmc.h>
Adam Forddf6565c2018-08-09 06:15:12 -050013#include <command.h>
Sandeep Paulraj57418d22010-12-20 20:01:21 -050014#include <part.h>
15#include <malloc.h>
16#include <asm/io.h>
17#include <asm/arch/sdmmc_defs.h>
Adam Ford04355de2018-09-03 03:47:52 -050018#include <asm-generic/gpio.h>
Simon Glassc05ed002020-05-10 11:40:11 -060019#include <linux/delay.h>
Sandeep Paulraj57418d22010-12-20 20:01:21 -050020
Sandeep Paulraj57418d22010-12-20 20:01:21 -050021#define WATCHDOG_COUNT (100000)
22
23#define get_val(addr) REG(addr)
24#define set_val(addr, val) REG(addr) = (val)
25#define set_bit(addr, val) set_val((addr), (get_val(addr) | (val)))
26#define clear_bit(addr, val) set_val((addr), (get_val(addr) & ~(val)))
27
Adam Forddf6565c2018-08-09 06:15:12 -050028#ifdef CONFIG_DM_MMC
Adam Forddf6565c2018-08-09 06:15:12 -050029/* Davinci MMC board definitions */
30struct davinci_mmc_priv {
31 struct davinci_mmc_regs *reg_base; /* Register base address */
32 uint input_clk; /* Input clock to MMC controller */
Adam Ford04355de2018-09-03 03:47:52 -050033 struct gpio_desc cd_gpio; /* Card Detect GPIO */
34 struct gpio_desc wp_gpio; /* Write Protect GPIO */
Tom Rini797eee32020-01-03 12:00:04 -050035};
Adam Forddf6565c2018-08-09 06:15:12 -050036#endif
37
Sandeep Paulraj57418d22010-12-20 20:01:21 -050038/* Set davinci clock prescalar value based on the required clock in HZ */
Adam Forddf6565c2018-08-09 06:15:12 -050039#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -050040static void dmmc_set_clock(struct mmc *mmc, uint clock)
41{
42 struct davinci_mmc *host = mmc->priv;
Adam Forddf6565c2018-08-09 06:15:12 -050043#else
44
45static void davinci_mmc_set_clock(struct udevice *dev, uint clock)
46{
47 struct davinci_mmc_priv *host = dev_get_priv(dev);
48 struct mmc *mmc = mmc_get_mmc_dev(dev);
49#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -050050 struct davinci_mmc_regs *regs = host->reg_base;
51 uint clkrt, sysclk2, act_clock;
52
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020053 if (clock < mmc->cfg->f_min)
54 clock = mmc->cfg->f_min;
55 if (clock > mmc->cfg->f_max)
56 clock = mmc->cfg->f_max;
Sandeep Paulraj57418d22010-12-20 20:01:21 -050057
58 set_val(&regs->mmcclk, 0);
59 sysclk2 = host->input_clk;
60 clkrt = (sysclk2 / (2 * clock)) - 1;
61
62 /* Calculate the actual clock for the divider used */
63 act_clock = (sysclk2 / (2 * (clkrt + 1)));
64
65 /* Adjust divider if actual clock exceeds the required clock */
66 if (act_clock > clock)
67 clkrt++;
68
69 /* check clock divider boundary and correct it */
70 if (clkrt > 0xFF)
71 clkrt = 0xFF;
72
73 set_val(&regs->mmcclk, (clkrt | MMCCLK_CLKEN));
74}
75
76/* Status bit wait loop for MMCST1 */
77static int
78dmmc_wait_fifo_status(volatile struct davinci_mmc_regs *regs, uint status)
79{
Heiko Schocher79b05d52011-10-30 19:15:53 +000080 uint wdog = WATCHDOG_COUNT;
81
Sandeep Paulraj57418d22010-12-20 20:01:21 -050082 while (--wdog && ((get_val(&regs->mmcst1) & status) != status))
83 udelay(10);
84
85 if (!(get_val(&regs->mmcctl) & MMCCTL_WIDTH_4_BIT))
86 udelay(100);
87
88 if (wdog == 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +090089 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -050090
91 return 0;
92}
93
94/* Busy bit wait loop for MMCST1 */
95static int dmmc_busy_wait(volatile struct davinci_mmc_regs *regs)
96{
Heiko Schocher79b05d52011-10-30 19:15:53 +000097 uint wdog = WATCHDOG_COUNT;
Sandeep Paulraj57418d22010-12-20 20:01:21 -050098
Sandeep Paulraj57418d22010-12-20 20:01:21 -050099 while (--wdog && (get_val(&regs->mmcst1) & MMCST1_BUSY))
100 udelay(10);
101
102 if (wdog == 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900103 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500104
105 return 0;
106}
107
108/* Status bit wait loop for MMCST0 - Checks for error bits as well */
109static int dmmc_check_status(volatile struct davinci_mmc_regs *regs,
110 uint *cur_st, uint st_ready, uint st_error)
111{
112 uint wdog = WATCHDOG_COUNT;
113 uint mmcstatus = *cur_st;
114
115 while (wdog--) {
116 if (mmcstatus & st_ready) {
117 *cur_st = mmcstatus;
118 mmcstatus = get_val(&regs->mmcst1);
119 return 0;
120 } else if (mmcstatus & st_error) {
121 if (mmcstatus & MMCST0_TOUTRS)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900122 return -ETIMEDOUT;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500123 printf("[ ST0 ERROR %x]\n", mmcstatus);
124 /*
125 * Ignore CRC errors as some MMC cards fail to
126 * initialize on DM365-EVM on the SD1 slot
127 */
128 if (mmcstatus & MMCST0_CRCRS)
129 return 0;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900130 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500131 }
132 udelay(10);
133
134 mmcstatus = get_val(&regs->mmcst0);
135 }
136
137 printf("Status %x Timeout ST0:%x ST1:%x\n", st_ready, mmcstatus,
138 get_val(&regs->mmcst1));
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900139 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500140}
141
142/*
Adam Forddf6565c2018-08-09 06:15:12 -0500143 * Sends a command out on the bus. Takes the device pointer,
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500144 * a command pointer, and an optional data pointer.
145 */
Adam Forddf6565c2018-08-09 06:15:12 -0500146#if !CONFIG_IS_ENABLED(DM_MMC)
147static int dmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500148{
149 struct davinci_mmc *host = mmc->priv;
Adam Forddf6565c2018-08-09 06:15:12 -0500150#else
151static int
152davinci_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, struct mmc_data *data)
153{
154 struct davinci_mmc_priv *host = dev_get_priv(dev);
155#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500156 volatile struct davinci_mmc_regs *regs = host->reg_base;
157 uint mmcstatus, status_rdy, status_err;
158 uint i, cmddata, bytes_left = 0;
159 int fifo_words, fifo_bytes, err;
160 char *data_buf = NULL;
161
162 /* Clear status registers */
163 mmcstatus = get_val(&regs->mmcst0);
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100164 fifo_words = 16;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500165 fifo_bytes = fifo_words << 2;
166
167 /* Wait for any previous busy signal to be cleared */
168 dmmc_busy_wait(regs);
169
170 cmddata = cmd->cmdidx;
171 cmddata |= MMCCMD_PPLEN;
172
173 /* Send init clock for CMD0 */
174 if (cmd->cmdidx == MMC_CMD_GO_IDLE_STATE)
175 cmddata |= MMCCMD_INITCK;
176
177 switch (cmd->resp_type) {
178 case MMC_RSP_R1b:
179 cmddata |= MMCCMD_BSYEXP;
180 /* Fall-through */
181 case MMC_RSP_R1: /* R1, R1b, R5, R6, R7 */
182 cmddata |= MMCCMD_RSPFMT_R1567;
183 break;
184 case MMC_RSP_R2:
185 cmddata |= MMCCMD_RSPFMT_R2;
186 break;
187 case MMC_RSP_R3: /* R3, R4 */
188 cmddata |= MMCCMD_RSPFMT_R3;
189 break;
190 }
191
192 set_val(&regs->mmcim, 0);
193
194 if (data) {
195 /* clear previous data transfer if any and set new one */
196 bytes_left = (data->blocksize * data->blocks);
197
198 /* Reset FIFO - Always use 32 byte fifo threshold */
199 set_val(&regs->mmcfifoctl,
200 (MMCFIFOCTL_FIFOLEV | MMCFIFOCTL_FIFORST));
201
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100202 cmddata |= MMCCMD_DMATRIG;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500203
204 cmddata |= MMCCMD_WDATX;
205 if (data->flags == MMC_DATA_READ) {
206 set_val(&regs->mmcfifoctl, MMCFIFOCTL_FIFOLEV);
207 } else if (data->flags == MMC_DATA_WRITE) {
208 set_val(&regs->mmcfifoctl,
209 (MMCFIFOCTL_FIFOLEV |
210 MMCFIFOCTL_FIFODIR));
211 cmddata |= MMCCMD_DTRW;
212 }
213
214 set_val(&regs->mmctod, 0xFFFF);
215 set_val(&regs->mmcnblk, (data->blocks & MMCNBLK_NBLK_MASK));
216 set_val(&regs->mmcblen, (data->blocksize & MMCBLEN_BLEN_MASK));
217
218 if (data->flags == MMC_DATA_WRITE) {
219 uint val;
220 data_buf = (char *)data->src;
221 /* For write, fill FIFO with data before issue of CMD */
222 for (i = 0; (i < fifo_words) && bytes_left; i++) {
223 memcpy((char *)&val, data_buf, 4);
224 set_val(&regs->mmcdxr, val);
225 data_buf += 4;
226 bytes_left -= 4;
227 }
228 }
229 } else {
230 set_val(&regs->mmcblen, 0);
231 set_val(&regs->mmcnblk, 0);
232 }
233
234 set_val(&regs->mmctor, 0x1FFF);
235
236 /* Send the command */
237 set_val(&regs->mmcarghl, cmd->cmdarg);
238 set_val(&regs->mmccmd, cmddata);
239
240 status_rdy = MMCST0_RSPDNE;
241 status_err = (MMCST0_TOUTRS | MMCST0_TOUTRD |
242 MMCST0_CRCWR | MMCST0_CRCRD);
243 if (cmd->resp_type & MMC_RSP_CRC)
244 status_err |= MMCST0_CRCRS;
245
246 mmcstatus = get_val(&regs->mmcst0);
247 err = dmmc_check_status(regs, &mmcstatus, status_rdy, status_err);
248 if (err)
249 return err;
250
251 /* For R1b wait for busy done */
252 if (cmd->resp_type == MMC_RSP_R1b)
253 dmmc_busy_wait(regs);
254
255 /* Collect response from controller for specific commands */
256 if (mmcstatus & MMCST0_RSPDNE) {
257 /* Copy the response to the response buffer */
258 if (cmd->resp_type & MMC_RSP_136) {
259 cmd->response[0] = get_val(&regs->mmcrsp67);
260 cmd->response[1] = get_val(&regs->mmcrsp45);
261 cmd->response[2] = get_val(&regs->mmcrsp23);
262 cmd->response[3] = get_val(&regs->mmcrsp01);
263 } else if (cmd->resp_type & MMC_RSP_PRESENT) {
264 cmd->response[0] = get_val(&regs->mmcrsp67);
265 }
266 }
267
268 if (data == NULL)
269 return 0;
270
271 if (data->flags == MMC_DATA_READ) {
272 /* check for DATDNE along with DRRDY as the controller might
273 * set the DATDNE without DRRDY for smaller transfers with
274 * less than FIFO threshold bytes
275 */
276 status_rdy = MMCST0_DRRDY | MMCST0_DATDNE;
277 status_err = MMCST0_TOUTRD | MMCST0_CRCRD;
278 data_buf = data->dest;
279 } else {
280 status_rdy = MMCST0_DXRDY | MMCST0_DATDNE;
281 status_err = MMCST0_CRCWR;
282 }
283
284 /* Wait until all of the blocks are transferred */
285 while (bytes_left) {
286 err = dmmc_check_status(regs, &mmcstatus, status_rdy,
287 status_err);
288 if (err)
289 return err;
290
291 if (data->flags == MMC_DATA_READ) {
292 /*
293 * MMC controller sets the Data receive ready bit
294 * (DRRDY) in MMCST0 even before the entire FIFO is
295 * full. This results in erratic behavior if we start
296 * reading the FIFO soon after DRRDY. Wait for the
297 * FIFO full bit in MMCST1 for proper FIFO clearing.
298 */
299 if (bytes_left > fifo_bytes)
300 dmmc_wait_fifo_status(regs, 0x4a);
Davide Bonfanti3ba36d62012-11-29 01:06:53 +0000301 else if (bytes_left == fifo_bytes) {
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500302 dmmc_wait_fifo_status(regs, 0x40);
Davide Bonfanti3ba36d62012-11-29 01:06:53 +0000303 if (cmd->cmdidx == MMC_CMD_SEND_EXT_CSD)
304 udelay(600);
305 }
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500306
307 for (i = 0; bytes_left && (i < fifo_words); i++) {
308 cmddata = get_val(&regs->mmcdrr);
309 memcpy(data_buf, (char *)&cmddata, 4);
310 data_buf += 4;
311 bytes_left -= 4;
312 }
313 } else {
314 /*
315 * MMC controller sets the Data transmit ready bit
316 * (DXRDY) in MMCST0 even before the entire FIFO is
317 * empty. This results in erratic behavior if we start
318 * writing the FIFO soon after DXRDY. Wait for the
319 * FIFO empty bit in MMCST1 for proper FIFO clearing.
320 */
321 dmmc_wait_fifo_status(regs, MMCST1_FIFOEMP);
322 for (i = 0; bytes_left && (i < fifo_words); i++) {
323 memcpy((char *)&cmddata, data_buf, 4);
324 set_val(&regs->mmcdxr, cmddata);
325 data_buf += 4;
326 bytes_left -= 4;
327 }
328 dmmc_busy_wait(regs);
329 }
330 }
331
332 err = dmmc_check_status(regs, &mmcstatus, MMCST0_DATDNE, status_err);
333 if (err)
334 return err;
335
336 return 0;
337}
338
339/* Initialize Davinci MMC controller */
Adam Forddf6565c2018-08-09 06:15:12 -0500340#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500341static int dmmc_init(struct mmc *mmc)
342{
343 struct davinci_mmc *host = mmc->priv;
Adam Forddf6565c2018-08-09 06:15:12 -0500344#else
345static int davinci_dm_mmc_init(struct udevice *dev)
346{
347 struct davinci_mmc_priv *host = dev_get_priv(dev);
348#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500349 struct davinci_mmc_regs *regs = host->reg_base;
350
351 /* Clear status registers explicitly - soft reset doesn't clear it
352 * If Uboot is invoked from UBL with SDMMC Support, the status
353 * registers can have uncleared bits
354 */
355 get_val(&regs->mmcst0);
356 get_val(&regs->mmcst1);
357
358 /* Hold software reset */
359 set_bit(&regs->mmcctl, MMCCTL_DATRST);
360 set_bit(&regs->mmcctl, MMCCTL_CMDRST);
361 udelay(10);
362
363 set_val(&regs->mmcclk, 0x0);
364 set_val(&regs->mmctor, 0x1FFF);
365 set_val(&regs->mmctod, 0xFFFF);
366
367 /* Clear software reset */
368 clear_bit(&regs->mmcctl, MMCCTL_DATRST);
369 clear_bit(&regs->mmcctl, MMCCTL_CMDRST);
370
371 udelay(10);
372
373 /* Reset FIFO - Always use the maximum fifo threshold */
374 set_val(&regs->mmcfifoctl, (MMCFIFOCTL_FIFOLEV | MMCFIFOCTL_FIFORST));
375 set_val(&regs->mmcfifoctl, MMCFIFOCTL_FIFOLEV);
376
377 return 0;
378}
379
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900380/* Set buswidth or clock as indicated by the MMC framework */
Adam Forddf6565c2018-08-09 06:15:12 -0500381#if !CONFIG_IS_ENABLED(DM_MMC)
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900382static int dmmc_set_ios(struct mmc *mmc)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500383{
384 struct davinci_mmc *host = mmc->priv;
385 struct davinci_mmc_regs *regs = host->reg_base;
Adam Forddf6565c2018-08-09 06:15:12 -0500386#else
387static int davinci_mmc_set_ios(struct udevice *dev)
388{
389 struct mmc *mmc = mmc_get_mmc_dev(dev);
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500390
Adam Forddf6565c2018-08-09 06:15:12 -0500391 struct davinci_mmc_priv *host = dev_get_priv(dev);
392 struct davinci_mmc_regs *regs = host->reg_base;
393#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500394 /* Set the bus width */
395 if (mmc->bus_width == 4)
396 set_bit(&regs->mmcctl, MMCCTL_WIDTH_4_BIT);
397 else
398 clear_bit(&regs->mmcctl, MMCCTL_WIDTH_4_BIT);
399
400 /* Set clock speed */
Adam Forddf6565c2018-08-09 06:15:12 -0500401 if (mmc->clock) {
402#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500403 dmmc_set_clock(mmc, mmc->clock);
Adam Forddf6565c2018-08-09 06:15:12 -0500404#else
405 davinci_mmc_set_clock(dev, mmc->clock);
406#endif
407 }
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900408 return 0;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500409}
410
Adam Forddf6565c2018-08-09 06:15:12 -0500411#if !CONFIG_IS_ENABLED(DM_MMC)
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200412static const struct mmc_ops dmmc_ops = {
Adam Forddf6565c2018-08-09 06:15:12 -0500413 .send_cmd = dmmc_send_cmd,
414 .set_ios = dmmc_set_ios,
415 .init = dmmc_init,
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200416};
Adam Forddf6565c2018-08-09 06:15:12 -0500417#else
Adam Ford04355de2018-09-03 03:47:52 -0500418
419static int davinci_mmc_getcd(struct udevice *dev)
420{
421 int value = -1;
422#if CONFIG_IS_ENABLED(DM_GPIO)
423 struct davinci_mmc_priv *priv = dev_get_priv(dev);
424 value = dm_gpio_get_value(&priv->cd_gpio);
425#endif
426 /* if no CD return as 1 */
427 if (value < 0)
428 return 1;
429
430 return value;
431}
432
433static int davinci_mmc_getwp(struct udevice *dev)
434{
435 int value = -1;
436#if CONFIG_IS_ENABLED(DM_GPIO)
437 struct davinci_mmc_priv *priv = dev_get_priv(dev);
438
439 value = dm_gpio_get_value(&priv->wp_gpio);
440#endif
441 /* if no WP return as 0 */
442 if (value < 0)
443 return 0;
444
445 return value;
446}
447
Adam Forddf6565c2018-08-09 06:15:12 -0500448static const struct dm_mmc_ops davinci_mmc_ops = {
449 .send_cmd = davinci_mmc_send_cmd,
450 .set_ios = davinci_mmc_set_ios,
Adam Ford04355de2018-09-03 03:47:52 -0500451 .get_cd = davinci_mmc_getcd,
452 .get_wp = davinci_mmc_getwp,
Adam Forddf6565c2018-08-09 06:15:12 -0500453};
454#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200455
Adam Forddf6565c2018-08-09 06:15:12 -0500456#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500457/* Called from board_mmc_init during startup. Can be called multiple times
Adam Forddf6565c2018-08-09 06:15:12 -0500458* depending on the number of slots available on board and controller
459*/
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500460int davinci_mmc_init(bd_t *bis, struct davinci_mmc *host)
461{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200462 host->cfg.name = "davinci";
463 host->cfg.ops = &dmmc_ops;
464 host->cfg.f_min = 200000;
465 host->cfg.f_max = 25000000;
466 host->cfg.voltages = host->voltages;
467 host->cfg.host_caps = host->host_caps;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500468
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200469 host->cfg.b_max = DAVINCI_MAX_BLOCKS;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500470
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200471 mmc_create(&host->cfg, host);
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500472
473 return 0;
474}
Adam Forddf6565c2018-08-09 06:15:12 -0500475#else
476
477
478static int davinci_mmc_probe(struct udevice *dev)
479{
480 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Tom Rini797eee32020-01-03 12:00:04 -0500481 struct davinci_mmc_plat *plat = dev_get_platdata(dev);
Adam Forddf6565c2018-08-09 06:15:12 -0500482 struct davinci_mmc_priv *priv = dev_get_priv(dev);
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100483
Faiz Abbasc78ae112020-05-22 07:32:28 +0530484 priv->reg_base = plat->reg_base;
Adam Forddf6565c2018-08-09 06:15:12 -0500485 priv->input_clk = clk_get(DAVINCI_MMCSD_CLKID);
Adam Ford04355de2018-09-03 03:47:52 -0500486#if CONFIG_IS_ENABLED(DM_GPIO)
487 /* These GPIOs are optional */
488 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
489 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
490#endif
Tom Rini797eee32020-01-03 12:00:04 -0500491 upriv->mmc = &plat->mmc;
Adam Forddf6565c2018-08-09 06:15:12 -0500492
493 return davinci_dm_mmc_init(dev);
494}
495
496static int davinci_mmc_bind(struct udevice *dev)
497{
Tom Rini797eee32020-01-03 12:00:04 -0500498 struct davinci_mmc_plat *plat = dev_get_platdata(dev);
Adam Forddf6565c2018-08-09 06:15:12 -0500499
Tom Rini797eee32020-01-03 12:00:04 -0500500 return mmc_bind(dev, &plat->mmc, &plat->cfg);
Adam Forddf6565c2018-08-09 06:15:12 -0500501}
502
Faiz Abbasc78ae112020-05-22 07:32:28 +0530503#if CONFIG_IS_ENABLED(OF_CONTROL)
504static int davinci_mmc_ofdata_to_platdata(struct udevice *dev)
505{
506 struct davinci_mmc_plat *plat = dev_get_platdata(dev);
507 struct mmc_config *cfg = &plat->cfg;
508
509 plat->reg_base = (struct davinci_mmc_regs *)dev_read_addr(dev);
510 cfg->f_min = 200000;
511 cfg->f_max = 25000000;
512 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
513 cfg->host_caps = MMC_MODE_4BIT, /* DA850 supports only 4-bit SD/MMC */
514 cfg->b_max = DAVINCI_MAX_BLOCKS;
515 cfg->name = "da830-mmc";
516
517 return 0;
518}
519
Adam Forddf6565c2018-08-09 06:15:12 -0500520static const struct udevice_id davinci_mmc_ids[] = {
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100521 { .compatible = "ti,da830-mmc" },
Adam Forddf6565c2018-08-09 06:15:12 -0500522 {},
523};
Faiz Abbasc78ae112020-05-22 07:32:28 +0530524#endif
Walter Lozanoe3e24702020-06-25 01:10:04 -0300525U_BOOT_DRIVER(ti_da830_mmc) = {
Adam Forddf6565c2018-08-09 06:15:12 -0500526 .name = "davinci_mmc",
527 .id = UCLASS_MMC,
Faiz Abbasc78ae112020-05-22 07:32:28 +0530528#if CONFIG_IS_ENABLED(OF_CONTROL)
Adam Forddf6565c2018-08-09 06:15:12 -0500529 .of_match = davinci_mmc_ids,
Faiz Abbasc78ae112020-05-22 07:32:28 +0530530 .platdata_auto_alloc_size = sizeof(struct davinci_mmc_plat),
531 .ofdata_to_platdata = davinci_mmc_ofdata_to_platdata,
532#endif
Adam Forddf6565c2018-08-09 06:15:12 -0500533#if CONFIG_BLK
534 .bind = davinci_mmc_bind,
535#endif
536 .probe = davinci_mmc_probe,
537 .ops = &davinci_mmc_ops,
Adam Forddf6565c2018-08-09 06:15:12 -0500538 .priv_auto_alloc_size = sizeof(struct davinci_mmc_priv),
Faiz Abbasc78ae112020-05-22 07:32:28 +0530539#if !CONFIG_IS_ENABLED(OF_CONTROL)
540 .flags = DM_FLAG_PRE_RELOC,
541#endif
Adam Forddf6565c2018-08-09 06:15:12 -0500542};
543#endif