Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * DMA support use of SYS DMAC with SDHI SD/SDIO controller
  4 *
  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 */
 10
 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>
 22
 23#include "renesas_sdhi.h"
 24#include "tmio_mmc.h"
 25
 26#define TMIO_MMC_MIN_DMA_LEN 8
 27
 28static const struct renesas_sdhi_of_data of_default_cfg = {
 29	.tmio_flags = TMIO_MMC_HAS_IDLE_WAIT,
 30};
 31
 32static 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 |
 37			  MMC_CAP_WAIT_WHILE_BUSY,
 38};
 39
 40static const struct renesas_sdhi_of_data of_rcar_gen1_compatible = {
 41	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL,
 42	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 43			  MMC_CAP_WAIT_WHILE_BUSY,
 44	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT,
 45};
 46
 47/* Definitions for sampling clocks */
 48static struct renesas_sdhi_scc rcar_gen2_scc_taps[] = {
 49	{
 50		.clk_rate = 156000000,
 51		.tap = 0x00000703,
 52	},
 53	{
 54		.clk_rate = 0,
 55		.tap = 0x00000300,
 56	},
 57};
 58
 59static const struct renesas_sdhi_of_data of_rcar_gen2_compatible = {
 60	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
 61			  TMIO_MMC_HAVE_CBSY | TMIO_MMC_MIN_RCAR2,
 62	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 63			  MMC_CAP_CMD23 | MMC_CAP_WAIT_WHILE_BUSY,
 64	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT,
 65	.dma_buswidth	= DMA_SLAVE_BUSWIDTH_4_BYTES,
 66	.dma_rx_offset	= 0x2000,
 67	.scc_offset	= 0x0300,
 68	.taps		= rcar_gen2_scc_taps,
 69	.taps_num	= ARRAY_SIZE(rcar_gen2_scc_taps),
 70	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
 71};
 72
 73static const struct of_device_id renesas_sdhi_sys_dmac_of_match[] = {
 74	{ .compatible = "renesas,sdhi-sh73a0", .data = &of_default_cfg, },
 75	{ .compatible = "renesas,sdhi-r8a73a4", .data = &of_default_cfg, },
 76	{ .compatible = "renesas,sdhi-r8a7740", .data = &of_default_cfg, },
 77	{ .compatible = "renesas,sdhi-r7s72100", .data = &of_rz_compatible, },
 78	{ .compatible = "renesas,sdhi-r8a7778", .data = &of_rcar_gen1_compatible, },
 79	{ .compatible = "renesas,sdhi-r8a7779", .data = &of_rcar_gen1_compatible, },
 80	{ .compatible = "renesas,sdhi-r8a7743", .data = &of_rcar_gen2_compatible, },
 81	{ .compatible = "renesas,sdhi-r8a7745", .data = &of_rcar_gen2_compatible, },
 82	{ .compatible = "renesas,sdhi-r8a7790", .data = &of_rcar_gen2_compatible, },
 83	{ .compatible = "renesas,sdhi-r8a7791", .data = &of_rcar_gen2_compatible, },
 84	{ .compatible = "renesas,sdhi-r8a7792", .data = &of_rcar_gen2_compatible, },
 85	{ .compatible = "renesas,sdhi-r8a7793", .data = &of_rcar_gen2_compatible, },
 86	{ .compatible = "renesas,sdhi-r8a7794", .data = &of_rcar_gen2_compatible, },
 87	{ .compatible = "renesas,rcar-gen1-sdhi", .data = &of_rcar_gen1_compatible, },
 88	{ .compatible = "renesas,rcar-gen2-sdhi", .data = &of_rcar_gen2_compatible, },
 89	{ .compatible = "renesas,sdhi-shmobile" },
 90	{},
 91};
 92MODULE_DEVICE_TABLE(of, renesas_sdhi_sys_dmac_of_match);
 93
 94static void renesas_sdhi_sys_dmac_enable_dma(struct tmio_mmc_host *host,
 95					     bool enable)
 96{
 97	struct renesas_sdhi *priv = host_to_priv(host);
 98
 99	if (!host->chan_tx || !host->chan_rx)
100		return;
101
102	if (priv->dma_priv.enable)
103		priv->dma_priv.enable(host, enable);
104}
105
106static void renesas_sdhi_sys_dmac_abort_dma(struct tmio_mmc_host *host)
107{
108	renesas_sdhi_sys_dmac_enable_dma(host, false);
109
110	if (host->chan_rx)
111		dmaengine_terminate_sync(host->chan_rx);
112	if (host->chan_tx)
113		dmaengine_terminate_sync(host->chan_tx);
114
115	renesas_sdhi_sys_dmac_enable_dma(host, true);
116}
117
118static void renesas_sdhi_sys_dmac_dataend_dma(struct tmio_mmc_host *host)
119{
120	struct renesas_sdhi *priv = host_to_priv(host);
121
122	complete(&priv->dma_priv.dma_dataend);
123}
124
125static void renesas_sdhi_sys_dmac_dma_callback(void *arg)
126{
127	struct tmio_mmc_host *host = arg;
128	struct renesas_sdhi *priv = host_to_priv(host);
129
130	spin_lock_irq(&host->lock);
131
132	if (!host->data)
133		goto out;
134
135	if (host->data->flags & MMC_DATA_READ)
136		dma_unmap_sg(host->chan_rx->device->dev,
137			     host->sg_ptr, host->sg_len,
138			     DMA_FROM_DEVICE);
139	else
140		dma_unmap_sg(host->chan_tx->device->dev,
141			     host->sg_ptr, host->sg_len,
142			     DMA_TO_DEVICE);
143
144	spin_unlock_irq(&host->lock);
145
146	wait_for_completion(&priv->dma_priv.dma_dataend);
147
148	spin_lock_irq(&host->lock);
149	tmio_mmc_do_data_irq(host);
150out:
151	spin_unlock_irq(&host->lock);
152}
153
154static void renesas_sdhi_sys_dmac_start_dma_rx(struct tmio_mmc_host *host)
155{
156	struct renesas_sdhi *priv = host_to_priv(host);
157	struct scatterlist *sg = host->sg_ptr, *sg_tmp;
158	struct dma_async_tx_descriptor *desc = NULL;
159	struct dma_chan *chan = host->chan_rx;
160	dma_cookie_t cookie;
161	int ret, i;
162	bool aligned = true, multiple = true;
163	unsigned int align = 1;	/* 2-byte alignment */
164
165	for_each_sg(sg, sg_tmp, host->sg_len, i) {
166		if (sg_tmp->offset & align)
167			aligned = false;
168		if (sg_tmp->length & align) {
169			multiple = false;
170			break;
171		}
172	}
173
174	if ((!aligned && (host->sg_len > 1 || sg->length > PAGE_SIZE ||
175			  (align & PAGE_MASK))) || !multiple) {
176		ret = -EINVAL;
177		goto pio;
178	}
179
180	if (sg->length < TMIO_MMC_MIN_DMA_LEN)
181		return;
182
183	/* The only sg element can be unaligned, use our bounce buffer then */
184	if (!aligned) {
185		sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length);
186		host->sg_ptr = &host->bounce_sg;
187		sg = host->sg_ptr;
188	}
189
190	ret = dma_map_sg(chan->device->dev, sg, host->sg_len, DMA_FROM_DEVICE);
191	if (ret > 0)
192		desc = dmaengine_prep_slave_sg(chan, sg, ret, DMA_DEV_TO_MEM,
193					       DMA_CTRL_ACK);
194
195	if (desc) {
196		reinit_completion(&priv->dma_priv.dma_dataend);
197		desc->callback = renesas_sdhi_sys_dmac_dma_callback;
198		desc->callback_param = host;
199
200		cookie = dmaengine_submit(desc);
201		if (cookie < 0) {
202			desc = NULL;
203			ret = cookie;
204		}
205		host->dma_on = true;
206	}
207pio:
208	if (!desc) {
209		/* DMA failed, fall back to PIO */
210		renesas_sdhi_sys_dmac_enable_dma(host, false);
211		if (ret >= 0)
212			ret = -EIO;
213		host->chan_rx = NULL;
214		dma_release_channel(chan);
215		/* Free the Tx channel too */
216		chan = host->chan_tx;
217		if (chan) {
218			host->chan_tx = NULL;
219			dma_release_channel(chan);
220		}
221		dev_warn(&host->pdev->dev,
222			 "DMA failed: %d, falling back to PIO\n", ret);
223	}
224}
225
226static void renesas_sdhi_sys_dmac_start_dma_tx(struct tmio_mmc_host *host)
227{
228	struct renesas_sdhi *priv = host_to_priv(host);
229	struct scatterlist *sg = host->sg_ptr, *sg_tmp;
230	struct dma_async_tx_descriptor *desc = NULL;
231	struct dma_chan *chan = host->chan_tx;
232	dma_cookie_t cookie;
233	int ret, i;
234	bool aligned = true, multiple = true;
235	unsigned int align = 1;	/* 2-byte alignment */
236
237	for_each_sg(sg, sg_tmp, host->sg_len, i) {
238		if (sg_tmp->offset & align)
239			aligned = false;
240		if (sg_tmp->length & align) {
241			multiple = false;
242			break;
243		}
244	}
245
246	if ((!aligned && (host->sg_len > 1 || sg->length > PAGE_SIZE ||
247			  (align & PAGE_MASK))) || !multiple) {
248		ret = -EINVAL;
249		goto pio;
250	}
251
252	if (sg->length < TMIO_MMC_MIN_DMA_LEN)
253		return;
254
255	/* The only sg element can be unaligned, use our bounce buffer then */
256	if (!aligned) {
257		void *sg_vaddr = kmap_local_page(sg_page(sg));
258
259		sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length);
260		memcpy(host->bounce_buf, sg_vaddr + sg->offset, host->bounce_sg.length);
261		kunmap_local(sg_vaddr);
262		host->sg_ptr = &host->bounce_sg;
263		sg = host->sg_ptr;
264	}
265
266	ret = dma_map_sg(chan->device->dev, sg, host->sg_len, DMA_TO_DEVICE);
267	if (ret > 0)
268		desc = dmaengine_prep_slave_sg(chan, sg, ret, DMA_MEM_TO_DEV,
269					       DMA_CTRL_ACK);
270
271	if (desc) {
272		reinit_completion(&priv->dma_priv.dma_dataend);
273		desc->callback = renesas_sdhi_sys_dmac_dma_callback;
274		desc->callback_param = host;
275
276		cookie = dmaengine_submit(desc);
277		if (cookie < 0) {
278			desc = NULL;
279			ret = cookie;
280		}
281		host->dma_on = true;
282	}
283pio:
284	if (!desc) {
285		/* DMA failed, fall back to PIO */
286		renesas_sdhi_sys_dmac_enable_dma(host, false);
287		if (ret >= 0)
288			ret = -EIO;
289		host->chan_tx = NULL;
290		dma_release_channel(chan);
291		/* Free the Rx channel too */
292		chan = host->chan_rx;
293		if (chan) {
294			host->chan_rx = NULL;
295			dma_release_channel(chan);
296		}
297		dev_warn(&host->pdev->dev,
298			 "DMA failed: %d, falling back to PIO\n", ret);
299	}
300}
301
302static void renesas_sdhi_sys_dmac_start_dma(struct tmio_mmc_host *host,
303					    struct mmc_data *data)
304{
305	if (data->flags & MMC_DATA_READ) {
306		if (host->chan_rx)
307			renesas_sdhi_sys_dmac_start_dma_rx(host);
308	} else {
309		if (host->chan_tx)
310			renesas_sdhi_sys_dmac_start_dma_tx(host);
311	}
312}
313
314static void renesas_sdhi_sys_dmac_issue_tasklet_fn(unsigned long priv)
315{
316	struct tmio_mmc_host *host = (struct tmio_mmc_host *)priv;
317	struct dma_chan *chan = NULL;
318
319	spin_lock_irq(&host->lock);
320
321	if (host->data) {
322		if (host->data->flags & MMC_DATA_READ)
323			chan = host->chan_rx;
324		else
325			chan = host->chan_tx;
326	}
327
328	spin_unlock_irq(&host->lock);
329
330	tmio_mmc_enable_mmc_irqs(host, TMIO_STAT_DATAEND);
331
332	if (chan)
333		dma_async_issue_pending(chan);
334}
335
336static void renesas_sdhi_sys_dmac_request_dma(struct tmio_mmc_host *host,
337					      struct tmio_mmc_data *pdata)
338{
339	struct renesas_sdhi *priv = host_to_priv(host);
340
341	/* We can only either use DMA for both Tx and Rx or not use it at all */
342	if (!host->pdev->dev.of_node &&
343	    (!pdata->chan_priv_tx || !pdata->chan_priv_rx))
344		return;
345
346	if (!host->chan_tx && !host->chan_rx) {
347		struct resource *res = platform_get_resource(host->pdev,
348							     IORESOURCE_MEM, 0);
349		struct dma_slave_config cfg = {};
350		dma_cap_mask_t mask;
351		int ret;
352
353		if (!res)
354			return;
355
356		dma_cap_zero(mask);
357		dma_cap_set(DMA_SLAVE, mask);
358
359		host->chan_tx = dma_request_slave_channel_compat(mask,
360					priv->dma_priv.filter, pdata->chan_priv_tx,
361					&host->pdev->dev, "tx");
362		dev_dbg(&host->pdev->dev, "%s: TX: got channel %p\n", __func__,
363			host->chan_tx);
364
365		if (!host->chan_tx)
366			return;
367
368		cfg.direction = DMA_MEM_TO_DEV;
369		cfg.dst_addr = res->start +
370			(CTL_SD_DATA_PORT << host->bus_shift);
371		cfg.dst_addr_width = priv->dma_priv.dma_buswidth;
372		if (!cfg.dst_addr_width)
373			cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
374		cfg.src_addr = 0;
375		ret = dmaengine_slave_config(host->chan_tx, &cfg);
376		if (ret < 0)
377			goto ecfgtx;
378
379		host->chan_rx = dma_request_slave_channel_compat(mask,
380					priv->dma_priv.filter, pdata->chan_priv_rx,
381					&host->pdev->dev, "rx");
382		dev_dbg(&host->pdev->dev, "%s: RX: got channel %p\n", __func__,
383			host->chan_rx);
384
385		if (!host->chan_rx)
386			goto ereqrx;
387
388		cfg.direction = DMA_DEV_TO_MEM;
389		cfg.src_addr = cfg.dst_addr + host->pdata->dma_rx_offset;
390		cfg.src_addr_width = priv->dma_priv.dma_buswidth;
391		if (!cfg.src_addr_width)
392			cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
393		cfg.dst_addr = 0;
394		ret = dmaengine_slave_config(host->chan_rx, &cfg);
395		if (ret < 0)
396			goto ecfgrx;
397
398		host->bounce_buf = (u8 *)__get_free_page(GFP_KERNEL | GFP_DMA);
399		if (!host->bounce_buf)
400			goto ebouncebuf;
401
402		init_completion(&priv->dma_priv.dma_dataend);
403		tasklet_init(&host->dma_issue,
404			     renesas_sdhi_sys_dmac_issue_tasklet_fn,
405			     (unsigned long)host);
406	}
407
408	renesas_sdhi_sys_dmac_enable_dma(host, true);
409
410	return;
411
412ebouncebuf:
413ecfgrx:
414	dma_release_channel(host->chan_rx);
415	host->chan_rx = NULL;
416ereqrx:
417ecfgtx:
418	dma_release_channel(host->chan_tx);
419	host->chan_tx = NULL;
420}
421
422static void renesas_sdhi_sys_dmac_release_dma(struct tmio_mmc_host *host)
423{
424	if (host->chan_tx) {
425		struct dma_chan *chan = host->chan_tx;
426
427		host->chan_tx = NULL;
428		dma_release_channel(chan);
429	}
430	if (host->chan_rx) {
431		struct dma_chan *chan = host->chan_rx;
432
433		host->chan_rx = NULL;
434		dma_release_channel(chan);
435	}
436	if (host->bounce_buf) {
437		free_pages((unsigned long)host->bounce_buf, 0);
438		host->bounce_buf = NULL;
439	}
440}
441
442static const struct tmio_mmc_dma_ops renesas_sdhi_sys_dmac_dma_ops = {
443	.start = renesas_sdhi_sys_dmac_start_dma,
444	.enable = renesas_sdhi_sys_dmac_enable_dma,
445	.request = renesas_sdhi_sys_dmac_request_dma,
446	.release = renesas_sdhi_sys_dmac_release_dma,
447	.abort = renesas_sdhi_sys_dmac_abort_dma,
448	.dataend = renesas_sdhi_sys_dmac_dataend_dma,
449};
450
451static int renesas_sdhi_sys_dmac_probe(struct platform_device *pdev)
452{
453	return renesas_sdhi_probe(pdev, &renesas_sdhi_sys_dmac_dma_ops,
454				  of_device_get_match_data(&pdev->dev), NULL);
455}
456
457static const struct dev_pm_ops renesas_sdhi_sys_dmac_dev_pm_ops = {
458	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
459				pm_runtime_force_resume)
460	SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend,
461			   tmio_mmc_host_runtime_resume,
462			   NULL)
463};
464
465static struct platform_driver renesas_sys_dmac_sdhi_driver = {
466	.driver		= {
467		.name	= "sh_mobile_sdhi",
468		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
469		.pm	= &renesas_sdhi_sys_dmac_dev_pm_ops,
470		.of_match_table = renesas_sdhi_sys_dmac_of_match,
471	},
472	.probe		= renesas_sdhi_sys_dmac_probe,
473	.remove		= renesas_sdhi_remove,
474};
475
476module_platform_driver(renesas_sys_dmac_sdhi_driver);
477
478MODULE_DESCRIPTION("Renesas SDHI driver");
479MODULE_AUTHOR("Magnus Damm");
480MODULE_LICENSE("GPL v2");
481MODULE_ALIAS("platform:sh_mobile_sdhi");
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * DMA support use of SYS DMAC with SDHI SD/SDIO controller
  4 *
  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 */
 10
 11#include <linux/device.h>
 12#include <linux/dma-mapping.h>
 13#include <linux/dmaengine.h>
 
 14#include <linux/mmc/host.h>
 15#include <linux/mod_devicetable.h>
 16#include <linux/module.h>
 17#include <linux/of.h>
 18#include <linux/pagemap.h>
 19#include <linux/platform_data/tmio.h>
 20#include <linux/platform_device.h>
 21#include <linux/pm_runtime.h>
 22#include <linux/scatterlist.h>
 23#include <linux/sys_soc.h>
 24
 25#include "renesas_sdhi.h"
 26#include "tmio_mmc.h"
 27
 28#define TMIO_MMC_MIN_DMA_LEN 8
 29
 30static const struct renesas_sdhi_of_data of_default_cfg = {
 31	.tmio_flags = TMIO_MMC_HAS_IDLE_WAIT,
 32};
 33
 34static const struct renesas_sdhi_of_data of_rz_compatible = {
 35	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_32BIT_DATA_PORT |
 36			  TMIO_MMC_HAVE_CBSY,
 37	.tmio_ocr_mask	= MMC_VDD_32_33,
 38	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 39			  MMC_CAP_WAIT_WHILE_BUSY,
 40};
 41
 42static const struct renesas_sdhi_of_data of_rcar_gen1_compatible = {
 43	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL,
 44	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 45			  MMC_CAP_WAIT_WHILE_BUSY,
 46	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT,
 47};
 48
 49/* Definitions for sampling clocks */
 50static struct renesas_sdhi_scc rcar_gen2_scc_taps[] = {
 51	{
 52		.clk_rate = 156000000,
 53		.tap = 0x00000703,
 54	},
 55	{
 56		.clk_rate = 0,
 57		.tap = 0x00000300,
 58	},
 59};
 60
 61static const struct renesas_sdhi_of_data of_rcar_gen2_compatible = {
 62	.tmio_flags	= TMIO_MMC_HAS_IDLE_WAIT | TMIO_MMC_CLK_ACTUAL |
 63			  TMIO_MMC_HAVE_CBSY | TMIO_MMC_MIN_RCAR2,
 64	.capabilities	= MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
 65			  MMC_CAP_CMD23 | MMC_CAP_WAIT_WHILE_BUSY,
 66	.capabilities2	= MMC_CAP2_NO_WRITE_PROTECT,
 67	.dma_buswidth	= DMA_SLAVE_BUSWIDTH_4_BYTES,
 68	.dma_rx_offset	= 0x2000,
 69	.scc_offset	= 0x0300,
 70	.taps		= rcar_gen2_scc_taps,
 71	.taps_num	= ARRAY_SIZE(rcar_gen2_scc_taps),
 72	.max_blk_count	= UINT_MAX / TMIO_MAX_BLK_SIZE,
 73};
 74
 75static const struct of_device_id renesas_sdhi_sys_dmac_of_match[] = {
 76	{ .compatible = "renesas,sdhi-sh73a0", .data = &of_default_cfg, },
 77	{ .compatible = "renesas,sdhi-r8a73a4", .data = &of_default_cfg, },
 78	{ .compatible = "renesas,sdhi-r8a7740", .data = &of_default_cfg, },
 79	{ .compatible = "renesas,sdhi-r7s72100", .data = &of_rz_compatible, },
 80	{ .compatible = "renesas,sdhi-r8a7778", .data = &of_rcar_gen1_compatible, },
 81	{ .compatible = "renesas,sdhi-r8a7779", .data = &of_rcar_gen1_compatible, },
 82	{ .compatible = "renesas,sdhi-r8a7743", .data = &of_rcar_gen2_compatible, },
 83	{ .compatible = "renesas,sdhi-r8a7745", .data = &of_rcar_gen2_compatible, },
 84	{ .compatible = "renesas,sdhi-r8a7790", .data = &of_rcar_gen2_compatible, },
 85	{ .compatible = "renesas,sdhi-r8a7791", .data = &of_rcar_gen2_compatible, },
 86	{ .compatible = "renesas,sdhi-r8a7792", .data = &of_rcar_gen2_compatible, },
 87	{ .compatible = "renesas,sdhi-r8a7793", .data = &of_rcar_gen2_compatible, },
 88	{ .compatible = "renesas,sdhi-r8a7794", .data = &of_rcar_gen2_compatible, },
 89	{ .compatible = "renesas,rcar-gen1-sdhi", .data = &of_rcar_gen1_compatible, },
 90	{ .compatible = "renesas,rcar-gen2-sdhi", .data = &of_rcar_gen2_compatible, },
 91	{ .compatible = "renesas,sdhi-shmobile" },
 92	{},
 93};
 94MODULE_DEVICE_TABLE(of, renesas_sdhi_sys_dmac_of_match);
 95
 96static void renesas_sdhi_sys_dmac_enable_dma(struct tmio_mmc_host *host,
 97					     bool enable)
 98{
 99	struct renesas_sdhi *priv = host_to_priv(host);
100
101	if (!host->chan_tx || !host->chan_rx)
102		return;
103
104	if (priv->dma_priv.enable)
105		priv->dma_priv.enable(host, enable);
106}
107
108static void renesas_sdhi_sys_dmac_abort_dma(struct tmio_mmc_host *host)
109{
110	renesas_sdhi_sys_dmac_enable_dma(host, false);
111
112	if (host->chan_rx)
113		dmaengine_terminate_sync(host->chan_rx);
114	if (host->chan_tx)
115		dmaengine_terminate_sync(host->chan_tx);
116
117	renesas_sdhi_sys_dmac_enable_dma(host, true);
118}
119
120static void renesas_sdhi_sys_dmac_dataend_dma(struct tmio_mmc_host *host)
121{
122	struct renesas_sdhi *priv = host_to_priv(host);
123
124	complete(&priv->dma_priv.dma_dataend);
125}
126
127static void renesas_sdhi_sys_dmac_dma_callback(void *arg)
128{
129	struct tmio_mmc_host *host = arg;
130	struct renesas_sdhi *priv = host_to_priv(host);
131
132	spin_lock_irq(&host->lock);
133
134	if (!host->data)
135		goto out;
136
137	if (host->data->flags & MMC_DATA_READ)
138		dma_unmap_sg(host->chan_rx->device->dev,
139			     host->sg_ptr, host->sg_len,
140			     DMA_FROM_DEVICE);
141	else
142		dma_unmap_sg(host->chan_tx->device->dev,
143			     host->sg_ptr, host->sg_len,
144			     DMA_TO_DEVICE);
145
146	spin_unlock_irq(&host->lock);
147
148	wait_for_completion(&priv->dma_priv.dma_dataend);
149
150	spin_lock_irq(&host->lock);
151	tmio_mmc_do_data_irq(host);
152out:
153	spin_unlock_irq(&host->lock);
154}
155
156static void renesas_sdhi_sys_dmac_start_dma_rx(struct tmio_mmc_host *host)
157{
158	struct renesas_sdhi *priv = host_to_priv(host);
159	struct scatterlist *sg = host->sg_ptr, *sg_tmp;
160	struct dma_async_tx_descriptor *desc = NULL;
161	struct dma_chan *chan = host->chan_rx;
162	dma_cookie_t cookie;
163	int ret, i;
164	bool aligned = true, multiple = true;
165	unsigned int align = 1;	/* 2-byte alignment */
166
167	for_each_sg(sg, sg_tmp, host->sg_len, i) {
168		if (sg_tmp->offset & align)
169			aligned = false;
170		if (sg_tmp->length & align) {
171			multiple = false;
172			break;
173		}
174	}
175
176	if ((!aligned && (host->sg_len > 1 || sg->length > PAGE_SIZE ||
177			  (align & PAGE_MASK))) || !multiple) {
178		ret = -EINVAL;
179		goto pio;
180	}
181
182	if (sg->length < TMIO_MMC_MIN_DMA_LEN)
183		return;
184
185	/* The only sg element can be unaligned, use our bounce buffer then */
186	if (!aligned) {
187		sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length);
188		host->sg_ptr = &host->bounce_sg;
189		sg = host->sg_ptr;
190	}
191
192	ret = dma_map_sg(chan->device->dev, sg, host->sg_len, DMA_FROM_DEVICE);
193	if (ret > 0)
194		desc = dmaengine_prep_slave_sg(chan, sg, ret, DMA_DEV_TO_MEM,
195					       DMA_CTRL_ACK);
196
197	if (desc) {
198		reinit_completion(&priv->dma_priv.dma_dataend);
199		desc->callback = renesas_sdhi_sys_dmac_dma_callback;
200		desc->callback_param = host;
201
202		cookie = dmaengine_submit(desc);
203		if (cookie < 0) {
204			desc = NULL;
205			ret = cookie;
206		}
207		host->dma_on = true;
208	}
209pio:
210	if (!desc) {
211		/* DMA failed, fall back to PIO */
212		renesas_sdhi_sys_dmac_enable_dma(host, false);
213		if (ret >= 0)
214			ret = -EIO;
215		host->chan_rx = NULL;
216		dma_release_channel(chan);
217		/* Free the Tx channel too */
218		chan = host->chan_tx;
219		if (chan) {
220			host->chan_tx = NULL;
221			dma_release_channel(chan);
222		}
223		dev_warn(&host->pdev->dev,
224			 "DMA failed: %d, falling back to PIO\n", ret);
225	}
226}
227
228static void renesas_sdhi_sys_dmac_start_dma_tx(struct tmio_mmc_host *host)
229{
230	struct renesas_sdhi *priv = host_to_priv(host);
231	struct scatterlist *sg = host->sg_ptr, *sg_tmp;
232	struct dma_async_tx_descriptor *desc = NULL;
233	struct dma_chan *chan = host->chan_tx;
234	dma_cookie_t cookie;
235	int ret, i;
236	bool aligned = true, multiple = true;
237	unsigned int align = 1;	/* 2-byte alignment */
238
239	for_each_sg(sg, sg_tmp, host->sg_len, i) {
240		if (sg_tmp->offset & align)
241			aligned = false;
242		if (sg_tmp->length & align) {
243			multiple = false;
244			break;
245		}
246	}
247
248	if ((!aligned && (host->sg_len > 1 || sg->length > PAGE_SIZE ||
249			  (align & PAGE_MASK))) || !multiple) {
250		ret = -EINVAL;
251		goto pio;
252	}
253
254	if (sg->length < TMIO_MMC_MIN_DMA_LEN)
255		return;
256
257	/* The only sg element can be unaligned, use our bounce buffer then */
258	if (!aligned) {
259		void *sg_vaddr = kmap_local_page(sg_page(sg));
260
261		sg_init_one(&host->bounce_sg, host->bounce_buf, sg->length);
262		memcpy(host->bounce_buf, sg_vaddr + sg->offset, host->bounce_sg.length);
263		kunmap_local(sg_vaddr);
264		host->sg_ptr = &host->bounce_sg;
265		sg = host->sg_ptr;
266	}
267
268	ret = dma_map_sg(chan->device->dev, sg, host->sg_len, DMA_TO_DEVICE);
269	if (ret > 0)
270		desc = dmaengine_prep_slave_sg(chan, sg, ret, DMA_MEM_TO_DEV,
271					       DMA_CTRL_ACK);
272
273	if (desc) {
274		reinit_completion(&priv->dma_priv.dma_dataend);
275		desc->callback = renesas_sdhi_sys_dmac_dma_callback;
276		desc->callback_param = host;
277
278		cookie = dmaengine_submit(desc);
279		if (cookie < 0) {
280			desc = NULL;
281			ret = cookie;
282		}
283		host->dma_on = true;
284	}
285pio:
286	if (!desc) {
287		/* DMA failed, fall back to PIO */
288		renesas_sdhi_sys_dmac_enable_dma(host, false);
289		if (ret >= 0)
290			ret = -EIO;
291		host->chan_tx = NULL;
292		dma_release_channel(chan);
293		/* Free the Rx channel too */
294		chan = host->chan_rx;
295		if (chan) {
296			host->chan_rx = NULL;
297			dma_release_channel(chan);
298		}
299		dev_warn(&host->pdev->dev,
300			 "DMA failed: %d, falling back to PIO\n", ret);
301	}
302}
303
304static void renesas_sdhi_sys_dmac_start_dma(struct tmio_mmc_host *host,
305					    struct mmc_data *data)
306{
307	if (data->flags & MMC_DATA_READ) {
308		if (host->chan_rx)
309			renesas_sdhi_sys_dmac_start_dma_rx(host);
310	} else {
311		if (host->chan_tx)
312			renesas_sdhi_sys_dmac_start_dma_tx(host);
313	}
314}
315
316static void renesas_sdhi_sys_dmac_issue_work_fn(struct work_struct *work)
317{
318	struct tmio_mmc_host *host = from_work(host, work, dma_issue);
319	struct dma_chan *chan = NULL;
320
321	spin_lock_irq(&host->lock);
322
323	if (host->data) {
324		if (host->data->flags & MMC_DATA_READ)
325			chan = host->chan_rx;
326		else
327			chan = host->chan_tx;
328	}
329
330	spin_unlock_irq(&host->lock);
331
332	tmio_mmc_enable_mmc_irqs(host, TMIO_STAT_DATAEND);
333
334	if (chan)
335		dma_async_issue_pending(chan);
336}
337
338static void renesas_sdhi_sys_dmac_request_dma(struct tmio_mmc_host *host,
339					      struct tmio_mmc_data *pdata)
340{
341	struct renesas_sdhi *priv = host_to_priv(host);
342
343	/* We can only either use DMA for both Tx and Rx or not use it at all */
344	if (!host->pdev->dev.of_node &&
345	    (!pdata->chan_priv_tx || !pdata->chan_priv_rx))
346		return;
347
348	if (!host->chan_tx && !host->chan_rx) {
349		struct resource *res = platform_get_resource(host->pdev,
350							     IORESOURCE_MEM, 0);
351		struct dma_slave_config cfg = {};
352		dma_cap_mask_t mask;
353		int ret;
354
355		if (!res)
356			return;
357
358		dma_cap_zero(mask);
359		dma_cap_set(DMA_SLAVE, mask);
360
361		host->chan_tx = dma_request_slave_channel_compat(mask,
362					priv->dma_priv.filter, pdata->chan_priv_tx,
363					&host->pdev->dev, "tx");
364		dev_dbg(&host->pdev->dev, "%s: TX: got channel %p\n", __func__,
365			host->chan_tx);
366
367		if (!host->chan_tx)
368			return;
369
370		cfg.direction = DMA_MEM_TO_DEV;
371		cfg.dst_addr = res->start +
372			(CTL_SD_DATA_PORT << host->bus_shift);
373		cfg.dst_addr_width = priv->dma_priv.dma_buswidth;
374		if (!cfg.dst_addr_width)
375			cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
376		cfg.src_addr = 0;
377		ret = dmaengine_slave_config(host->chan_tx, &cfg);
378		if (ret < 0)
379			goto ecfgtx;
380
381		host->chan_rx = dma_request_slave_channel_compat(mask,
382					priv->dma_priv.filter, pdata->chan_priv_rx,
383					&host->pdev->dev, "rx");
384		dev_dbg(&host->pdev->dev, "%s: RX: got channel %p\n", __func__,
385			host->chan_rx);
386
387		if (!host->chan_rx)
388			goto ereqrx;
389
390		cfg.direction = DMA_DEV_TO_MEM;
391		cfg.src_addr = cfg.dst_addr + host->pdata->dma_rx_offset;
392		cfg.src_addr_width = priv->dma_priv.dma_buswidth;
393		if (!cfg.src_addr_width)
394			cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
395		cfg.dst_addr = 0;
396		ret = dmaengine_slave_config(host->chan_rx, &cfg);
397		if (ret < 0)
398			goto ecfgrx;
399
400		host->bounce_buf = (u8 *)__get_free_page(GFP_KERNEL | GFP_DMA);
401		if (!host->bounce_buf)
402			goto ebouncebuf;
403
404		init_completion(&priv->dma_priv.dma_dataend);
405		INIT_WORK(&host->dma_issue,
406			  renesas_sdhi_sys_dmac_issue_work_fn);
 
407	}
408
409	renesas_sdhi_sys_dmac_enable_dma(host, true);
410
411	return;
412
413ebouncebuf:
414ecfgrx:
415	dma_release_channel(host->chan_rx);
416	host->chan_rx = NULL;
417ereqrx:
418ecfgtx:
419	dma_release_channel(host->chan_tx);
420	host->chan_tx = NULL;
421}
422
423static void renesas_sdhi_sys_dmac_release_dma(struct tmio_mmc_host *host)
424{
425	if (host->chan_tx) {
426		struct dma_chan *chan = host->chan_tx;
427
428		host->chan_tx = NULL;
429		dma_release_channel(chan);
430	}
431	if (host->chan_rx) {
432		struct dma_chan *chan = host->chan_rx;
433
434		host->chan_rx = NULL;
435		dma_release_channel(chan);
436	}
437	if (host->bounce_buf) {
438		free_pages((unsigned long)host->bounce_buf, 0);
439		host->bounce_buf = NULL;
440	}
441}
442
443static const struct tmio_mmc_dma_ops renesas_sdhi_sys_dmac_dma_ops = {
444	.start = renesas_sdhi_sys_dmac_start_dma,
445	.enable = renesas_sdhi_sys_dmac_enable_dma,
446	.request = renesas_sdhi_sys_dmac_request_dma,
447	.release = renesas_sdhi_sys_dmac_release_dma,
448	.abort = renesas_sdhi_sys_dmac_abort_dma,
449	.dataend = renesas_sdhi_sys_dmac_dataend_dma,
450};
451
452static int renesas_sdhi_sys_dmac_probe(struct platform_device *pdev)
453{
454	return renesas_sdhi_probe(pdev, &renesas_sdhi_sys_dmac_dma_ops,
455				  of_device_get_match_data(&pdev->dev), NULL);
456}
457
458static const struct dev_pm_ops renesas_sdhi_sys_dmac_dev_pm_ops = {
459	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
460				pm_runtime_force_resume)
461	SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend,
462			   tmio_mmc_host_runtime_resume,
463			   NULL)
464};
465
466static struct platform_driver renesas_sys_dmac_sdhi_driver = {
467	.driver		= {
468		.name	= "sh_mobile_sdhi",
469		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
470		.pm	= &renesas_sdhi_sys_dmac_dev_pm_ops,
471		.of_match_table = renesas_sdhi_sys_dmac_of_match,
472	},
473	.probe		= renesas_sdhi_sys_dmac_probe,
474	.remove		= renesas_sdhi_remove,
475};
476
477module_platform_driver(renesas_sys_dmac_sdhi_driver);
478
479MODULE_DESCRIPTION("Renesas SDHI driver");
480MODULE_AUTHOR("Magnus Damm");
481MODULE_LICENSE("GPL v2");
482MODULE_ALIAS("platform:sh_mobile_sdhi");