public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
* [cip-dev] [PATCH 00/19] Add sound support to iwg22d
@ 2018-08-10  9:52 Fabrizio Castro
  2018-08-10  9:52 ` [cip-dev] [PATCH 01/19] ASoC: rsnd: remove platform boot support from src.c Fabrizio Castro
                   ` (18 more replies)
  0 siblings, 19 replies; 26+ messages in thread
From: Fabrizio Castro @ 2018-08-10  9:52 UTC (permalink / raw)
  To: cip-dev

Hello Ben,

this series adds sound support to the iwg22d board by backporting all the
necessary patches, including some fixes.

There is a dependency with series:
https://lists.cip-project.org/pipermail/cip-dev/2018-July/001462.html

This work is based on top of linux-4.4.y-cip, commit
4d769b2b8749e89dfc7ea179a44f652dcfbedb37 ("PM / OPP: Move error
message to debug level").

Thanks,
Fab

Biju Das (9):
  ARM: dts: r8a7745: Add audio clocks
  ARM: dts: r8a7745: Add audio DMAC support
  ARM: dts: r8a7745: Add sound support
  ARM: dts: iwg22d-sodimm: Enable SGTL5000 audio codec
  ARM: dts: iwg22d-sodimm: Sound PIO support
  ARM: dts: iwg22d-sodimm: Sound DMA support on DTS
  ARM: dts: iwg22d-sodimm: Sound DMA support via BUSIF on DTS
  ARM: dts: iwg22d-sodimm: Sound DMA support via SRC on DTS
  ARM: dts: iwg22d-sodimm: Sound DMA support via DVC on DTS

Kuninori Morimoto (5):
  ASoC: rsnd: remove platform boot support from src.c
  dmaengine: rcar-dmac: clear pertinence number of channels
  dmaengine: rcar-dmac: use list_add() on rcar_dmac_desc_put()
  dmaengine: rcar-dmac: ensure CHCR DE bit is actually 0 after clearing
  dmaengine: rcar-dmac: use TCRB instead of TCR for residue

Laurent Pinchart (1):
  dmaengine: rcar-dmac: Fix residue reporting for pending descriptors

Muhammad Hamza Farooq (2):
  dmaengine: rcar-dmac: use result of updated get_residue in tx_status
  dmaengine: rcar-dmac: Fixed active descriptor initializing

Niklas S?derlund (1):
  dmaengine: rcar-dmac: warn if transfer cannot start as TE = 1

Sergei Shtylyov (1):
  rcar: src: skip disabled-SRC nodes

 arch/arm/boot/dts/r8a7745-iwg22d-sodimm.dts |  92 ++++++++++++
 arch/arm/boot/dts/r8a7745.dtsi              | 222 ++++++++++++++++++++++++++++
 drivers/dma/sh/rcar-dmac.c                  |  87 ++++++++++-
 sound/soc/sh/rcar/src.c                     | 165 +++++++--------------
 4 files changed, 451 insertions(+), 115 deletions(-)

-- 
2.7.4

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

end of thread, other threads:[~2018-09-13  8:02 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-10  9:52 [cip-dev] [PATCH 00/19] Add sound support to iwg22d Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 01/19] ASoC: rsnd: remove platform boot support from src.c Fabrizio Castro
2018-08-24 17:28   ` Ben Hutchings
2018-08-28  8:54     ` Fabrizio Castro
2018-09-03 10:10       ` Fabrizio Castro
2018-09-11  7:22         ` Fabrizio Castro
2018-09-12 17:52         ` Ben Hutchings
2018-09-13  8:02           ` Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 02/19] rcar: src: skip disabled-SRC nodes Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 03/19] dmaengine: rcar-dmac: clear pertinence number of channels Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 04/19] dmaengine: rcar-dmac: use list_add() on rcar_dmac_desc_put() Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 05/19] dmaengine: rcar-dmac: use result of updated get_residue in tx_status Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 06/19] dmaengine: rcar-dmac: warn if transfer cannot start as TE = 1 Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 07/19] dmaengine: rcar-dmac: Fixed active descriptor initializing Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 08/19] dmaengine: rcar-dmac: Fix residue reporting for pending descriptors Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 09/19] dmaengine: rcar-dmac: ensure CHCR DE bit is actually 0 after clearing Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 10/19] dmaengine: rcar-dmac: use TCRB instead of TCR for residue Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 11/19] ARM: dts: r8a7745: Add audio clocks Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 12/19] ARM: dts: r8a7745: Add audio DMAC support Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 13/19] ARM: dts: r8a7745: Add sound support Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 14/19] ARM: dts: iwg22d-sodimm: Enable SGTL5000 audio codec Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 15/19] ARM: dts: iwg22d-sodimm: Sound PIO support Fabrizio Castro
2018-08-10  9:52 ` [cip-dev] [PATCH 16/19] ARM: dts: iwg22d-sodimm: Sound DMA support on DTS Fabrizio Castro
2018-08-10  9:53 ` [cip-dev] [PATCH 17/19] ARM: dts: iwg22d-sodimm: Sound DMA support via BUSIF " Fabrizio Castro
2018-08-10  9:53 ` [cip-dev] [PATCH 18/19] ARM: dts: iwg22d-sodimm: Sound DMA support via SRC " Fabrizio Castro
2018-08-10  9:53 ` [cip-dev] [PATCH 19/19] ARM: dts: iwg22d-sodimm: Sound DMA support via DVC " Fabrizio Castro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox