From: Jyri Sarha <jsarha@ti.com>
To: linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org,
alsa-devel@alsa-project.org, dri-devel@lists.freedesktop.org,
devicetree@vger.kernel.org, bcousson@baylibre.com
Cc: broonie@kernel.org, Jyri Sarha <jsarha@ti.com>
Subject: [PATCH RFC v2 REPOST 0/8] Beaglebone-Black HDMI audio
Date: Fri, 20 Dec 2013 12:36:56 +0200 [thread overview]
Message-ID: <cover.1387535299.git.jsarha@ti.com> (raw)
In-Reply-To: <cover.1384862950.git.jsarha@ti.com>
Changes since the first RFC version of the patches:
- Drop out already applied:
ASoC: hdmi-codec: Add SNDRV_PCM_FMTBIT_32_LE playback format
- Change sound node's compatible property
form: "ti,am33xx-beaglebone-black" to "ti,am33xx-beaglebone-black-audio"
- Some minor style issue fixes from TI internal review
The patches have been rebased on top of:
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound topic/davinci
The associated dts change can be found here:
http://www.spinics.net/lists/linux-omap/msg101072.html
Best regards,
Jyri
Jyri Sarha (8):
clk: add gpio controlled clock
ASoC: davinci-evm: Add named clock reference to DT bindings
ASoC: davinci-evm: HDMI audio support for TDA998x trough McASP I2S
bus
ASoC: hdmi-codec: Add devicetree binding with documentation
ASoC: davinci: HDMI audio build for AM33XX and TDA998x
drm/tilcdc: Add I2C HDMI audio config for tda998x
ARM: OMAP2+: omap2plus_defconfig: Enable tilcdc and TDA998X HDMI
support
ARM: OMAP2+: omap2plus_defconfig: Enable BeagleBone Black HDMI audio
support
.../devicetree/bindings/clock/gpio-clock.txt | 21 ++
.../bindings/sound/davinci-evm-audio.txt | 13 +-
Documentation/devicetree/bindings/sound/hdmi.txt | 17 ++
arch/arm/configs/omap2plus_defconfig | 5 +
drivers/clk/Makefile | 1 +
drivers/clk/clk-gpio.c | 210 ++++++++++++++++++
drivers/gpu/drm/tilcdc/tilcdc_slave.c | 24 ++-
include/linux/clk-provider.h | 25 +++
sound/soc/codecs/hdmi.c | 10 +
sound/soc/davinci/Kconfig | 12 ++
sound/soc/davinci/Makefile | 1 +
sound/soc/davinci/davinci-evm.c | 227 +++++++++++++++++++-
12 files changed, 559 insertions(+), 7 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/gpio-clock.txt
create mode 100644 Documentation/devicetree/bindings/sound/hdmi.txt
create mode 100644 drivers/clk/clk-gpio.c
--
1.7.9.5
WARNING: multiple messages have this Message-ID (diff)
From: jsarha@ti.com (Jyri Sarha)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC v2 REPOST 0/8] Beaglebone-Black HDMI audio
Date: Fri, 20 Dec 2013 12:36:56 +0200 [thread overview]
Message-ID: <cover.1387535299.git.jsarha@ti.com> (raw)
In-Reply-To: <cover.1384862950.git.jsarha@ti.com>
Changes since the first RFC version of the patches:
- Drop out already applied:
ASoC: hdmi-codec: Add SNDRV_PCM_FMTBIT_32_LE playback format
- Change sound node's compatible property
form: "ti,am33xx-beaglebone-black" to "ti,am33xx-beaglebone-black-audio"
- Some minor style issue fixes from TI internal review
The patches have been rebased on top of:
git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound topic/davinci
The associated dts change can be found here:
http://www.spinics.net/lists/linux-omap/msg101072.html
Best regards,
Jyri
Jyri Sarha (8):
clk: add gpio controlled clock
ASoC: davinci-evm: Add named clock reference to DT bindings
ASoC: davinci-evm: HDMI audio support for TDA998x trough McASP I2S
bus
ASoC: hdmi-codec: Add devicetree binding with documentation
ASoC: davinci: HDMI audio build for AM33XX and TDA998x
drm/tilcdc: Add I2C HDMI audio config for tda998x
ARM: OMAP2+: omap2plus_defconfig: Enable tilcdc and TDA998X HDMI
support
ARM: OMAP2+: omap2plus_defconfig: Enable BeagleBone Black HDMI audio
support
.../devicetree/bindings/clock/gpio-clock.txt | 21 ++
.../bindings/sound/davinci-evm-audio.txt | 13 +-
Documentation/devicetree/bindings/sound/hdmi.txt | 17 ++
arch/arm/configs/omap2plus_defconfig | 5 +
drivers/clk/Makefile | 1 +
drivers/clk/clk-gpio.c | 210 ++++++++++++++++++
drivers/gpu/drm/tilcdc/tilcdc_slave.c | 24 ++-
include/linux/clk-provider.h | 25 +++
sound/soc/codecs/hdmi.c | 10 +
sound/soc/davinci/Kconfig | 12 ++
sound/soc/davinci/Makefile | 1 +
sound/soc/davinci/davinci-evm.c | 227 +++++++++++++++++++-
12 files changed, 559 insertions(+), 7 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/gpio-clock.txt
create mode 100644 Documentation/devicetree/bindings/sound/hdmi.txt
create mode 100644 drivers/clk/clk-gpio.c
--
1.7.9.5
next prev parent reply other threads:[~2013-12-20 10:37 UTC|newest]
Thread overview: 110+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-19 12:12 [PATCH RFC 0/9] Beaglebone-Black HDMI audio Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 12:12 ` [PATCH RFC 1/9] clk: add gpio controlled clock Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 12:12 ` [PATCH RFC 2/9] ASoC: davinci-evm: Add named clock reference to DT bindings Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 18:18 ` Mark Brown
2013-11-19 18:18 ` Mark Brown
2013-11-19 12:12 ` [PATCH RFC 3/9] ASoC: davinci-evm: HDMI audio support for TDA998x trough McASP I2S bus Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 15:07 ` Thomas Petazzoni
2013-11-19 15:07 ` Thomas Petazzoni
2013-11-19 12:12 ` [PATCH RFC 4/9] ASoC: hdmi-codec: Add devicetree binding with documentation Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 17:50 ` Mark Brown
2013-11-19 17:50 ` Mark Brown
2013-11-20 9:23 ` Jean-Francois Moine
2013-11-20 9:23 ` Jean-Francois Moine
2013-11-20 10:09 ` Mark Brown
2013-11-20 10:09 ` Mark Brown
2013-11-20 12:34 ` Jean-Francois Moine
2013-11-20 12:34 ` Jean-Francois Moine
2013-11-20 13:33 ` Mark Brown
2013-11-20 13:33 ` Mark Brown
2013-11-19 12:12 ` [PATCH RFC 5/9] ASoC: hdmi-codec: Add SNDRV_PCM_FMTBIT_32_LE playback format Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 18:21 ` Mark Brown
2013-11-19 18:21 ` Mark Brown
2013-11-19 12:12 ` [PATCH RFC 6/9] ASoC: davinci: HDMI audio build for AM33XX and TDA998x Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 12:12 ` [PATCH RFC 7/9] drm/tilcdc: Add I2C HDMI audio config for tda998x Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 12:12 ` [PATCH RFC 8/9] ARM: OMAP2+: omap2plus_defconfig: Enable tilcdc and TDA998X HDMI support Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 12:12 ` [PATCH RFC 9/9] ARM: OMAP2+: omap2plus_defconfig: Enable BeagleBone Black HDMI audio support Jyri Sarha
2013-11-19 12:12 ` Jyri Sarha
2013-11-19 12:21 ` [PATCH RFC] DTS Changes for Beaglebone-Black HDMI audio Jyri Sarha
2013-11-19 12:21 ` Jyri Sarha
2013-11-19 12:21 ` [PATCH RFC] ARM/dts: am335x-boneblack: Add HDMI audio support Jyri Sarha
2013-11-19 12:21 ` Jyri Sarha
2013-11-19 13:02 ` Benoit Cousson
2013-11-19 13:02 ` Benoit Cousson
2013-11-19 13:29 ` Jyri Sarha
2013-11-19 13:29 ` Jyri Sarha
2013-12-08 12:16 ` [RFC v2 0/8] Beaglebone-Black HDMI audio Jyri Sarha
2013-12-08 12:16 ` [RFC v2 1/8] clk: add gpio controlled clock Jyri Sarha
2013-12-08 12:16 ` [RFC v2 2/8] ASoC: davinci-evm: Add named clock reference to DT bindings Jyri Sarha
2013-12-08 12:16 ` [RFC v2 3/8] ASoC: davinci-evm: HDMI audio support for TDA998x trough McASP I2S bus Jyri Sarha
2013-12-08 12:16 ` [RFC v2 4/8] ASoC: hdmi-codec: Add devicetree binding with documentation Jyri Sarha
2013-12-08 12:16 ` [RFC v2 5/8] ASoC: davinci: HDMI audio build for AM33XX and TDA998x Jyri Sarha
2013-12-08 12:16 ` [RFC v2 6/8] drm/tilcdc: Add I2C HDMI audio config for tda998x Jyri Sarha
2013-12-08 12:16 ` [RFC v2 7/8] ARM: OMAP2+: omap2plus_defconfig: Enable tilcdc and TDA998X HDMI support Jyri Sarha
2013-12-08 12:16 ` [RFC v2 8/8] ARM: OMAP2+: omap2plus_defconfig: Enable BeagleBone Black HDMI audio support Jyri Sarha
2013-12-08 12:20 ` [RFC v2] Beaglebone-Black HDMI audio Jyri Sarha
2013-12-08 12:20 ` [RFC v2] ARM/dts: am335x-boneblack: Add HDMI audio support Jyri Sarha
2013-12-10 18:52 ` Jyri Sarha
[not found] ` <cover.1386504183.git.jsarha-l0cyMroinI0@public.gmane.org>
2013-12-10 18:52 ` Jyri Sarha
[not found] ` <cover.1384862950.git.jsarha-l0cyMroinI0@public.gmane.org>
2013-12-10 18:52 ` [RFC v2] Beaglebone-Black HDMI audio Jyri Sarha
2013-12-20 10:36 ` Jyri Sarha [this message]
2013-12-20 10:36 ` [PATCH RFC v2 REPOST 0/8] " Jyri Sarha
2013-12-20 10:37 ` [PATCH RFC v2 REPOST 1/8] clk: add gpio controlled clock Jyri Sarha
2013-12-20 10:37 ` Jyri Sarha
2013-12-20 10:38 ` [PATCH RFC v2 REPOST 2/8] ASoC: davinci-evm: Add named clock reference to DT bindings Jyri Sarha
2013-12-20 10:38 ` Jyri Sarha
2013-12-31 13:16 ` Mark Brown
2013-12-31 13:16 ` Mark Brown
2014-01-15 11:12 ` Jyri Sarha
2014-01-15 11:12 ` Jyri Sarha
2013-12-20 10:39 ` [PATCH RFC v2 REPOST 3/8] ASoC: davinci-evm: HDMI audio support for TDA998x trough McASP I2S bus Jyri Sarha
2013-12-20 10:39 ` Jyri Sarha
2013-12-31 13:25 ` Mark Brown
2013-12-31 13:25 ` Mark Brown
2014-01-15 11:27 ` Jyri Sarha
2014-01-15 11:27 ` Jyri Sarha
2014-01-15 13:48 ` Anssi Hannula
2014-01-15 13:48 ` [alsa-devel] " Anssi Hannula
2014-01-15 16:28 ` Jyri Sarha
2014-01-15 16:28 ` [alsa-devel] " Jyri Sarha
2014-01-15 15:51 ` Jean-Francois Moine
2014-01-15 15:51 ` Jean-Francois Moine
2014-01-22 9:20 ` Jyri Sarha
2014-01-22 9:20 ` [alsa-devel] " Jyri Sarha
2014-01-22 10:19 ` Jean-Francois Moine
2014-01-22 10:19 ` Jean-Francois Moine
2014-01-22 10:46 ` Jean-Francois Moine
2014-01-22 10:46 ` Jean-Francois Moine
2014-01-24 12:57 ` Jyri Sarha
2014-01-24 12:57 ` [alsa-devel] " Jyri Sarha
2014-01-24 16:54 ` Jean-Francois Moine
2014-01-24 16:54 ` Jean-Francois Moine
2014-01-21 19:15 ` Mark Brown
2014-01-21 19:15 ` Mark Brown
2014-01-24 13:01 ` Jyri Sarha
2014-01-24 13:01 ` Jyri Sarha
2013-12-20 10:40 ` [PATCH RFC v2 REPOST 4/8] ASoC: hdmi-codec: Add devicetree binding with documentation Jyri Sarha
2013-12-20 10:40 ` Jyri Sarha
2013-12-31 13:26 ` Mark Brown
2013-12-31 13:26 ` Mark Brown
2013-12-20 10:40 ` [PATCH RFC v2 REPOST 5/8] ASoC: davinci: HDMI audio build for AM33XX and TDA998x Jyri Sarha
2013-12-20 10:40 ` Jyri Sarha
2013-12-20 10:41 ` [PATCH RFC v2 REPOST 6/8] drm/tilcdc: Add I2C HDMI audio config for tda998x Jyri Sarha
2013-12-20 10:41 ` Jyri Sarha
2013-12-20 10:42 ` [PATCH RFC v2 REPOST 7/8] ARM: OMAP2+: omap2plus_defconfig: Enable tilcdc and TDA998X HDMI support Jyri Sarha
2013-12-20 10:42 ` Jyri Sarha
2013-12-20 10:43 ` [PATCH RFC v2 REPOST 8/8] ARM: OMAP2+: omap2plus_defconfig: Enable BeagleBone Black HDMI audio support Jyri Sarha
2013-12-20 10:43 ` Jyri Sarha
2013-12-20 11:30 ` [alsa-devel] [PATCH RFC v2 REPOST 0/8] Beaglebone-Black HDMI audio Mark Brown
2013-12-20 11:30 ` Mark Brown
2013-12-20 11:51 ` Jyri Sarha
2013-12-20 11:51 ` [alsa-devel] " 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.1387535299.git.jsarha@ti.com \
--to=jsarha@ti.com \
--cc=alsa-devel@alsa-project.org \
--cc=bcousson@baylibre.com \
--cc=broonie@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
/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.