blob: 833236ecb31e6a069f05f9a765189f69dd87ce47 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Pierre Ossman70f10482007-07-11 20:04:50 +02003 * linux/drivers/mmc/host/mmci.h - ARM PrimeCell MMCI PL180/1 driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#define MMCIPOWER 0x000
8#define MCI_PWR_OFF 0x00
9#define MCI_PWR_UP 0x02
10#define MCI_PWR_ON 0x03
11#define MCI_OD (1 << 6)
12#define MCI_ROD (1 << 7)
Ulf Hansson4593df22014-03-21 10:13:05 +010013/*
14 * The ST Micro version does not have ROD and reuse the voltage registers for
15 * direction settings.
16 */
17#define MCI_ST_DATA2DIREN (1 << 2)
18#define MCI_ST_CMDDIREN (1 << 3)
19#define MCI_ST_DATA0DIREN (1 << 4)
20#define MCI_ST_DATA31DIREN (1 << 5)
21#define MCI_ST_FBCLKEN (1 << 7)
22#define MCI_ST_DATA74DIREN (1 << 8)
Ludovic Barref3f64332018-10-08 14:08:53 +020023/*
24 * The STM32 sdmmc does not have PWR_UP/OD/ROD
25 * and uses the power register for
26 */
27#define MCI_STM32_PWR_CYC 0x02
28#define MCI_STM32_VSWITCH BIT(2)
29#define MCI_STM32_VSWITCHEN BIT(3)
30#define MCI_STM32_DIRPOL BIT(4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#define MMCICLOCK 0x004
33#define MCI_CLK_ENABLE (1 << 8)
34#define MCI_CLK_PWRSAVE (1 << 9)
35#define MCI_CLK_BYPASS (1 << 10)
Linus Walleij771dc152010-04-08 07:38:52 +010036#define MCI_4BIT_BUS (1 << 11)
Linus Walleij49ac2152011-03-04 14:54:16 +010037/*
38 * 8bit wide buses, hardware flow contronl, negative edges and clock inversion
39 * supported in ST Micro U300 and Ux500 versions
40 */
Linus Walleij771dc152010-04-08 07:38:52 +010041#define MCI_ST_8BIT_BUS (1 << 12)
Linus Walleij49ac2152011-03-04 14:54:16 +010042#define MCI_ST_U300_HWFCEN (1 << 13)
43#define MCI_ST_UX500_NEG_EDGE (1 << 13)
44#define MCI_ST_UX500_HWFCEN (1 << 14)
45#define MCI_ST_UX500_CLK_INV (1 << 15)
Pawel Moll3a372982013-01-24 14:12:45 +010046/* Modified PL180 on Versatile Express platform */
47#define MCI_ARM_HWFCEN (1 << 12)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Srinivas Kandagatla9681a4e2014-06-02 10:08:48 +010049/* Modified on Qualcomm Integrations */
50#define MCI_QCOM_CLK_WIDEBUS_8 (BIT(10) | BIT(11))
51#define MCI_QCOM_CLK_FLOWENA BIT(12)
52#define MCI_QCOM_CLK_INVERTOUT BIT(13)
53
54/* select in latch data and command in */
55#define MCI_QCOM_CLK_SELECT_IN_FBCLK BIT(15)
56#define MCI_QCOM_CLK_SELECT_IN_DDR_MODE (BIT(14) | BIT(15))
57
Ludovic Barref3f64332018-10-08 14:08:53 +020058/* Modified on STM32 sdmmc */
59#define MCI_STM32_CLK_CLKDIV_MSK GENMASK(9, 0)
60#define MCI_STM32_CLK_WIDEBUS_4 BIT(14)
61#define MCI_STM32_CLK_WIDEBUS_8 BIT(15)
62#define MCI_STM32_CLK_NEGEDGE BIT(16)
63#define MCI_STM32_CLK_HWFCEN BIT(17)
64#define MCI_STM32_CLK_DDR BIT(18)
65#define MCI_STM32_CLK_BUSSPEED BIT(19)
66#define MCI_STM32_CLK_SEL_MSK GENMASK(21, 20)
67#define MCI_STM32_CLK_SELCK (0 << 20)
68#define MCI_STM32_CLK_SELCKIN (1 << 20)
69#define MCI_STM32_CLK_SELFBCK (2 << 20)
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define MMCIARGUMENT 0x008
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Walleij5db3eee2016-10-25 11:06:05 +020073/* The command register controls the Command Path State Machine (CPSM) */
74#define MMCICOMMAND 0x00c
75#define MCI_CPSM_RESPONSE BIT(6)
76#define MCI_CPSM_LONGRSP BIT(7)
77#define MCI_CPSM_INTERRUPT BIT(8)
78#define MCI_CPSM_PENDING BIT(9)
79#define MCI_CPSM_ENABLE BIT(10)
80/* Command register flag extenstions in the ST Micro versions */
81#define MCI_CPSM_ST_SDIO_SUSP BIT(11)
82#define MCI_CPSM_ST_ENCMD_COMPL BIT(12)
83#define MCI_CPSM_ST_NIEN BIT(13)
84#define MCI_CPSM_ST_CE_ATACMD BIT(14)
85/* Command register flag extensions in the Qualcomm versions */
86#define MCI_CPSM_QCOM_PROGENA BIT(11)
87#define MCI_CPSM_QCOM_DATCMD BIT(12)
88#define MCI_CPSM_QCOM_MCIABORT BIT(13)
89#define MCI_CPSM_QCOM_CCSENABLE BIT(14)
90#define MCI_CPSM_QCOM_CCSDISABLE BIT(15)
91#define MCI_CPSM_QCOM_AUTO_CMD19 BIT(16)
92#define MCI_CPSM_QCOM_AUTO_CMD21 BIT(21)
Ludovic Barref3f64332018-10-08 14:08:53 +020093/* Command register in STM32 sdmmc versions */
94#define MCI_CPSM_STM32_CMDTRANS BIT(6)
95#define MCI_CPSM_STM32_CMDSTOP BIT(7)
96#define MCI_CPSM_STM32_WAITRESP_MASK GENMASK(9, 8)
97#define MCI_CPSM_STM32_NORSP (0 << 8)
98#define MCI_CPSM_STM32_SRSP_CRC (1 << 8)
99#define MCI_CPSM_STM32_SRSP (2 << 8)
100#define MCI_CPSM_STM32_LRSP_CRC (3 << 8)
101#define MCI_CPSM_STM32_ENABLE BIT(12)
Srinivas Kandagatla9681a4e2014-06-02 10:08:48 +0100102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define MMCIRESPCMD 0x010
104#define MMCIRESPONSE0 0x014
105#define MMCIRESPONSE1 0x018
106#define MMCIRESPONSE2 0x01c
107#define MMCIRESPONSE3 0x020
108#define MMCIDATATIMER 0x024
109#define MMCIDATALENGTH 0x028
Linus Walleij5db3eee2016-10-25 11:06:05 +0200110
111/* The data control register controls the Data Path State Machine (DPSM) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define MMCIDATACTRL 0x02c
Linus Walleij5db3eee2016-10-25 11:06:05 +0200113#define MCI_DPSM_ENABLE BIT(0)
114#define MCI_DPSM_DIRECTION BIT(1)
115#define MCI_DPSM_MODE BIT(2)
116#define MCI_DPSM_DMAENABLE BIT(3)
117#define MCI_DPSM_BLOCKSIZE BIT(4)
Linus Walleij725343f2010-10-09 13:43:21 +0100118/* Control register extensions in the ST Micro U300 and Ux500 versions */
Linus Walleij5db3eee2016-10-25 11:06:05 +0200119#define MCI_DPSM_ST_RWSTART BIT(8)
120#define MCI_DPSM_ST_RWSTOP BIT(9)
121#define MCI_DPSM_ST_RWMOD BIT(10)
122#define MCI_DPSM_ST_SDIOEN BIT(11)
Linus Walleij725343f2010-10-09 13:43:21 +0100123/* Control register extensions in the ST Micro Ux500 versions */
Linus Walleij5db3eee2016-10-25 11:06:05 +0200124#define MCI_DPSM_ST_DMAREQCTL BIT(12)
125#define MCI_DPSM_ST_DBOOTMODEEN BIT(13)
126#define MCI_DPSM_ST_BUSYMODE BIT(14)
127#define MCI_DPSM_ST_DDRMODE BIT(15)
128/* Control register extensions in the Qualcomm versions */
129#define MCI_DPSM_QCOM_DATA_PEND BIT(17)
130#define MCI_DPSM_QCOM_RX_DATA_PEND BIT(20)
Ludovic Barre8372f9d2019-03-27 10:05:31 +0100131/* Control register extensions in STM32 versions */
132#define MCI_DPSM_STM32_MODE_BLOCK (0 << 2)
133#define MCI_DPSM_STM32_MODE_SDIO (1 << 2)
134#define MCI_DPSM_STM32_MODE_STREAM (2 << 2)
135#define MCI_DPSM_STM32_MODE_BLOCK_STOP (3 << 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137#define MMCIDATACNT 0x030
138#define MMCISTATUS 0x034
139#define MCI_CMDCRCFAIL (1 << 0)
140#define MCI_DATACRCFAIL (1 << 1)
141#define MCI_CMDTIMEOUT (1 << 2)
142#define MCI_DATATIMEOUT (1 << 3)
143#define MCI_TXUNDERRUN (1 << 4)
144#define MCI_RXOVERRUN (1 << 5)
145#define MCI_CMDRESPEND (1 << 6)
146#define MCI_CMDSENT (1 << 7)
147#define MCI_DATAEND (1 << 8)
Linus Walleij757df742011-06-30 15:10:21 +0100148#define MCI_STARTBITERR (1 << 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#define MCI_DATABLOCKEND (1 << 10)
150#define MCI_CMDACTIVE (1 << 11)
151#define MCI_TXACTIVE (1 << 12)
152#define MCI_RXACTIVE (1 << 13)
153#define MCI_TXFIFOHALFEMPTY (1 << 14)
154#define MCI_RXFIFOHALFFULL (1 << 15)
155#define MCI_TXFIFOFULL (1 << 16)
156#define MCI_RXFIFOFULL (1 << 17)
157#define MCI_TXFIFOEMPTY (1 << 18)
158#define MCI_RXFIFOEMPTY (1 << 19)
159#define MCI_TXDATAAVLBL (1 << 20)
160#define MCI_RXDATAAVLBL (1 << 21)
Linus Walleij49ac2152011-03-04 14:54:16 +0100161/* Extended status bits for the ST Micro variants */
162#define MCI_ST_SDIOIT (1 << 22)
163#define MCI_ST_CEATAEND (1 << 23)
Ulf Hansson01259622013-05-15 20:53:22 +0100164#define MCI_ST_CARDBUSY (1 << 24)
Ludovic Barref3f64332018-10-08 14:08:53 +0200165/* Extended status bits for the STM32 variants */
166#define MCI_STM32_BUSYD0 BIT(20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168#define MMCICLEAR 0x038
169#define MCI_CMDCRCFAILCLR (1 << 0)
170#define MCI_DATACRCFAILCLR (1 << 1)
171#define MCI_CMDTIMEOUTCLR (1 << 2)
172#define MCI_DATATIMEOUTCLR (1 << 3)
173#define MCI_TXUNDERRUNCLR (1 << 4)
174#define MCI_RXOVERRUNCLR (1 << 5)
175#define MCI_CMDRESPENDCLR (1 << 6)
176#define MCI_CMDSENTCLR (1 << 7)
177#define MCI_DATAENDCLR (1 << 8)
Linus Walleij757df742011-06-30 15:10:21 +0100178#define MCI_STARTBITERRCLR (1 << 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179#define MCI_DATABLOCKENDCLR (1 << 10)
Linus Walleij49ac2152011-03-04 14:54:16 +0100180/* Extended status bits for the ST Micro variants */
181#define MCI_ST_SDIOITC (1 << 22)
182#define MCI_ST_CEATAENDC (1 << 23)
Ulf Hansson01259622013-05-15 20:53:22 +0100183#define MCI_ST_BUSYENDC (1 << 24)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185#define MMCIMASK0 0x03c
186#define MCI_CMDCRCFAILMASK (1 << 0)
187#define MCI_DATACRCFAILMASK (1 << 1)
188#define MCI_CMDTIMEOUTMASK (1 << 2)
189#define MCI_DATATIMEOUTMASK (1 << 3)
190#define MCI_TXUNDERRUNMASK (1 << 4)
191#define MCI_RXOVERRUNMASK (1 << 5)
192#define MCI_CMDRESPENDMASK (1 << 6)
193#define MCI_CMDSENTMASK (1 << 7)
194#define MCI_DATAENDMASK (1 << 8)
Linus Walleij757df742011-06-30 15:10:21 +0100195#define MCI_STARTBITERRMASK (1 << 9)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#define MCI_DATABLOCKENDMASK (1 << 10)
197#define MCI_CMDACTIVEMASK (1 << 11)
198#define MCI_TXACTIVEMASK (1 << 12)
199#define MCI_RXACTIVEMASK (1 << 13)
200#define MCI_TXFIFOHALFEMPTYMASK (1 << 14)
201#define MCI_RXFIFOHALFFULLMASK (1 << 15)
202#define MCI_TXFIFOFULLMASK (1 << 16)
203#define MCI_RXFIFOFULLMASK (1 << 17)
204#define MCI_TXFIFOEMPTYMASK (1 << 18)
205#define MCI_RXFIFOEMPTYMASK (1 << 19)
206#define MCI_TXDATAAVLBLMASK (1 << 20)
207#define MCI_RXDATAAVLBLMASK (1 << 21)
Linus Walleij49ac2152011-03-04 14:54:16 +0100208/* Extended status bits for the ST Micro variants */
209#define MCI_ST_SDIOITMASK (1 << 22)
210#define MCI_ST_CEATAENDMASK (1 << 23)
Linus Walleij49adc0c2016-10-25 11:06:06 +0200211#define MCI_ST_BUSYENDMASK (1 << 24)
Ludovic Barref3f64332018-10-08 14:08:53 +0200212/* Extended status bits for the STM32 variants */
213#define MCI_STM32_BUSYD0ENDMASK BIT(21)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
215#define MMCIMASK1 0x040
216#define MMCIFIFOCNT 0x048
217#define MMCIFIFO 0x080 /* to 0x0bc */
218
Ludovic Barref3f64332018-10-08 14:08:53 +0200219/* STM32 sdmmc registers for IDMA (Internal DMA) */
220#define MMCI_STM32_IDMACTRLR 0x050
221#define MMCI_STM32_IDMAEN BIT(0)
222#define MMCI_STM32_IDMALLIEN BIT(1)
223
224#define MMCI_STM32_IDMABSIZER 0x054
225#define MMCI_STM32_IDMABNDT_SHIFT 5
226#define MMCI_STM32_IDMABNDT_MASK GENMASK(12, 5)
227
228#define MMCI_STM32_IDMABASE0R 0x058
229
230#define MMCI_STM32_IDMALAR 0x64
231#define MMCI_STM32_IDMALA_MASK GENMASK(13, 0)
232#define MMCI_STM32_ABR BIT(29)
233#define MMCI_STM32_ULS BIT(30)
234#define MMCI_STM32_ULA BIT(31)
235
236#define MMCI_STM32_IDMABAR 0x68
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#define MCI_IRQENABLE \
Ludovic Barredaf97132018-10-08 14:08:44 +0200239 (MCI_CMDCRCFAILMASK | MCI_DATACRCFAILMASK | MCI_CMDTIMEOUTMASK | \
240 MCI_DATATIMEOUTMASK | MCI_TXUNDERRUNMASK | MCI_RXOVERRUNMASK | \
241 MCI_CMDRESPENDMASK | MCI_CMDSENTMASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Linus Walleij2686b4b2010-10-19 12:39:48 +0100243/* These interrupts are directed to IRQ1 when two IRQ lines are available */
Ludovic Barre59db5e22018-10-08 14:08:47 +0200244#define MCI_IRQ_PIO_MASK \
Linus Walleij2686b4b2010-10-19 12:39:48 +0100245 (MCI_RXFIFOHALFFULLMASK | MCI_RXDATAAVLBLMASK | \
246 MCI_TXFIFOHALFEMPTYMASK)
247
Ludovic Barref3f64332018-10-08 14:08:53 +0200248#define MCI_IRQ_PIO_STM32_MASK \
249 (MCI_RXFIFOHALFFULLMASK | MCI_TXFIFOHALFEMPTYMASK)
250
Ulf Hansson859dd552011-12-13 16:52:00 +0100251#define NR_SG 128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Patrice Chotardf9bb3042018-01-18 15:34:20 +0100253#define MMCI_PINCTRL_STATE_OPENDRAIN "opendrain"
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255struct clk;
Russell Kingc8ebae32011-01-11 19:35:53 +0000256struct dma_chan;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200257struct mmci_host;
258
259/**
260 * struct variant_data - MMCI variant-specific quirks
261 * @clkreg: default value for MCICLOCK register
262 * @clkreg_enable: enable value for MMCICLOCK register
263 * @clkreg_8bit_bus_enable: enable value for 8 bit bus
264 * @clkreg_neg_edge_enable: enable value for inverted data/cmd output
Ludovic Barre0f244802018-10-08 14:08:45 +0200265 * @cmdreg_cpsm_enable: enable value for CPSM
266 * @cmdreg_lrsp_crc: enable value for long response with crc
267 * @cmdreg_srsp_crc: enable value for short response with crc
268 * @cmdreg_srsp: enable value for short response without crc
Ludovic Barrec8073e52018-12-06 16:13:31 +0100269 * @cmdreg_stop: enable value for stop and abort transmission
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200270 * @datalength_bits: number of bits in the MMCIDATALENGTH register
271 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
272 * is asserted (likewise for RX)
273 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
274 * is asserted (likewise for RX)
275 * @data_cmd_enable: enable value for data commands.
276 * @st_sdio: enable ST specific SDIO logic
277 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Ludovic Barre00e930d2018-10-08 14:08:52 +0200278 * @stm32_clkdiv: true if using a STM32-specific clock divider algorithm
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200279 * @datactrl_mask_ddrmode: ddr mode mask in datactrl register.
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200280 * @datactrl_mask_sdio: SDIO enable mask in datactrl register
Ludovic Barrec931d492018-10-08 14:08:43 +0200281 * @datactrl_blksz: block size in power of two
Ludovic Barred2141542018-10-08 14:08:48 +0200282 * @datactrl_first: true if data must be setup before send command
Ludovic Barreb79220b2018-10-08 14:08:49 +0200283 * @datacnt_useless: true if you could not use datacnt register to read
284 * remaining data
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200285 * @pwrreg_powerup: power up value for MMCIPOWER register
286 * @f_max: maximum clk frequency supported by the controller.
287 * @signal_direction: input/out direction of bus signals can be indicated
288 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock
289 * @busy_detect: true if the variant supports busy detection on DAT0.
290 * @busy_dpsm_flag: bitmask enabling busy detection in the DPSM
291 * @busy_detect_flag: bitmask identifying the bit in the MMCISTATUS register
292 * indicating that the card is busy
293 * @busy_detect_mask: bitmask identifying the bit in the MMCIMASK0 to mask for
294 * getting busy end detection interrupts
295 * @pwrreg_nopower: bits in MMCIPOWER don't controls ext. power supply
296 * @explicit_mclk_control: enable explicit mclk control in driver.
297 * @qcom_fifo: enables qcom specific fifo pio read logic.
298 * @qcom_dml: enables qcom specific dma glue for dma transfers.
299 * @reversed_irq_handling: handle data irq before cmd irq.
300 * @mmcimask1: true if variant have a MMCIMASK1 register.
Ludovic Barre59db5e22018-10-08 14:08:47 +0200301 * @irq_pio_mask: bitmask used to manage interrupt pio transfert in mmcimask
302 * register
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200303 * @start_err: bitmask identifying the STARTBITERR bit inside MMCISTATUS
304 * register.
305 * @opendrain: bitmask identifying the OPENDRAIN bit inside MMCIPOWER register
Ludovic Barre46b723d2018-10-08 14:08:55 +0200306 * @dma_lli: true if variant has dma link list feature.
307 * @stm32_idmabsize_mask: stm32 sdmmc idma buffer size.
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200308 */
309struct variant_data {
310 unsigned int clkreg;
311 unsigned int clkreg_enable;
312 unsigned int clkreg_8bit_bus_enable;
313 unsigned int clkreg_neg_edge_enable;
Ludovic Barre0f244802018-10-08 14:08:45 +0200314 unsigned int cmdreg_cpsm_enable;
315 unsigned int cmdreg_lrsp_crc;
316 unsigned int cmdreg_srsp_crc;
317 unsigned int cmdreg_srsp;
Ludovic Barrec8073e52018-12-06 16:13:31 +0100318 unsigned int cmdreg_stop;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200319 unsigned int datalength_bits;
320 unsigned int fifosize;
321 unsigned int fifohalfsize;
322 unsigned int data_cmd_enable;
323 unsigned int datactrl_mask_ddrmode;
324 unsigned int datactrl_mask_sdio;
Ludovic Barrec931d492018-10-08 14:08:43 +0200325 unsigned int datactrl_blocksz;
Ludovic Barred2141542018-10-08 14:08:48 +0200326 u8 datactrl_first:1;
Ludovic Barreb79220b2018-10-08 14:08:49 +0200327 u8 datacnt_useless:1;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200328 u8 st_sdio:1;
329 u8 st_clkdiv:1;
Ludovic Barre00e930d2018-10-08 14:08:52 +0200330 u8 stm32_clkdiv:1;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200331 u32 pwrreg_powerup;
332 u32 f_max;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200333 u8 signal_direction:1;
334 u8 pwrreg_clkgate:1;
335 u8 busy_detect:1;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200336 u32 busy_dpsm_flag;
337 u32 busy_detect_flag;
338 u32 busy_detect_mask;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200339 u8 pwrreg_nopower:1;
340 u8 explicit_mclk_control:1;
341 u8 qcom_fifo:1;
342 u8 qcom_dml:1;
343 u8 reversed_irq_handling:1;
344 u8 mmcimask1:1;
Ludovic Barre59db5e22018-10-08 14:08:47 +0200345 unsigned int irq_pio_mask;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200346 u32 start_err;
347 u32 opendrain;
Ludovic Barre46b723d2018-10-08 14:08:55 +0200348 u8 dma_lli:1;
349 u32 stm32_idmabsize_mask;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200350 void (*init)(struct mmci_host *host);
351};
352
353/* mmci variant callbacks */
354struct mmci_host_ops {
Ludovic Barree0da1722018-10-08 14:08:41 +0200355 int (*validate_data)(struct mmci_host *host, struct mmc_data *data);
Ludovic Barre47983512018-10-08 14:08:36 +0200356 int (*prep_data)(struct mmci_host *host, struct mmc_data *data,
357 bool next);
358 void (*unprep_data)(struct mmci_host *host, struct mmc_data *data,
359 int err);
Ludovic Barre0732ea72019-03-27 10:05:28 +0100360 u32 (*get_datactrl_cfg)(struct mmci_host *host);
Ludovic Barre02769962018-10-08 14:08:37 +0200361 void (*get_next_data)(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrec3647fd2018-10-08 14:08:33 +0200362 int (*dma_setup)(struct mmci_host *host);
363 void (*dma_release)(struct mmci_host *host);
Ludovic Barre135ea302018-10-08 14:08:38 +0200364 int (*dma_start)(struct mmci_host *host, unsigned int *datactrl);
Ludovic Barre5a9f10c2018-10-08 14:08:39 +0200365 void (*dma_finalize)(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrecfccc6a2018-10-08 14:08:40 +0200366 void (*dma_error)(struct mmci_host *host);
Ludovic Barrecd3ee8c2018-10-08 14:08:42 +0200367 void (*set_clkreg)(struct mmci_host *host, unsigned int desired);
368 void (*set_pwrreg)(struct mmci_host *host, unsigned int pwr);
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200369};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371struct mmci_host {
Russell Kingc8ebae32011-01-11 19:35:53 +0000372 phys_addr_t phybase;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 void __iomem *base;
374 struct mmc_request *mrq;
375 struct mmc_command *cmd;
Ulf Hanssone9968c62019-01-29 15:35:56 +0100376 struct mmc_command stop_abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct mmc_data *data;
378 struct mmc_host *mmc;
379 struct clk *clk;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200380 u8 singleirq:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Ludovic Barre15878e52018-10-08 14:08:51 +0200382 struct reset_control *rst;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 spinlock_t lock;
385
386 unsigned int mclk;
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +0100387 /* cached value of requested clk in set_ios */
388 unsigned int clock_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 unsigned int cclk;
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100390 u32 pwr_reg;
Ulf Hansson4593df22014-03-21 10:13:05 +0100391 u32 pwr_reg_add;
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100392 u32 clk_reg;
Ludovic Barre46b723d2018-10-08 14:08:55 +0200393 u32 clk_reg_add;
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100394 u32 datactrl_reg;
Ulf Hansson8d94b542014-01-13 16:49:31 +0100395 u32 busy_status;
Patrice Chotard6ea9cdf2018-01-18 15:34:17 +0100396 u32 mask1_reg;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200397 u8 vqmmc_enabled:1;
Linus Walleij6ef297f2009-09-22 14:29:36 +0100398 struct mmci_platform_data *plat;
Ulf Hanssoned9067f2018-07-13 13:15:23 +0200399 struct mmci_host_ops *ops;
Rabin Vincent4956e102010-07-21 12:54:40 +0100400 struct variant_data *variant;
Patrice Chotardf9bb3042018-01-18 15:34:20 +0100401 struct pinctrl *pinctrl;
402 struct pinctrl_state *pins_default;
403 struct pinctrl_state *pins_opendrain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Walleijcc30d602009-01-04 15:18:54 +0100405 u8 hw_designer;
406 u8 hw_revision:4;
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 struct timer_list timer;
409 unsigned int oldstat;
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /* pio stuff */
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100412 struct sg_mapping_iter sg_miter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 unsigned int size;
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +0100414 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
Russell Kingc8ebae32011-01-11 19:35:53 +0000415
Ludovic Barrec3647fd2018-10-08 14:08:33 +0200416 u8 use_dma:1;
Ludovic Barre19a25d52018-10-02 14:09:03 +0200417 u8 dma_in_progress:1;
Ludovic Barrea813f2a2018-10-08 14:08:34 +0200418 void *dma_priv;
419
420 s32 next_cookie;
421};
Russell Kingc8ebae32011-01-11 19:35:53 +0000422
Linus Walleije13934b2017-01-27 15:04:54 +0100423#define dma_inprogress(host) ((host)->dma_in_progress)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Ludovic Barrecd3ee8c2018-10-08 14:08:42 +0200425void mmci_write_clkreg(struct mmci_host *host, u32 clk);
426void mmci_write_pwrreg(struct mmci_host *host, u32 pwr);
427
Ludovic Barre0732ea72019-03-27 10:05:28 +0100428static inline u32 mmci_dctrl_blksz(struct mmci_host *host)
429{
430 return (ffs(host->data->blksz) - 1) << 4;
431}
432
Ulf Hansson6aa35ce2019-03-06 15:04:51 +0100433#ifdef CONFIG_DMA_ENGINE
Ludovic Barre47983512018-10-08 14:08:36 +0200434int mmci_dmae_prep_data(struct mmci_host *host, struct mmc_data *data,
435 bool next);
436void mmci_dmae_unprep_data(struct mmci_host *host, struct mmc_data *data,
437 int err);
Ludovic Barre02769962018-10-08 14:08:37 +0200438void mmci_dmae_get_next_data(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrec3647fd2018-10-08 14:08:33 +0200439int mmci_dmae_setup(struct mmci_host *host);
440void mmci_dmae_release(struct mmci_host *host);
Ludovic Barre135ea302018-10-08 14:08:38 +0200441int mmci_dmae_start(struct mmci_host *host, unsigned int *datactrl);
Ludovic Barre5a9f10c2018-10-08 14:08:39 +0200442void mmci_dmae_finalize(struct mmci_host *host, struct mmc_data *data);
Ludovic Barrecfccc6a2018-10-08 14:08:40 +0200443void mmci_dmae_error(struct mmci_host *host);
Ulf Hansson6aa35ce2019-03-06 15:04:51 +0100444#endif
Ulf Hanssonf7f3e7d2019-03-06 15:04:54 +0100445
446#ifdef CONFIG_MMC_QCOM_DML
447void qcom_variant_init(struct mmci_host *host);
448#else
449static inline void qcom_variant_init(struct mmci_host *host) {}
450#endif
Ulf Hansson62e546b2019-03-06 15:04:55 +0100451
452#ifdef CONFIG_MMC_STM32_SDMMC
453void sdmmc_variant_init(struct mmci_host *host);
454#else
455static inline void sdmmc_variant_init(struct mmci_host *host) {}
456#endif