Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * DMA support for Internal DMAC with SDHI SD/SDIO controller
  4 *
  5 * Copyright (C) 2016-19 Renesas Electronics Corporation
  6 * Copyright (C) 2016-17 Horms Solutions, Simon Horman
  7 * Copyright (C) 2018-19 Sang Engineering, Wolfram Sang
  8 */
  9
 10#include <linux/bitops.h>
 11#include <linux/device.h>
 12#include <linux/dma-mapping.h>
 13#include <linux/io-64-nonatomic-hi-lo.h>
 14#include <linux/mfd/tmio.h>
 15#include <linux/mmc/host.h>
 16#include <linux/mod_devicetable.h>
 17#include <linux/module.h>
 18#include <linux/of_device.h>
 19#include <linux/pagemap.h>
 20#include <linux/scatterlist.h>
 21#include <linux/sys_soc.h>
 22
 23#include "renesas_sdhi.h"
 24#include "tmio_mmc.h"
 25
 26#define DM_CM_DTRAN_MODE	0x820
 27#define DM_CM_DTRAN_CTRL	0x828
 28#define DM_CM_RST		0x830
 29#define DM_CM_INFO1		0x840
 30#define DM_CM_INFO1_MASK	0x848
 31#define DM_CM_INFO2		0x850
 32#define DM_CM_INFO2_MASK	0x858
 33#define DM_DTRAN_ADDR		0x880
 34
 35/* DM_CM_DTRAN_MODE */
 36#define DTRAN_MODE_CH_NUM_CH0	0	/* "downstream" = for write commands */
 37#define DTRAN_MODE_CH_NUM_CH1	BIT(16)	/* "upstream" = for read commands */
 38#define DTRAN_MODE_BUS_WIDTH	(BIT(5) | BIT(4))
 39#define DTRAN_MODE_ADDR_MODE	BIT(0)	/* 1 = Increment address, 0 = Fixed */
 40
 41/* DM_CM_DTRAN_CTRL */
 42#define DTRAN_CTRL_DM_START	BIT(0)
 43
 44/* DM_CM_RST */
 45#define RST_DTRANRST1		BIT(9)
 46#define RST_DTRANRST0		BIT(8)
 47#define RST_RESERVED_BITS	GENMASK_ULL(31, 0)
 48
 49/* DM_CM_INFO1 and DM_CM_INFO1_MASK */
 
 50#define INFO1_MASK_CLEAR	GENMASK_ULL(31, 0)
 51#define INFO1_DTRANEND1		BIT(20)
 52#define INFO1_DTRANEND1_OLD	BIT(17)
 53#define INFO1_DTRANEND0		BIT(16)
 54
 55/* DM_CM_INFO2 and DM_CM_INFO2_MASK */
 56#define INFO2_MASK_CLEAR	GENMASK_ULL(31, 0)
 57#define INFO2_DTRANERR1		BIT(17)
 58#define INFO2_DTRANERR0		BIT(16)
 59
 60enum renesas_sdhi_dma_cookie {
 61	COOKIE_UNMAPPED,
 62	COOKIE_PRE_MAPPED,
 63	COOKIE_MAPPED,
 64};
 65
 66/*
 67 * Specification of this driver:
 68 * - host->chan_{rx,tx} will be used as a flag of enabling/disabling the dma
 69 * - Since this SDHI DMAC register set has 16 but 32-bit width, we
 70 *   need a custom accessor.
 71 */
 72
 73static unsigned long global_flags;
 74/*
 75 * Workaround for avoiding to use RX DMAC by multiple channels.
 76 * On R-Car H3 ES1.* and M3-W ES1.0, when multiple SDHI channels use
 77 * RX DMAC simultaneously, sometimes hundreds of bytes data are not
 78 * stored into the system memory even if the DMAC interrupt happened.
 79 * So, this driver then uses one RX DMAC channel only.
 80 */
 81#define SDHI_INTERNAL_DMAC_RX_IN_USE	0
 
 
 
 
 82
 83/* Definitions for sampling clocks */
 84static struct renesas_sdhi_scc rcar_gen3_scc_taps[] = {
 85	{
 86		.clk_rate = 0,
 87		.tap = 0x00000300,
 88		.tap_hs400_4tap = 0x00000100,
 89	},
 90};
 91
 92static const struct renesas_sdhi_of_data of_data_rza2 = {
 93	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
 94			  TMIO_MMC_HAVE_CBSY,
 95	.tmio_ocr_mask	= MMC_VDD_32_33,
 96	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 97			  MMC_CAP_CMD23 | MMC_CAP_WAIT_WHILE_BUSY,
 98	.bus_shift	= 2,
 99	.scc_offset	= 0 - 0x1000,
100	.taps		= rcar_gen3_scc_taps,
101	.taps_num	= ARRAY_SIZE(rcar_gen3_scc_taps),
102	/* DMAC can handle 32bit blk count but only 1 segment */
103	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
104	.max_segs	= 1,
105};
106
107static const struct renesas_sdhi_of_data of_data_rcar_gen3 = {
108	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
109			  TMIO_MMC_HAVE_CBSY | TMIO_MMC_MIN_RCAR2,
110	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
111			  MMC_CAP_CMD23 | MMC_CAP_WAIT_WHILE_BUSY,
112	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT | MMC_CAP2_MERGE_CAPABLE,
113	.bus_shift	= 2,
114	.scc_offset	= 0x1000,
115	.taps		= rcar_gen3_scc_taps,
116	.taps_num	= ARRAY_SIZE(rcar_gen3_scc_taps),
117	/* DMAC can handle 32bit blk count but only 1 segment */
118	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
119	.max_segs	= 1,
120	.sdhi_flags	= SDHI_FLAG_NEED_CLKH_FALLBACK,
121};
122
123static const struct renesas_sdhi_of_data of_data_rcar_gen3_no_sdh_fallback = {
124	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
125			  TMIO_MMC_HAVE_CBSY | TMIO_MMC_MIN_RCAR2,
126	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
127			  MMC_CAP_CMD23 | MMC_CAP_WAIT_WHILE_BUSY,
128	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT | MMC_CAP2_MERGE_CAPABLE,
129	.bus_shift	= 2,
130	.scc_offset	= 0x1000,
131	.taps		= rcar_gen3_scc_taps,
132	.taps_num	= ARRAY_SIZE(rcar_gen3_scc_taps),
133	/* DMAC can handle 32bit blk count but only 1 segment */
134	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
135	.max_segs	= 1,
136};
137
138static const u8 r8a7796_es13_calib_table[2][SDHI_CALIB_TABLE_MAX] = {
139	{ 3,  3,  3,  3,  3,  3,  3,  4,  4,  5,  6,  7,  8,  9, 10, 15,
140	 16, 16, 16, 16, 16, 16, 17, 18, 18, 19, 20, 21, 22, 23, 24, 25 },
141	{ 5,  5,  5,  5,  5,  5,  5,  5,  5,  5,  5,  5,  6,  7,  8, 11,
142	 12, 17, 18, 18, 18, 18, 18, 18, 18, 19, 20, 21, 22, 23, 25, 25 }
143};
144
145static const u8 r8a77965_calib_table[2][SDHI_CALIB_TABLE_MAX] = {
146	{ 1,  2,  6,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 15, 15, 16,
147	 17, 18, 19, 20, 21, 22, 23, 24, 25, 25, 26, 27, 28, 29, 30, 31 },
148	{ 2,  3,  4,  4,  5,  6,  7,  9, 10, 11, 12, 13, 14, 15, 16, 17,
149	 17, 17, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 31, 31, 31, 31 }
150};
151
152static const u8 r8a77990_calib_table[2][SDHI_CALIB_TABLE_MAX] = {
153	{ 0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,
154	  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0,  0 },
155	{ 0,  0,  0,  1,  2,  3,  3,  4,  4,  4,  5,  5,  6,  8,  9, 10,
156	 11, 12, 13, 15, 16, 17, 17, 18, 18, 19, 20, 22, 24, 25, 26, 26 }
157};
158
159static const struct renesas_sdhi_quirks sdhi_quirks_4tap_nohs400 = {
160	.hs400_disabled = true,
161	.hs400_4taps = true,
162};
163
164static const struct renesas_sdhi_quirks sdhi_quirks_4tap_nohs400_one_rx = {
165	.hs400_disabled = true,
166	.hs400_4taps = true,
167	.dma_one_rx_only = true,
168	.old_info1_layout = true,
169};
170
171static const struct renesas_sdhi_quirks sdhi_quirks_4tap = {
172	.hs400_4taps = true,
173	.hs400_bad_taps = BIT(2) | BIT(3) | BIT(6) | BIT(7),
174	.manual_tap_correction = true,
175};
176
177static const struct renesas_sdhi_quirks sdhi_quirks_nohs400 = {
178	.hs400_disabled = true,
179};
180
181static const struct renesas_sdhi_quirks sdhi_quirks_fixed_addr = {
182	.fixed_addr_mode = true,
183};
184
185static const struct renesas_sdhi_quirks sdhi_quirks_bad_taps1357 = {
186	.hs400_bad_taps = BIT(1) | BIT(3) | BIT(5) | BIT(7),
187	.manual_tap_correction = true,
188};
189
190static const struct renesas_sdhi_quirks sdhi_quirks_bad_taps2367 = {
191	.hs400_bad_taps = BIT(2) | BIT(3) | BIT(6) | BIT(7),
192	.manual_tap_correction = true,
193};
194
195static const struct renesas_sdhi_quirks sdhi_quirks_r8a7796_es13 = {
196	.hs400_4taps = true,
197	.hs400_bad_taps = BIT(2) | BIT(3) | BIT(6) | BIT(7),
198	.hs400_calib_table = r8a7796_es13_calib_table,
199	.manual_tap_correction = true,
200};
201
202static const struct renesas_sdhi_quirks sdhi_quirks_r8a77965 = {
203	.hs400_bad_taps = BIT(2) | BIT(3) | BIT(6) | BIT(7),
204	.hs400_calib_table = r8a77965_calib_table,
205	.manual_tap_correction = true,
206};
207
208static const struct renesas_sdhi_quirks sdhi_quirks_r8a77990 = {
209	.hs400_calib_table = r8a77990_calib_table,
210	.manual_tap_correction = true,
211};
212
213/*
214 * Note for r8a7796 / r8a774a1: we can't distinguish ES1.1 and 1.2 as of now.
215 * So, we want to treat them equally and only have a match for ES1.2 to enforce
216 * this if there ever will be a way to distinguish ES1.2.
217 */
218static const struct soc_device_attribute sdhi_quirks_match[]  = {
219	{ .soc_id = "r8a774a1", .revision = "ES1.[012]", .data = &sdhi_quirks_4tap_nohs400 },
220	{ .soc_id = "r8a7795", .revision = "ES1.*", .data = &sdhi_quirks_4tap_nohs400_one_rx },
221	{ .soc_id = "r8a7795", .revision = "ES2.0", .data = &sdhi_quirks_4tap },
222	{ .soc_id = "r8a7796", .revision = "ES1.0", .data = &sdhi_quirks_4tap_nohs400_one_rx },
223	{ .soc_id = "r8a7796", .revision = "ES1.[12]", .data = &sdhi_quirks_4tap_nohs400 },
224	{ .soc_id = "r8a7796", .revision = "ES1.*", .data = &sdhi_quirks_r8a7796_es13 },
225	{ .soc_id = "r8a77980", .revision = "ES1.*", .data = &sdhi_quirks_nohs400 },
226	{ /* Sentinel. */ }
227};
228
229static const struct renesas_sdhi_of_data_with_quirks of_r8a7795_compatible = {
230	.of_data = &of_data_rcar_gen3,
231	.quirks = &sdhi_quirks_bad_taps2367,
232};
233
234static const struct renesas_sdhi_of_data_with_quirks of_r8a77961_compatible = {
235	.of_data = &of_data_rcar_gen3,
236	.quirks = &sdhi_quirks_bad_taps1357,
237};
238
239static const struct renesas_sdhi_of_data_with_quirks of_r8a77965_compatible = {
240	.of_data = &of_data_rcar_gen3,
241	.quirks = &sdhi_quirks_r8a77965,
242};
243
244static const struct renesas_sdhi_of_data_with_quirks of_r8a77970_compatible = {
245	.of_data = &of_data_rcar_gen3_no_sdh_fallback,
246	.quirks = &sdhi_quirks_nohs400,
247};
248
249static const struct renesas_sdhi_of_data_with_quirks of_r8a77990_compatible = {
250	.of_data = &of_data_rcar_gen3,
251	.quirks = &sdhi_quirks_r8a77990,
252};
253
254static const struct renesas_sdhi_of_data_with_quirks of_rcar_gen3_compatible = {
255	.of_data = &of_data_rcar_gen3,
256};
257
258static const struct renesas_sdhi_of_data_with_quirks of_rcar_gen3_nohs400_compatible = {
259	.of_data = &of_data_rcar_gen3,
260	.quirks = &sdhi_quirks_nohs400,
261};
262
263static const struct renesas_sdhi_of_data_with_quirks of_rza2_compatible = {
264	.of_data	= &of_data_rza2,
265	.quirks		= &sdhi_quirks_fixed_addr,
266};
267
268static const struct of_device_id renesas_sdhi_internal_dmac_of_match[] = {
269	{ .compatible = "renesas,sdhi-r7s9210", .data = &of_rza2_compatible, },
270	{ .compatible = "renesas,sdhi-mmc-r8a77470", .data = &of_rcar_gen3_compatible, },
271	{ .compatible = "renesas,sdhi-r8a7795", .data = &of_r8a7795_compatible, },
272	{ .compatible = "renesas,sdhi-r8a77961", .data = &of_r8a77961_compatible, },
273	{ .compatible = "renesas,sdhi-r8a77965", .data = &of_r8a77965_compatible, },
274	{ .compatible = "renesas,sdhi-r8a77970", .data = &of_r8a77970_compatible, },
275	{ .compatible = "renesas,sdhi-r8a77990", .data = &of_r8a77990_compatible, },
276	{ .compatible = "renesas,sdhi-r8a77995", .data = &of_rcar_gen3_nohs400_compatible, },
277	{ .compatible = "renesas,rcar-gen3-sdhi", .data = &of_rcar_gen3_compatible, },
278	{ .compatible = "renesas,rcar-gen4-sdhi", .data = &of_rcar_gen3_compatible, },
279	{},
280};
281MODULE_DEVICE_TABLE(of, renesas_sdhi_internal_dmac_of_match);
282
283static void
 
 
 
 
 
 
 
284renesas_sdhi_internal_dmac_enable_dma(struct tmio_mmc_host *host, bool enable)
285{
286	struct renesas_sdhi *priv = host_to_priv(host);
287	u32 dma_irqs = INFO1_DTRANEND0 |
288			(sdhi_has_quirk(priv, old_info1_layout) ?
289			INFO1_DTRANEND1_OLD : INFO1_DTRANEND1);
290
291	if (!host->chan_tx || !host->chan_rx)
292		return;
293
294	writel(enable ? ~dma_irqs : INFO1_MASK_CLEAR, host->ctl + DM_CM_INFO1_MASK);
 
 
295
296	if (priv->dma_priv.enable)
297		priv->dma_priv.enable(host, enable);
298}
299
300static void
301renesas_sdhi_internal_dmac_abort_dma(struct tmio_mmc_host *host)
302{
303	u64 val = RST_DTRANRST1 | RST_DTRANRST0;
304
305	renesas_sdhi_internal_dmac_enable_dma(host, false);
306
307	writel(RST_RESERVED_BITS & ~val, host->ctl + DM_CM_RST);
308	writel(RST_RESERVED_BITS | val, host->ctl + DM_CM_RST);
 
 
309
310	clear_bit(SDHI_INTERNAL_DMAC_RX_IN_USE, &global_flags);
311
312	renesas_sdhi_internal_dmac_enable_dma(host, true);
313}
314
315static bool renesas_sdhi_internal_dmac_dma_irq(struct tmio_mmc_host *host)
316{
317	struct renesas_sdhi *priv = host_to_priv(host);
318	struct renesas_sdhi_dma *dma_priv = &priv->dma_priv;
319
320	u32 dma_irqs = INFO1_DTRANEND0 |
321			(sdhi_has_quirk(priv, old_info1_layout) ?
322			INFO1_DTRANEND1_OLD : INFO1_DTRANEND1);
323	u32 status = readl(host->ctl + DM_CM_INFO1);
324
325	if (status & dma_irqs) {
326		writel(status ^ dma_irqs, host->ctl + DM_CM_INFO1);
327		set_bit(SDHI_DMA_END_FLAG_DMA, &dma_priv->end_flags);
328		if (test_bit(SDHI_DMA_END_FLAG_ACCESS, &dma_priv->end_flags))
329			tasklet_schedule(&dma_priv->dma_complete);
330	}
331
332	return status & dma_irqs;
333}
334
335static void
336renesas_sdhi_internal_dmac_dataend_dma(struct tmio_mmc_host *host)
337{
338	struct renesas_sdhi *priv = host_to_priv(host);
339	struct renesas_sdhi_dma *dma_priv = &priv->dma_priv;
340
341	set_bit(SDHI_DMA_END_FLAG_ACCESS, &dma_priv->end_flags);
342	if (test_bit(SDHI_DMA_END_FLAG_DMA, &dma_priv->end_flags) ||
343	    host->data->error)
344		tasklet_schedule(&dma_priv->dma_complete);
345}
346
347/*
348 * renesas_sdhi_internal_dmac_map() will be called with two different
349 * sg pointers in two mmc_data by .pre_req(), but tmio host can have a single
350 * sg_ptr only. So, renesas_sdhi_internal_dmac_{un}map() should use a sg
351 * pointer in a mmc_data instead of host->sg_ptr.
352 */
353static void
354renesas_sdhi_internal_dmac_unmap(struct tmio_mmc_host *host,
355				 struct mmc_data *data,
356				 enum renesas_sdhi_dma_cookie cookie)
357{
358	bool unmap = cookie == COOKIE_UNMAPPED ? (data->host_cookie != cookie) :
359						 (data->host_cookie == cookie);
360
361	if (unmap) {
362		dma_unmap_sg(&host->pdev->dev, data->sg, data->sg_len,
363			     mmc_get_dma_dir(data));
364		data->host_cookie = COOKIE_UNMAPPED;
365	}
366}
367
368static bool
369renesas_sdhi_internal_dmac_map(struct tmio_mmc_host *host,
370			       struct mmc_data *data,
371			       enum renesas_sdhi_dma_cookie cookie)
372{
373	if (data->host_cookie == COOKIE_PRE_MAPPED)
374		return true;
375
376	if (!dma_map_sg(&host->pdev->dev, data->sg, data->sg_len,
377			    mmc_get_dma_dir(data)))
378		return false;
379
380	data->host_cookie = cookie;
381
382	/* This DMAC needs buffers to be 128-byte aligned */
383	if (!IS_ALIGNED(sg_dma_address(data->sg), 128)) {
384		renesas_sdhi_internal_dmac_unmap(host, data, cookie);
385		return false;
386	}
387
388	return true;
389}
390
391static void
392renesas_sdhi_internal_dmac_start_dma(struct tmio_mmc_host *host,
393				     struct mmc_data *data)
394{
395	struct renesas_sdhi *priv = host_to_priv(host);
396	struct scatterlist *sg = host->sg_ptr;
397	u32 dtran_mode = DTRAN_MODE_BUS_WIDTH;
398
399	if (!sdhi_has_quirk(priv, fixed_addr_mode))
400		dtran_mode |= DTRAN_MODE_ADDR_MODE;
401
402	if (!renesas_sdhi_internal_dmac_map(host, data, COOKIE_MAPPED))
 
403		goto force_pio;
404
 
 
 
 
405	if (data->flags & MMC_DATA_READ) {
406		dtran_mode |= DTRAN_MODE_CH_NUM_CH1;
407		if (sdhi_has_quirk(priv, dma_one_rx_only) &&
408		    test_and_set_bit(SDHI_INTERNAL_DMAC_RX_IN_USE, &global_flags))
409			goto force_pio_with_unmap;
410	} else {
411		dtran_mode |= DTRAN_MODE_CH_NUM_CH0;
412	}
413
414	priv->dma_priv.end_flags = 0;
415	renesas_sdhi_internal_dmac_enable_dma(host, true);
416
417	/* set dma parameters */
418	writel(dtran_mode, host->ctl + DM_CM_DTRAN_MODE);
419	writel(sg_dma_address(sg), host->ctl + DM_DTRAN_ADDR);
 
 
420
421	host->dma_on = true;
422
423	return;
424
425force_pio_with_unmap:
426	renesas_sdhi_internal_dmac_unmap(host, data, COOKIE_UNMAPPED);
427
428force_pio:
429	renesas_sdhi_internal_dmac_enable_dma(host, false);
430}
431
432static void renesas_sdhi_internal_dmac_issue_tasklet_fn(unsigned long arg)
433{
434	struct tmio_mmc_host *host = (struct tmio_mmc_host *)arg;
435	struct renesas_sdhi *priv = host_to_priv(host);
436
437	tmio_mmc_enable_mmc_irqs(host, TMIO_STAT_DATAEND);
438
439	if (!host->cmd->error) {
440		/* start the DMAC */
441		writel(DTRAN_CTRL_DM_START, host->ctl + DM_CM_DTRAN_CTRL);
442	} else {
443		/* on CMD errors, simulate DMA end immediately */
444		set_bit(SDHI_DMA_END_FLAG_DMA, &priv->dma_priv.end_flags);
445		if (test_bit(SDHI_DMA_END_FLAG_ACCESS, &priv->dma_priv.end_flags))
446			tasklet_schedule(&priv->dma_priv.dma_complete);
447	}
448}
449
450static bool renesas_sdhi_internal_dmac_complete(struct tmio_mmc_host *host)
451{
 
452	enum dma_data_direction dir;
453
454	if (!host->dma_on)
455		return false;
456
457	if (!host->data)
458		return false;
459
460	if (host->data->flags & MMC_DATA_READ)
461		dir = DMA_FROM_DEVICE;
462	else
463		dir = DMA_TO_DEVICE;
464
465	renesas_sdhi_internal_dmac_enable_dma(host, false);
466	renesas_sdhi_internal_dmac_unmap(host, host->data, COOKIE_MAPPED);
467
468	if (dir == DMA_FROM_DEVICE)
469		clear_bit(SDHI_INTERNAL_DMAC_RX_IN_USE, &global_flags);
470
471	host->dma_on = false;
472
473	return true;
474}
475
476static void renesas_sdhi_internal_dmac_complete_tasklet_fn(unsigned long arg)
477{
478	struct tmio_mmc_host *host = (struct tmio_mmc_host *)arg;
479
480	spin_lock_irq(&host->lock);
481	if (!renesas_sdhi_internal_dmac_complete(host))
482		goto out;
483
484	tmio_mmc_do_data_irq(host);
485out:
486	spin_unlock_irq(&host->lock);
487}
488
489static void renesas_sdhi_internal_dmac_end_dma(struct tmio_mmc_host *host)
490{
491	if (host->data)
492		renesas_sdhi_internal_dmac_complete(host);
493}
494
495static void renesas_sdhi_internal_dmac_post_req(struct mmc_host *mmc,
496						struct mmc_request *mrq,
497						int err)
498{
499	struct tmio_mmc_host *host = mmc_priv(mmc);
500	struct mmc_data *data = mrq->data;
501
502	if (!data)
503		return;
504
505	renesas_sdhi_internal_dmac_unmap(host, data, COOKIE_UNMAPPED);
506}
507
508static void renesas_sdhi_internal_dmac_pre_req(struct mmc_host *mmc,
509					       struct mmc_request *mrq)
510{
511	struct tmio_mmc_host *host = mmc_priv(mmc);
512	struct mmc_data *data = mrq->data;
513
514	if (!data)
515		return;
516
517	data->host_cookie = COOKIE_UNMAPPED;
518	renesas_sdhi_internal_dmac_map(host, data, COOKIE_PRE_MAPPED);
519}
520
521static void
522renesas_sdhi_internal_dmac_request_dma(struct tmio_mmc_host *host,
523				       struct tmio_mmc_data *pdata)
524{
525	struct renesas_sdhi *priv = host_to_priv(host);
526
527	/* Disable DMAC interrupts initially */
528	writel(INFO1_MASK_CLEAR, host->ctl + DM_CM_INFO1_MASK);
529	writel(INFO2_MASK_CLEAR, host->ctl + DM_CM_INFO2_MASK);
530	writel(0, host->ctl + DM_CM_INFO1);
531	writel(0, host->ctl + DM_CM_INFO2);
532
533	/* Each value is set to non-zero to assume "enabling" each DMA */
534	host->chan_rx = host->chan_tx = (void *)0xdeadbeaf;
535
536	tasklet_init(&priv->dma_priv.dma_complete,
537		     renesas_sdhi_internal_dmac_complete_tasklet_fn,
538		     (unsigned long)host);
539	tasklet_init(&host->dma_issue,
540		     renesas_sdhi_internal_dmac_issue_tasklet_fn,
541		     (unsigned long)host);
542
543	/* Add pre_req and post_req */
544	host->ops.pre_req = renesas_sdhi_internal_dmac_pre_req;
545	host->ops.post_req = renesas_sdhi_internal_dmac_post_req;
546}
547
548static void
549renesas_sdhi_internal_dmac_release_dma(struct tmio_mmc_host *host)
550{
551	/* Each value is set to zero to assume "disabling" each DMA */
552	host->chan_rx = host->chan_tx = NULL;
553}
554
555static const struct tmio_mmc_dma_ops renesas_sdhi_internal_dmac_dma_ops = {
556	.start = renesas_sdhi_internal_dmac_start_dma,
557	.enable = renesas_sdhi_internal_dmac_enable_dma,
558	.request = renesas_sdhi_internal_dmac_request_dma,
559	.release = renesas_sdhi_internal_dmac_release_dma,
560	.abort = renesas_sdhi_internal_dmac_abort_dma,
561	.dataend = renesas_sdhi_internal_dmac_dataend_dma,
562	.end = renesas_sdhi_internal_dmac_end_dma,
563	.dma_irq = renesas_sdhi_internal_dmac_dma_irq,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564};
565
566static int renesas_sdhi_internal_dmac_probe(struct platform_device *pdev)
567{
568	const struct soc_device_attribute *attr;
569	const struct renesas_sdhi_of_data_with_quirks *of_data_quirks;
570	const struct renesas_sdhi_quirks *quirks;
571	struct device *dev = &pdev->dev;
572
573	of_data_quirks = of_device_get_match_data(&pdev->dev);
574	quirks = of_data_quirks->quirks;
 
 
575
576	attr = soc_device_match(sdhi_quirks_match);
577	if (attr)
578		quirks = attr->data;
579
580	/* value is max of SD_SECCNT. Confirmed by HW engineers */
581	dma_set_max_seg_size(dev, 0xffffffff);
582
583	return renesas_sdhi_probe(pdev, &renesas_sdhi_internal_dmac_dma_ops,
584				  of_data_quirks->of_data, quirks);
585}
586
587static const struct dev_pm_ops renesas_sdhi_internal_dmac_dev_pm_ops = {
588	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
589				pm_runtime_force_resume)
590	SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend,
591			   tmio_mmc_host_runtime_resume,
592			   NULL)
593};
594
595static struct platform_driver renesas_internal_dmac_sdhi_driver = {
596	.driver		= {
597		.name	= "renesas_sdhi_internal_dmac",
598		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
599		.pm	= &renesas_sdhi_internal_dmac_dev_pm_ops,
600		.of_match_table = renesas_sdhi_internal_dmac_of_match,
601	},
602	.probe		= renesas_sdhi_internal_dmac_probe,
603	.remove		= renesas_sdhi_remove,
604};
605
606module_platform_driver(renesas_internal_dmac_sdhi_driver);
607
608MODULE_DESCRIPTION("Renesas SDHI driver for internal DMAC");
609MODULE_AUTHOR("Yoshihiro Shimoda");
610MODULE_LICENSE("GPL v2");
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * DMA support for Internal DMAC with SDHI SD/SDIO controller
  4 *
  5 * Copyright (C) 2016-19 Renesas Electronics Corporation
  6 * Copyright (C) 2016-17 Horms Solutions, Simon Horman
  7 * Copyright (C) 2018-19 Sang Engineering, Wolfram Sang
  8 */
  9
 10#include <linux/bitops.h>
 11#include <linux/device.h>
 12#include <linux/dma-mapping.h>
 13#include <linux/io-64-nonatomic-hi-lo.h>
 14#include <linux/mfd/tmio.h>
 15#include <linux/mmc/host.h>
 16#include <linux/mod_devicetable.h>
 17#include <linux/module.h>
 
 18#include <linux/pagemap.h>
 19#include <linux/scatterlist.h>
 20#include <linux/sys_soc.h>
 21
 22#include "renesas_sdhi.h"
 23#include "tmio_mmc.h"
 24
 25#define DM_CM_DTRAN_MODE	0x820
 26#define DM_CM_DTRAN_CTRL	0x828
 27#define DM_CM_RST		0x830
 28#define DM_CM_INFO1		0x840
 29#define DM_CM_INFO1_MASK	0x848
 30#define DM_CM_INFO2		0x850
 31#define DM_CM_INFO2_MASK	0x858
 32#define DM_DTRAN_ADDR		0x880
 33
 34/* DM_CM_DTRAN_MODE */
 35#define DTRAN_MODE_CH_NUM_CH0	0	/* "downstream" = for write commands */
 36#define DTRAN_MODE_CH_NUM_CH1	BIT(16)	/* "upstream" = for read commands */
 37#define DTRAN_MODE_BUS_WIDTH	(BIT(5) | BIT(4))
 38#define DTRAN_MODE_ADDR_MODE	BIT(0)	/* 1 = Increment address, 0 = Fixed */
 39
 40/* DM_CM_DTRAN_CTRL */
 41#define DTRAN_CTRL_DM_START	BIT(0)
 42
 43/* DM_CM_RST */
 44#define RST_DTRANRST1		BIT(9)
 45#define RST_DTRANRST0		BIT(8)
 46#define RST_RESERVED_BITS	GENMASK_ULL(31, 0)
 47
 48/* DM_CM_INFO1 and DM_CM_INFO1_MASK */
 49#define INFO1_CLEAR		0
 50#define INFO1_MASK_CLEAR	GENMASK_ULL(31, 0)
 51#define INFO1_DTRANEND1		BIT(17)
 
 52#define INFO1_DTRANEND0		BIT(16)
 53
 54/* DM_CM_INFO2 and DM_CM_INFO2_MASK */
 55#define INFO2_MASK_CLEAR	GENMASK_ULL(31, 0)
 56#define INFO2_DTRANERR1		BIT(17)
 57#define INFO2_DTRANERR0		BIT(16)
 58
 
 
 
 
 
 
 59/*
 60 * Specification of this driver:
 61 * - host->chan_{rx,tx} will be used as a flag of enabling/disabling the dma
 62 * - Since this SDHI DMAC register set has 16 but 32-bit width, we
 63 *   need a custom accessor.
 64 */
 65
 66static unsigned long global_flags;
 67/*
 68 * Workaround for avoiding to use RX DMAC by multiple channels.
 69 * On R-Car H3 ES1.* and M3-W ES1.0, when multiple SDHI channels use
 70 * RX DMAC simultaneously, sometimes hundreds of bytes data are not
 71 * stored into the system memory even if the DMAC interrupt happened.
 72 * So, this driver then uses one RX DMAC channel only.
 73 */
 74#define SDHI_INTERNAL_DMAC_ONE_RX_ONLY	0
 75#define SDHI_INTERNAL_DMAC_RX_IN_USE	1
 76
 77/* RZ/A2 does not have the ADRR_MODE bit */
 78#define SDHI_INTERNAL_DMAC_ADDR_MODE_FIXED_ONLY 2
 79
 80/* Definitions for sampling clocks */
 81static struct renesas_sdhi_scc rcar_gen3_scc_taps[] = {
 82	{
 83		.clk_rate = 0,
 84		.tap = 0x00000300,
 85		.tap_hs400 = 0x00000704,
 86	},
 87};
 88
 89static const struct renesas_sdhi_of_data of_rza2_compatible = {
 90	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
 91			  TMIO_MMC_HAVE_CBSY,
 92	.tmio_ocr_mask	= MMC_VDD_32_33,
 93	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 94			  MMC_CAP_CMD23,
 95	.bus_shift	= 2,
 96	.scc_offset	= 0 - 0x1000,
 97	.taps		= rcar_gen3_scc_taps,
 98	.taps_num	= ARRAY_SIZE(rcar_gen3_scc_taps),
 99	/* DMAC can handle 32bit blk count but only 1 segment */
100	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
101	.max_segs	= 1,
102};
103
104static const struct renesas_sdhi_of_data of_rcar_gen3_compatible = {
105	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
106			  TMIO_MMC_HAVE_CBSY | TMIO_MMC_MIN_RCAR2,
107	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
108			  MMC_CAP_CMD23,
109	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT | MMC_CAP2_MERGE_CAPABLE,
110	.bus_shift	= 2,
111	.scc_offset	= 0x1000,
112	.taps		= rcar_gen3_scc_taps,
113	.taps_num	= ARRAY_SIZE(rcar_gen3_scc_taps),
114	/* DMAC can handle 32bit blk count but only 1 segment */
115	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
116	.max_segs	= 1,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117};
118
119static const struct of_device_id renesas_sdhi_internal_dmac_of_match[] = {
120	{ .compatible = "renesas,sdhi-r7s9210", .data = &of_rza2_compatible, },
121	{ .compatible = "renesas,sdhi-mmc-r8a77470", .data = &of_rcar_gen3_compatible, },
122	{ .compatible = "renesas,sdhi-r8a7795", .data = &of_rcar_gen3_compatible, },
123	{ .compatible = "renesas,sdhi-r8a7796", .data = &of_rcar_gen3_compatible, },
 
 
 
 
124	{ .compatible = "renesas,rcar-gen3-sdhi", .data = &of_rcar_gen3_compatible, },
 
125	{},
126};
127MODULE_DEVICE_TABLE(of, renesas_sdhi_internal_dmac_of_match);
128
129static void
130renesas_sdhi_internal_dmac_dm_write(struct tmio_mmc_host *host,
131				    int addr, u64 val)
132{
133	writeq(val, host->ctl + addr);
134}
135
136static void
137renesas_sdhi_internal_dmac_enable_dma(struct tmio_mmc_host *host, bool enable)
138{
139	struct renesas_sdhi *priv = host_to_priv(host);
 
 
 
140
141	if (!host->chan_tx || !host->chan_rx)
142		return;
143
144	if (!enable)
145		renesas_sdhi_internal_dmac_dm_write(host, DM_CM_INFO1,
146						    INFO1_CLEAR);
147
148	if (priv->dma_priv.enable)
149		priv->dma_priv.enable(host, enable);
150}
151
152static void
153renesas_sdhi_internal_dmac_abort_dma(struct tmio_mmc_host *host) {
 
154	u64 val = RST_DTRANRST1 | RST_DTRANRST0;
155
156	renesas_sdhi_internal_dmac_enable_dma(host, false);
157
158	renesas_sdhi_internal_dmac_dm_write(host, DM_CM_RST,
159					    RST_RESERVED_BITS & ~val);
160	renesas_sdhi_internal_dmac_dm_write(host, DM_CM_RST,
161					    RST_RESERVED_BITS | val);
162
163	clear_bit(SDHI_INTERNAL_DMAC_RX_IN_USE, &global_flags);
164
165	renesas_sdhi_internal_dmac_enable_dma(host, true);
166}
167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168static void
169renesas_sdhi_internal_dmac_dataend_dma(struct tmio_mmc_host *host) {
 
170	struct renesas_sdhi *priv = host_to_priv(host);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
172	tasklet_schedule(&priv->dma_priv.dma_complete);
173}
174
175static void
176renesas_sdhi_internal_dmac_start_dma(struct tmio_mmc_host *host,
177				     struct mmc_data *data)
178{
 
179	struct scatterlist *sg = host->sg_ptr;
180	u32 dtran_mode = DTRAN_MODE_BUS_WIDTH;
181
182	if (!test_bit(SDHI_INTERNAL_DMAC_ADDR_MODE_FIXED_ONLY, &global_flags))
183		dtran_mode |= DTRAN_MODE_ADDR_MODE;
184
185	if (!dma_map_sg(&host->pdev->dev, sg, host->sg_len,
186			mmc_get_dma_dir(data)))
187		goto force_pio;
188
189	/* This DMAC cannot handle if buffer is not 8-bytes alignment */
190	if (!IS_ALIGNED(sg_dma_address(sg), 8))
191		goto force_pio_with_unmap;
192
193	if (data->flags & MMC_DATA_READ) {
194		dtran_mode |= DTRAN_MODE_CH_NUM_CH1;
195		if (test_bit(SDHI_INTERNAL_DMAC_ONE_RX_ONLY, &global_flags) &&
196		    test_and_set_bit(SDHI_INTERNAL_DMAC_RX_IN_USE, &global_flags))
197			goto force_pio_with_unmap;
198	} else {
199		dtran_mode |= DTRAN_MODE_CH_NUM_CH0;
200	}
201
 
202	renesas_sdhi_internal_dmac_enable_dma(host, true);
203
204	/* set dma parameters */
205	renesas_sdhi_internal_dmac_dm_write(host, DM_CM_DTRAN_MODE,
206					    dtran_mode);
207	renesas_sdhi_internal_dmac_dm_write(host, DM_DTRAN_ADDR,
208					    sg_dma_address(sg));
209
210	host->dma_on = true;
211
212	return;
213
214force_pio_with_unmap:
215	dma_unmap_sg(&host->pdev->dev, sg, host->sg_len, mmc_get_dma_dir(data));
216
217force_pio:
218	renesas_sdhi_internal_dmac_enable_dma(host, false);
219}
220
221static void renesas_sdhi_internal_dmac_issue_tasklet_fn(unsigned long arg)
222{
223	struct tmio_mmc_host *host = (struct tmio_mmc_host *)arg;
 
224
225	tmio_mmc_enable_mmc_irqs(host, TMIO_STAT_DATAEND);
226
227	/* start the DMAC */
228	renesas_sdhi_internal_dmac_dm_write(host, DM_CM_DTRAN_CTRL,
229					    DTRAN_CTRL_DM_START);
 
 
 
 
 
 
230}
231
232static void renesas_sdhi_internal_dmac_complete_tasklet_fn(unsigned long arg)
233{
234	struct tmio_mmc_host *host = (struct tmio_mmc_host *)arg;
235	enum dma_data_direction dir;
236
237	spin_lock_irq(&host->lock);
 
238
239	if (!host->data)
240		goto out;
241
242	if (host->data->flags & MMC_DATA_READ)
243		dir = DMA_FROM_DEVICE;
244	else
245		dir = DMA_TO_DEVICE;
246
247	renesas_sdhi_internal_dmac_enable_dma(host, false);
248	dma_unmap_sg(&host->pdev->dev, host->sg_ptr, host->sg_len, dir);
249
250	if (dir == DMA_FROM_DEVICE)
251		clear_bit(SDHI_INTERNAL_DMAC_RX_IN_USE, &global_flags);
252
 
 
 
 
 
 
 
 
 
 
 
 
 
253	tmio_mmc_do_data_irq(host);
254out:
255	spin_unlock_irq(&host->lock);
256}
257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258static void
259renesas_sdhi_internal_dmac_request_dma(struct tmio_mmc_host *host,
260				       struct tmio_mmc_data *pdata)
261{
262	struct renesas_sdhi *priv = host_to_priv(host);
263
264	/* Disable DMAC interrupts, we don't use them */
265	renesas_sdhi_internal_dmac_dm_write(host, DM_CM_INFO1_MASK,
266					    INFO1_MASK_CLEAR);
267	renesas_sdhi_internal_dmac_dm_write(host, DM_CM_INFO2_MASK,
268					    INFO2_MASK_CLEAR);
269
270	/* Each value is set to non-zero to assume "enabling" each DMA */
271	host->chan_rx = host->chan_tx = (void *)0xdeadbeaf;
272
273	tasklet_init(&priv->dma_priv.dma_complete,
274		     renesas_sdhi_internal_dmac_complete_tasklet_fn,
275		     (unsigned long)host);
276	tasklet_init(&host->dma_issue,
277		     renesas_sdhi_internal_dmac_issue_tasklet_fn,
278		     (unsigned long)host);
 
 
 
 
279}
280
281static void
282renesas_sdhi_internal_dmac_release_dma(struct tmio_mmc_host *host)
283{
284	/* Each value is set to zero to assume "disabling" each DMA */
285	host->chan_rx = host->chan_tx = NULL;
286}
287
288static const struct tmio_mmc_dma_ops renesas_sdhi_internal_dmac_dma_ops = {
289	.start = renesas_sdhi_internal_dmac_start_dma,
290	.enable = renesas_sdhi_internal_dmac_enable_dma,
291	.request = renesas_sdhi_internal_dmac_request_dma,
292	.release = renesas_sdhi_internal_dmac_release_dma,
293	.abort = renesas_sdhi_internal_dmac_abort_dma,
294	.dataend = renesas_sdhi_internal_dmac_dataend_dma,
295};
296
297/*
298 * Whitelist of specific R-Car Gen3 SoC ES versions to use this DMAC
299 * implementation as others may use a different implementation.
300 */
301static const struct soc_device_attribute soc_whitelist[] = {
302	/* specific ones */
303	{ .soc_id = "r7s9210",
304	  .data = (void *)BIT(SDHI_INTERNAL_DMAC_ADDR_MODE_FIXED_ONLY) },
305	{ .soc_id = "r8a7795", .revision = "ES1.*",
306	  .data = (void *)BIT(SDHI_INTERNAL_DMAC_ONE_RX_ONLY) },
307	{ .soc_id = "r8a7796", .revision = "ES1.0",
308	  .data = (void *)BIT(SDHI_INTERNAL_DMAC_ONE_RX_ONLY) },
309	/* generic ones */
310	{ .soc_id = "r8a774a1" },
311	{ .soc_id = "r8a774c0" },
312	{ .soc_id = "r8a77470" },
313	{ .soc_id = "r8a7795" },
314	{ .soc_id = "r8a7796" },
315	{ .soc_id = "r8a77965" },
316	{ .soc_id = "r8a77970" },
317	{ .soc_id = "r8a77980" },
318	{ .soc_id = "r8a77990" },
319	{ .soc_id = "r8a77995" },
320	{ /* sentinel */ }
321};
322
323static int renesas_sdhi_internal_dmac_probe(struct platform_device *pdev)
324{
325	const struct soc_device_attribute *soc = soc_device_match(soc_whitelist);
 
 
326	struct device *dev = &pdev->dev;
327
328	if (!soc)
329		return -ENODEV;
330
331	global_flags |= (unsigned long)soc->data;
332
333	dev->dma_parms = devm_kzalloc(dev, sizeof(*dev->dma_parms), GFP_KERNEL);
334	if (!dev->dma_parms)
335		return -ENOMEM;
336
337	/* value is max of SD_SECCNT. Confirmed by HW engineers */
338	dma_set_max_seg_size(dev, 0xffffffff);
339
340	return renesas_sdhi_probe(pdev, &renesas_sdhi_internal_dmac_dma_ops);
 
341}
342
343static const struct dev_pm_ops renesas_sdhi_internal_dmac_dev_pm_ops = {
344	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
345				pm_runtime_force_resume)
346	SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend,
347			   tmio_mmc_host_runtime_resume,
348			   NULL)
349};
350
351static struct platform_driver renesas_internal_dmac_sdhi_driver = {
352	.driver		= {
353		.name	= "renesas_sdhi_internal_dmac",
 
354		.pm	= &renesas_sdhi_internal_dmac_dev_pm_ops,
355		.of_match_table = renesas_sdhi_internal_dmac_of_match,
356	},
357	.probe		= renesas_sdhi_internal_dmac_probe,
358	.remove		= renesas_sdhi_remove,
359};
360
361module_platform_driver(renesas_internal_dmac_sdhi_driver);
362
363MODULE_DESCRIPTION("Renesas SDHI driver for internal DMAC");
364MODULE_AUTHOR("Yoshihiro Shimoda");
365MODULE_LICENSE("GPL v2");