1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Driver for Synopsys DesignWare Cores Mobile Storage Host Controller
4  *
5  * Copyright (C) 2018 Synaptics Incorporated
6  *
7  * Author: Jisheng Zhang <jszhang@kernel.org>
8  */
9 
10 #include <linux/acpi.h>
11 #include <linux/clk.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/iopoll.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/of.h>
17 #include <linux/platform_device.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/reset.h>
20 #include <linux/sizes.h>
21 
22 #include "sdhci-pltfm.h"
23 
24 #define SDHCI_DWCMSHC_ARG2_STUFF	GENMASK(31, 16)
25 
26 /* DWCMSHC specific Mode Select value */
27 #define DWCMSHC_CTRL_HS400		0x7
28 
29 /* DWC IP vendor area 1 pointer */
30 #define DWCMSHC_P_VENDOR_AREA1		0xe8
31 #define DWCMSHC_AREA1_MASK		GENMASK(11, 0)
32 /* Offset inside the  vendor area 1 */
33 #define DWCMSHC_HOST_CTRL3		0x8
34 #define DWCMSHC_EMMC_CONTROL		0x2c
35 #define DWCMSHC_CARD_IS_EMMC		BIT(0)
36 #define DWCMSHC_ENHANCED_STROBE		BIT(8)
37 #define DWCMSHC_EMMC_ATCTRL		0x40
38 
39 /* Rockchip specific Registers */
40 #define DWCMSHC_EMMC_DLL_CTRL		0x800
41 #define DWCMSHC_EMMC_DLL_RXCLK		0x804
42 #define DWCMSHC_EMMC_DLL_TXCLK		0x808
43 #define DWCMSHC_EMMC_DLL_STRBIN		0x80c
44 #define DECMSHC_EMMC_DLL_CMDOUT		0x810
45 #define DWCMSHC_EMMC_DLL_STATUS0	0x840
46 #define DWCMSHC_EMMC_DLL_START		BIT(0)
47 #define DWCMSHC_EMMC_DLL_LOCKED		BIT(8)
48 #define DWCMSHC_EMMC_DLL_TIMEOUT	BIT(9)
49 #define DWCMSHC_EMMC_DLL_RXCLK_SRCSEL	29
50 #define DWCMSHC_EMMC_DLL_START_POINT	16
51 #define DWCMSHC_EMMC_DLL_INC		8
52 #define DWCMSHC_EMMC_DLL_BYPASS		BIT(24)
53 #define DWCMSHC_EMMC_DLL_DLYENA		BIT(27)
54 #define DLL_TXCLK_TAPNUM_DEFAULT	0x10
55 #define DLL_TXCLK_TAPNUM_90_DEGREES	0xA
56 #define DLL_TXCLK_TAPNUM_FROM_SW	BIT(24)
57 #define DLL_STRBIN_TAPNUM_DEFAULT	0x8
58 #define DLL_STRBIN_TAPNUM_FROM_SW	BIT(24)
59 #define DLL_STRBIN_DELAY_NUM_SEL	BIT(26)
60 #define DLL_STRBIN_DELAY_NUM_OFFSET	16
61 #define DLL_STRBIN_DELAY_NUM_DEFAULT	0x16
62 #define DLL_RXCLK_NO_INVERTER		1
63 #define DLL_RXCLK_INVERTER		0
64 #define DLL_CMDOUT_TAPNUM_90_DEGREES	0x8
65 #define DLL_RXCLK_ORI_GATE		BIT(31)
66 #define DLL_CMDOUT_TAPNUM_FROM_SW	BIT(24)
67 #define DLL_CMDOUT_SRC_CLK_NEG		BIT(28)
68 #define DLL_CMDOUT_EN_SRC_CLK_NEG	BIT(29)
69 
70 #define DLL_LOCK_WO_TMOUT(x) \
71 	((((x) & DWCMSHC_EMMC_DLL_LOCKED) == DWCMSHC_EMMC_DLL_LOCKED) && \
72 	(((x) & DWCMSHC_EMMC_DLL_TIMEOUT) == 0))
73 #define RK35xx_MAX_CLKS 3
74 
75 #define BOUNDARY_OK(addr, len) \
76 	((addr | (SZ_128M - 1)) == ((addr + len - 1) | (SZ_128M - 1)))
77 
78 enum dwcmshc_rk_type {
79 	DWCMSHC_RK3568,
80 	DWCMSHC_RK3588,
81 };
82 
83 struct rk35xx_priv {
84 	/* Rockchip specified optional clocks */
85 	struct clk_bulk_data rockchip_clks[RK35xx_MAX_CLKS];
86 	struct reset_control *reset;
87 	enum dwcmshc_rk_type devtype;
88 	u8 txclk_tapnum;
89 };
90 
91 struct dwcmshc_priv {
92 	struct clk	*bus_clk;
93 	int vendor_specific_area1; /* P_VENDOR_SPECIFIC_AREA reg */
94 	void *priv; /* pointer to SoC private stuff */
95 };
96 
97 /*
98  * If DMA addr spans 128MB boundary, we split the DMA transfer into two
99  * so that each DMA transfer doesn't exceed the boundary.
100  */
dwcmshc_adma_write_desc(struct sdhci_host * host,void ** desc,dma_addr_t addr,int len,unsigned int cmd)101 static void dwcmshc_adma_write_desc(struct sdhci_host *host, void **desc,
102 				    dma_addr_t addr, int len, unsigned int cmd)
103 {
104 	int tmplen, offset;
105 
106 	if (likely(!len || BOUNDARY_OK(addr, len))) {
107 		sdhci_adma_write_desc(host, desc, addr, len, cmd);
108 		return;
109 	}
110 
111 	offset = addr & (SZ_128M - 1);
112 	tmplen = SZ_128M - offset;
113 	sdhci_adma_write_desc(host, desc, addr, tmplen, cmd);
114 
115 	addr += tmplen;
116 	len -= tmplen;
117 	sdhci_adma_write_desc(host, desc, addr, len, cmd);
118 }
119 
dwcmshc_get_max_clock(struct sdhci_host * host)120 static unsigned int dwcmshc_get_max_clock(struct sdhci_host *host)
121 {
122 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
123 
124 	if (pltfm_host->clk)
125 		return sdhci_pltfm_clk_get_max_clock(host);
126 	else
127 		return pltfm_host->clock;
128 }
129 
rk35xx_get_max_clock(struct sdhci_host * host)130 static unsigned int rk35xx_get_max_clock(struct sdhci_host *host)
131 {
132 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
133 
134 	return clk_round_rate(pltfm_host->clk, ULONG_MAX);
135 }
136 
dwcmshc_check_auto_cmd23(struct mmc_host * mmc,struct mmc_request * mrq)137 static void dwcmshc_check_auto_cmd23(struct mmc_host *mmc,
138 				     struct mmc_request *mrq)
139 {
140 	struct sdhci_host *host = mmc_priv(mmc);
141 
142 	/*
143 	 * No matter V4 is enabled or not, ARGUMENT2 register is 32-bit
144 	 * block count register which doesn't support stuff bits of
145 	 * CMD23 argument on dwcmsch host controller.
146 	 */
147 	if (mrq->sbc && (mrq->sbc->arg & SDHCI_DWCMSHC_ARG2_STUFF))
148 		host->flags &= ~SDHCI_AUTO_CMD23;
149 	else
150 		host->flags |= SDHCI_AUTO_CMD23;
151 }
152 
dwcmshc_request(struct mmc_host * mmc,struct mmc_request * mrq)153 static void dwcmshc_request(struct mmc_host *mmc, struct mmc_request *mrq)
154 {
155 	dwcmshc_check_auto_cmd23(mmc, mrq);
156 
157 	sdhci_request(mmc, mrq);
158 }
159 
dwcmshc_set_uhs_signaling(struct sdhci_host * host,unsigned int timing)160 static void dwcmshc_set_uhs_signaling(struct sdhci_host *host,
161 				      unsigned int timing)
162 {
163 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
164 	struct dwcmshc_priv *priv = sdhci_pltfm_priv(pltfm_host);
165 	u16 ctrl, ctrl_2;
166 
167 	ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
168 	/* Select Bus Speed Mode for host */
169 	ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
170 	if ((timing == MMC_TIMING_MMC_HS200) ||
171 	    (timing == MMC_TIMING_UHS_SDR104))
172 		ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
173 	else if (timing == MMC_TIMING_UHS_SDR12)
174 		ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
175 	else if ((timing == MMC_TIMING_UHS_SDR25) ||
176 		 (timing == MMC_TIMING_MMC_HS))
177 		ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
178 	else if (timing == MMC_TIMING_UHS_SDR50)
179 		ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
180 	else if ((timing == MMC_TIMING_UHS_DDR50) ||
181 		 (timing == MMC_TIMING_MMC_DDR52))
182 		ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
183 	else if (timing == MMC_TIMING_MMC_HS400) {
184 		/* set CARD_IS_EMMC bit to enable Data Strobe for HS400 */
185 		ctrl = sdhci_readw(host, priv->vendor_specific_area1 + DWCMSHC_EMMC_CONTROL);
186 		ctrl |= DWCMSHC_CARD_IS_EMMC;
187 		sdhci_writew(host, ctrl, priv->vendor_specific_area1 + DWCMSHC_EMMC_CONTROL);
188 
189 		ctrl_2 |= DWCMSHC_CTRL_HS400;
190 	}
191 
192 	sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
193 }
194 
dwcmshc_hs400_enhanced_strobe(struct mmc_host * mmc,struct mmc_ios * ios)195 static void dwcmshc_hs400_enhanced_strobe(struct mmc_host *mmc,
196 					  struct mmc_ios *ios)
197 {
198 	u32 vendor;
199 	struct sdhci_host *host = mmc_priv(mmc);
200 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
201 	struct dwcmshc_priv *priv = sdhci_pltfm_priv(pltfm_host);
202 	int reg = priv->vendor_specific_area1 + DWCMSHC_EMMC_CONTROL;
203 
204 	vendor = sdhci_readl(host, reg);
205 	if (ios->enhanced_strobe)
206 		vendor |= DWCMSHC_ENHANCED_STROBE;
207 	else
208 		vendor &= ~DWCMSHC_ENHANCED_STROBE;
209 
210 	sdhci_writel(host, vendor, reg);
211 }
212 
dwcmshc_rk3568_set_clock(struct sdhci_host * host,unsigned int clock)213 static void dwcmshc_rk3568_set_clock(struct sdhci_host *host, unsigned int clock)
214 {
215 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
216 	struct dwcmshc_priv *dwc_priv = sdhci_pltfm_priv(pltfm_host);
217 	struct rk35xx_priv *priv = dwc_priv->priv;
218 	u8 txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT;
219 	u32 extra, reg;
220 	int err;
221 
222 	host->mmc->actual_clock = 0;
223 
224 	if (clock == 0) {
225 		/* Disable interface clock at initial state. */
226 		sdhci_set_clock(host, clock);
227 		return;
228 	}
229 
230 	/* Rockchip platform only support 375KHz for identify mode */
231 	if (clock <= 400000)
232 		clock = 375000;
233 
234 	err = clk_set_rate(pltfm_host->clk, clock);
235 	if (err)
236 		dev_err(mmc_dev(host->mmc), "fail to set clock %d", clock);
237 
238 	sdhci_set_clock(host, clock);
239 
240 	/* Disable cmd conflict check */
241 	reg = dwc_priv->vendor_specific_area1 + DWCMSHC_HOST_CTRL3;
242 	extra = sdhci_readl(host, reg);
243 	extra &= ~BIT(0);
244 	sdhci_writel(host, extra, reg);
245 
246 	if (clock <= 52000000) {
247 		/*
248 		 * Disable DLL and reset both of sample and drive clock.
249 		 * The bypass bit and start bit need to be set if DLL is not locked.
250 		 */
251 		sdhci_writel(host, DWCMSHC_EMMC_DLL_BYPASS | DWCMSHC_EMMC_DLL_START, DWCMSHC_EMMC_DLL_CTRL);
252 		sdhci_writel(host, DLL_RXCLK_ORI_GATE, DWCMSHC_EMMC_DLL_RXCLK);
253 		sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_TXCLK);
254 		sdhci_writel(host, 0, DECMSHC_EMMC_DLL_CMDOUT);
255 		/*
256 		 * Before switching to hs400es mode, the driver will enable
257 		 * enhanced strobe first. PHY needs to configure the parameters
258 		 * of enhanced strobe first.
259 		 */
260 		extra = DWCMSHC_EMMC_DLL_DLYENA |
261 			DLL_STRBIN_DELAY_NUM_SEL |
262 			DLL_STRBIN_DELAY_NUM_DEFAULT << DLL_STRBIN_DELAY_NUM_OFFSET;
263 		sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN);
264 		return;
265 	}
266 
267 	/* Reset DLL */
268 	sdhci_writel(host, BIT(1), DWCMSHC_EMMC_DLL_CTRL);
269 	udelay(1);
270 	sdhci_writel(host, 0x0, DWCMSHC_EMMC_DLL_CTRL);
271 
272 	/*
273 	 * We shouldn't set DLL_RXCLK_NO_INVERTER for identify mode but
274 	 * we must set it in higher speed mode.
275 	 */
276 	extra = DWCMSHC_EMMC_DLL_DLYENA;
277 	if (priv->devtype == DWCMSHC_RK3568)
278 		extra |= DLL_RXCLK_NO_INVERTER << DWCMSHC_EMMC_DLL_RXCLK_SRCSEL;
279 	sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_RXCLK);
280 
281 	/* Init DLL settings */
282 	extra = 0x5 << DWCMSHC_EMMC_DLL_START_POINT |
283 		0x2 << DWCMSHC_EMMC_DLL_INC |
284 		DWCMSHC_EMMC_DLL_START;
285 	sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_CTRL);
286 	err = readl_poll_timeout(host->ioaddr + DWCMSHC_EMMC_DLL_STATUS0,
287 				 extra, DLL_LOCK_WO_TMOUT(extra), 1,
288 				 500 * USEC_PER_MSEC);
289 	if (err) {
290 		dev_err(mmc_dev(host->mmc), "DLL lock timeout!\n");
291 		return;
292 	}
293 
294 	extra = 0x1 << 16 | /* tune clock stop en */
295 		0x3 << 17 | /* pre-change delay */
296 		0x3 << 19;  /* post-change delay */
297 	sdhci_writel(host, extra, dwc_priv->vendor_specific_area1 + DWCMSHC_EMMC_ATCTRL);
298 
299 	if (host->mmc->ios.timing == MMC_TIMING_MMC_HS200 ||
300 	    host->mmc->ios.timing == MMC_TIMING_MMC_HS400)
301 		txclk_tapnum = priv->txclk_tapnum;
302 
303 	if ((priv->devtype == DWCMSHC_RK3588) && host->mmc->ios.timing == MMC_TIMING_MMC_HS400) {
304 		txclk_tapnum = DLL_TXCLK_TAPNUM_90_DEGREES;
305 
306 		extra = DLL_CMDOUT_SRC_CLK_NEG |
307 			DLL_CMDOUT_EN_SRC_CLK_NEG |
308 			DWCMSHC_EMMC_DLL_DLYENA |
309 			DLL_CMDOUT_TAPNUM_90_DEGREES |
310 			DLL_CMDOUT_TAPNUM_FROM_SW;
311 		sdhci_writel(host, extra, DECMSHC_EMMC_DLL_CMDOUT);
312 	}
313 
314 	extra = DWCMSHC_EMMC_DLL_DLYENA |
315 		DLL_TXCLK_TAPNUM_FROM_SW |
316 		DLL_RXCLK_NO_INVERTER << DWCMSHC_EMMC_DLL_RXCLK_SRCSEL |
317 		txclk_tapnum;
318 	sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_TXCLK);
319 
320 	extra = DWCMSHC_EMMC_DLL_DLYENA |
321 		DLL_STRBIN_TAPNUM_DEFAULT |
322 		DLL_STRBIN_TAPNUM_FROM_SW;
323 	sdhci_writel(host, extra, DWCMSHC_EMMC_DLL_STRBIN);
324 }
325 
rk35xx_sdhci_reset(struct sdhci_host * host,u8 mask)326 static void rk35xx_sdhci_reset(struct sdhci_host *host, u8 mask)
327 {
328 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
329 	struct dwcmshc_priv *dwc_priv = sdhci_pltfm_priv(pltfm_host);
330 	struct rk35xx_priv *priv = dwc_priv->priv;
331 
332 	if (mask & SDHCI_RESET_ALL && priv->reset) {
333 		reset_control_assert(priv->reset);
334 		udelay(1);
335 		reset_control_deassert(priv->reset);
336 	}
337 
338 	sdhci_reset(host, mask);
339 }
340 
341 static const struct sdhci_ops sdhci_dwcmshc_ops = {
342 	.set_clock		= sdhci_set_clock,
343 	.set_bus_width		= sdhci_set_bus_width,
344 	.set_uhs_signaling	= dwcmshc_set_uhs_signaling,
345 	.get_max_clock		= dwcmshc_get_max_clock,
346 	.reset			= sdhci_reset,
347 	.adma_write_desc	= dwcmshc_adma_write_desc,
348 };
349 
350 static const struct sdhci_ops sdhci_dwcmshc_rk35xx_ops = {
351 	.set_clock		= dwcmshc_rk3568_set_clock,
352 	.set_bus_width		= sdhci_set_bus_width,
353 	.set_uhs_signaling	= dwcmshc_set_uhs_signaling,
354 	.get_max_clock		= rk35xx_get_max_clock,
355 	.reset			= rk35xx_sdhci_reset,
356 	.adma_write_desc	= dwcmshc_adma_write_desc,
357 };
358 
359 static const struct sdhci_pltfm_data sdhci_dwcmshc_pdata = {
360 	.ops = &sdhci_dwcmshc_ops,
361 	.quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
362 	.quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
363 };
364 
365 #ifdef CONFIG_ACPI
366 static const struct sdhci_pltfm_data sdhci_dwcmshc_bf3_pdata = {
367 	.ops = &sdhci_dwcmshc_ops,
368 	.quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
369 	.quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
370 		   SDHCI_QUIRK2_ACMD23_BROKEN,
371 };
372 #endif
373 
374 static const struct sdhci_pltfm_data sdhci_dwcmshc_rk35xx_pdata = {
375 	.ops = &sdhci_dwcmshc_rk35xx_ops,
376 	.quirks = SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN |
377 		  SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
378 	.quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
379 		   SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN,
380 };
381 
dwcmshc_rk35xx_init(struct sdhci_host * host,struct dwcmshc_priv * dwc_priv)382 static int dwcmshc_rk35xx_init(struct sdhci_host *host, struct dwcmshc_priv *dwc_priv)
383 {
384 	int err;
385 	struct rk35xx_priv *priv = dwc_priv->priv;
386 
387 	priv->reset = devm_reset_control_array_get_optional_exclusive(mmc_dev(host->mmc));
388 	if (IS_ERR(priv->reset)) {
389 		err = PTR_ERR(priv->reset);
390 		dev_err(mmc_dev(host->mmc), "failed to get reset control %d\n", err);
391 		return err;
392 	}
393 
394 	priv->rockchip_clks[0].id = "axi";
395 	priv->rockchip_clks[1].id = "block";
396 	priv->rockchip_clks[2].id = "timer";
397 	err = devm_clk_bulk_get_optional(mmc_dev(host->mmc), RK35xx_MAX_CLKS,
398 					 priv->rockchip_clks);
399 	if (err) {
400 		dev_err(mmc_dev(host->mmc), "failed to get clocks %d\n", err);
401 		return err;
402 	}
403 
404 	err = clk_bulk_prepare_enable(RK35xx_MAX_CLKS, priv->rockchip_clks);
405 	if (err) {
406 		dev_err(mmc_dev(host->mmc), "failed to enable clocks %d\n", err);
407 		return err;
408 	}
409 
410 	if (of_property_read_u8(mmc_dev(host->mmc)->of_node, "rockchip,txclk-tapnum",
411 				&priv->txclk_tapnum))
412 		priv->txclk_tapnum = DLL_TXCLK_TAPNUM_DEFAULT;
413 
414 	/* Disable cmd conflict check */
415 	sdhci_writel(host, 0x0, dwc_priv->vendor_specific_area1 + DWCMSHC_HOST_CTRL3);
416 	/* Reset previous settings */
417 	sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_TXCLK);
418 	sdhci_writel(host, 0, DWCMSHC_EMMC_DLL_STRBIN);
419 
420 	return 0;
421 }
422 
dwcmshc_rk35xx_postinit(struct sdhci_host * host,struct dwcmshc_priv * dwc_priv)423 static void dwcmshc_rk35xx_postinit(struct sdhci_host *host, struct dwcmshc_priv *dwc_priv)
424 {
425 	/*
426 	 * Don't support highspeed bus mode with low clk speed as we
427 	 * cannot use DLL for this condition.
428 	 */
429 	if (host->mmc->f_max <= 52000000) {
430 		dev_info(mmc_dev(host->mmc), "Disabling HS200/HS400, frequency too low (%d)\n",
431 			 host->mmc->f_max);
432 		host->mmc->caps2 &= ~(MMC_CAP2_HS200 | MMC_CAP2_HS400);
433 		host->mmc->caps &= ~(MMC_CAP_3_3V_DDR | MMC_CAP_1_8V_DDR);
434 	}
435 }
436 
437 static const struct of_device_id sdhci_dwcmshc_dt_ids[] = {
438 	{
439 		.compatible = "rockchip,rk3588-dwcmshc",
440 		.data = &sdhci_dwcmshc_rk35xx_pdata,
441 	},
442 	{
443 		.compatible = "rockchip,rk3568-dwcmshc",
444 		.data = &sdhci_dwcmshc_rk35xx_pdata,
445 	},
446 	{
447 		.compatible = "snps,dwcmshc-sdhci",
448 		.data = &sdhci_dwcmshc_pdata,
449 	},
450 	{},
451 };
452 MODULE_DEVICE_TABLE(of, sdhci_dwcmshc_dt_ids);
453 
454 #ifdef CONFIG_ACPI
455 static const struct acpi_device_id sdhci_dwcmshc_acpi_ids[] = {
456 	{
457 		.id = "MLNXBF30",
458 		.driver_data = (kernel_ulong_t)&sdhci_dwcmshc_bf3_pdata,
459 	},
460 	{}
461 };
462 MODULE_DEVICE_TABLE(acpi, sdhci_dwcmshc_acpi_ids);
463 #endif
464 
dwcmshc_probe(struct platform_device * pdev)465 static int dwcmshc_probe(struct platform_device *pdev)
466 {
467 	struct device *dev = &pdev->dev;
468 	struct sdhci_pltfm_host *pltfm_host;
469 	struct sdhci_host *host;
470 	struct dwcmshc_priv *priv;
471 	struct rk35xx_priv *rk_priv = NULL;
472 	const struct sdhci_pltfm_data *pltfm_data;
473 	int err;
474 	u32 extra;
475 
476 	pltfm_data = device_get_match_data(&pdev->dev);
477 	if (!pltfm_data) {
478 		dev_err(&pdev->dev, "Error: No device match data found\n");
479 		return -ENODEV;
480 	}
481 
482 	host = sdhci_pltfm_init(pdev, pltfm_data,
483 				sizeof(struct dwcmshc_priv));
484 	if (IS_ERR(host))
485 		return PTR_ERR(host);
486 
487 	/*
488 	 * extra adma table cnt for cross 128M boundary handling.
489 	 */
490 	extra = DIV_ROUND_UP_ULL(dma_get_required_mask(dev), SZ_128M);
491 	if (extra > SDHCI_MAX_SEGS)
492 		extra = SDHCI_MAX_SEGS;
493 	host->adma_table_cnt += extra;
494 
495 	pltfm_host = sdhci_priv(host);
496 	priv = sdhci_pltfm_priv(pltfm_host);
497 
498 	if (dev->of_node) {
499 		pltfm_host->clk = devm_clk_get(dev, "core");
500 		if (IS_ERR(pltfm_host->clk)) {
501 			err = PTR_ERR(pltfm_host->clk);
502 			dev_err(dev, "failed to get core clk: %d\n", err);
503 			goto free_pltfm;
504 		}
505 		err = clk_prepare_enable(pltfm_host->clk);
506 		if (err)
507 			goto free_pltfm;
508 
509 		priv->bus_clk = devm_clk_get(dev, "bus");
510 		if (!IS_ERR(priv->bus_clk))
511 			clk_prepare_enable(priv->bus_clk);
512 	}
513 
514 	err = mmc_of_parse(host->mmc);
515 	if (err)
516 		goto err_clk;
517 
518 	sdhci_get_of_property(pdev);
519 
520 	priv->vendor_specific_area1 =
521 		sdhci_readl(host, DWCMSHC_P_VENDOR_AREA1) & DWCMSHC_AREA1_MASK;
522 
523 	host->mmc_host_ops.request = dwcmshc_request;
524 	host->mmc_host_ops.hs400_enhanced_strobe = dwcmshc_hs400_enhanced_strobe;
525 
526 	if (pltfm_data == &sdhci_dwcmshc_rk35xx_pdata) {
527 		rk_priv = devm_kzalloc(&pdev->dev, sizeof(struct rk35xx_priv), GFP_KERNEL);
528 		if (!rk_priv) {
529 			err = -ENOMEM;
530 			goto err_clk;
531 		}
532 
533 		if (of_device_is_compatible(pdev->dev.of_node, "rockchip,rk3588-dwcmshc"))
534 			rk_priv->devtype = DWCMSHC_RK3588;
535 		else
536 			rk_priv->devtype = DWCMSHC_RK3568;
537 
538 		priv->priv = rk_priv;
539 
540 		err = dwcmshc_rk35xx_init(host, priv);
541 		if (err)
542 			goto err_clk;
543 	}
544 
545 #ifdef CONFIG_ACPI
546 	if (pltfm_data == &sdhci_dwcmshc_bf3_pdata)
547 		sdhci_enable_v4_mode(host);
548 #endif
549 
550 	host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
551 
552 	pm_runtime_get_noresume(dev);
553 	pm_runtime_set_active(dev);
554 	pm_runtime_enable(dev);
555 
556 	err = sdhci_setup_host(host);
557 	if (err)
558 		goto err_rpm;
559 
560 	if (rk_priv)
561 		dwcmshc_rk35xx_postinit(host, priv);
562 
563 	err = __sdhci_add_host(host);
564 	if (err)
565 		goto err_setup_host;
566 
567 	pm_runtime_put(dev);
568 
569 	return 0;
570 
571 err_setup_host:
572 	sdhci_cleanup_host(host);
573 err_rpm:
574 	pm_runtime_disable(dev);
575 	pm_runtime_put_noidle(dev);
576 err_clk:
577 	clk_disable_unprepare(pltfm_host->clk);
578 	clk_disable_unprepare(priv->bus_clk);
579 	if (rk_priv)
580 		clk_bulk_disable_unprepare(RK35xx_MAX_CLKS,
581 					   rk_priv->rockchip_clks);
582 free_pltfm:
583 	sdhci_pltfm_free(pdev);
584 	return err;
585 }
586 
dwcmshc_disable_card_clk(struct sdhci_host * host)587 static void dwcmshc_disable_card_clk(struct sdhci_host *host)
588 {
589 	u16 ctrl;
590 
591 	ctrl = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
592 	if (ctrl & SDHCI_CLOCK_CARD_EN) {
593 		ctrl &= ~SDHCI_CLOCK_CARD_EN;
594 		sdhci_writew(host, ctrl, SDHCI_CLOCK_CONTROL);
595 	}
596 }
597 
dwcmshc_remove(struct platform_device * pdev)598 static void dwcmshc_remove(struct platform_device *pdev)
599 {
600 	struct sdhci_host *host = platform_get_drvdata(pdev);
601 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
602 	struct dwcmshc_priv *priv = sdhci_pltfm_priv(pltfm_host);
603 	struct rk35xx_priv *rk_priv = priv->priv;
604 
605 	pm_runtime_get_sync(&pdev->dev);
606 	pm_runtime_disable(&pdev->dev);
607 	pm_runtime_put_noidle(&pdev->dev);
608 
609 	sdhci_remove_host(host, 0);
610 
611 	dwcmshc_disable_card_clk(host);
612 
613 	clk_disable_unprepare(pltfm_host->clk);
614 	clk_disable_unprepare(priv->bus_clk);
615 	if (rk_priv)
616 		clk_bulk_disable_unprepare(RK35xx_MAX_CLKS,
617 					   rk_priv->rockchip_clks);
618 	sdhci_pltfm_free(pdev);
619 }
620 
621 #ifdef CONFIG_PM_SLEEP
dwcmshc_suspend(struct device * dev)622 static int dwcmshc_suspend(struct device *dev)
623 {
624 	struct sdhci_host *host = dev_get_drvdata(dev);
625 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
626 	struct dwcmshc_priv *priv = sdhci_pltfm_priv(pltfm_host);
627 	struct rk35xx_priv *rk_priv = priv->priv;
628 	int ret;
629 
630 	pm_runtime_resume(dev);
631 
632 	ret = sdhci_suspend_host(host);
633 	if (ret)
634 		return ret;
635 
636 	clk_disable_unprepare(pltfm_host->clk);
637 	if (!IS_ERR(priv->bus_clk))
638 		clk_disable_unprepare(priv->bus_clk);
639 
640 	if (rk_priv)
641 		clk_bulk_disable_unprepare(RK35xx_MAX_CLKS,
642 					   rk_priv->rockchip_clks);
643 
644 	return ret;
645 }
646 
dwcmshc_resume(struct device * dev)647 static int dwcmshc_resume(struct device *dev)
648 {
649 	struct sdhci_host *host = dev_get_drvdata(dev);
650 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
651 	struct dwcmshc_priv *priv = sdhci_pltfm_priv(pltfm_host);
652 	struct rk35xx_priv *rk_priv = priv->priv;
653 	int ret;
654 
655 	ret = clk_prepare_enable(pltfm_host->clk);
656 	if (ret)
657 		return ret;
658 
659 	if (!IS_ERR(priv->bus_clk)) {
660 		ret = clk_prepare_enable(priv->bus_clk);
661 		if (ret)
662 			goto disable_clk;
663 	}
664 
665 	if (rk_priv) {
666 		ret = clk_bulk_prepare_enable(RK35xx_MAX_CLKS,
667 					      rk_priv->rockchip_clks);
668 		if (ret)
669 			goto disable_bus_clk;
670 	}
671 
672 	ret = sdhci_resume_host(host);
673 	if (ret)
674 		goto disable_rockchip_clks;
675 
676 	return 0;
677 
678 disable_rockchip_clks:
679 	if (rk_priv)
680 		clk_bulk_disable_unprepare(RK35xx_MAX_CLKS,
681 					   rk_priv->rockchip_clks);
682 disable_bus_clk:
683 	if (!IS_ERR(priv->bus_clk))
684 		clk_disable_unprepare(priv->bus_clk);
685 disable_clk:
686 	clk_disable_unprepare(pltfm_host->clk);
687 	return ret;
688 }
689 #endif
690 
691 #ifdef CONFIG_PM
692 
dwcmshc_enable_card_clk(struct sdhci_host * host)693 static void dwcmshc_enable_card_clk(struct sdhci_host *host)
694 {
695 	u16 ctrl;
696 
697 	ctrl = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
698 	if ((ctrl & SDHCI_CLOCK_INT_EN) && !(ctrl & SDHCI_CLOCK_CARD_EN)) {
699 		ctrl |= SDHCI_CLOCK_CARD_EN;
700 		sdhci_writew(host, ctrl, SDHCI_CLOCK_CONTROL);
701 	}
702 }
703 
dwcmshc_runtime_suspend(struct device * dev)704 static int dwcmshc_runtime_suspend(struct device *dev)
705 {
706 	struct sdhci_host *host = dev_get_drvdata(dev);
707 
708 	dwcmshc_disable_card_clk(host);
709 
710 	return 0;
711 }
712 
dwcmshc_runtime_resume(struct device * dev)713 static int dwcmshc_runtime_resume(struct device *dev)
714 {
715 	struct sdhci_host *host = dev_get_drvdata(dev);
716 
717 	dwcmshc_enable_card_clk(host);
718 
719 	return 0;
720 }
721 
722 #endif
723 
724 static const struct dev_pm_ops dwcmshc_pmops = {
725 	SET_SYSTEM_SLEEP_PM_OPS(dwcmshc_suspend, dwcmshc_resume)
726 	SET_RUNTIME_PM_OPS(dwcmshc_runtime_suspend,
727 			   dwcmshc_runtime_resume, NULL)
728 };
729 
730 static struct platform_driver sdhci_dwcmshc_driver = {
731 	.driver	= {
732 		.name	= "sdhci-dwcmshc",
733 		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
734 		.of_match_table = sdhci_dwcmshc_dt_ids,
735 		.acpi_match_table = ACPI_PTR(sdhci_dwcmshc_acpi_ids),
736 		.pm = &dwcmshc_pmops,
737 	},
738 	.probe	= dwcmshc_probe,
739 	.remove_new = dwcmshc_remove,
740 };
741 module_platform_driver(sdhci_dwcmshc_driver);
742 
743 MODULE_DESCRIPTION("SDHCI platform driver for Synopsys DWC MSHC");
744 MODULE_AUTHOR("Jisheng Zhang <jszhang@kernel.org>");
745 MODULE_LICENSE("GPL v2");
746