Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Pierre Ossman | 70f1048 | 2007-07-11 20:04:50 +0200 | [diff] [blame] | 2 | * linux/drivers/mmc/host/mmci.c - ARM PrimeCell MMCI PL180/1 driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved. |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 5 | * Copyright (C) 2010 ST-Ericsson SA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/moduleparam.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/ioport.h> |
| 15 | #include <linux/device.h> |
| 16 | #include <linux/interrupt.h> |
Russell King | 613b152 | 2011-01-30 21:06:53 +0000 | [diff] [blame] | 17 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/delay.h> |
| 19 | #include <linux/err.h> |
| 20 | #include <linux/highmem.h> |
Nicolas Pitre | 019a5f5 | 2007-10-11 01:06:03 -0400 | [diff] [blame] | 21 | #include <linux/log2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/mmc/host.h> |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 23 | #include <linux/mmc/card.h> |
Russell King | a62c80e | 2006-01-07 13:52:45 +0000 | [diff] [blame] | 24 | #include <linux/amba/bus.h> |
Russell King | f8ce254 | 2006-01-07 16:15:52 +0000 | [diff] [blame] | 25 | #include <linux/clk.h> |
Jens Axboe | bd6dee6 | 2007-10-24 09:01:09 +0200 | [diff] [blame] | 26 | #include <linux/scatterlist.h> |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 27 | #include <linux/gpio.h> |
Linus Walleij | 34e84f3 | 2009-09-22 14:41:40 +0100 | [diff] [blame] | 28 | #include <linux/regulator/consumer.h> |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 29 | #include <linux/dmaengine.h> |
| 30 | #include <linux/dma-mapping.h> |
| 31 | #include <linux/amba/mmci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Russell King | 7b09cda | 2005-07-01 12:02:59 +0100 | [diff] [blame] | 33 | #include <asm/div64.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <asm/io.h> |
Russell King | c6b8fda | 2005-10-28 14:05:16 +0100 | [diff] [blame] | 35 | #include <asm/sizes.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | #include "mmci.h" |
| 38 | |
| 39 | #define DRIVER_NAME "mmci-pl18x" |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | static unsigned int fmax = 515633; |
| 42 | |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 43 | /** |
| 44 | * struct variant_data - MMCI variant-specific quirks |
| 45 | * @clkreg: default value for MCICLOCK register |
Rabin Vincent | 4380c14 | 2010-07-21 12:55:18 +0100 | [diff] [blame] | 46 | * @clkreg_enable: enable value for MMCICLOCK register |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 47 | * @datalength_bits: number of bits in the MMCIDATALENGTH register |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 48 | * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY |
| 49 | * is asserted (likewise for RX) |
| 50 | * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY |
| 51 | * is asserted (likewise for RX) |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 52 | * @sdio: variant supports SDIO |
Linus Walleij | b70a67f | 2010-12-06 09:24:14 +0100 | [diff] [blame] | 53 | * @st_clkdiv: true if using a ST-specific clock divider algorithm |
Philippe Langlais | 1784b15 | 2011-03-25 08:51:52 +0100 | [diff] [blame] | 54 | * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 55 | */ |
| 56 | struct variant_data { |
| 57 | unsigned int clkreg; |
Rabin Vincent | 4380c14 | 2010-07-21 12:55:18 +0100 | [diff] [blame] | 58 | unsigned int clkreg_enable; |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 59 | unsigned int datalength_bits; |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 60 | unsigned int fifosize; |
| 61 | unsigned int fifohalfsize; |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 62 | bool sdio; |
Linus Walleij | b70a67f | 2010-12-06 09:24:14 +0100 | [diff] [blame] | 63 | bool st_clkdiv; |
Philippe Langlais | 1784b15 | 2011-03-25 08:51:52 +0100 | [diff] [blame] | 64 | bool blksz_datactrl16; |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | static struct variant_data variant_arm = { |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 68 | .fifosize = 16 * 4, |
| 69 | .fifohalfsize = 8 * 4, |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 70 | .datalength_bits = 16, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 71 | }; |
| 72 | |
Pawel Moll | 768fbc1 | 2011-03-11 17:18:07 +0000 | [diff] [blame] | 73 | static struct variant_data variant_arm_extended_fifo = { |
| 74 | .fifosize = 128 * 4, |
| 75 | .fifohalfsize = 64 * 4, |
| 76 | .datalength_bits = 16, |
| 77 | }; |
| 78 | |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 79 | static struct variant_data variant_u300 = { |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 80 | .fifosize = 16 * 4, |
| 81 | .fifohalfsize = 8 * 4, |
Linus Walleij | 49ac215 | 2011-03-04 14:54:16 +0100 | [diff] [blame] | 82 | .clkreg_enable = MCI_ST_U300_HWFCEN, |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 83 | .datalength_bits = 16, |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 84 | .sdio = true, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | static struct variant_data variant_ux500 = { |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 88 | .fifosize = 30 * 4, |
| 89 | .fifohalfsize = 8 * 4, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 90 | .clkreg = MCI_CLK_ENABLE, |
Linus Walleij | 49ac215 | 2011-03-04 14:54:16 +0100 | [diff] [blame] | 91 | .clkreg_enable = MCI_ST_UX500_HWFCEN, |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 92 | .datalength_bits = 24, |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 93 | .sdio = true, |
Linus Walleij | b70a67f | 2010-12-06 09:24:14 +0100 | [diff] [blame] | 94 | .st_clkdiv = true, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 95 | }; |
Linus Walleij | b70a67f | 2010-12-06 09:24:14 +0100 | [diff] [blame] | 96 | |
Philippe Langlais | 1784b15 | 2011-03-25 08:51:52 +0100 | [diff] [blame] | 97 | static struct variant_data variant_ux500v2 = { |
| 98 | .fifosize = 30 * 4, |
| 99 | .fifohalfsize = 8 * 4, |
| 100 | .clkreg = MCI_CLK_ENABLE, |
| 101 | .clkreg_enable = MCI_ST_UX500_HWFCEN, |
| 102 | .datalength_bits = 24, |
| 103 | .sdio = true, |
| 104 | .st_clkdiv = true, |
| 105 | .blksz_datactrl16 = true, |
| 106 | }; |
| 107 | |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 108 | /* |
| 109 | * This must be called with host->lock held |
| 110 | */ |
| 111 | static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired) |
| 112 | { |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 113 | struct variant_data *variant = host->variant; |
| 114 | u32 clk = variant->clkreg; |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 115 | |
| 116 | if (desired) { |
| 117 | if (desired >= host->mclk) { |
Linus Walleij | 991a86e | 2010-12-10 09:35:53 +0100 | [diff] [blame] | 118 | clk = MCI_CLK_BYPASS; |
Linus Walleij | 399bc48 | 2011-04-01 07:59:17 +0100 | [diff] [blame] | 119 | if (variant->st_clkdiv) |
| 120 | clk |= MCI_ST_UX500_NEG_EDGE; |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 121 | host->cclk = host->mclk; |
Linus Walleij | b70a67f | 2010-12-06 09:24:14 +0100 | [diff] [blame] | 122 | } else if (variant->st_clkdiv) { |
| 123 | /* |
| 124 | * DB8500 TRM says f = mclk / (clkdiv + 2) |
| 125 | * => clkdiv = (mclk / f) - 2 |
| 126 | * Round the divider up so we don't exceed the max |
| 127 | * frequency |
| 128 | */ |
| 129 | clk = DIV_ROUND_UP(host->mclk, desired) - 2; |
| 130 | if (clk >= 256) |
| 131 | clk = 255; |
| 132 | host->cclk = host->mclk / (clk + 2); |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 133 | } else { |
Linus Walleij | b70a67f | 2010-12-06 09:24:14 +0100 | [diff] [blame] | 134 | /* |
| 135 | * PL180 TRM says f = mclk / (2 * (clkdiv + 1)) |
| 136 | * => clkdiv = mclk / (2 * f) - 1 |
| 137 | */ |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 138 | clk = host->mclk / (2 * desired) - 1; |
| 139 | if (clk >= 256) |
| 140 | clk = 255; |
| 141 | host->cclk = host->mclk / (2 * (clk + 1)); |
| 142 | } |
Rabin Vincent | 4380c14 | 2010-07-21 12:55:18 +0100 | [diff] [blame] | 143 | |
| 144 | clk |= variant->clkreg_enable; |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 145 | clk |= MCI_CLK_ENABLE; |
| 146 | /* This hasn't proven to be worthwhile */ |
| 147 | /* clk |= MCI_CLK_PWRSAVE; */ |
| 148 | } |
| 149 | |
Linus Walleij | 9e6c82c | 2009-09-14 12:57:11 +0100 | [diff] [blame] | 150 | if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4) |
Linus Walleij | 771dc15 | 2010-04-08 07:38:52 +0100 | [diff] [blame] | 151 | clk |= MCI_4BIT_BUS; |
| 152 | if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8) |
| 153 | clk |= MCI_ST_8BIT_BUS; |
Linus Walleij | 9e6c82c | 2009-09-14 12:57:11 +0100 | [diff] [blame] | 154 | |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 155 | writel(clk, host->base + MMCICLOCK); |
| 156 | } |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | static void |
| 159 | mmci_request_end(struct mmci_host *host, struct mmc_request *mrq) |
| 160 | { |
| 161 | writel(0, host->base + MMCICOMMAND); |
| 162 | |
Russell King | e47c222 | 2007-01-08 16:42:51 +0000 | [diff] [blame] | 163 | BUG_ON(host->data); |
| 164 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | host->mrq = NULL; |
| 166 | host->cmd = NULL; |
| 167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | /* |
| 169 | * Need to drop the host lock here; mmc_request_done may call |
| 170 | * back into the driver... |
| 171 | */ |
| 172 | spin_unlock(&host->lock); |
| 173 | mmc_request_done(host->mmc, mrq); |
| 174 | spin_lock(&host->lock); |
| 175 | } |
| 176 | |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 177 | static void mmci_set_mask1(struct mmci_host *host, unsigned int mask) |
| 178 | { |
| 179 | void __iomem *base = host->base; |
| 180 | |
| 181 | if (host->singleirq) { |
| 182 | unsigned int mask0 = readl(base + MMCIMASK0); |
| 183 | |
| 184 | mask0 &= ~MCI_IRQ1MASK; |
| 185 | mask0 |= mask; |
| 186 | |
| 187 | writel(mask0, base + MMCIMASK0); |
| 188 | } |
| 189 | |
| 190 | writel(mask, base + MMCIMASK1); |
| 191 | } |
| 192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | static void mmci_stop_data(struct mmci_host *host) |
| 194 | { |
| 195 | writel(0, host->base + MMCIDATACTRL); |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 196 | mmci_set_mask1(host, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | host->data = NULL; |
| 198 | } |
| 199 | |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 200 | static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data) |
| 201 | { |
| 202 | unsigned int flags = SG_MITER_ATOMIC; |
| 203 | |
| 204 | if (data->flags & MMC_DATA_READ) |
| 205 | flags |= SG_MITER_TO_SG; |
| 206 | else |
| 207 | flags |= SG_MITER_FROM_SG; |
| 208 | |
| 209 | sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags); |
| 210 | } |
| 211 | |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 212 | /* |
| 213 | * All the DMA operation mode stuff goes inside this ifdef. |
| 214 | * This assumes that you have a generic DMA device interface, |
| 215 | * no custom DMA interfaces are supported. |
| 216 | */ |
| 217 | #ifdef CONFIG_DMA_ENGINE |
| 218 | static void __devinit mmci_dma_setup(struct mmci_host *host) |
| 219 | { |
| 220 | struct mmci_platform_data *plat = host->plat; |
| 221 | const char *rxname, *txname; |
| 222 | dma_cap_mask_t mask; |
| 223 | |
| 224 | if (!plat || !plat->dma_filter) { |
| 225 | dev_info(mmc_dev(host->mmc), "no DMA platform data\n"); |
| 226 | return; |
| 227 | } |
| 228 | |
| 229 | /* Try to acquire a generic DMA engine slave channel */ |
| 230 | dma_cap_zero(mask); |
| 231 | dma_cap_set(DMA_SLAVE, mask); |
| 232 | |
| 233 | /* |
| 234 | * If only an RX channel is specified, the driver will |
| 235 | * attempt to use it bidirectionally, however if it is |
| 236 | * is specified but cannot be located, DMA will be disabled. |
| 237 | */ |
| 238 | if (plat->dma_rx_param) { |
| 239 | host->dma_rx_channel = dma_request_channel(mask, |
| 240 | plat->dma_filter, |
| 241 | plat->dma_rx_param); |
| 242 | /* E.g if no DMA hardware is present */ |
| 243 | if (!host->dma_rx_channel) |
| 244 | dev_err(mmc_dev(host->mmc), "no RX DMA channel\n"); |
| 245 | } |
| 246 | |
| 247 | if (plat->dma_tx_param) { |
| 248 | host->dma_tx_channel = dma_request_channel(mask, |
| 249 | plat->dma_filter, |
| 250 | plat->dma_tx_param); |
| 251 | if (!host->dma_tx_channel) |
| 252 | dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n"); |
| 253 | } else { |
| 254 | host->dma_tx_channel = host->dma_rx_channel; |
| 255 | } |
| 256 | |
| 257 | if (host->dma_rx_channel) |
| 258 | rxname = dma_chan_name(host->dma_rx_channel); |
| 259 | else |
| 260 | rxname = "none"; |
| 261 | |
| 262 | if (host->dma_tx_channel) |
| 263 | txname = dma_chan_name(host->dma_tx_channel); |
| 264 | else |
| 265 | txname = "none"; |
| 266 | |
| 267 | dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n", |
| 268 | rxname, txname); |
| 269 | |
| 270 | /* |
| 271 | * Limit the maximum segment size in any SG entry according to |
| 272 | * the parameters of the DMA engine device. |
| 273 | */ |
| 274 | if (host->dma_tx_channel) { |
| 275 | struct device *dev = host->dma_tx_channel->device->dev; |
| 276 | unsigned int max_seg_size = dma_get_max_seg_size(dev); |
| 277 | |
| 278 | if (max_seg_size < host->mmc->max_seg_size) |
| 279 | host->mmc->max_seg_size = max_seg_size; |
| 280 | } |
| 281 | if (host->dma_rx_channel) { |
| 282 | struct device *dev = host->dma_rx_channel->device->dev; |
| 283 | unsigned int max_seg_size = dma_get_max_seg_size(dev); |
| 284 | |
| 285 | if (max_seg_size < host->mmc->max_seg_size) |
| 286 | host->mmc->max_seg_size = max_seg_size; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | /* |
| 291 | * This is used in __devinit or __devexit so inline it |
| 292 | * so it can be discarded. |
| 293 | */ |
| 294 | static inline void mmci_dma_release(struct mmci_host *host) |
| 295 | { |
| 296 | struct mmci_platform_data *plat = host->plat; |
| 297 | |
| 298 | if (host->dma_rx_channel) |
| 299 | dma_release_channel(host->dma_rx_channel); |
| 300 | if (host->dma_tx_channel && plat->dma_tx_param) |
| 301 | dma_release_channel(host->dma_tx_channel); |
| 302 | host->dma_rx_channel = host->dma_tx_channel = NULL; |
| 303 | } |
| 304 | |
| 305 | static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data) |
| 306 | { |
| 307 | struct dma_chan *chan = host->dma_current; |
| 308 | enum dma_data_direction dir; |
| 309 | u32 status; |
| 310 | int i; |
| 311 | |
| 312 | /* Wait up to 1ms for the DMA to complete */ |
| 313 | for (i = 0; ; i++) { |
| 314 | status = readl(host->base + MMCISTATUS); |
| 315 | if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100) |
| 316 | break; |
| 317 | udelay(10); |
| 318 | } |
| 319 | |
| 320 | /* |
| 321 | * Check to see whether we still have some data left in the FIFO - |
| 322 | * this catches DMA controllers which are unable to monitor the |
| 323 | * DMALBREQ and DMALSREQ signals while allowing us to DMA to non- |
| 324 | * contiguous buffers. On TX, we'll get a FIFO underrun error. |
| 325 | */ |
| 326 | if (status & MCI_RXDATAAVLBLMASK) { |
| 327 | dmaengine_terminate_all(chan); |
| 328 | if (!data->error) |
| 329 | data->error = -EIO; |
| 330 | } |
| 331 | |
| 332 | if (data->flags & MMC_DATA_WRITE) { |
| 333 | dir = DMA_TO_DEVICE; |
| 334 | } else { |
| 335 | dir = DMA_FROM_DEVICE; |
| 336 | } |
| 337 | |
| 338 | dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir); |
| 339 | |
| 340 | /* |
| 341 | * Use of DMA with scatter-gather is impossible. |
| 342 | * Give up with DMA and switch back to PIO mode. |
| 343 | */ |
| 344 | if (status & MCI_RXDATAAVLBLMASK) { |
| 345 | dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n"); |
| 346 | mmci_dma_release(host); |
| 347 | } |
| 348 | } |
| 349 | |
| 350 | static void mmci_dma_data_error(struct mmci_host *host) |
| 351 | { |
| 352 | dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n"); |
| 353 | dmaengine_terminate_all(host->dma_current); |
| 354 | } |
| 355 | |
| 356 | static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl) |
| 357 | { |
| 358 | struct variant_data *variant = host->variant; |
| 359 | struct dma_slave_config conf = { |
| 360 | .src_addr = host->phybase + MMCIFIFO, |
| 361 | .dst_addr = host->phybase + MMCIFIFO, |
| 362 | .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES, |
| 363 | .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES, |
| 364 | .src_maxburst = variant->fifohalfsize >> 2, /* # of words */ |
| 365 | .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */ |
| 366 | }; |
| 367 | struct mmc_data *data = host->data; |
| 368 | struct dma_chan *chan; |
| 369 | struct dma_device *device; |
| 370 | struct dma_async_tx_descriptor *desc; |
| 371 | int nr_sg; |
| 372 | |
| 373 | host->dma_current = NULL; |
| 374 | |
| 375 | if (data->flags & MMC_DATA_READ) { |
| 376 | conf.direction = DMA_FROM_DEVICE; |
| 377 | chan = host->dma_rx_channel; |
| 378 | } else { |
| 379 | conf.direction = DMA_TO_DEVICE; |
| 380 | chan = host->dma_tx_channel; |
| 381 | } |
| 382 | |
| 383 | /* If there's no DMA channel, fall back to PIO */ |
| 384 | if (!chan) |
| 385 | return -EINVAL; |
| 386 | |
| 387 | /* If less than or equal to the fifo size, don't bother with DMA */ |
| 388 | if (host->size <= variant->fifosize) |
| 389 | return -EINVAL; |
| 390 | |
| 391 | device = chan->device; |
| 392 | nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, conf.direction); |
| 393 | if (nr_sg == 0) |
| 394 | return -EINVAL; |
| 395 | |
| 396 | dmaengine_slave_config(chan, &conf); |
| 397 | desc = device->device_prep_slave_sg(chan, data->sg, nr_sg, |
| 398 | conf.direction, DMA_CTRL_ACK); |
| 399 | if (!desc) |
| 400 | goto unmap_exit; |
| 401 | |
| 402 | /* Okay, go for it. */ |
| 403 | host->dma_current = chan; |
| 404 | |
| 405 | dev_vdbg(mmc_dev(host->mmc), |
| 406 | "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n", |
| 407 | data->sg_len, data->blksz, data->blocks, data->flags); |
| 408 | dmaengine_submit(desc); |
| 409 | dma_async_issue_pending(chan); |
| 410 | |
| 411 | datactrl |= MCI_DPSM_DMAENABLE; |
| 412 | |
| 413 | /* Trigger the DMA transfer */ |
| 414 | writel(datactrl, host->base + MMCIDATACTRL); |
| 415 | |
| 416 | /* |
| 417 | * Let the MMCI say when the data is ended and it's time |
| 418 | * to fire next DMA request. When that happens, MMCI will |
| 419 | * call mmci_data_end() |
| 420 | */ |
| 421 | writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK, |
| 422 | host->base + MMCIMASK0); |
| 423 | return 0; |
| 424 | |
| 425 | unmap_exit: |
| 426 | dmaengine_terminate_all(chan); |
| 427 | dma_unmap_sg(device->dev, data->sg, data->sg_len, conf.direction); |
| 428 | return -ENOMEM; |
| 429 | } |
| 430 | #else |
| 431 | /* Blank functions if the DMA engine is not available */ |
| 432 | static inline void mmci_dma_setup(struct mmci_host *host) |
| 433 | { |
| 434 | } |
| 435 | |
| 436 | static inline void mmci_dma_release(struct mmci_host *host) |
| 437 | { |
| 438 | } |
| 439 | |
| 440 | static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data) |
| 441 | { |
| 442 | } |
| 443 | |
| 444 | static inline void mmci_dma_data_error(struct mmci_host *host) |
| 445 | { |
| 446 | } |
| 447 | |
| 448 | static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl) |
| 449 | { |
| 450 | return -ENOSYS; |
| 451 | } |
| 452 | #endif |
| 453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | static void mmci_start_data(struct mmci_host *host, struct mmc_data *data) |
| 455 | { |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 456 | struct variant_data *variant = host->variant; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | unsigned int datactrl, timeout, irqmask; |
Russell King | 7b09cda | 2005-07-01 12:02:59 +0100 | [diff] [blame] | 458 | unsigned long long clks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | void __iomem *base; |
Russell King | 3bc87f2 | 2006-08-27 13:51:28 +0100 | [diff] [blame] | 460 | int blksz_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 462 | dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n", |
| 463 | data->blksz, data->blocks, data->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
| 465 | host->data = data; |
Rabin Vincent | 528320d | 2010-07-21 12:49:49 +0100 | [diff] [blame] | 466 | host->size = data->blksz * data->blocks; |
Russell King | 51d4375 | 2011-01-27 10:56:52 +0000 | [diff] [blame] | 467 | data->bytes_xfered = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
Russell King | 7b09cda | 2005-07-01 12:02:59 +0100 | [diff] [blame] | 469 | clks = (unsigned long long)data->timeout_ns * host->cclk; |
| 470 | do_div(clks, 1000000000UL); |
| 471 | |
| 472 | timeout = data->timeout_clks + (unsigned int)clks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
| 474 | base = host->base; |
| 475 | writel(timeout, base + MMCIDATATIMER); |
| 476 | writel(host->size, base + MMCIDATALENGTH); |
| 477 | |
Russell King | 3bc87f2 | 2006-08-27 13:51:28 +0100 | [diff] [blame] | 478 | blksz_bits = ffs(data->blksz) - 1; |
| 479 | BUG_ON(1 << blksz_bits != data->blksz); |
| 480 | |
Philippe Langlais | 1784b15 | 2011-03-25 08:51:52 +0100 | [diff] [blame] | 481 | if (variant->blksz_datactrl16) |
| 482 | datactrl = MCI_DPSM_ENABLE | (data->blksz << 16); |
| 483 | else |
| 484 | datactrl = MCI_DPSM_ENABLE | blksz_bits << 4; |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 485 | |
| 486 | if (data->flags & MMC_DATA_READ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | datactrl |= MCI_DPSM_DIRECTION; |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 488 | |
| 489 | /* |
| 490 | * Attempt to use DMA operation mode, if this |
| 491 | * should fail, fall back to PIO mode |
| 492 | */ |
| 493 | if (!mmci_dma_start_data(host, datactrl)) |
| 494 | return; |
| 495 | |
| 496 | /* IRQ mode, map the SG list for CPU reading/writing */ |
| 497 | mmci_init_sg(host, data); |
| 498 | |
| 499 | if (data->flags & MMC_DATA_READ) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | irqmask = MCI_RXFIFOHALFFULLMASK; |
Russell King | 0425a14 | 2006-02-16 16:48:31 +0000 | [diff] [blame] | 501 | |
| 502 | /* |
Russell King | c4d877c | 2011-01-27 09:50:13 +0000 | [diff] [blame] | 503 | * If we have less than the fifo 'half-full' threshold to |
| 504 | * transfer, trigger a PIO interrupt as soon as any data |
| 505 | * is available. |
Russell King | 0425a14 | 2006-02-16 16:48:31 +0000 | [diff] [blame] | 506 | */ |
Russell King | c4d877c | 2011-01-27 09:50:13 +0000 | [diff] [blame] | 507 | if (host->size < variant->fifohalfsize) |
Russell King | 0425a14 | 2006-02-16 16:48:31 +0000 | [diff] [blame] | 508 | irqmask |= MCI_RXDATAAVLBLMASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | } else { |
| 510 | /* |
| 511 | * We don't actually need to include "FIFO empty" here |
| 512 | * since its implicit in "FIFO half empty". |
| 513 | */ |
| 514 | irqmask = MCI_TXFIFOHALFEMPTYMASK; |
| 515 | } |
| 516 | |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 517 | /* The ST Micro variants has a special bit to enable SDIO */ |
| 518 | if (variant->sdio && host->mmc->card) |
| 519 | if (mmc_card_sdio(host->mmc->card)) |
| 520 | datactrl |= MCI_ST_DPSM_SDIOEN; |
| 521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | writel(datactrl, base + MMCIDATACTRL); |
| 523 | writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0); |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 524 | mmci_set_mask1(host, irqmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | static void |
| 528 | mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c) |
| 529 | { |
| 530 | void __iomem *base = host->base; |
| 531 | |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 532 | dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | cmd->opcode, cmd->arg, cmd->flags); |
| 534 | |
| 535 | if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) { |
| 536 | writel(0, base + MMCICOMMAND); |
| 537 | udelay(1); |
| 538 | } |
| 539 | |
| 540 | c |= cmd->opcode | MCI_CPSM_ENABLE; |
Russell King | e922517 | 2006-02-02 12:23:12 +0000 | [diff] [blame] | 541 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 542 | if (cmd->flags & MMC_RSP_136) |
| 543 | c |= MCI_CPSM_LONGRSP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | c |= MCI_CPSM_RESPONSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | if (/*interrupt*/0) |
| 547 | c |= MCI_CPSM_INTERRUPT; |
| 548 | |
| 549 | host->cmd = cmd; |
| 550 | |
| 551 | writel(cmd->arg, base + MMCIARGUMENT); |
| 552 | writel(c, base + MMCICOMMAND); |
| 553 | } |
| 554 | |
| 555 | static void |
| 556 | mmci_data_irq(struct mmci_host *host, struct mmc_data *data, |
| 557 | unsigned int status) |
| 558 | { |
Linus Walleij | f20f8f21 | 2010-10-19 13:41:24 +0100 | [diff] [blame] | 559 | /* First check for errors */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|MCI_RXOVERRUN)) { |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 561 | u32 remain, success; |
Linus Walleij | f20f8f21 | 2010-10-19 13:41:24 +0100 | [diff] [blame] | 562 | |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 563 | /* Terminate the DMA transfer */ |
| 564 | if (dma_inprogress(host)) |
| 565 | mmci_dma_data_error(host); |
| 566 | |
Russell King | c8afc9d | 2011-02-04 09:19:46 +0000 | [diff] [blame] | 567 | /* |
| 568 | * Calculate how far we are into the transfer. Note that |
| 569 | * the data counter gives the number of bytes transferred |
| 570 | * on the MMC bus, not on the host side. On reads, this |
| 571 | * can be as much as a FIFO-worth of data ahead. This |
| 572 | * matters for FIFO overruns only. |
| 573 | */ |
Linus Walleij | f5a106d | 2011-01-27 17:44:34 +0100 | [diff] [blame] | 574 | remain = readl(host->base + MMCIDATACNT); |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 575 | success = data->blksz * data->blocks - remain; |
| 576 | |
Russell King | c8afc9d | 2011-02-04 09:19:46 +0000 | [diff] [blame] | 577 | dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n", |
| 578 | status, success); |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 579 | if (status & MCI_DATACRCFAIL) { |
| 580 | /* Last block was not successful */ |
Russell King | c8afc9d | 2011-02-04 09:19:46 +0000 | [diff] [blame] | 581 | success -= 1; |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 582 | data->error = -EILSEQ; |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 583 | } else if (status & MCI_DATATIMEOUT) { |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 584 | data->error = -ETIMEDOUT; |
Russell King | c8afc9d | 2011-02-04 09:19:46 +0000 | [diff] [blame] | 585 | } else if (status & MCI_TXUNDERRUN) { |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 586 | data->error = -EIO; |
Russell King | c8afc9d | 2011-02-04 09:19:46 +0000 | [diff] [blame] | 587 | } else if (status & MCI_RXOVERRUN) { |
| 588 | if (success > host->variant->fifosize) |
| 589 | success -= host->variant->fifosize; |
| 590 | else |
| 591 | success = 0; |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 592 | data->error = -EIO; |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 593 | } |
Russell King | 51d4375 | 2011-01-27 10:56:52 +0000 | [diff] [blame] | 594 | data->bytes_xfered = round_down(success, data->blksz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
Linus Walleij | f20f8f21 | 2010-10-19 13:41:24 +0100 | [diff] [blame] | 596 | |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 597 | if (status & MCI_DATABLOCKEND) |
| 598 | dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n"); |
Linus Walleij | f20f8f21 | 2010-10-19 13:41:24 +0100 | [diff] [blame] | 599 | |
Russell King | ccff9b5 | 2011-01-30 21:03:50 +0000 | [diff] [blame] | 600 | if (status & MCI_DATAEND || data->error) { |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 601 | if (dma_inprogress(host)) |
| 602 | mmci_dma_unmap(host, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | mmci_stop_data(host); |
| 604 | |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 605 | if (!data->error) |
| 606 | /* The error clause is handled above, success! */ |
Russell King | 51d4375 | 2011-01-27 10:56:52 +0000 | [diff] [blame] | 607 | data->bytes_xfered = data->blksz * data->blocks; |
Linus Walleij | f20f8f21 | 2010-10-19 13:41:24 +0100 | [diff] [blame] | 608 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | if (!data->stop) { |
| 610 | mmci_request_end(host, data->mrq); |
| 611 | } else { |
| 612 | mmci_start_command(host, data->stop, 0); |
| 613 | } |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | static void |
| 618 | mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd, |
| 619 | unsigned int status) |
| 620 | { |
| 621 | void __iomem *base = host->base; |
| 622 | |
| 623 | host->cmd = NULL; |
| 624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | if (status & MCI_CMDTIMEOUT) { |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 626 | cmd->error = -ETIMEDOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) { |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 628 | cmd->error = -EILSEQ; |
Russell King - ARM Linux | 9047b43 | 2011-01-11 16:35:56 +0000 | [diff] [blame] | 629 | } else { |
| 630 | cmd->resp[0] = readl(base + MMCIRESPONSE0); |
| 631 | cmd->resp[1] = readl(base + MMCIRESPONSE1); |
| 632 | cmd->resp[2] = readl(base + MMCIRESPONSE2); |
| 633 | cmd->resp[3] = readl(base + MMCIRESPONSE3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | } |
| 635 | |
Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 636 | if (!cmd->data || cmd->error) { |
Russell King | e47c222 | 2007-01-08 16:42:51 +0000 | [diff] [blame] | 637 | if (host->data) |
| 638 | mmci_stop_data(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | mmci_request_end(host, cmd->mrq); |
| 640 | } else if (!(cmd->data->flags & MMC_DATA_READ)) { |
| 641 | mmci_start_data(host, cmd->data); |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain) |
| 646 | { |
| 647 | void __iomem *base = host->base; |
| 648 | char *ptr = buffer; |
| 649 | u32 status; |
Linus Walleij | 26eed9a | 2008-04-26 23:39:44 +0100 | [diff] [blame] | 650 | int host_remain = host->size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | |
| 652 | do { |
Linus Walleij | 26eed9a | 2008-04-26 23:39:44 +0100 | [diff] [blame] | 653 | int count = host_remain - (readl(base + MMCIFIFOCNT) << 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | if (count > remain) |
| 656 | count = remain; |
| 657 | |
| 658 | if (count <= 0) |
| 659 | break; |
| 660 | |
| 661 | readsl(base + MMCIFIFO, ptr, count >> 2); |
| 662 | |
| 663 | ptr += count; |
| 664 | remain -= count; |
Linus Walleij | 26eed9a | 2008-04-26 23:39:44 +0100 | [diff] [blame] | 665 | host_remain -= count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
| 667 | if (remain == 0) |
| 668 | break; |
| 669 | |
| 670 | status = readl(base + MMCISTATUS); |
| 671 | } while (status & MCI_RXDATAAVLBL); |
| 672 | |
| 673 | return ptr - buffer; |
| 674 | } |
| 675 | |
| 676 | static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status) |
| 677 | { |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 678 | struct variant_data *variant = host->variant; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | void __iomem *base = host->base; |
| 680 | char *ptr = buffer; |
| 681 | |
| 682 | do { |
| 683 | unsigned int count, maxcnt; |
| 684 | |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 685 | maxcnt = status & MCI_TXFIFOEMPTY ? |
| 686 | variant->fifosize : variant->fifohalfsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | count = min(remain, maxcnt); |
| 688 | |
Linus Walleij | 3417780 | 2010-10-19 12:43:58 +0100 | [diff] [blame] | 689 | /* |
| 690 | * The ST Micro variant for SDIO transfer sizes |
| 691 | * less then 8 bytes should have clock H/W flow |
| 692 | * control disabled. |
| 693 | */ |
| 694 | if (variant->sdio && |
| 695 | mmc_card_sdio(host->mmc->card)) { |
| 696 | if (count < 8) |
| 697 | writel(readl(host->base + MMCICLOCK) & |
| 698 | ~variant->clkreg_enable, |
| 699 | host->base + MMCICLOCK); |
| 700 | else |
| 701 | writel(readl(host->base + MMCICLOCK) | |
| 702 | variant->clkreg_enable, |
| 703 | host->base + MMCICLOCK); |
| 704 | } |
| 705 | |
| 706 | /* |
| 707 | * SDIO especially may want to send something that is |
| 708 | * not divisible by 4 (as opposed to card sectors |
| 709 | * etc), and the FIFO only accept full 32-bit writes. |
| 710 | * So compensate by adding +3 on the count, a single |
| 711 | * byte become a 32bit write, 7 bytes will be two |
| 712 | * 32bit writes etc. |
| 713 | */ |
| 714 | writesl(base + MMCIFIFO, ptr, (count + 3) >> 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | |
| 716 | ptr += count; |
| 717 | remain -= count; |
| 718 | |
| 719 | if (remain == 0) |
| 720 | break; |
| 721 | |
| 722 | status = readl(base + MMCISTATUS); |
| 723 | } while (status & MCI_TXFIFOHALFEMPTY); |
| 724 | |
| 725 | return ptr - buffer; |
| 726 | } |
| 727 | |
| 728 | /* |
| 729 | * PIO data transfer IRQ handler. |
| 730 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 731 | static irqreturn_t mmci_pio_irq(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | { |
| 733 | struct mmci_host *host = dev_id; |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 734 | struct sg_mapping_iter *sg_miter = &host->sg_miter; |
Rabin Vincent | 8301bb6 | 2010-08-09 12:57:30 +0100 | [diff] [blame] | 735 | struct variant_data *variant = host->variant; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | void __iomem *base = host->base; |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 737 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | u32 status; |
| 739 | |
| 740 | status = readl(base + MMCISTATUS); |
| 741 | |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 742 | dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 744 | local_irq_save(flags); |
| 745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | unsigned int remain, len; |
| 748 | char *buffer; |
| 749 | |
| 750 | /* |
| 751 | * For write, we only need to test the half-empty flag |
| 752 | * here - if the FIFO is completely empty, then by |
| 753 | * definition it is more than half empty. |
| 754 | * |
| 755 | * For read, check for data available. |
| 756 | */ |
| 757 | if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL))) |
| 758 | break; |
| 759 | |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 760 | if (!sg_miter_next(sg_miter)) |
| 761 | break; |
| 762 | |
| 763 | buffer = sg_miter->addr; |
| 764 | remain = sg_miter->length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
| 766 | len = 0; |
| 767 | if (status & MCI_RXACTIVE) |
| 768 | len = mmci_pio_read(host, buffer, remain); |
| 769 | if (status & MCI_TXACTIVE) |
| 770 | len = mmci_pio_write(host, buffer, remain, status); |
| 771 | |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 772 | sg_miter->consumed = len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | host->size -= len; |
| 775 | remain -= len; |
| 776 | |
| 777 | if (remain) |
| 778 | break; |
| 779 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | status = readl(base + MMCISTATUS); |
| 781 | } while (1); |
| 782 | |
Rabin Vincent | 4ce1d6c | 2010-07-21 12:44:58 +0100 | [diff] [blame] | 783 | sg_miter_stop(sg_miter); |
| 784 | |
| 785 | local_irq_restore(flags); |
| 786 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | /* |
Russell King | c4d877c | 2011-01-27 09:50:13 +0000 | [diff] [blame] | 788 | * If we have less than the fifo 'half-full' threshold to transfer, |
| 789 | * trigger a PIO interrupt as soon as any data is available. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | */ |
Russell King | c4d877c | 2011-01-27 09:50:13 +0000 | [diff] [blame] | 791 | if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize) |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 792 | mmci_set_mask1(host, MCI_RXDATAAVLBLMASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
| 794 | /* |
| 795 | * If we run out of data, disable the data IRQs; this |
| 796 | * prevents a race where the FIFO becomes empty before |
| 797 | * the chip itself has disabled the data path, and |
| 798 | * stops us racing with our data end IRQ. |
| 799 | */ |
| 800 | if (host->size == 0) { |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 801 | mmci_set_mask1(host, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0); |
| 803 | } |
| 804 | |
| 805 | return IRQ_HANDLED; |
| 806 | } |
| 807 | |
| 808 | /* |
| 809 | * Handle completion of command and data transfers. |
| 810 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 811 | static irqreturn_t mmci_irq(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | { |
| 813 | struct mmci_host *host = dev_id; |
| 814 | u32 status; |
| 815 | int ret = 0; |
| 816 | |
| 817 | spin_lock(&host->lock); |
| 818 | |
| 819 | do { |
| 820 | struct mmc_command *cmd; |
| 821 | struct mmc_data *data; |
| 822 | |
| 823 | status = readl(host->base + MMCISTATUS); |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 824 | |
| 825 | if (host->singleirq) { |
| 826 | if (status & readl(host->base + MMCIMASK1)) |
| 827 | mmci_pio_irq(irq, dev_id); |
| 828 | |
| 829 | status &= ~MCI_IRQ1MASK; |
| 830 | } |
| 831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | status &= readl(host->base + MMCIMASK0); |
| 833 | writel(status, host->base + MMCICLEAR); |
| 834 | |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 835 | dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | |
| 837 | data = host->data; |
| 838 | if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN| |
| 839 | MCI_RXOVERRUN|MCI_DATAEND|MCI_DATABLOCKEND) && data) |
| 840 | mmci_data_irq(host, data, status); |
| 841 | |
| 842 | cmd = host->cmd; |
| 843 | if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd) |
| 844 | mmci_cmd_irq(host, cmd, status); |
| 845 | |
| 846 | ret = 1; |
| 847 | } while (status); |
| 848 | |
| 849 | spin_unlock(&host->lock); |
| 850 | |
| 851 | return IRQ_RETVAL(ret); |
| 852 | } |
| 853 | |
| 854 | static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq) |
| 855 | { |
| 856 | struct mmci_host *host = mmc_priv(mmc); |
Linus Walleij | 9e94302 | 2008-10-24 21:17:50 +0100 | [diff] [blame] | 857 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | |
| 859 | WARN_ON(host->mrq != NULL); |
| 860 | |
Nicolas Pitre | 019a5f5 | 2007-10-11 01:06:03 -0400 | [diff] [blame] | 861 | if (mrq->data && !is_power_of_2(mrq->data->blksz)) { |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 862 | dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n", |
| 863 | mrq->data->blksz); |
Pierre Ossman | 255d01a | 2007-07-24 20:38:53 +0200 | [diff] [blame] | 864 | mrq->cmd->error = -EINVAL; |
| 865 | mmc_request_done(mmc, mrq); |
| 866 | return; |
| 867 | } |
| 868 | |
Linus Walleij | 9e94302 | 2008-10-24 21:17:50 +0100 | [diff] [blame] | 869 | spin_lock_irqsave(&host->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
| 871 | host->mrq = mrq; |
| 872 | |
| 873 | if (mrq->data && mrq->data->flags & MMC_DATA_READ) |
| 874 | mmci_start_data(host, mrq->data); |
| 875 | |
| 876 | mmci_start_command(host, mrq->cmd, 0); |
| 877 | |
Linus Walleij | 9e94302 | 2008-10-24 21:17:50 +0100 | [diff] [blame] | 878 | spin_unlock_irqrestore(&host->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
| 882 | { |
| 883 | struct mmci_host *host = mmc_priv(mmc); |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 884 | u32 pwr = 0; |
| 885 | unsigned long flags; |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 886 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | switch (ios->power_mode) { |
| 889 | case MMC_POWER_OFF: |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 890 | if (host->vcc) |
| 891 | ret = mmc_regulator_set_ocr(mmc, host->vcc, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | break; |
| 893 | case MMC_POWER_UP: |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 894 | if (host->vcc) { |
| 895 | ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd); |
| 896 | if (ret) { |
| 897 | dev_err(mmc_dev(mmc), "unable to set OCR\n"); |
| 898 | /* |
| 899 | * The .set_ios() function in the mmc_host_ops |
| 900 | * struct return void, and failing to set the |
| 901 | * power should be rare so we print an error |
| 902 | * and return here. |
| 903 | */ |
| 904 | return; |
| 905 | } |
| 906 | } |
Rabin Vincent | bb8f563 | 2010-07-21 12:53:57 +0100 | [diff] [blame] | 907 | if (host->plat->vdd_handler) |
| 908 | pwr |= host->plat->vdd_handler(mmc_dev(mmc), ios->vdd, |
| 909 | ios->power_mode); |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 910 | /* The ST version does not have this, fall through to POWER_ON */ |
Linus Walleij | f17a1f0 | 2009-08-04 01:01:02 +0100 | [diff] [blame] | 911 | if (host->hw_designer != AMBA_VENDOR_ST) { |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 912 | pwr |= MCI_PWR_UP; |
| 913 | break; |
| 914 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | case MMC_POWER_ON: |
| 916 | pwr |= MCI_PWR_ON; |
| 917 | break; |
| 918 | } |
| 919 | |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 920 | if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) { |
Linus Walleij | f17a1f0 | 2009-08-04 01:01:02 +0100 | [diff] [blame] | 921 | if (host->hw_designer != AMBA_VENDOR_ST) |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 922 | pwr |= MCI_ROD; |
| 923 | else { |
| 924 | /* |
| 925 | * The ST Micro variant use the ROD bit for something |
| 926 | * else and only has OD (Open Drain). |
| 927 | */ |
| 928 | pwr |= MCI_OD; |
| 929 | } |
| 930 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 932 | spin_lock_irqsave(&host->lock, flags); |
| 933 | |
| 934 | mmci_set_clkreg(host, ios->clock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | |
| 936 | if (host->pwr != pwr) { |
| 937 | host->pwr = pwr; |
| 938 | writel(pwr, host->base + MMCIPOWER); |
| 939 | } |
Linus Walleij | a6a6464 | 2009-09-14 12:56:14 +0100 | [diff] [blame] | 940 | |
| 941 | spin_unlock_irqrestore(&host->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | } |
| 943 | |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 944 | static int mmci_get_ro(struct mmc_host *mmc) |
| 945 | { |
| 946 | struct mmci_host *host = mmc_priv(mmc); |
| 947 | |
| 948 | if (host->gpio_wp == -ENOSYS) |
| 949 | return -ENOSYS; |
| 950 | |
Linus Walleij | 18a06301 | 2010-09-12 12:56:44 +0100 | [diff] [blame] | 951 | return gpio_get_value_cansleep(host->gpio_wp); |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | static int mmci_get_cd(struct mmc_host *mmc) |
| 955 | { |
| 956 | struct mmci_host *host = mmc_priv(mmc); |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame] | 957 | struct mmci_platform_data *plat = host->plat; |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 958 | unsigned int status; |
| 959 | |
Rabin Vincent | 4b8caec | 2010-08-09 12:56:40 +0100 | [diff] [blame] | 960 | if (host->gpio_cd == -ENOSYS) { |
| 961 | if (!plat->status) |
| 962 | return 1; /* Assume always present */ |
| 963 | |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame] | 964 | status = plat->status(mmc_dev(host->mmc)); |
Rabin Vincent | 4b8caec | 2010-08-09 12:56:40 +0100 | [diff] [blame] | 965 | } else |
Linus Walleij | 18a06301 | 2010-09-12 12:56:44 +0100 | [diff] [blame] | 966 | status = !!gpio_get_value_cansleep(host->gpio_cd) |
| 967 | ^ plat->cd_invert; |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 968 | |
Russell King | 74bc809 | 2010-07-29 15:58:59 +0100 | [diff] [blame] | 969 | /* |
| 970 | * Use positive logic throughout - status is zero for no card, |
| 971 | * non-zero for card inserted. |
| 972 | */ |
| 973 | return status; |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 974 | } |
| 975 | |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 976 | static irqreturn_t mmci_cd_irq(int irq, void *dev_id) |
| 977 | { |
| 978 | struct mmci_host *host = dev_id; |
| 979 | |
| 980 | mmc_detect_change(host->mmc, msecs_to_jiffies(500)); |
| 981 | |
| 982 | return IRQ_HANDLED; |
| 983 | } |
| 984 | |
David Brownell | ab7aefd | 2006-11-12 17:55:30 -0800 | [diff] [blame] | 985 | static const struct mmc_host_ops mmci_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | .request = mmci_request, |
| 987 | .set_ios = mmci_set_ios, |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 988 | .get_ro = mmci_get_ro, |
| 989 | .get_cd = mmci_get_cd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | }; |
| 991 | |
Russell King | aa25afa | 2011-02-19 15:55:00 +0000 | [diff] [blame] | 992 | static int __devinit mmci_probe(struct amba_device *dev, |
| 993 | const struct amba_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | { |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 995 | struct mmci_platform_data *plat = dev->dev.platform_data; |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 996 | struct variant_data *variant = id->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | struct mmci_host *host; |
| 998 | struct mmc_host *mmc; |
| 999 | int ret; |
| 1000 | |
| 1001 | /* must have platform data */ |
| 1002 | if (!plat) { |
| 1003 | ret = -EINVAL; |
| 1004 | goto out; |
| 1005 | } |
| 1006 | |
| 1007 | ret = amba_request_regions(dev, DRIVER_NAME); |
| 1008 | if (ret) |
| 1009 | goto out; |
| 1010 | |
| 1011 | mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev); |
| 1012 | if (!mmc) { |
| 1013 | ret = -ENOMEM; |
| 1014 | goto rel_regions; |
| 1015 | } |
| 1016 | |
| 1017 | host = mmc_priv(mmc); |
Rabin Vincent | 4ea580f | 2009-04-17 08:44:19 +0530 | [diff] [blame] | 1018 | host->mmc = mmc; |
Russell King | 012b7d3 | 2009-07-09 15:13:56 +0100 | [diff] [blame] | 1019 | |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1020 | host->gpio_wp = -ENOSYS; |
| 1021 | host->gpio_cd = -ENOSYS; |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1022 | host->gpio_cd_irq = -1; |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1023 | |
Russell King | 012b7d3 | 2009-07-09 15:13:56 +0100 | [diff] [blame] | 1024 | host->hw_designer = amba_manf(dev); |
| 1025 | host->hw_revision = amba_rev(dev); |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 1026 | dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer); |
| 1027 | dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision); |
Russell King | 012b7d3 | 2009-07-09 15:13:56 +0100 | [diff] [blame] | 1028 | |
Russell King | ee569c4 | 2008-11-30 17:38:14 +0000 | [diff] [blame] | 1029 | host->clk = clk_get(&dev->dev, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | if (IS_ERR(host->clk)) { |
| 1031 | ret = PTR_ERR(host->clk); |
| 1032 | host->clk = NULL; |
| 1033 | goto host_free; |
| 1034 | } |
| 1035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | ret = clk_enable(host->clk); |
| 1037 | if (ret) |
Russell King | a8d3584 | 2006-01-03 18:41:37 +0000 | [diff] [blame] | 1038 | goto clk_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | host->plat = plat; |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 1041 | host->variant = variant; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | host->mclk = clk_get_rate(host->clk); |
Linus Walleij | c8df9a5 | 2008-04-29 09:34:07 +0100 | [diff] [blame] | 1043 | /* |
| 1044 | * According to the spec, mclk is max 100 MHz, |
| 1045 | * so we try to adjust the clock down to this, |
| 1046 | * (if possible). |
| 1047 | */ |
| 1048 | if (host->mclk > 100000000) { |
| 1049 | ret = clk_set_rate(host->clk, 100000000); |
| 1050 | if (ret < 0) |
| 1051 | goto clk_disable; |
| 1052 | host->mclk = clk_get_rate(host->clk); |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 1053 | dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n", |
| 1054 | host->mclk); |
Linus Walleij | c8df9a5 | 2008-04-29 09:34:07 +0100 | [diff] [blame] | 1055 | } |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 1056 | host->phybase = dev->res.start; |
Linus Walleij | dc890c2 | 2009-06-07 23:27:31 +0100 | [diff] [blame] | 1057 | host->base = ioremap(dev->res.start, resource_size(&dev->res)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | if (!host->base) { |
| 1059 | ret = -ENOMEM; |
| 1060 | goto clk_disable; |
| 1061 | } |
| 1062 | |
| 1063 | mmc->ops = &mmci_ops; |
Linus Walleij | 7f294e4 | 2011-07-08 09:57:15 +0100 | [diff] [blame^] | 1064 | /* |
| 1065 | * The ARM and ST versions of the block have slightly different |
| 1066 | * clock divider equations which means that the minimum divider |
| 1067 | * differs too. |
| 1068 | */ |
| 1069 | if (variant->st_clkdiv) |
| 1070 | mmc->f_min = DIV_ROUND_UP(host->mclk, 257); |
| 1071 | else |
| 1072 | mmc->f_min = DIV_ROUND_UP(host->mclk, 512); |
Linus Walleij | 808d97c | 2010-04-08 07:39:38 +0100 | [diff] [blame] | 1073 | /* |
| 1074 | * If the platform data supplies a maximum operating |
| 1075 | * frequency, this takes precedence. Else, we fall back |
| 1076 | * to using the module parameter, which has a (low) |
| 1077 | * default value in case it is not specified. Either |
| 1078 | * value must not exceed the clock rate into the block, |
| 1079 | * of course. |
| 1080 | */ |
| 1081 | if (plat->f_max) |
| 1082 | mmc->f_max = min(host->mclk, plat->f_max); |
| 1083 | else |
| 1084 | mmc->f_max = min(host->mclk, fmax); |
Linus Walleij | 64de028 | 2010-02-19 01:09:10 +0100 | [diff] [blame] | 1085 | dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max); |
| 1086 | |
Linus Walleij | 34e84f3 | 2009-09-22 14:41:40 +0100 | [diff] [blame] | 1087 | #ifdef CONFIG_REGULATOR |
| 1088 | /* If we're using the regulator framework, try to fetch a regulator */ |
| 1089 | host->vcc = regulator_get(&dev->dev, "vmmc"); |
| 1090 | if (IS_ERR(host->vcc)) |
| 1091 | host->vcc = NULL; |
| 1092 | else { |
| 1093 | int mask = mmc_regulator_get_ocrmask(host->vcc); |
| 1094 | |
| 1095 | if (mask < 0) |
| 1096 | dev_err(&dev->dev, "error getting OCR mask (%d)\n", |
| 1097 | mask); |
| 1098 | else { |
| 1099 | host->mmc->ocr_avail = (u32) mask; |
| 1100 | if (plat->ocr_mask) |
| 1101 | dev_warn(&dev->dev, |
| 1102 | "Provided ocr_mask/setpower will not be used " |
| 1103 | "(using regulator instead)\n"); |
| 1104 | } |
| 1105 | } |
| 1106 | #endif |
| 1107 | /* Fall back to platform data if no regulator is found */ |
| 1108 | if (host->vcc == NULL) |
| 1109 | mmc->ocr_avail = plat->ocr_mask; |
Linus Walleij | 9e6c82c | 2009-09-14 12:57:11 +0100 | [diff] [blame] | 1110 | mmc->caps = plat->capabilities; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | |
| 1112 | /* |
| 1113 | * We can do SGIO |
| 1114 | */ |
Martin K. Petersen | a36274e | 2010-09-10 01:33:59 -0400 | [diff] [blame] | 1115 | mmc->max_segs = NR_SG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
| 1117 | /* |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 1118 | * Since only a certain number of bits are valid in the data length |
| 1119 | * register, we must ensure that we don't exceed 2^num-1 bytes in a |
| 1120 | * single request. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | */ |
Rabin Vincent | 08458ef | 2010-07-21 12:55:59 +0100 | [diff] [blame] | 1122 | mmc->max_req_size = (1 << variant->datalength_bits) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | |
| 1124 | /* |
| 1125 | * Set the maximum segment size. Since we aren't doing DMA |
| 1126 | * (yet) we are only limited by the data length register. |
| 1127 | */ |
Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 1128 | mmc->max_seg_size = mmc->max_req_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | |
Pierre Ossman | fe4a3c7 | 2006-11-21 17:54:23 +0100 | [diff] [blame] | 1130 | /* |
| 1131 | * Block size can be up to 2048 bytes, but must be a power of two. |
| 1132 | */ |
| 1133 | mmc->max_blk_size = 2048; |
| 1134 | |
Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 1135 | /* |
| 1136 | * No limit on the number of blocks transferred. |
| 1137 | */ |
| 1138 | mmc->max_blk_count = mmc->max_req_size; |
| 1139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | spin_lock_init(&host->lock); |
| 1141 | |
| 1142 | writel(0, host->base + MMCIMASK0); |
| 1143 | writel(0, host->base + MMCIMASK1); |
| 1144 | writel(0xfff, host->base + MMCICLEAR); |
| 1145 | |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1146 | if (gpio_is_valid(plat->gpio_cd)) { |
| 1147 | ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)"); |
| 1148 | if (ret == 0) |
| 1149 | ret = gpio_direction_input(plat->gpio_cd); |
| 1150 | if (ret == 0) |
| 1151 | host->gpio_cd = plat->gpio_cd; |
| 1152 | else if (ret != -ENOSYS) |
| 1153 | goto err_gpio_cd; |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1154 | |
Linus Walleij | 17ee083 | 2011-05-05 17:23:10 +0100 | [diff] [blame] | 1155 | /* |
| 1156 | * A gpio pin that will detect cards when inserted and removed |
| 1157 | * will most likely want to trigger on the edges if it is |
| 1158 | * 0 when ejected and 1 when inserted (or mutatis mutandis |
| 1159 | * for the inverted case) so we request triggers on both |
| 1160 | * edges. |
| 1161 | */ |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1162 | ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd), |
Linus Walleij | 17ee083 | 2011-05-05 17:23:10 +0100 | [diff] [blame] | 1163 | mmci_cd_irq, |
| 1164 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, |
| 1165 | DRIVER_NAME " (cd)", host); |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1166 | if (ret >= 0) |
| 1167 | host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd); |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1168 | } |
| 1169 | if (gpio_is_valid(plat->gpio_wp)) { |
| 1170 | ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)"); |
| 1171 | if (ret == 0) |
| 1172 | ret = gpio_direction_input(plat->gpio_wp); |
| 1173 | if (ret == 0) |
| 1174 | host->gpio_wp = plat->gpio_wp; |
| 1175 | else if (ret != -ENOSYS) |
| 1176 | goto err_gpio_wp; |
| 1177 | } |
| 1178 | |
Rabin Vincent | 4b8caec | 2010-08-09 12:56:40 +0100 | [diff] [blame] | 1179 | if ((host->plat->status || host->gpio_cd != -ENOSYS) |
| 1180 | && host->gpio_cd_irq < 0) |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1181 | mmc->caps |= MMC_CAP_NEEDS_POLL; |
| 1182 | |
Thomas Gleixner | dace145 | 2006-07-01 19:29:38 -0700 | [diff] [blame] | 1183 | ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | if (ret) |
| 1185 | goto unmap; |
| 1186 | |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 1187 | if (dev->irq[1] == NO_IRQ) |
| 1188 | host->singleirq = true; |
| 1189 | else { |
| 1190 | ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED, |
| 1191 | DRIVER_NAME " (pio)", host); |
| 1192 | if (ret) |
| 1193 | goto irq0_free; |
| 1194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | |
Linus Walleij | 8cb2815 | 2011-01-24 15:22:13 +0100 | [diff] [blame] | 1196 | writel(MCI_IRQENABLE, host->base + MMCIMASK0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | |
| 1198 | amba_set_drvdata(dev, mmc); |
| 1199 | |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 1200 | dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n", |
| 1201 | mmc_hostname(mmc), amba_part(dev), amba_manf(dev), |
| 1202 | amba_rev(dev), (unsigned long long)dev->res.start, |
| 1203 | dev->irq[0], dev->irq[1]); |
| 1204 | |
| 1205 | mmci_dma_setup(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Russell King | 8c11a94 | 2010-12-28 19:40:40 +0000 | [diff] [blame] | 1207 | mmc_add_host(mmc); |
| 1208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | return 0; |
| 1210 | |
| 1211 | irq0_free: |
| 1212 | free_irq(dev->irq[0], host); |
| 1213 | unmap: |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1214 | if (host->gpio_wp != -ENOSYS) |
| 1215 | gpio_free(host->gpio_wp); |
| 1216 | err_gpio_wp: |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1217 | if (host->gpio_cd_irq >= 0) |
| 1218 | free_irq(host->gpio_cd_irq, host); |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1219 | if (host->gpio_cd != -ENOSYS) |
| 1220 | gpio_free(host->gpio_cd); |
| 1221 | err_gpio_cd: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | iounmap(host->base); |
| 1223 | clk_disable: |
| 1224 | clk_disable(host->clk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | clk_free: |
| 1226 | clk_put(host->clk); |
| 1227 | host_free: |
| 1228 | mmc_free_host(mmc); |
| 1229 | rel_regions: |
| 1230 | amba_release_regions(dev); |
| 1231 | out: |
| 1232 | return ret; |
| 1233 | } |
| 1234 | |
Linus Walleij | 6dc4a47 | 2009-03-07 00:23:52 +0100 | [diff] [blame] | 1235 | static int __devexit mmci_remove(struct amba_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | { |
| 1237 | struct mmc_host *mmc = amba_get_drvdata(dev); |
| 1238 | |
| 1239 | amba_set_drvdata(dev, NULL); |
| 1240 | |
| 1241 | if (mmc) { |
| 1242 | struct mmci_host *host = mmc_priv(mmc); |
| 1243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | mmc_remove_host(mmc); |
| 1245 | |
| 1246 | writel(0, host->base + MMCIMASK0); |
| 1247 | writel(0, host->base + MMCIMASK1); |
| 1248 | |
| 1249 | writel(0, host->base + MMCICOMMAND); |
| 1250 | writel(0, host->base + MMCIDATACTRL); |
| 1251 | |
Russell King | c8ebae3 | 2011-01-11 19:35:53 +0000 | [diff] [blame] | 1252 | mmci_dma_release(host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | free_irq(dev->irq[0], host); |
Linus Walleij | 2686b4b | 2010-10-19 12:39:48 +0100 | [diff] [blame] | 1254 | if (!host->singleirq) |
| 1255 | free_irq(dev->irq[1], host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1257 | if (host->gpio_wp != -ENOSYS) |
| 1258 | gpio_free(host->gpio_wp); |
Rabin Vincent | 148b8b3 | 2010-08-09 12:55:48 +0100 | [diff] [blame] | 1259 | if (host->gpio_cd_irq >= 0) |
| 1260 | free_irq(host->gpio_cd_irq, host); |
Russell King | 8900144 | 2009-07-09 15:16:07 +0100 | [diff] [blame] | 1261 | if (host->gpio_cd != -ENOSYS) |
| 1262 | gpio_free(host->gpio_cd); |
| 1263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | iounmap(host->base); |
| 1265 | clk_disable(host->clk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | clk_put(host->clk); |
| 1267 | |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 1268 | if (host->vcc) |
| 1269 | mmc_regulator_set_ocr(mmc, host->vcc, 0); |
Linus Walleij | 34e84f3 | 2009-09-22 14:41:40 +0100 | [diff] [blame] | 1270 | regulator_put(host->vcc); |
| 1271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1272 | mmc_free_host(mmc); |
| 1273 | |
| 1274 | amba_release_regions(dev); |
| 1275 | } |
| 1276 | |
| 1277 | return 0; |
| 1278 | } |
| 1279 | |
| 1280 | #ifdef CONFIG_PM |
Pavel Machek | e5378ca | 2005-04-16 15:25:29 -0700 | [diff] [blame] | 1281 | static int mmci_suspend(struct amba_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1282 | { |
| 1283 | struct mmc_host *mmc = amba_get_drvdata(dev); |
| 1284 | int ret = 0; |
| 1285 | |
| 1286 | if (mmc) { |
| 1287 | struct mmci_host *host = mmc_priv(mmc); |
| 1288 | |
Matt Fleming | 1a13f8f | 2010-05-26 14:42:08 -0700 | [diff] [blame] | 1289 | ret = mmc_suspend_host(mmc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | if (ret == 0) |
| 1291 | writel(0, host->base + MMCIMASK0); |
| 1292 | } |
| 1293 | |
| 1294 | return ret; |
| 1295 | } |
| 1296 | |
| 1297 | static int mmci_resume(struct amba_device *dev) |
| 1298 | { |
| 1299 | struct mmc_host *mmc = amba_get_drvdata(dev); |
| 1300 | int ret = 0; |
| 1301 | |
| 1302 | if (mmc) { |
| 1303 | struct mmci_host *host = mmc_priv(mmc); |
| 1304 | |
| 1305 | writel(MCI_IRQENABLE, host->base + MMCIMASK0); |
| 1306 | |
| 1307 | ret = mmc_resume_host(mmc); |
| 1308 | } |
| 1309 | |
| 1310 | return ret; |
| 1311 | } |
| 1312 | #else |
| 1313 | #define mmci_suspend NULL |
| 1314 | #define mmci_resume NULL |
| 1315 | #endif |
| 1316 | |
| 1317 | static struct amba_id mmci_ids[] = { |
| 1318 | { |
| 1319 | .id = 0x00041180, |
Pawel Moll | 768fbc1 | 2011-03-11 17:18:07 +0000 | [diff] [blame] | 1320 | .mask = 0xff0fffff, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 1321 | .data = &variant_arm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | }, |
| 1323 | { |
Pawel Moll | 768fbc1 | 2011-03-11 17:18:07 +0000 | [diff] [blame] | 1324 | .id = 0x01041180, |
| 1325 | .mask = 0xff0fffff, |
| 1326 | .data = &variant_arm_extended_fifo, |
| 1327 | }, |
| 1328 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | .id = 0x00041181, |
| 1330 | .mask = 0x000fffff, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 1331 | .data = &variant_arm, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | }, |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 1333 | /* ST Micro variants */ |
| 1334 | { |
| 1335 | .id = 0x00180180, |
| 1336 | .mask = 0x00ffffff, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 1337 | .data = &variant_u300, |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 1338 | }, |
| 1339 | { |
| 1340 | .id = 0x00280180, |
| 1341 | .mask = 0x00ffffff, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 1342 | .data = &variant_u300, |
| 1343 | }, |
| 1344 | { |
| 1345 | .id = 0x00480180, |
Philippe Langlais | 1784b15 | 2011-03-25 08:51:52 +0100 | [diff] [blame] | 1346 | .mask = 0xf0ffffff, |
Rabin Vincent | 4956e10 | 2010-07-21 12:54:40 +0100 | [diff] [blame] | 1347 | .data = &variant_ux500, |
Linus Walleij | cc30d60 | 2009-01-04 15:18:54 +0100 | [diff] [blame] | 1348 | }, |
Philippe Langlais | 1784b15 | 2011-03-25 08:51:52 +0100 | [diff] [blame] | 1349 | { |
| 1350 | .id = 0x10480180, |
| 1351 | .mask = 0xf0ffffff, |
| 1352 | .data = &variant_ux500v2, |
| 1353 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | { 0, 0 }, |
| 1355 | }; |
| 1356 | |
| 1357 | static struct amba_driver mmci_driver = { |
| 1358 | .drv = { |
| 1359 | .name = DRIVER_NAME, |
| 1360 | }, |
| 1361 | .probe = mmci_probe, |
Linus Walleij | 6dc4a47 | 2009-03-07 00:23:52 +0100 | [diff] [blame] | 1362 | .remove = __devexit_p(mmci_remove), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | .suspend = mmci_suspend, |
| 1364 | .resume = mmci_resume, |
| 1365 | .id_table = mmci_ids, |
| 1366 | }; |
| 1367 | |
| 1368 | static int __init mmci_init(void) |
| 1369 | { |
| 1370 | return amba_driver_register(&mmci_driver); |
| 1371 | } |
| 1372 | |
| 1373 | static void __exit mmci_exit(void) |
| 1374 | { |
| 1375 | amba_driver_unregister(&mmci_driver); |
| 1376 | } |
| 1377 | |
| 1378 | module_init(mmci_init); |
| 1379 | module_exit(mmci_exit); |
| 1380 | module_param(fmax, uint, 0444); |
| 1381 | |
| 1382 | MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver"); |
| 1383 | MODULE_LICENSE("GPL"); |