blob: f00b0ff0dc95354aaaaf7bbe4ab66fe4ecdbaf34 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Matt Waddel17eb4972011-04-16 11:54:07 +00002/*
3 * ARM PrimeCell MultiMedia Card Interface - PL180
4 *
5 * Copyright (C) ST-Ericsson SA 2010
6 *
7 * Author: Ulf Hansson <ulf.hansson@stericsson.com>
8 * Author: Martin Lundholm <martin.xa.lundholm@stericsson.com>
9 * Ported to drivers/mmc/ by: Matt Waddel <matt.waddel@linaro.org>
Matt Waddel17eb4972011-04-16 11:54:07 +000010 */
11
12/* #define DEBUG */
13
Patrice Chotard879dbab2017-10-23 10:57:33 +020014#include <clk.h>
Matt Waddel17eb4972011-04-16 11:54:07 +000015#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Patrice Chotardfcce4202017-10-23 10:57:31 +020017#include <malloc.h>
Matt Waddel17eb4972011-04-16 11:54:07 +000018#include <mmc.h>
Simon Glass9bc15642020-02-03 07:36:16 -070019#include <dm/device_compat.h>
Linus Walleije64c9b42024-02-08 10:33:43 +010020#include <dm.h>
Patrice Chotardfcce4202017-10-23 10:57:31 +020021
Patrice Chotardfcce4202017-10-23 10:57:31 +020022#include <asm/io.h>
Patrice Chotardc8e7bd62017-10-23 10:57:34 +020023#include <asm-generic/gpio.h>
24
25#include "arm_pl180_mmci.h"
Simon Glassdbd79542020-05-10 11:40:11 -060026#include <linux/delay.h>
Patrice Chotardfcce4202017-10-23 10:57:31 +020027
Patrice Chotardfcce4202017-10-23 10:57:31 +020028#define MMC_CLOCK_MAX 48000000
29#define MMC_CLOCK_MIN 400000
30
31struct arm_pl180_mmc_plat {
32 struct mmc_config cfg;
33 struct mmc mmc;
34};
Matt Waddel17eb4972011-04-16 11:54:07 +000035
Matt Waddel17eb4972011-04-16 11:54:07 +000036static int wait_for_command_end(struct mmc *dev, struct mmc_cmd *cmd)
37{
38 u32 hoststatus, statusmask;
John Rigby03f609b2012-07-31 08:59:31 +000039 struct pl180_mmc_host *host = dev->priv;
Matt Waddel17eb4972011-04-16 11:54:07 +000040
41 statusmask = SDI_STA_CTIMEOUT | SDI_STA_CCRCFAIL;
42 if ((cmd->resp_type & MMC_RSP_PRESENT))
43 statusmask |= SDI_STA_CMDREND;
44 else
45 statusmask |= SDI_STA_CMDSENT;
46
47 do
48 hoststatus = readl(&host->base->status) & statusmask;
49 while (!hoststatus);
50
51 writel(statusmask, &host->base->status_clear);
52 if (hoststatus & SDI_STA_CTIMEOUT) {
John Rigby03f609b2012-07-31 08:59:31 +000053 debug("CMD%d time out\n", cmd->cmdidx);
Jaehoon Chung7825d202016-07-19 16:33:36 +090054 return -ETIMEDOUT;
Matt Waddel17eb4972011-04-16 11:54:07 +000055 } else if ((hoststatus & SDI_STA_CCRCFAIL) &&
Andy Fleming611a3472012-09-06 15:23:13 -050056 (cmd->resp_type & MMC_RSP_CRC)) {
Matt Waddel17eb4972011-04-16 11:54:07 +000057 printf("CMD%d CRC error\n", cmd->cmdidx);
58 return -EILSEQ;
59 }
60
61 if (cmd->resp_type & MMC_RSP_PRESENT) {
62 cmd->response[0] = readl(&host->base->response0);
63 cmd->response[1] = readl(&host->base->response1);
64 cmd->response[2] = readl(&host->base->response2);
65 cmd->response[3] = readl(&host->base->response3);
66 debug("CMD%d response[0]:0x%08X, response[1]:0x%08X, "
67 "response[2]:0x%08X, response[3]:0x%08X\n",
68 cmd->cmdidx, cmd->response[0], cmd->response[1],
69 cmd->response[2], cmd->response[3]);
70 }
71
72 return 0;
73}
74
75/* send command to the mmc card and wait for results */
76static int do_command(struct mmc *dev, struct mmc_cmd *cmd)
77{
78 int result;
79 u32 sdi_cmd = 0;
John Rigby03f609b2012-07-31 08:59:31 +000080 struct pl180_mmc_host *host = dev->priv;
Matt Waddel17eb4972011-04-16 11:54:07 +000081
82 sdi_cmd = ((cmd->cmdidx & SDI_CMD_CMDINDEX_MASK) | SDI_CMD_CPSMEN);
83
84 if (cmd->resp_type) {
85 sdi_cmd |= SDI_CMD_WAITRESP;
86 if (cmd->resp_type & MMC_RSP_136)
87 sdi_cmd |= SDI_CMD_LONGRESP;
88 }
89
90 writel((u32)cmd->cmdarg, &host->base->argument);
91 udelay(COMMAND_REG_DELAY);
92 writel(sdi_cmd, &host->base->command);
93 result = wait_for_command_end(dev, cmd);
94
95 /* After CMD2 set RCA to a none zero value. */
96 if ((result == 0) && (cmd->cmdidx == MMC_CMD_ALL_SEND_CID))
97 dev->rca = 10;
98
99 /* After CMD3 open drain is switched off and push pull is used. */
100 if ((result == 0) && (cmd->cmdidx == MMC_CMD_SET_RELATIVE_ADDR)) {
101 u32 sdi_pwr = readl(&host->base->power) & ~SDI_PWR_OPD;
102 writel(sdi_pwr, &host->base->power);
103 }
104
105 return result;
106}
107
108static int read_bytes(struct mmc *dev, u32 *dest, u32 blkcount, u32 blksize)
109{
110 u32 *tempbuff = dest;
Matt Waddel17eb4972011-04-16 11:54:07 +0000111 u64 xfercount = blkcount * blksize;
John Rigby03f609b2012-07-31 08:59:31 +0000112 struct pl180_mmc_host *host = dev->priv;
Matt Waddel17eb4972011-04-16 11:54:07 +0000113 u32 status, status_err;
114
115 debug("read_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
116
117 status = readl(&host->base->status);
118 status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT |
119 SDI_STA_RXOVERR);
Matt Waddel17eb4972011-04-16 11:54:07 +0000120 while ((!status_err) && (xfercount >= sizeof(u32))) {
121 if (status & SDI_STA_RXDAVL) {
122 *(tempbuff) = readl(&host->base->fifo);
123 tempbuff++;
124 xfercount -= sizeof(u32);
125 }
126 status = readl(&host->base->status);
127 status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT |
128 SDI_STA_RXOVERR);
129 }
130
131 status_err = status &
132 (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND |
133 SDI_STA_RXOVERR);
134 while (!status_err) {
135 status = readl(&host->base->status);
136 status_err = status &
137 (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND |
138 SDI_STA_RXOVERR);
139 }
140
141 if (status & SDI_STA_DTIMEOUT) {
142 printf("Read data timed out, xfercount: %llu, status: 0x%08X\n",
143 xfercount, status);
144 return -ETIMEDOUT;
145 } else if (status & SDI_STA_DCRCFAIL) {
146 printf("Read data bytes CRC error: 0x%x\n", status);
147 return -EILSEQ;
148 } else if (status & SDI_STA_RXOVERR) {
149 printf("Read data RX overflow error\n");
150 return -EIO;
151 }
152
153 writel(SDI_ICR_MASK, &host->base->status_clear);
154
155 if (xfercount) {
156 printf("Read data error, xfercount: %llu\n", xfercount);
157 return -ENOBUFS;
158 }
159
160 return 0;
161}
162
163static int write_bytes(struct mmc *dev, u32 *src, u32 blkcount, u32 blksize)
164{
165 u32 *tempbuff = src;
166 int i;
167 u64 xfercount = blkcount * blksize;
John Rigby03f609b2012-07-31 08:59:31 +0000168 struct pl180_mmc_host *host = dev->priv;
Matt Waddel17eb4972011-04-16 11:54:07 +0000169 u32 status, status_err;
170
171 debug("write_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
172
173 status = readl(&host->base->status);
174 status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT);
175 while (!status_err && xfercount) {
176 if (status & SDI_STA_TXFIFOBW) {
177 if (xfercount >= SDI_FIFO_BURST_SIZE * sizeof(u32)) {
178 for (i = 0; i < SDI_FIFO_BURST_SIZE; i++)
179 writel(*(tempbuff + i),
180 &host->base->fifo);
181 tempbuff += SDI_FIFO_BURST_SIZE;
182 xfercount -= SDI_FIFO_BURST_SIZE * sizeof(u32);
183 } else {
184 while (xfercount >= sizeof(u32)) {
185 writel(*(tempbuff), &host->base->fifo);
186 tempbuff++;
187 xfercount -= sizeof(u32);
188 }
189 }
190 }
191 status = readl(&host->base->status);
192 status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT);
193 }
194
195 status_err = status &
196 (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND);
197 while (!status_err) {
198 status = readl(&host->base->status);
199 status_err = status &
200 (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND);
201 }
202
203 if (status & SDI_STA_DTIMEOUT) {
204 printf("Write data timed out, xfercount:%llu,status:0x%08X\n",
205 xfercount, status);
206 return -ETIMEDOUT;
207 } else if (status & SDI_STA_DCRCFAIL) {
208 printf("Write data CRC error\n");
209 return -EILSEQ;
210 }
211
212 writel(SDI_ICR_MASK, &host->base->status_clear);
213
214 if (xfercount) {
215 printf("Write data error, xfercount:%llu", xfercount);
216 return -ENOBUFS;
217 }
218
219 return 0;
220}
221
222static int do_data_transfer(struct mmc *dev,
223 struct mmc_cmd *cmd,
224 struct mmc_data *data)
225{
226 int error = -ETIMEDOUT;
John Rigby03f609b2012-07-31 08:59:31 +0000227 struct pl180_mmc_host *host = dev->priv;
Matt Waddel17eb4972011-04-16 11:54:07 +0000228 u32 blksz = 0;
229 u32 data_ctrl = 0;
230 u32 data_len = (u32) (data->blocks * data->blocksize);
Maximilian Brunea4c61e42024-04-15 11:53:11 +0200231 assert(data_len < U16_MAX); /* should be ensured by arm_pl180_get_b_max */
Matt Waddel17eb4972011-04-16 11:54:07 +0000232
John Rigby03f609b2012-07-31 08:59:31 +0000233 if (!host->version2) {
234 blksz = (ffs(data->blocksize) - 1);
235 data_ctrl |= ((blksz << 4) & SDI_DCTRL_DBLKSIZE_MASK);
236 } else {
237 blksz = data->blocksize;
238 data_ctrl |= (blksz << SDI_DCTRL_DBLOCKSIZE_V2_SHIFT);
239 }
240 data_ctrl |= SDI_DCTRL_DTEN | SDI_DCTRL_BUSYMODE;
Matt Waddel17eb4972011-04-16 11:54:07 +0000241
242 writel(SDI_DTIMER_DEFAULT, &host->base->datatimer);
243 writel(data_len, &host->base->datalength);
244 udelay(DATA_REG_DELAY);
245
246 if (data->flags & MMC_DATA_READ) {
247 data_ctrl |= SDI_DCTRL_DTDIR_IN;
248 writel(data_ctrl, &host->base->datactrl);
249
250 error = do_command(dev, cmd);
251 if (error)
252 return error;
253
254 error = read_bytes(dev, (u32 *)data->dest, (u32)data->blocks,
255 (u32)data->blocksize);
256 } else if (data->flags & MMC_DATA_WRITE) {
257 error = do_command(dev, cmd);
258 if (error)
259 return error;
260
261 writel(data_ctrl, &host->base->datactrl);
262 error = write_bytes(dev, (u32 *)data->src, (u32)data->blocks,
John Rigby03f609b2012-07-31 08:59:31 +0000263 (u32)data->blocksize);
Matt Waddel17eb4972011-04-16 11:54:07 +0000264 }
265
266 return error;
267}
268
269static int host_request(struct mmc *dev,
270 struct mmc_cmd *cmd,
271 struct mmc_data *data)
272{
273 int result;
274
275 if (data)
276 result = do_data_transfer(dev, cmd, data);
277 else
278 result = do_command(dev, cmd);
279
280 return result;
281}
282
Usama Arifb2bfae62021-10-19 15:49:48 +0100283static int check_peripheral_id(struct pl180_mmc_host *host, u32 periph_id)
284{
285 return readl(&host->base->periph_id0) == (periph_id & 0xFF) &&
286 readl(&host->base->periph_id1) == ((periph_id >> 8) & 0xFF) &&
287 readl(&host->base->periph_id2) == ((periph_id >> 16) & 0xFF) &&
288 readl(&host->base->periph_id3) == ((periph_id >> 24) & 0xFF);
289}
290
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900291static int host_set_ios(struct mmc *dev)
Matt Waddel17eb4972011-04-16 11:54:07 +0000292{
John Rigby03f609b2012-07-31 08:59:31 +0000293 struct pl180_mmc_host *host = dev->priv;
Matt Waddel17eb4972011-04-16 11:54:07 +0000294 u32 sdi_clkcr;
295
296 sdi_clkcr = readl(&host->base->clock);
297
298 /* Ramp up the clock rate */
299 if (dev->clock) {
300 u32 clkdiv = 0;
John Rigby03f609b2012-07-31 08:59:31 +0000301 u32 tmp_clock;
Matt Waddel17eb4972011-04-16 11:54:07 +0000302
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200303 if (dev->clock >= dev->cfg->f_max) {
John Rigby03f609b2012-07-31 08:59:31 +0000304 clkdiv = 0;
Pantelis Antoniou2c850462014-03-11 19:34:20 +0200305 dev->clock = dev->cfg->f_max;
John Rigby03f609b2012-07-31 08:59:31 +0000306 } else {
307 clkdiv = (host->clock_in / dev->clock) - 2;
308 }
Matt Waddel17eb4972011-04-16 11:54:07 +0000309
John Rigby03f609b2012-07-31 08:59:31 +0000310 tmp_clock = host->clock_in / (clkdiv + 2);
311 while (tmp_clock > dev->clock) {
312 clkdiv++;
313 tmp_clock = host->clock_in / (clkdiv + 2);
314 }
Matt Waddel17eb4972011-04-16 11:54:07 +0000315
316 if (clkdiv > SDI_CLKCR_CLKDIV_MASK)
317 clkdiv = SDI_CLKCR_CLKDIV_MASK;
318
John Rigby03f609b2012-07-31 08:59:31 +0000319 tmp_clock = host->clock_in / (clkdiv + 2);
320 dev->clock = tmp_clock;
Matt Waddel17eb4972011-04-16 11:54:07 +0000321 sdi_clkcr &= ~(SDI_CLKCR_CLKDIV_MASK);
322 sdi_clkcr |= clkdiv;
323 }
324
325 /* Set the bus width */
326 if (dev->bus_width) {
327 u32 buswidth = 0;
328
329 switch (dev->bus_width) {
330 case 1:
331 buswidth |= SDI_CLKCR_WIDBUS_1;
332 break;
333 case 4:
334 buswidth |= SDI_CLKCR_WIDBUS_4;
335 break;
John Rigby03f609b2012-07-31 08:59:31 +0000336 case 8:
337 buswidth |= SDI_CLKCR_WIDBUS_8;
338 break;
Matt Waddel17eb4972011-04-16 11:54:07 +0000339 default:
John Rigby03f609b2012-07-31 08:59:31 +0000340 printf("Invalid bus width: %d\n", dev->bus_width);
Matt Waddel17eb4972011-04-16 11:54:07 +0000341 break;
342 }
343 sdi_clkcr &= ~(SDI_CLKCR_WIDBUS_MASK);
344 sdi_clkcr |= buswidth;
345 }
Usama Arifb2bfae62021-10-19 15:49:48 +0100346 /* For MMCs' with peripheral id 0x02041180 and 0x03041180, H/W flow control
347 * needs to be enabled for multi block writes (MMC CMD 18).
348 */
349 if (check_peripheral_id(host, 0x02041180) ||
350 check_peripheral_id(host, 0x03041180))
351 sdi_clkcr |= SDI_CLKCR_HWFCEN;
Matt Waddel17eb4972011-04-16 11:54:07 +0000352
353 writel(sdi_clkcr, &host->base->clock);
354 udelay(CLK_CHANGE_DELAY);
Jaehoon Chungb6cd1d32016-12-30 15:30:16 +0900355
Matt Waddel17eb4972011-04-16 11:54:07 +0000356 return 0;
357}
Patrice Chotardfcce4202017-10-23 10:57:31 +0200358
Maximilian Brunea4c61e42024-04-15 11:53:11 +0200359static int arm_pl180_get_b_max(struct udevice *dev, void *dst, lbaint_t blkcnt)
360{
361 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
362 struct mmc *mmc = upriv->mmc;
363
364 return U16_MAX / mmc->read_bl_len;
365}
366
Patrice Chotard328bd2e2018-07-25 17:49:07 +0200367static void arm_pl180_mmc_init(struct pl180_mmc_host *host)
368{
369 u32 sdi_u32;
370
371 writel(host->pwr_init, &host->base->power);
372 writel(host->clkdiv_init, &host->base->clock);
373 udelay(CLK_CHANGE_DELAY);
374
375 /* Disable mmc interrupts */
376 sdi_u32 = readl(&host->base->mask0) & ~SDI_MASK0_MASK;
377 writel(sdi_u32, &host->base->mask0);
378}
379
Patrice Chotardfcce4202017-10-23 10:57:31 +0200380static int arm_pl180_mmc_probe(struct udevice *dev)
381{
Simon Glassfa20e932020-12-03 16:55:20 -0700382 struct arm_pl180_mmc_plat *pdata = dev_get_plat(dev);
Patrice Chotardfcce4202017-10-23 10:57:31 +0200383 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
384 struct mmc *mmc = &pdata->mmc;
Simon Glass95588622020-12-22 19:30:28 -0700385 struct pl180_mmc_host *host = dev_get_priv(dev);
Patrice Chotard328bd2e2018-07-25 17:49:07 +0200386 struct mmc_config *cfg = &pdata->cfg;
Patrice Chotard879dbab2017-10-23 10:57:33 +0200387 struct clk clk;
Patrice Chotard3e178ba2018-12-05 14:04:32 +0100388 u32 periphid;
Patrice Chotardfcce4202017-10-23 10:57:31 +0200389 int ret;
390
Patrice Chotard879dbab2017-10-23 10:57:33 +0200391 ret = clk_get_by_index(dev, 0, &clk);
392 if (ret < 0)
393 return ret;
394
395 ret = clk_enable(&clk);
396 if (ret) {
397 dev_err(dev, "failed to enable clock\n");
398 return ret;
399 }
400
Patrice Chotardfcce4202017-10-23 10:57:31 +0200401 host->pwr_init = INIT_PWR;
402 host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V1 | SDI_CLKCR_CLKEN |
403 SDI_CLKCR_HWFC_EN;
Patrice Chotard879dbab2017-10-23 10:57:33 +0200404 host->clock_in = clk_get_rate(&clk);
Patrice Chotard3e178ba2018-12-05 14:04:32 +0100405
Stephan Gerhold064e83e2021-07-06 16:54:36 +0200406 cfg->name = dev->name;
407 cfg->voltages = VOLTAGE_WINDOW_SD;
408 cfg->host_caps = 0;
409 cfg->f_min = host->clock_in / (2 * (SDI_CLKCR_CLKDIV_INIT_V1 + 1));
410 cfg->f_max = MMC_CLOCK_MAX;
411 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
412
Patrice Chotard3e178ba2018-12-05 14:04:32 +0100413 periphid = dev_read_u32_default(dev, "arm,primecell-periphid", 0);
414 switch (periphid) {
415 case STM32_MMCI_ID: /* stm32 variant */
416 host->version2 = false;
417 break;
Stephan Gerhold064e83e2021-07-06 16:54:36 +0200418 case UX500V2_MMCI_ID:
419 host->pwr_init = SDI_PWR_OPD | SDI_PWR_PWRCTRL_ON;
420 host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V2 | SDI_CLKCR_CLKEN |
421 SDI_CLKCR_HWFC_EN;
422 cfg->voltages = VOLTAGE_WINDOW_MMC;
423 cfg->f_min = host->clock_in / (2 + SDI_CLKCR_CLKDIV_INIT_V2);
424 host->version2 = true;
425 break;
Patrice Chotard3e178ba2018-12-05 14:04:32 +0100426 default:
Linus Walleije64c9b42024-02-08 10:33:43 +0100427 host->version2 = false; /* ARM variant */
Patrice Chotard3e178ba2018-12-05 14:04:32 +0100428 }
Patrice Chotard45fc9e62017-10-23 10:57:32 +0200429
Patrice Chotardc8e7bd62017-10-23 10:57:34 +0200430 gpio_request_by_name(dev, "cd-gpios", 0, &host->cd_gpio, GPIOD_IS_IN);
431
Stephan Gerholdff9eb9d2021-07-06 16:54:35 +0200432 ret = mmc_of_parse(dev, cfg);
433 if (ret)
434 return ret;
Patrice Chotard45fc9e62017-10-23 10:57:32 +0200435
Patrice Chotard328bd2e2018-07-25 17:49:07 +0200436 arm_pl180_mmc_init(host);
437 mmc->priv = host;
Patrice Chotardfcce4202017-10-23 10:57:31 +0200438 mmc->dev = dev;
Patrice Chotardfcce4202017-10-23 10:57:31 +0200439 upriv->mmc = mmc;
440
441 return 0;
442}
443
Patrice Chotard328bd2e2018-07-25 17:49:07 +0200444int arm_pl180_mmc_bind(struct udevice *dev)
445{
Simon Glassfa20e932020-12-03 16:55:20 -0700446 struct arm_pl180_mmc_plat *plat = dev_get_plat(dev);
Patrice Chotard328bd2e2018-07-25 17:49:07 +0200447
448 return mmc_bind(dev, &plat->mmc, &plat->cfg);
449}
450
Patrice Chotardfcce4202017-10-23 10:57:31 +0200451static int dm_host_request(struct udevice *dev, struct mmc_cmd *cmd,
452 struct mmc_data *data)
453{
454 struct mmc *mmc = mmc_get_mmc_dev(dev);
455
456 return host_request(mmc, cmd, data);
457}
458
459static int dm_host_set_ios(struct udevice *dev)
460{
461 struct mmc *mmc = mmc_get_mmc_dev(dev);
462
463 return host_set_ios(mmc);
464}
465
Patrice Chotardc8e7bd62017-10-23 10:57:34 +0200466static int dm_mmc_getcd(struct udevice *dev)
467{
Simon Glass95588622020-12-22 19:30:28 -0700468 struct pl180_mmc_host *host = dev_get_priv(dev);
Patrice Chotardc8e7bd62017-10-23 10:57:34 +0200469 int value = 1;
470
Patrice Chotard53dbf6e2018-07-25 17:49:09 +0200471 if (dm_gpio_is_valid(&host->cd_gpio))
Patrice Chotardc8e7bd62017-10-23 10:57:34 +0200472 value = dm_gpio_get_value(&host->cd_gpio);
Patrice Chotardc8e7bd62017-10-23 10:57:34 +0200473
474 return value;
475}
476
Patrice Chotardfcce4202017-10-23 10:57:31 +0200477static const struct dm_mmc_ops arm_pl180_dm_mmc_ops = {
478 .send_cmd = dm_host_request,
479 .set_ios = dm_host_set_ios,
Patrice Chotardc8e7bd62017-10-23 10:57:34 +0200480 .get_cd = dm_mmc_getcd,
Maximilian Brunea4c61e42024-04-15 11:53:11 +0200481 .get_b_max = arm_pl180_get_b_max,
Patrice Chotardfcce4202017-10-23 10:57:31 +0200482};
483
Simon Glassaad29ae2020-12-03 16:55:21 -0700484static int arm_pl180_mmc_of_to_plat(struct udevice *dev)
Patrice Chotardfcce4202017-10-23 10:57:31 +0200485{
Simon Glass95588622020-12-22 19:30:28 -0700486 struct pl180_mmc_host *host = dev_get_priv(dev);
Patrice Chotardfcce4202017-10-23 10:57:31 +0200487
Stephan Gerholda16abe32021-07-06 16:54:34 +0200488 host->base = dev_read_addr_ptr(dev);
489 if (!host->base)
Patrice Chotardfcce4202017-10-23 10:57:31 +0200490 return -EINVAL;
491
Patrice Chotardfcce4202017-10-23 10:57:31 +0200492 return 0;
493}
494
495static const struct udevice_id arm_pl180_mmc_match[] = {
Patrice Chotard3e178ba2018-12-05 14:04:32 +0100496 { .compatible = "arm,pl180" },
Stephan Gerholdcc864712021-07-06 16:54:33 +0200497 { .compatible = "arm,pl18x" },
Patrice Chotardfcce4202017-10-23 10:57:31 +0200498 { /* sentinel */ }
499};
500
501U_BOOT_DRIVER(arm_pl180_mmc) = {
502 .name = "arm_pl180_mmc",
503 .id = UCLASS_MMC,
504 .of_match = arm_pl180_mmc_match,
505 .ops = &arm_pl180_dm_mmc_ops,
506 .probe = arm_pl180_mmc_probe,
Simon Glassaad29ae2020-12-03 16:55:21 -0700507 .of_to_plat = arm_pl180_mmc_of_to_plat,
Patrice Chotard328bd2e2018-07-25 17:49:07 +0200508 .bind = arm_pl180_mmc_bind,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700509 .priv_auto = sizeof(struct pl180_mmc_host),
Simon Glass71fa5b42020-12-03 16:55:18 -0700510 .plat_auto = sizeof(struct arm_pl180_mmc_plat),
Patrice Chotardfcce4202017-10-23 10:57:31 +0200511};