146b723ddSLudovic Barre // SPDX-License-Identifier: GPL-2.0
246b723ddSLudovic Barre /*
346b723ddSLudovic Barre  * Copyright (C) STMicroelectronics 2018 - All Rights Reserved
446b723ddSLudovic Barre  * Author: Ludovic.barre@st.com for STMicroelectronics.
546b723ddSLudovic Barre  */
61103f807SLudovic Barre #include <linux/bitfield.h>
746b723ddSLudovic Barre #include <linux/delay.h>
846b723ddSLudovic Barre #include <linux/dma-mapping.h>
91103f807SLudovic Barre #include <linux/iopoll.h>
1046b723ddSLudovic Barre #include <linux/mmc/host.h>
1146b723ddSLudovic Barre #include <linux/mmc/card.h>
121103f807SLudovic Barre #include <linux/of_address.h>
1346b723ddSLudovic Barre #include <linux/reset.h>
1446b723ddSLudovic Barre #include <linux/scatterlist.h>
1546b723ddSLudovic Barre #include "mmci.h"
1646b723ddSLudovic Barre 
1746b723ddSLudovic Barre #define SDMMC_LLI_BUF_LEN	PAGE_SIZE
1846b723ddSLudovic Barre #define SDMMC_IDMA_BURST	BIT(MMCI_STM32_IDMABNDT_SHIFT)
1946b723ddSLudovic Barre 
201103f807SLudovic Barre #define DLYB_CR			0x0
211103f807SLudovic Barre #define DLYB_CR_DEN		BIT(0)
221103f807SLudovic Barre #define DLYB_CR_SEN		BIT(1)
231103f807SLudovic Barre 
241103f807SLudovic Barre #define DLYB_CFGR		0x4
251103f807SLudovic Barre #define DLYB_CFGR_SEL_MASK	GENMASK(3, 0)
261103f807SLudovic Barre #define DLYB_CFGR_UNIT_MASK	GENMASK(14, 8)
271103f807SLudovic Barre #define DLYB_CFGR_LNG_MASK	GENMASK(27, 16)
281103f807SLudovic Barre #define DLYB_CFGR_LNGF		BIT(31)
291103f807SLudovic Barre 
301103f807SLudovic Barre #define DLYB_NB_DELAY		11
311103f807SLudovic Barre #define DLYB_CFGR_SEL_MAX	(DLYB_NB_DELAY + 1)
321103f807SLudovic Barre #define DLYB_CFGR_UNIT_MAX	127
331103f807SLudovic Barre 
341103f807SLudovic Barre #define DLYB_LNG_TIMEOUT_US	1000
3594b94a93SLudovic Barre #define SDMMC_VSWEND_TIMEOUT_US 10000
361103f807SLudovic Barre 
3746b723ddSLudovic Barre struct sdmmc_lli_desc {
3846b723ddSLudovic Barre 	u32 idmalar;
3946b723ddSLudovic Barre 	u32 idmabase;
4046b723ddSLudovic Barre 	u32 idmasize;
4146b723ddSLudovic Barre };
4246b723ddSLudovic Barre 
43bdbf9fafSLudovic Barre struct sdmmc_idma {
4446b723ddSLudovic Barre 	dma_addr_t sg_dma;
4546b723ddSLudovic Barre 	void *sg_cpu;
4646b723ddSLudovic Barre };
4746b723ddSLudovic Barre 
481103f807SLudovic Barre struct sdmmc_dlyb {
491103f807SLudovic Barre 	void __iomem *base;
501103f807SLudovic Barre 	u32 unit;
511103f807SLudovic Barre 	u32 max;
521103f807SLudovic Barre };
531103f807SLudovic Barre 
5461a14e52SBen Dooks static int sdmmc_idma_validate_data(struct mmci_host *host,
5546b723ddSLudovic Barre 				    struct mmc_data *data)
5646b723ddSLudovic Barre {
5746b723ddSLudovic Barre 	struct scatterlist *sg;
5846b723ddSLudovic Barre 	int i;
5946b723ddSLudovic Barre 
6046b723ddSLudovic Barre 	/*
6146b723ddSLudovic Barre 	 * idma has constraints on idmabase & idmasize for each element
6246b723ddSLudovic Barre 	 * excepted the last element which has no constraint on idmasize
6346b723ddSLudovic Barre 	 */
6446b723ddSLudovic Barre 	for_each_sg(data->sg, sg, data->sg_len - 1, i) {
65127e6e98SLudovic Barre 		if (!IS_ALIGNED(data->sg->offset, sizeof(u32)) ||
66127e6e98SLudovic Barre 		    !IS_ALIGNED(data->sg->length, SDMMC_IDMA_BURST)) {
6746b723ddSLudovic Barre 			dev_err(mmc_dev(host->mmc),
6846b723ddSLudovic Barre 				"unaligned scatterlist: ofst:%x length:%d\n",
6946b723ddSLudovic Barre 				data->sg->offset, data->sg->length);
7046b723ddSLudovic Barre 			return -EINVAL;
7146b723ddSLudovic Barre 		}
7246b723ddSLudovic Barre 	}
7346b723ddSLudovic Barre 
74127e6e98SLudovic Barre 	if (!IS_ALIGNED(data->sg->offset, sizeof(u32))) {
7546b723ddSLudovic Barre 		dev_err(mmc_dev(host->mmc),
7646b723ddSLudovic Barre 			"unaligned last scatterlist: ofst:%x length:%d\n",
7746b723ddSLudovic Barre 			data->sg->offset, data->sg->length);
7846b723ddSLudovic Barre 		return -EINVAL;
7946b723ddSLudovic Barre 	}
8046b723ddSLudovic Barre 
8146b723ddSLudovic Barre 	return 0;
8246b723ddSLudovic Barre }
8346b723ddSLudovic Barre 
8446b723ddSLudovic Barre static int _sdmmc_idma_prep_data(struct mmci_host *host,
8546b723ddSLudovic Barre 				 struct mmc_data *data)
8646b723ddSLudovic Barre {
8746b723ddSLudovic Barre 	int n_elem;
8846b723ddSLudovic Barre 
8946b723ddSLudovic Barre 	n_elem = dma_map_sg(mmc_dev(host->mmc),
9046b723ddSLudovic Barre 			    data->sg,
9146b723ddSLudovic Barre 			    data->sg_len,
9246b723ddSLudovic Barre 			    mmc_get_dma_dir(data));
9346b723ddSLudovic Barre 
9446b723ddSLudovic Barre 	if (!n_elem) {
9546b723ddSLudovic Barre 		dev_err(mmc_dev(host->mmc), "dma_map_sg failed\n");
9646b723ddSLudovic Barre 		return -EINVAL;
9746b723ddSLudovic Barre 	}
9846b723ddSLudovic Barre 
9946b723ddSLudovic Barre 	return 0;
10046b723ddSLudovic Barre }
10146b723ddSLudovic Barre 
10246b723ddSLudovic Barre static int sdmmc_idma_prep_data(struct mmci_host *host,
10346b723ddSLudovic Barre 				struct mmc_data *data, bool next)
10446b723ddSLudovic Barre {
10546b723ddSLudovic Barre 	/* Check if job is already prepared. */
10646b723ddSLudovic Barre 	if (!next && data->host_cookie == host->next_cookie)
10746b723ddSLudovic Barre 		return 0;
10846b723ddSLudovic Barre 
10946b723ddSLudovic Barre 	return _sdmmc_idma_prep_data(host, data);
11046b723ddSLudovic Barre }
11146b723ddSLudovic Barre 
11246b723ddSLudovic Barre static void sdmmc_idma_unprep_data(struct mmci_host *host,
11346b723ddSLudovic Barre 				   struct mmc_data *data, int err)
11446b723ddSLudovic Barre {
11546b723ddSLudovic Barre 	dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
11646b723ddSLudovic Barre 		     mmc_get_dma_dir(data));
11746b723ddSLudovic Barre }
11846b723ddSLudovic Barre 
11946b723ddSLudovic Barre static int sdmmc_idma_setup(struct mmci_host *host)
12046b723ddSLudovic Barre {
121bdbf9fafSLudovic Barre 	struct sdmmc_idma *idma;
122942d5e7bSLudovic Barre 	struct device *dev = mmc_dev(host->mmc);
12346b723ddSLudovic Barre 
124942d5e7bSLudovic Barre 	idma = devm_kzalloc(dev, sizeof(*idma), GFP_KERNEL);
12546b723ddSLudovic Barre 	if (!idma)
12646b723ddSLudovic Barre 		return -ENOMEM;
12746b723ddSLudovic Barre 
12846b723ddSLudovic Barre 	host->dma_priv = idma;
12946b723ddSLudovic Barre 
13046b723ddSLudovic Barre 	if (host->variant->dma_lli) {
131942d5e7bSLudovic Barre 		idma->sg_cpu = dmam_alloc_coherent(dev, SDMMC_LLI_BUF_LEN,
13246b723ddSLudovic Barre 						   &idma->sg_dma, GFP_KERNEL);
13346b723ddSLudovic Barre 		if (!idma->sg_cpu) {
134942d5e7bSLudovic Barre 			dev_err(dev, "Failed to alloc IDMA descriptor\n");
13546b723ddSLudovic Barre 			return -ENOMEM;
13646b723ddSLudovic Barre 		}
13746b723ddSLudovic Barre 		host->mmc->max_segs = SDMMC_LLI_BUF_LEN /
13846b723ddSLudovic Barre 			sizeof(struct sdmmc_lli_desc);
13946b723ddSLudovic Barre 		host->mmc->max_seg_size = host->variant->stm32_idmabsize_mask;
14046b723ddSLudovic Barre 	} else {
14146b723ddSLudovic Barre 		host->mmc->max_segs = 1;
14246b723ddSLudovic Barre 		host->mmc->max_seg_size = host->mmc->max_req_size;
14346b723ddSLudovic Barre 	}
14446b723ddSLudovic Barre 
145942d5e7bSLudovic Barre 	return dma_set_max_seg_size(dev, host->mmc->max_seg_size);
14646b723ddSLudovic Barre }
14746b723ddSLudovic Barre 
14846b723ddSLudovic Barre static int sdmmc_idma_start(struct mmci_host *host, unsigned int *datactrl)
14946b723ddSLudovic Barre 
15046b723ddSLudovic Barre {
151bdbf9fafSLudovic Barre 	struct sdmmc_idma *idma = host->dma_priv;
15246b723ddSLudovic Barre 	struct sdmmc_lli_desc *desc = (struct sdmmc_lli_desc *)idma->sg_cpu;
15346b723ddSLudovic Barre 	struct mmc_data *data = host->data;
15446b723ddSLudovic Barre 	struct scatterlist *sg;
15546b723ddSLudovic Barre 	int i;
15646b723ddSLudovic Barre 
15746b723ddSLudovic Barre 	if (!host->variant->dma_lli || data->sg_len == 1) {
15846b723ddSLudovic Barre 		writel_relaxed(sg_dma_address(data->sg),
15946b723ddSLudovic Barre 			       host->base + MMCI_STM32_IDMABASE0R);
16046b723ddSLudovic Barre 		writel_relaxed(MMCI_STM32_IDMAEN,
16146b723ddSLudovic Barre 			       host->base + MMCI_STM32_IDMACTRLR);
16246b723ddSLudovic Barre 		return 0;
16346b723ddSLudovic Barre 	}
16446b723ddSLudovic Barre 
16546b723ddSLudovic Barre 	for_each_sg(data->sg, sg, data->sg_len, i) {
16646b723ddSLudovic Barre 		desc[i].idmalar = (i + 1) * sizeof(struct sdmmc_lli_desc);
16746b723ddSLudovic Barre 		desc[i].idmalar |= MMCI_STM32_ULA | MMCI_STM32_ULS
16846b723ddSLudovic Barre 			| MMCI_STM32_ABR;
16946b723ddSLudovic Barre 		desc[i].idmabase = sg_dma_address(sg);
17046b723ddSLudovic Barre 		desc[i].idmasize = sg_dma_len(sg);
17146b723ddSLudovic Barre 	}
17246b723ddSLudovic Barre 
17346b723ddSLudovic Barre 	/* notice the end of link list */
17446b723ddSLudovic Barre 	desc[data->sg_len - 1].idmalar &= ~MMCI_STM32_ULA;
17546b723ddSLudovic Barre 
17646b723ddSLudovic Barre 	dma_wmb();
17746b723ddSLudovic Barre 	writel_relaxed(idma->sg_dma, host->base + MMCI_STM32_IDMABAR);
17846b723ddSLudovic Barre 	writel_relaxed(desc[0].idmalar, host->base + MMCI_STM32_IDMALAR);
17946b723ddSLudovic Barre 	writel_relaxed(desc[0].idmabase, host->base + MMCI_STM32_IDMABASE0R);
18046b723ddSLudovic Barre 	writel_relaxed(desc[0].idmasize, host->base + MMCI_STM32_IDMABSIZER);
18146b723ddSLudovic Barre 	writel_relaxed(MMCI_STM32_IDMAEN | MMCI_STM32_IDMALLIEN,
18246b723ddSLudovic Barre 		       host->base + MMCI_STM32_IDMACTRLR);
18346b723ddSLudovic Barre 
18446b723ddSLudovic Barre 	return 0;
18546b723ddSLudovic Barre }
18646b723ddSLudovic Barre 
18746b723ddSLudovic Barre static void sdmmc_idma_finalize(struct mmci_host *host, struct mmc_data *data)
18846b723ddSLudovic Barre {
18946b723ddSLudovic Barre 	writel_relaxed(0, host->base + MMCI_STM32_IDMACTRLR);
190fe8d33bdSLudovic Barre 
191fe8d33bdSLudovic Barre 	if (!data->host_cookie)
192fe8d33bdSLudovic Barre 		sdmmc_idma_unprep_data(host, data, 0);
19346b723ddSLudovic Barre }
19446b723ddSLudovic Barre 
19546b723ddSLudovic Barre static void mmci_sdmmc_set_clkreg(struct mmci_host *host, unsigned int desired)
19646b723ddSLudovic Barre {
19746b723ddSLudovic Barre 	unsigned int clk = 0, ddr = 0;
19846b723ddSLudovic Barre 
19946b723ddSLudovic Barre 	if (host->mmc->ios.timing == MMC_TIMING_MMC_DDR52 ||
20046b723ddSLudovic Barre 	    host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
20146b723ddSLudovic Barre 		ddr = MCI_STM32_CLK_DDR;
20246b723ddSLudovic Barre 
20346b723ddSLudovic Barre 	/*
20446b723ddSLudovic Barre 	 * cclk = mclk / (2 * clkdiv)
20546b723ddSLudovic Barre 	 * clkdiv 0 => bypass
20646b723ddSLudovic Barre 	 * in ddr mode bypass is not possible
20746b723ddSLudovic Barre 	 */
20846b723ddSLudovic Barre 	if (desired) {
20946b723ddSLudovic Barre 		if (desired >= host->mclk && !ddr) {
21046b723ddSLudovic Barre 			host->cclk = host->mclk;
21146b723ddSLudovic Barre 		} else {
21246b723ddSLudovic Barre 			clk = DIV_ROUND_UP(host->mclk, 2 * desired);
21346b723ddSLudovic Barre 			if (clk > MCI_STM32_CLK_CLKDIV_MSK)
21446b723ddSLudovic Barre 				clk = MCI_STM32_CLK_CLKDIV_MSK;
21546b723ddSLudovic Barre 			host->cclk = host->mclk / (2 * clk);
21646b723ddSLudovic Barre 		}
21746b723ddSLudovic Barre 	} else {
21846b723ddSLudovic Barre 		/*
21946b723ddSLudovic Barre 		 * while power-on phase the clock can't be define to 0,
22046b723ddSLudovic Barre 		 * Only power-off and power-cyc deactivate the clock.
22146b723ddSLudovic Barre 		 * if desired clock is 0, set max divider
22246b723ddSLudovic Barre 		 */
22346b723ddSLudovic Barre 		clk = MCI_STM32_CLK_CLKDIV_MSK;
22446b723ddSLudovic Barre 		host->cclk = host->mclk / (2 * clk);
22546b723ddSLudovic Barre 	}
22646b723ddSLudovic Barre 
22746b723ddSLudovic Barre 	/* Set actual clock for debug */
22846b723ddSLudovic Barre 	if (host->mmc->ios.power_mode == MMC_POWER_ON)
22946b723ddSLudovic Barre 		host->mmc->actual_clock = host->cclk;
23046b723ddSLudovic Barre 	else
23146b723ddSLudovic Barre 		host->mmc->actual_clock = 0;
23246b723ddSLudovic Barre 
23346b723ddSLudovic Barre 	if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
23446b723ddSLudovic Barre 		clk |= MCI_STM32_CLK_WIDEBUS_4;
23546b723ddSLudovic Barre 	if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
23646b723ddSLudovic Barre 		clk |= MCI_STM32_CLK_WIDEBUS_8;
23746b723ddSLudovic Barre 
23846b723ddSLudovic Barre 	clk |= MCI_STM32_CLK_HWFCEN;
23946b723ddSLudovic Barre 	clk |= host->clk_reg_add;
24046b723ddSLudovic Barre 	clk |= ddr;
24146b723ddSLudovic Barre 
24246b723ddSLudovic Barre 	/*
24346b723ddSLudovic Barre 	 * SDMMC_FBCK is selected when an external Delay Block is needed
244*36240ef8SYann Gautier 	 * with SDR104 or HS200.
24546b723ddSLudovic Barre 	 */
24646b723ddSLudovic Barre 	if (host->mmc->ios.timing >= MMC_TIMING_UHS_SDR50) {
24746b723ddSLudovic Barre 		clk |= MCI_STM32_CLK_BUSSPEED;
248*36240ef8SYann Gautier 		if (host->mmc->ios.timing == MMC_TIMING_UHS_SDR104 ||
249*36240ef8SYann Gautier 		    host->mmc->ios.timing == MMC_TIMING_MMC_HS200) {
25046b723ddSLudovic Barre 			clk &= ~MCI_STM32_CLK_SEL_MSK;
25146b723ddSLudovic Barre 			clk |= MCI_STM32_CLK_SELFBCK;
25246b723ddSLudovic Barre 		}
25346b723ddSLudovic Barre 	}
25446b723ddSLudovic Barre 
25546b723ddSLudovic Barre 	mmci_write_clkreg(host, clk);
25646b723ddSLudovic Barre }
25746b723ddSLudovic Barre 
2581103f807SLudovic Barre static void sdmmc_dlyb_input_ck(struct sdmmc_dlyb *dlyb)
2591103f807SLudovic Barre {
2601103f807SLudovic Barre 	if (!dlyb || !dlyb->base)
2611103f807SLudovic Barre 		return;
2621103f807SLudovic Barre 
2631103f807SLudovic Barre 	/* Output clock = Input clock */
2641103f807SLudovic Barre 	writel_relaxed(0, dlyb->base + DLYB_CR);
2651103f807SLudovic Barre }
2661103f807SLudovic Barre 
26746b723ddSLudovic Barre static void mmci_sdmmc_set_pwrreg(struct mmci_host *host, unsigned int pwr)
26846b723ddSLudovic Barre {
26946b723ddSLudovic Barre 	struct mmc_ios ios = host->mmc->ios;
2701103f807SLudovic Barre 	struct sdmmc_dlyb *dlyb = host->variant_priv;
27146b723ddSLudovic Barre 
27294b94a93SLudovic Barre 	/* adds OF options */
27346b723ddSLudovic Barre 	pwr = host->pwr_reg_add;
27446b723ddSLudovic Barre 
2751103f807SLudovic Barre 	sdmmc_dlyb_input_ck(dlyb);
2761103f807SLudovic Barre 
27746b723ddSLudovic Barre 	if (ios.power_mode == MMC_POWER_OFF) {
27846b723ddSLudovic Barre 		/* Only a reset could power-off sdmmc */
27946b723ddSLudovic Barre 		reset_control_assert(host->rst);
28046b723ddSLudovic Barre 		udelay(2);
28146b723ddSLudovic Barre 		reset_control_deassert(host->rst);
28246b723ddSLudovic Barre 
28346b723ddSLudovic Barre 		/*
28446b723ddSLudovic Barre 		 * Set the SDMMC in Power-cycle state.
28546b723ddSLudovic Barre 		 * This will make that the SDMMC_D[7:0], SDMMC_CMD and SDMMC_CK
28646b723ddSLudovic Barre 		 * are driven low, to prevent the Card from being supplied
28746b723ddSLudovic Barre 		 * through the signal lines.
28846b723ddSLudovic Barre 		 */
28946b723ddSLudovic Barre 		mmci_write_pwrreg(host, MCI_STM32_PWR_CYC | pwr);
29046b723ddSLudovic Barre 	} else if (ios.power_mode == MMC_POWER_ON) {
29146b723ddSLudovic Barre 		/*
29246b723ddSLudovic Barre 		 * After power-off (reset): the irq mask defined in probe
29346b723ddSLudovic Barre 		 * functionis lost
29446b723ddSLudovic Barre 		 * ault irq mask (probe) must be activated
29546b723ddSLudovic Barre 		 */
29646b723ddSLudovic Barre 		writel(MCI_IRQENABLE | host->variant->start_err,
29746b723ddSLudovic Barre 		       host->base + MMCIMASK0);
29846b723ddSLudovic Barre 
29994b94a93SLudovic Barre 		/* preserves voltage switch bits */
30094b94a93SLudovic Barre 		pwr |= host->pwr_reg & (MCI_STM32_VSWITCHEN |
30194b94a93SLudovic Barre 					MCI_STM32_VSWITCH);
30294b94a93SLudovic Barre 
30346b723ddSLudovic Barre 		/*
30446b723ddSLudovic Barre 		 * After a power-cycle state, we must set the SDMMC in
30546b723ddSLudovic Barre 		 * Power-off. The SDMMC_D[7:0], SDMMC_CMD and SDMMC_CK are
30646b723ddSLudovic Barre 		 * driven high. Then we can set the SDMMC to Power-on state
30746b723ddSLudovic Barre 		 */
30846b723ddSLudovic Barre 		mmci_write_pwrreg(host, MCI_PWR_OFF | pwr);
30946b723ddSLudovic Barre 		mdelay(1);
31046b723ddSLudovic Barre 		mmci_write_pwrreg(host, MCI_PWR_ON | pwr);
31146b723ddSLudovic Barre 	}
31246b723ddSLudovic Barre }
31346b723ddSLudovic Barre 
3148372f9d0SLudovic Barre static u32 sdmmc_get_dctrl_cfg(struct mmci_host *host)
3158372f9d0SLudovic Barre {
3168372f9d0SLudovic Barre 	u32 datactrl;
3178372f9d0SLudovic Barre 
3188372f9d0SLudovic Barre 	datactrl = mmci_dctrl_blksz(host);
3198372f9d0SLudovic Barre 
3208372f9d0SLudovic Barre 	if (host->mmc->card && mmc_card_sdio(host->mmc->card) &&
3218372f9d0SLudovic Barre 	    host->data->blocks == 1)
3228372f9d0SLudovic Barre 		datactrl |= MCI_DPSM_STM32_MODE_SDIO;
3238372f9d0SLudovic Barre 	else if (host->data->stop && !host->mrq->sbc)
3248372f9d0SLudovic Barre 		datactrl |= MCI_DPSM_STM32_MODE_BLOCK_STOP;
3258372f9d0SLudovic Barre 	else
3268372f9d0SLudovic Barre 		datactrl |= MCI_DPSM_STM32_MODE_BLOCK;
3278372f9d0SLudovic Barre 
3288372f9d0SLudovic Barre 	return datactrl;
3298372f9d0SLudovic Barre }
3308372f9d0SLudovic Barre 
3310e68de6aSLudovic Barre static bool sdmmc_busy_complete(struct mmci_host *host, u32 status, u32 err_msk)
3320e68de6aSLudovic Barre {
3330e68de6aSLudovic Barre 	void __iomem *base = host->base;
3340e68de6aSLudovic Barre 	u32 busy_d0, busy_d0end, mask, sdmmc_status;
3350e68de6aSLudovic Barre 
3360e68de6aSLudovic Barre 	mask = readl_relaxed(base + MMCIMASK0);
3370e68de6aSLudovic Barre 	sdmmc_status = readl_relaxed(base + MMCISTATUS);
3380e68de6aSLudovic Barre 	busy_d0end = sdmmc_status & MCI_STM32_BUSYD0END;
3390e68de6aSLudovic Barre 	busy_d0 = sdmmc_status & MCI_STM32_BUSYD0;
3400e68de6aSLudovic Barre 
3410e68de6aSLudovic Barre 	/* complete if there is an error or busy_d0end */
3420e68de6aSLudovic Barre 	if ((status & err_msk) || busy_d0end)
3430e68de6aSLudovic Barre 		goto complete;
3440e68de6aSLudovic Barre 
3450e68de6aSLudovic Barre 	/*
3460e68de6aSLudovic Barre 	 * On response the busy signaling is reflected in the BUSYD0 flag.
3470e68de6aSLudovic Barre 	 * if busy_d0 is in-progress we must activate busyd0end interrupt
3480e68de6aSLudovic Barre 	 * to wait this completion. Else this request has no busy step.
3490e68de6aSLudovic Barre 	 */
3500e68de6aSLudovic Barre 	if (busy_d0) {
3510e68de6aSLudovic Barre 		if (!host->busy_status) {
3520e68de6aSLudovic Barre 			writel_relaxed(mask | host->variant->busy_detect_mask,
3530e68de6aSLudovic Barre 				       base + MMCIMASK0);
3540e68de6aSLudovic Barre 			host->busy_status = status &
3550e68de6aSLudovic Barre 				(MCI_CMDSENT | MCI_CMDRESPEND);
3560e68de6aSLudovic Barre 		}
3570e68de6aSLudovic Barre 		return false;
3580e68de6aSLudovic Barre 	}
3590e68de6aSLudovic Barre 
3600e68de6aSLudovic Barre complete:
3610e68de6aSLudovic Barre 	if (host->busy_status) {
3620e68de6aSLudovic Barre 		writel_relaxed(mask & ~host->variant->busy_detect_mask,
3630e68de6aSLudovic Barre 			       base + MMCIMASK0);
3640e68de6aSLudovic Barre 		host->busy_status = 0;
3650e68de6aSLudovic Barre 	}
3660e68de6aSLudovic Barre 
367d4a384cbSLudovic Barre 	writel_relaxed(host->variant->busy_detect_mask, base + MMCICLEAR);
368d4a384cbSLudovic Barre 
3690e68de6aSLudovic Barre 	return true;
3700e68de6aSLudovic Barre }
3710e68de6aSLudovic Barre 
3721103f807SLudovic Barre static void sdmmc_dlyb_set_cfgr(struct sdmmc_dlyb *dlyb,
3731103f807SLudovic Barre 				int unit, int phase, bool sampler)
3741103f807SLudovic Barre {
3751103f807SLudovic Barre 	u32 cfgr;
3761103f807SLudovic Barre 
3771103f807SLudovic Barre 	writel_relaxed(DLYB_CR_SEN | DLYB_CR_DEN, dlyb->base + DLYB_CR);
3781103f807SLudovic Barre 
3791103f807SLudovic Barre 	cfgr = FIELD_PREP(DLYB_CFGR_UNIT_MASK, unit) |
3801103f807SLudovic Barre 	       FIELD_PREP(DLYB_CFGR_SEL_MASK, phase);
3811103f807SLudovic Barre 	writel_relaxed(cfgr, dlyb->base + DLYB_CFGR);
3821103f807SLudovic Barre 
3831103f807SLudovic Barre 	if (!sampler)
3841103f807SLudovic Barre 		writel_relaxed(DLYB_CR_DEN, dlyb->base + DLYB_CR);
3851103f807SLudovic Barre }
3861103f807SLudovic Barre 
3871103f807SLudovic Barre static int sdmmc_dlyb_lng_tuning(struct mmci_host *host)
3881103f807SLudovic Barre {
3891103f807SLudovic Barre 	struct sdmmc_dlyb *dlyb = host->variant_priv;
3901103f807SLudovic Barre 	u32 cfgr;
3911103f807SLudovic Barre 	int i, lng, ret;
3921103f807SLudovic Barre 
3931103f807SLudovic Barre 	for (i = 0; i <= DLYB_CFGR_UNIT_MAX; i++) {
3941103f807SLudovic Barre 		sdmmc_dlyb_set_cfgr(dlyb, i, DLYB_CFGR_SEL_MAX, true);
3951103f807SLudovic Barre 
3961103f807SLudovic Barre 		ret = readl_relaxed_poll_timeout(dlyb->base + DLYB_CFGR, cfgr,
3971103f807SLudovic Barre 						 (cfgr & DLYB_CFGR_LNGF),
3981103f807SLudovic Barre 						 1, DLYB_LNG_TIMEOUT_US);
3991103f807SLudovic Barre 		if (ret) {
4001103f807SLudovic Barre 			dev_warn(mmc_dev(host->mmc),
4011103f807SLudovic Barre 				 "delay line cfg timeout unit:%d cfgr:%d\n",
4021103f807SLudovic Barre 				 i, cfgr);
4031103f807SLudovic Barre 			continue;
4041103f807SLudovic Barre 		}
4051103f807SLudovic Barre 
4061103f807SLudovic Barre 		lng = FIELD_GET(DLYB_CFGR_LNG_MASK, cfgr);
4071103f807SLudovic Barre 		if (lng < BIT(DLYB_NB_DELAY) && lng > 0)
4081103f807SLudovic Barre 			break;
4091103f807SLudovic Barre 	}
4101103f807SLudovic Barre 
4111103f807SLudovic Barre 	if (i > DLYB_CFGR_UNIT_MAX)
4121103f807SLudovic Barre 		return -EINVAL;
4131103f807SLudovic Barre 
4141103f807SLudovic Barre 	dlyb->unit = i;
4151103f807SLudovic Barre 	dlyb->max = __fls(lng);
4161103f807SLudovic Barre 
4171103f807SLudovic Barre 	return 0;
4181103f807SLudovic Barre }
4191103f807SLudovic Barre 
4201103f807SLudovic Barre static int sdmmc_dlyb_phase_tuning(struct mmci_host *host, u32 opcode)
4211103f807SLudovic Barre {
4221103f807SLudovic Barre 	struct sdmmc_dlyb *dlyb = host->variant_priv;
4231103f807SLudovic Barre 	int cur_len = 0, max_len = 0, end_of_len = 0;
4241103f807SLudovic Barre 	int phase;
4251103f807SLudovic Barre 
4261103f807SLudovic Barre 	for (phase = 0; phase <= dlyb->max; phase++) {
4271103f807SLudovic Barre 		sdmmc_dlyb_set_cfgr(dlyb, dlyb->unit, phase, false);
4281103f807SLudovic Barre 
4291103f807SLudovic Barre 		if (mmc_send_tuning(host->mmc, opcode, NULL)) {
4301103f807SLudovic Barre 			cur_len = 0;
4311103f807SLudovic Barre 		} else {
4321103f807SLudovic Barre 			cur_len++;
4331103f807SLudovic Barre 			if (cur_len > max_len) {
4341103f807SLudovic Barre 				max_len = cur_len;
4351103f807SLudovic Barre 				end_of_len = phase;
4361103f807SLudovic Barre 			}
4371103f807SLudovic Barre 		}
4381103f807SLudovic Barre 	}
4391103f807SLudovic Barre 
4401103f807SLudovic Barre 	if (!max_len) {
4411103f807SLudovic Barre 		dev_err(mmc_dev(host->mmc), "no tuning point found\n");
4421103f807SLudovic Barre 		return -EINVAL;
4431103f807SLudovic Barre 	}
4441103f807SLudovic Barre 
445ff31ee0aSYann Gautier 	writel_relaxed(0, dlyb->base + DLYB_CR);
446ff31ee0aSYann Gautier 
4471103f807SLudovic Barre 	phase = end_of_len - max_len / 2;
4481103f807SLudovic Barre 	sdmmc_dlyb_set_cfgr(dlyb, dlyb->unit, phase, false);
4491103f807SLudovic Barre 
4501103f807SLudovic Barre 	dev_dbg(mmc_dev(host->mmc), "unit:%d max_dly:%d phase:%d\n",
4511103f807SLudovic Barre 		dlyb->unit, dlyb->max, phase);
4521103f807SLudovic Barre 
4531103f807SLudovic Barre 	return 0;
4541103f807SLudovic Barre }
4551103f807SLudovic Barre 
4561103f807SLudovic Barre static int sdmmc_execute_tuning(struct mmc_host *mmc, u32 opcode)
4571103f807SLudovic Barre {
4581103f807SLudovic Barre 	struct mmci_host *host = mmc_priv(mmc);
4591103f807SLudovic Barre 	struct sdmmc_dlyb *dlyb = host->variant_priv;
4601103f807SLudovic Barre 
4611103f807SLudovic Barre 	if (!dlyb || !dlyb->base)
4621103f807SLudovic Barre 		return -EINVAL;
4631103f807SLudovic Barre 
4641103f807SLudovic Barre 	if (sdmmc_dlyb_lng_tuning(host))
4651103f807SLudovic Barre 		return -EINVAL;
4661103f807SLudovic Barre 
4671103f807SLudovic Barre 	return sdmmc_dlyb_phase_tuning(host, opcode);
4681103f807SLudovic Barre }
4691103f807SLudovic Barre 
47094b94a93SLudovic Barre static void sdmmc_pre_sig_volt_vswitch(struct mmci_host *host)
47194b94a93SLudovic Barre {
47294b94a93SLudovic Barre 	/* clear the voltage switch completion flag */
47394b94a93SLudovic Barre 	writel_relaxed(MCI_STM32_VSWENDC, host->base + MMCICLEAR);
47494b94a93SLudovic Barre 	/* enable Voltage switch procedure */
47594b94a93SLudovic Barre 	mmci_write_pwrreg(host, host->pwr_reg | MCI_STM32_VSWITCHEN);
47694b94a93SLudovic Barre }
47794b94a93SLudovic Barre 
47894b94a93SLudovic Barre static int sdmmc_post_sig_volt_switch(struct mmci_host *host,
47994b94a93SLudovic Barre 				      struct mmc_ios *ios)
48094b94a93SLudovic Barre {
48194b94a93SLudovic Barre 	unsigned long flags;
48294b94a93SLudovic Barre 	u32 status;
48394b94a93SLudovic Barre 	int ret = 0;
48494b94a93SLudovic Barre 
48594b94a93SLudovic Barre 	spin_lock_irqsave(&host->lock, flags);
486d8e193f1SChristophe Kerello 	if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_180 &&
487d8e193f1SChristophe Kerello 	    host->pwr_reg & MCI_STM32_VSWITCHEN) {
48894b94a93SLudovic Barre 		mmci_write_pwrreg(host, host->pwr_reg | MCI_STM32_VSWITCH);
48994b94a93SLudovic Barre 		spin_unlock_irqrestore(&host->lock, flags);
49094b94a93SLudovic Barre 
49194b94a93SLudovic Barre 		/* wait voltage switch completion while 10ms */
49294b94a93SLudovic Barre 		ret = readl_relaxed_poll_timeout(host->base + MMCISTATUS,
49394b94a93SLudovic Barre 						 status,
49494b94a93SLudovic Barre 						 (status & MCI_STM32_VSWEND),
49594b94a93SLudovic Barre 						 10, SDMMC_VSWEND_TIMEOUT_US);
49694b94a93SLudovic Barre 
49794b94a93SLudovic Barre 		writel_relaxed(MCI_STM32_VSWENDC | MCI_STM32_CKSTOPC,
49894b94a93SLudovic Barre 			       host->base + MMCICLEAR);
499d8e193f1SChristophe Kerello 		spin_lock_irqsave(&host->lock, flags);
50094b94a93SLudovic Barre 		mmci_write_pwrreg(host, host->pwr_reg &
50194b94a93SLudovic Barre 				  ~(MCI_STM32_VSWITCHEN | MCI_STM32_VSWITCH));
50294b94a93SLudovic Barre 	}
503d8e193f1SChristophe Kerello 	spin_unlock_irqrestore(&host->lock, flags);
50494b94a93SLudovic Barre 
50594b94a93SLudovic Barre 	return ret;
50694b94a93SLudovic Barre }
50794b94a93SLudovic Barre 
50846b723ddSLudovic Barre static struct mmci_host_ops sdmmc_variant_ops = {
50946b723ddSLudovic Barre 	.validate_data = sdmmc_idma_validate_data,
51046b723ddSLudovic Barre 	.prep_data = sdmmc_idma_prep_data,
51146b723ddSLudovic Barre 	.unprep_data = sdmmc_idma_unprep_data,
5128372f9d0SLudovic Barre 	.get_datactrl_cfg = sdmmc_get_dctrl_cfg,
51346b723ddSLudovic Barre 	.dma_setup = sdmmc_idma_setup,
51446b723ddSLudovic Barre 	.dma_start = sdmmc_idma_start,
51546b723ddSLudovic Barre 	.dma_finalize = sdmmc_idma_finalize,
51646b723ddSLudovic Barre 	.set_clkreg = mmci_sdmmc_set_clkreg,
51746b723ddSLudovic Barre 	.set_pwrreg = mmci_sdmmc_set_pwrreg,
5180e68de6aSLudovic Barre 	.busy_complete = sdmmc_busy_complete,
51994b94a93SLudovic Barre 	.pre_sig_volt_switch = sdmmc_pre_sig_volt_vswitch,
52094b94a93SLudovic Barre 	.post_sig_volt_switch = sdmmc_post_sig_volt_switch,
52146b723ddSLudovic Barre };
52246b723ddSLudovic Barre 
52346b723ddSLudovic Barre void sdmmc_variant_init(struct mmci_host *host)
52446b723ddSLudovic Barre {
5251103f807SLudovic Barre 	struct device_node *np = host->mmc->parent->of_node;
5261103f807SLudovic Barre 	void __iomem *base_dlyb;
5271103f807SLudovic Barre 	struct sdmmc_dlyb *dlyb;
5281103f807SLudovic Barre 
52946b723ddSLudovic Barre 	host->ops = &sdmmc_variant_ops;
53033ba6fecSLudovic Barre 	host->pwr_reg = readl_relaxed(host->base + MMCIPOWER);
5311103f807SLudovic Barre 
5321103f807SLudovic Barre 	base_dlyb = devm_of_iomap(mmc_dev(host->mmc), np, 1, NULL);
5331103f807SLudovic Barre 	if (IS_ERR(base_dlyb))
5341103f807SLudovic Barre 		return;
5351103f807SLudovic Barre 
5361103f807SLudovic Barre 	dlyb = devm_kzalloc(mmc_dev(host->mmc), sizeof(*dlyb), GFP_KERNEL);
5371103f807SLudovic Barre 	if (!dlyb)
5381103f807SLudovic Barre 		return;
5391103f807SLudovic Barre 
5401103f807SLudovic Barre 	dlyb->base = base_dlyb;
5411103f807SLudovic Barre 	host->variant_priv = dlyb;
5421103f807SLudovic Barre 	host->mmc_ops->execute_tuning = sdmmc_execute_tuning;
54346b723ddSLudovic Barre }
544