All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/14] dma: edma: Fixes for cyclic (audio) operation
@ 2014-04-01 13:06 ` Peter Ujfalusi
  0 siblings, 0 replies; 132+ messages in thread
From: Peter Ujfalusi @ 2014-04-01 13:06 UTC (permalink / raw)
  To: dan.j.williams, vinod.koul, nsekhar
  Cc: dmaengine, linux-kernel, joelf, linux-arm-kernel, linux-omap,
	davinci-linux-open-source, mporter

Hi,

This is basically a resend of the previous series:
https://lkml.org/lkml/2014/3/13/119
with removed ASoC patches (most of them are applied already).

Changes since v1:
- ASoC patches removed
- Comments from Andriy Shevchenko addressed
- patch added to fix cases when src/dst_maxburst is set to 0

Adding support for DMA pause/resume
Possibility to select non default event queue/TC for cyclic (audio) dma
channels: all devices using the eDMA via dmaengine was assigned to the default
EQ/TC (mmc, i2c, spi, etc, and audio). This is not optimal from system
performance point of view since sharing the same EQ/TC can cause latency spikes
for cyclic channels (long DMA transfers for MMC for example).

While debugging the edma to get things sorted out I noticed that the debug was
too verbose and the important information was hidden even when the we did not
asked for verbose dmaengine debug.
I have included some debug cleanups for the edma dmaengine driver also.

Regards,
Peter
---
Peter Ujfalusi (14):
  platform_data: edma: Be precise with the paRAM struct
  dma: edma: Correct the handling of src/dst_maxburst == 0
  dma: edma: Add support for DMA_PAUSE/RESUME operation
  dma: edma: Set DMA_CYCLIC capability flag
  arm: common: edma: Select event queue 1 as default when booted with DT
  arm: common: edma: Save the number of event queues/TCs
  arm: common: edma: API to request non default queue for a channel
  DMA: edma: Use different eventq for cyclic channels
  dma: edma: Implement device_slave_caps callback
  dma: edma: Simplify direction configuration in edma_config_pset()
  dma: edma: Reduce debug print verbosity for non verbose debugging
  dma: edma: Prefix debug prints where the text were identical in prep
    callbacks
  dma: edma: Add channel number to debug prints
  dma: edma: Print the direction value as well when it is not supported

 arch/arm/common/edma.c             | 34 +++++++++++++-
 drivers/dma/edma.c                 | 96 +++++++++++++++++++++++++++++---------
 include/linux/platform_data/edma.h | 20 ++++----
 3 files changed, 119 insertions(+), 31 deletions(-)

-- 
1.9.1


^ permalink raw reply	[flat|nested] 132+ messages in thread

end of thread, other threads:[~2014-04-24  9:07 UTC | newest]

Thread overview: 132+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-01 13:06 [PATCH v2 00/14] dma: edma: Fixes for cyclic (audio) operation Peter Ujfalusi
2014-04-01 13:06 ` Peter Ujfalusi
2014-04-01 13:06 ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 01/14] platform_data: edma: Be precise with the paRAM struct Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 02/14] dma: edma: Correct the handling of src/dst_maxburst == 0 Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 03/14] dma: edma: Add support for DMA_PAUSE/RESUME operation Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-11 16:43   ` Vinod Koul
2014-04-11 16:43     ` Vinod Koul
2014-04-11 20:51     ` Joel Fernandes
2014-04-11 20:51       ` Joel Fernandes
2014-04-11 20:51       ` Joel Fernandes
2014-04-01 13:06 ` [PATCH v2 04/14] dma: edma: Set DMA_CYCLIC capability flag Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 05/14] arm: common: edma: Select event queue 1 as default when booted with DT Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-10 16:23   ` Joel Fernandes
2014-04-10 16:23     ` Joel Fernandes
2014-04-10 16:23     ` Joel Fernandes
2014-04-11  8:17   ` Sekhar Nori
2014-04-11  8:17     ` Sekhar Nori
2014-04-11  8:17     ` Sekhar Nori
2014-04-11  8:50     ` Peter Ujfalusi
2014-04-11  8:50       ` Peter Ujfalusi
2014-04-11  8:50       ` Peter Ujfalusi
2014-04-11  8:56       ` Sekhar Nori
2014-04-11  8:56         ` Sekhar Nori
2014-04-11  8:56         ` Sekhar Nori
2014-04-11  9:38         ` Peter Ujfalusi
2014-04-11  9:38           ` Peter Ujfalusi
2014-04-11  9:38           ` Peter Ujfalusi
2014-04-11  9:42           ` Vinod Koul
2014-04-11  9:42             ` Vinod Koul
2014-04-11  9:42             ` Vinod Koul
2014-04-11 10:19             ` Sekhar Nori
2014-04-11 10:19               ` Sekhar Nori
2014-04-11 10:19               ` Sekhar Nori
2014-04-11 11:32             ` Peter Ujfalusi
2014-04-11 11:32               ` Peter Ujfalusi
2014-04-11 11:32               ` Peter Ujfalusi
2014-04-11 11:31               ` Vinod Koul
2014-04-11 11:31                 ` Vinod Koul
2014-04-11 12:23                 ` Peter Ujfalusi
2014-04-11 12:23                   ` Peter Ujfalusi
2014-04-11 12:23                   ` Peter Ujfalusi
2014-04-11 12:46                   ` Vinod Koul
2014-04-11 12:46                     ` Vinod Koul
2014-04-11 12:46                     ` Vinod Koul
2014-04-14 11:56                     ` Peter Ujfalusi
2014-04-14 11:56                       ` Peter Ujfalusi
2014-04-14 11:56                       ` Peter Ujfalusi
2014-04-14 12:12                       ` Sekhar Nori
2014-04-14 12:12                         ` Sekhar Nori
2014-04-14 12:12                         ` Sekhar Nori
2014-04-14 12:41                         ` Peter Ujfalusi
2014-04-14 12:41                           ` Peter Ujfalusi
2014-04-14 12:41                           ` Peter Ujfalusi
2014-04-14 14:32                           ` Sekhar Nori
2014-04-14 14:32                             ` Sekhar Nori
2014-04-14 14:32                             ` Sekhar Nori
2014-04-16 12:59                             ` Peter Ujfalusi
2014-04-16 12:59                               ` Peter Ujfalusi
2014-04-16 12:59                               ` Peter Ujfalusi
2014-04-16 16:05                               ` Joel Fernandes
2014-04-16 16:05                                 ` Joel Fernandes
2014-04-16 16:05                                 ` Joel Fernandes
2014-04-24  9:07                                 ` Peter Ujfalusi
2014-04-24  9:07                                   ` Peter Ujfalusi
2014-04-24  9:07                                   ` Peter Ujfalusi
2014-04-11 20:16             ` Joel Fernandes
2014-04-11 20:16               ` Joel Fernandes
2014-04-11 20:16               ` Joel Fernandes
2014-04-01 13:06 ` [PATCH v2 06/14] arm: common: edma: Save the number of event queues/TCs Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 07/14] arm: common: edma: API to request non default queue for a channel Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-11  8:43   ` Sekhar Nori
2014-04-11  8:43     ` Sekhar Nori
2014-04-11  8:43     ` Sekhar Nori
2014-04-01 13:06 ` [PATCH v2 08/14] DMA: edma: Use different eventq for cyclic channels Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-10 16:36   ` Joel Fernandes
2014-04-10 16:36     ` Joel Fernandes
2014-04-10 16:36     ` Joel Fernandes
2014-04-11 16:47     ` Vinod Koul
2014-04-11 16:47       ` Vinod Koul
2014-04-11 16:47       ` Vinod Koul
2014-04-11 20:56       ` Joel Fernandes
2014-04-11 20:56         ` Joel Fernandes
2014-04-11 20:56         ` Joel Fernandes
2014-04-01 13:06 ` [PATCH v2 09/14] dma: edma: Implement device_slave_caps callback Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 10/14] dma: edma: Simplify direction configuration in edma_config_pset() Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-10 22:40   ` Joel Fernandes
2014-04-10 22:40     ` Joel Fernandes
2014-04-10 22:40     ` Joel Fernandes
2014-04-11  6:39     ` Peter Ujfalusi
2014-04-11  6:39       ` Peter Ujfalusi
2014-04-11  6:39       ` Peter Ujfalusi
2014-04-11 19:57       ` Joel Fernandes
2014-04-11 19:57         ` Joel Fernandes
2014-04-11 19:57         ` Joel Fernandes
2014-04-01 13:06 ` [PATCH v2 11/14] dma: edma: Reduce debug print verbosity for non verbose debugging Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 12/14] dma: edma: Prefix debug prints where the text were identical in prep callbacks Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 13/14] dma: edma: Add channel number to debug prints Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06 ` [PATCH v2 14/14] dma: edma: Print the direction value as well when it is not supported Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-01 13:06   ` Peter Ujfalusi
2014-04-10 22:52 ` [PATCH v2 00/14] dma: edma: Fixes for cyclic (audio) operation Joel Fernandes
2014-04-10 22:52   ` Joel Fernandes
2014-04-10 22:52   ` Joel Fernandes
2014-04-11 16:52 ` Vinod Koul
2014-04-11 16:52   ` Vinod Koul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.