All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaud Pouliquen <arnaud.pouliquen@st.com>
To: "alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	linux-fbdev@vger.kernel.org
Cc: Jean-Francois Moine <moinejf@free.fr>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Russell King - ARM Linux <linux@arm.linux.org.uk>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	David Airlie <airlied@linux.ie>,
	Liam Girdwood <lgirdwood@gmail.com>, Jyri Sarha <jsarha@ti.com>,
	Tomi Valkeinen <tomi.valkeinen@ti.co>,
	Takashi Iwai <tiwai@suse.de>, Mark Brown <broonie@kernel.org>,
	Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Subject: Re: [PATCH v4 0/2] sti: add audio interface to the hdmi driver
Date: Thu, 28 Apr 2016 14:13:03 +0200	[thread overview]
Message-ID: <5721FE4F.4030908@st.com> (raw)
In-Reply-To: <1461252554-16522-1-git-send-email-arnaud.pouliquen@st.com>

Add linux-fbdev diffusion list in loop for patch-set review.

On 04/21/2016 05:29 PM, Arnaud POULIQUEN wrote:
> This patchset implements audio interface in HDMI drm driver. Implementation is based on 
> ASoC generic hdmi codec driver( https://patchwork.kernel.org/patch/8713141/). 
> It also proposes helper functions to compute N and CTS parameters
> according to HDMI 1.4b specification. 
> 
> V4:
>      fixes for "video: hdmi: add helper functions for N and CTS"
>         - typo error and additional comments
>         - cts_1_ratio computation
>         - warning reported by kbuild test robot
>         - add rounded value for 297/1.001 MHz
> 
> V3: 
>      - video: hdmi: add helper function for N and CTS
>      	  Also used on Mediatek platform (https://patchwork.kernel.org/patch/8887341)
> 	  delta vs V2:
>           - typo fixes
>           - if/else code optimisation
>      - drm: sti: Add ASoC generic hdmi codec support.
> 	  - typo fixes
>           - add audio registers in debugfs information
>                 
> V2: RFC
> https://patchwork.kernel.org/patch/8091531/("video: hdmi: add helper function for N and CTS")
> https://patchwork.kernel.org/patch/8091561/("ASoC: hdmi-codec: Add hdmi-codec for external HDMI-encoders")
>      - patch: video: hdmi: add helper function for N and CTS
>          Fixes based on Russel King remarks
>          - Duplicate function to have a separte treatment for coherent and
>            non-coherent clocks
>          - Add ratio field for alternate CTS value
>          - Clock frequency in Hz for TMDS and audio clocks
>          - Add information concerning clocks and CTS calculation. 
> 
> V1: 
> This RFC is the implementation of audio HDMI on sti platform based on generic hdmi-codec driver:
> 	https://patchwork.kernel.org/patch/7215271/ ("ASoC: hdmi-codec: Add hdmi-codec for external HDMI-encoders")
> 	https://patchwork.kernel.org/patch/8062611/ ("video: hdmi: add helper function for N and CTS")
> Arnaud Pouliquen (2):
>   video: hdmi: add helper functions for N and CTS
>   drm: sti: Add ASoC generic hdmi codec support.
> 
>  drivers/gpu/drm/sti/Kconfig    |   1 +
>  drivers/gpu/drm/sti/sti_hdmi.c | 248 ++++++++++++++++++++++++++++++++++++++---
>  drivers/gpu/drm/sti/sti_hdmi.h |  13 +++
>  drivers/video/hdmi.c           | 208 ++++++++++++++++++++++++++++++++++
>  include/linux/hdmi.h           |  24 ++++
>  5 files changed, 477 insertions(+), 17 deletions(-)
> 

WARNING: multiple messages have this Message-ID (diff)
From: Arnaud Pouliquen <arnaud.pouliquen@st.com>
To: "alsa-devel@alsa-project.org" <alsa-devel@alsa-project.org>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	linux-fbdev@vger.kernel.org
Cc: Jean-Francois Moine <moinejf@free.fr>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Russell King - ARM Linux <linux@arm.linux.org.uk>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	David Airlie <airlied@linux.ie>,
	Liam Girdwood <lgirdwood@gmail.com>, Jyri Sarha <jsarha@ti.com>,
	Tomi Valkeinen <tomi.valkeinen@ti.co>,
	Takashi Iwai <tiwai@suse.de>, Mark Brown <broonie@kernel.org>,
	Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Subject: Re: [PATCH v4 0/2] sti: add audio interface to the hdmi driver
Date: Thu, 28 Apr 2016 12:13:03 +0000	[thread overview]
Message-ID: <5721FE4F.4030908@st.com> (raw)
In-Reply-To: <1461252554-16522-1-git-send-email-arnaud.pouliquen@st.com>

Add linux-fbdev diffusion list in loop for patch-set review.

On 04/21/2016 05:29 PM, Arnaud POULIQUEN wrote:
> This patchset implements audio interface in HDMI drm driver. Implementation is based on 
> ASoC generic hdmi codec driver( https://patchwork.kernel.org/patch/8713141/). 
> It also proposes helper functions to compute N and CTS parameters
> according to HDMI 1.4b specification. 
> 
> V4:
>      fixes for "video: hdmi: add helper functions for N and CTS"
>         - typo error and additional comments
>         - cts_1_ratio computation
>         - warning reported by kbuild test robot
>         - add rounded value for 297/1.001 MHz
> 
> V3: 
>      - video: hdmi: add helper function for N and CTS
>      	  Also used on Mediatek platform (https://patchwork.kernel.org/patch/8887341)
> 	  delta vs V2:
>           - typo fixes
>           - if/else code optimisation
>      - drm: sti: Add ASoC generic hdmi codec support.
> 	  - typo fixes
>           - add audio registers in debugfs information
>                 
> V2: RFC
> https://patchwork.kernel.org/patch/8091531/("video: hdmi: add helper function for N and CTS")
> https://patchwork.kernel.org/patch/8091561/("ASoC: hdmi-codec: Add hdmi-codec for external HDMI-encoders")
>      - patch: video: hdmi: add helper function for N and CTS
>          Fixes based on Russel King remarks
>          - Duplicate function to have a separte treatment for coherent and
>            non-coherent clocks
>          - Add ratio field for alternate CTS value
>          - Clock frequency in Hz for TMDS and audio clocks
>          - Add information concerning clocks and CTS calculation. 
> 
> V1: 
> This RFC is the implementation of audio HDMI on sti platform based on generic hdmi-codec driver:
> 	https://patchwork.kernel.org/patch/7215271/ ("ASoC: hdmi-codec: Add hdmi-codec for external HDMI-encoders")
> 	https://patchwork.kernel.org/patch/8062611/ ("video: hdmi: add helper function for N and CTS")
> Arnaud Pouliquen (2):
>   video: hdmi: add helper functions for N and CTS
>   drm: sti: Add ASoC generic hdmi codec support.
> 
>  drivers/gpu/drm/sti/Kconfig    |   1 +
>  drivers/gpu/drm/sti/sti_hdmi.c | 248 ++++++++++++++++++++++++++++++++++++++---
>  drivers/gpu/drm/sti/sti_hdmi.h |  13 +++
>  drivers/video/hdmi.c           | 208 ++++++++++++++++++++++++++++++++++
>  include/linux/hdmi.h           |  24 ++++
>  5 files changed, 477 insertions(+), 17 deletions(-)
> 

  parent reply	other threads:[~2016-04-28 12:13 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-21 15:29 [PATCH v4 0/2] sti: add audio interface to the hdmi driver Arnaud Pouliquen
2016-04-21 15:29 ` [PATCH v4 1/2] video: hdmi: add helper functions for N and CTS Arnaud Pouliquen
2016-04-28 12:13   ` Arnaud Pouliquen
2016-04-28 12:13     ` Arnaud Pouliquen
2016-05-09  8:15     ` Arnaud Pouliquen
2016-05-09  8:15       ` Arnaud Pouliquen
2016-06-06 16:34   ` [v4,1/2] " Doug Anderson
2016-06-07  8:41     ` [v4, 1/2] " Arnaud Pouliquen
2016-06-07 15:27       ` Doug Anderson
2016-04-21 15:29 ` [PATCH v4 2/2] drm: sti: Add ASoC generic hdmi codec support Arnaud Pouliquen
2016-04-28 12:13   ` Arnaud Pouliquen
2016-04-28 12:13     ` Arnaud Pouliquen
2016-04-28 12:13 ` Arnaud Pouliquen [this message]
2016-04-28 12:13   ` [PATCH v4 0/2] sti: add audio interface to the hdmi driver Arnaud Pouliquen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5721FE4F.4030908@st.com \
    --to=arnaud.pouliquen@st.com \
    --cc=airlied@linux.ie \
    --cc=alsa-devel@alsa-project.org \
    --cc=benjamin.gaignard@linaro.org \
    --cc=broonie@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jsarha@ti.com \
    --cc=lars@metafoo.de \
    --cc=lgirdwood@gmail.com \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=moinejf@free.fr \
    --cc=p.zabel@pengutronix.de \
    --cc=plagnioj@jcrosoft.com \
    --cc=tiwai@suse.de \
    --cc=tomi.valkeinen@ti.co \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.