linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Marek Szyprowski <m.szyprowski@samsung.com>
To: Hans Verkuil <hverkuil@xs4all.nl>, linux-media@vger.kernel.org
Cc: "Russell King" <linux@armlinux.org.uk>,
	linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-arm-kernel@lists.infradead.org,
	"Javier Martinez Canillas" <javier@osg.samsung.com>,
	"Benjamin Gaignard" <benjamin.gaignard@linaro.org>,
	"Krzysztof Kozlowski" <krzk@kernel.org>,
	대인기 <inki.dae@samsung.com>,
	"Sylwester Nawrocki" <s.nawrocki@samsung.com>
Subject: Re: [PATCH 0/4] video/exynos/cec: add HDMI state notifier & use in s5p-cec
Date: Thu, 29 Dec 2016 14:53:57 +0100	[thread overview]
Message-ID: <0b71ac14-a97a-1eba-26dc-6cf85bab7aa2@samsung.com> (raw)
In-Reply-To: <20161213150813.37966-1-hverkuil@xs4all.nl>

Hi Hans,


On 2016-12-13 16:08, Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil@cisco.com>
>
> This patch series adds the HDMI notifier code, based on Russell's code:
>
> https://patchwork.kernel.org/patch/9277043/
>
> It adds support for it to the exynos_hdmi drm driver, adds support for
> it to the CEC framework and finally adds support to the s5p-cec driver,
> which now can be moved out of staging.
>
> Tested with my Odroid U3 exynos4 devboard.
>
> Comments are welcome. I'd like to get this in for the 4.11 kernel as
> this is a missing piece needed to integrate CEC drivers.
>
> Benjamin, can you look at doing the same notifier integration for your
> st-cec driver as is done for s5p-cec? It would be good to be able to
> move st-cec out of staging at the same time.

Thanks for working on this and taking it from by TODO list! :)

Please add:
Tested-by: Marek Szyprowski <m.szyprowski@samsung.com>

If you plan to send an updated version, please send it also to
linux-samsung-soc@vger.kernel.org, Krzysztof and Inki to get their acks
for the bindings, dtsi and drm parts.

This HDMI notifier framework will probably be also useful for integrating
HDMI audio support for Samsung ASoC driver.

> Regards,
>
> 	Hans
>
> Hans Verkuil (4):
>    video: add HDMI state notifier support
>    exynos_hdmi: add HDMI notifier support
>    cec: integrate HDMI notifier support
>    s5p-cec: add hdmi-notifier support, move out of staging
>
>   .../devicetree/bindings/media/s5p-cec.txt          |   2 +
>   arch/arm/boot/dts/exynos4.dtsi                     |   1 +
>   drivers/gpu/drm/exynos/Kconfig                     |   1 +
>   drivers/gpu/drm/exynos/exynos_hdmi.c               |  24 +++-
>   drivers/media/cec/cec-core.c                       |  50 ++++++++
>   drivers/media/platform/Kconfig                     |  18 +++
>   drivers/media/platform/Makefile                    |   1 +
>   .../media => media/platform}/s5p-cec/Makefile      |   0
>   .../platform}/s5p-cec/exynos_hdmi_cec.h            |   0
>   .../platform}/s5p-cec/exynos_hdmi_cecctrl.c        |   0
>   .../media => media/platform}/s5p-cec/regs-cec.h    |   0
>   .../media => media/platform}/s5p-cec/s5p_cec.c     |  35 +++++-
>   .../media => media/platform}/s5p-cec/s5p_cec.h     |   3 +
>   drivers/staging/media/Kconfig                      |   2 -
>   drivers/staging/media/Makefile                     |   1 -
>   drivers/staging/media/s5p-cec/Kconfig              |   9 --
>   drivers/staging/media/s5p-cec/TODO                 |   7 --
>   drivers/video/Kconfig                              |   3 +
>   drivers/video/Makefile                             |   1 +
>   drivers/video/hdmi-notifier.c                      | 134 +++++++++++++++++++++
>   include/linux/hdmi-notifier.h                      | 109 +++++++++++++++++
>   include/media/cec.h                                |  15 +++
>   22 files changed, 389 insertions(+), 27 deletions(-)
>   rename drivers/{staging/media => media/platform}/s5p-cec/Makefile (100%)
>   rename drivers/{staging/media => media/platform}/s5p-cec/exynos_hdmi_cec.h (100%)
>   rename drivers/{staging/media => media/platform}/s5p-cec/exynos_hdmi_cecctrl.c (100%)
>   rename drivers/{staging/media => media/platform}/s5p-cec/regs-cec.h (100%)
>   rename drivers/{staging/media => media/platform}/s5p-cec/s5p_cec.c (89%)
>   rename drivers/{staging/media => media/platform}/s5p-cec/s5p_cec.h (97%)
>   delete mode 100644 drivers/staging/media/s5p-cec/Kconfig
>   delete mode 100644 drivers/staging/media/s5p-cec/TODO
>   create mode 100644 drivers/video/hdmi-notifier.c
>   create mode 100644 include/linux/hdmi-notifier.h
>

Best regards
-- 
Marek Szyprowski, PhD
Samsung R&D Institute Poland


      parent reply	other threads:[~2016-12-29 13:54 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20161213150827epcas1p3155035a3c8affb78fb7a3c5b4b60007b@epcas1p3.samsung.com>
2016-12-13 15:08 ` [PATCH 0/4] video/exynos/cec: add HDMI state notifier & use in s5p-cec Hans Verkuil
2016-12-13 15:08   ` [PATCH 1/4] video: add HDMI state notifier support Hans Verkuil
2017-01-13 15:36     ` Philipp Zabel
2016-12-13 15:08   ` [PATCH 2/4] exynos_hdmi: add HDMI " Hans Verkuil
2016-12-13 15:08   ` [PATCH 3/4] cec: integrate " Hans Verkuil
2016-12-13 15:08   ` [PATCH 4/4] s5p-cec: add hdmi-notifier support, move out of staging Hans Verkuil
2016-12-29 13:53   ` Marek Szyprowski [this message]

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=0b71ac14-a97a-1eba-26dc-6cf85bab7aa2@samsung.com \
    --to=m.szyprowski@samsung.com \
    --cc=benjamin.gaignard@linaro.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=hverkuil@xs4all.nl \
    --cc=inki.dae@samsung.com \
    --cc=javier@osg.samsung.com \
    --cc=krzk@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=s.nawrocki@samsung.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).