1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * davinci_mmc.c - TI DaVinci MMC/SD/SDIO driver 4 * 5 * Copyright (C) 2006 Texas Instruments. 6 * Original author: Purushotam Kumar 7 * Copyright (C) 2009 David Brownell 8 */ 9 10 #include <linux/clk.h> 11 #include <linux/cpufreq.h> 12 #include <linux/delay.h> 13 #include <linux/dma-mapping.h> 14 #include <linux/dmaengine.h> 15 #include <linux/err.h> 16 #include <linux/interrupt.h> 17 #include <linux/io.h> 18 #include <linux/ioport.h> 19 #include <linux/irq.h> 20 #include <linux/mmc/host.h> 21 #include <linux/mmc/mmc.h> 22 #include <linux/mmc/slot-gpio.h> 23 #include <linux/module.h> 24 #include <linux/platform_data/mmc-davinci.h> 25 #include <linux/platform_device.h> 26 #include <linux/property.h> 27 28 /* 29 * Register Definitions 30 */ 31 #define DAVINCI_MMCCTL 0x00 /* Control Register */ 32 #define DAVINCI_MMCCLK 0x04 /* Memory Clock Control Register */ 33 #define DAVINCI_MMCST0 0x08 /* Status Register 0 */ 34 #define DAVINCI_MMCST1 0x0C /* Status Register 1 */ 35 #define DAVINCI_MMCIM 0x10 /* Interrupt Mask Register */ 36 #define DAVINCI_MMCTOR 0x14 /* Response Time-Out Register */ 37 #define DAVINCI_MMCTOD 0x18 /* Data Read Time-Out Register */ 38 #define DAVINCI_MMCBLEN 0x1C /* Block Length Register */ 39 #define DAVINCI_MMCNBLK 0x20 /* Number of Blocks Register */ 40 #define DAVINCI_MMCNBLC 0x24 /* Number of Blocks Counter Register */ 41 #define DAVINCI_MMCDRR 0x28 /* Data Receive Register */ 42 #define DAVINCI_MMCDXR 0x2C /* Data Transmit Register */ 43 #define DAVINCI_MMCCMD 0x30 /* Command Register */ 44 #define DAVINCI_MMCARGHL 0x34 /* Argument Register */ 45 #define DAVINCI_MMCRSP01 0x38 /* Response Register 0 and 1 */ 46 #define DAVINCI_MMCRSP23 0x3C /* Response Register 0 and 1 */ 47 #define DAVINCI_MMCRSP45 0x40 /* Response Register 0 and 1 */ 48 #define DAVINCI_MMCRSP67 0x44 /* Response Register 0 and 1 */ 49 #define DAVINCI_MMCDRSP 0x48 /* Data Response Register */ 50 #define DAVINCI_MMCETOK 0x4C 51 #define DAVINCI_MMCCIDX 0x50 /* Command Index Register */ 52 #define DAVINCI_MMCCKC 0x54 53 #define DAVINCI_MMCTORC 0x58 54 #define DAVINCI_MMCTODC 0x5C 55 #define DAVINCI_MMCBLNC 0x60 56 #define DAVINCI_SDIOCTL 0x64 57 #define DAVINCI_SDIOST0 0x68 58 #define DAVINCI_SDIOIEN 0x6C 59 #define DAVINCI_SDIOIST 0x70 60 #define DAVINCI_MMCFIFOCTL 0x74 /* FIFO Control Register */ 61 62 /* DAVINCI_MMCCTL definitions */ 63 #define MMCCTL_DATRST (1 << 0) 64 #define MMCCTL_CMDRST (1 << 1) 65 #define MMCCTL_WIDTH_8_BIT (1 << 8) 66 #define MMCCTL_WIDTH_4_BIT (1 << 2) 67 #define MMCCTL_DATEG_DISABLED (0 << 6) 68 #define MMCCTL_DATEG_RISING (1 << 6) 69 #define MMCCTL_DATEG_FALLING (2 << 6) 70 #define MMCCTL_DATEG_BOTH (3 << 6) 71 #define MMCCTL_PERMDR_LE (0 << 9) 72 #define MMCCTL_PERMDR_BE (1 << 9) 73 #define MMCCTL_PERMDX_LE (0 << 10) 74 #define MMCCTL_PERMDX_BE (1 << 10) 75 76 /* DAVINCI_MMCCLK definitions */ 77 #define MMCCLK_CLKEN (1 << 8) 78 #define MMCCLK_CLKRT_MASK (0xFF << 0) 79 80 /* IRQ bit definitions, for DAVINCI_MMCST0 and DAVINCI_MMCIM */ 81 #define MMCST0_DATDNE BIT(0) /* data done */ 82 #define MMCST0_BSYDNE BIT(1) /* busy done */ 83 #define MMCST0_RSPDNE BIT(2) /* command done */ 84 #define MMCST0_TOUTRD BIT(3) /* data read timeout */ 85 #define MMCST0_TOUTRS BIT(4) /* command response timeout */ 86 #define MMCST0_CRCWR BIT(5) /* data write CRC error */ 87 #define MMCST0_CRCRD BIT(6) /* data read CRC error */ 88 #define MMCST0_CRCRS BIT(7) /* command response CRC error */ 89 #define MMCST0_DXRDY BIT(9) /* data transmit ready (fifo empty) */ 90 #define MMCST0_DRRDY BIT(10) /* data receive ready (data in fifo)*/ 91 #define MMCST0_DATED BIT(11) /* DAT3 edge detect */ 92 #define MMCST0_TRNDNE BIT(12) /* transfer done */ 93 94 /* DAVINCI_MMCST1 definitions */ 95 #define MMCST1_BUSY (1 << 0) 96 97 /* DAVINCI_MMCCMD definitions */ 98 #define MMCCMD_CMD_MASK (0x3F << 0) 99 #define MMCCMD_PPLEN (1 << 7) 100 #define MMCCMD_BSYEXP (1 << 8) 101 #define MMCCMD_RSPFMT_MASK (3 << 9) 102 #define MMCCMD_RSPFMT_NONE (0 << 9) 103 #define MMCCMD_RSPFMT_R1456 (1 << 9) 104 #define MMCCMD_RSPFMT_R2 (2 << 9) 105 #define MMCCMD_RSPFMT_R3 (3 << 9) 106 #define MMCCMD_DTRW (1 << 11) 107 #define MMCCMD_STRMTP (1 << 12) 108 #define MMCCMD_WDATX (1 << 13) 109 #define MMCCMD_INITCK (1 << 14) 110 #define MMCCMD_DCLR (1 << 15) 111 #define MMCCMD_DMATRIG (1 << 16) 112 113 /* DAVINCI_MMCFIFOCTL definitions */ 114 #define MMCFIFOCTL_FIFORST (1 << 0) 115 #define MMCFIFOCTL_FIFODIR_WR (1 << 1) 116 #define MMCFIFOCTL_FIFODIR_RD (0 << 1) 117 #define MMCFIFOCTL_FIFOLEV (1 << 2) /* 0 = 128 bits, 1 = 256 bits */ 118 #define MMCFIFOCTL_ACCWD_4 (0 << 3) /* access width of 4 bytes */ 119 #define MMCFIFOCTL_ACCWD_3 (1 << 3) /* access width of 3 bytes */ 120 #define MMCFIFOCTL_ACCWD_2 (2 << 3) /* access width of 2 bytes */ 121 #define MMCFIFOCTL_ACCWD_1 (3 << 3) /* access width of 1 byte */ 122 123 /* DAVINCI_SDIOST0 definitions */ 124 #define SDIOST0_DAT1_HI BIT(0) 125 126 /* DAVINCI_SDIOIEN definitions */ 127 #define SDIOIEN_IOINTEN BIT(0) 128 129 /* DAVINCI_SDIOIST definitions */ 130 #define SDIOIST_IOINT BIT(0) 131 132 /* MMCSD Init clock in Hz in opendrain mode */ 133 #define MMCSD_INIT_CLOCK 200000 134 135 /* 136 * One scatterlist dma "segment" is at most MAX_CCNT rw_threshold units, 137 * and we handle up to MAX_NR_SG segments. MMC_BLOCK_BOUNCE kicks in only 138 * for drivers with max_segs == 1, making the segments bigger (64KB) 139 * than the page or two that's otherwise typical. nr_sg (passed from 140 * platform data) == 16 gives at least the same throughput boost, using 141 * EDMA transfer linkage instead of spending CPU time copying pages. 142 */ 143 #define MAX_CCNT ((1 << 16) - 1) 144 145 #define MAX_NR_SG 16 146 147 static unsigned rw_threshold = 32; 148 module_param(rw_threshold, uint, S_IRUGO); 149 MODULE_PARM_DESC(rw_threshold, 150 "Read/Write threshold. Default = 32"); 151 152 static unsigned poll_threshold = 128; 153 module_param(poll_threshold, uint, S_IRUGO); 154 MODULE_PARM_DESC(poll_threshold, 155 "Polling transaction size threshold. Default = 128"); 156 157 static unsigned poll_loopcount = 32; 158 module_param(poll_loopcount, uint, S_IRUGO); 159 MODULE_PARM_DESC(poll_loopcount, 160 "Maximum polling loop count. Default = 32"); 161 162 static unsigned use_dma = 1; 163 module_param(use_dma, uint, 0); 164 MODULE_PARM_DESC(use_dma, "Whether to use DMA or not. Default = 1"); 165 166 struct mmc_davinci_host { 167 struct mmc_command *cmd; 168 struct mmc_data *data; 169 struct mmc_host *mmc; 170 struct clk *clk; 171 unsigned int mmc_input_clk; 172 void __iomem *base; 173 struct resource *mem_res; 174 int mmc_irq, sdio_irq; 175 unsigned char bus_mode; 176 177 #define DAVINCI_MMC_DATADIR_NONE 0 178 #define DAVINCI_MMC_DATADIR_READ 1 179 #define DAVINCI_MMC_DATADIR_WRITE 2 180 unsigned char data_dir; 181 182 u32 bytes_left; 183 184 struct dma_chan *dma_tx; 185 struct dma_chan *dma_rx; 186 bool use_dma; 187 bool do_dma; 188 bool sdio_int; 189 bool active_request; 190 191 /* For PIO we walk scatterlists one segment at a time. */ 192 struct sg_mapping_iter sg_miter; 193 unsigned int sg_len; 194 195 /* Version of the MMC/SD controller */ 196 u8 version; 197 /* for ns in one cycle calculation */ 198 unsigned ns_in_one_cycle; 199 /* Number of sg segments */ 200 u8 nr_sg; 201 #ifdef CONFIG_CPU_FREQ 202 struct notifier_block freq_transition; 203 #endif 204 }; 205 206 static irqreturn_t mmc_davinci_irq(int irq, void *dev_id); 207 208 /* PIO only */ 209 static void davinci_fifo_data_trans(struct mmc_davinci_host *host, 210 unsigned int n) 211 { 212 struct sg_mapping_iter *sgm = &host->sg_miter; 213 u8 *p; 214 unsigned int i; 215 216 /* 217 * By adjusting sgm->consumed this will give a pointer to the 218 * current index into the sgm. 219 */ 220 if (!sg_miter_next(sgm)) { 221 dev_err(mmc_dev(host->mmc), "ran out of sglist prematurely\n"); 222 return; 223 } 224 p = sgm->addr; 225 226 if (n > sgm->length) 227 n = sgm->length; 228 229 /* NOTE: we never transfer more than rw_threshold bytes 230 * to/from the fifo here; there's no I/O overlap. 231 * This also assumes that access width( i.e. ACCWD) is 4 bytes 232 */ 233 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) { 234 for (i = 0; i < (n >> 2); i++) { 235 writel(*((u32 *)p), host->base + DAVINCI_MMCDXR); 236 p = p + 4; 237 } 238 if (n & 3) { 239 iowrite8_rep(host->base + DAVINCI_MMCDXR, p, (n & 3)); 240 p = p + (n & 3); 241 } 242 } else { 243 for (i = 0; i < (n >> 2); i++) { 244 *((u32 *)p) = readl(host->base + DAVINCI_MMCDRR); 245 p = p + 4; 246 } 247 if (n & 3) { 248 ioread8_rep(host->base + DAVINCI_MMCDRR, p, (n & 3)); 249 p = p + (n & 3); 250 } 251 } 252 253 sgm->consumed = n; 254 host->bytes_left -= n; 255 } 256 257 static void mmc_davinci_start_command(struct mmc_davinci_host *host, 258 struct mmc_command *cmd) 259 { 260 u32 cmd_reg = 0; 261 u32 im_val; 262 263 dev_dbg(mmc_dev(host->mmc), "CMD%d, arg 0x%08x%s\n", 264 cmd->opcode, cmd->arg, 265 ({ char *s; 266 switch (mmc_resp_type(cmd)) { 267 case MMC_RSP_R1: 268 s = ", R1/R5/R6/R7 response"; 269 break; 270 case MMC_RSP_R1B: 271 s = ", R1b response"; 272 break; 273 case MMC_RSP_R2: 274 s = ", R2 response"; 275 break; 276 case MMC_RSP_R3: 277 s = ", R3/R4 response"; 278 break; 279 default: 280 s = ", (R? response)"; 281 break; 282 } s; })); 283 host->cmd = cmd; 284 285 switch (mmc_resp_type(cmd)) { 286 case MMC_RSP_R1B: 287 /* There's some spec confusion about when R1B is 288 * allowed, but if the card doesn't issue a BUSY 289 * then it's harmless for us to allow it. 290 */ 291 cmd_reg |= MMCCMD_BSYEXP; 292 fallthrough; 293 case MMC_RSP_R1: /* 48 bits, CRC */ 294 cmd_reg |= MMCCMD_RSPFMT_R1456; 295 break; 296 case MMC_RSP_R2: /* 136 bits, CRC */ 297 cmd_reg |= MMCCMD_RSPFMT_R2; 298 break; 299 case MMC_RSP_R3: /* 48 bits, no CRC */ 300 cmd_reg |= MMCCMD_RSPFMT_R3; 301 break; 302 default: 303 cmd_reg |= MMCCMD_RSPFMT_NONE; 304 dev_dbg(mmc_dev(host->mmc), "unknown resp_type %04x\n", 305 mmc_resp_type(cmd)); 306 break; 307 } 308 309 /* Set command index */ 310 cmd_reg |= cmd->opcode; 311 312 /* Enable EDMA transfer triggers */ 313 if (host->do_dma) 314 cmd_reg |= MMCCMD_DMATRIG; 315 316 if (host->version == MMC_CTLR_VERSION_2 && host->data != NULL && 317 host->data_dir == DAVINCI_MMC_DATADIR_READ) 318 cmd_reg |= MMCCMD_DMATRIG; 319 320 /* Setting whether command involves data transfer or not */ 321 if (cmd->data) 322 cmd_reg |= MMCCMD_WDATX; 323 324 /* Setting whether data read or write */ 325 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) 326 cmd_reg |= MMCCMD_DTRW; 327 328 if (host->bus_mode == MMC_BUSMODE_PUSHPULL) 329 cmd_reg |= MMCCMD_PPLEN; 330 331 /* set Command timeout */ 332 writel(0x1FFF, host->base + DAVINCI_MMCTOR); 333 334 /* Enable interrupt (calculate here, defer until FIFO is stuffed). */ 335 im_val = MMCST0_RSPDNE | MMCST0_CRCRS | MMCST0_TOUTRS; 336 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) { 337 im_val |= MMCST0_DATDNE | MMCST0_CRCWR; 338 339 if (!host->do_dma) 340 im_val |= MMCST0_DXRDY; 341 } else if (host->data_dir == DAVINCI_MMC_DATADIR_READ) { 342 im_val |= MMCST0_DATDNE | MMCST0_CRCRD | MMCST0_TOUTRD; 343 344 if (!host->do_dma) 345 im_val |= MMCST0_DRRDY; 346 } 347 348 /* 349 * Before non-DMA WRITE commands the controller needs priming: 350 * FIFO should be populated with 32 bytes i.e. whatever is the FIFO size 351 */ 352 if (!host->do_dma && (host->data_dir == DAVINCI_MMC_DATADIR_WRITE)) 353 davinci_fifo_data_trans(host, rw_threshold); 354 355 writel(cmd->arg, host->base + DAVINCI_MMCARGHL); 356 writel(cmd_reg, host->base + DAVINCI_MMCCMD); 357 358 host->active_request = true; 359 360 if (!host->do_dma && host->bytes_left <= poll_threshold) { 361 u32 count = poll_loopcount; 362 363 while (host->active_request && count--) { 364 mmc_davinci_irq(0, host); 365 cpu_relax(); 366 } 367 } 368 369 if (host->active_request) 370 writel(im_val, host->base + DAVINCI_MMCIM); 371 } 372 373 /*----------------------------------------------------------------------*/ 374 375 /* DMA infrastructure */ 376 377 static void davinci_abort_dma(struct mmc_davinci_host *host) 378 { 379 struct dma_chan *sync_dev; 380 381 if (host->data_dir == DAVINCI_MMC_DATADIR_READ) 382 sync_dev = host->dma_rx; 383 else 384 sync_dev = host->dma_tx; 385 386 dmaengine_terminate_all(sync_dev); 387 } 388 389 static int mmc_davinci_send_dma_request(struct mmc_davinci_host *host, 390 struct mmc_data *data) 391 { 392 struct dma_chan *chan; 393 struct dma_async_tx_descriptor *desc; 394 int ret = 0; 395 396 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) { 397 struct dma_slave_config dma_tx_conf = { 398 .direction = DMA_MEM_TO_DEV, 399 .dst_addr = host->mem_res->start + DAVINCI_MMCDXR, 400 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES, 401 .dst_maxburst = 402 rw_threshold / DMA_SLAVE_BUSWIDTH_4_BYTES, 403 }; 404 chan = host->dma_tx; 405 dmaengine_slave_config(host->dma_tx, &dma_tx_conf); 406 407 desc = dmaengine_prep_slave_sg(host->dma_tx, 408 data->sg, 409 host->sg_len, 410 DMA_MEM_TO_DEV, 411 DMA_PREP_INTERRUPT | DMA_CTRL_ACK); 412 if (!desc) { 413 dev_dbg(mmc_dev(host->mmc), 414 "failed to allocate DMA TX descriptor"); 415 ret = -1; 416 goto out; 417 } 418 } else { 419 struct dma_slave_config dma_rx_conf = { 420 .direction = DMA_DEV_TO_MEM, 421 .src_addr = host->mem_res->start + DAVINCI_MMCDRR, 422 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES, 423 .src_maxburst = 424 rw_threshold / DMA_SLAVE_BUSWIDTH_4_BYTES, 425 }; 426 chan = host->dma_rx; 427 dmaengine_slave_config(host->dma_rx, &dma_rx_conf); 428 429 desc = dmaengine_prep_slave_sg(host->dma_rx, 430 data->sg, 431 host->sg_len, 432 DMA_DEV_TO_MEM, 433 DMA_PREP_INTERRUPT | DMA_CTRL_ACK); 434 if (!desc) { 435 dev_dbg(mmc_dev(host->mmc), 436 "failed to allocate DMA RX descriptor"); 437 ret = -1; 438 goto out; 439 } 440 } 441 442 dmaengine_submit(desc); 443 dma_async_issue_pending(chan); 444 445 out: 446 return ret; 447 } 448 449 static int mmc_davinci_start_dma_transfer(struct mmc_davinci_host *host, 450 struct mmc_data *data) 451 { 452 int i; 453 int mask = rw_threshold - 1; 454 int ret = 0; 455 456 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len, 457 mmc_get_dma_dir(data)); 458 459 /* no individual DMA segment should need a partial FIFO */ 460 for (i = 0; i < host->sg_len; i++) { 461 if (sg_dma_len(data->sg + i) & mask) { 462 dma_unmap_sg(mmc_dev(host->mmc), 463 data->sg, data->sg_len, 464 mmc_get_dma_dir(data)); 465 return -1; 466 } 467 } 468 469 host->do_dma = 1; 470 ret = mmc_davinci_send_dma_request(host, data); 471 472 return ret; 473 } 474 475 static void davinci_release_dma_channels(struct mmc_davinci_host *host) 476 { 477 if (!host->use_dma) 478 return; 479 480 dma_release_channel(host->dma_tx); 481 dma_release_channel(host->dma_rx); 482 } 483 484 static int davinci_acquire_dma_channels(struct mmc_davinci_host *host) 485 { 486 host->dma_tx = dma_request_chan(mmc_dev(host->mmc), "tx"); 487 if (IS_ERR(host->dma_tx)) { 488 dev_err(mmc_dev(host->mmc), "Can't get dma_tx channel\n"); 489 return PTR_ERR(host->dma_tx); 490 } 491 492 host->dma_rx = dma_request_chan(mmc_dev(host->mmc), "rx"); 493 if (IS_ERR(host->dma_rx)) { 494 dev_err(mmc_dev(host->mmc), "Can't get dma_rx channel\n"); 495 dma_release_channel(host->dma_tx); 496 return PTR_ERR(host->dma_rx); 497 } 498 499 return 0; 500 } 501 502 /*----------------------------------------------------------------------*/ 503 504 static void 505 mmc_davinci_prepare_data(struct mmc_davinci_host *host, struct mmc_request *req) 506 { 507 int fifo_lev = (rw_threshold == 32) ? MMCFIFOCTL_FIFOLEV : 0; 508 int timeout; 509 struct mmc_data *data = req->data; 510 unsigned int flags = SG_MITER_ATOMIC; /* Used from IRQ */ 511 512 if (host->version == MMC_CTLR_VERSION_2) 513 fifo_lev = (rw_threshold == 64) ? MMCFIFOCTL_FIFOLEV : 0; 514 515 host->data = data; 516 if (data == NULL) { 517 host->data_dir = DAVINCI_MMC_DATADIR_NONE; 518 writel(0, host->base + DAVINCI_MMCBLEN); 519 writel(0, host->base + DAVINCI_MMCNBLK); 520 return; 521 } 522 523 dev_dbg(mmc_dev(host->mmc), "%s, %d blocks of %d bytes\n", 524 (data->flags & MMC_DATA_WRITE) ? "write" : "read", 525 data->blocks, data->blksz); 526 dev_dbg(mmc_dev(host->mmc), " DTO %d cycles + %d ns\n", 527 data->timeout_clks, data->timeout_ns); 528 timeout = data->timeout_clks + 529 (data->timeout_ns / host->ns_in_one_cycle); 530 if (timeout > 0xffff) 531 timeout = 0xffff; 532 533 writel(timeout, host->base + DAVINCI_MMCTOD); 534 writel(data->blocks, host->base + DAVINCI_MMCNBLK); 535 writel(data->blksz, host->base + DAVINCI_MMCBLEN); 536 537 /* Configure the FIFO */ 538 if (data->flags & MMC_DATA_WRITE) { 539 flags |= SG_MITER_FROM_SG; 540 host->data_dir = DAVINCI_MMC_DATADIR_WRITE; 541 writel(fifo_lev | MMCFIFOCTL_FIFODIR_WR | MMCFIFOCTL_FIFORST, 542 host->base + DAVINCI_MMCFIFOCTL); 543 writel(fifo_lev | MMCFIFOCTL_FIFODIR_WR, 544 host->base + DAVINCI_MMCFIFOCTL); 545 } else { 546 flags |= SG_MITER_TO_SG; 547 host->data_dir = DAVINCI_MMC_DATADIR_READ; 548 writel(fifo_lev | MMCFIFOCTL_FIFODIR_RD | MMCFIFOCTL_FIFORST, 549 host->base + DAVINCI_MMCFIFOCTL); 550 writel(fifo_lev | MMCFIFOCTL_FIFODIR_RD, 551 host->base + DAVINCI_MMCFIFOCTL); 552 } 553 554 host->bytes_left = data->blocks * data->blksz; 555 556 /* For now we try to use DMA whenever we won't need partial FIFO 557 * reads or writes, either for the whole transfer (as tested here) 558 * or for any individual scatterlist segment (tested when we call 559 * start_dma_transfer). 560 * 561 * While we *could* change that, unusual block sizes are rarely 562 * used. The occasional fallback to PIO should't hurt. 563 */ 564 if (host->use_dma && (host->bytes_left & (rw_threshold - 1)) == 0 565 && mmc_davinci_start_dma_transfer(host, data) == 0) { 566 /* zero this to ensure we take no PIO paths */ 567 host->bytes_left = 0; 568 } else { 569 /* Revert to CPU Copy */ 570 host->sg_len = data->sg_len; 571 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags); 572 } 573 } 574 575 static void mmc_davinci_request(struct mmc_host *mmc, struct mmc_request *req) 576 { 577 struct mmc_davinci_host *host = mmc_priv(mmc); 578 unsigned long timeout = jiffies + msecs_to_jiffies(900); 579 u32 mmcst1 = 0; 580 581 /* Card may still be sending BUSY after a previous operation, 582 * typically some kind of write. If so, we can't proceed yet. 583 */ 584 while (time_before(jiffies, timeout)) { 585 mmcst1 = readl(host->base + DAVINCI_MMCST1); 586 if (!(mmcst1 & MMCST1_BUSY)) 587 break; 588 cpu_relax(); 589 } 590 if (mmcst1 & MMCST1_BUSY) { 591 dev_err(mmc_dev(host->mmc), "still BUSY? bad ... \n"); 592 req->cmd->error = -ETIMEDOUT; 593 mmc_request_done(mmc, req); 594 return; 595 } 596 597 host->do_dma = 0; 598 mmc_davinci_prepare_data(host, req); 599 mmc_davinci_start_command(host, req->cmd); 600 } 601 602 static unsigned int calculate_freq_for_card(struct mmc_davinci_host *host, 603 unsigned int mmc_req_freq) 604 { 605 unsigned int mmc_freq = 0, mmc_pclk = 0, mmc_push_pull_divisor = 0; 606 607 mmc_pclk = host->mmc_input_clk; 608 if (mmc_req_freq && mmc_pclk > (2 * mmc_req_freq)) 609 mmc_push_pull_divisor = ((unsigned int)mmc_pclk 610 / (2 * mmc_req_freq)) - 1; 611 else 612 mmc_push_pull_divisor = 0; 613 614 mmc_freq = (unsigned int)mmc_pclk 615 / (2 * (mmc_push_pull_divisor + 1)); 616 617 if (mmc_freq > mmc_req_freq) 618 mmc_push_pull_divisor = mmc_push_pull_divisor + 1; 619 /* Convert ns to clock cycles */ 620 if (mmc_req_freq <= 400000) 621 host->ns_in_one_cycle = (1000000) / (((mmc_pclk 622 / (2 * (mmc_push_pull_divisor + 1)))/1000)); 623 else 624 host->ns_in_one_cycle = (1000000) / (((mmc_pclk 625 / (2 * (mmc_push_pull_divisor + 1)))/1000000)); 626 627 return mmc_push_pull_divisor; 628 } 629 630 static void calculate_clk_divider(struct mmc_host *mmc, struct mmc_ios *ios) 631 { 632 unsigned int open_drain_freq = 0, mmc_pclk = 0; 633 unsigned int mmc_push_pull_freq = 0; 634 struct mmc_davinci_host *host = mmc_priv(mmc); 635 636 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) { 637 u32 temp; 638 639 /* Ignoring the init clock value passed for fixing the inter 640 * operability with different cards. 641 */ 642 open_drain_freq = ((unsigned int)mmc_pclk 643 / (2 * MMCSD_INIT_CLOCK)) - 1; 644 645 if (open_drain_freq > 0xFF) 646 open_drain_freq = 0xFF; 647 648 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKRT_MASK; 649 temp |= open_drain_freq; 650 writel(temp, host->base + DAVINCI_MMCCLK); 651 652 /* Convert ns to clock cycles */ 653 host->ns_in_one_cycle = (1000000) / (MMCSD_INIT_CLOCK/1000); 654 } else { 655 u32 temp; 656 mmc_push_pull_freq = calculate_freq_for_card(host, ios->clock); 657 658 if (mmc_push_pull_freq > 0xFF) 659 mmc_push_pull_freq = 0xFF; 660 661 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKEN; 662 writel(temp, host->base + DAVINCI_MMCCLK); 663 664 udelay(10); 665 666 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKRT_MASK; 667 temp |= mmc_push_pull_freq; 668 writel(temp, host->base + DAVINCI_MMCCLK); 669 670 writel(temp | MMCCLK_CLKEN, host->base + DAVINCI_MMCCLK); 671 672 udelay(10); 673 } 674 } 675 676 static void mmc_davinci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) 677 { 678 struct mmc_davinci_host *host = mmc_priv(mmc); 679 struct platform_device *pdev = to_platform_device(mmc->parent); 680 struct davinci_mmc_config *config = pdev->dev.platform_data; 681 682 dev_dbg(mmc_dev(host->mmc), 683 "clock %dHz busmode %d powermode %d Vdd %04x\n", 684 ios->clock, ios->bus_mode, ios->power_mode, 685 ios->vdd); 686 687 switch (ios->power_mode) { 688 case MMC_POWER_OFF: 689 if (config && config->set_power) 690 config->set_power(pdev->id, false); 691 break; 692 case MMC_POWER_UP: 693 if (config && config->set_power) 694 config->set_power(pdev->id, true); 695 break; 696 } 697 698 switch (ios->bus_width) { 699 case MMC_BUS_WIDTH_8: 700 dev_dbg(mmc_dev(host->mmc), "Enabling 8 bit mode\n"); 701 writel((readl(host->base + DAVINCI_MMCCTL) & 702 ~MMCCTL_WIDTH_4_BIT) | MMCCTL_WIDTH_8_BIT, 703 host->base + DAVINCI_MMCCTL); 704 break; 705 case MMC_BUS_WIDTH_4: 706 dev_dbg(mmc_dev(host->mmc), "Enabling 4 bit mode\n"); 707 if (host->version == MMC_CTLR_VERSION_2) 708 writel((readl(host->base + DAVINCI_MMCCTL) & 709 ~MMCCTL_WIDTH_8_BIT) | MMCCTL_WIDTH_4_BIT, 710 host->base + DAVINCI_MMCCTL); 711 else 712 writel(readl(host->base + DAVINCI_MMCCTL) | 713 MMCCTL_WIDTH_4_BIT, 714 host->base + DAVINCI_MMCCTL); 715 break; 716 case MMC_BUS_WIDTH_1: 717 dev_dbg(mmc_dev(host->mmc), "Enabling 1 bit mode\n"); 718 if (host->version == MMC_CTLR_VERSION_2) 719 writel(readl(host->base + DAVINCI_MMCCTL) & 720 ~(MMCCTL_WIDTH_8_BIT | MMCCTL_WIDTH_4_BIT), 721 host->base + DAVINCI_MMCCTL); 722 else 723 writel(readl(host->base + DAVINCI_MMCCTL) & 724 ~MMCCTL_WIDTH_4_BIT, 725 host->base + DAVINCI_MMCCTL); 726 break; 727 } 728 729 calculate_clk_divider(mmc, ios); 730 731 host->bus_mode = ios->bus_mode; 732 if (ios->power_mode == MMC_POWER_UP) { 733 unsigned long timeout = jiffies + msecs_to_jiffies(50); 734 bool lose = true; 735 736 /* Send clock cycles, poll completion */ 737 writel(0, host->base + DAVINCI_MMCARGHL); 738 writel(MMCCMD_INITCK, host->base + DAVINCI_MMCCMD); 739 while (time_before(jiffies, timeout)) { 740 u32 tmp = readl(host->base + DAVINCI_MMCST0); 741 742 if (tmp & MMCST0_RSPDNE) { 743 lose = false; 744 break; 745 } 746 cpu_relax(); 747 } 748 if (lose) 749 dev_warn(mmc_dev(host->mmc), "powerup timeout\n"); 750 } 751 752 /* FIXME on power OFF, reset things ... */ 753 } 754 755 static void 756 mmc_davinci_xfer_done(struct mmc_davinci_host *host, struct mmc_data *data) 757 { 758 host->data = NULL; 759 760 if (host->mmc->caps & MMC_CAP_SDIO_IRQ) { 761 /* 762 * SDIO Interrupt Detection work-around as suggested by 763 * Davinci Errata (TMS320DM355 Silicon Revision 1.1 Errata 764 * 2.1.6): Signal SDIO interrupt only if it is enabled by core 765 */ 766 if (host->sdio_int && !(readl(host->base + DAVINCI_SDIOST0) & 767 SDIOST0_DAT1_HI)) { 768 writel(SDIOIST_IOINT, host->base + DAVINCI_SDIOIST); 769 mmc_signal_sdio_irq(host->mmc); 770 } 771 } 772 773 if (host->do_dma) { 774 davinci_abort_dma(host); 775 776 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, 777 mmc_get_dma_dir(data)); 778 host->do_dma = false; 779 } 780 host->data_dir = DAVINCI_MMC_DATADIR_NONE; 781 782 if (!data->stop || (host->cmd && host->cmd->error)) { 783 mmc_request_done(host->mmc, data->mrq); 784 writel(0, host->base + DAVINCI_MMCIM); 785 host->active_request = false; 786 } else 787 mmc_davinci_start_command(host, data->stop); 788 } 789 790 static void mmc_davinci_cmd_done(struct mmc_davinci_host *host, 791 struct mmc_command *cmd) 792 { 793 host->cmd = NULL; 794 795 if (cmd->flags & MMC_RSP_PRESENT) { 796 if (cmd->flags & MMC_RSP_136) { 797 /* response type 2 */ 798 cmd->resp[3] = readl(host->base + DAVINCI_MMCRSP01); 799 cmd->resp[2] = readl(host->base + DAVINCI_MMCRSP23); 800 cmd->resp[1] = readl(host->base + DAVINCI_MMCRSP45); 801 cmd->resp[0] = readl(host->base + DAVINCI_MMCRSP67); 802 } else { 803 /* response types 1, 1b, 3, 4, 5, 6 */ 804 cmd->resp[0] = readl(host->base + DAVINCI_MMCRSP67); 805 } 806 } 807 808 if (host->data == NULL || cmd->error) { 809 if (cmd->error == -ETIMEDOUT) 810 cmd->mrq->cmd->retries = 0; 811 mmc_request_done(host->mmc, cmd->mrq); 812 writel(0, host->base + DAVINCI_MMCIM); 813 host->active_request = false; 814 } 815 } 816 817 static inline void mmc_davinci_reset_ctrl(struct mmc_davinci_host *host, 818 int val) 819 { 820 u32 temp; 821 822 temp = readl(host->base + DAVINCI_MMCCTL); 823 if (val) /* reset */ 824 temp |= MMCCTL_CMDRST | MMCCTL_DATRST; 825 else /* enable */ 826 temp &= ~(MMCCTL_CMDRST | MMCCTL_DATRST); 827 828 writel(temp, host->base + DAVINCI_MMCCTL); 829 udelay(10); 830 } 831 832 static void 833 davinci_abort_data(struct mmc_davinci_host *host, struct mmc_data *data) 834 { 835 mmc_davinci_reset_ctrl(host, 1); 836 mmc_davinci_reset_ctrl(host, 0); 837 if (!host->do_dma) 838 sg_miter_stop(&host->sg_miter); 839 } 840 841 static irqreturn_t mmc_davinci_sdio_irq(int irq, void *dev_id) 842 { 843 struct mmc_davinci_host *host = dev_id; 844 unsigned int status; 845 846 status = readl(host->base + DAVINCI_SDIOIST); 847 if (status & SDIOIST_IOINT) { 848 dev_dbg(mmc_dev(host->mmc), 849 "SDIO interrupt status %x\n", status); 850 writel(status | SDIOIST_IOINT, host->base + DAVINCI_SDIOIST); 851 mmc_signal_sdio_irq(host->mmc); 852 } 853 return IRQ_HANDLED; 854 } 855 856 static irqreturn_t mmc_davinci_irq(int irq, void *dev_id) 857 { 858 struct mmc_davinci_host *host = (struct mmc_davinci_host *)dev_id; 859 unsigned int status, qstatus; 860 int end_command = 0; 861 int end_transfer = 0; 862 struct mmc_data *data = host->data; 863 864 if (host->cmd == NULL && host->data == NULL) { 865 status = readl(host->base + DAVINCI_MMCST0); 866 dev_dbg(mmc_dev(host->mmc), 867 "Spurious interrupt 0x%04x\n", status); 868 /* Disable the interrupt from mmcsd */ 869 writel(0, host->base + DAVINCI_MMCIM); 870 return IRQ_NONE; 871 } 872 873 status = readl(host->base + DAVINCI_MMCST0); 874 qstatus = status; 875 876 /* handle FIFO first when using PIO for data. 877 * bytes_left will decrease to zero as I/O progress and status will 878 * read zero over iteration because this controller status 879 * register(MMCST0) reports any status only once and it is cleared 880 * by read. So, it is not unbouned loop even in the case of 881 * non-dma. 882 */ 883 if (host->bytes_left && (status & (MMCST0_DXRDY | MMCST0_DRRDY))) { 884 unsigned long im_val; 885 886 /* 887 * If interrupts fire during the following loop, they will be 888 * handled by the handler, but the PIC will still buffer these. 889 * As a result, the handler will be called again to serve these 890 * needlessly. In order to avoid these spurious interrupts, 891 * keep interrupts masked during the loop. 892 */ 893 im_val = readl(host->base + DAVINCI_MMCIM); 894 writel(0, host->base + DAVINCI_MMCIM); 895 896 do { 897 davinci_fifo_data_trans(host, rw_threshold); 898 status = readl(host->base + DAVINCI_MMCST0); 899 qstatus |= status; 900 } while (host->bytes_left && 901 (status & (MMCST0_DXRDY | MMCST0_DRRDY))); 902 903 /* 904 * If an interrupt is pending, it is assumed it will fire when 905 * it is unmasked. This assumption is also taken when the MMCIM 906 * is first set. Otherwise, writing to MMCIM after reading the 907 * status is race-prone. 908 */ 909 writel(im_val, host->base + DAVINCI_MMCIM); 910 } 911 912 if (qstatus & MMCST0_DATDNE) { 913 /* All blocks sent/received, and CRC checks passed */ 914 if (data != NULL) { 915 if (!host->do_dma) { 916 if (host->bytes_left > 0) 917 /* if datasize < rw_threshold 918 * no RX ints are generated 919 */ 920 davinci_fifo_data_trans(host, host->bytes_left); 921 sg_miter_stop(&host->sg_miter); 922 } 923 end_transfer = 1; 924 data->bytes_xfered = data->blocks * data->blksz; 925 } else { 926 dev_err(mmc_dev(host->mmc), 927 "DATDNE with no host->data\n"); 928 } 929 } 930 931 if (qstatus & MMCST0_TOUTRD) { 932 /* Read data timeout */ 933 data->error = -ETIMEDOUT; 934 end_transfer = 1; 935 936 dev_dbg(mmc_dev(host->mmc), 937 "read data timeout, status %x\n", 938 qstatus); 939 940 davinci_abort_data(host, data); 941 } 942 943 if (qstatus & (MMCST0_CRCWR | MMCST0_CRCRD)) { 944 /* Data CRC error */ 945 data->error = -EILSEQ; 946 end_transfer = 1; 947 948 /* NOTE: this controller uses CRCWR to report both CRC 949 * errors and timeouts (on writes). MMCDRSP values are 950 * only weakly documented, but 0x9f was clearly a timeout 951 * case and the two three-bit patterns in various SD specs 952 * (101, 010) aren't part of it ... 953 */ 954 if (qstatus & MMCST0_CRCWR) { 955 u32 temp = readb(host->base + DAVINCI_MMCDRSP); 956 957 if (temp == 0x9f) 958 data->error = -ETIMEDOUT; 959 } 960 dev_dbg(mmc_dev(host->mmc), "data %s %s error\n", 961 (qstatus & MMCST0_CRCWR) ? "write" : "read", 962 (data->error == -ETIMEDOUT) ? "timeout" : "CRC"); 963 964 davinci_abort_data(host, data); 965 } 966 967 if (qstatus & MMCST0_TOUTRS) { 968 /* Command timeout */ 969 if (host->cmd) { 970 dev_dbg(mmc_dev(host->mmc), 971 "CMD%d timeout, status %x\n", 972 host->cmd->opcode, qstatus); 973 host->cmd->error = -ETIMEDOUT; 974 if (data) { 975 end_transfer = 1; 976 davinci_abort_data(host, data); 977 } else 978 end_command = 1; 979 } 980 } 981 982 if (qstatus & MMCST0_CRCRS) { 983 /* Command CRC error */ 984 dev_dbg(mmc_dev(host->mmc), "Command CRC error\n"); 985 if (host->cmd) { 986 host->cmd->error = -EILSEQ; 987 end_command = 1; 988 } 989 } 990 991 if (qstatus & MMCST0_RSPDNE) { 992 /* End of command phase */ 993 end_command = host->cmd ? 1 : 0; 994 } 995 996 if (end_command) 997 mmc_davinci_cmd_done(host, host->cmd); 998 if (end_transfer) 999 mmc_davinci_xfer_done(host, data); 1000 return IRQ_HANDLED; 1001 } 1002 1003 static int mmc_davinci_get_cd(struct mmc_host *mmc) 1004 { 1005 struct platform_device *pdev = to_platform_device(mmc->parent); 1006 struct davinci_mmc_config *config = pdev->dev.platform_data; 1007 1008 if (config && config->get_cd) 1009 return config->get_cd(pdev->id); 1010 1011 return mmc_gpio_get_cd(mmc); 1012 } 1013 1014 static int mmc_davinci_get_ro(struct mmc_host *mmc) 1015 { 1016 struct platform_device *pdev = to_platform_device(mmc->parent); 1017 struct davinci_mmc_config *config = pdev->dev.platform_data; 1018 1019 if (config && config->get_ro) 1020 return config->get_ro(pdev->id); 1021 1022 return mmc_gpio_get_ro(mmc); 1023 } 1024 1025 static void mmc_davinci_enable_sdio_irq(struct mmc_host *mmc, int enable) 1026 { 1027 struct mmc_davinci_host *host = mmc_priv(mmc); 1028 1029 if (enable) { 1030 if (!(readl(host->base + DAVINCI_SDIOST0) & SDIOST0_DAT1_HI)) { 1031 writel(SDIOIST_IOINT, host->base + DAVINCI_SDIOIST); 1032 mmc_signal_sdio_irq(host->mmc); 1033 } else { 1034 host->sdio_int = true; 1035 writel(readl(host->base + DAVINCI_SDIOIEN) | 1036 SDIOIEN_IOINTEN, host->base + DAVINCI_SDIOIEN); 1037 } 1038 } else { 1039 host->sdio_int = false; 1040 writel(readl(host->base + DAVINCI_SDIOIEN) & ~SDIOIEN_IOINTEN, 1041 host->base + DAVINCI_SDIOIEN); 1042 } 1043 } 1044 1045 static const struct mmc_host_ops mmc_davinci_ops = { 1046 .request = mmc_davinci_request, 1047 .set_ios = mmc_davinci_set_ios, 1048 .get_cd = mmc_davinci_get_cd, 1049 .get_ro = mmc_davinci_get_ro, 1050 .enable_sdio_irq = mmc_davinci_enable_sdio_irq, 1051 }; 1052 1053 /*----------------------------------------------------------------------*/ 1054 1055 #ifdef CONFIG_CPU_FREQ 1056 static int mmc_davinci_cpufreq_transition(struct notifier_block *nb, 1057 unsigned long val, void *data) 1058 { 1059 struct mmc_davinci_host *host; 1060 unsigned int mmc_pclk; 1061 struct mmc_host *mmc; 1062 unsigned long flags; 1063 1064 host = container_of(nb, struct mmc_davinci_host, freq_transition); 1065 mmc = host->mmc; 1066 mmc_pclk = clk_get_rate(host->clk); 1067 1068 if (val == CPUFREQ_POSTCHANGE) { 1069 spin_lock_irqsave(&mmc->lock, flags); 1070 host->mmc_input_clk = mmc_pclk; 1071 calculate_clk_divider(mmc, &mmc->ios); 1072 spin_unlock_irqrestore(&mmc->lock, flags); 1073 } 1074 1075 return 0; 1076 } 1077 1078 static inline int mmc_davinci_cpufreq_register(struct mmc_davinci_host *host) 1079 { 1080 host->freq_transition.notifier_call = mmc_davinci_cpufreq_transition; 1081 1082 return cpufreq_register_notifier(&host->freq_transition, 1083 CPUFREQ_TRANSITION_NOTIFIER); 1084 } 1085 1086 static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host) 1087 { 1088 cpufreq_unregister_notifier(&host->freq_transition, 1089 CPUFREQ_TRANSITION_NOTIFIER); 1090 } 1091 #else 1092 static inline int mmc_davinci_cpufreq_register(struct mmc_davinci_host *host) 1093 { 1094 return 0; 1095 } 1096 1097 static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host) 1098 { 1099 } 1100 #endif 1101 static void init_mmcsd_host(struct mmc_davinci_host *host) 1102 { 1103 1104 mmc_davinci_reset_ctrl(host, 1); 1105 1106 writel(0, host->base + DAVINCI_MMCCLK); 1107 writel(MMCCLK_CLKEN, host->base + DAVINCI_MMCCLK); 1108 1109 writel(0x1FFF, host->base + DAVINCI_MMCTOR); 1110 writel(0xFFFF, host->base + DAVINCI_MMCTOD); 1111 1112 mmc_davinci_reset_ctrl(host, 0); 1113 } 1114 1115 static const struct platform_device_id davinci_mmc_devtype[] = { 1116 { 1117 .name = "dm6441-mmc", 1118 .driver_data = MMC_CTLR_VERSION_1, 1119 }, { 1120 .name = "da830-mmc", 1121 .driver_data = MMC_CTLR_VERSION_2, 1122 }, 1123 {}, 1124 }; 1125 MODULE_DEVICE_TABLE(platform, davinci_mmc_devtype); 1126 1127 static const struct of_device_id davinci_mmc_dt_ids[] = { 1128 { 1129 .compatible = "ti,dm6441-mmc", 1130 .data = &davinci_mmc_devtype[MMC_CTLR_VERSION_1], 1131 }, 1132 { 1133 .compatible = "ti,da830-mmc", 1134 .data = &davinci_mmc_devtype[MMC_CTLR_VERSION_2], 1135 }, 1136 {}, 1137 }; 1138 MODULE_DEVICE_TABLE(of, davinci_mmc_dt_ids); 1139 1140 static int mmc_davinci_parse_pdata(struct mmc_host *mmc) 1141 { 1142 struct platform_device *pdev = to_platform_device(mmc->parent); 1143 struct davinci_mmc_config *pdata = pdev->dev.platform_data; 1144 struct mmc_davinci_host *host; 1145 int ret; 1146 1147 if (!pdata) 1148 return -EINVAL; 1149 1150 host = mmc_priv(mmc); 1151 if (!host) 1152 return -EINVAL; 1153 1154 if (pdata && pdata->nr_sg) 1155 host->nr_sg = pdata->nr_sg - 1; 1156 1157 if (pdata && (pdata->wires == 4 || pdata->wires == 0)) 1158 mmc->caps |= MMC_CAP_4_BIT_DATA; 1159 1160 if (pdata && (pdata->wires == 8)) 1161 mmc->caps |= (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA); 1162 1163 mmc->f_min = 312500; 1164 mmc->f_max = 25000000; 1165 if (pdata && pdata->max_freq) 1166 mmc->f_max = pdata->max_freq; 1167 if (pdata && pdata->caps) 1168 mmc->caps |= pdata->caps; 1169 1170 /* Register a cd gpio, if there is not one, enable polling */ 1171 ret = mmc_gpiod_request_cd(mmc, "cd", 0, false, 0); 1172 if (ret == -EPROBE_DEFER) 1173 return ret; 1174 else if (ret) 1175 mmc->caps |= MMC_CAP_NEEDS_POLL; 1176 1177 ret = mmc_gpiod_request_ro(mmc, "wp", 0, 0); 1178 if (ret == -EPROBE_DEFER) 1179 return ret; 1180 1181 return 0; 1182 } 1183 1184 static int davinci_mmcsd_probe(struct platform_device *pdev) 1185 { 1186 struct mmc_davinci_host *host = NULL; 1187 struct mmc_host *mmc = NULL; 1188 struct resource *r, *mem = NULL; 1189 int ret, irq, bus_width; 1190 size_t mem_size; 1191 const struct platform_device_id *id_entry; 1192 1193 r = platform_get_resource(pdev, IORESOURCE_MEM, 0); 1194 if (!r) 1195 return -ENODEV; 1196 irq = platform_get_irq(pdev, 0); 1197 if (irq < 0) 1198 return irq; 1199 1200 mem_size = resource_size(r); 1201 mem = devm_request_mem_region(&pdev->dev, r->start, mem_size, 1202 pdev->name); 1203 if (!mem) 1204 return -EBUSY; 1205 1206 mmc = mmc_alloc_host(sizeof(struct mmc_davinci_host), &pdev->dev); 1207 if (!mmc) 1208 return -ENOMEM; 1209 1210 host = mmc_priv(mmc); 1211 host->mmc = mmc; /* Important */ 1212 1213 host->mem_res = mem; 1214 host->base = devm_ioremap(&pdev->dev, mem->start, mem_size); 1215 if (!host->base) { 1216 ret = -ENOMEM; 1217 goto ioremap_fail; 1218 } 1219 1220 host->clk = devm_clk_get(&pdev->dev, NULL); 1221 if (IS_ERR(host->clk)) { 1222 ret = PTR_ERR(host->clk); 1223 goto clk_get_fail; 1224 } 1225 ret = clk_prepare_enable(host->clk); 1226 if (ret) 1227 goto clk_prepare_enable_fail; 1228 1229 host->mmc_input_clk = clk_get_rate(host->clk); 1230 1231 pdev->id_entry = device_get_match_data(&pdev->dev); 1232 if (pdev->id_entry) { 1233 ret = mmc_of_parse(mmc); 1234 if (ret) { 1235 dev_err_probe(&pdev->dev, ret, 1236 "could not parse of data\n"); 1237 goto parse_fail; 1238 } 1239 } else { 1240 ret = mmc_davinci_parse_pdata(mmc); 1241 if (ret) { 1242 dev_err(&pdev->dev, 1243 "could not parse platform data: %d\n", ret); 1244 goto parse_fail; 1245 } } 1246 1247 if (host->nr_sg > MAX_NR_SG || !host->nr_sg) 1248 host->nr_sg = MAX_NR_SG; 1249 1250 init_mmcsd_host(host); 1251 1252 host->use_dma = use_dma; 1253 host->mmc_irq = irq; 1254 host->sdio_irq = platform_get_irq_optional(pdev, 1); 1255 1256 if (host->use_dma) { 1257 ret = davinci_acquire_dma_channels(host); 1258 if (ret == -EPROBE_DEFER) 1259 goto dma_probe_defer; 1260 else if (ret) 1261 host->use_dma = 0; 1262 } 1263 1264 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY; 1265 1266 id_entry = platform_get_device_id(pdev); 1267 if (id_entry) 1268 host->version = id_entry->driver_data; 1269 1270 mmc->ops = &mmc_davinci_ops; 1271 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34; 1272 1273 /* With no iommu coalescing pages, each phys_seg is a hw_seg. 1274 * Each hw_seg uses one EDMA parameter RAM slot, always one 1275 * channel and then usually some linked slots. 1276 */ 1277 mmc->max_segs = MAX_NR_SG; 1278 1279 /* EDMA limit per hw segment (one or two MBytes) */ 1280 mmc->max_seg_size = MAX_CCNT * rw_threshold; 1281 1282 /* MMC/SD controller limits for multiblock requests */ 1283 mmc->max_blk_size = 4095; /* BLEN is 12 bits */ 1284 mmc->max_blk_count = 65535; /* NBLK is 16 bits */ 1285 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count; 1286 1287 dev_dbg(mmc_dev(host->mmc), "max_segs=%d\n", mmc->max_segs); 1288 dev_dbg(mmc_dev(host->mmc), "max_blk_size=%d\n", mmc->max_blk_size); 1289 dev_dbg(mmc_dev(host->mmc), "max_req_size=%d\n", mmc->max_req_size); 1290 dev_dbg(mmc_dev(host->mmc), "max_seg_size=%d\n", mmc->max_seg_size); 1291 1292 platform_set_drvdata(pdev, host); 1293 1294 ret = mmc_davinci_cpufreq_register(host); 1295 if (ret) { 1296 dev_err(&pdev->dev, "failed to register cpufreq\n"); 1297 goto cpu_freq_fail; 1298 } 1299 1300 ret = mmc_add_host(mmc); 1301 if (ret < 0) 1302 goto mmc_add_host_fail; 1303 1304 ret = devm_request_irq(&pdev->dev, irq, mmc_davinci_irq, 0, 1305 mmc_hostname(mmc), host); 1306 if (ret) 1307 goto request_irq_fail; 1308 1309 if (host->sdio_irq >= 0) { 1310 ret = devm_request_irq(&pdev->dev, host->sdio_irq, 1311 mmc_davinci_sdio_irq, 0, 1312 mmc_hostname(mmc), host); 1313 if (!ret) 1314 mmc->caps |= MMC_CAP_SDIO_IRQ; 1315 } 1316 1317 rename_region(mem, mmc_hostname(mmc)); 1318 1319 if (mmc->caps & MMC_CAP_8_BIT_DATA) 1320 bus_width = 8; 1321 else if (mmc->caps & MMC_CAP_4_BIT_DATA) 1322 bus_width = 4; 1323 else 1324 bus_width = 1; 1325 dev_info(mmc_dev(host->mmc), "Using %s, %d-bit mode\n", 1326 host->use_dma ? "DMA" : "PIO", bus_width); 1327 1328 return 0; 1329 1330 request_irq_fail: 1331 mmc_remove_host(mmc); 1332 mmc_add_host_fail: 1333 mmc_davinci_cpufreq_deregister(host); 1334 cpu_freq_fail: 1335 davinci_release_dma_channels(host); 1336 parse_fail: 1337 dma_probe_defer: 1338 clk_disable_unprepare(host->clk); 1339 clk_prepare_enable_fail: 1340 clk_get_fail: 1341 ioremap_fail: 1342 mmc_free_host(mmc); 1343 1344 return ret; 1345 } 1346 1347 static void davinci_mmcsd_remove(struct platform_device *pdev) 1348 { 1349 struct mmc_davinci_host *host = platform_get_drvdata(pdev); 1350 1351 mmc_remove_host(host->mmc); 1352 mmc_davinci_cpufreq_deregister(host); 1353 davinci_release_dma_channels(host); 1354 clk_disable_unprepare(host->clk); 1355 mmc_free_host(host->mmc); 1356 } 1357 1358 #ifdef CONFIG_PM 1359 static int davinci_mmcsd_suspend(struct device *dev) 1360 { 1361 struct mmc_davinci_host *host = dev_get_drvdata(dev); 1362 1363 writel(0, host->base + DAVINCI_MMCIM); 1364 mmc_davinci_reset_ctrl(host, 1); 1365 clk_disable(host->clk); 1366 1367 return 0; 1368 } 1369 1370 static int davinci_mmcsd_resume(struct device *dev) 1371 { 1372 struct mmc_davinci_host *host = dev_get_drvdata(dev); 1373 int ret; 1374 1375 ret = clk_enable(host->clk); 1376 if (ret) 1377 return ret; 1378 1379 mmc_davinci_reset_ctrl(host, 0); 1380 1381 return 0; 1382 } 1383 1384 static const struct dev_pm_ops davinci_mmcsd_pm = { 1385 .suspend = davinci_mmcsd_suspend, 1386 .resume = davinci_mmcsd_resume, 1387 }; 1388 1389 #define davinci_mmcsd_pm_ops (&davinci_mmcsd_pm) 1390 #else 1391 #define davinci_mmcsd_pm_ops NULL 1392 #endif 1393 1394 static struct platform_driver davinci_mmcsd_driver = { 1395 .driver = { 1396 .name = "davinci_mmc", 1397 .probe_type = PROBE_PREFER_ASYNCHRONOUS, 1398 .pm = davinci_mmcsd_pm_ops, 1399 .of_match_table = davinci_mmc_dt_ids, 1400 }, 1401 .probe = davinci_mmcsd_probe, 1402 .remove = davinci_mmcsd_remove, 1403 .id_table = davinci_mmc_devtype, 1404 }; 1405 1406 module_platform_driver(davinci_mmcsd_driver); 1407 1408 MODULE_AUTHOR("Texas Instruments India"); 1409 MODULE_LICENSE("GPL"); 1410 MODULE_DESCRIPTION("MMC/SD driver for Davinci MMC controller"); 1411 MODULE_ALIAS("platform:davinci_mmc"); 1412 1413