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