All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/15] ARM: pxa: switch to DMA slave maps
@ 2018-04-02 14:26 ` Robert Jarzmik
  0 siblings, 0 replies; 217+ messages in thread
From: Robert Jarzmik @ 2018-04-02 14:26 UTC (permalink / raw)
  To: Daniel Mack, Haojian Zhuang, Robert Jarzmik,
	Bartlomiej Zolnierkiewicz, Tejun Heo, Vinod Koul,
	Mauro Carvalho Chehab, Ulf Hansson, Ezequiel Garcia,
	Boris Brezillon, David Woodhouse, Brian Norris, Marek Vasut,
	Richard Weinberger, Cyrille Pitchen, Nicolas Pitre, Samuel Ortiz,
	Greg Kroah-Hartman
  Cc: linux-arm-kernel, linux-kernel, linux-ide, dmaengine, linux-media,
	linux-mmc, linux-mtd, netdev, devel, alsa-devel

Hi,

This serie is aimed at removing the dmaengine slave compat use, and transfer
knowledge of the DMA requestors into architecture code.

This was discussed/advised by Arnd a couple of years back, it's almost time.

The serie is divided in 3 phasees :
 - phase 1 : patch 1/15 and patch 2/15
   => this is the preparation work
 - phase 2 : patches 3/15 .. 10/15
   => this is the switch of all the drivers
   => this one will require either an Ack of the maintainers or be taken by them
      once phase 1 is merged
 - phase 3 : patches 11/15
   => this is the last part, cleanup and removal of export of the DMA filter
      function

As this looks like a patch bomb, each maintainer expressing for his tree either
an Ack or "I want to take through my tree" will be spared in the next iterations
of this serie.

Several of these changes have been tested on actual hardware, including :
 - pxamci
 - pxa_camera
 - smc*
 - ASoC and SSP

Happy review.

Robert Jarzmik (15):
  dmaengine: pxa: use a dma slave map
  ARM: pxa: add dma slave map
  mmc: pxamci: remove the dmaengine compat need
  media: pxa_camera: remove the dmaengine compat need
  mtd: nand: pxa3xx: remove the dmaengine compat need
  net: smc911x: remove the dmaengine compat need
  net: smc91x: remove the dmaengine compat need
  ASoC: pxa: remove the dmaengine compat need
  net: irda: pxaficp_ir: remove the dmaengine compat need
  ata: pata_pxa: remove the dmaengine compat need
  dmaengine: pxa: document pxad_param
  dmaengine: pxa: make the filter function internal
  ARM: pxa: remove the DMA IO resources
  ARM: pxa: change SSP devices allocation
  ARM: pxa: change SSP DMA channels allocation

 arch/arm/mach-pxa/devices.c               | 269 ++++++++++++++----------------
 arch/arm/mach-pxa/devices.h               |  14 +-
 arch/arm/mach-pxa/include/mach/audio.h    |  12 ++
 arch/arm/mach-pxa/pxa25x.c                |   4 +-
 arch/arm/mach-pxa/pxa27x.c                |   4 +-
 arch/arm/mach-pxa/pxa3xx.c                |   5 +-
 arch/arm/plat-pxa/ssp.c                   |  50 +-----
 drivers/ata/pata_pxa.c                    |  10 +-
 drivers/dma/pxa_dma.c                     |  13 +-
 drivers/media/platform/pxa_camera.c       |  22 +--
 drivers/mmc/host/pxamci.c                 |  29 +---
 drivers/mtd/nand/pxa3xx_nand.c            |  10 +-
 drivers/net/ethernet/smsc/smc911x.c       |  16 +-
 drivers/net/ethernet/smsc/smc91x.c        |  12 +-
 drivers/net/ethernet/smsc/smc91x.h        |   1 -
 drivers/staging/irda/drivers/pxaficp_ir.c |  14 +-
 include/linux/dma/pxa-dma.h               |  20 +--
 include/linux/platform_data/mmp_dma.h     |   4 +
 include/linux/pxa2xx_ssp.h                |   4 +-
 sound/arm/pxa2xx-ac97.c                   |  14 +-
 sound/arm/pxa2xx-pcm-lib.c                |   6 +-
 sound/soc/pxa/pxa-ssp.c                   |   5 +-
 sound/soc/pxa/pxa2xx-ac97.c               |  32 +---
 23 files changed, 196 insertions(+), 374 deletions(-)

-- 
2.11.0

^ permalink raw reply	[flat|nested] 217+ messages in thread
* [02/15] ARM: pxa: add dma slave map
  2018-04-03 15:39         ` [02/15] " Arnd Bergmann
  (?)
@ 2018-04-03 20:19 ` Robert Jarzmik
  -1 siblings, 0 replies; 217+ messages in thread
From: Robert Jarzmik @ 2018-04-03 20:19 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Daniel Mack, Haojian Zhuang, Vinod Koul, Linux ARM,
	Linux Kernel Mailing List, dmaengine

... chop chop removing unneeded recipients ....

Arnd Bergmann <arnd@arndb.de> writes:

> Ok, I looked at the driver in more detail now and found the scary parts.
> So it's using the async DMA interface to do synchronous DMA in
> interrupt context in order to transfer the rx data faster than an readsl()
> would, correct?
That's correct, at least for the smc91x.

> It still feels odd to me that there is an entry in the slave map for
> a device that does not have a request line. However, it also seems
> that the entire code in those two drivers that deals with DMA is specific
> to PXA anyway, so maybe it can be done differently: instead of
> calling dma_request_slave_channel_compat() or dma_request_chan()
> with a fake request line, how about calling dma_request_channel()
> with an NULL filter function and data, and have the driver handle
> the empty data case the same way as the rq=-1 case today?
Okay, in this case :
 - the channel priority cannot be passed anymore
 - and I don't see how this can work :
   dma_request_channel()
     __dma_request_channel()
       find_candidate()
         private_candidate(mask, device, fn, fn_param);
           /* Here, fn == NULL and fn_param == NULL as per your proposal */

   This function will find the first available dma channel, all right, but
   no function will be called in pxa_dma driver, and therefore the last
   requestor of the channel will be used, which is bad.

>> If you think it's worth it, what is the driving benefit behind ?
> It seems a bit cleaner to only register the tables for the dma lines that
> are actually present on a given chip.
Okay, let's do this.

Cheers.

^ permalink raw reply	[flat|nested] 217+ messages in thread
* [02/15] ARM: pxa: add dma slave map
  2018-04-03 20:19 ` Robert Jarzmik
  (?)
@ 2018-04-04 10:18 ` Arnd Bergmann
  -1 siblings, 0 replies; 217+ messages in thread
From: Arnd Bergmann @ 2018-04-04 10:18 UTC (permalink / raw)
  To: Robert Jarzmik
  Cc: Daniel Mack, Haojian Zhuang, Vinod Koul, Linux ARM,
	Linux Kernel Mailing List, dmaengine

On Tue, Apr 3, 2018 at 10:19 PM, Robert Jarzmik <robert.jarzmik@free.fr> wrote:
> ... chop chop removing unneeded recipients ....
>
> Arnd Bergmann <arnd@arndb.de> writes:
>
>> Ok, I looked at the driver in more detail now and found the scary parts.
>> So it's using the async DMA interface to do synchronous DMA in
>> interrupt context in order to transfer the rx data faster than an readsl()
>> would, correct?
> That's correct, at least for the smc91x.
>
>> It still feels odd to me that there is an entry in the slave map for
>> a device that does not have a request line. However, it also seems
>> that the entire code in those two drivers that deals with DMA is specific
>> to PXA anyway, so maybe it can be done differently: instead of
>> calling dma_request_slave_channel_compat() or dma_request_chan()
>> with a fake request line, how about calling dma_request_channel()
>> with an NULL filter function and data, and have the driver handle
>> the empty data case the same way as the rq=-1 case today?
> Okay, in this case :
>  - the channel priority cannot be passed anymore

Right, but it could just always use a static priority, right?

>  - and I don't see how this can work :
>    dma_request_channel()
>      __dma_request_channel()
>        find_candidate()
>          private_candidate(mask, device, fn, fn_param);
>            /* Here, fn == NULL and fn_param == NULL as per your proposal */
>
>    This function will find the first available dma channel, all right, but
>    no function will be called in pxa_dma driver, and therefore the last
>    requestor of the channel will be used, which is bad.

Can't you just reset those in pxad_free_chan_resources()?

       Arnd
---
To unsubscribe from this list: send the line "unsubscribe dmaengine" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 217+ messages in thread
* [02/15] ARM: pxa: add dma slave map
  2018-04-04 10:18 ` Arnd Bergmann
  (?)
@ 2018-04-04 19:21 ` Robert Jarzmik
  -1 siblings, 0 replies; 217+ messages in thread
From: Robert Jarzmik @ 2018-04-04 19:21 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Daniel Mack, Haojian Zhuang, Vinod Koul, Linux ARM,
	Linux Kernel Mailing List, dmaengine

Arnd Bergmann <arnd@arndb.de> writes:

> On Tue, Apr 3, 2018 at 10:19 PM, Robert Jarzmik <robert.jarzmik@free.fr> wrote:
>> ... chop chop removing unneeded recipients ....
>>
>> Arnd Bergmann <arnd@arndb.de> writes:
>>> It still feels odd to me that there is an entry in the slave map for
>>> a device that does not have a request line. However, it also seems
>>> that the entire code in those two drivers that deals with DMA is specific
>>> to PXA anyway, so maybe it can be done differently: instead of
>>> calling dma_request_slave_channel_compat() or dma_request_chan()
>>> with a fake request line, how about calling dma_request_channel()
>>> with an NULL filter function and data, and have the driver handle
>>> the empty data case the same way as the rq=-1 case today?
>> Okay, in this case :
>>  - the channel priority cannot be passed anymore
>
> Right, but it could just always use a static priority, right?
Yes, an implicit default priority. I'm not a big fan of implicit parameters, yet
I can do it.

>>  - and I don't see how this can work :
>>    dma_request_channel()
>>      __dma_request_channel()
>>        find_candidate()
>>          private_candidate(mask, device, fn, fn_param);
>>            /* Here, fn == NULL and fn_param == NULL as per your proposal */
>>
>>    This function will find the first available dma channel, all right, but
>>    no function will be called in pxa_dma driver, and therefore the last
>>    requestor of the channel will be used, which is bad.
>
> Can't you just reset those in pxad_free_chan_resources()?
I can, let's see what happens next ...

Cheers.

^ permalink raw reply	[flat|nested] 217+ messages in thread
* [01/15] dmaengine: pxa: use a dma slave map
  2018-04-21 19:23   ` [PATCH 01/15] " Robert Jarzmik
  (?)
@ 2018-04-22  6:13 ` Vinod Koul
  -1 siblings, 0 replies; 217+ messages in thread
From: Vinod Koul @ 2018-04-22  6:13 UTC (permalink / raw)
  To: Robert Jarzmik; +Cc: Arnd Bergmann, linux-arm-kernel, linux-kernel, dmaengine

On Sat, Apr 21, 2018 at 09:23:05PM +0200, Robert Jarzmik wrote:
> Robert Jarzmik <robert.jarzmik@free.fr> writes:
> 
> > In order to remove the specific knowledge of the dma mapping from PXA
> > drivers, add a default slave map for pxa architectures.
> >
> > This won't impact MMP architecture, but is aimed only at all PXA boards.
> >
> > This is the first step, and once all drivers are converted,
> > pxad_filter_fn() will be made static, and the DMA resources removed from
> > device.c.
> >
> > Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
> > Reported-by: Arnd Bergmann <arnd@arndb.de>
> 
> Vinod, could I have your ack please ?

Sure thing:

Acked-By: Vinod Koul <vkoul@kernel.org>

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

end of thread, other threads:[~2018-05-23 21:54 UTC | newest]

Thread overview: 217+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-02 14:26 [PATCH 00/15] ARM: pxa: switch to DMA slave maps Robert Jarzmik
2018-04-02 14:26 ` Robert Jarzmik
2018-04-02 14:26 ` Robert Jarzmik
2018-04-02 14:26 ` Robert Jarzmik
2018-04-02 14:26 ` [PATCH 01/15] dmaengine: pxa: use a dma slave map Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [01/15] " Robert Jarzmik
2018-04-21 19:23   ` [PATCH 01/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 02/15] ARM: pxa: add " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [02/15] " Robert Jarzmik
2018-04-03  6:51   ` [PATCH 02/15] " Arnd Bergmann
2018-04-03  6:51     ` Arnd Bergmann
2018-04-03  6:51     ` Arnd Bergmann
2018-04-03  6:51     ` Arnd Bergmann
2018-04-03  6:51     ` Arnd Bergmann
2018-04-03  6:51     ` [02/15] " Arnd Bergmann
2018-04-03 15:18     ` [PATCH 02/15] " Robert Jarzmik
2018-04-03 15:18       ` Robert Jarzmik
2018-04-03 15:18       ` Robert Jarzmik
2018-04-03 15:18       ` Robert Jarzmik
2018-04-03 15:18       ` [02/15] " Robert Jarzmik
2018-04-03 15:39       ` [PATCH 02/15] " Arnd Bergmann
2018-04-03 15:39         ` Arnd Bergmann
2018-04-03 15:39         ` Arnd Bergmann
2018-04-03 15:39         ` Arnd Bergmann
2018-04-03 15:39         ` Arnd Bergmann
2018-04-03 15:39         ` [02/15] " Arnd Bergmann
2018-04-02 14:26 ` [PATCH 03/15] mmc: pxamci: remove the dmaengine compat need Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [03/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 04/15] media: pxa_camera: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [04/15] " Robert Jarzmik
2018-04-21 19:27   ` [PATCH 04/15] " Robert Jarzmik
2018-04-21 19:27     ` Robert Jarzmik
2018-04-22 11:06     ` Hans Verkuil
2018-04-22 11:06       ` Hans Verkuil
2018-04-22 11:06   ` Hans Verkuil
2018-04-22 11:06     ` Hans Verkuil
2018-04-22 11:06     ` Hans Verkuil
2018-04-22 11:06     ` [04/15] " Hans Verkuil
2018-05-04 19:29     ` [PATCH 04/15] " Mauro Carvalho Chehab
2018-05-04 19:29       ` Mauro Carvalho Chehab
2018-05-04 19:29       ` Mauro Carvalho Chehab
2018-05-04 19:29       ` Mauro Carvalho Chehab
2018-05-04 19:29       ` [04/15] " Mauro Carvalho Chehab
2018-04-02 14:26 ` [PATCH 05/15] mtd: nand: pxa3xx: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [05/15] " Robert Jarzmik
2018-04-03  7:33   ` [PATCH 05/15] " Miquel Raynal
2018-04-03 15:19     ` Robert Jarzmik
2018-05-18 21:31   ` Daniel Mack
2018-05-18 21:31     ` Daniel Mack
2018-05-18 21:31     ` Daniel Mack
2018-05-18 21:31     ` [05/15] " Daniel Mack
2018-05-23 21:54     ` [PATCH 05/15] " Daniel Mack
2018-05-23 21:54       ` Daniel Mack
2018-05-23 21:54       ` Daniel Mack
2018-05-23 21:54       ` [05/15] " Daniel Mack
2018-04-02 14:26 ` [PATCH 06/15] net: smc911x: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [06/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 07/15] net: smc91x: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [07/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 08/15] ASoC: pxa: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [08/15] " Robert Jarzmik
2018-04-12 15:26   ` [PATCH 08/15] " Mark Brown
2018-04-12 15:26     ` Mark Brown
2018-04-12 15:26     ` Mark Brown
2018-04-12 15:26     ` Mark Brown
2018-04-12 15:26     ` Mark Brown
2018-04-12 15:26     ` [08/15] " Mark Brown
2018-04-12 16:55     ` [PATCH 08/15] " Robert Jarzmik
2018-04-12 16:55       ` Robert Jarzmik
2018-04-12 16:55       ` Robert Jarzmik
2018-04-12 16:55       ` Robert Jarzmik
2018-04-12 16:55       ` [08/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 09/15] net: irda: pxaficp_ir: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [09/15] " Robert Jarzmik
2018-04-21 19:30   ` [PATCH 09/15] " Robert Jarzmik
2018-04-21 19:30     ` Robert Jarzmik
2018-04-23  8:37   ` Greg Kroah-Hartman
2018-04-23  8:37     ` Greg Kroah-Hartman
2018-04-23  8:37     ` Greg Kroah-Hartman
2018-04-23  8:37     ` Greg Kroah-Hartman
2018-04-23  8:37     ` [09/15] " Greg Kroah-Hartman
2018-04-02 14:26 ` [PATCH 10/15] ata: pata_pxa: " Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [10/15] " Robert Jarzmik
2018-04-21 19:32   ` [PATCH 10/15] " Robert Jarzmik
2018-04-21 19:32     ` Robert Jarzmik
2018-04-24 11:04     ` Bartlomiej Zolnierkiewicz
2018-04-24 11:04       ` Bartlomiej Zolnierkiewicz
2018-04-02 14:26 ` [PATCH 11/15] dmaengine: pxa: document pxad_param Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [11/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 12/15] dmaengine: pxa: make the filter function internal Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [12/15] " Robert Jarzmik
2018-04-02 16:25   ` [PATCH 12/15] " kbuild test robot
2018-04-02 16:25     ` kbuild test robot
2018-04-02 16:25     ` kbuild test robot
2018-04-02 16:25     ` kbuild test robot
2018-04-02 16:25     ` [12/15] " kbuild test robot
2018-04-02 16:35   ` [PATCH 12/15] " kbuild test robot
2018-04-02 16:35     ` kbuild test robot
2018-04-02 16:35     ` kbuild test robot
2018-04-02 16:35     ` kbuild test robot
2018-04-02 16:35     ` kbuild test robot
2018-04-02 16:35     ` [12/15] " kbuild test robot
2018-04-03  7:13     ` [PATCH 12/15] " Arnd Bergmann
2018-04-03  7:13       ` Arnd Bergmann
2018-04-03  7:13       ` Arnd Bergmann
2018-04-03  7:13       ` Arnd Bergmann
2018-04-03  7:13       ` Arnd Bergmann
2018-04-03  7:13       ` [12/15] " Arnd Bergmann
2018-04-02 14:26 ` [PATCH 13/15] ARM: pxa: remove the DMA IO resources Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [13/15] " Robert Jarzmik
2018-04-02 14:26 ` [PATCH 14/15] ARM: pxa: change SSP devices allocation Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [14/15] " Robert Jarzmik
2018-04-03  7:06   ` [PATCH 14/15] " Arnd Bergmann
2018-04-03  7:06     ` Arnd Bergmann
2018-04-03  7:06     ` Arnd Bergmann
2018-04-03  7:06     ` Arnd Bergmann
2018-04-03  7:06     ` Arnd Bergmann
2018-04-03  7:06     ` [14/15] " Arnd Bergmann
2018-04-03 15:32     ` [PATCH 14/15] " Robert Jarzmik
2018-04-03 15:32       ` Robert Jarzmik
2018-04-03 15:53       ` Arnd Bergmann
2018-04-03 15:53         ` Arnd Bergmann
2018-04-05  6:51         ` Robert Jarzmik
2018-04-05  6:51           ` Robert Jarzmik
2018-04-05  7:29           ` Arnd Bergmann
2018-04-05  7:29             ` Arnd Bergmann
2018-04-08 12:16             ` Robert Jarzmik
2018-04-08 12:16               ` Robert Jarzmik
2018-04-08 12:16               ` Robert Jarzmik
2018-04-02 14:26 ` [PATCH 15/15] ARM: pxa: change SSP DMA channels allocation Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` Robert Jarzmik
2018-04-02 14:26   ` [15/15] " Robert Jarzmik
2018-04-02 18:46   ` [PATCH 15/15] " kbuild test robot
2018-04-02 18:46     ` kbuild test robot
2018-04-02 18:46     ` kbuild test robot
2018-04-02 18:46     ` kbuild test robot
2018-04-02 18:46     ` [15/15] " kbuild test robot
2018-04-03  7:15 ` [PATCH 00/15] ARM: pxa: switch to DMA slave maps Arnd Bergmann
2018-04-03  7:15   ` Arnd Bergmann
2018-04-03  7:15   ` Arnd Bergmann
2018-04-03  7:15   ` Arnd Bergmann
2018-04-03  7:15   ` Arnd Bergmann
2018-04-03 15:08 ` Ulf Hansson
2018-04-03 15:08   ` Ulf Hansson
2018-04-03 15:08   ` Ulf Hansson
2018-04-03 15:08   ` Ulf Hansson
2018-04-04 19:49   ` Robert Jarzmik
2018-04-04 19:49     ` Robert Jarzmik
2018-04-04 19:49     ` Robert Jarzmik
2018-04-04 19:49     ` Robert Jarzmik
2018-04-04 19:56     ` Boris Brezillon
2018-04-04 19:56       ` Boris Brezillon
2018-04-04 19:56       ` Boris Brezillon
2018-04-04 19:56       ` Boris Brezillon
2018-04-04 19:56       ` Boris Brezillon
2018-04-05  6:29       ` Ulf Hansson
2018-04-05  6:29         ` Ulf Hansson
2018-04-05  6:29         ` Ulf Hansson
2018-04-05  6:29         ` Ulf Hansson
2018-04-05  6:50         ` Arnd Bergmann
2018-04-05  6:50           ` Arnd Bergmann
2018-04-05  6:50           ` Arnd Bergmann
2018-04-05  6:50           ` Arnd Bergmann
  -- strict thread matches above, loose matches on Subject: below --
2018-04-03 20:19 [02/15] ARM: pxa: add dma slave map Robert Jarzmik
2018-04-03 20:19 ` [PATCH 02/15] " Robert Jarzmik
2018-04-03 20:19 ` Robert Jarzmik
2018-04-04 10:18 [02/15] " Arnd Bergmann
2018-04-04 10:18 ` [PATCH 02/15] " Arnd Bergmann
2018-04-04 10:18 ` Arnd Bergmann
2018-04-04 19:21 [02/15] " Robert Jarzmik
2018-04-04 19:21 ` [PATCH 02/15] " Robert Jarzmik
2018-04-04 19:21 ` Robert Jarzmik
2018-04-22  6:13 [01/15] dmaengine: pxa: use a " Vinod Koul
2018-04-22  6:13 ` [PATCH 01/15] " Vinod Koul
2018-04-22  6:13 ` 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.