All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean-Francois Moine <moinejf@free.fr>
To: Mark Brown <broonie@kernel.org>,
	Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: Dave Airlie <airlied@gmail.com>,
	Andrew Jackson <Andrew.Jackson@arm.com>,
	Jyri Sarha <jsarha@ti.com>,
	alsa-devel@alsa-project.org, devicetree@vger.kernel.org,
	dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: [PATCH v9 0/4] ASoC: tda998x: add a codec to the HDMI transmitter
Date: Wed, 7 Jan 2015 12:06:26 +0100	[thread overview]
Message-ID: <cover.1420628786.git.moinejf@free.fr> (raw)

Based on 3.19.0-rc3.

v9:
	- back to a TDA998x specific CODEC
	- more comments
	- change magic values to constants
v8:
	- change some comments about the patches
v7:
	- remove the change of the K predivider (Jyri Sarha)
	- add S24_3LE and S32_LE as possible audio formats (Jyri Sarha)
	- don't move the struct priv2 definition and use the
	  slave encoder private data as the device private data
	  (Russell King)
	- remove the useless request_module (Russell King/Mark Brown)
	- don't lock the HDMI module (Russell King)
	- use platform_device_unregister to remove the codec
	  (Russell King)
v6:
	- extend the HDMI CODEC instead of using a specific CODEC
v5:
	- use the TDA998x private data instead of a specific area
	  for the CODEC interface
	- the CODEC is TDA998x specific (Mark Brown)
v4:
	- remove all the TDA998x specific stuff from the CODEC
	- move the EDID scan from the CODEC to the TDA998x
	- move the CODEC to sound/soc (Mark Brown)
	- update the audio_sample_rate from the EDID (Andrew Jackson)
v3: fix bad rate (Andrew Jackson)
v2: check double stream start (Mark Brown)

Jean-Francois Moine (4):
  drm/i2c: tda998x: Add DT support for audio
  drm/i2c: tda998x: Change drvdata for audio extension
  ASoC: tda998x: add a codec to the HDMI transmitter
  drm/i2c: tda998x: set cts_n according to the sample width

 .../devicetree/bindings/drm/i2c/tda998x.txt        |  18 ++
 drivers/gpu/drm/i2c/Kconfig                        |   1 +
 drivers/gpu/drm/i2c/tda998x_drv.c                  | 213 +++++++++++++++++++--
 include/sound/tda998x.h                            |  23 +++
 sound/soc/codecs/Kconfig                           |   4 +
 sound/soc/codecs/Makefile                          |   2 +
 sound/soc/codecs/tda998x.c                         | 175 +++++++++++++++++
 7 files changed, 424 insertions(+), 12 deletions(-)
 create mode 100644 include/sound/tda998x.h
 create mode 100644 sound/soc/codecs/tda998x.c

-- 
2.1.4


WARNING: multiple messages have this Message-ID (diff)
From: Jean-Francois Moine <moinejf-GANU6spQydw@public.gmane.org>
To: Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Russell King - ARM Linux
	<linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>
Cc: Dave Airlie <airlied-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Andrew Jackson <Andrew.Jackson-5wv7dgnIgG8@public.gmane.org>,
	Jyri Sarha <jsarha-l0cyMroinI0@public.gmane.org>,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [PATCH v9 0/4] ASoC: tda998x: add a codec to the HDMI transmitter
Date: Wed, 7 Jan 2015 12:06:26 +0100	[thread overview]
Message-ID: <cover.1420628786.git.moinejf@free.fr> (raw)

Based on 3.19.0-rc3.

v9:
	- back to a TDA998x specific CODEC
	- more comments
	- change magic values to constants
v8:
	- change some comments about the patches
v7:
	- remove the change of the K predivider (Jyri Sarha)
	- add S24_3LE and S32_LE as possible audio formats (Jyri Sarha)
	- don't move the struct priv2 definition and use the
	  slave encoder private data as the device private data
	  (Russell King)
	- remove the useless request_module (Russell King/Mark Brown)
	- don't lock the HDMI module (Russell King)
	- use platform_device_unregister to remove the codec
	  (Russell King)
v6:
	- extend the HDMI CODEC instead of using a specific CODEC
v5:
	- use the TDA998x private data instead of a specific area
	  for the CODEC interface
	- the CODEC is TDA998x specific (Mark Brown)
v4:
	- remove all the TDA998x specific stuff from the CODEC
	- move the EDID scan from the CODEC to the TDA998x
	- move the CODEC to sound/soc (Mark Brown)
	- update the audio_sample_rate from the EDID (Andrew Jackson)
v3: fix bad rate (Andrew Jackson)
v2: check double stream start (Mark Brown)

Jean-Francois Moine (4):
  drm/i2c: tda998x: Add DT support for audio
  drm/i2c: tda998x: Change drvdata for audio extension
  ASoC: tda998x: add a codec to the HDMI transmitter
  drm/i2c: tda998x: set cts_n according to the sample width

 .../devicetree/bindings/drm/i2c/tda998x.txt        |  18 ++
 drivers/gpu/drm/i2c/Kconfig                        |   1 +
 drivers/gpu/drm/i2c/tda998x_drv.c                  | 213 +++++++++++++++++++--
 include/sound/tda998x.h                            |  23 +++
 sound/soc/codecs/Kconfig                           |   4 +
 sound/soc/codecs/Makefile                          |   2 +
 sound/soc/codecs/tda998x.c                         | 175 +++++++++++++++++
 7 files changed, 424 insertions(+), 12 deletions(-)
 create mode 100644 include/sound/tda998x.h
 create mode 100644 sound/soc/codecs/tda998x.c

-- 
2.1.4

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

             reply	other threads:[~2015-01-07 11:52 UTC|newest]

Thread overview: 115+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-07 11:06 Jean-Francois Moine [this message]
2015-01-07 11:06 ` [PATCH v9 0/4] ASoC: tda998x: add a codec to the HDMI transmitter Jean-Francois Moine
2015-01-07  9:10 ` [PATCH v9 1/4] drm/i2c: tda998x: Add DT support for audio Jean-Francois Moine
2015-01-07  9:10   ` Jean-Francois Moine
2015-01-07 14:39   ` Andrew Jackson
2015-01-07 14:39     ` Andrew Jackson
2015-01-07 17:08     ` Jean-Francois Moine
2015-01-07 17:08       ` Jean-Francois Moine
2015-01-07 17:18       ` Andrew Jackson
2015-01-07 17:18         ` Andrew Jackson
2015-01-07 17:33         ` Mark Brown
2015-01-08 14:53   ` Jyri Sarha
2015-01-08 14:53     ` Jyri Sarha
2015-01-08 16:42     ` Jean-Francois Moine
2015-01-08 16:42       ` Jean-Francois Moine
2015-01-08 20:04       ` Mark Brown
2015-01-08 20:04         ` Mark Brown
2015-01-09  9:25         ` Andrew Jackson
2015-01-09  9:25           ` Andrew Jackson
2015-01-09 10:13       ` Jyri Sarha
2015-01-09 10:13         ` Jyri Sarha
2015-01-09 11:30         ` Jean-Francois Moine
2015-01-09 11:30           ` Jean-Francois Moine
2015-01-09 11:45           ` Russell King - ARM Linux
2015-01-09 11:45             ` Russell King - ARM Linux
2015-01-09 12:54             ` Jean-Francois Moine
2015-01-09 12:54               ` Jean-Francois Moine
2015-01-09 13:07               ` Russell King - ARM Linux
2015-01-09 13:07                 ` Russell King - ARM Linux
2015-01-09 13:58                 ` Andrew Jackson
2015-01-09 13:58                   ` Andrew Jackson
2015-01-09 14:57                   ` Russell King - ARM Linux
2015-01-09 17:38                     ` Jean-Francois Moine
2015-01-09 17:38                       ` Jean-Francois Moine
2015-01-09 20:01                       ` Russell King - ARM Linux
2015-01-09 20:01                         ` Russell King - ARM Linux
2015-01-10 15:47                         ` [alsa-devel] " Jean-Francois Moine
2015-01-10 15:47                           ` Jean-Francois Moine
2015-01-12  9:25                         ` Philipp Zabel
2015-01-12  9:25                           ` Philipp Zabel
2015-01-12 12:25                           ` Russell King - ARM Linux
2015-01-12 13:59                             ` Philipp Zabel
2015-01-12 13:59                               ` Philipp Zabel
2015-01-12 14:04                               ` Russell King - ARM Linux
2015-01-12 14:04                                 ` Russell King - ARM Linux
2015-01-12 17:13                                 ` Jean-Francois Moine
2015-01-12 17:13                                   ` Jean-Francois Moine
2015-01-12 17:57                                   ` Russell King - ARM Linux
2015-01-12 17:57                                     ` Russell King - ARM Linux
2015-01-12 19:14                                     ` Jean-Francois Moine
2015-01-12 19:14                                       ` Jean-Francois Moine
2015-01-13 12:21                                     ` Philipp Zabel
2015-01-13 12:21                                       ` Philipp Zabel
2015-01-13 12:27                                       ` Russell King - ARM Linux
2015-01-13 12:27                                         ` Russell King - ARM Linux
2015-01-13 15:54                                         ` Jean-Francois Moine
2015-01-13 15:54                                           ` Jean-Francois Moine
2015-01-13 16:03                                           ` Russell King - ARM Linux
2015-01-13 16:03                                             ` Russell King - ARM Linux
2015-01-13 19:02                                             ` Jean-Francois Moine
2015-01-13 19:02                                               ` Jean-Francois Moine
2015-01-13 19:26                                               ` Russell King - ARM Linux
2015-01-13 19:26                                                 ` Russell King - ARM Linux
2015-01-13 19:41                                                 ` Jyri Sarha
2015-01-13 19:41                                                   ` Jyri Sarha
2015-01-13 19:54                                                   ` Russell King - ARM Linux
2015-01-13 19:54                                                     ` Russell King - ARM Linux
2015-01-14  7:55                                                     ` Jean-Francois Moine
2015-01-14  7:55                                                       ` Jean-Francois Moine
2015-01-14 12:12                                                       ` Russell King - ARM Linux
2015-01-14 12:12                                                         ` Russell King - ARM Linux
2015-01-14 10:46                                                     ` Philipp Zabel
2015-01-14 10:46                                                       ` Philipp Zabel
2015-01-14 12:50                                                       ` Mark Brown
2015-01-14 12:50                                                         ` Mark Brown
2015-01-14 14:23                                                         ` Russell King - ARM Linux
2015-01-14 14:23                                                           ` Russell King - ARM Linux
2015-01-07 10:00 ` [PATCH v9 2/4] drm/i2c: tda998x: Change drvdata for audio extension Jean-Francois Moine
2015-01-07 10:00   ` Jean-Francois Moine
2015-01-07 10:51 ` [PATCH v9 3/4] ASoC: tda998x: add a codec to the HDMI transmitter Jean-Francois Moine
2015-01-07 15:10   ` Andrew Jackson
2015-01-07 15:10     ` Andrew Jackson
2015-01-07 15:41     ` Russell King - ARM Linux
2015-01-07 15:41       ` Russell King - ARM Linux
2015-01-07 18:02       ` Jean-Francois Moine
2015-01-09 10:24         ` Jyri Sarha
2015-01-09 10:24           ` Jyri Sarha
2015-01-09 11:15           ` Jean-Francois Moine
2015-01-09 11:15             ` Jean-Francois Moine
2015-01-09 11:19           ` Russell King - ARM Linux
2015-01-09 11:19             ` Russell King - ARM Linux
2015-01-09 11:45             ` Jean-Francois Moine
2015-01-09 11:45               ` Jean-Francois Moine
2015-01-09 11:48               ` Russell King - ARM Linux
2015-01-09 11:48                 ` Russell King - ARM Linux
2015-01-07 17:34     ` Mark Brown
2015-01-07 17:34       ` Mark Brown
2015-01-08 14:55   ` Jyri Sarha
2015-01-08 14:55     ` Jyri Sarha
2015-01-09 17:39   ` Andrew Jackson
2015-01-09 17:39     ` Andrew Jackson
2015-01-09 17:54     ` Mark Brown
2015-01-09 17:54       ` Mark Brown
2015-01-13  9:24     ` Jean-Francois Moine
2015-01-13  9:24       ` Jean-Francois Moine
2015-01-11 21:03   ` Jyri Sarha
2015-01-11 21:03     ` Jyri Sarha
2015-01-13  7:41     ` Jean-Francois Moine
2015-01-13  7:41       ` Jean-Francois Moine
2015-01-07 11:01 ` [PATCH v9 4/4] drm/i2c: tda998x: set cts_n according to the sample width Jean-Francois Moine
2015-01-08 14:53 ` [PATCH v9 0/4] ASoC: tda998x: add a codec to the HDMI transmitter Jyri Sarha
2015-01-08 14:53   ` Jyri Sarha
2015-01-08 20:05   ` Mark Brown
2015-01-09 10:15     ` Jyri Sarha
2015-01-09 10:15       ` Jyri Sarha

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=cover.1420628786.git.moinejf@free.fr \
    --to=moinejf@free.fr \
    --cc=Andrew.Jackson@arm.com \
    --cc=airlied@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jsarha@ti.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    /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.