All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6 0/3] ASoC: sun4i-i2s: Updates to the driver
@ 2019-08-26 18:07 ` codekipper
  0 siblings, 0 replies; 35+ messages in thread
From: codekipper-Re5JQEeQqe8AvxtiuMwx3w @ 2019-08-26 18:07 UTC (permalink / raw)
  To: mripard-DgEjT+Ai2ygdnm+yROfE0A, wens-jdAy2FN1RRM,
	linux-sunxi-/JYPxA39Uh5TLH3MbocFFw
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	lgirdwood-Re5JQEeQqe8AvxtiuMwx3w, broonie-DgEjT+Ai2ygdnm+yROfE0A,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw, be17068-p0aYb1w59bq9tCD/VL7h6Q,
	Marcus Cooper

From: Marcus Cooper <codekipper-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Hi All,

here is a patch series to add some improvements to the sun4i-i2s driver
which is enough to get HDMI audio working on the A83T, A64, H3 and
H5 platforms.

I've dropped a lot of the functionality that was presented earlier in favour
of getting initial HDMI audio delivered. H6 and multi-channel HDMI will
follow shortly.

My test branch for this can be found at
https://github.com/codekipper/linux-sunxi/commits/upstream-i2s , I've been
using a Pine64 to test with; validating the new SoC block with HDMI audio
and ensuring that I've not broken the old block by making sure that the audio
codec still works.

BR,
CK

---
v6 changes compared to v5 are:
- removed patches for multi-channel and H6 HDMI audio.
- removed patch for 20, 24 and 32 bit (will push support for just 20 and 24bit)
- ditched tdm patches as support has already been added.
- added fix for A83T reg map.

v5 changes compared to v4 are:
- removed delivered patches.
- Added more details to commit messages.
- replaced some reg fields with function calls.
- Added DSP_A and DSP_B support for H3 and later SoCs.
- Added support for the Allwinner H6.

v4 changes compared to v3 are:
- Moved patches around so that the more controversial of patches are
  at the top of the stack.
- Added more details to commit messages.
- Fixed 20bit audio PCM format to use 4 bytes.
- Reduced number of flags used to indicate a new SoC.

v3 changes compared to v2 are:
 - added back slave mode changes
 - added back the use of tdm properties
 - changes to regmap and caching
 - removed loopback functionality
 - fixes to the channel offset mask

v2 changes compared to v1 are:
 - removed slave mode changes which didn't set mclk and bclk div.
 - removed use of tdm and now use a dedicated property.
 - fix commit message to better explain reason for sign extending
 - add divider calculations for newer SoCs.
 - add support for multi-lane i2s data output.
 - add support for 20, 24 and 32 bit samples.
 - add loopback property so blocks can be tested without a codec.

---

Marcus Cooper (3):
  ASoC: sun4i-i2s: incorrect regmap for A83T
  ASoC: sun4i-i2s: Add regmap field to sign extend sample
  ASoC: sun4i-i2s: Adjust LRCLK width

 sound/soc/sunxi/sun4i-i2s.c | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)

-- 
2.23.0

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

end of thread, other threads:[~2019-08-27 10:56 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-26 18:07 [PATCH v6 0/3] ASoC: sun4i-i2s: Updates to the driver codekipper-Re5JQEeQqe8AvxtiuMwx3w
2019-08-26 18:07 ` codekipper
2019-08-26 18:07 ` codekipper
     [not found] ` <20190826180734.15801-1-codekipper-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2019-08-26 18:07   ` [PATCH v6 1/3] ASoC: sun4i-i2s: incorrect regmap for A83T codekipper-Re5JQEeQqe8AvxtiuMwx3w
2019-08-26 18:07     ` codekipper
2019-08-26 18:07     ` codekipper
2019-08-27  4:13     ` [linux-sunxi] " Chen-Yu Tsai
2019-08-27  4:13       ` Chen-Yu Tsai
     [not found]       ` <CAGb2v651jVp+J2eyWh7vw-yHmFTVy4eaMjHV0FvOF17C5_Hswg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-08-27  5:54         ` Code Kipper
2019-08-27  5:54           ` [linux-sunxi] " Code Kipper
2019-08-27  5:54           ` Code Kipper
     [not found]           ` <CAEKpxBmCg4AkqKM-O3C76gto+mPWyEdDbviAmRJ8PxLOOMTJ7w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-08-27  8:01             ` Chen-Yu Tsai
2019-08-27  8:01               ` [linux-sunxi] " Chen-Yu Tsai
2019-08-27  8:01               ` Chen-Yu Tsai
     [not found]               ` <CAGb2v64VNZ0oyD_760uNccwJb7MKngSooWB72M+d1DfT4-djog-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-08-27  8:35                 ` Code Kipper
2019-08-27  8:35                   ` [linux-sunxi] " Code Kipper
2019-08-27  8:35                   ` Code Kipper
2019-08-27 10:28                   ` Chen-Yu Tsai
2019-08-27 10:28                     ` Chen-Yu Tsai
2019-08-26 18:07   ` [PATCH v6 2/3] ASoC: sun4i-i2s: Add regmap field to sign extend sample codekipper-Re5JQEeQqe8AvxtiuMwx3w
2019-08-26 18:07     ` codekipper
2019-08-26 18:07     ` codekipper
2019-08-27  9:34     ` Maxime Ripard
2019-08-27  9:34       ` Maxime Ripard
2019-08-27 10:55       ` Code Kipper
2019-08-27 10:55         ` Code Kipper
2019-08-27 10:55         ` Code Kipper
2019-08-26 18:07   ` [PATCH v6 3/3] ASoC: sun4i-i2s: Adjust LRCLK width codekipper-Re5JQEeQqe8AvxtiuMwx3w
2019-08-26 18:07     ` codekipper
2019-08-26 18:07     ` codekipper
2019-08-27  7:01     ` Maxime Ripard
2019-08-27  7:01       ` Maxime Ripard
2019-08-27  8:36       ` Code Kipper
2019-08-27  8:36         ` Code Kipper
2019-08-27  8:36         ` Code Kipper

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.