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/platform_device.h>
19 #include <linux/dmaengine.h>
20 #include <linux/dma-mapping.h>
22 #include <linux/of_dma.h>
23 #include <linux/acpi.h>
24 #include <linux/acpi_dma.h>
28 struct dw_dma_of_filter_args
{
35 static bool dw_dma_of_filter(struct dma_chan
*chan
, void *param
)
37 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
38 struct dw_dma_of_filter_args
*fargs
= param
;
40 /* Ensure the device matches our channel */
41 if (chan
->device
!= &fargs
->dw
->dma
)
44 dwc
->request_line
= fargs
->req
;
45 dwc
->src_master
= fargs
->src
;
46 dwc
->dst_master
= fargs
->dst
;
51 static struct dma_chan
*dw_dma_of_xlate(struct of_phandle_args
*dma_spec
,
54 struct dw_dma
*dw
= ofdma
->of_dma_data
;
55 struct dw_dma_of_filter_args fargs
= {
60 if (dma_spec
->args_count
!= 3)
63 fargs
.req
= dma_spec
->args
[0];
64 fargs
.src
= dma_spec
->args
[1];
65 fargs
.dst
= dma_spec
->args
[2];
67 if (WARN_ON(fargs
.req
>= DW_DMA_MAX_NR_REQUESTS
||
68 fargs
.src
>= dw
->nr_masters
||
69 fargs
.dst
>= dw
->nr_masters
))
73 dma_cap_set(DMA_SLAVE
, cap
);
75 /* TODO: there should be a simpler way to do this */
76 return dma_request_channel(cap
, dw_dma_of_filter
, &fargs
);
80 static bool dw_dma_acpi_filter(struct dma_chan
*chan
, void *param
)
82 struct dw_dma_chan
*dwc
= to_dw_dma_chan(chan
);
83 struct acpi_dma_spec
*dma_spec
= param
;
85 if (chan
->device
->dev
!= dma_spec
->dev
||
86 chan
->chan_id
!= dma_spec
->chan_id
)
89 dwc
->request_line
= dma_spec
->slave_id
;
90 dwc
->src_master
= dwc_get_sms(NULL
);
91 dwc
->dst_master
= dwc_get_dms(NULL
);
96 static void dw_dma_acpi_controller_register(struct dw_dma
*dw
)
98 struct device
*dev
= dw
->dma
.dev
;
99 struct acpi_dma_filter_info
*info
;
102 info
= devm_kzalloc(dev
, sizeof(*info
), GFP_KERNEL
);
106 dma_cap_zero(info
->dma_cap
);
107 dma_cap_set(DMA_SLAVE
, info
->dma_cap
);
108 info
->filter_fn
= dw_dma_acpi_filter
;
110 ret
= devm_acpi_dma_controller_register(dev
, acpi_dma_simple_xlate
,
113 dev_err(dev
, "could not register acpi_dma_controller\n");
115 #else /* !CONFIG_ACPI */
116 static inline void dw_dma_acpi_controller_register(struct dw_dma
*dw
) {}
117 #endif /* !CONFIG_ACPI */
120 static struct dw_dma_platform_data
*
121 dw_dma_parse_dt(struct platform_device
*pdev
)
123 struct device_node
*np
= pdev
->dev
.of_node
;
124 struct dw_dma_platform_data
*pdata
;
128 dev_err(&pdev
->dev
, "Missing DT data\n");
132 pdata
= devm_kzalloc(&pdev
->dev
, sizeof(*pdata
), GFP_KERNEL
);
136 if (of_property_read_u32(np
, "dma-channels", &pdata
->nr_channels
))
139 if (of_property_read_bool(np
, "is_private"))
140 pdata
->is_private
= true;
142 if (!of_property_read_u32(np
, "chan_allocation_order", &tmp
))
143 pdata
->chan_allocation_order
= (unsigned char)tmp
;
145 if (!of_property_read_u32(np
, "chan_priority", &tmp
))
146 pdata
->chan_priority
= tmp
;
148 if (!of_property_read_u32(np
, "block_size", &tmp
))
149 pdata
->block_size
= tmp
;
151 if (!of_property_read_u32(np
, "dma-masters", &tmp
)) {
155 pdata
->nr_masters
= tmp
;
158 if (!of_property_read_u32_array(np
, "data_width", arr
,
160 for (tmp
= 0; tmp
< pdata
->nr_masters
; tmp
++)
161 pdata
->data_width
[tmp
] = arr
[tmp
];
166 static inline struct dw_dma_platform_data
*
167 dw_dma_parse_dt(struct platform_device
*pdev
)
173 static int dw_probe(struct platform_device
*pdev
)
175 struct dw_dma_chip
*chip
;
176 struct device
*dev
= &pdev
->dev
;
177 struct resource
*mem
;
178 struct dw_dma_platform_data
*pdata
;
181 chip
= devm_kzalloc(dev
, sizeof(*chip
), GFP_KERNEL
);
185 chip
->irq
= platform_get_irq(pdev
, 0);
189 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
190 chip
->regs
= devm_ioremap_resource(dev
, mem
);
191 if (IS_ERR(chip
->regs
))
192 return PTR_ERR(chip
->regs
);
194 err
= dma_coerce_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
198 pdata
= dev_get_platdata(dev
);
200 pdata
= dw_dma_parse_dt(pdev
);
204 err
= dw_dma_probe(chip
, pdata
);
208 platform_set_drvdata(pdev
, chip
);
210 if (pdev
->dev
.of_node
) {
211 err
= of_dma_controller_register(pdev
->dev
.of_node
,
212 dw_dma_of_xlate
, chip
->dw
);
215 "could not register of_dma_controller\n");
218 if (ACPI_HANDLE(&pdev
->dev
))
219 dw_dma_acpi_controller_register(chip
->dw
);
224 static int dw_remove(struct platform_device
*pdev
)
226 struct dw_dma_chip
*chip
= platform_get_drvdata(pdev
);
228 if (pdev
->dev
.of_node
)
229 of_dma_controller_free(pdev
->dev
.of_node
);
231 return dw_dma_remove(chip
);
234 static void dw_shutdown(struct platform_device
*pdev
)
236 struct dw_dma_chip
*chip
= platform_get_drvdata(pdev
);
238 dw_dma_shutdown(chip
);
242 static const struct of_device_id dw_dma_of_id_table
[] = {
243 { .compatible
= "snps,dma-spear1340" },
246 MODULE_DEVICE_TABLE(of
, dw_dma_of_id_table
);
250 static const struct acpi_device_id dw_dma_acpi_id_table
[] = {
254 MODULE_DEVICE_TABLE(acpi
, dw_dma_acpi_id_table
);
257 #ifdef CONFIG_PM_SLEEP
259 static int dw_suspend_noirq(struct device
*dev
)
261 struct platform_device
*pdev
= to_platform_device(dev
);
262 struct dw_dma_chip
*chip
= platform_get_drvdata(pdev
);
264 return dw_dma_suspend(chip
);
267 static int dw_resume_noirq(struct device
*dev
)
269 struct platform_device
*pdev
= to_platform_device(dev
);
270 struct dw_dma_chip
*chip
= platform_get_drvdata(pdev
);
272 return dw_dma_resume(chip
);
275 #else /* !CONFIG_PM_SLEEP */
277 #define dw_suspend_noirq NULL
278 #define dw_resume_noirq NULL
280 #endif /* !CONFIG_PM_SLEEP */
282 static const struct dev_pm_ops dw_dev_pm_ops
= {
283 .suspend_noirq
= dw_suspend_noirq
,
284 .resume_noirq
= dw_resume_noirq
,
285 .freeze_noirq
= dw_suspend_noirq
,
286 .thaw_noirq
= dw_resume_noirq
,
287 .restore_noirq
= dw_resume_noirq
,
288 .poweroff_noirq
= dw_suspend_noirq
,
291 static struct platform_driver dw_driver
= {
294 .shutdown
= dw_shutdown
,
297 .pm
= &dw_dev_pm_ops
,
298 .of_match_table
= of_match_ptr(dw_dma_of_id_table
),
299 .acpi_match_table
= ACPI_PTR(dw_dma_acpi_id_table
),
303 static int __init
dw_init(void)
305 return platform_driver_register(&dw_driver
);
307 subsys_initcall(dw_init
);
309 static void __exit
dw_exit(void)
311 platform_driver_unregister(&dw_driver
);
313 module_exit(dw_exit
);
315 MODULE_LICENSE("GPL v2");
316 MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller platform driver");