1 /* 2 * linux/drivers/mmc/host/mmci.h - ARM PrimeCell MMCI PL180/1 driver 3 * 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) 16 /* 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) 26 /* 27 * The STM32 sdmmc does not have PWR_UP/OD/ROD 28 * and uses the power register for 29 */ 30 #define MCI_STM32_PWR_CYC 0x02 31 #define MCI_STM32_VSWITCH BIT(2) 32 #define MCI_STM32_VSWITCHEN BIT(3) 33 #define MCI_STM32_DIRPOL BIT(4) 34 35 #define MMCICLOCK 0x004 36 #define MCI_CLK_ENABLE (1 << 8) 37 #define MCI_CLK_PWRSAVE (1 << 9) 38 #define MCI_CLK_BYPASS (1 << 10) 39 #define MCI_4BIT_BUS (1 << 11) 40 /* 41 * 8bit wide buses, hardware flow contronl, negative edges and clock inversion 42 * supported in ST Micro U300 and Ux500 versions 43 */ 44 #define MCI_ST_8BIT_BUS (1 << 12) 45 #define MCI_ST_U300_HWFCEN (1 << 13) 46 #define MCI_ST_UX500_NEG_EDGE (1 << 13) 47 #define MCI_ST_UX500_HWFCEN (1 << 14) 48 #define MCI_ST_UX500_CLK_INV (1 << 15) 49 /* Modified PL180 on Versatile Express platform */ 50 #define MCI_ARM_HWFCEN (1 << 12) 51 52 /* Modified on Qualcomm Integrations */ 53 #define MCI_QCOM_CLK_WIDEBUS_8 (BIT(10) | BIT(11)) 54 #define MCI_QCOM_CLK_FLOWENA BIT(12) 55 #define MCI_QCOM_CLK_INVERTOUT BIT(13) 56 57 /* select in latch data and command in */ 58 #define MCI_QCOM_CLK_SELECT_IN_FBCLK BIT(15) 59 #define MCI_QCOM_CLK_SELECT_IN_DDR_MODE (BIT(14) | BIT(15)) 60 61 /* Modified on STM32 sdmmc */ 62 #define MCI_STM32_CLK_CLKDIV_MSK GENMASK(9, 0) 63 #define MCI_STM32_CLK_WIDEBUS_4 BIT(14) 64 #define MCI_STM32_CLK_WIDEBUS_8 BIT(15) 65 #define MCI_STM32_CLK_NEGEDGE BIT(16) 66 #define MCI_STM32_CLK_HWFCEN BIT(17) 67 #define MCI_STM32_CLK_DDR BIT(18) 68 #define MCI_STM32_CLK_BUSSPEED BIT(19) 69 #define MCI_STM32_CLK_SEL_MSK GENMASK(21, 20) 70 #define MCI_STM32_CLK_SELCK (0 << 20) 71 #define MCI_STM32_CLK_SELCKIN (1 << 20) 72 #define MCI_STM32_CLK_SELFBCK (2 << 20) 73 74 #define MMCIARGUMENT 0x008 75 76 /* The command register controls the Command Path State Machine (CPSM) */ 77 #define MMCICOMMAND 0x00c 78 #define MCI_CPSM_RESPONSE BIT(6) 79 #define MCI_CPSM_LONGRSP BIT(7) 80 #define MCI_CPSM_INTERRUPT BIT(8) 81 #define MCI_CPSM_PENDING BIT(9) 82 #define MCI_CPSM_ENABLE BIT(10) 83 /* Command register flag extenstions in the ST Micro versions */ 84 #define MCI_CPSM_ST_SDIO_SUSP BIT(11) 85 #define MCI_CPSM_ST_ENCMD_COMPL BIT(12) 86 #define MCI_CPSM_ST_NIEN BIT(13) 87 #define MCI_CPSM_ST_CE_ATACMD BIT(14) 88 /* Command register flag extensions in the Qualcomm versions */ 89 #define MCI_CPSM_QCOM_PROGENA BIT(11) 90 #define MCI_CPSM_QCOM_DATCMD BIT(12) 91 #define MCI_CPSM_QCOM_MCIABORT BIT(13) 92 #define MCI_CPSM_QCOM_CCSENABLE BIT(14) 93 #define MCI_CPSM_QCOM_CCSDISABLE BIT(15) 94 #define MCI_CPSM_QCOM_AUTO_CMD19 BIT(16) 95 #define MCI_CPSM_QCOM_AUTO_CMD21 BIT(21) 96 /* Command register in STM32 sdmmc versions */ 97 #define MCI_CPSM_STM32_CMDTRANS BIT(6) 98 #define MCI_CPSM_STM32_CMDSTOP BIT(7) 99 #define MCI_CPSM_STM32_WAITRESP_MASK GENMASK(9, 8) 100 #define MCI_CPSM_STM32_NORSP (0 << 8) 101 #define MCI_CPSM_STM32_SRSP_CRC (1 << 8) 102 #define MCI_CPSM_STM32_SRSP (2 << 8) 103 #define MCI_CPSM_STM32_LRSP_CRC (3 << 8) 104 #define MCI_CPSM_STM32_ENABLE BIT(12) 105 106 #define MMCIRESPCMD 0x010 107 #define MMCIRESPONSE0 0x014 108 #define MMCIRESPONSE1 0x018 109 #define MMCIRESPONSE2 0x01c 110 #define MMCIRESPONSE3 0x020 111 #define MMCIDATATIMER 0x024 112 #define MMCIDATALENGTH 0x028 113 114 /* The data control register controls the Data Path State Machine (DPSM) */ 115 #define MMCIDATACTRL 0x02c 116 #define MCI_DPSM_ENABLE BIT(0) 117 #define MCI_DPSM_DIRECTION BIT(1) 118 #define MCI_DPSM_MODE BIT(2) 119 #define MCI_DPSM_DMAENABLE BIT(3) 120 #define MCI_DPSM_BLOCKSIZE BIT(4) 121 /* Control register extensions in the ST Micro U300 and Ux500 versions */ 122 #define MCI_DPSM_ST_RWSTART BIT(8) 123 #define MCI_DPSM_ST_RWSTOP BIT(9) 124 #define MCI_DPSM_ST_RWMOD BIT(10) 125 #define MCI_DPSM_ST_SDIOEN BIT(11) 126 /* Control register extensions in the ST Micro Ux500 versions */ 127 #define MCI_DPSM_ST_DMAREQCTL BIT(12) 128 #define MCI_DPSM_ST_DBOOTMODEEN BIT(13) 129 #define MCI_DPSM_ST_BUSYMODE BIT(14) 130 #define MCI_DPSM_ST_DDRMODE BIT(15) 131 /* Control register extensions in the Qualcomm versions */ 132 #define MCI_DPSM_QCOM_DATA_PEND BIT(17) 133 #define MCI_DPSM_QCOM_RX_DATA_PEND BIT(20) 134 135 #define MMCIDATACNT 0x030 136 #define MMCISTATUS 0x034 137 #define MCI_CMDCRCFAIL (1 << 0) 138 #define MCI_DATACRCFAIL (1 << 1) 139 #define MCI_CMDTIMEOUT (1 << 2) 140 #define MCI_DATATIMEOUT (1 << 3) 141 #define MCI_TXUNDERRUN (1 << 4) 142 #define MCI_RXOVERRUN (1 << 5) 143 #define MCI_CMDRESPEND (1 << 6) 144 #define MCI_CMDSENT (1 << 7) 145 #define MCI_DATAEND (1 << 8) 146 #define MCI_STARTBITERR (1 << 9) 147 #define MCI_DATABLOCKEND (1 << 10) 148 #define MCI_CMDACTIVE (1 << 11) 149 #define MCI_TXACTIVE (1 << 12) 150 #define MCI_RXACTIVE (1 << 13) 151 #define MCI_TXFIFOHALFEMPTY (1 << 14) 152 #define MCI_RXFIFOHALFFULL (1 << 15) 153 #define MCI_TXFIFOFULL (1 << 16) 154 #define MCI_RXFIFOFULL (1 << 17) 155 #define MCI_TXFIFOEMPTY (1 << 18) 156 #define MCI_RXFIFOEMPTY (1 << 19) 157 #define MCI_TXDATAAVLBL (1 << 20) 158 #define MCI_RXDATAAVLBL (1 << 21) 159 /* Extended status bits for the ST Micro variants */ 160 #define MCI_ST_SDIOIT (1 << 22) 161 #define MCI_ST_CEATAEND (1 << 23) 162 #define MCI_ST_CARDBUSY (1 << 24) 163 /* Extended status bits for the STM32 variants */ 164 #define MCI_STM32_BUSYD0 BIT(20) 165 166 #define MMCICLEAR 0x038 167 #define MCI_CMDCRCFAILCLR (1 << 0) 168 #define MCI_DATACRCFAILCLR (1 << 1) 169 #define MCI_CMDTIMEOUTCLR (1 << 2) 170 #define MCI_DATATIMEOUTCLR (1 << 3) 171 #define MCI_TXUNDERRUNCLR (1 << 4) 172 #define MCI_RXOVERRUNCLR (1 << 5) 173 #define MCI_CMDRESPENDCLR (1 << 6) 174 #define MCI_CMDSENTCLR (1 << 7) 175 #define MCI_DATAENDCLR (1 << 8) 176 #define MCI_STARTBITERRCLR (1 << 9) 177 #define MCI_DATABLOCKENDCLR (1 << 10) 178 /* Extended status bits for the ST Micro variants */ 179 #define MCI_ST_SDIOITC (1 << 22) 180 #define MCI_ST_CEATAENDC (1 << 23) 181 #define MCI_ST_BUSYENDC (1 << 24) 182 183 #define MMCIMASK0 0x03c 184 #define MCI_CMDCRCFAILMASK (1 << 0) 185 #define MCI_DATACRCFAILMASK (1 << 1) 186 #define MCI_CMDTIMEOUTMASK (1 << 2) 187 #define MCI_DATATIMEOUTMASK (1 << 3) 188 #define MCI_TXUNDERRUNMASK (1 << 4) 189 #define MCI_RXOVERRUNMASK (1 << 5) 190 #define MCI_CMDRESPENDMASK (1 << 6) 191 #define MCI_CMDSENTMASK (1 << 7) 192 #define MCI_DATAENDMASK (1 << 8) 193 #define MCI_STARTBITERRMASK (1 << 9) 194 #define MCI_DATABLOCKENDMASK (1 << 10) 195 #define MCI_CMDACTIVEMASK (1 << 11) 196 #define MCI_TXACTIVEMASK (1 << 12) 197 #define MCI_RXACTIVEMASK (1 << 13) 198 #define MCI_TXFIFOHALFEMPTYMASK (1 << 14) 199 #define MCI_RXFIFOHALFFULLMASK (1 << 15) 200 #define MCI_TXFIFOFULLMASK (1 << 16) 201 #define MCI_RXFIFOFULLMASK (1 << 17) 202 #define MCI_TXFIFOEMPTYMASK (1 << 18) 203 #define MCI_RXFIFOEMPTYMASK (1 << 19) 204 #define MCI_TXDATAAVLBLMASK (1 << 20) 205 #define MCI_RXDATAAVLBLMASK (1 << 21) 206 /* Extended status bits for the ST Micro variants */ 207 #define MCI_ST_SDIOITMASK (1 << 22) 208 #define MCI_ST_CEATAENDMASK (1 << 23) 209 #define MCI_ST_BUSYENDMASK (1 << 24) 210 /* Extended status bits for the STM32 variants */ 211 #define MCI_STM32_BUSYD0ENDMASK BIT(21) 212 213 #define MMCIMASK1 0x040 214 #define MMCIFIFOCNT 0x048 215 #define MMCIFIFO 0x080 /* to 0x0bc */ 216 217 /* STM32 sdmmc registers for IDMA (Internal DMA) */ 218 #define MMCI_STM32_IDMACTRLR 0x050 219 #define MMCI_STM32_IDMAEN BIT(0) 220 #define MMCI_STM32_IDMALLIEN BIT(1) 221 222 #define MMCI_STM32_IDMABSIZER 0x054 223 #define MMCI_STM32_IDMABNDT_SHIFT 5 224 #define MMCI_STM32_IDMABNDT_MASK GENMASK(12, 5) 225 226 #define MMCI_STM32_IDMABASE0R 0x058 227 228 #define MMCI_STM32_IDMALAR 0x64 229 #define MMCI_STM32_IDMALA_MASK GENMASK(13, 0) 230 #define MMCI_STM32_ABR BIT(29) 231 #define MMCI_STM32_ULS BIT(30) 232 #define MMCI_STM32_ULA BIT(31) 233 234 #define MMCI_STM32_IDMABAR 0x68 235 236 #define MCI_IRQENABLE \ 237 (MCI_CMDCRCFAILMASK | MCI_DATACRCFAILMASK | MCI_CMDTIMEOUTMASK | \ 238 MCI_DATATIMEOUTMASK | MCI_TXUNDERRUNMASK | MCI_RXOVERRUNMASK | \ 239 MCI_CMDRESPENDMASK | MCI_CMDSENTMASK) 240 241 /* These interrupts are directed to IRQ1 when two IRQ lines are available */ 242 #define MCI_IRQ_PIO_MASK \ 243 (MCI_RXFIFOHALFFULLMASK | MCI_RXDATAAVLBLMASK | \ 244 MCI_TXFIFOHALFEMPTYMASK) 245 246 #define MCI_IRQ_PIO_STM32_MASK \ 247 (MCI_RXFIFOHALFFULLMASK | MCI_TXFIFOHALFEMPTYMASK) 248 249 #define NR_SG 128 250 251 #define MMCI_PINCTRL_STATE_OPENDRAIN "opendrain" 252 253 struct clk; 254 struct dma_chan; 255 struct mmci_host; 256 257 /** 258 * struct variant_data - MMCI variant-specific quirks 259 * @clkreg: default value for MCICLOCK register 260 * @clkreg_enable: enable value for MMCICLOCK register 261 * @clkreg_8bit_bus_enable: enable value for 8 bit bus 262 * @clkreg_neg_edge_enable: enable value for inverted data/cmd output 263 * @cmdreg_cpsm_enable: enable value for CPSM 264 * @cmdreg_lrsp_crc: enable value for long response with crc 265 * @cmdreg_srsp_crc: enable value for short response with crc 266 * @cmdreg_srsp: enable value for short response without crc 267 * @cmdreg_stop: enable value for stop and abort transmission 268 * @datalength_bits: number of bits in the MMCIDATALENGTH register 269 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY 270 * is asserted (likewise for RX) 271 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY 272 * is asserted (likewise for RX) 273 * @data_cmd_enable: enable value for data commands. 274 * @st_sdio: enable ST specific SDIO logic 275 * @st_clkdiv: true if using a ST-specific clock divider algorithm 276 * @stm32_clkdiv: true if using a STM32-specific clock divider algorithm 277 * @datactrl_mask_ddrmode: ddr mode mask in datactrl register. 278 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register 279 * @blksz_datactrl4: true if Block size is at b4..b16 position in datactrl 280 * register 281 * @datactrl_mask_sdio: SDIO enable mask in datactrl register 282 * @datactrl_blksz: block size in power of two 283 * @datactrl_dpsm_enable: enable value for DPSM 284 * @datactrl_first: true if data must be setup before send command 285 * @datacnt_useless: true if you could not use datacnt register to read 286 * remaining data 287 * @pwrreg_powerup: power up value for MMCIPOWER register 288 * @f_max: maximum clk frequency supported by the controller. 289 * @signal_direction: input/out direction of bus signals can be indicated 290 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock 291 * @busy_detect: true if the variant supports busy detection on DAT0. 292 * @busy_dpsm_flag: bitmask enabling busy detection in the DPSM 293 * @busy_detect_flag: bitmask identifying the bit in the MMCISTATUS register 294 * indicating that the card is busy 295 * @busy_detect_mask: bitmask identifying the bit in the MMCIMASK0 to mask for 296 * getting busy end detection interrupts 297 * @pwrreg_nopower: bits in MMCIPOWER don't controls ext. power supply 298 * @explicit_mclk_control: enable explicit mclk control in driver. 299 * @qcom_fifo: enables qcom specific fifo pio read logic. 300 * @qcom_dml: enables qcom specific dma glue for dma transfers. 301 * @reversed_irq_handling: handle data irq before cmd irq. 302 * @mmcimask1: true if variant have a MMCIMASK1 register. 303 * @irq_pio_mask: bitmask used to manage interrupt pio transfert in mmcimask 304 * register 305 * @start_err: bitmask identifying the STARTBITERR bit inside MMCISTATUS 306 * register. 307 * @opendrain: bitmask identifying the OPENDRAIN bit inside MMCIPOWER register 308 * @dma_lli: true if variant has dma link list feature. 309 * @stm32_idmabsize_mask: stm32 sdmmc idma buffer size. 310 */ 311 struct variant_data { 312 unsigned int clkreg; 313 unsigned int clkreg_enable; 314 unsigned int clkreg_8bit_bus_enable; 315 unsigned int clkreg_neg_edge_enable; 316 unsigned int cmdreg_cpsm_enable; 317 unsigned int cmdreg_lrsp_crc; 318 unsigned int cmdreg_srsp_crc; 319 unsigned int cmdreg_srsp; 320 unsigned int cmdreg_stop; 321 unsigned int datalength_bits; 322 unsigned int fifosize; 323 unsigned int fifohalfsize; 324 unsigned int data_cmd_enable; 325 unsigned int datactrl_mask_ddrmode; 326 unsigned int datactrl_mask_sdio; 327 unsigned int datactrl_blocksz; 328 unsigned int datactrl_dpsm_enable; 329 u8 datactrl_first:1; 330 u8 datacnt_useless:1; 331 u8 st_sdio:1; 332 u8 st_clkdiv:1; 333 u8 stm32_clkdiv:1; 334 u8 blksz_datactrl16:1; 335 u8 blksz_datactrl4:1; 336 u32 pwrreg_powerup; 337 u32 f_max; 338 u8 signal_direction:1; 339 u8 pwrreg_clkgate:1; 340 u8 busy_detect:1; 341 u32 busy_dpsm_flag; 342 u32 busy_detect_flag; 343 u32 busy_detect_mask; 344 u8 pwrreg_nopower:1; 345 u8 explicit_mclk_control:1; 346 u8 qcom_fifo:1; 347 u8 qcom_dml:1; 348 u8 reversed_irq_handling:1; 349 u8 mmcimask1:1; 350 unsigned int irq_pio_mask; 351 u32 start_err; 352 u32 opendrain; 353 u8 dma_lli:1; 354 u32 stm32_idmabsize_mask; 355 void (*init)(struct mmci_host *host); 356 }; 357 358 /* mmci variant callbacks */ 359 struct mmci_host_ops { 360 int (*validate_data)(struct mmci_host *host, struct mmc_data *data); 361 int (*prep_data)(struct mmci_host *host, struct mmc_data *data, 362 bool next); 363 void (*unprep_data)(struct mmci_host *host, struct mmc_data *data, 364 int err); 365 void (*get_next_data)(struct mmci_host *host, struct mmc_data *data); 366 int (*dma_setup)(struct mmci_host *host); 367 void (*dma_release)(struct mmci_host *host); 368 int (*dma_start)(struct mmci_host *host, unsigned int *datactrl); 369 void (*dma_finalize)(struct mmci_host *host, struct mmc_data *data); 370 void (*dma_error)(struct mmci_host *host); 371 void (*set_clkreg)(struct mmci_host *host, unsigned int desired); 372 void (*set_pwrreg)(struct mmci_host *host, unsigned int pwr); 373 }; 374 375 struct mmci_host { 376 phys_addr_t phybase; 377 void __iomem *base; 378 struct mmc_request *mrq; 379 struct mmc_command *cmd; 380 struct mmc_command stop_abort; 381 struct mmc_data *data; 382 struct mmc_host *mmc; 383 struct clk *clk; 384 u8 singleirq:1; 385 386 struct reset_control *rst; 387 388 spinlock_t lock; 389 390 unsigned int mclk; 391 /* cached value of requested clk in set_ios */ 392 unsigned int clock_cache; 393 unsigned int cclk; 394 u32 pwr_reg; 395 u32 pwr_reg_add; 396 u32 clk_reg; 397 u32 clk_reg_add; 398 u32 datactrl_reg; 399 u32 busy_status; 400 u32 mask1_reg; 401 u8 vqmmc_enabled:1; 402 struct mmci_platform_data *plat; 403 struct mmci_host_ops *ops; 404 struct variant_data *variant; 405 struct pinctrl *pinctrl; 406 struct pinctrl_state *pins_default; 407 struct pinctrl_state *pins_opendrain; 408 409 u8 hw_designer; 410 u8 hw_revision:4; 411 412 struct timer_list timer; 413 unsigned int oldstat; 414 415 /* pio stuff */ 416 struct sg_mapping_iter sg_miter; 417 unsigned int size; 418 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain); 419 420 u8 use_dma:1; 421 u8 dma_in_progress:1; 422 void *dma_priv; 423 424 s32 next_cookie; 425 }; 426 427 #define dma_inprogress(host) ((host)->dma_in_progress) 428 429 void mmci_write_clkreg(struct mmci_host *host, u32 clk); 430 void mmci_write_pwrreg(struct mmci_host *host, u32 pwr); 431 432 int mmci_dmae_prep_data(struct mmci_host *host, struct mmc_data *data, 433 bool next); 434 void mmci_dmae_unprep_data(struct mmci_host *host, struct mmc_data *data, 435 int err); 436 void mmci_dmae_get_next_data(struct mmci_host *host, struct mmc_data *data); 437 int mmci_dmae_setup(struct mmci_host *host); 438 void mmci_dmae_release(struct mmci_host *host); 439 int mmci_dmae_start(struct mmci_host *host, unsigned int *datactrl); 440 void mmci_dmae_finalize(struct mmci_host *host, struct mmc_data *data); 441 void mmci_dmae_error(struct mmci_host *host); 442