Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / mmc / host / renesas_sdhi_sys_dmac.c
blobc5f7896753028f3d75b77e8006269ce8f3a36764
1 // SPDX-License-Identifier: GPL-2.0
2 /*
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
9 */
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"
24 #include "tmio_mmc.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 |
34 TMIO_MMC_HAVE_CBSY,
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,
49 .tap = 0x00000703,
52 .clk_rate = 0,
53 .tap = 0x00000300,
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 |
61 MMC_CAP_CMD23,
62 .capabilities2 = MMC_CAP2_NO_WRITE_PROTECT,
63 .dma_buswidth = DMA_SLAVE_BUSWIDTH_4_BYTES,
64 .dma_rx_offset = 0x2000,
65 .scc_offset = 0x0300,
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" },
88 {},
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,
93 bool enable)
95 struct renesas_sdhi *priv = host_to_priv(host);
97 if (!host->chan_tx || !host->chan_rx)
98 return;
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);
108 if (host->chan_rx)
109 dmaengine_terminate_all(host->chan_rx);
110 if (host->chan_tx)
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);
130 if (!host->data)
131 goto out;
133 if (host->data->flags & MMC_DATA_READ)
134 dma_unmap_sg(host->chan_rx->device->dev,
135 host->sg_ptr, host->sg_len,
136 DMA_FROM_DEVICE);
137 else
138 dma_unmap_sg(host->chan_tx->device->dev,
139 host->sg_ptr, host->sg_len,
140 DMA_TO_DEVICE);
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);
148 out:
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;
158 dma_cookie_t cookie;
159 int ret, i;
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)
165 aligned = false;
166 if (sg_tmp->length & align) {
167 multiple = false;
168 break;
172 if ((!aligned && (host->sg_len > 1 || sg->length > PAGE_SIZE ||
173 (align & PAGE_MASK))) || !multiple) {
174 ret = -EINVAL;
175 goto pio;
178 if (sg->length < TMIO_MMC_MIN_DMA_LEN)
179 return;
181 /* The only sg element can be unaligned, use our bounce buffer then */
182 if (!aligned) {
183 sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length);
184 host->sg_ptr = &host->bounce_sg;
185 sg = host->sg_ptr;
188 ret = dma_map_sg(chan->device->dev, sg, host->sg_len, DMA_FROM_DEVICE);
189 if (ret > 0)
190 desc = dmaengine_prep_slave_sg(chan, sg, ret, DMA_DEV_TO_MEM,
191 DMA_CTRL_ACK);
193 if (desc) {
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);
199 if (cookie < 0) {
200 desc = NULL;
201 ret = cookie;
203 host->dma_on = true;
205 pio:
206 if (!desc) {
207 /* DMA failed, fall back to PIO */
208 renesas_sdhi_sys_dmac_enable_dma(host, false);
209 if (ret >= 0)
210 ret = -EIO;
211 host->chan_rx = NULL;
212 dma_release_channel(chan);
213 /* Free the Tx channel too */
214 chan = host->chan_tx;
215 if (chan) {
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;
230 dma_cookie_t cookie;
231 int ret, i;
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)
237 aligned = false;
238 if (sg_tmp->length & align) {
239 multiple = false;
240 break;
244 if ((!aligned && (host->sg_len > 1 || sg->length > PAGE_SIZE ||
245 (align & PAGE_MASK))) || !multiple) {
246 ret = -EINVAL;
247 goto pio;
250 if (sg->length < TMIO_MMC_MIN_DMA_LEN)
251 return;
253 /* The only sg element can be unaligned, use our bounce buffer then */
254 if (!aligned) {
255 unsigned long flags;
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;
262 sg = host->sg_ptr;
265 ret = dma_map_sg(chan->device->dev, sg, host->sg_len, DMA_TO_DEVICE);
266 if (ret > 0)
267 desc = dmaengine_prep_slave_sg(chan, sg, ret, DMA_MEM_TO_DEV,
268 DMA_CTRL_ACK);
270 if (desc) {
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);
276 if (cookie < 0) {
277 desc = NULL;
278 ret = cookie;
280 host->dma_on = true;
282 pio:
283 if (!desc) {
284 /* DMA failed, fall back to PIO */
285 renesas_sdhi_sys_dmac_enable_dma(host, false);
286 if (ret >= 0)
287 ret = -EIO;
288 host->chan_tx = NULL;
289 dma_release_channel(chan);
290 /* Free the Rx channel too */
291 chan = host->chan_rx;
292 if (chan) {
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) {
305 if (host->chan_rx)
306 renesas_sdhi_sys_dmac_start_dma_rx(host);
307 } else {
308 if (host->chan_tx)
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);
320 if (host->data) {
321 if (host->data->flags & MMC_DATA_READ)
322 chan = host->chan_rx;
323 else
324 chan = host->chan_tx;
327 spin_unlock_irq(&host->lock);
329 tmio_mmc_enable_mmc_irqs(host, TMIO_STAT_DATAEND);
331 if (chan)
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))
343 return;
345 if (!host->chan_tx && !host->chan_rx) {
346 struct resource *res = platform_get_resource(host->pdev,
347 IORESOURCE_MEM, 0);
348 struct dma_slave_config cfg = {};
349 dma_cap_mask_t mask;
350 int ret;
352 if (!res)
353 return;
355 dma_cap_zero(mask);
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__,
362 host->chan_tx);
364 if (!host->chan_tx)
365 return;
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;
373 cfg.src_addr = 0;
374 ret = dmaengine_slave_config(host->chan_tx, &cfg);
375 if (ret < 0)
376 goto ecfgtx;
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__,
382 host->chan_rx);
384 if (!host->chan_rx)
385 goto ereqrx;
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;
392 cfg.dst_addr = 0;
393 ret = dmaengine_slave_config(host->chan_rx, &cfg);
394 if (ret < 0)
395 goto ecfgrx;
397 host->bounce_buf = (u8 *)__get_free_page(GFP_KERNEL | GFP_DMA);
398 if (!host->bounce_buf)
399 goto ebouncebuf;
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);
409 return;
411 ebouncebuf:
412 ecfgrx:
413 dma_release_channel(host->chan_rx);
414 host->chan_rx = NULL;
415 ereqrx:
416 ecfgtx:
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)
423 if (host->chan_tx) {
424 struct dma_chan *chan = host->chan_tx;
426 host->chan_tx = NULL;
427 dma_release_channel(chan);
429 if (host->chan_rx) {
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,
460 NULL)
463 static struct platform_driver renesas_sys_dmac_sdhi_driver = {
464 .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");