blob: 8531d8d44fc139526109cc0e2141651a9548d324 [file] [log] [blame]
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001/*
2 * linux/drivers/mmc/host/tmio_mmc.h
3 *
4 * Copyright (C) 2007 Ian Molton
5 * Copyright (C) 2004 Ian Molton
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Driver for the MMC / SD / SDIO cell found in:
12 *
13 * TC6393XB TC6391XB TC6387XB T7L66XB ASIC3
14 */
15
16#ifndef TMIO_MMC_H
17#define TMIO_MMC_H
18
19#include <linux/highmem.h>
Simon Hormancba179a2011-03-24 09:48:36 +010020#include <linux/mmc/tmio.h>
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +020021#include <linux/mutex.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010022#include <linux/pagemap.h>
Rafael J. Wysocki6c0cbef2011-07-26 20:50:23 +020023#include <linux/scatterlist.h>
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +010024#include <linux/spinlock.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010025
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010026/* Definitions for values the CTRL_SDIO_STATUS register can take. */
Simon Hormancba179a2011-03-24 09:48:36 +010027#define TMIO_SDIO_STAT_IOIRQ 0x0001
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010028#define TMIO_SDIO_STAT_EXPUB52 0x4000
Simon Hormancba179a2011-03-24 09:48:36 +010029#define TMIO_SDIO_STAT_EXWT 0x8000
30#define TMIO_SDIO_MASK_ALL 0xc007
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010031
32/* Define some IRQ masks */
33/* This is the mask used at reset by the chip */
34#define TMIO_MASK_ALL 0x837f031d
35#define TMIO_MASK_READOP (TMIO_STAT_RXRDY | TMIO_STAT_DATAEND)
36#define TMIO_MASK_WRITEOP (TMIO_STAT_TXRQ | TMIO_STAT_DATAEND)
37#define TMIO_MASK_CMD (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT | \
38 TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT)
39#define TMIO_MASK_IRQ (TMIO_MASK_READOP | TMIO_MASK_WRITEOP | TMIO_MASK_CMD)
40
41struct tmio_mmc_data;
42
43struct tmio_mmc_host {
44 void __iomem *ctl;
45 unsigned long bus_shift;
46 struct mmc_command *cmd;
47 struct mmc_request *mrq;
48 struct mmc_data *data;
49 struct mmc_host *mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010050 unsigned int sdio_irq_enabled;
51
52 /* Callbacks for clock / power control */
53 void (*set_pwr)(struct platform_device *host, int state);
54 void (*set_clk_div)(struct platform_device *host, int state);
55
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +000056 int pm_error;
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +020057 /* recognise system-wide suspend in runtime PM methods */
58 bool pm_global;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +000059
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010060 /* pio related stuff */
61 struct scatterlist *sg_ptr;
62 struct scatterlist *sg_orig;
63 unsigned int sg_len;
64 unsigned int sg_off;
65
66 struct platform_device *pdev;
67 struct tmio_mmc_data *pdata;
68
69 /* DMA support */
70 bool force_pio;
71 struct dma_chan *chan_rx;
72 struct dma_chan *chan_tx;
73 struct tasklet_struct dma_complete;
74 struct tasklet_struct dma_issue;
75 struct scatterlist bounce_sg;
76 u8 *bounce_buf;
77
78 /* Track lost interrupts */
79 struct delayed_work delayed_reset_work;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +020080 struct work_struct done;
81
Simon Horman54680fe2011-08-25 10:27:25 +090082 /* Cache IRQ mask */
83 u32 sdcard_irq_mask;
84 u32 sdio_irq_mask;
85
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +020086 spinlock_t lock; /* protect host private data */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010087 unsigned long last_req_ts;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +020088 struct mutex ios_lock; /* protect set_ios() context */
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +010089 bool native_hotplug;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010090};
91
92int tmio_mmc_host_probe(struct tmio_mmc_host **host,
93 struct platform_device *pdev,
94 struct tmio_mmc_data *pdata);
95void tmio_mmc_host_remove(struct tmio_mmc_host *host);
96void tmio_mmc_do_data_irq(struct tmio_mmc_host *host);
97
98void tmio_mmc_enable_mmc_irqs(struct tmio_mmc_host *host, u32 i);
99void tmio_mmc_disable_mmc_irqs(struct tmio_mmc_host *host, u32 i);
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000100irqreturn_t tmio_mmc_irq(int irq, void *devid);
Simon Horman7729c7a2011-08-25 10:27:26 +0900101irqreturn_t tmio_mmc_sdcard_irq(int irq, void *devid);
102irqreturn_t tmio_mmc_card_detect_irq(int irq, void *devid);
103irqreturn_t tmio_mmc_sdio_irq(int irq, void *devid);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100104
105static inline char *tmio_mmc_kmap_atomic(struct scatterlist *sg,
106 unsigned long *flags)
107{
108 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800109 return kmap_atomic(sg_page(sg)) + sg->offset;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100110}
111
112static inline void tmio_mmc_kunmap_atomic(struct scatterlist *sg,
113 unsigned long *flags, void *virt)
114{
Cong Wang482fce92011-11-27 13:27:00 +0800115 kunmap_atomic(virt - sg->offset);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100116 local_irq_restore(*flags);
117}
118
Guennadi Liakhovetski42051e82011-03-14 09:52:33 +0100119#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100120void tmio_mmc_start_dma(struct tmio_mmc_host *host, struct mmc_data *data);
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +0200121void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100122void tmio_mmc_request_dma(struct tmio_mmc_host *host, struct tmio_mmc_data *pdata);
123void tmio_mmc_release_dma(struct tmio_mmc_host *host);
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100124void tmio_mmc_abort_dma(struct tmio_mmc_host *host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100125#else
126static inline void tmio_mmc_start_dma(struct tmio_mmc_host *host,
127 struct mmc_data *data)
128{
129}
130
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +0200131static inline void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable)
132{
133}
134
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100135static inline void tmio_mmc_request_dma(struct tmio_mmc_host *host,
136 struct tmio_mmc_data *pdata)
137{
138 host->chan_tx = NULL;
139 host->chan_rx = NULL;
140}
141
142static inline void tmio_mmc_release_dma(struct tmio_mmc_host *host)
143{
144}
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100145
146static inline void tmio_mmc_abort_dma(struct tmio_mmc_host *host)
147{
148}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100149#endif
150
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +0000151#ifdef CONFIG_PM
152int tmio_mmc_host_suspend(struct device *dev);
153int tmio_mmc_host_resume(struct device *dev);
154#else
155#define tmio_mmc_host_suspend NULL
156#define tmio_mmc_host_resume NULL
157#endif
158
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +0000159int tmio_mmc_host_runtime_suspend(struct device *dev);
160int tmio_mmc_host_runtime_resume(struct device *dev);
161
Simon Hormana11862d2011-06-21 08:00:09 +0900162static inline u16 sd_ctrl_read16(struct tmio_mmc_host *host, int addr)
163{
164 return readw(host->ctl + (addr << host->bus_shift));
165}
166
167static inline void sd_ctrl_read16_rep(struct tmio_mmc_host *host, int addr,
168 u16 *buf, int count)
169{
170 readsw(host->ctl + (addr << host->bus_shift), buf, count);
171}
172
173static inline u32 sd_ctrl_read32(struct tmio_mmc_host *host, int addr)
174{
175 return readw(host->ctl + (addr << host->bus_shift)) |
176 readw(host->ctl + ((addr + 2) << host->bus_shift)) << 16;
177}
178
179static inline void sd_ctrl_write16(struct tmio_mmc_host *host, int addr, u16 val)
180{
Simon Horman973ed3a2011-06-21 08:00:10 +0900181 /* If there is a hook and it returns non-zero then there
182 * is an error and the write should be skipped
183 */
184 if (host->pdata->write16_hook && host->pdata->write16_hook(host, addr))
185 return;
Simon Hormana11862d2011-06-21 08:00:09 +0900186 writew(val, host->ctl + (addr << host->bus_shift));
187}
188
189static inline void sd_ctrl_write16_rep(struct tmio_mmc_host *host, int addr,
190 u16 *buf, int count)
191{
192 writesw(host->ctl + (addr << host->bus_shift), buf, count);
193}
194
195static inline void sd_ctrl_write32(struct tmio_mmc_host *host, int addr, u32 val)
196{
197 writew(val, host->ctl + (addr << host->bus_shift));
198 writew(val >> 16, host->ctl + ((addr + 2) << host->bus_shift));
199}
200
201
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100202#endif