diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2011-01-12 06:12:31 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-01-31 06:32:52 -0500 |
commit | b9b3f82f94b52ebb0bbdf6cd77ccc5e8ee3f53b5 (patch) | |
tree | 6ea87b15f9f74327c202fc5aa72e6199897c176d /drivers/dma/imx-sdma.c | |
parent | 1bae4ce27c9c90344f23c65ea6966c50ffeae2f5 (diff) |
dmaengine i.MX sdma: set maximum segment size for our device
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/dma/imx-sdma.c')
-rw-r--r-- | drivers/dma/imx-sdma.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index d5a5d4d9c19b..c50305043f15 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c | |||
@@ -301,6 +301,7 @@ struct sdma_firmware_header { | |||
301 | 301 | ||
302 | struct sdma_engine { | 302 | struct sdma_engine { |
303 | struct device *dev; | 303 | struct device *dev; |
304 | struct device_dma_parameters dma_parms; | ||
304 | struct sdma_channel channel[MAX_DMA_CHANNELS]; | 305 | struct sdma_channel channel[MAX_DMA_CHANNELS]; |
305 | struct sdma_channel_control *channel_control; | 306 | struct sdma_channel_control *channel_control; |
306 | void __iomem *regs; | 307 | void __iomem *regs; |
@@ -1317,6 +1318,8 @@ static int __init sdma_probe(struct platform_device *pdev) | |||
1317 | sdma->dma_device.device_prep_dma_cyclic = sdma_prep_dma_cyclic; | 1318 | sdma->dma_device.device_prep_dma_cyclic = sdma_prep_dma_cyclic; |
1318 | sdma->dma_device.device_control = sdma_control; | 1319 | sdma->dma_device.device_control = sdma_control; |
1319 | sdma->dma_device.device_issue_pending = sdma_issue_pending; | 1320 | sdma->dma_device.device_issue_pending = sdma_issue_pending; |
1321 | sdma->dma_device.dev->dma_parms = &sdma->dma_parms; | ||
1322 | dma_set_max_seg_size(sdma->dma_device.dev, 65535); | ||
1320 | 1323 | ||
1321 | ret = dma_async_device_register(&sdma->dma_device); | 1324 | ret = dma_async_device_register(&sdma->dma_device); |
1322 | if (ret) { | 1325 | if (ret) { |