• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Platform driver for the Synopsys DesignWare DMA Controller
3  *
4  * Copyright (C) 2007-2008 Atmel Corporation
5  * Copyright (C) 2010-2011 ST Microelectronics
6  * Copyright (C) 2013 Intel Corporation
7  *
8  * Some parts of this driver are derived from the original dw_dmac.
9  *
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.
13  */
14 
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>
21 #include <linux/of.h>
22 #include <linux/of_dma.h>
23 #include <linux/acpi.h>
24 #include <linux/acpi_dma.h>
25 
26 #include "internal.h"
27 
28 #define DRV_NAME	"dw_dmac"
29 
dw_dma_of_xlate(struct of_phandle_args * dma_spec,struct of_dma * ofdma)30 static struct dma_chan *dw_dma_of_xlate(struct of_phandle_args *dma_spec,
31 					struct of_dma *ofdma)
32 {
33 	struct dw_dma *dw = ofdma->of_dma_data;
34 	struct dw_dma_slave slave = {
35 		.dma_dev = dw->dma.dev,
36 	};
37 	dma_cap_mask_t cap;
38 
39 	if (dma_spec->args_count != 3)
40 		return NULL;
41 
42 	slave.src_id = dma_spec->args[0];
43 	slave.dst_id = dma_spec->args[0];
44 	slave.src_master = dma_spec->args[1];
45 	slave.dst_master = dma_spec->args[2];
46 
47 	if (WARN_ON(slave.src_id >= DW_DMA_MAX_NR_REQUESTS ||
48 		    slave.dst_id >= DW_DMA_MAX_NR_REQUESTS ||
49 		    slave.src_master >= dw->nr_masters ||
50 		    slave.dst_master >= dw->nr_masters))
51 		return NULL;
52 
53 	dma_cap_zero(cap);
54 	dma_cap_set(DMA_SLAVE, cap);
55 
56 	/* TODO: there should be a simpler way to do this */
57 	return dma_request_channel(cap, dw_dma_filter, &slave);
58 }
59 
60 #ifdef CONFIG_ACPI
dw_dma_acpi_filter(struct dma_chan * chan,void * param)61 static bool dw_dma_acpi_filter(struct dma_chan *chan, void *param)
62 {
63 	struct acpi_dma_spec *dma_spec = param;
64 	struct dw_dma_slave slave = {
65 		.dma_dev = dma_spec->dev,
66 		.src_id = dma_spec->slave_id,
67 		.dst_id = dma_spec->slave_id,
68 		.src_master = 1,
69 		.dst_master = 0,
70 	};
71 
72 	return dw_dma_filter(chan, &slave);
73 }
74 
dw_dma_acpi_controller_register(struct dw_dma * dw)75 static void dw_dma_acpi_controller_register(struct dw_dma *dw)
76 {
77 	struct device *dev = dw->dma.dev;
78 	struct acpi_dma_filter_info *info;
79 	int ret;
80 
81 	info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
82 	if (!info)
83 		return;
84 
85 	dma_cap_zero(info->dma_cap);
86 	dma_cap_set(DMA_SLAVE, info->dma_cap);
87 	info->filter_fn = dw_dma_acpi_filter;
88 
89 	ret = devm_acpi_dma_controller_register(dev, acpi_dma_simple_xlate,
90 						info);
91 	if (ret)
92 		dev_err(dev, "could not register acpi_dma_controller\n");
93 }
94 #else /* !CONFIG_ACPI */
dw_dma_acpi_controller_register(struct dw_dma * dw)95 static inline void dw_dma_acpi_controller_register(struct dw_dma *dw) {}
96 #endif /* !CONFIG_ACPI */
97 
98 #ifdef CONFIG_OF
99 static struct dw_dma_platform_data *
dw_dma_parse_dt(struct platform_device * pdev)100 dw_dma_parse_dt(struct platform_device *pdev)
101 {
102 	struct device_node *np = pdev->dev.of_node;
103 	struct dw_dma_platform_data *pdata;
104 	u32 tmp, arr[4];
105 
106 	if (!np) {
107 		dev_err(&pdev->dev, "Missing DT data\n");
108 		return NULL;
109 	}
110 
111 	pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
112 	if (!pdata)
113 		return NULL;
114 
115 	if (of_property_read_u32(np, "dma-channels", &pdata->nr_channels))
116 		return NULL;
117 
118 	if (of_property_read_bool(np, "is_private"))
119 		pdata->is_private = true;
120 
121 	if (!of_property_read_u32(np, "chan_allocation_order", &tmp))
122 		pdata->chan_allocation_order = (unsigned char)tmp;
123 
124 	if (!of_property_read_u32(np, "chan_priority", &tmp))
125 		pdata->chan_priority = tmp;
126 
127 	if (!of_property_read_u32(np, "block_size", &tmp))
128 		pdata->block_size = tmp;
129 
130 	if (!of_property_read_u32(np, "dma-masters", &tmp)) {
131 		if (tmp > 4)
132 			return NULL;
133 
134 		pdata->nr_masters = tmp;
135 	}
136 
137 	if (!of_property_read_u32_array(np, "data_width", arr,
138 				pdata->nr_masters))
139 		for (tmp = 0; tmp < pdata->nr_masters; tmp++)
140 			pdata->data_width[tmp] = arr[tmp];
141 
142 	return pdata;
143 }
144 #else
145 static inline struct dw_dma_platform_data *
dw_dma_parse_dt(struct platform_device * pdev)146 dw_dma_parse_dt(struct platform_device *pdev)
147 {
148 	return NULL;
149 }
150 #endif
151 
dw_probe(struct platform_device * pdev)152 static int dw_probe(struct platform_device *pdev)
153 {
154 	struct dw_dma_chip *chip;
155 	struct device *dev = &pdev->dev;
156 	struct resource *mem;
157 	struct dw_dma_platform_data *pdata;
158 	int err;
159 
160 	chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
161 	if (!chip)
162 		return -ENOMEM;
163 
164 	chip->irq = platform_get_irq(pdev, 0);
165 	if (chip->irq < 0)
166 		return chip->irq;
167 
168 	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
169 	chip->regs = devm_ioremap_resource(dev, mem);
170 	if (IS_ERR(chip->regs))
171 		return PTR_ERR(chip->regs);
172 
173 	err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
174 	if (err)
175 		return err;
176 
177 	pdata = dev_get_platdata(dev);
178 	if (!pdata)
179 		pdata = dw_dma_parse_dt(pdev);
180 
181 	chip->dev = dev;
182 
183 	chip->clk = devm_clk_get(chip->dev, "hclk");
184 	if (IS_ERR(chip->clk))
185 		return PTR_ERR(chip->clk);
186 	err = clk_prepare_enable(chip->clk);
187 	if (err)
188 		return err;
189 
190 	err = dw_dma_probe(chip, pdata);
191 	if (err)
192 		goto err_dw_dma_probe;
193 
194 	platform_set_drvdata(pdev, chip);
195 
196 	if (pdev->dev.of_node) {
197 		err = of_dma_controller_register(pdev->dev.of_node,
198 						 dw_dma_of_xlate, chip->dw);
199 		if (err)
200 			dev_err(&pdev->dev,
201 				"could not register of_dma_controller\n");
202 	}
203 
204 	if (ACPI_HANDLE(&pdev->dev))
205 		dw_dma_acpi_controller_register(chip->dw);
206 
207 	return 0;
208 
209 err_dw_dma_probe:
210 	clk_disable_unprepare(chip->clk);
211 	return err;
212 }
213 
dw_remove(struct platform_device * pdev)214 static int dw_remove(struct platform_device *pdev)
215 {
216 	struct dw_dma_chip *chip = platform_get_drvdata(pdev);
217 
218 	if (pdev->dev.of_node)
219 		of_dma_controller_free(pdev->dev.of_node);
220 
221 	dw_dma_remove(chip);
222 	clk_disable_unprepare(chip->clk);
223 
224 	return 0;
225 }
226 
dw_shutdown(struct platform_device * pdev)227 static void dw_shutdown(struct platform_device *pdev)
228 {
229 	struct dw_dma_chip *chip = platform_get_drvdata(pdev);
230 
231 	dw_dma_disable(chip);
232 	clk_disable_unprepare(chip->clk);
233 }
234 
235 #ifdef CONFIG_OF
236 static const struct of_device_id dw_dma_of_id_table[] = {
237 	{ .compatible = "snps,dma-spear1340" },
238 	{}
239 };
240 MODULE_DEVICE_TABLE(of, dw_dma_of_id_table);
241 #endif
242 
243 #ifdef CONFIG_ACPI
244 static const struct acpi_device_id dw_dma_acpi_id_table[] = {
245 	{ "INTL9C60", 0 },
246 	{ }
247 };
248 MODULE_DEVICE_TABLE(acpi, dw_dma_acpi_id_table);
249 #endif
250 
251 #ifdef CONFIG_PM_SLEEP
252 
dw_suspend_late(struct device * dev)253 static int dw_suspend_late(struct device *dev)
254 {
255 	struct platform_device *pdev = to_platform_device(dev);
256 	struct dw_dma_chip *chip = platform_get_drvdata(pdev);
257 
258 	dw_dma_disable(chip);
259 	clk_disable_unprepare(chip->clk);
260 
261 	return 0;
262 }
263 
dw_resume_early(struct device * dev)264 static int dw_resume_early(struct device *dev)
265 {
266 	struct platform_device *pdev = to_platform_device(dev);
267 	struct dw_dma_chip *chip = platform_get_drvdata(pdev);
268 
269 	clk_prepare_enable(chip->clk);
270 	return dw_dma_enable(chip);
271 }
272 
273 #endif /* CONFIG_PM_SLEEP */
274 
275 static const struct dev_pm_ops dw_dev_pm_ops = {
276 	SET_LATE_SYSTEM_SLEEP_PM_OPS(dw_suspend_late, dw_resume_early)
277 };
278 
279 static struct platform_driver dw_driver = {
280 	.probe		= dw_probe,
281 	.remove		= dw_remove,
282 	.shutdown       = dw_shutdown,
283 	.driver = {
284 		.name	= DRV_NAME,
285 		.pm	= &dw_dev_pm_ops,
286 		.of_match_table = of_match_ptr(dw_dma_of_id_table),
287 		.acpi_match_table = ACPI_PTR(dw_dma_acpi_id_table),
288 	},
289 };
290 
dw_init(void)291 static int __init dw_init(void)
292 {
293 	return platform_driver_register(&dw_driver);
294 }
295 subsys_initcall(dw_init);
296 
dw_exit(void)297 static void __exit dw_exit(void)
298 {
299 	platform_driver_unregister(&dw_driver);
300 }
301 module_exit(dw_exit);
302 
303 MODULE_LICENSE("GPL v2");
304 MODULE_DESCRIPTION("Synopsys DesignWare DMA Controller platform driver");
305 MODULE_ALIAS("platform:" DRV_NAME);
306