2 * Platform driver for the Synopsys DesignWare DMA Controller
4 * Copyright (C) 2007-2008 Atmel Corporation
5 * Copyright (C) 2010-2011 ST Microelectronics
6 * Copyright (C) 2013 Intel Corporation
8 * Some parts of this driver are derived from the original dw_dmac.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/device.h>
17 #include <linux/clk.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/platform_device.h>
20 #include <linux/dmaengine.h>
21 #include <linux/dma-mapping.h>
23 #include <linux/of_dma.h>
24 #include <linux/acpi.h>
25 #include <linux/acpi_dma.h>
29 #define DRV_NAME "dw_dmac"
31 static struct dma_chan *dw_dma_of_xlate(struct of_phandle_args *dma_spec,
34 struct dw_dma *dw = ofdma->of_dma_data;
35 struct dw_dma_slave slave = {
36 .dma_dev = dw->dma.dev,
40 if (dma_spec->args_count != 3)
43 slave.src_id = dma_spec->args[0];
44 slave.dst_id = dma_spec->args[0];
45 slave.m_master = dma_spec->args[1];
46 slave.p_master = dma_spec->args[2];
48 if (WARN_ON(slave.src_id >= DW_DMA_MAX_NR_REQUESTS ||
49 slave.dst_id >= DW_DMA_MAX_NR_REQUESTS ||
50 slave.m_master >= dw->pdata->nr_masters ||
51 slave.p_master >= dw->pdata->nr_masters))
55 dma_cap_set(DMA_SLAVE, cap);
57 /* TODO: there should be a simpler way to do this */
58 return dma_request_channel(cap, dw_dma_filter, &slave);
62 static bool dw_dma_acpi_filter(struct dma_chan *chan, void *param)
64 struct acpi_dma_spec *dma_spec = param;
65 struct dw_dma_slave slave = {
66 .dma_dev = dma_spec->dev,
67 .src_id = dma_spec->slave_id,
68 .dst_id = dma_spec->slave_id,
73 return dw_dma_filter(chan, &slave);
76 static void dw_dma_acpi_controller_register(struct dw_dma *dw)
78 struct device *dev = dw->dma.dev;
79 struct acpi_dma_filter_info *info;
82 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
86 dma_cap_zero(info->dma_cap);
87 dma_cap_set(DMA_SLAVE, info->dma_cap);
88 info->filter_fn = dw_dma_acpi_filter;
90 ret = acpi_dma_controller_register(dev, acpi_dma_simple_xlate, info);
92 dev_err(dev, "could not register acpi_dma_controller\n");
95 static void dw_dma_acpi_controller_free(struct dw_dma *dw)
97 struct device *dev = dw->dma.dev;
99 acpi_dma_controller_free(dev);
101 #else /* !CONFIG_ACPI */
102 static inline void dw_dma_acpi_controller_register(struct dw_dma *dw) {}
103 static inline void dw_dma_acpi_controller_free(struct dw_dma *dw) {}
104 #endif /* !CONFIG_ACPI */
107 static struct dw_dma_platform_data *
108 dw_dma_parse_dt(struct platform_device *pdev)
110 struct device_node *np = pdev->dev.of_node;
111 struct dw_dma_platform_data *pdata;
112 u32 tmp, arr[DW_DMA_MAX_NR_MASTERS];
117 dev_err(&pdev->dev, "Missing DT data\n");
121 if (of_property_read_u32(np, "dma-masters", &nr_masters))
123 if (nr_masters < 1 || nr_masters > DW_DMA_MAX_NR_MASTERS)
126 if (of_property_read_u32(np, "dma-channels", &nr_channels))
129 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
133 pdata->nr_masters = nr_masters;
134 pdata->nr_channels = nr_channels;
136 if (of_property_read_bool(np, "is_private"))
137 pdata->is_private = true;
139 if (!of_property_read_u32(np, "chan_allocation_order", &tmp))
140 pdata->chan_allocation_order = (unsigned char)tmp;
142 if (!of_property_read_u32(np, "chan_priority", &tmp))
143 pdata->chan_priority = tmp;
145 if (!of_property_read_u32(np, "block_size", &tmp))
146 pdata->block_size = tmp;
148 if (!of_property_read_u32_array(np, "data-width", arr, nr_masters)) {
149 for (tmp = 0; tmp < nr_masters; tmp++)
150 pdata->data_width[tmp] = arr[tmp];
151 } else if (!of_property_read_u32_array(np, "data_width", arr, nr_masters)) {
152 for (tmp = 0; tmp < nr_masters; tmp++)
153 pdata->data_width[tmp] = BIT(arr[tmp] & 0x07);
159 static inline struct dw_dma_platform_data *
160 dw_dma_parse_dt(struct platform_device *pdev)
166 static int dw_probe(struct platform_device *pdev)
168 struct dw_dma_chip *chip;
169 struct device *dev = &pdev->dev;
170 struct resource *mem;
171 const struct dw_dma_platform_data *pdata;
174 chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
178 chip->irq = platform_get_irq(pdev, 0);
182 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
183 chip->regs = devm_ioremap_resource(dev, mem);
184 if (IS_ERR(chip->regs))
185 return PTR_ERR(chip->regs);
187 err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
191 pdata = dev_get_platdata(dev);
193 pdata = dw_dma_parse_dt(pdev);
198 chip->clk = devm_clk_get(chip->dev, "hclk");
199 if (IS_ERR(chip->clk))
200 return PTR_ERR(chip->clk);
201 err = clk_prepare_enable(chip->clk);
205 pm_runtime_enable(&pdev->dev);
207 err = dw_dma_probe(chip);
209 goto err_dw_dma_probe;
211 platform_set_drvdata(pdev, chip);
213 if (pdev->dev.of_node) {
214 err = of_dma_controller_register(pdev->dev.of_node,
215 dw_dma_of_xlate, chip->dw);
218 "could not register of_dma_controller\n");
221 if (ACPI_HANDLE(&pdev->dev))
222 dw_dma_acpi_controller_register(chip->dw);
227 pm_runtime_disable(&pdev->dev);
228 clk_disable_unprepare(chip->clk);
232 static int dw_remove(struct platform_device *pdev)
234 struct dw_dma_chip *chip = platform_get_drvdata(pdev);
236 if (ACPI_HANDLE(&pdev->dev))
237 dw_dma_acpi_controller_free(chip->dw);
239 if (pdev->dev.of_node)
240 of_dma_controller_free(pdev->dev.of_node);
243 pm_runtime_disable(&pdev->dev);
244 clk_disable_unprepare(chip->clk);
249 static void dw_shutdown(struct platform_device *pdev)
251 struct dw_dma_chip *chip = platform_get_drvdata(pdev);
254 * We have to call dw_dma_disable() to stop any ongoing transfer. On
255 * some platforms we can't do that since DMA device is powered off.
256 * Moreover we have no possibility to check if the platform is affected
257 * or not. That's why we call pm_runtime_get_sync() / pm_runtime_put()
258 * unconditionally. On the other hand we can't use
259 * pm_runtime_suspended() because runtime PM framework is not fully
260 * used by the driver.
262 pm_runtime_get_sync(chip->dev);
263 dw_dma_disable(chip);
264 pm_runtime_put_sync_suspend(chip->dev);
266 clk_disable_unprepare(chip->clk);
270 static const struct of_device_id dw_dma_of_id_table[] = {
271 { .compatible = "snps,dma-spear1340" },
274 MODULE_DEVICE_TABLE(of, dw_dma_of_id_table);
278 static const struct acpi_device_id dw_dma_acpi_id_table[] = {
282 MODULE_DEVICE_TABLE(acpi, dw_dma_acpi_id_table);
285 #ifdef CONFIG_PM_SLEEP
287 static int dw_suspend_late(struct device *dev)
289 struct platform_device *pdev = to_platform_device(dev);
290 struct dw_dma_chip *chip = platform_get_drvdata(pdev);
292 dw_dma_disable(chip);
293 clk_disable_unprepare(chip->clk);
298 static int dw_resume_early(struct device *dev)
300 struct platform_device *pdev = to_platform_device(dev);
301 struct dw_dma_chip *chip = platform_get_drvdata(pdev);
303 clk_prepare_enable(chip->clk);
304 return dw_dma_enable(chip);
307 #endif /* CONFIG_PM_SLEEP */
309 static const struct dev_pm_ops dw_dev_pm_ops = {
310 SET_LATE_SYSTEM_SLEEP_PM_OPS(dw_suspend_late, dw_resume_early)
313 static struct platform_driver dw_driver = {
316 .shutdown = dw_shutdown,
319 .pm = &dw_dev_pm_ops,
320 .of_match_table = of_match_ptr(dw_dma_of_id_table),
321 .acpi_match_table = ACPI_PTR(dw_dma_acpi_id_table),
325 static int __init dw_init(void)
327 return platform_driver_register(&dw_driver);
329 subsys_initcall(dw_init);
331 static void __exit dw_exit(void)
333 platform_driver_unregister(&dw_driver);
335 module_exit(dw_exit);
337 MODULE_LICENSE("GPL v2");
338 MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller platform driver");
339 MODULE_ALIAS("platform:" DRV_NAME);