aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/tmio_mmc.c
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>2010-11-23 11:24:11 -0500
committerChris Ball <cjb@laptop.org>2011-01-08 23:52:28 -0500
commite0bc6ff8b8d5c066d978d23e690d5599db4cb2b3 (patch)
tree47cfe71765c022062c3dea421dd647e644e52285 /drivers/mmc/host/tmio_mmc.c
parentef17fee1e559b3faeb6f89963e78ad47731d18a1 (diff)
mmc: tmio_mmc: merge the private header into the driver
drivers/mmc/host/tmio_mmc.h is only used by drivers/mmc/host/tmio_mmc.c, this needlessly complicates source-code handling. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host/tmio_mmc.c')
-rw-r--r--drivers/mmc/host/tmio_mmc.c215
1 files changed, 210 insertions, 5 deletions
diff --git a/drivers/mmc/host/tmio_mmc.c b/drivers/mmc/host/tmio_mmc.c
index 63115a6de935..e04c032abb1c 100644
--- a/drivers/mmc/host/tmio_mmc.c
+++ b/drivers/mmc/host/tmio_mmc.c
@@ -25,16 +25,221 @@
25 * double buffer support 25 * double buffer support
26 * 26 *
27 */ 27 */
28#include <linux/module.h> 28
29#include <linux/irq.h>
30#include <linux/device.h>
31#include <linux/delay.h> 29#include <linux/delay.h>
30#include <linux/device.h>
32#include <linux/dmaengine.h> 31#include <linux/dmaengine.h>
33#include <linux/mmc/host.h> 32#include <linux/highmem.h>
33#include <linux/interrupt.h>
34#include <linux/io.h>
35#include <linux/irq.h>
34#include <linux/mfd/core.h> 36#include <linux/mfd/core.h>
35#include <linux/mfd/tmio.h> 37#include <linux/mfd/tmio.h>
38#include <linux/mmc/host.h>
39#include <linux/module.h>
40#include <linux/pagemap.h>
41#include <linux/scatterlist.h>
42
43#define CTL_SD_CMD 0x00
44#define CTL_ARG_REG 0x04
45#define CTL_STOP_INTERNAL_ACTION 0x08
46#define CTL_XFER_BLK_COUNT 0xa
47#define CTL_RESPONSE 0x0c
48#define CTL_STATUS 0x1c
49#define CTL_IRQ_MASK 0x20
50#define CTL_SD_CARD_CLK_CTL 0x24
51#define CTL_SD_XFER_LEN 0x26
52#define CTL_SD_MEM_CARD_OPT 0x28
53#define CTL_SD_ERROR_DETAIL_STATUS 0x2c
54#define CTL_SD_DATA_PORT 0x30
55#define CTL_TRANSACTION_CTL 0x34
56#define CTL_RESET_SD 0xe0
57#define CTL_SDIO_REGS 0x100
58#define CTL_CLK_AND_WAIT_CTL 0x138
59#define CTL_RESET_SDIO 0x1e0
60
61/* Definitions for values the CTRL_STATUS register can take. */
62#define TMIO_STAT_CMDRESPEND 0x00000001
63#define TMIO_STAT_DATAEND 0x00000004
64#define TMIO_STAT_CARD_REMOVE 0x00000008
65#define TMIO_STAT_CARD_INSERT 0x00000010
66#define TMIO_STAT_SIGSTATE 0x00000020
67#define TMIO_STAT_WRPROTECT 0x00000080
68#define TMIO_STAT_CARD_REMOVE_A 0x00000100
69#define TMIO_STAT_CARD_INSERT_A 0x00000200
70#define TMIO_STAT_SIGSTATE_A 0x00000400
71#define TMIO_STAT_CMD_IDX_ERR 0x00010000
72#define TMIO_STAT_CRCFAIL 0x00020000
73#define TMIO_STAT_STOPBIT_ERR 0x00040000
74#define TMIO_STAT_DATATIMEOUT 0x00080000
75#define TMIO_STAT_RXOVERFLOW 0x00100000
76#define TMIO_STAT_TXUNDERRUN 0x00200000
77#define TMIO_STAT_CMDTIMEOUT 0x00400000
78#define TMIO_STAT_RXRDY 0x01000000
79#define TMIO_STAT_TXRQ 0x02000000
80#define TMIO_STAT_ILL_FUNC 0x20000000
81#define TMIO_STAT_CMD_BUSY 0x40000000
82#define TMIO_STAT_ILL_ACCESS 0x80000000
83
84/* Define some IRQ masks */
85/* This is the mask used at reset by the chip */
86#define TMIO_MASK_ALL 0x837f031d
87#define TMIO_MASK_READOP (TMIO_STAT_RXRDY | TMIO_STAT_DATAEND)
88#define TMIO_MASK_WRITEOP (TMIO_STAT_TXRQ | TMIO_STAT_DATAEND)
89#define TMIO_MASK_CMD (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT | \
90 TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT)
91#define TMIO_MASK_IRQ (TMIO_MASK_READOP | TMIO_MASK_WRITEOP | TMIO_MASK_CMD)
92
93#define enable_mmc_irqs(host, i) \
94 do { \
95 u32 mask;\
96 mask = sd_ctrl_read32((host), CTL_IRQ_MASK); \
97 mask &= ~((i) & TMIO_MASK_IRQ); \
98 sd_ctrl_write32((host), CTL_IRQ_MASK, mask); \
99 } while (0)
100
101#define disable_mmc_irqs(host, i) \
102 do { \
103 u32 mask;\
104 mask = sd_ctrl_read32((host), CTL_IRQ_MASK); \
105 mask |= ((i) & TMIO_MASK_IRQ); \
106 sd_ctrl_write32((host), CTL_IRQ_MASK, mask); \
107 } while (0)
108
109#define ack_mmc_irqs(host, i) \
110 do { \
111 sd_ctrl_write32((host), CTL_STATUS, ~(i)); \
112 } while (0)
113
114
115struct tmio_mmc_host {
116 void __iomem *ctl;
117 unsigned long bus_shift;
118 struct mmc_command *cmd;
119 struct mmc_request *mrq;
120 struct mmc_data *data;
121 struct mmc_host *mmc;
122 int irq;
123
124 /* Callbacks for clock / power control */
125 void (*set_pwr)(struct platform_device *host, int state);
126 void (*set_clk_div)(struct platform_device *host, int state);
127
128 /* pio related stuff */
129 struct scatterlist *sg_ptr;
130 unsigned int sg_len;
131 unsigned int sg_off;
132
133 struct platform_device *pdev;
134
135 /* DMA support */
136 struct dma_chan *chan_rx;
137 struct dma_chan *chan_tx;
138 struct tasklet_struct dma_complete;
139 struct tasklet_struct dma_issue;
140#ifdef CONFIG_TMIO_MMC_DMA
141 unsigned int dma_sglen;
142#endif
143};
36 144
37#include "tmio_mmc.h" 145static u16 sd_ctrl_read16(struct tmio_mmc_host *host, int addr)
146{
147 return readw(host->ctl + (addr << host->bus_shift));
148}
149
150static void sd_ctrl_read16_rep(struct tmio_mmc_host *host, int addr,
151 u16 *buf, int count)
152{
153 readsw(host->ctl + (addr << host->bus_shift), buf, count);
154}
155
156static u32 sd_ctrl_read32(struct tmio_mmc_host *host, int addr)
157{
158 return readw(host->ctl + (addr << host->bus_shift)) |
159 readw(host->ctl + ((addr + 2) << host->bus_shift)) << 16;
160}
161
162static void sd_ctrl_write16(struct tmio_mmc_host *host, int addr, u16 val)
163{
164 writew(val, host->ctl + (addr << host->bus_shift));
165}
166
167static void sd_ctrl_write16_rep(struct tmio_mmc_host *host, int addr,
168 u16 *buf, int count)
169{
170 writesw(host->ctl + (addr << host->bus_shift), buf, count);
171}
172
173static void sd_ctrl_write32(struct tmio_mmc_host *host, int addr, u32 val)
174{
175 writew(val, host->ctl + (addr << host->bus_shift));
176 writew(val >> 16, host->ctl + ((addr + 2) << host->bus_shift));
177}
178
179static void tmio_mmc_init_sg(struct tmio_mmc_host *host, struct mmc_data *data)
180{
181 host->sg_len = data->sg_len;
182 host->sg_ptr = data->sg;
183 host->sg_off = 0;
184}
185
186static int tmio_mmc_next_sg(struct tmio_mmc_host *host)
187{
188 host->sg_ptr = sg_next(host->sg_ptr);
189 host->sg_off = 0;
190 return --host->sg_len;
191}
192
193static char *tmio_mmc_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
194{
195 local_irq_save(*flags);
196 return kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset;
197}
198
199static void tmio_mmc_kunmap_atomic(void *virt, unsigned long *flags)
200{
201 kunmap_atomic(virt, KM_BIO_SRC_IRQ);
202 local_irq_restore(*flags);
203}
204
205#ifdef CONFIG_MMC_DEBUG
206
207#define STATUS_TO_TEXT(a) \
208 do { \
209 if (status & TMIO_STAT_##a) \
210 printk(#a); \
211 } while (0)
212
213void pr_debug_status(u32 status)
214{
215 printk(KERN_DEBUG "status: %08x = ", status);
216 STATUS_TO_TEXT(CARD_REMOVE);
217 STATUS_TO_TEXT(CARD_INSERT);
218 STATUS_TO_TEXT(SIGSTATE);
219 STATUS_TO_TEXT(WRPROTECT);
220 STATUS_TO_TEXT(CARD_REMOVE_A);
221 STATUS_TO_TEXT(CARD_INSERT_A);
222 STATUS_TO_TEXT(SIGSTATE_A);
223 STATUS_TO_TEXT(CMD_IDX_ERR);
224 STATUS_TO_TEXT(STOPBIT_ERR);
225 STATUS_TO_TEXT(ILL_FUNC);
226 STATUS_TO_TEXT(CMD_BUSY);
227 STATUS_TO_TEXT(CMDRESPEND);
228 STATUS_TO_TEXT(DATAEND);
229 STATUS_TO_TEXT(CRCFAIL);
230 STATUS_TO_TEXT(DATATIMEOUT);
231 STATUS_TO_TEXT(CMDTIMEOUT);
232 STATUS_TO_TEXT(RXOVERFLOW);
233 STATUS_TO_TEXT(TXUNDERRUN);
234 STATUS_TO_TEXT(RXRDY);
235 STATUS_TO_TEXT(TXRQ);
236 STATUS_TO_TEXT(ILL_ACCESS);
237 printk("\n");
238}
239
240#else
241#define pr_debug_status(s) do { } while (0)
242#endif
38 243
39static void tmio_mmc_set_clock(struct tmio_mmc_host *host, int new_clock) 244static void tmio_mmc_set_clock(struct tmio_mmc_host *host, int new_clock)
40{ 245{