153-dmaengine-Introduce-a-device_config-callback.patch 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. From 94a73e30dfe6722e9f4ef19f7892901d7d00eab1 Mon Sep 17 00:00:00 2001
  2. From: Maxime Ripard <maxime.ripard@free-electrons.com>
  3. Date: Mon, 17 Nov 2014 14:42:00 +0100
  4. Subject: [PATCH] dmaengine: Introduce a device_config callback
  5. The fact that the channel configuration is done in device_control is rather
  6. misleading, since it's not really advertised as such, plus, the fact that the
  7. framework exposes a function of its own makes it not really intuitive, while
  8. we're losing the type checking whenever we pass that unsigned long argument.
  9. Add a device_config callback to dma_device, with a fallback on the old
  10. behaviour for now for existing drivers to opt in.
  11. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
  12. Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
  13. Signed-off-by: Vinod Koul <vinod.koul@intel.com>
  14. ---
  15. include/linux/dmaengine.h | 8 ++++++++
  16. 1 file changed, 8 insertions(+)
  17. --- a/include/linux/dmaengine.h
  18. +++ b/include/linux/dmaengine.h
  19. @@ -607,6 +607,8 @@ struct dma_tx_state {
  20. * The function takes a buffer of size buf_len. The callback function will
  21. * be called after period_len bytes have been transferred.
  22. * @device_prep_interleaved_dma: Transfer expression in a generic way.
  23. + * @device_config: Pushes a new configuration to a channel, return 0 or an error
  24. + * code
  25. * @device_control: manipulate all pending operations on a channel, returns
  26. * zero or error code
  27. * @device_tx_status: poll for transaction completion, the optional
  28. @@ -673,6 +675,9 @@ struct dma_device {
  29. struct dma_async_tx_descriptor *(*device_prep_interleaved_dma)(
  30. struct dma_chan *chan, struct dma_interleaved_template *xt,
  31. unsigned long flags);
  32. +
  33. + int (*device_config)(struct dma_chan *chan,
  34. + struct dma_slave_config *config);
  35. int (*device_control)(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
  36. unsigned long arg);
  37. @@ -696,6 +701,9 @@ static inline int dmaengine_device_contr
  38. static inline int dmaengine_slave_config(struct dma_chan *chan,
  39. struct dma_slave_config *config)
  40. {
  41. + if (chan->device->device_config)
  42. + return chan->device->device_config(chan, config);
  43. +
  44. return dmaengine_device_control(chan, DMA_SLAVE_CONFIG,
  45. (unsigned long)config);
  46. }