tmio_mmc.h 8.1 KB
Newer Older
1 2 3
/*
 * linux/drivers/mmc/host/tmio_mmc.h
 *
4 5
 * Copyright (C) 2016 Sang Engineering, Wolfram Sang
 * Copyright (C) 2015-16 Renesas Electronics Corporation
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Copyright (C) 2007 Ian Molton
 * Copyright (C) 2004 Ian Molton
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * Driver for the MMC / SD / SDIO cell found in:
 *
 * TC6393XB TC6391XB TC6387XB T7L66XB ASIC3
 */

#ifndef TMIO_MMC_H
#define TMIO_MMC_H

21
#include <linux/dmaengine.h>
22
#include <linux/highmem.h>
23
#include <linux/mutex.h>
24
#include <linux/pagemap.h>
25
#include <linux/scatterlist.h>
26
#include <linux/spinlock.h>
27

28 29 30 31 32
#define CTL_SD_CMD 0x00
#define CTL_ARG_REG 0x04
#define CTL_STOP_INTERNAL_ACTION 0x08
#define CTL_XFER_BLK_COUNT 0xa
#define CTL_RESPONSE 0x0c
33
/* driver merges STATUS and following STATUS2 */
34
#define CTL_STATUS 0x1c
35
/* driver merges IRQ_MASK and following IRQ_MASK2 */
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
#define CTL_IRQ_MASK 0x20
#define CTL_SD_CARD_CLK_CTL 0x24
#define CTL_SD_XFER_LEN 0x26
#define CTL_SD_MEM_CARD_OPT 0x28
#define CTL_SD_ERROR_DETAIL_STATUS 0x2c
#define CTL_SD_DATA_PORT 0x30
#define CTL_TRANSACTION_CTL 0x34
#define CTL_SDIO_STATUS 0x36
#define CTL_SDIO_IRQ_MASK 0x38
#define CTL_DMA_ENABLE 0xd8
#define CTL_RESET_SD 0xe0
#define CTL_VERSION 0xe2
#define CTL_SDIO_REGS 0x100
#define CTL_CLK_AND_WAIT_CTL 0x138
#define CTL_RESET_SDIO 0x1e0

/* Definitions for values the CTRL_STATUS register can take. */
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
#define TMIO_STAT_CMDRESPEND    BIT(0)
#define TMIO_STAT_DATAEND       BIT(2)
#define TMIO_STAT_CARD_REMOVE   BIT(3)
#define TMIO_STAT_CARD_INSERT   BIT(4)
#define TMIO_STAT_SIGSTATE      BIT(5)
#define TMIO_STAT_WRPROTECT     BIT(7)
#define TMIO_STAT_CARD_REMOVE_A BIT(8)
#define TMIO_STAT_CARD_INSERT_A BIT(9)
#define TMIO_STAT_SIGSTATE_A    BIT(10)

/* These belong technically to CTRL_STATUS2, but the driver merges them */
#define TMIO_STAT_CMD_IDX_ERR   BIT(16)
#define TMIO_STAT_CRCFAIL       BIT(17)
#define TMIO_STAT_STOPBIT_ERR   BIT(18)
#define TMIO_STAT_DATATIMEOUT   BIT(19)
#define TMIO_STAT_RXOVERFLOW    BIT(20)
#define TMIO_STAT_TXUNDERRUN    BIT(21)
#define TMIO_STAT_CMDTIMEOUT    BIT(22)
71
#define TMIO_STAT_DAT0		BIT(23)	/* only known on R-Car so far */
72 73
#define TMIO_STAT_RXRDY         BIT(24)
#define TMIO_STAT_TXRQ          BIT(25)
74 75
#define TMIO_STAT_ILL_FUNC      BIT(29) /* only when !TMIO_MMC_HAS_IDLE_WAIT */
#define TMIO_STAT_SCLKDIVEN     BIT(29) /* only when TMIO_MMC_HAS_IDLE_WAIT */
76 77
#define TMIO_STAT_CMD_BUSY      BIT(30)
#define TMIO_STAT_ILL_ACCESS    BIT(31)
78 79 80 81 82 83

#define	CLK_CTL_DIV_MASK	0xff
#define	CLK_CTL_SCLKEN		BIT(8)

#define TMIO_BBS		512		/* Boot block size */

84
/* Definitions for values the CTRL_SDIO_STATUS register can take. */
85
#define TMIO_SDIO_STAT_IOIRQ	0x0001
86
#define TMIO_SDIO_STAT_EXPUB52	0x4000
87 88
#define TMIO_SDIO_STAT_EXWT	0x8000
#define TMIO_SDIO_MASK_ALL	0xc007
89 90 91 92 93 94 95 96 97 98 99

/* Define some IRQ masks */
/* This is the mask used at reset by the chip */
#define TMIO_MASK_ALL           0x837f031d
#define TMIO_MASK_READOP  (TMIO_STAT_RXRDY | TMIO_STAT_DATAEND)
#define TMIO_MASK_WRITEOP (TMIO_STAT_TXRQ | TMIO_STAT_DATAEND)
#define TMIO_MASK_CMD     (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT | \
		TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT)
#define TMIO_MASK_IRQ     (TMIO_MASK_READOP | TMIO_MASK_WRITEOP | TMIO_MASK_CMD)

struct tmio_mmc_data;
100
struct tmio_mmc_host;
101

102
struct tmio_mmc_dma {
103
	enum dma_slave_buswidth dma_buswidth;
104
	bool (*filter)(struct dma_chan *chan, void *arg);
105
	void (*enable)(struct tmio_mmc_host *host, bool enable);
106 107
};

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
struct tmio_mmc_host {
	void __iomem *ctl;
	struct mmc_command      *cmd;
	struct mmc_request      *mrq;
	struct mmc_data         *data;
	struct mmc_host         *mmc;

	/* Callbacks for clock / power control */
	void (*set_pwr)(struct platform_device *host, int state);
	void (*set_clk_div)(struct platform_device *host, int state);

	/* pio related stuff */
	struct scatterlist      *sg_ptr;
	struct scatterlist      *sg_orig;
	unsigned int            sg_len;
	unsigned int            sg_off;
124
	unsigned long		bus_shift;
125 126 127

	struct platform_device *pdev;
	struct tmio_mmc_data *pdata;
128
	struct tmio_mmc_dma	*dma;
129 130 131 132 133 134 135 136 137 138 139 140

	/* DMA support */
	bool			force_pio;
	struct dma_chan		*chan_rx;
	struct dma_chan		*chan_tx;
	struct tasklet_struct	dma_complete;
	struct tasklet_struct	dma_issue;
	struct scatterlist	bounce_sg;
	u8			*bounce_buf;

	/* Track lost interrupts */
	struct delayed_work	delayed_reset_work;
141 142
	struct work_struct	done;

143
	/* Cache */
S
Simon Horman 已提交
144 145
	u32			sdcard_irq_mask;
	u32			sdio_irq_mask;
146
	unsigned int		clk_cache;
S
Simon Horman 已提交
147

148
	spinlock_t		lock;		/* protect host private data */
149
	unsigned long		last_req_ts;
150
	struct mutex		ios_lock;	/* protect set_ios() context */
151
	bool			native_hotplug;
152
	bool			sdio_irq_enabled;
153 154

	int (*write16_hook)(struct tmio_mmc_host *host, int addr);
155
	int (*clk_enable)(struct tmio_mmc_host *host);
156 157
	unsigned int (*clk_update)(struct tmio_mmc_host *host,
				   unsigned int new_clock);
158
	void (*clk_disable)(struct tmio_mmc_host *host);
159 160
	int (*multi_io_quirk)(struct mmc_card *card,
			      unsigned int direction, int blk_size);
W
Wolfram Sang 已提交
161 162
	int (*start_signal_voltage_switch)(struct mmc_host *mmc,
					   struct mmc_ios *ios);
163 164
};

165 166 167
struct tmio_mmc_host *tmio_mmc_host_alloc(struct platform_device *pdev);
void tmio_mmc_host_free(struct tmio_mmc_host *host);
int tmio_mmc_host_probe(struct tmio_mmc_host *host,
168 169 170 171 172 173
			struct tmio_mmc_data *pdata);
void tmio_mmc_host_remove(struct tmio_mmc_host *host);
void tmio_mmc_do_data_irq(struct tmio_mmc_host *host);

void tmio_mmc_enable_mmc_irqs(struct tmio_mmc_host *host, u32 i);
void tmio_mmc_disable_mmc_irqs(struct tmio_mmc_host *host, u32 i);
174
irqreturn_t tmio_mmc_irq(int irq, void *devid);
175 176 177 178 179

static inline char *tmio_mmc_kmap_atomic(struct scatterlist *sg,
					 unsigned long *flags)
{
	local_irq_save(*flags);
180
	return kmap_atomic(sg_page(sg)) + sg->offset;
181 182 183 184 185
}

static inline void tmio_mmc_kunmap_atomic(struct scatterlist *sg,
					  unsigned long *flags, void *virt)
{
186
	kunmap_atomic(virt - sg->offset);
187 188 189
	local_irq_restore(*flags);
}

190
#if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
191
void tmio_mmc_start_dma(struct tmio_mmc_host *host, struct mmc_data *data);
192
void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable);
193 194
void tmio_mmc_request_dma(struct tmio_mmc_host *host, struct tmio_mmc_data *pdata);
void tmio_mmc_release_dma(struct tmio_mmc_host *host);
195
void tmio_mmc_abort_dma(struct tmio_mmc_host *host);
196 197 198 199 200 201
#else
static inline void tmio_mmc_start_dma(struct tmio_mmc_host *host,
			       struct mmc_data *data)
{
}

202 203 204 205
static inline void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable)
{
}

206 207 208 209 210 211 212 213 214 215
static inline void tmio_mmc_request_dma(struct tmio_mmc_host *host,
				 struct tmio_mmc_data *pdata)
{
	host->chan_tx = NULL;
	host->chan_rx = NULL;
}

static inline void tmio_mmc_release_dma(struct tmio_mmc_host *host)
{
}
216 217 218 219

static inline void tmio_mmc_abort_dma(struct tmio_mmc_host *host)
{
}
220 221
#endif

222
#ifdef CONFIG_PM
223 224
int tmio_mmc_host_runtime_suspend(struct device *dev);
int tmio_mmc_host_runtime_resume(struct device *dev);
225
#endif
226

227 228
static inline u16 sd_ctrl_read16(struct tmio_mmc_host *host, int addr)
{
229
	return readw(host->ctl + (addr << host->bus_shift));
230 231 232 233 234
}

static inline void sd_ctrl_read16_rep(struct tmio_mmc_host *host, int addr,
		u16 *buf, int count)
{
235
	readsw(host->ctl + (addr << host->bus_shift), buf, count);
236 237
}

238
static inline u32 sd_ctrl_read16_and_16_as_32(struct tmio_mmc_host *host, int addr)
239
{
240 241
	return readw(host->ctl + (addr << host->bus_shift)) |
	       readw(host->ctl + ((addr + 2) << host->bus_shift)) << 16;
242 243 244 245
}

static inline void sd_ctrl_write16(struct tmio_mmc_host *host, int addr, u16 val)
{
S
Simon Horman 已提交
246 247 248
	/* If there is a hook and it returns non-zero then there
	 * is an error and the write should be skipped
	 */
249
	if (host->write16_hook && host->write16_hook(host, addr))
S
Simon Horman 已提交
250
		return;
251
	writew(val, host->ctl + (addr << host->bus_shift));
252 253 254 255 256
}

static inline void sd_ctrl_write16_rep(struct tmio_mmc_host *host, int addr,
		u16 *buf, int count)
{
257
	writesw(host->ctl + (addr << host->bus_shift), buf, count);
258 259
}

260
static inline void sd_ctrl_write32_as_16_and_16(struct tmio_mmc_host *host, int addr, u32 val)
261
{
262 263
	writew(val, host->ctl + (addr << host->bus_shift));
	writew(val >> 16, host->ctl + ((addr + 2) << host->bus_shift));
264 265
}

266
#endif