blob: 01b99e8a919073b10dace3daea7b8444f70b0e9b [file] [log] [blame]
Will Newtonf95f3852011-01-02 01:11:59 -05001/*
2 * Synopsys DesignWare Multimedia Card Interface driver
3 * (Based on NXP driver for lpc 31xx)
4 *
5 * Copyright (C) 2009 NXP Semiconductors
6 * Copyright (C) 2009, 2010 Imagination Technologies Ltd.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#ifndef _DW_MMC_H_
15#define _DW_MMC_H_
16
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +090017#define DW_MMC_240A 0x240a
18
Will Newtonf95f3852011-01-02 01:11:59 -050019#define SDMMC_CTRL 0x000
20#define SDMMC_PWREN 0x004
21#define SDMMC_CLKDIV 0x008
22#define SDMMC_CLKSRC 0x00c
23#define SDMMC_CLKENA 0x010
24#define SDMMC_TMOUT 0x014
25#define SDMMC_CTYPE 0x018
26#define SDMMC_BLKSIZ 0x01c
27#define SDMMC_BYTCNT 0x020
28#define SDMMC_INTMASK 0x024
29#define SDMMC_CMDARG 0x028
30#define SDMMC_CMD 0x02c
31#define SDMMC_RESP0 0x030
32#define SDMMC_RESP1 0x034
33#define SDMMC_RESP2 0x038
34#define SDMMC_RESP3 0x03c
35#define SDMMC_MINTSTS 0x040
36#define SDMMC_RINTSTS 0x044
37#define SDMMC_STATUS 0x048
38#define SDMMC_FIFOTH 0x04c
39#define SDMMC_CDETECT 0x050
40#define SDMMC_WRTPRT 0x054
41#define SDMMC_GPIO 0x058
42#define SDMMC_TCBCNT 0x05c
43#define SDMMC_TBBCNT 0x060
44#define SDMMC_DEBNCE 0x064
45#define SDMMC_USRID 0x068
46#define SDMMC_VERID 0x06c
47#define SDMMC_HCON 0x070
Jaehoon Chung41babf72011-02-24 13:46:11 +090048#define SDMMC_UHS_REG 0x074
Will Newtonf95f3852011-01-02 01:11:59 -050049#define SDMMC_BMOD 0x080
50#define SDMMC_PLDMND 0x084
51#define SDMMC_DBADDR 0x088
52#define SDMMC_IDSTS 0x08c
53#define SDMMC_IDINTEN 0x090
54#define SDMMC_DSCADDR 0x094
55#define SDMMC_BUFADDR 0x098
Seungwon Jeonf1d27362013-08-31 00:13:55 +090056#define SDMMC_CDTHRCTL 0x100
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +090057#define SDMMC_DATA(x) (x)
58
59/*
60 * Data offset is difference according to Version
61 * Lower than 2.40a : data register offest is 0x100
62 */
63#define DATA_OFFSET 0x100
64#define DATA_240A_OFFSET 0x200
Will Newtonf95f3852011-01-02 01:11:59 -050065
66/* shift bit field */
67#define _SBF(f, v) ((v) << (f))
68
69/* Control register defines */
70#define SDMMC_CTRL_USE_IDMAC BIT(25)
71#define SDMMC_CTRL_CEATA_INT_EN BIT(11)
72#define SDMMC_CTRL_SEND_AS_CCSD BIT(10)
73#define SDMMC_CTRL_SEND_CCSD BIT(9)
74#define SDMMC_CTRL_ABRT_READ_DATA BIT(8)
75#define SDMMC_CTRL_SEND_IRQ_RESP BIT(7)
76#define SDMMC_CTRL_READ_WAIT BIT(6)
77#define SDMMC_CTRL_DMA_ENABLE BIT(5)
78#define SDMMC_CTRL_INT_ENABLE BIT(4)
79#define SDMMC_CTRL_DMA_RESET BIT(2)
80#define SDMMC_CTRL_FIFO_RESET BIT(1)
81#define SDMMC_CTRL_RESET BIT(0)
82/* Clock Enable register defines */
83#define SDMMC_CLKEN_LOW_PWR BIT(16)
84#define SDMMC_CLKEN_ENABLE BIT(0)
85/* time-out register defines */
86#define SDMMC_TMOUT_DATA(n) _SBF(8, (n))
87#define SDMMC_TMOUT_DATA_MSK 0xFFFFFF00
88#define SDMMC_TMOUT_RESP(n) ((n) & 0xFF)
89#define SDMMC_TMOUT_RESP_MSK 0xFF
90/* card-type register defines */
91#define SDMMC_CTYPE_8BIT BIT(16)
92#define SDMMC_CTYPE_4BIT BIT(0)
93#define SDMMC_CTYPE_1BIT 0
94/* Interrupt status & mask register defines */
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +053095#define SDMMC_INT_SDIO(n) BIT(16 + (n))
Will Newtonf95f3852011-01-02 01:11:59 -050096#define SDMMC_INT_EBE BIT(15)
97#define SDMMC_INT_ACD BIT(14)
98#define SDMMC_INT_SBE BIT(13)
99#define SDMMC_INT_HLE BIT(12)
100#define SDMMC_INT_FRUN BIT(11)
101#define SDMMC_INT_HTO BIT(10)
Doug Anderson01730552014-08-22 19:17:51 +0530102#define SDMMC_INT_VOLT_SWITCH BIT(10) /* overloads bit 10! */
Jaehoon Chung3f7eec62013-05-27 13:47:57 +0900103#define SDMMC_INT_DRTO BIT(9)
Will Newtonf95f3852011-01-02 01:11:59 -0500104#define SDMMC_INT_RTO BIT(8)
105#define SDMMC_INT_DCRC BIT(7)
106#define SDMMC_INT_RCRC BIT(6)
107#define SDMMC_INT_RXDR BIT(5)
108#define SDMMC_INT_TXDR BIT(4)
109#define SDMMC_INT_DATA_OVER BIT(3)
110#define SDMMC_INT_CMD_DONE BIT(2)
111#define SDMMC_INT_RESP_ERR BIT(1)
112#define SDMMC_INT_CD BIT(0)
113#define SDMMC_INT_ERROR 0xbfc2
114/* Command register defines */
115#define SDMMC_CMD_START BIT(31)
Dinh Nguyeneede2112013-06-12 10:18:51 -0500116#define SDMMC_CMD_USE_HOLD_REG BIT(29)
Doug Anderson01730552014-08-22 19:17:51 +0530117#define SDMMC_CMD_VOLT_SWITCH BIT(28)
Will Newtonf95f3852011-01-02 01:11:59 -0500118#define SDMMC_CMD_CCS_EXP BIT(23)
119#define SDMMC_CMD_CEATA_RD BIT(22)
120#define SDMMC_CMD_UPD_CLK BIT(21)
121#define SDMMC_CMD_INIT BIT(15)
122#define SDMMC_CMD_STOP BIT(14)
123#define SDMMC_CMD_PRV_DAT_WAIT BIT(13)
124#define SDMMC_CMD_SEND_STOP BIT(12)
125#define SDMMC_CMD_STRM_MODE BIT(11)
126#define SDMMC_CMD_DAT_WR BIT(10)
127#define SDMMC_CMD_DAT_EXP BIT(9)
128#define SDMMC_CMD_RESP_CRC BIT(8)
129#define SDMMC_CMD_RESP_LONG BIT(7)
130#define SDMMC_CMD_RESP_EXP BIT(6)
131#define SDMMC_CMD_INDX(n) ((n) & 0x1F)
132/* Status register defines */
Jaehoon Chungee5d19b2012-01-05 19:12:57 +0900133#define SDMMC_GET_FCNT(x) (((x)>>17) & 0x1FFF)
Sonny Rao3a33a942014-08-04 18:19:50 -0700134#define SDMMC_STATUS_DMA_REQ BIT(31)
Doug Anderson01730552014-08-22 19:17:51 +0530135#define SDMMC_STATUS_BUSY BIT(9)
Seungwon Jeon52426892013-08-31 00:13:42 +0900136/* FIFOTH register defines */
137#define SDMMC_SET_FIFOTH(m, r, t) (((m) & 0x7) << 28 | \
138 ((r) & 0xFFF) << 16 | \
139 ((t) & 0xFFF))
Will Newtonf95f3852011-01-02 01:11:59 -0500140/* Internal DMAC interrupt defines */
141#define SDMMC_IDMAC_INT_AI BIT(9)
142#define SDMMC_IDMAC_INT_NI BIT(8)
143#define SDMMC_IDMAC_INT_CES BIT(5)
144#define SDMMC_IDMAC_INT_DU BIT(4)
145#define SDMMC_IDMAC_INT_FBE BIT(2)
146#define SDMMC_IDMAC_INT_RI BIT(1)
147#define SDMMC_IDMAC_INT_TI BIT(0)
148/* Internal DMAC bus mode bits */
149#define SDMMC_IDMAC_ENABLE BIT(7)
150#define SDMMC_IDMAC_FB BIT(1)
151#define SDMMC_IDMAC_SWRESET BIT(0)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +0900152/* Version ID register define */
153#define SDMMC_GET_VERID(x) ((x) & 0xFFFF)
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900154/* Card read threshold */
155#define SDMMC_SET_RD_THLD(v, x) (((v) & 0x1FFF) << 16 | (x))
Doug Anderson01730552014-08-22 19:17:51 +0530156#define SDMMC_UHS_18V BIT(0)
Sonny Rao3a33a942014-08-04 18:19:50 -0700157/* All ctrl reset bits */
158#define SDMMC_CTRL_ALL_RESET_FLAGS \
159 (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET | SDMMC_CTRL_DMA_RESET)
160
Will Newtonf95f3852011-01-02 01:11:59 -0500161/* Register access macros */
162#define mci_readl(dev, reg) \
James Hogan892b1e32011-06-24 13:56:38 +0100163 __raw_readl((dev)->regs + SDMMC_##reg)
Will Newtonf95f3852011-01-02 01:11:59 -0500164#define mci_writel(dev, reg, value) \
James Hogan892b1e32011-06-24 13:56:38 +0100165 __raw_writel((value), (dev)->regs + SDMMC_##reg)
Will Newtonf95f3852011-01-02 01:11:59 -0500166
167/* 16-bit FIFO access macros */
168#define mci_readw(dev, reg) \
James Hogan892b1e32011-06-24 13:56:38 +0100169 __raw_readw((dev)->regs + SDMMC_##reg)
Will Newtonf95f3852011-01-02 01:11:59 -0500170#define mci_writew(dev, reg, value) \
James Hogan892b1e32011-06-24 13:56:38 +0100171 __raw_writew((value), (dev)->regs + SDMMC_##reg)
Will Newtonf95f3852011-01-02 01:11:59 -0500172
173/* 64-bit FIFO access macros */
174#ifdef readq
175#define mci_readq(dev, reg) \
James Hogan892b1e32011-06-24 13:56:38 +0100176 __raw_readq((dev)->regs + SDMMC_##reg)
Will Newtonf95f3852011-01-02 01:11:59 -0500177#define mci_writeq(dev, reg, value) \
James Hogan892b1e32011-06-24 13:56:38 +0100178 __raw_writeq((value), (dev)->regs + SDMMC_##reg)
Will Newtonf95f3852011-01-02 01:11:59 -0500179#else
180/*
181 * Dummy readq implementation for architectures that don't define it.
182 *
183 * We would assume that none of these architectures would configure
184 * the IP block with a 64bit FIFO width, so this code will never be
185 * executed on those machines. Defining these macros here keeps the
186 * rest of the code free from ifdefs.
187 */
188#define mci_readq(dev, reg) \
James Hogan892b1e32011-06-24 13:56:38 +0100189 (*(volatile u64 __force *)((dev)->regs + SDMMC_##reg))
Will Newtonf95f3852011-01-02 01:11:59 -0500190#define mci_writeq(dev, reg, value) \
James Hogan892b1e32011-06-24 13:56:38 +0100191 (*(volatile u64 __force *)((dev)->regs + SDMMC_##reg) = (value))
Will Newtonf95f3852011-01-02 01:11:59 -0500192#endif
193
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +0530194extern int dw_mci_probe(struct dw_mci *host);
195extern void dw_mci_remove(struct dw_mci *host);
Felipe Balbi370aede2014-02-25 08:57:44 -0600196#ifdef CONFIG_PM_SLEEP
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +0530197extern int dw_mci_suspend(struct dw_mci *host);
198extern int dw_mci_resume(struct dw_mci *host);
199#endif
200
Thomas Abraham800d78b2012-09-17 18:16:42 +0000201/**
Seungwon Jeon0976f162013-08-31 00:12:42 +0900202 * struct dw_mci_slot - MMC slot state
203 * @mmc: The mmc_host representing this slot.
204 * @host: The MMC controller this slot is using.
205 * @quirks: Slot-level quirks (DW_MCI_SLOT_QUIRK_XXX)
Seungwon Jeon0976f162013-08-31 00:12:42 +0900206 * @ctype: Card type for this slot.
207 * @mrq: mmc_request currently being processed or waiting to be
208 * processed, or NULL when the slot is idle.
209 * @queue_node: List node for placing this node in the @queue list of
210 * &struct dw_mci.
211 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
212 * @__clk_old: The last updated clock with reflecting clock divider.
213 * Keeping track of this helps us to avoid spamming the console
214 * with CONFIG_MMC_CLKGATE.
215 * @flags: Random state bits associated with the slot.
216 * @id: Number of this slot.
217 * @last_detect_state: Most recently observed card detect state.
218 */
219struct dw_mci_slot {
220 struct mmc_host *mmc;
221 struct dw_mci *host;
222
223 int quirks;
Seungwon Jeon0976f162013-08-31 00:12:42 +0900224
225 u32 ctype;
226
227 struct mmc_request *mrq;
228 struct list_head queue_node;
229
230 unsigned int clock;
231 unsigned int __clk_old;
232
233 unsigned long flags;
234#define DW_MMC_CARD_PRESENT 0
235#define DW_MMC_CARD_NEED_INIT 1
236 int id;
237 int last_detect_state;
238};
239
240struct dw_mci_tuning_data {
241 const u8 *blk_pattern;
242 unsigned int blksz;
243};
244
245/**
Thomas Abraham800d78b2012-09-17 18:16:42 +0000246 * dw_mci driver data - dw-mshc implementation specific driver data.
247 * @caps: mmc subsystem specified capabilities of the controller(s).
248 * @init: early implementation specific initialization.
249 * @setup_clock: implementation specific clock configuration.
250 * @prepare_command: handle CMD register extensions.
251 * @set_ios: handle bus specific extensions.
252 * @parse_dt: parse implementation specific device tree properties.
Sachin Kamat5532ec52014-02-25 15:18:25 +0530253 * @execute_tuning: implementation specific tuning procedure.
Thomas Abraham800d78b2012-09-17 18:16:42 +0000254 *
255 * Provide controller implementation specific extensions. The usage of this
256 * data structure is fully optional and usage of each member in this structure
257 * is optional as well.
258 */
259struct dw_mci_drv_data {
260 unsigned long *caps;
261 int (*init)(struct dw_mci *host);
262 int (*setup_clock)(struct dw_mci *host);
263 void (*prepare_command)(struct dw_mci *host, u32 *cmdr);
264 void (*set_ios)(struct dw_mci *host, struct mmc_ios *ios);
265 int (*parse_dt)(struct dw_mci *host);
Seungwon Jeon0976f162013-08-31 00:12:42 +0900266 int (*execute_tuning)(struct dw_mci_slot *slot, u32 opcode,
267 struct dw_mci_tuning_data *tuning_data);
Thomas Abraham800d78b2012-09-17 18:16:42 +0000268};
Will Newtonf95f3852011-01-02 01:11:59 -0500269#endif /* _DW_MMC_H_ */