1 // SPDX-License-Identifier: GPL-2.0
3 * DMA support use of SYS DMAC with SDHI SD/SDIO controller
5 * Copyright (C) 2016-19 Renesas Electronics Corporation
6 * Copyright (C) 2016-19 Sang Engineering, Wolfram Sang
7 * Copyright (C) 2017 Horms Solutions, Simon Horman
8 * Copyright (C) 2010-2011 Guennadi Liakhovetski
11 #include <linux/device.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/dmaengine.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>
23 #include "renesas_sdhi.h"
26 #define TMIO_MMC_MIN_DMA_LEN 8
28 static const struct renesas_sdhi_of_data of_default_cfg
= {
29 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
,
32 static const struct renesas_sdhi_of_data of_rz_compatible
= {
33 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_32BIT_DATA_PORT
|
35 .tmio_ocr_mask
= MMC_VDD_32_33
,
36 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
,
39 static const struct renesas_sdhi_of_data of_rcar_gen1_compatible
= {
40 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_CLK_ACTUAL
,
41 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
,
42 .capabilities2
= MMC_CAP2_NO_WRITE_PROTECT
,
45 /* Definitions for sampling clocks */
46 static struct renesas_sdhi_scc rcar_gen2_scc_taps
[] = {
48 .clk_rate
= 156000000,
57 static const struct renesas_sdhi_of_data of_rcar_gen2_compatible
= {
58 .tmio_flags
= TMIO_MMC_HAS_IDLE_WAIT
| TMIO_MMC_CLK_ACTUAL
|
59 TMIO_MMC_HAVE_CBSY
| TMIO_MMC_MIN_RCAR2
,
60 .capabilities
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_SDIO_IRQ
|
62 .capabilities2
= MMC_CAP2_NO_WRITE_PROTECT
,
63 .dma_buswidth
= DMA_SLAVE_BUSWIDTH_4_BYTES
,
64 .dma_rx_offset
= 0x2000,
66 .taps
= rcar_gen2_scc_taps
,
67 .taps_num
= ARRAY_SIZE(rcar_gen2_scc_taps
),
68 .max_blk_count
= UINT_MAX
/ TMIO_MAX_BLK_SIZE
,
71 static const struct of_device_id renesas_sdhi_sys_dmac_of_match
[] = {
72 { .compatible
= "renesas,sdhi-sh73a0", .data
= &of_default_cfg
, },
73 { .compatible
= "renesas,sdhi-r8a73a4", .data
= &of_default_cfg
, },
74 { .compatible
= "renesas,sdhi-r8a7740", .data
= &of_default_cfg
, },
75 { .compatible
= "renesas,sdhi-r7s72100", .data
= &of_rz_compatible
, },
76 { .compatible
= "renesas,sdhi-r8a7778", .data
= &of_rcar_gen1_compatible
, },
77 { .compatible
= "renesas,sdhi-r8a7779", .data
= &of_rcar_gen1_compatible
, },
78 { .compatible
= "renesas,sdhi-r8a7743", .data
= &of_rcar_gen2_compatible
, },
79 { .compatible
= "renesas,sdhi-r8a7745", .data
= &of_rcar_gen2_compatible
, },
80 { .compatible
= "renesas,sdhi-r8a7790", .data
= &of_rcar_gen2_compatible
, },
81 { .compatible
= "renesas,sdhi-r8a7791", .data
= &of_rcar_gen2_compatible
, },
82 { .compatible
= "renesas,sdhi-r8a7792", .data
= &of_rcar_gen2_compatible
, },
83 { .compatible
= "renesas,sdhi-r8a7793", .data
= &of_rcar_gen2_compatible
, },
84 { .compatible
= "renesas,sdhi-r8a7794", .data
= &of_rcar_gen2_compatible
, },
85 { .compatible
= "renesas,rcar-gen1-sdhi", .data
= &of_rcar_gen1_compatible
, },
86 { .compatible
= "renesas,rcar-gen2-sdhi", .data
= &of_rcar_gen2_compatible
, },
87 { .compatible
= "renesas,sdhi-shmobile" },
90 MODULE_DEVICE_TABLE(of
, renesas_sdhi_sys_dmac_of_match
);
92 static void renesas_sdhi_sys_dmac_enable_dma(struct tmio_mmc_host
*host
,
95 struct renesas_sdhi
*priv
= host_to_priv(host
);
97 if (!host
->chan_tx
|| !host
->chan_rx
)
100 if (priv
->dma_priv
.enable
)
101 priv
->dma_priv
.enable(host
, enable
);
104 static void renesas_sdhi_sys_dmac_abort_dma(struct tmio_mmc_host
*host
)
106 renesas_sdhi_sys_dmac_enable_dma(host
, false);
109 dmaengine_terminate_all(host
->chan_rx
);
111 dmaengine_terminate_all(host
->chan_tx
);
113 renesas_sdhi_sys_dmac_enable_dma(host
, true);
116 static void renesas_sdhi_sys_dmac_dataend_dma(struct tmio_mmc_host
*host
)
118 struct renesas_sdhi
*priv
= host_to_priv(host
);
120 complete(&priv
->dma_priv
.dma_dataend
);
123 static void renesas_sdhi_sys_dmac_dma_callback(void *arg
)
125 struct tmio_mmc_host
*host
= arg
;
126 struct renesas_sdhi
*priv
= host_to_priv(host
);
128 spin_lock_irq(&host
->lock
);
133 if (host
->data
->flags
& MMC_DATA_READ
)
134 dma_unmap_sg(host
->chan_rx
->device
->dev
,
135 host
->sg_ptr
, host
->sg_len
,
138 dma_unmap_sg(host
->chan_tx
->device
->dev
,
139 host
->sg_ptr
, host
->sg_len
,
142 spin_unlock_irq(&host
->lock
);
144 wait_for_completion(&priv
->dma_priv
.dma_dataend
);
146 spin_lock_irq(&host
->lock
);
147 tmio_mmc_do_data_irq(host
);
149 spin_unlock_irq(&host
->lock
);
152 static void renesas_sdhi_sys_dmac_start_dma_rx(struct tmio_mmc_host
*host
)
154 struct renesas_sdhi
*priv
= host_to_priv(host
);
155 struct scatterlist
*sg
= host
->sg_ptr
, *sg_tmp
;
156 struct dma_async_tx_descriptor
*desc
= NULL
;
157 struct dma_chan
*chan
= host
->chan_rx
;
160 bool aligned
= true, multiple
= true;
161 unsigned int align
= (1 << host
->pdata
->alignment_shift
) - 1;
163 for_each_sg(sg
, sg_tmp
, host
->sg_len
, i
) {
164 if (sg_tmp
->offset
& align
)
166 if (sg_tmp
->length
& align
) {
172 if ((!aligned
&& (host
->sg_len
> 1 || sg
->length
> PAGE_SIZE
||
173 (align
& PAGE_MASK
))) || !multiple
) {
178 if (sg
->length
< TMIO_MMC_MIN_DMA_LEN
)
181 /* The only sg element can be unaligned, use our bounce buffer then */
183 sg_init_one(&host
->bounce_sg
, host
->bounce_buf
, sg
->length
);
184 host
->sg_ptr
= &host
->bounce_sg
;
188 ret
= dma_map_sg(chan
->device
->dev
, sg
, host
->sg_len
, DMA_FROM_DEVICE
);
190 desc
= dmaengine_prep_slave_sg(chan
, sg
, ret
, DMA_DEV_TO_MEM
,
194 reinit_completion(&priv
->dma_priv
.dma_dataend
);
195 desc
->callback
= renesas_sdhi_sys_dmac_dma_callback
;
196 desc
->callback_param
= host
;
198 cookie
= dmaengine_submit(desc
);
207 /* DMA failed, fall back to PIO */
208 renesas_sdhi_sys_dmac_enable_dma(host
, false);
211 host
->chan_rx
= NULL
;
212 dma_release_channel(chan
);
213 /* Free the Tx channel too */
214 chan
= host
->chan_tx
;
216 host
->chan_tx
= NULL
;
217 dma_release_channel(chan
);
219 dev_warn(&host
->pdev
->dev
,
220 "DMA failed: %d, falling back to PIO\n", ret
);
224 static void renesas_sdhi_sys_dmac_start_dma_tx(struct tmio_mmc_host
*host
)
226 struct renesas_sdhi
*priv
= host_to_priv(host
);
227 struct scatterlist
*sg
= host
->sg_ptr
, *sg_tmp
;
228 struct dma_async_tx_descriptor
*desc
= NULL
;
229 struct dma_chan
*chan
= host
->chan_tx
;
232 bool aligned
= true, multiple
= true;
233 unsigned int align
= (1 << host
->pdata
->alignment_shift
) - 1;
235 for_each_sg(sg
, sg_tmp
, host
->sg_len
, i
) {
236 if (sg_tmp
->offset
& align
)
238 if (sg_tmp
->length
& align
) {
244 if ((!aligned
&& (host
->sg_len
> 1 || sg
->length
> PAGE_SIZE
||
245 (align
& PAGE_MASK
))) || !multiple
) {
250 if (sg
->length
< TMIO_MMC_MIN_DMA_LEN
)
253 /* The only sg element can be unaligned, use our bounce buffer then */
256 void *sg_vaddr
= tmio_mmc_kmap_atomic(sg
, &flags
);
258 sg_init_one(&host
->bounce_sg
, host
->bounce_buf
, sg
->length
);
259 memcpy(host
->bounce_buf
, sg_vaddr
, host
->bounce_sg
.length
);
260 tmio_mmc_kunmap_atomic(sg
, &flags
, sg_vaddr
);
261 host
->sg_ptr
= &host
->bounce_sg
;
265 ret
= dma_map_sg(chan
->device
->dev
, sg
, host
->sg_len
, DMA_TO_DEVICE
);
267 desc
= dmaengine_prep_slave_sg(chan
, sg
, ret
, DMA_MEM_TO_DEV
,
271 reinit_completion(&priv
->dma_priv
.dma_dataend
);
272 desc
->callback
= renesas_sdhi_sys_dmac_dma_callback
;
273 desc
->callback_param
= host
;
275 cookie
= dmaengine_submit(desc
);
284 /* DMA failed, fall back to PIO */
285 renesas_sdhi_sys_dmac_enable_dma(host
, false);
288 host
->chan_tx
= NULL
;
289 dma_release_channel(chan
);
290 /* Free the Rx channel too */
291 chan
= host
->chan_rx
;
293 host
->chan_rx
= NULL
;
294 dma_release_channel(chan
);
296 dev_warn(&host
->pdev
->dev
,
297 "DMA failed: %d, falling back to PIO\n", ret
);
301 static void renesas_sdhi_sys_dmac_start_dma(struct tmio_mmc_host
*host
,
302 struct mmc_data
*data
)
304 if (data
->flags
& MMC_DATA_READ
) {
306 renesas_sdhi_sys_dmac_start_dma_rx(host
);
309 renesas_sdhi_sys_dmac_start_dma_tx(host
);
313 static void renesas_sdhi_sys_dmac_issue_tasklet_fn(unsigned long priv
)
315 struct tmio_mmc_host
*host
= (struct tmio_mmc_host
*)priv
;
316 struct dma_chan
*chan
= NULL
;
318 spin_lock_irq(&host
->lock
);
321 if (host
->data
->flags
& MMC_DATA_READ
)
322 chan
= host
->chan_rx
;
324 chan
= host
->chan_tx
;
327 spin_unlock_irq(&host
->lock
);
329 tmio_mmc_enable_mmc_irqs(host
, TMIO_STAT_DATAEND
);
332 dma_async_issue_pending(chan
);
335 static void renesas_sdhi_sys_dmac_request_dma(struct tmio_mmc_host
*host
,
336 struct tmio_mmc_data
*pdata
)
338 struct renesas_sdhi
*priv
= host_to_priv(host
);
340 /* We can only either use DMA for both Tx and Rx or not use it at all */
341 if (!host
->pdev
->dev
.of_node
&&
342 (!pdata
->chan_priv_tx
|| !pdata
->chan_priv_rx
))
345 if (!host
->chan_tx
&& !host
->chan_rx
) {
346 struct resource
*res
= platform_get_resource(host
->pdev
,
348 struct dma_slave_config cfg
= {};
356 dma_cap_set(DMA_SLAVE
, mask
);
358 host
->chan_tx
= dma_request_slave_channel_compat(mask
,
359 priv
->dma_priv
.filter
, pdata
->chan_priv_tx
,
360 &host
->pdev
->dev
, "tx");
361 dev_dbg(&host
->pdev
->dev
, "%s: TX: got channel %p\n", __func__
,
367 cfg
.direction
= DMA_MEM_TO_DEV
;
368 cfg
.dst_addr
= res
->start
+
369 (CTL_SD_DATA_PORT
<< host
->bus_shift
);
370 cfg
.dst_addr_width
= priv
->dma_priv
.dma_buswidth
;
371 if (!cfg
.dst_addr_width
)
372 cfg
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
374 ret
= dmaengine_slave_config(host
->chan_tx
, &cfg
);
378 host
->chan_rx
= dma_request_slave_channel_compat(mask
,
379 priv
->dma_priv
.filter
, pdata
->chan_priv_rx
,
380 &host
->pdev
->dev
, "rx");
381 dev_dbg(&host
->pdev
->dev
, "%s: RX: got channel %p\n", __func__
,
387 cfg
.direction
= DMA_DEV_TO_MEM
;
388 cfg
.src_addr
= cfg
.dst_addr
+ host
->pdata
->dma_rx_offset
;
389 cfg
.src_addr_width
= priv
->dma_priv
.dma_buswidth
;
390 if (!cfg
.src_addr_width
)
391 cfg
.src_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
;
393 ret
= dmaengine_slave_config(host
->chan_rx
, &cfg
);
397 host
->bounce_buf
= (u8
*)__get_free_page(GFP_KERNEL
| GFP_DMA
);
398 if (!host
->bounce_buf
)
401 init_completion(&priv
->dma_priv
.dma_dataend
);
402 tasklet_init(&host
->dma_issue
,
403 renesas_sdhi_sys_dmac_issue_tasklet_fn
,
404 (unsigned long)host
);
407 renesas_sdhi_sys_dmac_enable_dma(host
, true);
413 dma_release_channel(host
->chan_rx
);
414 host
->chan_rx
= NULL
;
417 dma_release_channel(host
->chan_tx
);
418 host
->chan_tx
= NULL
;
421 static void renesas_sdhi_sys_dmac_release_dma(struct tmio_mmc_host
*host
)
424 struct dma_chan
*chan
= host
->chan_tx
;
426 host
->chan_tx
= NULL
;
427 dma_release_channel(chan
);
430 struct dma_chan
*chan
= host
->chan_rx
;
432 host
->chan_rx
= NULL
;
433 dma_release_channel(chan
);
435 if (host
->bounce_buf
) {
436 free_pages((unsigned long)host
->bounce_buf
, 0);
437 host
->bounce_buf
= NULL
;
441 static const struct tmio_mmc_dma_ops renesas_sdhi_sys_dmac_dma_ops
= {
442 .start
= renesas_sdhi_sys_dmac_start_dma
,
443 .enable
= renesas_sdhi_sys_dmac_enable_dma
,
444 .request
= renesas_sdhi_sys_dmac_request_dma
,
445 .release
= renesas_sdhi_sys_dmac_release_dma
,
446 .abort
= renesas_sdhi_sys_dmac_abort_dma
,
447 .dataend
= renesas_sdhi_sys_dmac_dataend_dma
,
450 static int renesas_sdhi_sys_dmac_probe(struct platform_device
*pdev
)
452 return renesas_sdhi_probe(pdev
, &renesas_sdhi_sys_dmac_dma_ops
);
455 static const struct dev_pm_ops renesas_sdhi_sys_dmac_dev_pm_ops
= {
456 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
457 pm_runtime_force_resume
)
458 SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend
,
459 tmio_mmc_host_runtime_resume
,
463 static struct platform_driver renesas_sys_dmac_sdhi_driver
= {
465 .name
= "sh_mobile_sdhi",
466 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
467 .pm
= &renesas_sdhi_sys_dmac_dev_pm_ops
,
468 .of_match_table
= renesas_sdhi_sys_dmac_of_match
,
470 .probe
= renesas_sdhi_sys_dmac_probe
,
471 .remove
= renesas_sdhi_remove
,
474 module_platform_driver(renesas_sys_dmac_sdhi_driver
);
476 MODULE_DESCRIPTION("Renesas SDHI driver");
477 MODULE_AUTHOR("Magnus Damm");
478 MODULE_LICENSE("GPL v2");
479 MODULE_ALIAS("platform:sh_mobile_sdhi");