Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 2 | /* |
| 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 Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /* #define DEBUG */ |
| 13 | |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 14 | #include "common.h" |
Patrice Chotard | 879dbab | 2017-10-23 10:57:33 +0200 | [diff] [blame] | 15 | #include <clk.h> |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 16 | #include <errno.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 17 | #include <log.h> |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 18 | #include <malloc.h> |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 19 | #include <mmc.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 20 | #include <dm/device_compat.h> |
Linus Walleij | e64c9b4 | 2024-02-08 10:33:43 +0100 | [diff] [blame^] | 21 | #include <dm.h> |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 22 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 23 | #include <asm/io.h> |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 24 | #include <asm-generic/gpio.h> |
| 25 | |
| 26 | #include "arm_pl180_mmci.h" |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 27 | #include <linux/delay.h> |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 28 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 29 | #define MMC_CLOCK_MAX 48000000 |
| 30 | #define MMC_CLOCK_MIN 400000 |
| 31 | |
| 32 | struct arm_pl180_mmc_plat { |
| 33 | struct mmc_config cfg; |
| 34 | struct mmc mmc; |
| 35 | }; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 36 | |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 37 | static int wait_for_command_end(struct mmc *dev, struct mmc_cmd *cmd) |
| 38 | { |
| 39 | u32 hoststatus, statusmask; |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 40 | struct pl180_mmc_host *host = dev->priv; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 41 | |
| 42 | statusmask = SDI_STA_CTIMEOUT | SDI_STA_CCRCFAIL; |
| 43 | if ((cmd->resp_type & MMC_RSP_PRESENT)) |
| 44 | statusmask |= SDI_STA_CMDREND; |
| 45 | else |
| 46 | statusmask |= SDI_STA_CMDSENT; |
| 47 | |
| 48 | do |
| 49 | hoststatus = readl(&host->base->status) & statusmask; |
| 50 | while (!hoststatus); |
| 51 | |
| 52 | writel(statusmask, &host->base->status_clear); |
| 53 | if (hoststatus & SDI_STA_CTIMEOUT) { |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 54 | debug("CMD%d time out\n", cmd->cmdidx); |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 55 | return -ETIMEDOUT; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 56 | } else if ((hoststatus & SDI_STA_CCRCFAIL) && |
Andy Fleming | 611a347 | 2012-09-06 15:23:13 -0500 | [diff] [blame] | 57 | (cmd->resp_type & MMC_RSP_CRC)) { |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 58 | printf("CMD%d CRC error\n", cmd->cmdidx); |
| 59 | return -EILSEQ; |
| 60 | } |
| 61 | |
| 62 | if (cmd->resp_type & MMC_RSP_PRESENT) { |
| 63 | cmd->response[0] = readl(&host->base->response0); |
| 64 | cmd->response[1] = readl(&host->base->response1); |
| 65 | cmd->response[2] = readl(&host->base->response2); |
| 66 | cmd->response[3] = readl(&host->base->response3); |
| 67 | debug("CMD%d response[0]:0x%08X, response[1]:0x%08X, " |
| 68 | "response[2]:0x%08X, response[3]:0x%08X\n", |
| 69 | cmd->cmdidx, cmd->response[0], cmd->response[1], |
| 70 | cmd->response[2], cmd->response[3]); |
| 71 | } |
| 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | /* send command to the mmc card and wait for results */ |
| 77 | static int do_command(struct mmc *dev, struct mmc_cmd *cmd) |
| 78 | { |
| 79 | int result; |
| 80 | u32 sdi_cmd = 0; |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 81 | struct pl180_mmc_host *host = dev->priv; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 82 | |
| 83 | sdi_cmd = ((cmd->cmdidx & SDI_CMD_CMDINDEX_MASK) | SDI_CMD_CPSMEN); |
| 84 | |
| 85 | if (cmd->resp_type) { |
| 86 | sdi_cmd |= SDI_CMD_WAITRESP; |
| 87 | if (cmd->resp_type & MMC_RSP_136) |
| 88 | sdi_cmd |= SDI_CMD_LONGRESP; |
| 89 | } |
| 90 | |
| 91 | writel((u32)cmd->cmdarg, &host->base->argument); |
| 92 | udelay(COMMAND_REG_DELAY); |
| 93 | writel(sdi_cmd, &host->base->command); |
| 94 | result = wait_for_command_end(dev, cmd); |
| 95 | |
| 96 | /* After CMD2 set RCA to a none zero value. */ |
| 97 | if ((result == 0) && (cmd->cmdidx == MMC_CMD_ALL_SEND_CID)) |
| 98 | dev->rca = 10; |
| 99 | |
| 100 | /* After CMD3 open drain is switched off and push pull is used. */ |
| 101 | if ((result == 0) && (cmd->cmdidx == MMC_CMD_SET_RELATIVE_ADDR)) { |
| 102 | u32 sdi_pwr = readl(&host->base->power) & ~SDI_PWR_OPD; |
| 103 | writel(sdi_pwr, &host->base->power); |
| 104 | } |
| 105 | |
| 106 | return result; |
| 107 | } |
| 108 | |
| 109 | static int read_bytes(struct mmc *dev, u32 *dest, u32 blkcount, u32 blksize) |
| 110 | { |
| 111 | u32 *tempbuff = dest; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 112 | u64 xfercount = blkcount * blksize; |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 113 | struct pl180_mmc_host *host = dev->priv; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 114 | u32 status, status_err; |
| 115 | |
| 116 | debug("read_bytes: blkcount=%u blksize=%u\n", blkcount, blksize); |
| 117 | |
| 118 | status = readl(&host->base->status); |
| 119 | status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | |
| 120 | SDI_STA_RXOVERR); |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 121 | while ((!status_err) && (xfercount >= sizeof(u32))) { |
| 122 | if (status & SDI_STA_RXDAVL) { |
| 123 | *(tempbuff) = readl(&host->base->fifo); |
| 124 | tempbuff++; |
| 125 | xfercount -= sizeof(u32); |
| 126 | } |
| 127 | status = readl(&host->base->status); |
| 128 | status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | |
| 129 | SDI_STA_RXOVERR); |
| 130 | } |
| 131 | |
| 132 | status_err = status & |
| 133 | (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND | |
| 134 | SDI_STA_RXOVERR); |
| 135 | while (!status_err) { |
| 136 | status = readl(&host->base->status); |
| 137 | status_err = status & |
| 138 | (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND | |
| 139 | SDI_STA_RXOVERR); |
| 140 | } |
| 141 | |
| 142 | if (status & SDI_STA_DTIMEOUT) { |
| 143 | printf("Read data timed out, xfercount: %llu, status: 0x%08X\n", |
| 144 | xfercount, status); |
| 145 | return -ETIMEDOUT; |
| 146 | } else if (status & SDI_STA_DCRCFAIL) { |
| 147 | printf("Read data bytes CRC error: 0x%x\n", status); |
| 148 | return -EILSEQ; |
| 149 | } else if (status & SDI_STA_RXOVERR) { |
| 150 | printf("Read data RX overflow error\n"); |
| 151 | return -EIO; |
| 152 | } |
| 153 | |
| 154 | writel(SDI_ICR_MASK, &host->base->status_clear); |
| 155 | |
| 156 | if (xfercount) { |
| 157 | printf("Read data error, xfercount: %llu\n", xfercount); |
| 158 | return -ENOBUFS; |
| 159 | } |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
| 164 | static int write_bytes(struct mmc *dev, u32 *src, u32 blkcount, u32 blksize) |
| 165 | { |
| 166 | u32 *tempbuff = src; |
| 167 | int i; |
| 168 | u64 xfercount = blkcount * blksize; |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 169 | struct pl180_mmc_host *host = dev->priv; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 170 | u32 status, status_err; |
| 171 | |
| 172 | debug("write_bytes: blkcount=%u blksize=%u\n", blkcount, blksize); |
| 173 | |
| 174 | status = readl(&host->base->status); |
| 175 | status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT); |
| 176 | while (!status_err && xfercount) { |
| 177 | if (status & SDI_STA_TXFIFOBW) { |
| 178 | if (xfercount >= SDI_FIFO_BURST_SIZE * sizeof(u32)) { |
| 179 | for (i = 0; i < SDI_FIFO_BURST_SIZE; i++) |
| 180 | writel(*(tempbuff + i), |
| 181 | &host->base->fifo); |
| 182 | tempbuff += SDI_FIFO_BURST_SIZE; |
| 183 | xfercount -= SDI_FIFO_BURST_SIZE * sizeof(u32); |
| 184 | } else { |
| 185 | while (xfercount >= sizeof(u32)) { |
| 186 | writel(*(tempbuff), &host->base->fifo); |
| 187 | tempbuff++; |
| 188 | xfercount -= sizeof(u32); |
| 189 | } |
| 190 | } |
| 191 | } |
| 192 | status = readl(&host->base->status); |
| 193 | status_err = status & (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT); |
| 194 | } |
| 195 | |
| 196 | status_err = status & |
| 197 | (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND); |
| 198 | while (!status_err) { |
| 199 | status = readl(&host->base->status); |
| 200 | status_err = status & |
| 201 | (SDI_STA_DCRCFAIL | SDI_STA_DTIMEOUT | SDI_STA_DBCKEND); |
| 202 | } |
| 203 | |
| 204 | if (status & SDI_STA_DTIMEOUT) { |
| 205 | printf("Write data timed out, xfercount:%llu,status:0x%08X\n", |
| 206 | xfercount, status); |
| 207 | return -ETIMEDOUT; |
| 208 | } else if (status & SDI_STA_DCRCFAIL) { |
| 209 | printf("Write data CRC error\n"); |
| 210 | return -EILSEQ; |
| 211 | } |
| 212 | |
| 213 | writel(SDI_ICR_MASK, &host->base->status_clear); |
| 214 | |
| 215 | if (xfercount) { |
| 216 | printf("Write data error, xfercount:%llu", xfercount); |
| 217 | return -ENOBUFS; |
| 218 | } |
| 219 | |
| 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | static int do_data_transfer(struct mmc *dev, |
| 224 | struct mmc_cmd *cmd, |
| 225 | struct mmc_data *data) |
| 226 | { |
| 227 | int error = -ETIMEDOUT; |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 228 | struct pl180_mmc_host *host = dev->priv; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 229 | u32 blksz = 0; |
| 230 | u32 data_ctrl = 0; |
| 231 | u32 data_len = (u32) (data->blocks * data->blocksize); |
| 232 | |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 233 | 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 Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 241 | |
| 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 Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 263 | (u32)data->blocksize); |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | return error; |
| 267 | } |
| 268 | |
| 269 | static 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 Arif | b2bfae6 | 2021-10-19 15:49:48 +0100 | [diff] [blame] | 283 | static 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 Chung | b6cd1d3 | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 291 | static int host_set_ios(struct mmc *dev) |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 292 | { |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 293 | struct pl180_mmc_host *host = dev->priv; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 294 | 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 Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 301 | u32 tmp_clock; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 302 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 303 | if (dev->clock >= dev->cfg->f_max) { |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 304 | clkdiv = 0; |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 305 | dev->clock = dev->cfg->f_max; |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 306 | } else { |
| 307 | clkdiv = (host->clock_in / dev->clock) - 2; |
| 308 | } |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 309 | |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 310 | 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 Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 315 | |
| 316 | if (clkdiv > SDI_CLKCR_CLKDIV_MASK) |
| 317 | clkdiv = SDI_CLKCR_CLKDIV_MASK; |
| 318 | |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 319 | tmp_clock = host->clock_in / (clkdiv + 2); |
| 320 | dev->clock = tmp_clock; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 321 | 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 Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 336 | case 8: |
| 337 | buswidth |= SDI_CLKCR_WIDBUS_8; |
| 338 | break; |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 339 | default: |
John Rigby | 03f609b | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 340 | printf("Invalid bus width: %d\n", dev->bus_width); |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 341 | break; |
| 342 | } |
| 343 | sdi_clkcr &= ~(SDI_CLKCR_WIDBUS_MASK); |
| 344 | sdi_clkcr |= buswidth; |
| 345 | } |
Usama Arif | b2bfae6 | 2021-10-19 15:49:48 +0100 | [diff] [blame] | 346 | /* 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 Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 352 | |
| 353 | writel(sdi_clkcr, &host->base->clock); |
| 354 | udelay(CLK_CHANGE_DELAY); |
Jaehoon Chung | b6cd1d3 | 2016-12-30 15:30:16 +0900 | [diff] [blame] | 355 | |
Matt Waddel | 17eb497 | 2011-04-16 11:54:07 +0000 | [diff] [blame] | 356 | return 0; |
| 357 | } |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 358 | |
Patrice Chotard | 328bd2e | 2018-07-25 17:49:07 +0200 | [diff] [blame] | 359 | static void arm_pl180_mmc_init(struct pl180_mmc_host *host) |
| 360 | { |
| 361 | u32 sdi_u32; |
| 362 | |
| 363 | writel(host->pwr_init, &host->base->power); |
| 364 | writel(host->clkdiv_init, &host->base->clock); |
| 365 | udelay(CLK_CHANGE_DELAY); |
| 366 | |
| 367 | /* Disable mmc interrupts */ |
| 368 | sdi_u32 = readl(&host->base->mask0) & ~SDI_MASK0_MASK; |
| 369 | writel(sdi_u32, &host->base->mask0); |
| 370 | } |
| 371 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 372 | static int arm_pl180_mmc_probe(struct udevice *dev) |
| 373 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 374 | struct arm_pl180_mmc_plat *pdata = dev_get_plat(dev); |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 375 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev); |
| 376 | struct mmc *mmc = &pdata->mmc; |
Simon Glass | 9558862 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 377 | struct pl180_mmc_host *host = dev_get_priv(dev); |
Patrice Chotard | 328bd2e | 2018-07-25 17:49:07 +0200 | [diff] [blame] | 378 | struct mmc_config *cfg = &pdata->cfg; |
Patrice Chotard | 879dbab | 2017-10-23 10:57:33 +0200 | [diff] [blame] | 379 | struct clk clk; |
Patrice Chotard | 3e178ba | 2018-12-05 14:04:32 +0100 | [diff] [blame] | 380 | u32 periphid; |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 381 | int ret; |
| 382 | |
Patrice Chotard | 879dbab | 2017-10-23 10:57:33 +0200 | [diff] [blame] | 383 | ret = clk_get_by_index(dev, 0, &clk); |
| 384 | if (ret < 0) |
| 385 | return ret; |
| 386 | |
| 387 | ret = clk_enable(&clk); |
| 388 | if (ret) { |
| 389 | dev_err(dev, "failed to enable clock\n"); |
| 390 | return ret; |
| 391 | } |
| 392 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 393 | host->pwr_init = INIT_PWR; |
| 394 | host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V1 | SDI_CLKCR_CLKEN | |
| 395 | SDI_CLKCR_HWFC_EN; |
Patrice Chotard | 879dbab | 2017-10-23 10:57:33 +0200 | [diff] [blame] | 396 | host->clock_in = clk_get_rate(&clk); |
Patrice Chotard | 3e178ba | 2018-12-05 14:04:32 +0100 | [diff] [blame] | 397 | |
Stephan Gerhold | 064e83e | 2021-07-06 16:54:36 +0200 | [diff] [blame] | 398 | cfg->name = dev->name; |
| 399 | cfg->voltages = VOLTAGE_WINDOW_SD; |
| 400 | cfg->host_caps = 0; |
| 401 | cfg->f_min = host->clock_in / (2 * (SDI_CLKCR_CLKDIV_INIT_V1 + 1)); |
| 402 | cfg->f_max = MMC_CLOCK_MAX; |
| 403 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 404 | |
Patrice Chotard | 3e178ba | 2018-12-05 14:04:32 +0100 | [diff] [blame] | 405 | periphid = dev_read_u32_default(dev, "arm,primecell-periphid", 0); |
| 406 | switch (periphid) { |
| 407 | case STM32_MMCI_ID: /* stm32 variant */ |
| 408 | host->version2 = false; |
| 409 | break; |
Stephan Gerhold | 064e83e | 2021-07-06 16:54:36 +0200 | [diff] [blame] | 410 | case UX500V2_MMCI_ID: |
| 411 | host->pwr_init = SDI_PWR_OPD | SDI_PWR_PWRCTRL_ON; |
| 412 | host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V2 | SDI_CLKCR_CLKEN | |
| 413 | SDI_CLKCR_HWFC_EN; |
| 414 | cfg->voltages = VOLTAGE_WINDOW_MMC; |
| 415 | cfg->f_min = host->clock_in / (2 + SDI_CLKCR_CLKDIV_INIT_V2); |
| 416 | host->version2 = true; |
| 417 | break; |
Patrice Chotard | 3e178ba | 2018-12-05 14:04:32 +0100 | [diff] [blame] | 418 | default: |
Linus Walleij | e64c9b4 | 2024-02-08 10:33:43 +0100 | [diff] [blame^] | 419 | host->version2 = false; /* ARM variant */ |
Patrice Chotard | 3e178ba | 2018-12-05 14:04:32 +0100 | [diff] [blame] | 420 | } |
Patrice Chotard | 45fc9e6 | 2017-10-23 10:57:32 +0200 | [diff] [blame] | 421 | |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 422 | gpio_request_by_name(dev, "cd-gpios", 0, &host->cd_gpio, GPIOD_IS_IN); |
| 423 | |
Stephan Gerhold | ff9eb9d | 2021-07-06 16:54:35 +0200 | [diff] [blame] | 424 | ret = mmc_of_parse(dev, cfg); |
| 425 | if (ret) |
| 426 | return ret; |
Patrice Chotard | 45fc9e6 | 2017-10-23 10:57:32 +0200 | [diff] [blame] | 427 | |
Patrice Chotard | 328bd2e | 2018-07-25 17:49:07 +0200 | [diff] [blame] | 428 | arm_pl180_mmc_init(host); |
| 429 | mmc->priv = host; |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 430 | mmc->dev = dev; |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 431 | upriv->mmc = mmc; |
| 432 | |
| 433 | return 0; |
| 434 | } |
| 435 | |
Patrice Chotard | 328bd2e | 2018-07-25 17:49:07 +0200 | [diff] [blame] | 436 | int arm_pl180_mmc_bind(struct udevice *dev) |
| 437 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 438 | struct arm_pl180_mmc_plat *plat = dev_get_plat(dev); |
Patrice Chotard | 328bd2e | 2018-07-25 17:49:07 +0200 | [diff] [blame] | 439 | |
| 440 | return mmc_bind(dev, &plat->mmc, &plat->cfg); |
| 441 | } |
| 442 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 443 | static int dm_host_request(struct udevice *dev, struct mmc_cmd *cmd, |
| 444 | struct mmc_data *data) |
| 445 | { |
| 446 | struct mmc *mmc = mmc_get_mmc_dev(dev); |
| 447 | |
| 448 | return host_request(mmc, cmd, data); |
| 449 | } |
| 450 | |
| 451 | static int dm_host_set_ios(struct udevice *dev) |
| 452 | { |
| 453 | struct mmc *mmc = mmc_get_mmc_dev(dev); |
| 454 | |
| 455 | return host_set_ios(mmc); |
| 456 | } |
| 457 | |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 458 | static int dm_mmc_getcd(struct udevice *dev) |
| 459 | { |
Simon Glass | 9558862 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 460 | struct pl180_mmc_host *host = dev_get_priv(dev); |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 461 | int value = 1; |
| 462 | |
Patrice Chotard | 53dbf6e | 2018-07-25 17:49:09 +0200 | [diff] [blame] | 463 | if (dm_gpio_is_valid(&host->cd_gpio)) |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 464 | value = dm_gpio_get_value(&host->cd_gpio); |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 465 | |
| 466 | return value; |
| 467 | } |
| 468 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 469 | static const struct dm_mmc_ops arm_pl180_dm_mmc_ops = { |
| 470 | .send_cmd = dm_host_request, |
| 471 | .set_ios = dm_host_set_ios, |
Patrice Chotard | c8e7bd6 | 2017-10-23 10:57:34 +0200 | [diff] [blame] | 472 | .get_cd = dm_mmc_getcd, |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 473 | }; |
| 474 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 475 | static int arm_pl180_mmc_of_to_plat(struct udevice *dev) |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 476 | { |
Simon Glass | 9558862 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 477 | struct pl180_mmc_host *host = dev_get_priv(dev); |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 478 | |
Stephan Gerhold | a16abe3 | 2021-07-06 16:54:34 +0200 | [diff] [blame] | 479 | host->base = dev_read_addr_ptr(dev); |
| 480 | if (!host->base) |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 481 | return -EINVAL; |
| 482 | |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | static const struct udevice_id arm_pl180_mmc_match[] = { |
Patrice Chotard | 3e178ba | 2018-12-05 14:04:32 +0100 | [diff] [blame] | 487 | { .compatible = "arm,pl180" }, |
Stephan Gerhold | cc86471 | 2021-07-06 16:54:33 +0200 | [diff] [blame] | 488 | { .compatible = "arm,pl18x" }, |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 489 | { /* sentinel */ } |
| 490 | }; |
| 491 | |
| 492 | U_BOOT_DRIVER(arm_pl180_mmc) = { |
| 493 | .name = "arm_pl180_mmc", |
| 494 | .id = UCLASS_MMC, |
| 495 | .of_match = arm_pl180_mmc_match, |
| 496 | .ops = &arm_pl180_dm_mmc_ops, |
| 497 | .probe = arm_pl180_mmc_probe, |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 498 | .of_to_plat = arm_pl180_mmc_of_to_plat, |
Patrice Chotard | 328bd2e | 2018-07-25 17:49:07 +0200 | [diff] [blame] | 499 | .bind = arm_pl180_mmc_bind, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 500 | .priv_auto = sizeof(struct pl180_mmc_host), |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 501 | .plat_auto = sizeof(struct arm_pl180_mmc_plat), |
Patrice Chotard | fcce420 | 2017-10-23 10:57:31 +0200 | [diff] [blame] | 502 | }; |