blob: 8ecb1eee001efa1369f44d04950f91171590b9d5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/mmci.h - ARM PrimeCell MMCI PL180/1 driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#define MMCIPOWER 0x000
11#define MCI_PWR_OFF 0x00
12#define MCI_PWR_UP 0x02
13#define MCI_PWR_ON 0x03
14#define MCI_OD (1 << 6)
15#define MCI_ROD (1 << 7)
Ulf Hansson4593df22014-03-21 10:13:05 +010016/*
17 * The ST Micro version does not have ROD and reuse the voltage registers for
18 * direction settings.
19 */
20#define MCI_ST_DATA2DIREN (1 << 2)
21#define MCI_ST_CMDDIREN (1 << 3)
22#define MCI_ST_DATA0DIREN (1 << 4)
23#define MCI_ST_DATA31DIREN (1 << 5)
24#define MCI_ST_FBCLKEN (1 << 7)
25#define MCI_ST_DATA74DIREN (1 << 8)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#define MMCICLOCK 0x004
28#define MCI_CLK_ENABLE (1 << 8)
29#define MCI_CLK_PWRSAVE (1 << 9)
30#define MCI_CLK_BYPASS (1 << 10)
Linus Walleij771dc152010-04-08 07:38:52 +010031#define MCI_4BIT_BUS (1 << 11)
Linus Walleij49ac2152011-03-04 14:54:16 +010032/*
33 * 8bit wide buses, hardware flow contronl, negative edges and clock inversion
34 * supported in ST Micro U300 and Ux500 versions
35 */
Linus Walleij771dc152010-04-08 07:38:52 +010036#define MCI_ST_8BIT_BUS (1 << 12)
Linus Walleij49ac2152011-03-04 14:54:16 +010037#define MCI_ST_U300_HWFCEN (1 << 13)
38#define MCI_ST_UX500_NEG_EDGE (1 << 13)
39#define MCI_ST_UX500_HWFCEN (1 << 14)
40#define MCI_ST_UX500_CLK_INV (1 << 15)
Pawel Moll3a372982013-01-24 14:12:45 +010041/* Modified PL180 on Versatile Express platform */
42#define MCI_ARM_HWFCEN (1 << 12)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Srinivas Kandagatla9681a4e2014-06-02 10:08:48 +010044/* Modified on Qualcomm Integrations */
45#define MCI_QCOM_CLK_WIDEBUS_8 (BIT(10) | BIT(11))
46#define MCI_QCOM_CLK_FLOWENA BIT(12)
47#define MCI_QCOM_CLK_INVERTOUT BIT(13)
48
49/* select in latch data and command in */
50#define MCI_QCOM_CLK_SELECT_IN_FBCLK BIT(15)
51#define MCI_QCOM_CLK_SELECT_IN_DDR_MODE (BIT(14) | BIT(15))
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define MMCIARGUMENT 0x008
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Walleij5db3eee2016-10-25 11:06:05 +020055/* The command register controls the Command Path State Machine (CPSM) */
56#define MMCICOMMAND 0x00c
57#define MCI_CPSM_RESPONSE BIT(6)
58#define MCI_CPSM_LONGRSP BIT(7)
59#define MCI_CPSM_INTERRUPT BIT(8)
60#define MCI_CPSM_PENDING BIT(9)
61#define MCI_CPSM_ENABLE BIT(10)
62/* Command register flag extenstions in the ST Micro versions */
63#define MCI_CPSM_ST_SDIO_SUSP BIT(11)
64#define MCI_CPSM_ST_ENCMD_COMPL BIT(12)
65#define MCI_CPSM_ST_NIEN BIT(13)
66#define MCI_CPSM_ST_CE_ATACMD BIT(14)
67/* Command register flag extensions in the Qualcomm versions */
68#define MCI_CPSM_QCOM_PROGENA BIT(11)
69#define MCI_CPSM_QCOM_DATCMD BIT(12)
70#define MCI_CPSM_QCOM_MCIABORT BIT(13)
71#define MCI_CPSM_QCOM_CCSENABLE BIT(14)
72#define MCI_CPSM_QCOM_CCSDISABLE BIT(15)
73#define MCI_CPSM_QCOM_AUTO_CMD19 BIT(16)
74#define MCI_CPSM_QCOM_AUTO_CMD21 BIT(21)
Srinivas Kandagatla9681a4e2014-06-02 10:08:48 +010075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define MMCIRESPCMD 0x010
77#define MMCIRESPONSE0 0x014
78#define MMCIRESPONSE1 0x018
79#define MMCIRESPONSE2 0x01c
80#define MMCIRESPONSE3 0x020
81#define MMCIDATATIMER 0x024
82#define MMCIDATALENGTH 0x028
Linus Walleij5db3eee2016-10-25 11:06:05 +020083
84/* The data control register controls the Data Path State Machine (DPSM) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define MMCIDATACTRL 0x02c
Linus Walleij5db3eee2016-10-25 11:06:05 +020086#define MCI_DPSM_ENABLE BIT(0)
87#define MCI_DPSM_DIRECTION BIT(1)
88#define MCI_DPSM_MODE BIT(2)
89#define MCI_DPSM_DMAENABLE BIT(3)
90#define MCI_DPSM_BLOCKSIZE BIT(4)
Linus Walleij725343f2010-10-09 13:43:21 +010091/* Control register extensions in the ST Micro U300 and Ux500 versions */
Linus Walleij5db3eee2016-10-25 11:06:05 +020092#define MCI_DPSM_ST_RWSTART BIT(8)
93#define MCI_DPSM_ST_RWSTOP BIT(9)
94#define MCI_DPSM_ST_RWMOD BIT(10)
95#define MCI_DPSM_ST_SDIOEN BIT(11)
Linus Walleij725343f2010-10-09 13:43:21 +010096/* Control register extensions in the ST Micro Ux500 versions */
Linus Walleij5db3eee2016-10-25 11:06:05 +020097#define MCI_DPSM_ST_DMAREQCTL BIT(12)
98#define MCI_DPSM_ST_DBOOTMODEEN BIT(13)
99#define MCI_DPSM_ST_BUSYMODE BIT(14)
100#define MCI_DPSM_ST_DDRMODE BIT(15)
101/* Control register extensions in the Qualcomm versions */
102#define MCI_DPSM_QCOM_DATA_PEND BIT(17)
103#define MCI_DPSM_QCOM_RX_DATA_PEND BIT(20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#define MMCIDATACNT 0x030
106#define MMCISTATUS 0x034
107#define MCI_CMDCRCFAIL (1 << 0)
108#define MCI_DATACRCFAIL (1 << 1)
109#define MCI_CMDTIMEOUT (1 << 2)
110#define MCI_DATATIMEOUT (1 << 3)
111#define MCI_TXUNDERRUN (1 << 4)
112#define MCI_RXOVERRUN (1 << 5)
113#define MCI_CMDRESPEND (1 << 6)
114#define MCI_CMDSENT (1 << 7)
115#define MCI_DATAEND (1 << 8)
Linus Walleij757df742011-06-30 15:10:21 +0100116#define MCI_STARTBITERR (1 << 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define MCI_DATABLOCKEND (1 << 10)
118#define MCI_CMDACTIVE (1 << 11)
119#define MCI_TXACTIVE (1 << 12)
120#define MCI_RXACTIVE (1 << 13)
121#define MCI_TXFIFOHALFEMPTY (1 << 14)
122#define MCI_RXFIFOHALFFULL (1 << 15)
123#define MCI_TXFIFOFULL (1 << 16)
124#define MCI_RXFIFOFULL (1 << 17)
125#define MCI_TXFIFOEMPTY (1 << 18)
126#define MCI_RXFIFOEMPTY (1 << 19)
127#define MCI_TXDATAAVLBL (1 << 20)
128#define MCI_RXDATAAVLBL (1 << 21)
Linus Walleij49ac2152011-03-04 14:54:16 +0100129/* Extended status bits for the ST Micro variants */
130#define MCI_ST_SDIOIT (1 << 22)
131#define MCI_ST_CEATAEND (1 << 23)
Ulf Hansson01259622013-05-15 20:53:22 +0100132#define MCI_ST_CARDBUSY (1 << 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134#define MMCICLEAR 0x038
135#define MCI_CMDCRCFAILCLR (1 << 0)
136#define MCI_DATACRCFAILCLR (1 << 1)
137#define MCI_CMDTIMEOUTCLR (1 << 2)
138#define MCI_DATATIMEOUTCLR (1 << 3)
139#define MCI_TXUNDERRUNCLR (1 << 4)
140#define MCI_RXOVERRUNCLR (1 << 5)
141#define MCI_CMDRESPENDCLR (1 << 6)
142#define MCI_CMDSENTCLR (1 << 7)
143#define MCI_DATAENDCLR (1 << 8)
Linus Walleij757df742011-06-30 15:10:21 +0100144#define MCI_STARTBITERRCLR (1 << 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#define MCI_DATABLOCKENDCLR (1 << 10)
Linus Walleij49ac2152011-03-04 14:54:16 +0100146/* Extended status bits for the ST Micro variants */
147#define MCI_ST_SDIOITC (1 << 22)
148#define MCI_ST_CEATAENDC (1 << 23)
Ulf Hansson01259622013-05-15 20:53:22 +0100149#define MCI_ST_BUSYENDC (1 << 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151#define MMCIMASK0 0x03c
152#define MCI_CMDCRCFAILMASK (1 << 0)
153#define MCI_DATACRCFAILMASK (1 << 1)
154#define MCI_CMDTIMEOUTMASK (1 << 2)
155#define MCI_DATATIMEOUTMASK (1 << 3)
156#define MCI_TXUNDERRUNMASK (1 << 4)
157#define MCI_RXOVERRUNMASK (1 << 5)
158#define MCI_CMDRESPENDMASK (1 << 6)
159#define MCI_CMDSENTMASK (1 << 7)
160#define MCI_DATAENDMASK (1 << 8)
Linus Walleij757df742011-06-30 15:10:21 +0100161#define MCI_STARTBITERRMASK (1 << 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#define MCI_DATABLOCKENDMASK (1 << 10)
163#define MCI_CMDACTIVEMASK (1 << 11)
164#define MCI_TXACTIVEMASK (1 << 12)
165#define MCI_RXACTIVEMASK (1 << 13)
166#define MCI_TXFIFOHALFEMPTYMASK (1 << 14)
167#define MCI_RXFIFOHALFFULLMASK (1 << 15)
168#define MCI_TXFIFOFULLMASK (1 << 16)
169#define MCI_RXFIFOFULLMASK (1 << 17)
170#define MCI_TXFIFOEMPTYMASK (1 << 18)
171#define MCI_RXFIFOEMPTYMASK (1 << 19)
172#define MCI_TXDATAAVLBLMASK (1 << 20)
173#define MCI_RXDATAAVLBLMASK (1 << 21)
Linus Walleij49ac2152011-03-04 14:54:16 +0100174/* Extended status bits for the ST Micro variants */
175#define MCI_ST_SDIOITMASK (1 << 22)
176#define MCI_ST_CEATAENDMASK (1 << 23)
Linus Walleij49adc0c2016-10-25 11:06:06 +0200177#define MCI_ST_BUSYENDMASK (1 << 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179#define MMCIMASK1 0x040
180#define MMCIFIFOCNT 0x048
181#define MMCIFIFO 0x080 /* to 0x0bc */
182
183#define MCI_IRQENABLE \
Ludovic Barredaf97132018-10-08 14:08:44 +0200184 (MCI_CMDCRCFAILMASK | MCI_DATACRCFAILMASK | MCI_CMDTIMEOUTMASK | \
185 MCI_DATATIMEOUTMASK | MCI_TXUNDERRUNMASK | MCI_RXOVERRUNMASK | \
186 MCI_CMDRESPENDMASK | MCI_CMDSENTMASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Walleij2686b4b2010-10-19 12:39:48 +0100188/* These interrupts are directed to IRQ1 when two IRQ lines are available */
Ludovic Barre59db5e22018-10-08 14:08:47 +0200189#define MCI_IRQ_PIO_MASK \
Linus Walleij2686b4b2010-10-19 12:39:48 +0100190 (MCI_RXFIFOHALFFULLMASK | MCI_RXDATAAVLBLMASK | \
191 MCI_TXFIFOHALFEMPTYMASK)
192
Ulf Hansson859dd552011-12-13 16:52:00 +0100193#define NR_SG 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Patrice Chotardf9bb3042018-01-18 15:34:20 +0100195#define MMCI_PINCTRL_STATE_OPENDRAIN "opendrain"
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197struct clk;
Russell Kingc8ebae32011-01-11 19:35:53 +0000198struct dma_chan;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200199struct mmci_host;
200
201/**
202 * struct variant_data - MMCI variant-specific quirks
203 * @clkreg: default value for MCICLOCK register
204 * @clkreg_enable: enable value for MMCICLOCK register
205 * @clkreg_8bit_bus_enable: enable value for 8 bit bus
206 * @clkreg_neg_edge_enable: enable value for inverted data/cmd output
Ludovic Barre0f244802018-10-08 14:08:45 +0200207 * @cmdreg_cpsm_enable: enable value for CPSM
208 * @cmdreg_lrsp_crc: enable value for long response with crc
209 * @cmdreg_srsp_crc: enable value for short response with crc
210 * @cmdreg_srsp: enable value for short response without crc
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200211 * @datalength_bits: number of bits in the MMCIDATALENGTH register
212 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
213 * is asserted (likewise for RX)
214 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
215 * is asserted (likewise for RX)
216 * @data_cmd_enable: enable value for data commands.
217 * @st_sdio: enable ST specific SDIO logic
218 * @st_clkdiv: true if using a ST-specific clock divider algorithm
219 * @datactrl_mask_ddrmode: ddr mode mask in datactrl register.
220 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
221 * @blksz_datactrl4: true if Block size is at b4..b16 position in datactrl
222 * register
223 * @datactrl_mask_sdio: SDIO enable mask in datactrl register
Ludovic Barrec931d492018-10-08 14:08:43 +0200224 * @datactrl_blksz: block size in power of two
Ludovic Barre9b279942018-10-08 14:08:46 +0200225 * @datactrl_dpsm_enable: enable value for DPSM
Ludovic Barred2141542018-10-08 14:08:48 +0200226 * @datactrl_first: true if data must be setup before send command
Ludovic Barreb79220b2018-10-08 14:08:49 +0200227 * @datacnt_useless: true if you could not use datacnt register to read
228 * remaining data
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200229 * @pwrreg_powerup: power up value for MMCIPOWER register
230 * @f_max: maximum clk frequency supported by the controller.
231 * @signal_direction: input/out direction of bus signals can be indicated
232 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock
233 * @busy_detect: true if the variant supports busy detection on DAT0.
234 * @busy_dpsm_flag: bitmask enabling busy detection in the DPSM
235 * @busy_detect_flag: bitmask identifying the bit in the MMCISTATUS register
236 * indicating that the card is busy
237 * @busy_detect_mask: bitmask identifying the bit in the MMCIMASK0 to mask for
238 * getting busy end detection interrupts
239 * @pwrreg_nopower: bits in MMCIPOWER don't controls ext. power supply
240 * @explicit_mclk_control: enable explicit mclk control in driver.
241 * @qcom_fifo: enables qcom specific fifo pio read logic.
242 * @qcom_dml: enables qcom specific dma glue for dma transfers.
243 * @reversed_irq_handling: handle data irq before cmd irq.
244 * @mmcimask1: true if variant have a MMCIMASK1 register.
Ludovic Barre59db5e22018-10-08 14:08:47 +0200245 * @irq_pio_mask: bitmask used to manage interrupt pio transfert in mmcimask
246 * register
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200247 * @start_err: bitmask identifying the STARTBITERR bit inside MMCISTATUS
248 * register.
249 * @opendrain: bitmask identifying the OPENDRAIN bit inside MMCIPOWER register
250 */
251struct variant_data {
252 unsigned int clkreg;
253 unsigned int clkreg_enable;
254 unsigned int clkreg_8bit_bus_enable;
255 unsigned int clkreg_neg_edge_enable;
Ludovic Barre0f244802018-10-08 14:08:45 +0200256 unsigned int cmdreg_cpsm_enable;
257 unsigned int cmdreg_lrsp_crc;
258 unsigned int cmdreg_srsp_crc;
259 unsigned int cmdreg_srsp;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200260 unsigned int datalength_bits;
261 unsigned int fifosize;
262 unsigned int fifohalfsize;
263 unsigned int data_cmd_enable;
264 unsigned int datactrl_mask_ddrmode;
265 unsigned int datactrl_mask_sdio;
Ludovic Barrec931d492018-10-08 14:08:43 +0200266 unsigned int datactrl_blocksz;
Ludovic Barre9b279942018-10-08 14:08:46 +0200267 unsigned int datactrl_dpsm_enable;
Ludovic Barred2141542018-10-08 14:08:48 +0200268 u8 datactrl_first:1;
Ludovic Barreb79220b2018-10-08 14:08:49 +0200269 u8 datacnt_useless:1;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200270 u8 st_sdio:1;
271 u8 st_clkdiv:1;
272 u8 blksz_datactrl16:1;
273 u8 blksz_datactrl4:1;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200274 u32 pwrreg_powerup;
275 u32 f_max;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200276 u8 signal_direction:1;
277 u8 pwrreg_clkgate:1;
278 u8 busy_detect:1;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200279 u32 busy_dpsm_flag;
280 u32 busy_detect_flag;
281 u32 busy_detect_mask;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200282 u8 pwrreg_nopower:1;
283 u8 explicit_mclk_control:1;
284 u8 qcom_fifo:1;
285 u8 qcom_dml:1;
286 u8 reversed_irq_handling:1;
287 u8 mmcimask1:1;
Ludovic Barre59db5e22018-10-08 14:08:47 +0200288 unsigned int irq_pio_mask;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200289 u32 start_err;
290 u32 opendrain;
291 void (*init)(struct mmci_host *host);
292};
293
294/* mmci variant callbacks */
295struct mmci_host_ops {
Ludovic Barree0da1722018-10-08 14:08:41 +0200296 int (*validate_data)(struct mmci_host *host, struct mmc_data *data);
Ludovic Barre47983512018-10-08 14:08:36 +0200297 int (*prep_data)(struct mmci_host *host, struct mmc_data *data,
298 bool next);
299 void (*unprep_data)(struct mmci_host *host, struct mmc_data *data,
300 int err);
Ludovic Barre02769962018-10-08 14:08:37 +0200301 void (*get_next_data)(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrec3647fd2018-10-08 14:08:33 +0200302 int (*dma_setup)(struct mmci_host *host);
303 void (*dma_release)(struct mmci_host *host);
Ludovic Barre135ea302018-10-08 14:08:38 +0200304 int (*dma_start)(struct mmci_host *host, unsigned int *datactrl);
Ludovic Barre5a9f10c2018-10-08 14:08:39 +0200305 void (*dma_finalize)(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrecfccc6a2018-10-08 14:08:40 +0200306 void (*dma_error)(struct mmci_host *host);
Ludovic Barrecd3ee8c2018-10-08 14:08:42 +0200307 void (*set_clkreg)(struct mmci_host *host, unsigned int desired);
308 void (*set_pwrreg)(struct mmci_host *host, unsigned int pwr);
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200309};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311struct mmci_host {
Russell Kingc8ebae32011-01-11 19:35:53 +0000312 phys_addr_t phybase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 void __iomem *base;
314 struct mmc_request *mrq;
315 struct mmc_command *cmd;
316 struct mmc_data *data;
317 struct mmc_host *mmc;
318 struct clk *clk;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200319 u8 singleirq:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Ludovic Barre15878e52018-10-08 14:08:51 +0200321 struct reset_control *rst;
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 spinlock_t lock;
324
325 unsigned int mclk;
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +0100326 /* cached value of requested clk in set_ios */
327 unsigned int clock_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 unsigned int cclk;
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100329 u32 pwr_reg;
Ulf Hansson4593df22014-03-21 10:13:05 +0100330 u32 pwr_reg_add;
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100331 u32 clk_reg;
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100332 u32 datactrl_reg;
Ulf Hansson8d94b542014-01-13 16:49:31 +0100333 u32 busy_status;
Patrice Chotard6ea9cdf2018-01-18 15:34:17 +0100334 u32 mask1_reg;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200335 u8 vqmmc_enabled:1;
Linus Walleij6ef297f2009-09-22 14:29:36 +0100336 struct mmci_platform_data *plat;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200337 struct mmci_host_ops *ops;
Rabin Vincent4956e102010-07-21 12:54:40 +0100338 struct variant_data *variant;
Patrice Chotardf9bb3042018-01-18 15:34:20 +0100339 struct pinctrl *pinctrl;
340 struct pinctrl_state *pins_default;
341 struct pinctrl_state *pins_opendrain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Linus Walleijcc30d602009-01-04 15:18:54 +0100343 u8 hw_designer;
344 u8 hw_revision:4;
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct timer_list timer;
347 unsigned int oldstat;
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /* pio stuff */
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100350 struct sg_mapping_iter sg_miter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 unsigned int size;
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +0100352 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
Russell Kingc8ebae32011-01-11 19:35:53 +0000353
Ludovic Barrec3647fd2018-10-08 14:08:33 +0200354 u8 use_dma:1;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200355 u8 dma_in_progress:1;
Ludovic Barrea813f2a2018-10-08 14:08:34 +0200356 void *dma_priv;
357
358 s32 next_cookie;
359};
Russell Kingc8ebae32011-01-11 19:35:53 +0000360
Linus Walleije13934b2017-01-27 15:04:54 +0100361#define dma_inprogress(host) ((host)->dma_in_progress)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Ludovic Barrecd3ee8c2018-10-08 14:08:42 +0200363void mmci_write_clkreg(struct mmci_host *host, u32 clk);
364void mmci_write_pwrreg(struct mmci_host *host, u32 pwr);
365
Ludovic Barre47983512018-10-08 14:08:36 +0200366int mmci_dmae_prep_data(struct mmci_host *host, struct mmc_data *data,
367 bool next);
368void mmci_dmae_unprep_data(struct mmci_host *host, struct mmc_data *data,
369 int err);
Ludovic Barre02769962018-10-08 14:08:37 +0200370void mmci_dmae_get_next_data(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrec3647fd2018-10-08 14:08:33 +0200371int mmci_dmae_setup(struct mmci_host *host);
372void mmci_dmae_release(struct mmci_host *host);
Ludovic Barre135ea302018-10-08 14:08:38 +0200373int mmci_dmae_start(struct mmci_host *host, unsigned int *datactrl);
Ludovic Barre5a9f10c2018-10-08 14:08:39 +0200374void mmci_dmae_finalize(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrecfccc6a2018-10-08 14:08:40 +0200375void mmci_dmae_error(struct mmci_host *host);