blob: ef5cd4e7234ff4e1f67dc18fd4efbf455540e27b [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>
Sandeep Paulraj57418d22010-12-20 20:01:21 -050019
20#define DAVINCI_MAX_BLOCKS (32)
21#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};
36
37struct davinci_mmc_plat
38{
Adam Forddf6565c2018-08-09 06:15:12 -050039 struct mmc_config cfg;
40 struct mmc mmc;
41};
42#endif
43
Sandeep Paulraj57418d22010-12-20 20:01:21 -050044/* Set davinci clock prescalar value based on the required clock in HZ */
Adam Forddf6565c2018-08-09 06:15:12 -050045#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -050046static void dmmc_set_clock(struct mmc *mmc, uint clock)
47{
48 struct davinci_mmc *host = mmc->priv;
Adam Forddf6565c2018-08-09 06:15:12 -050049#else
50
51static void davinci_mmc_set_clock(struct udevice *dev, uint clock)
52{
53 struct davinci_mmc_priv *host = dev_get_priv(dev);
54 struct mmc *mmc = mmc_get_mmc_dev(dev);
55#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -050056 struct davinci_mmc_regs *regs = host->reg_base;
57 uint clkrt, sysclk2, act_clock;
58
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020059 if (clock < mmc->cfg->f_min)
60 clock = mmc->cfg->f_min;
61 if (clock > mmc->cfg->f_max)
62 clock = mmc->cfg->f_max;
Sandeep Paulraj57418d22010-12-20 20:01:21 -050063
64 set_val(&regs->mmcclk, 0);
65 sysclk2 = host->input_clk;
66 clkrt = (sysclk2 / (2 * clock)) - 1;
67
68 /* Calculate the actual clock for the divider used */
69 act_clock = (sysclk2 / (2 * (clkrt + 1)));
70
71 /* Adjust divider if actual clock exceeds the required clock */
72 if (act_clock > clock)
73 clkrt++;
74
75 /* check clock divider boundary and correct it */
76 if (clkrt > 0xFF)
77 clkrt = 0xFF;
78
79 set_val(&regs->mmcclk, (clkrt | MMCCLK_CLKEN));
80}
81
82/* Status bit wait loop for MMCST1 */
83static int
84dmmc_wait_fifo_status(volatile struct davinci_mmc_regs *regs, uint status)
85{
Heiko Schocher79b05d52011-10-30 19:15:53 +000086 uint wdog = WATCHDOG_COUNT;
87
Sandeep Paulraj57418d22010-12-20 20:01:21 -050088 while (--wdog && ((get_val(&regs->mmcst1) & status) != status))
89 udelay(10);
90
91 if (!(get_val(&regs->mmcctl) & MMCCTL_WIDTH_4_BIT))
92 udelay(100);
93
94 if (wdog == 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +090095 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -050096
97 return 0;
98}
99
100/* Busy bit wait loop for MMCST1 */
101static int dmmc_busy_wait(volatile struct davinci_mmc_regs *regs)
102{
Heiko Schocher79b05d52011-10-30 19:15:53 +0000103 uint wdog = WATCHDOG_COUNT;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500104
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500105 while (--wdog && (get_val(&regs->mmcst1) & MMCST1_BUSY))
106 udelay(10);
107
108 if (wdog == 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900109 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500110
111 return 0;
112}
113
114/* Status bit wait loop for MMCST0 - Checks for error bits as well */
115static int dmmc_check_status(volatile struct davinci_mmc_regs *regs,
116 uint *cur_st, uint st_ready, uint st_error)
117{
118 uint wdog = WATCHDOG_COUNT;
119 uint mmcstatus = *cur_st;
120
121 while (wdog--) {
122 if (mmcstatus & st_ready) {
123 *cur_st = mmcstatus;
124 mmcstatus = get_val(&regs->mmcst1);
125 return 0;
126 } else if (mmcstatus & st_error) {
127 if (mmcstatus & MMCST0_TOUTRS)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900128 return -ETIMEDOUT;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500129 printf("[ ST0 ERROR %x]\n", mmcstatus);
130 /*
131 * Ignore CRC errors as some MMC cards fail to
132 * initialize on DM365-EVM on the SD1 slot
133 */
134 if (mmcstatus & MMCST0_CRCRS)
135 return 0;
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900136 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500137 }
138 udelay(10);
139
140 mmcstatus = get_val(&regs->mmcst0);
141 }
142
143 printf("Status %x Timeout ST0:%x ST1:%x\n", st_ready, mmcstatus,
144 get_val(&regs->mmcst1));
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900145 return -ECOMM;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500146}
147
148/*
Adam Forddf6565c2018-08-09 06:15:12 -0500149 * Sends a command out on the bus. Takes the device pointer,
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500150 * a command pointer, and an optional data pointer.
151 */
Adam Forddf6565c2018-08-09 06:15:12 -0500152#if !CONFIG_IS_ENABLED(DM_MMC)
153static int dmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500154{
155 struct davinci_mmc *host = mmc->priv;
Adam Forddf6565c2018-08-09 06:15:12 -0500156#else
157static int
158davinci_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd, struct mmc_data *data)
159{
160 struct davinci_mmc_priv *host = dev_get_priv(dev);
161#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500162 volatile struct davinci_mmc_regs *regs = host->reg_base;
163 uint mmcstatus, status_rdy, status_err;
164 uint i, cmddata, bytes_left = 0;
165 int fifo_words, fifo_bytes, err;
166 char *data_buf = NULL;
167
168 /* Clear status registers */
169 mmcstatus = get_val(&regs->mmcst0);
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100170 fifo_words = 16;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500171 fifo_bytes = fifo_words << 2;
172
173 /* Wait for any previous busy signal to be cleared */
174 dmmc_busy_wait(regs);
175
176 cmddata = cmd->cmdidx;
177 cmddata |= MMCCMD_PPLEN;
178
179 /* Send init clock for CMD0 */
180 if (cmd->cmdidx == MMC_CMD_GO_IDLE_STATE)
181 cmddata |= MMCCMD_INITCK;
182
183 switch (cmd->resp_type) {
184 case MMC_RSP_R1b:
185 cmddata |= MMCCMD_BSYEXP;
186 /* Fall-through */
187 case MMC_RSP_R1: /* R1, R1b, R5, R6, R7 */
188 cmddata |= MMCCMD_RSPFMT_R1567;
189 break;
190 case MMC_RSP_R2:
191 cmddata |= MMCCMD_RSPFMT_R2;
192 break;
193 case MMC_RSP_R3: /* R3, R4 */
194 cmddata |= MMCCMD_RSPFMT_R3;
195 break;
196 }
197
198 set_val(&regs->mmcim, 0);
199
200 if (data) {
201 /* clear previous data transfer if any and set new one */
202 bytes_left = (data->blocksize * data->blocks);
203
204 /* Reset FIFO - Always use 32 byte fifo threshold */
205 set_val(&regs->mmcfifoctl,
206 (MMCFIFOCTL_FIFOLEV | MMCFIFOCTL_FIFORST));
207
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100208 cmddata |= MMCCMD_DMATRIG;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500209
210 cmddata |= MMCCMD_WDATX;
211 if (data->flags == MMC_DATA_READ) {
212 set_val(&regs->mmcfifoctl, MMCFIFOCTL_FIFOLEV);
213 } else if (data->flags == MMC_DATA_WRITE) {
214 set_val(&regs->mmcfifoctl,
215 (MMCFIFOCTL_FIFOLEV |
216 MMCFIFOCTL_FIFODIR));
217 cmddata |= MMCCMD_DTRW;
218 }
219
220 set_val(&regs->mmctod, 0xFFFF);
221 set_val(&regs->mmcnblk, (data->blocks & MMCNBLK_NBLK_MASK));
222 set_val(&regs->mmcblen, (data->blocksize & MMCBLEN_BLEN_MASK));
223
224 if (data->flags == MMC_DATA_WRITE) {
225 uint val;
226 data_buf = (char *)data->src;
227 /* For write, fill FIFO with data before issue of CMD */
228 for (i = 0; (i < fifo_words) && bytes_left; i++) {
229 memcpy((char *)&val, data_buf, 4);
230 set_val(&regs->mmcdxr, val);
231 data_buf += 4;
232 bytes_left -= 4;
233 }
234 }
235 } else {
236 set_val(&regs->mmcblen, 0);
237 set_val(&regs->mmcnblk, 0);
238 }
239
240 set_val(&regs->mmctor, 0x1FFF);
241
242 /* Send the command */
243 set_val(&regs->mmcarghl, cmd->cmdarg);
244 set_val(&regs->mmccmd, cmddata);
245
246 status_rdy = MMCST0_RSPDNE;
247 status_err = (MMCST0_TOUTRS | MMCST0_TOUTRD |
248 MMCST0_CRCWR | MMCST0_CRCRD);
249 if (cmd->resp_type & MMC_RSP_CRC)
250 status_err |= MMCST0_CRCRS;
251
252 mmcstatus = get_val(&regs->mmcst0);
253 err = dmmc_check_status(regs, &mmcstatus, status_rdy, status_err);
254 if (err)
255 return err;
256
257 /* For R1b wait for busy done */
258 if (cmd->resp_type == MMC_RSP_R1b)
259 dmmc_busy_wait(regs);
260
261 /* Collect response from controller for specific commands */
262 if (mmcstatus & MMCST0_RSPDNE) {
263 /* Copy the response to the response buffer */
264 if (cmd->resp_type & MMC_RSP_136) {
265 cmd->response[0] = get_val(&regs->mmcrsp67);
266 cmd->response[1] = get_val(&regs->mmcrsp45);
267 cmd->response[2] = get_val(&regs->mmcrsp23);
268 cmd->response[3] = get_val(&regs->mmcrsp01);
269 } else if (cmd->resp_type & MMC_RSP_PRESENT) {
270 cmd->response[0] = get_val(&regs->mmcrsp67);
271 }
272 }
273
274 if (data == NULL)
275 return 0;
276
277 if (data->flags == MMC_DATA_READ) {
278 /* check for DATDNE along with DRRDY as the controller might
279 * set the DATDNE without DRRDY for smaller transfers with
280 * less than FIFO threshold bytes
281 */
282 status_rdy = MMCST0_DRRDY | MMCST0_DATDNE;
283 status_err = MMCST0_TOUTRD | MMCST0_CRCRD;
284 data_buf = data->dest;
285 } else {
286 status_rdy = MMCST0_DXRDY | MMCST0_DATDNE;
287 status_err = MMCST0_CRCWR;
288 }
289
290 /* Wait until all of the blocks are transferred */
291 while (bytes_left) {
292 err = dmmc_check_status(regs, &mmcstatus, status_rdy,
293 status_err);
294 if (err)
295 return err;
296
297 if (data->flags == MMC_DATA_READ) {
298 /*
299 * MMC controller sets the Data receive ready bit
300 * (DRRDY) in MMCST0 even before the entire FIFO is
301 * full. This results in erratic behavior if we start
302 * reading the FIFO soon after DRRDY. Wait for the
303 * FIFO full bit in MMCST1 for proper FIFO clearing.
304 */
305 if (bytes_left > fifo_bytes)
306 dmmc_wait_fifo_status(regs, 0x4a);
Davide Bonfanti3ba36d62012-11-29 01:06:53 +0000307 else if (bytes_left == fifo_bytes) {
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500308 dmmc_wait_fifo_status(regs, 0x40);
Davide Bonfanti3ba36d62012-11-29 01:06:53 +0000309 if (cmd->cmdidx == MMC_CMD_SEND_EXT_CSD)
310 udelay(600);
311 }
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500312
313 for (i = 0; bytes_left && (i < fifo_words); i++) {
314 cmddata = get_val(&regs->mmcdrr);
315 memcpy(data_buf, (char *)&cmddata, 4);
316 data_buf += 4;
317 bytes_left -= 4;
318 }
319 } else {
320 /*
321 * MMC controller sets the Data transmit ready bit
322 * (DXRDY) in MMCST0 even before the entire FIFO is
323 * empty. This results in erratic behavior if we start
324 * writing the FIFO soon after DXRDY. Wait for the
325 * FIFO empty bit in MMCST1 for proper FIFO clearing.
326 */
327 dmmc_wait_fifo_status(regs, MMCST1_FIFOEMP);
328 for (i = 0; bytes_left && (i < fifo_words); i++) {
329 memcpy((char *)&cmddata, data_buf, 4);
330 set_val(&regs->mmcdxr, cmddata);
331 data_buf += 4;
332 bytes_left -= 4;
333 }
334 dmmc_busy_wait(regs);
335 }
336 }
337
338 err = dmmc_check_status(regs, &mmcstatus, MMCST0_DATDNE, status_err);
339 if (err)
340 return err;
341
342 return 0;
343}
344
345/* Initialize Davinci MMC controller */
Adam Forddf6565c2018-08-09 06:15:12 -0500346#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500347static int dmmc_init(struct mmc *mmc)
348{
349 struct davinci_mmc *host = mmc->priv;
Adam Forddf6565c2018-08-09 06:15:12 -0500350#else
351static int davinci_dm_mmc_init(struct udevice *dev)
352{
353 struct davinci_mmc_priv *host = dev_get_priv(dev);
354#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500355 struct davinci_mmc_regs *regs = host->reg_base;
356
357 /* Clear status registers explicitly - soft reset doesn't clear it
358 * If Uboot is invoked from UBL with SDMMC Support, the status
359 * registers can have uncleared bits
360 */
361 get_val(&regs->mmcst0);
362 get_val(&regs->mmcst1);
363
364 /* Hold software reset */
365 set_bit(&regs->mmcctl, MMCCTL_DATRST);
366 set_bit(&regs->mmcctl, MMCCTL_CMDRST);
367 udelay(10);
368
369 set_val(&regs->mmcclk, 0x0);
370 set_val(&regs->mmctor, 0x1FFF);
371 set_val(&regs->mmctod, 0xFFFF);
372
373 /* Clear software reset */
374 clear_bit(&regs->mmcctl, MMCCTL_DATRST);
375 clear_bit(&regs->mmcctl, MMCCTL_CMDRST);
376
377 udelay(10);
378
379 /* Reset FIFO - Always use the maximum fifo threshold */
380 set_val(&regs->mmcfifoctl, (MMCFIFOCTL_FIFOLEV | MMCFIFOCTL_FIFORST));
381 set_val(&regs->mmcfifoctl, MMCFIFOCTL_FIFOLEV);
382
383 return 0;
384}
385
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900386/* Set buswidth or clock as indicated by the MMC framework */
Adam Forddf6565c2018-08-09 06:15:12 -0500387#if !CONFIG_IS_ENABLED(DM_MMC)
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900388static int dmmc_set_ios(struct mmc *mmc)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500389{
390 struct davinci_mmc *host = mmc->priv;
391 struct davinci_mmc_regs *regs = host->reg_base;
Adam Forddf6565c2018-08-09 06:15:12 -0500392#else
393static int davinci_mmc_set_ios(struct udevice *dev)
394{
395 struct mmc *mmc = mmc_get_mmc_dev(dev);
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500396
Adam Forddf6565c2018-08-09 06:15:12 -0500397 struct davinci_mmc_priv *host = dev_get_priv(dev);
398 struct davinci_mmc_regs *regs = host->reg_base;
399#endif
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500400 /* Set the bus width */
401 if (mmc->bus_width == 4)
402 set_bit(&regs->mmcctl, MMCCTL_WIDTH_4_BIT);
403 else
404 clear_bit(&regs->mmcctl, MMCCTL_WIDTH_4_BIT);
405
406 /* Set clock speed */
Adam Forddf6565c2018-08-09 06:15:12 -0500407 if (mmc->clock) {
408#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500409 dmmc_set_clock(mmc, mmc->clock);
Adam Forddf6565c2018-08-09 06:15:12 -0500410#else
411 davinci_mmc_set_clock(dev, mmc->clock);
412#endif
413 }
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900414 return 0;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500415}
416
Adam Forddf6565c2018-08-09 06:15:12 -0500417#if !CONFIG_IS_ENABLED(DM_MMC)
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200418static const struct mmc_ops dmmc_ops = {
Adam Forddf6565c2018-08-09 06:15:12 -0500419 .send_cmd = dmmc_send_cmd,
420 .set_ios = dmmc_set_ios,
421 .init = dmmc_init,
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200422};
Adam Forddf6565c2018-08-09 06:15:12 -0500423#else
Adam Ford04355de2018-09-03 03:47:52 -0500424
425static int davinci_mmc_getcd(struct udevice *dev)
426{
427 int value = -1;
428#if CONFIG_IS_ENABLED(DM_GPIO)
429 struct davinci_mmc_priv *priv = dev_get_priv(dev);
430 value = dm_gpio_get_value(&priv->cd_gpio);
431#endif
432 /* if no CD return as 1 */
433 if (value < 0)
434 return 1;
435
436 return value;
437}
438
439static int davinci_mmc_getwp(struct udevice *dev)
440{
441 int value = -1;
442#if CONFIG_IS_ENABLED(DM_GPIO)
443 struct davinci_mmc_priv *priv = dev_get_priv(dev);
444
445 value = dm_gpio_get_value(&priv->wp_gpio);
446#endif
447 /* if no WP return as 0 */
448 if (value < 0)
449 return 0;
450
451 return value;
452}
453
Adam Forddf6565c2018-08-09 06:15:12 -0500454static const struct dm_mmc_ops davinci_mmc_ops = {
455 .send_cmd = davinci_mmc_send_cmd,
456 .set_ios = davinci_mmc_set_ios,
Adam Ford04355de2018-09-03 03:47:52 -0500457 .get_cd = davinci_mmc_getcd,
458 .get_wp = davinci_mmc_getwp,
Adam Forddf6565c2018-08-09 06:15:12 -0500459};
460#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200461
Adam Forddf6565c2018-08-09 06:15:12 -0500462#if !CONFIG_IS_ENABLED(DM_MMC)
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500463/* Called from board_mmc_init during startup. Can be called multiple times
Adam Forddf6565c2018-08-09 06:15:12 -0500464* depending on the number of slots available on board and controller
465*/
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500466int davinci_mmc_init(bd_t *bis, struct davinci_mmc *host)
467{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200468 host->cfg.name = "davinci";
469 host->cfg.ops = &dmmc_ops;
470 host->cfg.f_min = 200000;
471 host->cfg.f_max = 25000000;
472 host->cfg.voltages = host->voltages;
473 host->cfg.host_caps = host->host_caps;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500474
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200475 host->cfg.b_max = DAVINCI_MAX_BLOCKS;
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500476
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200477 mmc_create(&host->cfg, host);
Sandeep Paulraj57418d22010-12-20 20:01:21 -0500478
479 return 0;
480}
Adam Forddf6565c2018-08-09 06:15:12 -0500481#else
482
483
484static int davinci_mmc_probe(struct udevice *dev)
485{
486 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
Tom Rini797eee32020-01-03 12:00:04 -0500487 struct davinci_mmc_plat *plat = dev_get_platdata(dev);
Adam Forddf6565c2018-08-09 06:15:12 -0500488 struct davinci_mmc_priv *priv = dev_get_priv(dev);
Tom Rini797eee32020-01-03 12:00:04 -0500489 struct mmc_config *cfg = &plat->cfg;
Bartosz Golaszewski3ef94712019-11-14 16:10:31 +0100490#ifdef CONFIG_SPL_BUILD
491 int ret;
492#endif
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100493
Adam Forddf6565c2018-08-09 06:15:12 -0500494 cfg->f_min = 200000;
495 cfg->f_max = 25000000;
496 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34,
497 cfg->host_caps = MMC_MODE_4BIT, /* DA850 supports only 4-bit SD/MMC */
498 cfg->b_max = DAVINCI_MAX_BLOCKS;
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100499 cfg->name = "da830-mmc";
Adam Forddf6565c2018-08-09 06:15:12 -0500500
501 priv->reg_base = (struct davinci_mmc_regs *)dev_read_addr(dev);
502 priv->input_clk = clk_get(DAVINCI_MMCSD_CLKID);
503
Adam Ford04355de2018-09-03 03:47:52 -0500504#if CONFIG_IS_ENABLED(DM_GPIO)
505 /* These GPIOs are optional */
506 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
507 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
508#endif
509
Tom Rini797eee32020-01-03 12:00:04 -0500510 upriv->mmc = &plat->mmc;
Adam Forddf6565c2018-08-09 06:15:12 -0500511
Bartosz Golaszewski3ef94712019-11-14 16:10:31 +0100512#ifdef CONFIG_SPL_BUILD
513 /*
514 * FIXME This is a temporary workaround to enable the driver model in
515 * SPL on omapl138-lcdk. For some reason the bind() callback is not
516 * being called in SPL for MMC which breaks the mmc boot - the hack
517 * is to call mmc_bind() from probe(). We also don't have full DT
518 * support in SPL, hence the hard-coded base register address.
519 */
520 priv->reg_base = (struct davinci_mmc_regs *)DAVINCI_MMC_SD0_BASE;
Tom Rini797eee32020-01-03 12:00:04 -0500521 ret = mmc_bind(dev, &plat->mmc, &plat->cfg);
Bartosz Golaszewski3ef94712019-11-14 16:10:31 +0100522 if (ret)
523 return ret;
524#endif
525
Adam Forddf6565c2018-08-09 06:15:12 -0500526 return davinci_dm_mmc_init(dev);
527}
528
529static int davinci_mmc_bind(struct udevice *dev)
530{
Tom Rini797eee32020-01-03 12:00:04 -0500531 struct davinci_mmc_plat *plat = dev_get_platdata(dev);
Adam Forddf6565c2018-08-09 06:15:12 -0500532
Tom Rini797eee32020-01-03 12:00:04 -0500533 return mmc_bind(dev, &plat->mmc, &plat->cfg);
Adam Forddf6565c2018-08-09 06:15:12 -0500534}
535
Adam Forddf6565c2018-08-09 06:15:12 -0500536static const struct udevice_id davinci_mmc_ids[] = {
Bartosz Golaszewski6a971532019-11-14 16:10:28 +0100537 { .compatible = "ti,da830-mmc" },
Adam Forddf6565c2018-08-09 06:15:12 -0500538 {},
539};
540
541U_BOOT_DRIVER(davinci_mmc_drv) = {
542 .name = "davinci_mmc",
543 .id = UCLASS_MMC,
544 .of_match = davinci_mmc_ids,
545#if CONFIG_BLK
546 .bind = davinci_mmc_bind,
547#endif
548 .probe = davinci_mmc_probe,
549 .ops = &davinci_mmc_ops,
Tom Rini797eee32020-01-03 12:00:04 -0500550 .platdata_auto_alloc_size = sizeof(struct davinci_mmc_plat),
Adam Forddf6565c2018-08-09 06:15:12 -0500551 .priv_auto_alloc_size = sizeof(struct davinci_mmc_priv),
552};
553#endif