| Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 2 | /* |
| Pierre Ossman | 70f1048 | 2007-07-11 20:04:50 +0200 | [diff] [blame] | 3 | * linux/drivers/mmc/host/au1xmmc.c - AU1XX0 MMC driver |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2005, Advanced Micro Devices, Inc. |
| 6 | * |
| 7 | * Developed with help from the 2.4.30 MMC AU1XXX controller including |
| 8 | * the following copyright notices: |
| 9 | * Copyright (c) 2003-2004 Embedded Edge, LLC. |
| 10 | * Portions Copyright (C) 2002 Embedix, Inc |
| 11 | * Copyright 2002 Hewlett-Packard Company |
| 12 | |
| 13 | * 2.6 version of this driver inspired by: |
| 14 | * (drivers/mmc/wbsd.c) Copyright (C) 2004-2005 Pierre Ossman, |
| 15 | * All Rights Reserved. |
| 16 | * (drivers/mmc/pxa.c) Copyright (C) 2003 Russell King, |
| 17 | * All Rights Reserved. |
| 18 | * |
| 19 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 22 | /* Why don't we use the SD controllers' carddetect feature? |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 23 | * |
| 24 | * From the AU1100 MMC application guide: |
| 25 | * If the Au1100-based design is intended to support both MultiMediaCards |
| 26 | * and 1- or 4-data bit SecureDigital cards, then the solution is to |
| 27 | * connect a weak (560KOhm) pull-up resistor to connector pin 1. |
| 28 | * In doing so, a MMC card never enters SPI-mode communications, |
| 29 | * but now the SecureDigital card-detect feature of CD/DAT3 is ineffective |
| 30 | * (the low to high transition will not occur). |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 31 | */ |
| 32 | |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 33 | #include <linux/clk.h> |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 34 | #include <linux/module.h> |
| 35 | #include <linux/init.h> |
| Martin Michlmayr | b256f9d | 2006-03-04 23:01:13 +0000 | [diff] [blame] | 36 | #include <linux/platform_device.h> |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 37 | #include <linux/mm.h> |
| 38 | #include <linux/interrupt.h> |
| 39 | #include <linux/dma-mapping.h> |
| Al Viro | 0ada7a0 | 2007-10-27 19:40:46 +0100 | [diff] [blame] | 40 | #include <linux/scatterlist.h> |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 41 | #include <linux/highmem.h> |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 42 | #include <linux/leds.h> |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 43 | #include <linux/mmc/host.h> |
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 44 | #include <linux/slab.h> |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 45 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 46 | #include <asm/io.h> |
| 47 | #include <asm/mach-au1x00/au1000.h> |
| 48 | #include <asm/mach-au1x00/au1xxx_dbdma.h> |
| 49 | #include <asm/mach-au1x00/au1100_mmc.h> |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 50 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 51 | #define DRIVER_NAME "au1xxx-mmc" |
| 52 | |
| 53 | /* Set this to enable special debugging macros */ |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 54 | /* #define DEBUG */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 55 | |
| Russell King | c656317 | 2006-03-29 09:30:20 +0100 | [diff] [blame] | 56 | #ifdef DEBUG |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 57 | #define DBG(fmt, idx, args...) \ |
| Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 58 | pr_debug("au1xmmc(%d): DEBUG: " fmt, idx, ##args) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 59 | #else |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 60 | #define DBG(fmt, idx, args...) do {} while (0) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 61 | #endif |
| 62 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 63 | /* Hardware definitions */ |
| 64 | #define AU1XMMC_DESCRIPTOR_COUNT 1 |
| Manuel Lauss | e491d23 | 2008-07-29 10:10:49 +0200 | [diff] [blame] | 65 | |
| 66 | /* max DMA seg size: 64KB on Au1100, 4MB on Au1200 */ |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 67 | #define AU1100_MMC_DESCRIPTOR_SIZE 0x0000ffff |
| 68 | #define AU1200_MMC_DESCRIPTOR_SIZE 0x003fffff |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 69 | |
| 70 | #define AU1XMMC_OCR (MMC_VDD_27_28 | MMC_VDD_28_29 | MMC_VDD_29_30 | \ |
| 71 | MMC_VDD_30_31 | MMC_VDD_31_32 | MMC_VDD_32_33 | \ |
| 72 | MMC_VDD_33_34 | MMC_VDD_34_35 | MMC_VDD_35_36) |
| 73 | |
| 74 | /* This gives us a hard value for the stop command that we can write directly |
| 75 | * to the command register. |
| 76 | */ |
| 77 | #define STOP_CMD \ |
| 78 | (SD_CMD_RT_1B | SD_CMD_CT_7 | (0xC << SD_CMD_CI_SHIFT) | SD_CMD_GO) |
| 79 | |
| 80 | /* This is the set of interrupts that we configure by default. */ |
| 81 | #define AU1XMMC_INTERRUPTS \ |
| 82 | (SD_CONFIG_SC | SD_CONFIG_DT | SD_CONFIG_RAT | \ |
| 83 | SD_CONFIG_CR | SD_CONFIG_I) |
| 84 | |
| 85 | /* The poll event (looking for insert/remove events runs twice a second. */ |
| 86 | #define AU1XMMC_DETECT_TIMEOUT (HZ/2) |
| 87 | |
| 88 | struct au1xmmc_host { |
| 89 | struct mmc_host *mmc; |
| 90 | struct mmc_request *mrq; |
| 91 | |
| 92 | u32 flags; |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 93 | void __iomem *iobase; |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 94 | u32 clock; |
| 95 | u32 bus_width; |
| 96 | u32 power_mode; |
| 97 | |
| 98 | int status; |
| 99 | |
| 100 | struct { |
| 101 | int len; |
| 102 | int dir; |
| 103 | } dma; |
| 104 | |
| 105 | struct { |
| 106 | int index; |
| 107 | int offset; |
| 108 | int len; |
| 109 | } pio; |
| 110 | |
| 111 | u32 tx_chan; |
| 112 | u32 rx_chan; |
| 113 | |
| 114 | int irq; |
| 115 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 116 | struct tasklet_struct finish_task; |
| 117 | struct tasklet_struct data_task; |
| 118 | struct au1xmmc_platform_data *platdata; |
| 119 | struct platform_device *pdev; |
| 120 | struct resource *ioarea; |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 121 | struct clk *clk; |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | /* Status flags used by the host structure */ |
| 125 | #define HOST_F_XMIT 0x0001 |
| 126 | #define HOST_F_RECV 0x0002 |
| 127 | #define HOST_F_DMA 0x0010 |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 128 | #define HOST_F_DBDMA 0x0020 |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 129 | #define HOST_F_ACTIVE 0x0100 |
| 130 | #define HOST_F_STOP 0x1000 |
| 131 | |
| 132 | #define HOST_S_IDLE 0x0001 |
| 133 | #define HOST_S_CMD 0x0002 |
| 134 | #define HOST_S_DATA 0x0003 |
| 135 | #define HOST_S_STOP 0x0004 |
| 136 | |
| 137 | /* Easy access macros */ |
| 138 | #define HOST_STATUS(h) ((h)->iobase + SD_STATUS) |
| 139 | #define HOST_CONFIG(h) ((h)->iobase + SD_CONFIG) |
| 140 | #define HOST_ENABLE(h) ((h)->iobase + SD_ENABLE) |
| 141 | #define HOST_TXPORT(h) ((h)->iobase + SD_TXPORT) |
| 142 | #define HOST_RXPORT(h) ((h)->iobase + SD_RXPORT) |
| 143 | #define HOST_CMDARG(h) ((h)->iobase + SD_CMDARG) |
| 144 | #define HOST_BLKSIZE(h) ((h)->iobase + SD_BLKSIZE) |
| 145 | #define HOST_CMD(h) ((h)->iobase + SD_CMD) |
| 146 | #define HOST_CONFIG2(h) ((h)->iobase + SD_CONFIG2) |
| 147 | #define HOST_TIMEOUT(h) ((h)->iobase + SD_TIMEOUT) |
| 148 | #define HOST_DEBUG(h) ((h)->iobase + SD_DEBUG) |
| 149 | |
| 150 | #define DMA_CHANNEL(h) \ |
| 151 | (((h)->flags & HOST_F_XMIT) ? (h)->tx_chan : (h)->rx_chan) |
| 152 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 153 | static inline int has_dbdma(void) |
| 154 | { |
| 155 | switch (alchemy_get_cputype()) { |
| 156 | case ALCHEMY_CPU_AU1200: |
| Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 157 | case ALCHEMY_CPU_AU1300: |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 158 | return 1; |
| 159 | default: |
| 160 | return 0; |
| 161 | } |
| 162 | } |
| 163 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 164 | static inline void IRQ_ON(struct au1xmmc_host *host, u32 mask) |
| 165 | { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 166 | u32 val = __raw_readl(HOST_CONFIG(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 167 | val |= mask; |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 168 | __raw_writel(val, HOST_CONFIG(host)); |
| 169 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static inline void FLUSH_FIFO(struct au1xmmc_host *host) |
| 173 | { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 174 | u32 val = __raw_readl(HOST_CONFIG2(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 175 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 176 | __raw_writel(val | SD_CONFIG2_FF, HOST_CONFIG2(host)); |
| 177 | wmb(); /* drain writebuffer */ |
| 178 | mdelay(1); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 179 | |
| 180 | /* SEND_STOP will turn off clock control - this re-enables it */ |
| 181 | val &= ~SD_CONFIG2_DF; |
| 182 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 183 | __raw_writel(val, HOST_CONFIG2(host)); |
| 184 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | static inline void IRQ_OFF(struct au1xmmc_host *host, u32 mask) |
| 188 | { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 189 | u32 val = __raw_readl(HOST_CONFIG(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 190 | val &= ~mask; |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 191 | __raw_writel(val, HOST_CONFIG(host)); |
| 192 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static inline void SEND_STOP(struct au1xmmc_host *host) |
| 196 | { |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 197 | u32 config2; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 198 | |
| 199 | WARN_ON(host->status != HOST_S_DATA); |
| 200 | host->status = HOST_S_STOP; |
| 201 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 202 | config2 = __raw_readl(HOST_CONFIG2(host)); |
| 203 | __raw_writel(config2 | SD_CONFIG2_DF, HOST_CONFIG2(host)); |
| 204 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 205 | |
| Uwe Kleine-König | b595076 | 2010-11-01 15:38:34 -0400 | [diff] [blame] | 206 | /* Send the stop command */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 207 | __raw_writel(STOP_CMD, HOST_CMD(host)); |
| 208 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | static void au1xmmc_set_power(struct au1xmmc_host *host, int state) |
| 212 | { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 213 | if (host->platdata && host->platdata->set_power) |
| 214 | host->platdata->set_power(host->mmc, state); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 215 | } |
| 216 | |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 217 | static int au1xmmc_card_inserted(struct mmc_host *mmc) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 218 | { |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 219 | struct au1xmmc_host *host = mmc_priv(mmc); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 220 | |
| 221 | if (host->platdata && host->platdata->card_inserted) |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 222 | return !!host->platdata->card_inserted(host->mmc); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 223 | |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 224 | return -ENOSYS; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| Manuel Lauss | 8299977 | 2007-01-25 10:29:24 +0100 | [diff] [blame] | 227 | static int au1xmmc_card_readonly(struct mmc_host *mmc) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 228 | { |
| Manuel Lauss | 8299977 | 2007-01-25 10:29:24 +0100 | [diff] [blame] | 229 | struct au1xmmc_host *host = mmc_priv(mmc); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 230 | |
| 231 | if (host->platdata && host->platdata->card_readonly) |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 232 | return !!host->platdata->card_readonly(mmc); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 233 | |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 234 | return -ENOSYS; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | static void au1xmmc_finish_request(struct au1xmmc_host *host) |
| 238 | { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 239 | struct mmc_request *mrq = host->mrq; |
| 240 | |
| 241 | host->mrq = NULL; |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 242 | host->flags &= HOST_F_ACTIVE | HOST_F_DMA; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 243 | |
| 244 | host->dma.len = 0; |
| 245 | host->dma.dir = 0; |
| 246 | |
| 247 | host->pio.index = 0; |
| 248 | host->pio.offset = 0; |
| 249 | host->pio.len = 0; |
| 250 | |
| 251 | host->status = HOST_S_IDLE; |
| 252 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 253 | mmc_request_done(host->mmc, mrq); |
| 254 | } |
| 255 | |
| 256 | static void au1xmmc_tasklet_finish(unsigned long param) |
| 257 | { |
| 258 | struct au1xmmc_host *host = (struct au1xmmc_host *) param; |
| 259 | au1xmmc_finish_request(host); |
| 260 | } |
| 261 | |
| 262 | static int au1xmmc_send_command(struct au1xmmc_host *host, int wait, |
| Pierre Ossman | be0192a | 2007-07-24 21:11:47 +0200 | [diff] [blame] | 263 | struct mmc_command *cmd, struct mmc_data *data) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 264 | { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 265 | u32 mmccmd = (cmd->opcode << SD_CMD_CI_SHIFT); |
| 266 | |
| Martin Michlmayr | e142c24 | 2006-03-04 23:01:39 +0000 | [diff] [blame] | 267 | switch (mmc_resp_type(cmd)) { |
| Manuel Lauss | 279bc44 | 2007-01-25 10:27:41 +0100 | [diff] [blame] | 268 | case MMC_RSP_NONE: |
| 269 | break; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 270 | case MMC_RSP_R1: |
| 271 | mmccmd |= SD_CMD_RT_1; |
| 272 | break; |
| 273 | case MMC_RSP_R1B: |
| 274 | mmccmd |= SD_CMD_RT_1B; |
| 275 | break; |
| 276 | case MMC_RSP_R2: |
| 277 | mmccmd |= SD_CMD_RT_2; |
| 278 | break; |
| 279 | case MMC_RSP_R3: |
| 280 | mmccmd |= SD_CMD_RT_3; |
| 281 | break; |
| Manuel Lauss | 279bc44 | 2007-01-25 10:27:41 +0100 | [diff] [blame] | 282 | default: |
| Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 283 | pr_info("au1xmmc: unhandled response type %02x\n", |
| Manuel Lauss | 279bc44 | 2007-01-25 10:27:41 +0100 | [diff] [blame] | 284 | mmc_resp_type(cmd)); |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 285 | return -EINVAL; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 286 | } |
| 287 | |
| Pierre Ossman | be0192a | 2007-07-24 21:11:47 +0200 | [diff] [blame] | 288 | if (data) { |
| Pierre Ossman | 6356a9d | 2007-10-22 18:16:16 +0200 | [diff] [blame] | 289 | if (data->flags & MMC_DATA_READ) { |
| Pierre Ossman | be0192a | 2007-07-24 21:11:47 +0200 | [diff] [blame] | 290 | if (data->blocks > 1) |
| 291 | mmccmd |= SD_CMD_CT_4; |
| 292 | else |
| 293 | mmccmd |= SD_CMD_CT_2; |
| Pierre Ossman | 6356a9d | 2007-10-22 18:16:16 +0200 | [diff] [blame] | 294 | } else if (data->flags & MMC_DATA_WRITE) { |
| Pierre Ossman | be0192a | 2007-07-24 21:11:47 +0200 | [diff] [blame] | 295 | if (data->blocks > 1) |
| 296 | mmccmd |= SD_CMD_CT_3; |
| 297 | else |
| 298 | mmccmd |= SD_CMD_CT_1; |
| 299 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 300 | } |
| 301 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 302 | __raw_writel(cmd->arg, HOST_CMDARG(host)); |
| 303 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 304 | |
| 305 | if (wait) |
| 306 | IRQ_OFF(host, SD_CONFIG_CR); |
| 307 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 308 | __raw_writel((mmccmd | SD_CMD_GO), HOST_CMD(host)); |
| 309 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 310 | |
| 311 | /* Wait for the command to go on the line */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 312 | while (__raw_readl(HOST_CMD(host)) & SD_CMD_GO) |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 313 | /* nop */; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 314 | |
| 315 | /* Wait for the command to come back */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 316 | if (wait) { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 317 | u32 status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 318 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 319 | while (!(status & SD_STATUS_CR)) |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 320 | status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 321 | |
| 322 | /* Clear the CR status */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 323 | __raw_writel(SD_STATUS_CR, HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 324 | |
| 325 | IRQ_ON(host, SD_CONFIG_CR); |
| 326 | } |
| 327 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 328 | return 0; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | static void au1xmmc_data_complete(struct au1xmmc_host *host, u32 status) |
| 332 | { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 333 | struct mmc_request *mrq = host->mrq; |
| 334 | struct mmc_data *data; |
| 335 | u32 crc; |
| 336 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 337 | WARN_ON((host->status != HOST_S_DATA) && (host->status != HOST_S_STOP)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 338 | |
| 339 | if (host->mrq == NULL) |
| 340 | return; |
| 341 | |
| 342 | data = mrq->cmd->data; |
| 343 | |
| 344 | if (status == 0) |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 345 | status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 346 | |
| 347 | /* The transaction is really over when the SD_STATUS_DB bit is clear */ |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 348 | while ((host->flags & HOST_F_XMIT) && (status & SD_STATUS_DB)) |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 349 | status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 350 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 351 | data->error = 0; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 352 | dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, host->dma.dir); |
| 353 | |
| 354 | /* Process any errors */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 355 | crc = (status & (SD_STATUS_WC | SD_STATUS_RC)); |
| 356 | if (host->flags & HOST_F_XMIT) |
| 357 | crc |= ((status & 0x07) == 0x02) ? 0 : 1; |
| 358 | |
| 359 | if (crc) |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 360 | data->error = -EILSEQ; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 361 | |
| 362 | /* Clear the CRC bits */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 363 | __raw_writel(SD_STATUS_WC | SD_STATUS_RC, HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 364 | |
| 365 | data->bytes_xfered = 0; |
| 366 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 367 | if (!data->error) { |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 368 | if (host->flags & (HOST_F_DMA | HOST_F_DBDMA)) { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 369 | u32 chan = DMA_CHANNEL(host); |
| 370 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 371 | chan_tab_t *c = *((chan_tab_t **)chan); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 372 | au1x_dma_chan_t *cp = c->chan_ptr; |
| 373 | data->bytes_xfered = cp->ddma_bytecnt; |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 374 | } else |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 375 | data->bytes_xfered = |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 376 | (data->blocks * data->blksz) - host->pio.len; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | au1xmmc_finish_request(host); |
| 380 | } |
| 381 | |
| 382 | static void au1xmmc_tasklet_data(unsigned long param) |
| 383 | { |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 384 | struct au1xmmc_host *host = (struct au1xmmc_host *)param; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 385 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 386 | u32 status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 387 | au1xmmc_data_complete(host, status); |
| 388 | } |
| 389 | |
| 390 | #define AU1XMMC_MAX_TRANSFER 8 |
| 391 | |
| 392 | static void au1xmmc_send_pio(struct au1xmmc_host *host) |
| 393 | { |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 394 | struct mmc_data *data; |
| 395 | int sg_len, max, count; |
| 396 | unsigned char *sg_ptr, val; |
| 397 | u32 status; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 398 | struct scatterlist *sg; |
| 399 | |
| 400 | data = host->mrq->data; |
| 401 | |
| 402 | if (!(host->flags & HOST_F_XMIT)) |
| 403 | return; |
| 404 | |
| 405 | /* This is the pointer to the data buffer */ |
| 406 | sg = &data->sg[host->pio.index]; |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 407 | sg_ptr = kmap_atomic(sg_page(sg)) + sg->offset + host->pio.offset; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 408 | |
| 409 | /* This is the space left inside the buffer */ |
| 410 | sg_len = data->sg[host->pio.index].length - host->pio.offset; |
| 411 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 412 | /* Check if we need less than the size of the sg_buffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 413 | max = (sg_len > host->pio.len) ? host->pio.len : sg_len; |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 414 | if (max > AU1XMMC_MAX_TRANSFER) |
| 415 | max = AU1XMMC_MAX_TRANSFER; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 416 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 417 | for (count = 0; count < max; count++) { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 418 | status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 419 | |
| 420 | if (!(status & SD_STATUS_TH)) |
| 421 | break; |
| 422 | |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 423 | val = sg_ptr[count]; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 424 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 425 | __raw_writel((unsigned long)val, HOST_TXPORT(host)); |
| 426 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 427 | } |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 428 | kunmap_atomic(sg_ptr); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 429 | |
| 430 | host->pio.len -= count; |
| 431 | host->pio.offset += count; |
| 432 | |
| 433 | if (count == sg_len) { |
| 434 | host->pio.index++; |
| 435 | host->pio.offset = 0; |
| 436 | } |
| 437 | |
| 438 | if (host->pio.len == 0) { |
| 439 | IRQ_OFF(host, SD_CONFIG_TH); |
| 440 | |
| 441 | if (host->flags & HOST_F_STOP) |
| 442 | SEND_STOP(host); |
| 443 | |
| 444 | tasklet_schedule(&host->data_task); |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | static void au1xmmc_receive_pio(struct au1xmmc_host *host) |
| 449 | { |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 450 | struct mmc_data *data; |
| 451 | int max, count, sg_len = 0; |
| 452 | unsigned char *sg_ptr = NULL; |
| 453 | u32 status, val; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 454 | struct scatterlist *sg; |
| 455 | |
| 456 | data = host->mrq->data; |
| 457 | |
| 458 | if (!(host->flags & HOST_F_RECV)) |
| 459 | return; |
| 460 | |
| 461 | max = host->pio.len; |
| 462 | |
| 463 | if (host->pio.index < host->dma.len) { |
| 464 | sg = &data->sg[host->pio.index]; |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 465 | sg_ptr = kmap_atomic(sg_page(sg)) + sg->offset + host->pio.offset; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 466 | |
| 467 | /* This is the space left inside the buffer */ |
| 468 | sg_len = sg_dma_len(&data->sg[host->pio.index]) - host->pio.offset; |
| 469 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 470 | /* Check if we need less than the size of the sg_buffer */ |
| 471 | if (sg_len < max) |
| 472 | max = sg_len; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | if (max > AU1XMMC_MAX_TRANSFER) |
| 476 | max = AU1XMMC_MAX_TRANSFER; |
| 477 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 478 | for (count = 0; count < max; count++) { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 479 | status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 480 | |
| 481 | if (!(status & SD_STATUS_NE)) |
| 482 | break; |
| 483 | |
| 484 | if (status & SD_STATUS_RC) { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 485 | DBG("RX CRC Error [%d + %d].\n", host->pdev->id, |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 486 | host->pio.len, count); |
| 487 | break; |
| 488 | } |
| 489 | |
| 490 | if (status & SD_STATUS_RO) { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 491 | DBG("RX Overrun [%d + %d]\n", host->pdev->id, |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 492 | host->pio.len, count); |
| 493 | break; |
| 494 | } |
| 495 | else if (status & SD_STATUS_RU) { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 496 | DBG("RX Underrun [%d + %d]\n", host->pdev->id, |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 497 | host->pio.len, count); |
| 498 | break; |
| 499 | } |
| 500 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 501 | val = __raw_readl(HOST_RXPORT(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 502 | |
| 503 | if (sg_ptr) |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 504 | sg_ptr[count] = (unsigned char)(val & 0xFF); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 505 | } |
| Christoph Hellwig | a6720c0 | 2018-05-28 08:14:21 +0200 | [diff] [blame] | 506 | if (sg_ptr) |
| 507 | kunmap_atomic(sg_ptr); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 508 | |
| 509 | host->pio.len -= count; |
| 510 | host->pio.offset += count; |
| 511 | |
| 512 | if (sg_len && count == sg_len) { |
| 513 | host->pio.index++; |
| 514 | host->pio.offset = 0; |
| 515 | } |
| 516 | |
| 517 | if (host->pio.len == 0) { |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 518 | /* IRQ_OFF(host, SD_CONFIG_RA | SD_CONFIG_RF); */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 519 | IRQ_OFF(host, SD_CONFIG_NE); |
| 520 | |
| 521 | if (host->flags & HOST_F_STOP) |
| 522 | SEND_STOP(host); |
| 523 | |
| 524 | tasklet_schedule(&host->data_task); |
| 525 | } |
| 526 | } |
| 527 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 528 | /* This is called when a command has been completed - grab the response |
| 529 | * and check for errors. Then start the data transfer if it is indicated. |
| 530 | */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 531 | static void au1xmmc_cmd_complete(struct au1xmmc_host *host, u32 status) |
| 532 | { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 533 | struct mmc_request *mrq = host->mrq; |
| 534 | struct mmc_command *cmd; |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 535 | u32 r[4]; |
| 536 | int i, trans; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 537 | |
| 538 | if (!host->mrq) |
| 539 | return; |
| 540 | |
| 541 | cmd = mrq->cmd; |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 542 | cmd->error = 0; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 543 | |
| Russell King | e922517 | 2006-02-02 12:23:12 +0000 | [diff] [blame] | 544 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 545 | if (cmd->flags & MMC_RSP_136) { |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 546 | r[0] = __raw_readl(host->iobase + SD_RESP3); |
| 547 | r[1] = __raw_readl(host->iobase + SD_RESP2); |
| 548 | r[2] = __raw_readl(host->iobase + SD_RESP1); |
| 549 | r[3] = __raw_readl(host->iobase + SD_RESP0); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 550 | |
| Russell King | e922517 | 2006-02-02 12:23:12 +0000 | [diff] [blame] | 551 | /* The CRC is omitted from the response, so really |
| 552 | * we only got 120 bytes, but the engine expects |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 553 | * 128 bits, so we have to shift things up. |
| Russell King | e922517 | 2006-02-02 12:23:12 +0000 | [diff] [blame] | 554 | */ |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 555 | for (i = 0; i < 4; i++) { |
| Russell King | e922517 | 2006-02-02 12:23:12 +0000 | [diff] [blame] | 556 | cmd->resp[i] = (r[i] & 0x00FFFFFF) << 8; |
| 557 | if (i != 3) |
| 558 | cmd->resp[i] |= (r[i + 1] & 0xFF000000) >> 24; |
| 559 | } |
| 560 | } else { |
| 561 | /* Techincally, we should be getting all 48 bits of |
| 562 | * the response (SD_RESP1 + SD_RESP2), but because |
| 563 | * our response omits the CRC, our data ends up |
| 564 | * being shifted 8 bits to the right. In this case, |
| 565 | * that means that the OSR data starts at bit 31, |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 566 | * so we can just read RESP0 and return that. |
| Russell King | e922517 | 2006-02-02 12:23:12 +0000 | [diff] [blame] | 567 | */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 568 | cmd->resp[0] = __raw_readl(host->iobase + SD_RESP0); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 569 | } |
| 570 | } |
| 571 | |
| 572 | /* Figure out errors */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 573 | if (status & (SD_STATUS_SC | SD_STATUS_WC | SD_STATUS_RC)) |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 574 | cmd->error = -EILSEQ; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 575 | |
| 576 | trans = host->flags & (HOST_F_XMIT | HOST_F_RECV); |
| 577 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 578 | if (!trans || cmd->error) { |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 579 | IRQ_OFF(host, SD_CONFIG_TH | SD_CONFIG_RA | SD_CONFIG_RF); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 580 | tasklet_schedule(&host->finish_task); |
| 581 | return; |
| 582 | } |
| 583 | |
| 584 | host->status = HOST_S_DATA; |
| 585 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 586 | if ((host->flags & (HOST_F_DMA | HOST_F_DBDMA))) { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 587 | u32 channel = DMA_CHANNEL(host); |
| 588 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 589 | /* Start the DBDMA as soon as the buffer gets something in it */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 590 | |
| 591 | if (host->flags & HOST_F_RECV) { |
| 592 | u32 mask = SD_STATUS_DB | SD_STATUS_NE; |
| 593 | |
| 594 | while((status & mask) != mask) |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 595 | status = __raw_readl(HOST_STATUS(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | au1xxx_dbdma_start(channel); |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | static void au1xmmc_set_clock(struct au1xmmc_host *host, int rate) |
| 603 | { |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 604 | unsigned int pbus = clk_get_rate(host->clk); |
| 605 | unsigned int divisor = ((pbus / rate) / 2) - 1; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 606 | u32 config; |
| 607 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 608 | config = __raw_readl(HOST_CONFIG(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 609 | |
| 610 | config &= ~(SD_CONFIG_DIV); |
| 611 | config |= (divisor & SD_CONFIG_DIV) | SD_CONFIG_DE; |
| 612 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 613 | __raw_writel(config, HOST_CONFIG(host)); |
| 614 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 617 | static int au1xmmc_prepare_data(struct au1xmmc_host *host, |
| 618 | struct mmc_data *data) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 619 | { |
| Pavel Pisa | 2c171bf | 2006-05-19 21:48:03 +0100 | [diff] [blame] | 620 | int datalen = data->blocks * data->blksz; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 621 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 622 | if (data->flags & MMC_DATA_READ) |
| 623 | host->flags |= HOST_F_RECV; |
| 624 | else |
| 625 | host->flags |= HOST_F_XMIT; |
| 626 | |
| 627 | if (host->mrq->stop) |
| 628 | host->flags |= HOST_F_STOP; |
| 629 | |
| 630 | host->dma.dir = DMA_BIDIRECTIONAL; |
| 631 | |
| 632 | host->dma.len = dma_map_sg(mmc_dev(host->mmc), data->sg, |
| 633 | data->sg_len, host->dma.dir); |
| 634 | |
| 635 | if (host->dma.len == 0) |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 636 | return -ETIMEDOUT; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 637 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 638 | __raw_writel(data->blksz - 1, HOST_BLKSIZE(host)); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 639 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 640 | if (host->flags & (HOST_F_DMA | HOST_F_DBDMA)) { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 641 | int i; |
| 642 | u32 channel = DMA_CHANNEL(host); |
| 643 | |
| 644 | au1xxx_dbdma_stop(channel); |
| 645 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 646 | for (i = 0; i < host->dma.len; i++) { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 647 | u32 ret = 0, flags = DDMA_FLAGS_NOIE; |
| 648 | struct scatterlist *sg = &data->sg[i]; |
| 649 | int sg_len = sg->length; |
| 650 | |
| 651 | int len = (datalen > sg_len) ? sg_len : datalen; |
| 652 | |
| 653 | if (i == host->dma.len - 1) |
| 654 | flags = DDMA_FLAGS_IE; |
| 655 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 656 | if (host->flags & HOST_F_XMIT) { |
| Manuel Lauss | ea071cc | 2009-10-13 20:22:34 +0200 | [diff] [blame] | 657 | ret = au1xxx_dbdma_put_source(channel, |
| Manuel Lauss | 963accb | 2009-10-13 20:22:35 +0200 | [diff] [blame] | 658 | sg_phys(sg), len, flags); |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 659 | } else { |
| Manuel Lauss | ea071cc | 2009-10-13 20:22:34 +0200 | [diff] [blame] | 660 | ret = au1xxx_dbdma_put_dest(channel, |
| Manuel Lauss | 963accb | 2009-10-13 20:22:35 +0200 | [diff] [blame] | 661 | sg_phys(sg), len, flags); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 662 | } |
| 663 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 664 | if (!ret) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 665 | goto dataerr; |
| 666 | |
| 667 | datalen -= len; |
| 668 | } |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 669 | } else { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 670 | host->pio.index = 0; |
| 671 | host->pio.offset = 0; |
| 672 | host->pio.len = datalen; |
| 673 | |
| 674 | if (host->flags & HOST_F_XMIT) |
| 675 | IRQ_ON(host, SD_CONFIG_TH); |
| 676 | else |
| 677 | IRQ_ON(host, SD_CONFIG_NE); |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 678 | /* IRQ_ON(host, SD_CONFIG_RA | SD_CONFIG_RF); */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 679 | } |
| 680 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 681 | return 0; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 682 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 683 | dataerr: |
| 684 | dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len, |
| 685 | host->dma.dir); |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 686 | return -ETIMEDOUT; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 687 | } |
| 688 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 689 | /* This actually starts a command or data transaction */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 690 | static void au1xmmc_request(struct mmc_host* mmc, struct mmc_request* mrq) |
| 691 | { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 692 | struct au1xmmc_host *host = mmc_priv(mmc); |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 693 | int ret = 0; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 694 | |
| 695 | WARN_ON(irqs_disabled()); |
| 696 | WARN_ON(host->status != HOST_S_IDLE); |
| 697 | |
| 698 | host->mrq = mrq; |
| 699 | host->status = HOST_S_CMD; |
| 700 | |
| Manuel Lauss | 88b8d9a | 2008-06-09 08:39:11 +0200 | [diff] [blame] | 701 | /* fail request immediately if no card is present */ |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 702 | if (0 == au1xmmc_card_inserted(mmc)) { |
| Manuel Lauss | 88b8d9a | 2008-06-09 08:39:11 +0200 | [diff] [blame] | 703 | mrq->cmd->error = -ENOMEDIUM; |
| 704 | au1xmmc_finish_request(host); |
| 705 | return; |
| 706 | } |
| 707 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 708 | if (mrq->data) { |
| 709 | FLUSH_FIFO(host); |
| 710 | ret = au1xmmc_prepare_data(host, mrq->data); |
| 711 | } |
| 712 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 713 | if (!ret) |
| Pierre Ossman | be0192a | 2007-07-24 21:11:47 +0200 | [diff] [blame] | 714 | ret = au1xmmc_send_command(host, 0, mrq->cmd, mrq->data); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 715 | |
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 716 | if (ret) { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 717 | mrq->cmd->error = ret; |
| 718 | au1xmmc_finish_request(host); |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | static void au1xmmc_reset_controller(struct au1xmmc_host *host) |
| 723 | { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 724 | /* Apply the clock */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 725 | __raw_writel(SD_ENABLE_CE, HOST_ENABLE(host)); |
| 726 | wmb(); /* drain writebuffer */ |
| 727 | mdelay(1); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 728 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 729 | __raw_writel(SD_ENABLE_R | SD_ENABLE_CE, HOST_ENABLE(host)); |
| 730 | wmb(); /* drain writebuffer */ |
| 731 | mdelay(5); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 732 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 733 | __raw_writel(~0, HOST_STATUS(host)); |
| 734 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 735 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 736 | __raw_writel(0, HOST_BLKSIZE(host)); |
| 737 | __raw_writel(0x001fffff, HOST_TIMEOUT(host)); |
| 738 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 739 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 740 | __raw_writel(SD_CONFIG2_EN, HOST_CONFIG2(host)); |
| 741 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 742 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 743 | __raw_writel(SD_CONFIG2_EN | SD_CONFIG2_FF, HOST_CONFIG2(host)); |
| 744 | wmb(); /* drain writebuffer */ |
| 745 | mdelay(1); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 746 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 747 | __raw_writel(SD_CONFIG2_EN, HOST_CONFIG2(host)); |
| 748 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 749 | |
| 750 | /* Configure interrupts */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 751 | __raw_writel(AU1XMMC_INTERRUPTS, HOST_CONFIG(host)); |
| 752 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | |
| Manuel Lauss | 5c0a889 | 2008-06-09 08:38:35 +0200 | [diff] [blame] | 756 | static void au1xmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 757 | { |
| 758 | struct au1xmmc_host *host = mmc_priv(mmc); |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 759 | u32 config2; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 760 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 761 | if (ios->power_mode == MMC_POWER_OFF) |
| 762 | au1xmmc_set_power(host, 0); |
| 763 | else if (ios->power_mode == MMC_POWER_ON) { |
| 764 | au1xmmc_set_power(host, 1); |
| 765 | } |
| 766 | |
| 767 | if (ios->clock && ios->clock != host->clock) { |
| 768 | au1xmmc_set_clock(host, ios->clock); |
| 769 | host->clock = ios->clock; |
| 770 | } |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 771 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 772 | config2 = __raw_readl(HOST_CONFIG2(host)); |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 773 | switch (ios->bus_width) { |
| Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 774 | case MMC_BUS_WIDTH_8: |
| 775 | config2 |= SD_CONFIG2_BB; |
| 776 | break; |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 777 | case MMC_BUS_WIDTH_4: |
| Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 778 | config2 &= ~SD_CONFIG2_BB; |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 779 | config2 |= SD_CONFIG2_WB; |
| 780 | break; |
| 781 | case MMC_BUS_WIDTH_1: |
| Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 782 | config2 &= ~(SD_CONFIG2_WB | SD_CONFIG2_BB); |
| Manuel Lauss | 281dd23 | 2008-06-09 08:37:33 +0200 | [diff] [blame] | 783 | break; |
| 784 | } |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 785 | __raw_writel(config2, HOST_CONFIG2(host)); |
| 786 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 789 | #define STATUS_TIMEOUT (SD_STATUS_RAT | SD_STATUS_DT) |
| 790 | #define STATUS_DATA_IN (SD_STATUS_NE) |
| 791 | #define STATUS_DATA_OUT (SD_STATUS_TH) |
| 792 | |
| 793 | static irqreturn_t au1xmmc_irq(int irq, void *dev_id) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 794 | { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 795 | struct au1xmmc_host *host = dev_id; |
| 796 | u32 status; |
| 797 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 798 | status = __raw_readl(HOST_STATUS(host)); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 799 | |
| 800 | if (!(status & SD_STATUS_I)) |
| 801 | return IRQ_NONE; /* not ours */ |
| 802 | |
| Manuel Lauss | 20f522f | 2008-06-09 08:38:03 +0200 | [diff] [blame] | 803 | if (status & SD_STATUS_SI) /* SDIO */ |
| 804 | mmc_signal_sdio_irq(host->mmc); |
| 805 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 806 | if (host->mrq && (status & STATUS_TIMEOUT)) { |
| 807 | if (status & SD_STATUS_RAT) |
| 808 | host->mrq->cmd->error = -ETIMEDOUT; |
| 809 | else if (status & SD_STATUS_DT) |
| 810 | host->mrq->data->error = -ETIMEDOUT; |
| 811 | |
| 812 | /* In PIO mode, interrupts might still be enabled */ |
| 813 | IRQ_OFF(host, SD_CONFIG_NE | SD_CONFIG_TH); |
| 814 | |
| 815 | /* IRQ_OFF(host, SD_CONFIG_TH | SD_CONFIG_RA | SD_CONFIG_RF); */ |
| 816 | tasklet_schedule(&host->finish_task); |
| 817 | } |
| 818 | #if 0 |
| 819 | else if (status & SD_STATUS_DD) { |
| 820 | /* Sometimes we get a DD before a NE in PIO mode */ |
| 821 | if (!(host->flags & HOST_F_DMA) && (status & SD_STATUS_NE)) |
| 822 | au1xmmc_receive_pio(host); |
| 823 | else { |
| 824 | au1xmmc_data_complete(host, status); |
| 825 | /* tasklet_schedule(&host->data_task); */ |
| 826 | } |
| 827 | } |
| 828 | #endif |
| 829 | else if (status & SD_STATUS_CR) { |
| 830 | if (host->status == HOST_S_CMD) |
| 831 | au1xmmc_cmd_complete(host, status); |
| 832 | |
| 833 | } else if (!(host->flags & HOST_F_DMA)) { |
| 834 | if ((host->flags & HOST_F_XMIT) && (status & STATUS_DATA_OUT)) |
| 835 | au1xmmc_send_pio(host); |
| 836 | else if ((host->flags & HOST_F_RECV) && (status & STATUS_DATA_IN)) |
| 837 | au1xmmc_receive_pio(host); |
| 838 | |
| 839 | } else if (status & 0x203F3C70) { |
| 840 | DBG("Unhandled status %8.8x\n", host->pdev->id, |
| 841 | status); |
| 842 | } |
| 843 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 844 | __raw_writel(status, HOST_STATUS(host)); |
| 845 | wmb(); /* drain writebuffer */ |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 846 | |
| 847 | return IRQ_HANDLED; |
| 848 | } |
| 849 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 850 | /* 8bit memory DMA device */ |
| 851 | static dbdev_tab_t au1xmmc_mem_dbdev = { |
| 852 | .dev_id = DSCR_CMD0_ALWAYS, |
| 853 | .dev_flags = DEV_FLAGS_ANYUSE, |
| 854 | .dev_tsize = 0, |
| 855 | .dev_devwidth = 8, |
| 856 | .dev_physaddr = 0x00000000, |
| 857 | .dev_intlevel = 0, |
| 858 | .dev_intpolarity = 0, |
| 859 | }; |
| 860 | static int memid; |
| 861 | |
| 862 | static void au1xmmc_dbdma_callback(int irq, void *dev_id) |
| 863 | { |
| 864 | struct au1xmmc_host *host = (struct au1xmmc_host *)dev_id; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 865 | |
| 866 | /* Avoid spurious interrupts */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 867 | if (!host->mrq) |
| 868 | return; |
| 869 | |
| 870 | if (host->flags & HOST_F_STOP) |
| 871 | SEND_STOP(host); |
| 872 | |
| 873 | tasklet_schedule(&host->data_task); |
| 874 | } |
| 875 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 876 | static int au1xmmc_dbdma_init(struct au1xmmc_host *host) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 877 | { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 878 | struct resource *res; |
| 879 | int txid, rxid; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 880 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 881 | res = platform_get_resource(host->pdev, IORESOURCE_DMA, 0); |
| 882 | if (!res) |
| 883 | return -ENODEV; |
| 884 | txid = res->start; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 885 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 886 | res = platform_get_resource(host->pdev, IORESOURCE_DMA, 1); |
| 887 | if (!res) |
| 888 | return -ENODEV; |
| 889 | rxid = res->start; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 890 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 891 | if (!memid) |
| 892 | return -ENODEV; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 893 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 894 | host->tx_chan = au1xxx_dbdma_chan_alloc(memid, txid, |
| 895 | au1xmmc_dbdma_callback, (void *)host); |
| 896 | if (!host->tx_chan) { |
| 897 | dev_err(&host->pdev->dev, "cannot allocate TX DMA\n"); |
| 898 | return -ENODEV; |
| 899 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 900 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 901 | host->rx_chan = au1xxx_dbdma_chan_alloc(rxid, memid, |
| 902 | au1xmmc_dbdma_callback, (void *)host); |
| 903 | if (!host->rx_chan) { |
| 904 | dev_err(&host->pdev->dev, "cannot allocate RX DMA\n"); |
| 905 | au1xxx_dbdma_chan_free(host->tx_chan); |
| 906 | return -ENODEV; |
| 907 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 908 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 909 | au1xxx_dbdma_set_devwidth(host->tx_chan, 8); |
| 910 | au1xxx_dbdma_set_devwidth(host->rx_chan, 8); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 911 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 912 | au1xxx_dbdma_ring_alloc(host->tx_chan, AU1XMMC_DESCRIPTOR_COUNT); |
| 913 | au1xxx_dbdma_ring_alloc(host->rx_chan, AU1XMMC_DESCRIPTOR_COUNT); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 914 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 915 | /* DBDMA is good to go */ |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 916 | host->flags |= HOST_F_DMA | HOST_F_DBDMA; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 917 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 918 | return 0; |
| 919 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 920 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 921 | static void au1xmmc_dbdma_shutdown(struct au1xmmc_host *host) |
| 922 | { |
| 923 | if (host->flags & HOST_F_DMA) { |
| 924 | host->flags &= ~HOST_F_DMA; |
| 925 | au1xxx_dbdma_chan_free(host->tx_chan); |
| 926 | au1xxx_dbdma_chan_free(host->rx_chan); |
| 927 | } |
| 928 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 929 | |
| Manuel Lauss | 20f522f | 2008-06-09 08:38:03 +0200 | [diff] [blame] | 930 | static void au1xmmc_enable_sdio_irq(struct mmc_host *mmc, int en) |
| 931 | { |
| 932 | struct au1xmmc_host *host = mmc_priv(mmc); |
| 933 | |
| 934 | if (en) |
| 935 | IRQ_ON(host, SD_CONFIG_SI); |
| 936 | else |
| 937 | IRQ_OFF(host, SD_CONFIG_SI); |
| 938 | } |
| 939 | |
| Yoichi Yuasa | bf8c80a | 2006-12-05 07:43:38 +0100 | [diff] [blame] | 940 | static const struct mmc_host_ops au1xmmc_ops = { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 941 | .request = au1xmmc_request, |
| 942 | .set_ios = au1xmmc_set_ios, |
| Manuel Lauss | 8299977 | 2007-01-25 10:29:24 +0100 | [diff] [blame] | 943 | .get_ro = au1xmmc_card_readonly, |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 944 | .get_cd = au1xmmc_card_inserted, |
| Manuel Lauss | 20f522f | 2008-06-09 08:38:03 +0200 | [diff] [blame] | 945 | .enable_sdio_irq = au1xmmc_enable_sdio_irq, |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 946 | }; |
| 947 | |
| Bill Pemberton | c3be1ef | 2012-11-19 13:23:06 -0500 | [diff] [blame] | 948 | static int au1xmmc_probe(struct platform_device *pdev) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 949 | { |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 950 | struct mmc_host *mmc; |
| 951 | struct au1xmmc_host *host; |
| 952 | struct resource *r; |
| Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 953 | int ret, iflag; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 954 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 955 | mmc = mmc_alloc_host(sizeof(struct au1xmmc_host), &pdev->dev); |
| 956 | if (!mmc) { |
| 957 | dev_err(&pdev->dev, "no memory for mmc_host\n"); |
| 958 | ret = -ENOMEM; |
| 959 | goto out0; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 960 | } |
| 961 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 962 | host = mmc_priv(mmc); |
| 963 | host->mmc = mmc; |
| 964 | host->platdata = pdev->dev.platform_data; |
| 965 | host->pdev = pdev; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 966 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 967 | ret = -ENODEV; |
| 968 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 969 | if (!r) { |
| 970 | dev_err(&pdev->dev, "no mmio defined\n"); |
| 971 | goto out1; |
| 972 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 973 | |
| H Hartley Sweeten | 7a5ea56a | 2009-12-14 14:28:06 -0500 | [diff] [blame] | 974 | host->ioarea = request_mem_region(r->start, resource_size(r), |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 975 | pdev->name); |
| 976 | if (!host->ioarea) { |
| 977 | dev_err(&pdev->dev, "mmio already in use\n"); |
| 978 | goto out1; |
| 979 | } |
| 980 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 981 | host->iobase = ioremap(r->start, 0x3c); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 982 | if (!host->iobase) { |
| 983 | dev_err(&pdev->dev, "cannot remap mmio\n"); |
| 984 | goto out2; |
| 985 | } |
| 986 | |
| 987 | r = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 988 | if (!r) { |
| 989 | dev_err(&pdev->dev, "no IRQ defined\n"); |
| 990 | goto out3; |
| 991 | } |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 992 | host->irq = r->start; |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 993 | |
| 994 | mmc->ops = &au1xmmc_ops; |
| 995 | |
| 996 | mmc->f_min = 450000; |
| 997 | mmc->f_max = 24000000; |
| 998 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 999 | mmc->max_blk_size = 2048; |
| 1000 | mmc->max_blk_count = 512; |
| 1001 | |
| 1002 | mmc->ocr_avail = AU1XMMC_OCR; |
| Manuel Lauss | 20f522f | 2008-06-09 08:38:03 +0200 | [diff] [blame] | 1003 | mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ; |
| Manuel Lauss | 809f36c | 2011-11-01 20:03:30 +0100 | [diff] [blame] | 1004 | mmc->max_segs = AU1XMMC_DESCRIPTOR_COUNT; |
| 1005 | |
| 1006 | iflag = IRQF_SHARED; /* Au1100/Au1200: one int for both ctrls */ |
| 1007 | |
| 1008 | switch (alchemy_get_cputype()) { |
| 1009 | case ALCHEMY_CPU_AU1100: |
| 1010 | mmc->max_seg_size = AU1100_MMC_DESCRIPTOR_SIZE; |
| 1011 | break; |
| 1012 | case ALCHEMY_CPU_AU1200: |
| 1013 | mmc->max_seg_size = AU1200_MMC_DESCRIPTOR_SIZE; |
| 1014 | break; |
| 1015 | case ALCHEMY_CPU_AU1300: |
| 1016 | iflag = 0; /* nothing is shared */ |
| 1017 | mmc->max_seg_size = AU1200_MMC_DESCRIPTOR_SIZE; |
| 1018 | mmc->f_max = 52000000; |
| 1019 | if (host->ioarea->start == AU1100_SD0_PHYS_ADDR) |
| 1020 | mmc->caps |= MMC_CAP_8_BIT_DATA; |
| 1021 | break; |
| 1022 | } |
| 1023 | |
| 1024 | ret = request_irq(host->irq, au1xmmc_irq, iflag, DRIVER_NAME, host); |
| 1025 | if (ret) { |
| 1026 | dev_err(&pdev->dev, "cannot grab IRQ\n"); |
| 1027 | goto out3; |
| 1028 | } |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1029 | |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 1030 | host->clk = clk_get(&pdev->dev, ALCHEMY_PERIPH_CLK); |
| 1031 | if (IS_ERR(host->clk)) { |
| 1032 | dev_err(&pdev->dev, "cannot find clock\n"); |
| Wei Yongjun | ee9d19d | 2014-08-14 09:00:19 +0800 | [diff] [blame] | 1033 | ret = PTR_ERR(host->clk); |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 1034 | goto out_irq; |
| 1035 | } |
| Wei Yongjun | ee9d19d | 2014-08-14 09:00:19 +0800 | [diff] [blame] | 1036 | |
| 1037 | ret = clk_prepare_enable(host->clk); |
| 1038 | if (ret) { |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 1039 | dev_err(&pdev->dev, "cannot enable clock\n"); |
| 1040 | goto out_clk; |
| 1041 | } |
| 1042 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1043 | host->status = HOST_S_IDLE; |
| 1044 | |
| 1045 | /* board-specific carddetect setup, if any */ |
| 1046 | if (host->platdata && host->platdata->cd_setup) { |
| 1047 | ret = host->platdata->cd_setup(mmc, 1); |
| 1048 | if (ret) { |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 1049 | dev_warn(&pdev->dev, "board CD setup failed\n"); |
| 1050 | mmc->caps |= MMC_CAP_NEEDS_POLL; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1051 | } |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 1052 | } else |
| 1053 | mmc->caps |= MMC_CAP_NEEDS_POLL; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1054 | |
| Manuel Lauss | 3b83907 | 2009-10-14 09:38:06 +0200 | [diff] [blame] | 1055 | /* platform may not be able to use all advertised caps */ |
| 1056 | if (host->platdata) |
| 1057 | mmc->caps &= ~(host->platdata->mask_host_caps); |
| 1058 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1059 | tasklet_init(&host->data_task, au1xmmc_tasklet_data, |
| 1060 | (unsigned long)host); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1061 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1062 | tasklet_init(&host->finish_task, au1xmmc_tasklet_finish, |
| 1063 | (unsigned long)host); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1064 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1065 | if (has_dbdma()) { |
| 1066 | ret = au1xmmc_dbdma_init(host); |
| 1067 | if (ret) |
| Linus Torvalds | d674806 | 2011-11-03 13:28:14 -0700 | [diff] [blame] | 1068 | pr_info(DRIVER_NAME ": DBDMA init failed; using PIO\n"); |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1069 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1070 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1071 | #ifdef CONFIG_LEDS_CLASS |
| 1072 | if (host->platdata && host->platdata->led) { |
| 1073 | struct led_classdev *led = host->platdata->led; |
| 1074 | led->name = mmc_hostname(mmc); |
| 1075 | led->brightness = LED_OFF; |
| 1076 | led->default_trigger = mmc_hostname(mmc); |
| 1077 | ret = led_classdev_register(mmc_dev(mmc), led); |
| 1078 | if (ret) |
| 1079 | goto out5; |
| 1080 | } |
| 1081 | #endif |
| Pierre Ossman | fe4a3c7 | 2006-11-21 17:54:23 +0100 | [diff] [blame] | 1082 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1083 | au1xmmc_reset_controller(host); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1084 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1085 | ret = mmc_add_host(mmc); |
| 1086 | if (ret) { |
| 1087 | dev_err(&pdev->dev, "cannot add mmc host\n"); |
| 1088 | goto out6; |
| 1089 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1090 | |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1091 | platform_set_drvdata(pdev, host); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1092 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 1093 | pr_info(DRIVER_NAME ": MMC Controller %d set up at %p" |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1094 | " (mode=%s)\n", pdev->id, host->iobase, |
| 1095 | host->flags & HOST_F_DMA ? "dma" : "pio"); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1096 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1097 | return 0; /* all ok */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1098 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1099 | out6: |
| 1100 | #ifdef CONFIG_LEDS_CLASS |
| 1101 | if (host->platdata && host->platdata->led) |
| 1102 | led_classdev_unregister(host->platdata->led); |
| 1103 | out5: |
| 1104 | #endif |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 1105 | __raw_writel(0, HOST_ENABLE(host)); |
| 1106 | __raw_writel(0, HOST_CONFIG(host)); |
| 1107 | __raw_writel(0, HOST_CONFIG2(host)); |
| 1108 | wmb(); /* drain writebuffer */ |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1109 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1110 | if (host->flags & HOST_F_DBDMA) |
| 1111 | au1xmmc_dbdma_shutdown(host); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1112 | |
| 1113 | tasklet_kill(&host->data_task); |
| 1114 | tasklet_kill(&host->finish_task); |
| 1115 | |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 1116 | if (host->platdata && host->platdata->cd_setup && |
| 1117 | !(mmc->caps & MMC_CAP_NEEDS_POLL)) |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1118 | host->platdata->cd_setup(mmc, 0); |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 1119 | out_clk: |
| 1120 | clk_disable_unprepare(host->clk); |
| 1121 | clk_put(host->clk); |
| 1122 | out_irq: |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1123 | free_irq(host->irq, host); |
| 1124 | out3: |
| 1125 | iounmap((void *)host->iobase); |
| 1126 | out2: |
| 1127 | release_resource(host->ioarea); |
| 1128 | kfree(host->ioarea); |
| 1129 | out1: |
| 1130 | mmc_free_host(mmc); |
| 1131 | out0: |
| 1132 | return ret; |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
| Bill Pemberton | 6e0ee71 | 2012-11-19 13:26:03 -0500 | [diff] [blame] | 1135 | static int au1xmmc_remove(struct platform_device *pdev) |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1136 | { |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1137 | struct au1xmmc_host *host = platform_get_drvdata(pdev); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1138 | |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1139 | if (host) { |
| 1140 | mmc_remove_host(host->mmc); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1141 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1142 | #ifdef CONFIG_LEDS_CLASS |
| 1143 | if (host->platdata && host->platdata->led) |
| 1144 | led_classdev_unregister(host->platdata->led); |
| 1145 | #endif |
| 1146 | |
| Manuel Lauss | e2d2647 | 2008-06-27 18:25:18 +0200 | [diff] [blame] | 1147 | if (host->platdata && host->platdata->cd_setup && |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1148 | !(host->mmc->caps & MMC_CAP_NEEDS_POLL)) |
| 1149 | host->platdata->cd_setup(host->mmc, 0); |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1150 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 1151 | __raw_writel(0, HOST_ENABLE(host)); |
| 1152 | __raw_writel(0, HOST_CONFIG(host)); |
| 1153 | __raw_writel(0, HOST_CONFIG2(host)); |
| 1154 | wmb(); /* drain writebuffer */ |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1155 | |
| 1156 | tasklet_kill(&host->data_task); |
| 1157 | tasklet_kill(&host->finish_task); |
| 1158 | |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1159 | if (host->flags & HOST_F_DBDMA) |
| 1160 | au1xmmc_dbdma_shutdown(host); |
| 1161 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1162 | au1xmmc_set_power(host, 0); |
| 1163 | |
| Manuel Lauss | b650759 | 2014-07-23 16:36:56 +0200 | [diff] [blame] | 1164 | clk_disable_unprepare(host->clk); |
| 1165 | clk_put(host->clk); |
| 1166 | |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1167 | free_irq(host->irq, host); |
| 1168 | iounmap((void *)host->iobase); |
| 1169 | release_resource(host->ioarea); |
| 1170 | kfree(host->ioarea); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1171 | |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1172 | mmc_free_host(host->mmc); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1173 | } |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1174 | return 0; |
| 1175 | } |
| 1176 | |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1177 | #ifdef CONFIG_PM |
| 1178 | static int au1xmmc_suspend(struct platform_device *pdev, pm_message_t state) |
| 1179 | { |
| 1180 | struct au1xmmc_host *host = platform_get_drvdata(pdev); |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1181 | |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 1182 | __raw_writel(0, HOST_CONFIG2(host)); |
| 1183 | __raw_writel(0, HOST_CONFIG(host)); |
| 1184 | __raw_writel(0xffffffff, HOST_STATUS(host)); |
| 1185 | __raw_writel(0, HOST_ENABLE(host)); |
| 1186 | wmb(); /* drain writebuffer */ |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1187 | |
| 1188 | return 0; |
| 1189 | } |
| 1190 | |
| 1191 | static int au1xmmc_resume(struct platform_device *pdev) |
| 1192 | { |
| 1193 | struct au1xmmc_host *host = platform_get_drvdata(pdev); |
| 1194 | |
| 1195 | au1xmmc_reset_controller(host); |
| 1196 | |
| Ulf Hansson | 1e63d48 | 2013-09-25 10:55:23 +0200 | [diff] [blame] | 1197 | return 0; |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1198 | } |
| 1199 | #else |
| 1200 | #define au1xmmc_suspend NULL |
| 1201 | #define au1xmmc_resume NULL |
| 1202 | #endif |
| 1203 | |
| Martin Michlmayr | b256f9d | 2006-03-04 23:01:13 +0000 | [diff] [blame] | 1204 | static struct platform_driver au1xmmc_driver = { |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1205 | .probe = au1xmmc_probe, |
| 1206 | .remove = au1xmmc_remove, |
| Manuel Lauss | dd8572a | 2008-07-17 13:07:28 +0200 | [diff] [blame] | 1207 | .suspend = au1xmmc_suspend, |
| 1208 | .resume = au1xmmc_resume, |
| Martin Michlmayr | b256f9d | 2006-03-04 23:01:13 +0000 | [diff] [blame] | 1209 | .driver = { |
| 1210 | .name = DRIVER_NAME, |
| 1211 | }, |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1212 | }; |
| 1213 | |
| 1214 | static int __init au1xmmc_init(void) |
| 1215 | { |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1216 | if (has_dbdma()) { |
| 1217 | /* DSCR_CMD0_ALWAYS has a stride of 32 bits, we need a stride |
| 1218 | * of 8 bits. And since devices are shared, we need to create |
| 1219 | * our own to avoid freaking out other devices. |
| 1220 | */ |
| 1221 | memid = au1xxx_ddma_add_device(&au1xmmc_mem_dbdev); |
| 1222 | if (!memid) |
| Linus Torvalds | d674806 | 2011-11-03 13:28:14 -0700 | [diff] [blame] | 1223 | pr_err("au1xmmc: cannot add memory dbdma\n"); |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1224 | } |
| Martin Michlmayr | b256f9d | 2006-03-04 23:01:13 +0000 | [diff] [blame] | 1225 | return platform_driver_register(&au1xmmc_driver); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1226 | } |
| 1227 | |
| 1228 | static void __exit au1xmmc_exit(void) |
| 1229 | { |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1230 | if (has_dbdma() && memid) |
| Manuel Lauss | c4223c2 | 2008-06-09 08:36:13 +0200 | [diff] [blame] | 1231 | au1xxx_ddma_del_device(memid); |
| Manuel Lauss | 1177d99 | 2011-08-02 19:51:07 +0200 | [diff] [blame] | 1232 | |
| Martin Michlmayr | b256f9d | 2006-03-04 23:01:13 +0000 | [diff] [blame] | 1233 | platform_driver_unregister(&au1xmmc_driver); |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1234 | } |
| 1235 | |
| 1236 | module_init(au1xmmc_init); |
| 1237 | module_exit(au1xmmc_exit); |
| 1238 | |
| Pete Popov | ba264b3 | 2005-09-21 06:18:27 +0000 | [diff] [blame] | 1239 | MODULE_AUTHOR("Advanced Micro Devices, Inc"); |
| 1240 | MODULE_DESCRIPTION("MMC/SD driver for the Alchemy Au1XXX"); |
| 1241 | MODULE_LICENSE("GPL"); |
| Kay Sievers | bc65c72 | 2008-04-15 14:34:28 -0700 | [diff] [blame] | 1242 | MODULE_ALIAS("platform:au1xxx-mmc"); |