San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/mmc/host/msm_sdcc.c - Qualcomm MSM 7X00A SDCC Driver |
| 3 | * |
| 4 | * Copyright (C) 2007 Google Inc, |
| 5 | * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * Based on mmci.c |
| 12 | * |
| 13 | * Author: San Mehat (san@android.com) |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/moduleparam.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/ioport.h> |
| 21 | #include <linux/device.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/err.h> |
| 25 | #include <linux/highmem.h> |
| 26 | #include <linux/log2.h> |
| 27 | #include <linux/mmc/host.h> |
| 28 | #include <linux/mmc/card.h> |
| 29 | #include <linux/clk.h> |
| 30 | #include <linux/scatterlist.h> |
| 31 | #include <linux/platform_device.h> |
| 32 | #include <linux/dma-mapping.h> |
| 33 | #include <linux/debugfs.h> |
| 34 | #include <linux/io.h> |
| 35 | #include <linux/memory.h> |
| 36 | |
| 37 | #include <asm/cacheflush.h> |
| 38 | #include <asm/div64.h> |
| 39 | #include <asm/sizes.h> |
| 40 | |
| 41 | #include <asm/mach/mmc.h> |
| 42 | #include <mach/msm_iomap.h> |
| 43 | #include <mach/dma.h> |
| 44 | #include <mach/htc_pwrsink.h> |
| 45 | |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 46 | #include "msm_sdcc.h" |
| 47 | |
| 48 | #define DRIVER_NAME "msm-sdcc" |
| 49 | |
| 50 | static unsigned int msmsdcc_fmin = 144000; |
| 51 | static unsigned int msmsdcc_fmax = 50000000; |
| 52 | static unsigned int msmsdcc_4bit = 1; |
| 53 | static unsigned int msmsdcc_pwrsave = 1; |
| 54 | static unsigned int msmsdcc_piopoll = 1; |
| 55 | static unsigned int msmsdcc_sdioirq; |
| 56 | |
| 57 | #define PIO_SPINMAX 30 |
| 58 | #define CMD_SPINMAX 20 |
| 59 | |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 60 | static void |
| 61 | msmsdcc_start_command(struct msmsdcc_host *host, struct mmc_command *cmd, |
| 62 | u32 c); |
| 63 | |
| 64 | static void |
| 65 | msmsdcc_request_end(struct msmsdcc_host *host, struct mmc_request *mrq) |
| 66 | { |
| 67 | writel(0, host->base + MMCICOMMAND); |
| 68 | |
| 69 | BUG_ON(host->curr.data); |
| 70 | |
| 71 | host->curr.mrq = NULL; |
| 72 | host->curr.cmd = NULL; |
| 73 | |
| 74 | if (mrq->data) |
| 75 | mrq->data->bytes_xfered = host->curr.data_xfered; |
| 76 | if (mrq->cmd->error == -ETIMEDOUT) |
| 77 | mdelay(5); |
| 78 | |
| 79 | /* |
| 80 | * Need to drop the host lock here; mmc_request_done may call |
| 81 | * back into the driver... |
| 82 | */ |
| 83 | spin_unlock(&host->lock); |
| 84 | mmc_request_done(host->mmc, mrq); |
| 85 | spin_lock(&host->lock); |
| 86 | } |
| 87 | |
| 88 | static void |
| 89 | msmsdcc_stop_data(struct msmsdcc_host *host) |
| 90 | { |
| 91 | writel(0, host->base + MMCIDATACTRL); |
| 92 | host->curr.data = NULL; |
| 93 | host->curr.got_dataend = host->curr.got_datablkend = 0; |
| 94 | } |
| 95 | |
| 96 | uint32_t msmsdcc_fifo_addr(struct msmsdcc_host *host) |
| 97 | { |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 98 | switch (host->pdev_id) { |
| 99 | case 1: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 100 | return MSM_SDC1_PHYS + MMCIFIFO; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 101 | case 2: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 102 | return MSM_SDC2_PHYS + MMCIFIFO; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 103 | case 3: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 104 | return MSM_SDC3_PHYS + MMCIFIFO; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 105 | case 4: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 106 | return MSM_SDC4_PHYS + MMCIFIFO; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 107 | } |
| 108 | BUG(); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | static void |
| 113 | msmsdcc_dma_complete_func(struct msm_dmov_cmd *cmd, |
| 114 | unsigned int result, |
| 115 | struct msm_dmov_errdata *err) |
| 116 | { |
| 117 | struct msmsdcc_dma_data *dma_data = |
| 118 | container_of(cmd, struct msmsdcc_dma_data, hdr); |
| 119 | struct msmsdcc_host *host = dma_data->host; |
| 120 | unsigned long flags; |
| 121 | struct mmc_request *mrq; |
| 122 | |
| 123 | spin_lock_irqsave(&host->lock, flags); |
| 124 | mrq = host->curr.mrq; |
| 125 | BUG_ON(!mrq); |
| 126 | |
| 127 | if (!(result & DMOV_RSLT_VALID)) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 128 | pr_err("msmsdcc: Invalid DataMover result\n"); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 129 | goto out; |
| 130 | } |
| 131 | |
| 132 | if (result & DMOV_RSLT_DONE) { |
| 133 | host->curr.data_xfered = host->curr.xfer_size; |
| 134 | } else { |
| 135 | /* Error or flush */ |
| 136 | if (result & DMOV_RSLT_ERROR) |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 137 | pr_err("%s: DMA error (0x%.8x)\n", |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 138 | mmc_hostname(host->mmc), result); |
| 139 | if (result & DMOV_RSLT_FLUSH) |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 140 | pr_err("%s: DMA channel flushed (0x%.8x)\n", |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 141 | mmc_hostname(host->mmc), result); |
| 142 | if (err) |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 143 | pr_err("Flush data: %.8x %.8x %.8x %.8x %.8x %.8x\n", |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 144 | err->flush[0], err->flush[1], err->flush[2], |
| 145 | err->flush[3], err->flush[4], err->flush[5]); |
| 146 | if (!mrq->data->error) |
| 147 | mrq->data->error = -EIO; |
| 148 | } |
| 149 | host->dma.busy = 0; |
| 150 | dma_unmap_sg(mmc_dev(host->mmc), host->dma.sg, host->dma.num_ents, |
| 151 | host->dma.dir); |
| 152 | |
| 153 | if (host->curr.user_pages) { |
| 154 | struct scatterlist *sg = host->dma.sg; |
| 155 | int i; |
| 156 | |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 157 | for (i = 0; i < host->dma.num_ents; i++) |
| 158 | flush_dcache_page(sg_page(sg++)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | host->dma.sg = NULL; |
| 162 | |
| 163 | if ((host->curr.got_dataend && host->curr.got_datablkend) |
| 164 | || mrq->data->error) { |
| 165 | |
| 166 | /* |
| 167 | * If we've already gotten our DATAEND / DATABLKEND |
| 168 | * for this request, then complete it through here. |
| 169 | */ |
| 170 | msmsdcc_stop_data(host); |
| 171 | |
| 172 | if (!mrq->data->error) |
| 173 | host->curr.data_xfered = host->curr.xfer_size; |
| 174 | if (!mrq->data->stop || mrq->cmd->error) { |
| 175 | writel(0, host->base + MMCICOMMAND); |
| 176 | host->curr.mrq = NULL; |
| 177 | host->curr.cmd = NULL; |
| 178 | mrq->data->bytes_xfered = host->curr.data_xfered; |
| 179 | |
| 180 | spin_unlock_irqrestore(&host->lock, flags); |
| 181 | mmc_request_done(host->mmc, mrq); |
| 182 | return; |
| 183 | } else |
| 184 | msmsdcc_start_command(host, mrq->data->stop, 0); |
| 185 | } |
| 186 | |
| 187 | out: |
| 188 | spin_unlock_irqrestore(&host->lock, flags); |
| 189 | return; |
| 190 | } |
| 191 | |
| 192 | static int validate_dma(struct msmsdcc_host *host, struct mmc_data *data) |
| 193 | { |
| 194 | if (host->dma.channel == -1) |
| 195 | return -ENOENT; |
| 196 | |
| 197 | if ((data->blksz * data->blocks) < MCI_FIFOSIZE) |
| 198 | return -EINVAL; |
| 199 | if ((data->blksz * data->blocks) % MCI_FIFOSIZE) |
| 200 | return -EINVAL; |
| 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | static int msmsdcc_config_dma(struct msmsdcc_host *host, struct mmc_data *data) |
| 205 | { |
| 206 | struct msmsdcc_nc_dmadata *nc; |
| 207 | dmov_box *box; |
| 208 | uint32_t rows; |
| 209 | uint32_t crci; |
| 210 | unsigned int n; |
| 211 | int i, rc; |
| 212 | struct scatterlist *sg = data->sg; |
| 213 | |
| 214 | rc = validate_dma(host, data); |
| 215 | if (rc) |
| 216 | return rc; |
| 217 | |
| 218 | host->dma.sg = data->sg; |
| 219 | host->dma.num_ents = data->sg_len; |
| 220 | |
| 221 | nc = host->dma.nc; |
| 222 | |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 223 | switch (host->pdev_id) { |
| 224 | case 1: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 225 | crci = MSMSDCC_CRCI_SDC1; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 226 | break; |
| 227 | case 2: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 228 | crci = MSMSDCC_CRCI_SDC2; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 229 | break; |
| 230 | case 3: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 231 | crci = MSMSDCC_CRCI_SDC3; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 232 | break; |
| 233 | case 4: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 234 | crci = MSMSDCC_CRCI_SDC4; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 235 | break; |
| 236 | default: |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 237 | host->dma.sg = NULL; |
| 238 | host->dma.num_ents = 0; |
| 239 | return -ENOENT; |
| 240 | } |
| 241 | |
| 242 | if (data->flags & MMC_DATA_READ) |
| 243 | host->dma.dir = DMA_FROM_DEVICE; |
| 244 | else |
| 245 | host->dma.dir = DMA_TO_DEVICE; |
| 246 | |
| 247 | host->curr.user_pages = 0; |
| 248 | |
| 249 | n = dma_map_sg(mmc_dev(host->mmc), host->dma.sg, |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 250 | host->dma.num_ents, host->dma.dir); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 251 | |
| 252 | if (n != host->dma.num_ents) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 253 | pr_err("%s: Unable to map in all sg elements\n", |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 254 | mmc_hostname(host->mmc)); |
| 255 | host->dma.sg = NULL; |
| 256 | host->dma.num_ents = 0; |
| 257 | return -ENOMEM; |
| 258 | } |
| 259 | |
| 260 | box = &nc->cmd[0]; |
| 261 | for (i = 0; i < host->dma.num_ents; i++) { |
| 262 | box->cmd = CMD_MODE_BOX; |
| 263 | |
| 264 | if (i == (host->dma.num_ents - 1)) |
| 265 | box->cmd |= CMD_LC; |
| 266 | rows = (sg_dma_len(sg) % MCI_FIFOSIZE) ? |
| 267 | (sg_dma_len(sg) / MCI_FIFOSIZE) + 1 : |
| 268 | (sg_dma_len(sg) / MCI_FIFOSIZE) ; |
| 269 | |
| 270 | if (data->flags & MMC_DATA_READ) { |
| 271 | box->src_row_addr = msmsdcc_fifo_addr(host); |
| 272 | box->dst_row_addr = sg_dma_address(sg); |
| 273 | |
| 274 | box->src_dst_len = (MCI_FIFOSIZE << 16) | |
| 275 | (MCI_FIFOSIZE); |
| 276 | box->row_offset = MCI_FIFOSIZE; |
| 277 | |
| 278 | box->num_rows = rows * ((1 << 16) + 1); |
| 279 | box->cmd |= CMD_SRC_CRCI(crci); |
| 280 | } else { |
| 281 | box->src_row_addr = sg_dma_address(sg); |
| 282 | box->dst_row_addr = msmsdcc_fifo_addr(host); |
| 283 | |
| 284 | box->src_dst_len = (MCI_FIFOSIZE << 16) | |
| 285 | (MCI_FIFOSIZE); |
| 286 | box->row_offset = (MCI_FIFOSIZE << 16); |
| 287 | |
| 288 | box->num_rows = rows * ((1 << 16) + 1); |
| 289 | box->cmd |= CMD_DST_CRCI(crci); |
| 290 | } |
| 291 | box++; |
| 292 | sg++; |
| 293 | } |
| 294 | |
| 295 | /* location of command block must be 64 bit aligned */ |
| 296 | BUG_ON(host->dma.cmd_busaddr & 0x07); |
| 297 | |
| 298 | nc->cmdptr = (host->dma.cmd_busaddr >> 3) | CMD_PTR_LP; |
| 299 | host->dma.hdr.cmdptr = DMOV_CMD_PTR_LIST | |
| 300 | DMOV_CMD_ADDR(host->dma.cmdptr_busaddr); |
| 301 | host->dma.hdr.complete_func = msmsdcc_dma_complete_func; |
| 302 | |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | static void |
| 307 | msmsdcc_start_data(struct msmsdcc_host *host, struct mmc_data *data) |
| 308 | { |
| 309 | unsigned int datactrl, timeout; |
| 310 | unsigned long long clks; |
| 311 | void __iomem *base = host->base; |
| 312 | unsigned int pio_irqmask = 0; |
| 313 | |
| 314 | host->curr.data = data; |
| 315 | host->curr.xfer_size = data->blksz * data->blocks; |
| 316 | host->curr.xfer_remain = host->curr.xfer_size; |
| 317 | host->curr.data_xfered = 0; |
| 318 | host->curr.got_dataend = 0; |
| 319 | host->curr.got_datablkend = 0; |
| 320 | |
| 321 | memset(&host->pio, 0, sizeof(host->pio)); |
| 322 | |
| 323 | clks = (unsigned long long)data->timeout_ns * host->clk_rate; |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 324 | do_div(clks, NSEC_PER_SEC); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 325 | timeout = data->timeout_clks + (unsigned int)clks; |
| 326 | writel(timeout, base + MMCIDATATIMER); |
| 327 | |
| 328 | writel(host->curr.xfer_size, base + MMCIDATALENGTH); |
| 329 | |
| 330 | datactrl = MCI_DPSM_ENABLE | (data->blksz << 4); |
| 331 | |
| 332 | if (!msmsdcc_config_dma(host, data)) |
| 333 | datactrl |= MCI_DPSM_DMAENABLE; |
| 334 | else { |
| 335 | host->pio.sg = data->sg; |
| 336 | host->pio.sg_len = data->sg_len; |
| 337 | host->pio.sg_off = 0; |
| 338 | |
| 339 | if (data->flags & MMC_DATA_READ) { |
| 340 | pio_irqmask = MCI_RXFIFOHALFFULLMASK; |
| 341 | if (host->curr.xfer_remain < MCI_FIFOSIZE) |
| 342 | pio_irqmask |= MCI_RXDATAAVLBLMASK; |
| 343 | } else |
| 344 | pio_irqmask = MCI_TXFIFOHALFEMPTYMASK; |
| 345 | } |
| 346 | |
| 347 | if (data->flags & MMC_DATA_READ) |
| 348 | datactrl |= MCI_DPSM_DIRECTION; |
| 349 | |
| 350 | writel(pio_irqmask, base + MMCIMASK1); |
| 351 | writel(datactrl, base + MMCIDATACTRL); |
| 352 | |
| 353 | if (datactrl & MCI_DPSM_DMAENABLE) { |
| 354 | host->dma.busy = 1; |
| 355 | msm_dmov_enqueue_cmd(host->dma.channel, &host->dma.hdr); |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | static void |
| 360 | msmsdcc_start_command(struct msmsdcc_host *host, struct mmc_command *cmd, u32 c) |
| 361 | { |
| 362 | void __iomem *base = host->base; |
| 363 | |
| 364 | if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) { |
| 365 | writel(0, base + MMCICOMMAND); |
| 366 | udelay(2 + ((5 * 1000000) / host->clk_rate)); |
| 367 | } |
| 368 | |
| 369 | c |= cmd->opcode | MCI_CPSM_ENABLE; |
| 370 | |
| 371 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 372 | if (cmd->flags & MMC_RSP_136) |
| 373 | c |= MCI_CPSM_LONGRSP; |
| 374 | c |= MCI_CPSM_RESPONSE; |
| 375 | } |
| 376 | |
Joe Perches | 75d1452 | 2009-09-22 16:44:24 -0700 | [diff] [blame] | 377 | if (cmd->opcode == 17 || cmd->opcode == 18 || |
| 378 | cmd->opcode == 24 || cmd->opcode == 25 || |
| 379 | cmd->opcode == 53) |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 380 | c |= MCI_CSPM_DATCMD; |
| 381 | |
| 382 | if (cmd == cmd->mrq->stop) |
| 383 | c |= MCI_CSPM_MCIABORT; |
| 384 | |
| 385 | host->curr.cmd = cmd; |
| 386 | |
| 387 | host->stats.cmds++; |
| 388 | |
| 389 | writel(cmd->arg, base + MMCIARGUMENT); |
| 390 | writel(c, base + MMCICOMMAND); |
| 391 | } |
| 392 | |
| 393 | static void |
| 394 | msmsdcc_data_err(struct msmsdcc_host *host, struct mmc_data *data, |
| 395 | unsigned int status) |
| 396 | { |
| 397 | if (status & MCI_DATACRCFAIL) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 398 | pr_err("%s: Data CRC error\n", mmc_hostname(host->mmc)); |
| 399 | pr_err("%s: opcode 0x%.8x\n", __func__, |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 400 | data->mrq->cmd->opcode); |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 401 | pr_err("%s: blksz %d, blocks %d\n", __func__, |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 402 | data->blksz, data->blocks); |
| 403 | data->error = -EILSEQ; |
| 404 | } else if (status & MCI_DATATIMEOUT) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 405 | pr_err("%s: Data timeout\n", mmc_hostname(host->mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 406 | data->error = -ETIMEDOUT; |
| 407 | } else if (status & MCI_RXOVERRUN) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 408 | pr_err("%s: RX overrun\n", mmc_hostname(host->mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 409 | data->error = -EIO; |
| 410 | } else if (status & MCI_TXUNDERRUN) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 411 | pr_err("%s: TX underrun\n", mmc_hostname(host->mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 412 | data->error = -EIO; |
| 413 | } else { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 414 | pr_err("%s: Unknown error (0x%.8x)\n", |
| 415 | mmc_hostname(host->mmc), status); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 416 | data->error = -EIO; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | |
| 421 | static int |
| 422 | msmsdcc_pio_read(struct msmsdcc_host *host, char *buffer, unsigned int remain) |
| 423 | { |
| 424 | void __iomem *base = host->base; |
| 425 | uint32_t *ptr = (uint32_t *) buffer; |
| 426 | int count = 0; |
| 427 | |
| 428 | while (readl(base + MMCISTATUS) & MCI_RXDATAAVLBL) { |
| 429 | |
| 430 | *ptr = readl(base + MMCIFIFO + (count % MCI_FIFOSIZE)); |
| 431 | ptr++; |
| 432 | count += sizeof(uint32_t); |
| 433 | |
| 434 | remain -= sizeof(uint32_t); |
| 435 | if (remain == 0) |
| 436 | break; |
| 437 | } |
| 438 | return count; |
| 439 | } |
| 440 | |
| 441 | static int |
| 442 | msmsdcc_pio_write(struct msmsdcc_host *host, char *buffer, |
| 443 | unsigned int remain, u32 status) |
| 444 | { |
| 445 | void __iomem *base = host->base; |
| 446 | char *ptr = buffer; |
| 447 | |
| 448 | do { |
| 449 | unsigned int count, maxcnt; |
| 450 | |
| 451 | maxcnt = status & MCI_TXFIFOEMPTY ? MCI_FIFOSIZE : |
| 452 | MCI_FIFOHALFSIZE; |
| 453 | count = min(remain, maxcnt); |
| 454 | |
| 455 | writesl(base + MMCIFIFO, ptr, count >> 2); |
| 456 | ptr += count; |
| 457 | remain -= count; |
| 458 | |
| 459 | if (remain == 0) |
| 460 | break; |
| 461 | |
| 462 | status = readl(base + MMCISTATUS); |
| 463 | } while (status & MCI_TXFIFOHALFEMPTY); |
| 464 | |
| 465 | return ptr - buffer; |
| 466 | } |
| 467 | |
| 468 | static int |
| 469 | msmsdcc_spin_on_status(struct msmsdcc_host *host, uint32_t mask, int maxspin) |
| 470 | { |
| 471 | while (maxspin) { |
| 472 | if ((readl(host->base + MMCISTATUS) & mask)) |
| 473 | return 0; |
| 474 | udelay(1); |
| 475 | --maxspin; |
| 476 | } |
| 477 | return -ETIMEDOUT; |
| 478 | } |
| 479 | |
| 480 | static int |
| 481 | msmsdcc_pio_irq(int irq, void *dev_id) |
| 482 | { |
| 483 | struct msmsdcc_host *host = dev_id; |
| 484 | void __iomem *base = host->base; |
| 485 | uint32_t status; |
| 486 | |
| 487 | status = readl(base + MMCISTATUS); |
| 488 | |
| 489 | do { |
| 490 | unsigned long flags; |
| 491 | unsigned int remain, len; |
| 492 | char *buffer; |
| 493 | |
| 494 | if (!(status & (MCI_TXFIFOHALFEMPTY | MCI_RXDATAAVLBL))) { |
| 495 | if (host->curr.xfer_remain == 0 || !msmsdcc_piopoll) |
| 496 | break; |
| 497 | |
| 498 | if (msmsdcc_spin_on_status(host, |
| 499 | (MCI_TXFIFOHALFEMPTY | |
| 500 | MCI_RXDATAAVLBL), |
| 501 | PIO_SPINMAX)) { |
| 502 | break; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | /* Map the current scatter buffer */ |
| 507 | local_irq_save(flags); |
| 508 | buffer = kmap_atomic(sg_page(host->pio.sg), |
| 509 | KM_BIO_SRC_IRQ) + host->pio.sg->offset; |
| 510 | buffer += host->pio.sg_off; |
| 511 | remain = host->pio.sg->length - host->pio.sg_off; |
| 512 | len = 0; |
| 513 | if (status & MCI_RXACTIVE) |
| 514 | len = msmsdcc_pio_read(host, buffer, remain); |
| 515 | if (status & MCI_TXACTIVE) |
| 516 | len = msmsdcc_pio_write(host, buffer, remain, status); |
| 517 | |
| 518 | /* Unmap the buffer */ |
| 519 | kunmap_atomic(buffer, KM_BIO_SRC_IRQ); |
| 520 | local_irq_restore(flags); |
| 521 | |
| 522 | host->pio.sg_off += len; |
| 523 | host->curr.xfer_remain -= len; |
| 524 | host->curr.data_xfered += len; |
| 525 | remain -= len; |
| 526 | |
| 527 | if (remain == 0) { |
| 528 | /* This sg page is full - do some housekeeping */ |
| 529 | if (status & MCI_RXACTIVE && host->curr.user_pages) |
| 530 | flush_dcache_page(sg_page(host->pio.sg)); |
| 531 | |
| 532 | if (!--host->pio.sg_len) { |
| 533 | memset(&host->pio, 0, sizeof(host->pio)); |
| 534 | break; |
| 535 | } |
| 536 | |
| 537 | /* Advance to next sg */ |
| 538 | host->pio.sg++; |
| 539 | host->pio.sg_off = 0; |
| 540 | } |
| 541 | |
| 542 | status = readl(base + MMCISTATUS); |
| 543 | } while (1); |
| 544 | |
| 545 | if (status & MCI_RXACTIVE && host->curr.xfer_remain < MCI_FIFOSIZE) |
| 546 | writel(MCI_RXDATAAVLBLMASK, base + MMCIMASK1); |
| 547 | |
| 548 | if (!host->curr.xfer_remain) |
| 549 | writel(0, base + MMCIMASK1); |
| 550 | |
| 551 | return IRQ_HANDLED; |
| 552 | } |
| 553 | |
| 554 | static void msmsdcc_do_cmdirq(struct msmsdcc_host *host, uint32_t status) |
| 555 | { |
| 556 | struct mmc_command *cmd = host->curr.cmd; |
| 557 | void __iomem *base = host->base; |
| 558 | |
| 559 | host->curr.cmd = NULL; |
| 560 | cmd->resp[0] = readl(base + MMCIRESPONSE0); |
| 561 | cmd->resp[1] = readl(base + MMCIRESPONSE1); |
| 562 | cmd->resp[2] = readl(base + MMCIRESPONSE2); |
| 563 | cmd->resp[3] = readl(base + MMCIRESPONSE3); |
| 564 | |
| 565 | del_timer(&host->command_timer); |
| 566 | if (status & MCI_CMDTIMEOUT) { |
| 567 | cmd->error = -ETIMEDOUT; |
| 568 | } else if (status & MCI_CMDCRCFAIL && |
| 569 | cmd->flags & MMC_RSP_CRC) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 570 | pr_err("%s: Command CRC error\n", mmc_hostname(host->mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 571 | cmd->error = -EILSEQ; |
| 572 | } |
| 573 | |
| 574 | if (!cmd->data || cmd->error) { |
| 575 | if (host->curr.data && host->dma.sg) |
| 576 | msm_dmov_stop_cmd(host->dma.channel, |
| 577 | &host->dma.hdr, 0); |
| 578 | else if (host->curr.data) { /* Non DMA */ |
| 579 | msmsdcc_stop_data(host); |
| 580 | msmsdcc_request_end(host, cmd->mrq); |
| 581 | } else /* host->data == NULL */ |
| 582 | msmsdcc_request_end(host, cmd->mrq); |
| 583 | } else if (!(cmd->data->flags & MMC_DATA_READ)) |
| 584 | msmsdcc_start_data(host, cmd->data); |
| 585 | } |
| 586 | |
Joe Perches | b5a74d6 | 2009-09-22 16:44:25 -0700 | [diff] [blame] | 587 | static void |
| 588 | msmsdcc_handle_irq_data(struct msmsdcc_host *host, u32 status, |
| 589 | void __iomem *base) |
| 590 | { |
| 591 | struct mmc_data *data = host->curr.data; |
| 592 | |
| 593 | if (!data) |
| 594 | return; |
| 595 | |
| 596 | /* Check for data errors */ |
| 597 | if (status & (MCI_DATACRCFAIL | MCI_DATATIMEOUT | |
| 598 | MCI_TXUNDERRUN | MCI_RXOVERRUN)) { |
| 599 | msmsdcc_data_err(host, data, status); |
| 600 | host->curr.data_xfered = 0; |
| 601 | if (host->dma.sg) |
| 602 | msm_dmov_stop_cmd(host->dma.channel, |
| 603 | &host->dma.hdr, 0); |
| 604 | else { |
| 605 | msmsdcc_stop_data(host); |
| 606 | if (!data->stop) |
| 607 | msmsdcc_request_end(host, data->mrq); |
| 608 | else |
| 609 | msmsdcc_start_command(host, data->stop, 0); |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | /* Check for data done */ |
| 614 | if (!host->curr.got_dataend && (status & MCI_DATAEND)) |
| 615 | host->curr.got_dataend = 1; |
| 616 | |
| 617 | if (!host->curr.got_datablkend && (status & MCI_DATABLOCKEND)) |
| 618 | host->curr.got_datablkend = 1; |
| 619 | |
| 620 | /* |
| 621 | * If DMA is still in progress, we complete via the completion handler |
| 622 | */ |
| 623 | if (host->curr.got_dataend && host->curr.got_datablkend && |
| 624 | !host->dma.busy) { |
| 625 | /* |
| 626 | * There appears to be an issue in the controller where |
| 627 | * if you request a small block transfer (< fifo size), |
| 628 | * you may get your DATAEND/DATABLKEND irq without the |
| 629 | * PIO data irq. |
| 630 | * |
| 631 | * Check to see if there is still data to be read, |
| 632 | * and simulate a PIO irq. |
| 633 | */ |
| 634 | if (readl(base + MMCISTATUS) & MCI_RXDATAAVLBL) |
| 635 | msmsdcc_pio_irq(1, host); |
| 636 | |
| 637 | msmsdcc_stop_data(host); |
| 638 | if (!data->error) |
| 639 | host->curr.data_xfered = host->curr.xfer_size; |
| 640 | |
| 641 | if (!data->stop) |
| 642 | msmsdcc_request_end(host, data->mrq); |
| 643 | else |
| 644 | msmsdcc_start_command(host, data->stop, 0); |
| 645 | } |
| 646 | } |
| 647 | |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 648 | static irqreturn_t |
| 649 | msmsdcc_irq(int irq, void *dev_id) |
| 650 | { |
| 651 | struct msmsdcc_host *host = dev_id; |
| 652 | void __iomem *base = host->base; |
| 653 | u32 status; |
| 654 | int ret = 0; |
| 655 | int cardint = 0; |
| 656 | |
| 657 | spin_lock(&host->lock); |
| 658 | |
| 659 | do { |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 660 | status = readl(base + MMCISTATUS); |
| 661 | |
Joe Perches | b5a74d6 | 2009-09-22 16:44:25 -0700 | [diff] [blame] | 662 | status &= (readl(base + MMCIMASK0) | MCI_DATABLOCKENDMASK); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 663 | writel(status, base + MMCICLEAR); |
| 664 | |
Joe Perches | b5a74d6 | 2009-09-22 16:44:25 -0700 | [diff] [blame] | 665 | msmsdcc_handle_irq_data(host, status, base); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 666 | |
| 667 | if (status & (MCI_CMDSENT | MCI_CMDRESPEND | MCI_CMDCRCFAIL | |
| 668 | MCI_CMDTIMEOUT) && host->curr.cmd) { |
| 669 | msmsdcc_do_cmdirq(host, status); |
| 670 | } |
| 671 | |
| 672 | if (status & MCI_SDIOINTOPER) { |
| 673 | cardint = 1; |
| 674 | status &= ~MCI_SDIOINTOPER; |
| 675 | } |
| 676 | ret = 1; |
| 677 | } while (status); |
| 678 | |
| 679 | spin_unlock(&host->lock); |
| 680 | |
| 681 | /* |
| 682 | * We have to delay handling the card interrupt as it calls |
| 683 | * back into the driver. |
| 684 | */ |
| 685 | if (cardint) |
| 686 | mmc_signal_sdio_irq(host->mmc); |
| 687 | |
| 688 | return IRQ_RETVAL(ret); |
| 689 | } |
| 690 | |
| 691 | static void |
| 692 | msmsdcc_request(struct mmc_host *mmc, struct mmc_request *mrq) |
| 693 | { |
| 694 | struct msmsdcc_host *host = mmc_priv(mmc); |
| 695 | unsigned long flags; |
| 696 | |
| 697 | WARN_ON(host->curr.mrq != NULL); |
| 698 | WARN_ON(host->pwr == 0); |
| 699 | |
| 700 | spin_lock_irqsave(&host->lock, flags); |
| 701 | |
| 702 | host->stats.reqs++; |
| 703 | |
| 704 | if (host->eject) { |
| 705 | if (mrq->data && !(mrq->data->flags & MMC_DATA_READ)) { |
| 706 | mrq->cmd->error = 0; |
| 707 | mrq->data->bytes_xfered = mrq->data->blksz * |
| 708 | mrq->data->blocks; |
| 709 | } else |
| 710 | mrq->cmd->error = -ENOMEDIUM; |
| 711 | |
| 712 | spin_unlock_irqrestore(&host->lock, flags); |
| 713 | mmc_request_done(mmc, mrq); |
| 714 | return; |
| 715 | } |
| 716 | |
| 717 | host->curr.mrq = mrq; |
| 718 | |
| 719 | if (mrq->data && mrq->data->flags & MMC_DATA_READ) |
| 720 | msmsdcc_start_data(host, mrq->data); |
| 721 | |
| 722 | msmsdcc_start_command(host, mrq->cmd, 0); |
| 723 | |
| 724 | if (host->cmdpoll && !msmsdcc_spin_on_status(host, |
| 725 | MCI_CMDRESPEND|MCI_CMDCRCFAIL|MCI_CMDTIMEOUT, |
| 726 | CMD_SPINMAX)) { |
| 727 | uint32_t status = readl(host->base + MMCISTATUS); |
| 728 | msmsdcc_do_cmdirq(host, status); |
| 729 | writel(MCI_CMDRESPEND | MCI_CMDCRCFAIL | MCI_CMDTIMEOUT, |
| 730 | host->base + MMCICLEAR); |
| 731 | host->stats.cmdpoll_hits++; |
| 732 | } else { |
| 733 | host->stats.cmdpoll_misses++; |
| 734 | mod_timer(&host->command_timer, jiffies + HZ); |
| 735 | } |
| 736 | spin_unlock_irqrestore(&host->lock, flags); |
| 737 | } |
| 738 | |
| 739 | static void |
| 740 | msmsdcc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
| 741 | { |
| 742 | struct msmsdcc_host *host = mmc_priv(mmc); |
| 743 | u32 clk = 0, pwr = 0; |
| 744 | int rc; |
| 745 | |
| 746 | if (ios->clock) { |
| 747 | |
| 748 | if (!host->clks_on) { |
| 749 | clk_enable(host->pclk); |
| 750 | clk_enable(host->clk); |
| 751 | host->clks_on = 1; |
| 752 | } |
| 753 | if (ios->clock != host->clk_rate) { |
| 754 | rc = clk_set_rate(host->clk, ios->clock); |
| 755 | if (rc < 0) |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 756 | pr_err("%s: Error setting clock rate (%d)\n", |
| 757 | mmc_hostname(host->mmc), rc); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 758 | else |
| 759 | host->clk_rate = ios->clock; |
| 760 | } |
| 761 | clk |= MCI_CLK_ENABLE; |
| 762 | } |
| 763 | |
| 764 | if (ios->bus_width == MMC_BUS_WIDTH_4) |
| 765 | clk |= (2 << 10); /* Set WIDEBUS */ |
| 766 | |
| 767 | if (ios->clock > 400000 && msmsdcc_pwrsave) |
| 768 | clk |= (1 << 9); /* PWRSAVE */ |
| 769 | |
| 770 | clk |= (1 << 12); /* FLOW_ENA */ |
| 771 | clk |= (1 << 15); /* feedback clock */ |
| 772 | |
| 773 | if (host->plat->translate_vdd) |
| 774 | pwr |= host->plat->translate_vdd(mmc_dev(mmc), ios->vdd); |
| 775 | |
| 776 | switch (ios->power_mode) { |
| 777 | case MMC_POWER_OFF: |
| 778 | htc_pwrsink_set(PWRSINK_SDCARD, 0); |
| 779 | break; |
| 780 | case MMC_POWER_UP: |
| 781 | pwr |= MCI_PWR_UP; |
| 782 | break; |
| 783 | case MMC_POWER_ON: |
| 784 | htc_pwrsink_set(PWRSINK_SDCARD, 100); |
| 785 | pwr |= MCI_PWR_ON; |
| 786 | break; |
| 787 | } |
| 788 | |
| 789 | if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) |
| 790 | pwr |= MCI_OD; |
| 791 | |
| 792 | writel(clk, host->base + MMCICLOCK); |
| 793 | |
| 794 | if (host->pwr != pwr) { |
| 795 | host->pwr = pwr; |
| 796 | writel(pwr, host->base + MMCIPOWER); |
| 797 | } |
| 798 | |
| 799 | if (!(clk & MCI_CLK_ENABLE) && host->clks_on) { |
| 800 | clk_disable(host->clk); |
| 801 | clk_disable(host->pclk); |
| 802 | host->clks_on = 0; |
| 803 | } |
| 804 | } |
| 805 | |
| 806 | static void msmsdcc_enable_sdio_irq(struct mmc_host *mmc, int enable) |
| 807 | { |
| 808 | struct msmsdcc_host *host = mmc_priv(mmc); |
| 809 | unsigned long flags; |
| 810 | u32 status; |
| 811 | |
| 812 | spin_lock_irqsave(&host->lock, flags); |
| 813 | if (msmsdcc_sdioirq == 1) { |
| 814 | status = readl(host->base + MMCIMASK0); |
| 815 | if (enable) |
| 816 | status |= MCI_SDIOINTOPERMASK; |
| 817 | else |
| 818 | status &= ~MCI_SDIOINTOPERMASK; |
| 819 | host->saved_irq0mask = status; |
| 820 | writel(status, host->base + MMCIMASK0); |
| 821 | } |
| 822 | spin_unlock_irqrestore(&host->lock, flags); |
| 823 | } |
| 824 | |
| 825 | static const struct mmc_host_ops msmsdcc_ops = { |
| 826 | .request = msmsdcc_request, |
| 827 | .set_ios = msmsdcc_set_ios, |
| 828 | .enable_sdio_irq = msmsdcc_enable_sdio_irq, |
| 829 | }; |
| 830 | |
| 831 | static void |
| 832 | msmsdcc_check_status(unsigned long data) |
| 833 | { |
| 834 | struct msmsdcc_host *host = (struct msmsdcc_host *)data; |
| 835 | unsigned int status; |
| 836 | |
| 837 | if (!host->plat->status) { |
| 838 | mmc_detect_change(host->mmc, 0); |
| 839 | goto out; |
| 840 | } |
| 841 | |
| 842 | status = host->plat->status(mmc_dev(host->mmc)); |
| 843 | host->eject = !status; |
| 844 | if (status ^ host->oldstat) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 845 | pr_info("%s: Slot status change detected (%d -> %d)\n", |
| 846 | mmc_hostname(host->mmc), host->oldstat, status); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 847 | if (status) |
| 848 | mmc_detect_change(host->mmc, (5 * HZ) / 2); |
| 849 | else |
| 850 | mmc_detect_change(host->mmc, 0); |
| 851 | } |
| 852 | |
| 853 | host->oldstat = status; |
| 854 | |
| 855 | out: |
| 856 | if (host->timer.function) |
| 857 | mod_timer(&host->timer, jiffies + HZ); |
| 858 | } |
| 859 | |
| 860 | static irqreturn_t |
| 861 | msmsdcc_platform_status_irq(int irq, void *dev_id) |
| 862 | { |
| 863 | struct msmsdcc_host *host = dev_id; |
| 864 | |
| 865 | printk(KERN_DEBUG "%s: %d\n", __func__, irq); |
| 866 | msmsdcc_check_status((unsigned long) host); |
| 867 | return IRQ_HANDLED; |
| 868 | } |
| 869 | |
| 870 | static void |
| 871 | msmsdcc_status_notify_cb(int card_present, void *dev_id) |
| 872 | { |
| 873 | struct msmsdcc_host *host = dev_id; |
| 874 | |
| 875 | printk(KERN_DEBUG "%s: card_present %d\n", mmc_hostname(host->mmc), |
| 876 | card_present); |
| 877 | msmsdcc_check_status((unsigned long) host); |
| 878 | } |
| 879 | |
| 880 | /* |
| 881 | * called when a command expires. |
| 882 | * Dump some debugging, and then error |
| 883 | * out the transaction. |
| 884 | */ |
| 885 | static void |
| 886 | msmsdcc_command_expired(unsigned long _data) |
| 887 | { |
| 888 | struct msmsdcc_host *host = (struct msmsdcc_host *) _data; |
| 889 | struct mmc_request *mrq; |
| 890 | unsigned long flags; |
| 891 | |
| 892 | spin_lock_irqsave(&host->lock, flags); |
| 893 | mrq = host->curr.mrq; |
| 894 | |
| 895 | if (!mrq) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 896 | pr_info("%s: Command expiry misfire\n", |
| 897 | mmc_hostname(host->mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 898 | spin_unlock_irqrestore(&host->lock, flags); |
| 899 | return; |
| 900 | } |
| 901 | |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 902 | pr_err("%s: Command timeout (%p %p %p %p)\n", |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 903 | mmc_hostname(host->mmc), mrq, mrq->cmd, |
| 904 | mrq->data, host->dma.sg); |
| 905 | |
| 906 | mrq->cmd->error = -ETIMEDOUT; |
| 907 | msmsdcc_stop_data(host); |
| 908 | |
| 909 | writel(0, host->base + MMCICOMMAND); |
| 910 | |
| 911 | host->curr.mrq = NULL; |
| 912 | host->curr.cmd = NULL; |
| 913 | |
| 914 | spin_unlock_irqrestore(&host->lock, flags); |
| 915 | mmc_request_done(host->mmc, mrq); |
| 916 | } |
| 917 | |
| 918 | static int |
| 919 | msmsdcc_init_dma(struct msmsdcc_host *host) |
| 920 | { |
| 921 | memset(&host->dma, 0, sizeof(struct msmsdcc_dma_data)); |
| 922 | host->dma.host = host; |
| 923 | host->dma.channel = -1; |
| 924 | |
| 925 | if (!host->dmares) |
| 926 | return -ENODEV; |
| 927 | |
| 928 | host->dma.nc = dma_alloc_coherent(NULL, |
| 929 | sizeof(struct msmsdcc_nc_dmadata), |
| 930 | &host->dma.nc_busaddr, |
| 931 | GFP_KERNEL); |
| 932 | if (host->dma.nc == NULL) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 933 | pr_err("Unable to allocate DMA buffer\n"); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 934 | return -ENOMEM; |
| 935 | } |
| 936 | memset(host->dma.nc, 0x00, sizeof(struct msmsdcc_nc_dmadata)); |
| 937 | host->dma.cmd_busaddr = host->dma.nc_busaddr; |
| 938 | host->dma.cmdptr_busaddr = host->dma.nc_busaddr + |
| 939 | offsetof(struct msmsdcc_nc_dmadata, cmdptr); |
| 940 | host->dma.channel = host->dmares->start; |
| 941 | |
| 942 | return 0; |
| 943 | } |
| 944 | |
| 945 | #ifdef CONFIG_MMC_MSM7X00A_RESUME_IN_WQ |
| 946 | static void |
| 947 | do_resume_work(struct work_struct *work) |
| 948 | { |
| 949 | struct msmsdcc_host *host = |
| 950 | container_of(work, struct msmsdcc_host, resume_task); |
| 951 | struct mmc_host *mmc = host->mmc; |
| 952 | |
| 953 | if (mmc) { |
| 954 | mmc_resume_host(mmc); |
| 955 | if (host->stat_irq) |
| 956 | enable_irq(host->stat_irq); |
| 957 | } |
| 958 | } |
| 959 | #endif |
| 960 | |
| 961 | static int |
| 962 | msmsdcc_probe(struct platform_device *pdev) |
| 963 | { |
| 964 | struct mmc_platform_data *plat = pdev->dev.platform_data; |
| 965 | struct msmsdcc_host *host; |
| 966 | struct mmc_host *mmc; |
| 967 | struct resource *cmd_irqres = NULL; |
| 968 | struct resource *pio_irqres = NULL; |
| 969 | struct resource *stat_irqres = NULL; |
| 970 | struct resource *memres = NULL; |
| 971 | struct resource *dmares = NULL; |
| 972 | int ret; |
| 973 | |
| 974 | /* must have platform data */ |
| 975 | if (!plat) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 976 | pr_err("%s: Platform data not available\n", __func__); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 977 | ret = -EINVAL; |
| 978 | goto out; |
| 979 | } |
| 980 | |
| 981 | if (pdev->id < 1 || pdev->id > 4) |
| 982 | return -EINVAL; |
| 983 | |
| 984 | if (pdev->resource == NULL || pdev->num_resources < 2) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 985 | pr_err("%s: Invalid resource\n", __func__); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 986 | return -ENXIO; |
| 987 | } |
| 988 | |
| 989 | memres = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 990 | dmares = platform_get_resource(pdev, IORESOURCE_DMA, 0); |
| 991 | cmd_irqres = platform_get_resource_byname(pdev, IORESOURCE_IRQ, |
| 992 | "cmd_irq"); |
| 993 | pio_irqres = platform_get_resource_byname(pdev, IORESOURCE_IRQ, |
| 994 | "pio_irq"); |
| 995 | stat_irqres = platform_get_resource_byname(pdev, IORESOURCE_IRQ, |
| 996 | "status_irq"); |
| 997 | |
| 998 | if (!cmd_irqres || !pio_irqres || !memres) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 999 | pr_err("%s: Invalid resource\n", __func__); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1000 | return -ENXIO; |
| 1001 | } |
| 1002 | |
| 1003 | /* |
| 1004 | * Setup our host structure |
| 1005 | */ |
| 1006 | |
| 1007 | mmc = mmc_alloc_host(sizeof(struct msmsdcc_host), &pdev->dev); |
| 1008 | if (!mmc) { |
| 1009 | ret = -ENOMEM; |
| 1010 | goto out; |
| 1011 | } |
| 1012 | |
| 1013 | host = mmc_priv(mmc); |
| 1014 | host->pdev_id = pdev->id; |
| 1015 | host->plat = plat; |
| 1016 | host->mmc = mmc; |
| 1017 | |
| 1018 | host->cmdpoll = 1; |
| 1019 | |
| 1020 | host->base = ioremap(memres->start, PAGE_SIZE); |
| 1021 | if (!host->base) { |
| 1022 | ret = -ENOMEM; |
| 1023 | goto out; |
| 1024 | } |
| 1025 | |
| 1026 | host->cmd_irqres = cmd_irqres; |
| 1027 | host->pio_irqres = pio_irqres; |
| 1028 | host->memres = memres; |
| 1029 | host->dmares = dmares; |
| 1030 | spin_lock_init(&host->lock); |
| 1031 | |
| 1032 | /* |
| 1033 | * Setup DMA |
| 1034 | */ |
| 1035 | msmsdcc_init_dma(host); |
| 1036 | |
| 1037 | /* |
| 1038 | * Setup main peripheral bus clock |
| 1039 | */ |
| 1040 | host->pclk = clk_get(&pdev->dev, "sdc_pclk"); |
| 1041 | if (IS_ERR(host->pclk)) { |
| 1042 | ret = PTR_ERR(host->pclk); |
| 1043 | goto host_free; |
| 1044 | } |
| 1045 | |
| 1046 | ret = clk_enable(host->pclk); |
| 1047 | if (ret) |
| 1048 | goto pclk_put; |
| 1049 | |
| 1050 | host->pclk_rate = clk_get_rate(host->pclk); |
| 1051 | |
| 1052 | /* |
| 1053 | * Setup SDC MMC clock |
| 1054 | */ |
| 1055 | host->clk = clk_get(&pdev->dev, "sdc_clk"); |
| 1056 | if (IS_ERR(host->clk)) { |
| 1057 | ret = PTR_ERR(host->clk); |
| 1058 | goto pclk_disable; |
| 1059 | } |
| 1060 | |
| 1061 | ret = clk_enable(host->clk); |
| 1062 | if (ret) |
| 1063 | goto clk_put; |
| 1064 | |
| 1065 | ret = clk_set_rate(host->clk, msmsdcc_fmin); |
| 1066 | if (ret) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1067 | pr_err("%s: Clock rate set failed (%d)\n", __func__, ret); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1068 | goto clk_disable; |
| 1069 | } |
| 1070 | |
| 1071 | host->clk_rate = clk_get_rate(host->clk); |
| 1072 | |
| 1073 | host->clks_on = 1; |
| 1074 | |
| 1075 | /* |
| 1076 | * Setup MMC host structure |
| 1077 | */ |
| 1078 | mmc->ops = &msmsdcc_ops; |
| 1079 | mmc->f_min = msmsdcc_fmin; |
| 1080 | mmc->f_max = msmsdcc_fmax; |
| 1081 | mmc->ocr_avail = plat->ocr_mask; |
| 1082 | |
| 1083 | if (msmsdcc_4bit) |
| 1084 | mmc->caps |= MMC_CAP_4_BIT_DATA; |
| 1085 | if (msmsdcc_sdioirq) |
| 1086 | mmc->caps |= MMC_CAP_SDIO_IRQ; |
| 1087 | mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED; |
| 1088 | |
| 1089 | mmc->max_phys_segs = NR_SG; |
| 1090 | mmc->max_hw_segs = NR_SG; |
| 1091 | mmc->max_blk_size = 4096; /* MCI_DATA_CTL BLOCKSIZE up to 4096 */ |
| 1092 | mmc->max_blk_count = 65536; |
| 1093 | |
| 1094 | mmc->max_req_size = 33554432; /* MCI_DATA_LENGTH is 25 bits */ |
| 1095 | mmc->max_seg_size = mmc->max_req_size; |
| 1096 | |
| 1097 | writel(0, host->base + MMCIMASK0); |
| 1098 | writel(0x5e007ff, host->base + MMCICLEAR); /* Add: 1 << 25 */ |
| 1099 | |
| 1100 | writel(MCI_IRQENABLE, host->base + MMCIMASK0); |
| 1101 | host->saved_irq0mask = MCI_IRQENABLE; |
| 1102 | |
| 1103 | /* |
| 1104 | * Setup card detect change |
| 1105 | */ |
| 1106 | |
| 1107 | memset(&host->timer, 0, sizeof(host->timer)); |
| 1108 | |
| 1109 | if (stat_irqres && !(stat_irqres->flags & IORESOURCE_DISABLED)) { |
| 1110 | unsigned long irqflags = IRQF_SHARED | |
| 1111 | (stat_irqres->flags & IRQF_TRIGGER_MASK); |
| 1112 | |
| 1113 | host->stat_irq = stat_irqres->start; |
| 1114 | ret = request_irq(host->stat_irq, |
| 1115 | msmsdcc_platform_status_irq, |
| 1116 | irqflags, |
| 1117 | DRIVER_NAME " (slot)", |
| 1118 | host); |
| 1119 | if (ret) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1120 | pr_err("%s: Unable to get slot IRQ %d (%d)\n", |
| 1121 | mmc_hostname(mmc), host->stat_irq, ret); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1122 | goto clk_disable; |
| 1123 | } |
| 1124 | } else if (plat->register_status_notify) { |
| 1125 | plat->register_status_notify(msmsdcc_status_notify_cb, host); |
| 1126 | } else if (!plat->status) |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1127 | pr_err("%s: No card detect facilities available\n", |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1128 | mmc_hostname(mmc)); |
| 1129 | else { |
| 1130 | init_timer(&host->timer); |
| 1131 | host->timer.data = (unsigned long)host; |
| 1132 | host->timer.function = msmsdcc_check_status; |
| 1133 | host->timer.expires = jiffies + HZ; |
| 1134 | add_timer(&host->timer); |
| 1135 | } |
| 1136 | |
| 1137 | if (plat->status) { |
| 1138 | host->oldstat = host->plat->status(mmc_dev(host->mmc)); |
| 1139 | host->eject = !host->oldstat; |
| 1140 | } |
| 1141 | |
| 1142 | /* |
| 1143 | * Setup a command timer. We currently need this due to |
| 1144 | * some 'strange' timeout / error handling situations. |
| 1145 | */ |
| 1146 | init_timer(&host->command_timer); |
| 1147 | host->command_timer.data = (unsigned long) host; |
| 1148 | host->command_timer.function = msmsdcc_command_expired; |
| 1149 | |
| 1150 | ret = request_irq(cmd_irqres->start, msmsdcc_irq, IRQF_SHARED, |
| 1151 | DRIVER_NAME " (cmd)", host); |
| 1152 | if (ret) |
| 1153 | goto stat_irq_free; |
| 1154 | |
| 1155 | ret = request_irq(pio_irqres->start, msmsdcc_pio_irq, IRQF_SHARED, |
| 1156 | DRIVER_NAME " (pio)", host); |
| 1157 | if (ret) |
| 1158 | goto cmd_irq_free; |
| 1159 | |
| 1160 | mmc_set_drvdata(pdev, mmc); |
| 1161 | mmc_add_host(mmc); |
| 1162 | |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1163 | pr_info("%s: Qualcomm MSM SDCC at 0x%016llx irq %d,%d dma %d\n", |
| 1164 | mmc_hostname(mmc), (unsigned long long)memres->start, |
| 1165 | (unsigned int) cmd_irqres->start, |
| 1166 | (unsigned int) host->stat_irq, host->dma.channel); |
| 1167 | pr_info("%s: 4 bit data mode %s\n", mmc_hostname(mmc), |
| 1168 | (mmc->caps & MMC_CAP_4_BIT_DATA ? "enabled" : "disabled")); |
| 1169 | pr_info("%s: MMC clock %u -> %u Hz, PCLK %u Hz\n", |
| 1170 | mmc_hostname(mmc), msmsdcc_fmin, msmsdcc_fmax, host->pclk_rate); |
| 1171 | pr_info("%s: Slot eject status = %d\n", mmc_hostname(mmc), host->eject); |
| 1172 | pr_info("%s: Power save feature enable = %d\n", |
| 1173 | mmc_hostname(mmc), msmsdcc_pwrsave); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1174 | |
| 1175 | if (host->dma.channel != -1) { |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1176 | pr_info("%s: DM non-cached buffer at %p, dma_addr 0x%.8x\n", |
| 1177 | mmc_hostname(mmc), host->dma.nc, host->dma.nc_busaddr); |
| 1178 | pr_info("%s: DM cmd busaddr 0x%.8x, cmdptr busaddr 0x%.8x\n", |
| 1179 | mmc_hostname(mmc), host->dma.cmd_busaddr, |
| 1180 | host->dma.cmdptr_busaddr); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1181 | } else |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1182 | pr_info("%s: PIO transfer enabled\n", mmc_hostname(mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1183 | if (host->timer.function) |
Joe Perches | 0a7ff7c | 2009-09-22 16:44:23 -0700 | [diff] [blame] | 1184 | pr_info("%s: Polling status mode enabled\n", mmc_hostname(mmc)); |
San Mehat | 9d2bd73 | 2009-09-22 16:44:22 -0700 | [diff] [blame] | 1185 | |
| 1186 | return 0; |
| 1187 | cmd_irq_free: |
| 1188 | free_irq(cmd_irqres->start, host); |
| 1189 | stat_irq_free: |
| 1190 | if (host->stat_irq) |
| 1191 | free_irq(host->stat_irq, host); |
| 1192 | clk_disable: |
| 1193 | clk_disable(host->clk); |
| 1194 | clk_put: |
| 1195 | clk_put(host->clk); |
| 1196 | pclk_disable: |
| 1197 | clk_disable(host->pclk); |
| 1198 | pclk_put: |
| 1199 | clk_put(host->pclk); |
| 1200 | host_free: |
| 1201 | mmc_free_host(mmc); |
| 1202 | out: |
| 1203 | return ret; |
| 1204 | } |
| 1205 | |
| 1206 | static int |
| 1207 | msmsdcc_suspend(struct platform_device *dev, pm_message_t state) |
| 1208 | { |
| 1209 | struct mmc_host *mmc = mmc_get_drvdata(dev); |
| 1210 | int rc = 0; |
| 1211 | |
| 1212 | if (mmc) { |
| 1213 | struct msmsdcc_host *host = mmc_priv(mmc); |
| 1214 | |
| 1215 | if (host->stat_irq) |
| 1216 | disable_irq(host->stat_irq); |
| 1217 | |
| 1218 | if (mmc->card && mmc->card->type != MMC_TYPE_SDIO) |
| 1219 | rc = mmc_suspend_host(mmc, state); |
| 1220 | if (!rc) { |
| 1221 | writel(0, host->base + MMCIMASK0); |
| 1222 | |
| 1223 | if (host->clks_on) { |
| 1224 | clk_disable(host->clk); |
| 1225 | clk_disable(host->pclk); |
| 1226 | host->clks_on = 0; |
| 1227 | } |
| 1228 | } |
| 1229 | } |
| 1230 | return rc; |
| 1231 | } |
| 1232 | |
| 1233 | static int |
| 1234 | msmsdcc_resume(struct platform_device *dev) |
| 1235 | { |
| 1236 | struct mmc_host *mmc = mmc_get_drvdata(dev); |
| 1237 | unsigned long flags; |
| 1238 | |
| 1239 | if (mmc) { |
| 1240 | struct msmsdcc_host *host = mmc_priv(mmc); |
| 1241 | |
| 1242 | spin_lock_irqsave(&host->lock, flags); |
| 1243 | |
| 1244 | if (!host->clks_on) { |
| 1245 | clk_enable(host->pclk); |
| 1246 | clk_enable(host->clk); |
| 1247 | host->clks_on = 1; |
| 1248 | } |
| 1249 | |
| 1250 | writel(host->saved_irq0mask, host->base + MMCIMASK0); |
| 1251 | |
| 1252 | spin_unlock_irqrestore(&host->lock, flags); |
| 1253 | |
| 1254 | if (mmc->card && mmc->card->type != MMC_TYPE_SDIO) |
| 1255 | mmc_resume_host(mmc); |
| 1256 | if (host->stat_irq) |
| 1257 | enable_irq(host->stat_irq); |
| 1258 | else if (host->stat_irq) |
| 1259 | enable_irq(host->stat_irq); |
| 1260 | } |
| 1261 | return 0; |
| 1262 | } |
| 1263 | |
| 1264 | static struct platform_driver msmsdcc_driver = { |
| 1265 | .probe = msmsdcc_probe, |
| 1266 | .suspend = msmsdcc_suspend, |
| 1267 | .resume = msmsdcc_resume, |
| 1268 | .driver = { |
| 1269 | .name = "msm_sdcc", |
| 1270 | }, |
| 1271 | }; |
| 1272 | |
| 1273 | static int __init msmsdcc_init(void) |
| 1274 | { |
| 1275 | return platform_driver_register(&msmsdcc_driver); |
| 1276 | } |
| 1277 | |
| 1278 | static void __exit msmsdcc_exit(void) |
| 1279 | { |
| 1280 | platform_driver_unregister(&msmsdcc_driver); |
| 1281 | } |
| 1282 | |
| 1283 | module_init(msmsdcc_init); |
| 1284 | module_exit(msmsdcc_exit); |
| 1285 | |
| 1286 | MODULE_DESCRIPTION("Qualcomm MSM 7X00A Multimedia Card Interface driver"); |
| 1287 | MODULE_LICENSE("GPL"); |