From: Jyri Sarha <jsarha@ti.com>
To: dri-devel@lists.freedesktop.org, airlied@linux.ie,
linux-omap@vger.kernel.org, devicetree@vger.kernel.org,
bcousson@baylibre.com, tony@atomide.com
Cc: tomi.valkeinen@ti.com, detheridge@ti.com, moinejf@free.fr,
linux@arm.linux.org.uk, Jyri Sarha <jsarha@ti.com>
Subject: [PATCH RFC 0/6] Use DRM component API in tilcdc to connect to tda998x
Date: Thu, 26 Feb 2015 16:55:29 +0200 [thread overview]
Message-ID: <cover.1424961754.git.jsarha@ti.com> (raw)
Remove tilcdc slave support and connect to tda998x trough its
component DRM API. For dtb backward compatibility the code creates at
boot time a DT overlay based on the earlier binding. The overlay
conforms to the new graph based binding.
The first patch is just a bugfix and can be applied or dropped
independenty.
Jyri Sarha (6):
drm/tilcdc: Fix module unloading
drm/tilcdc: Remove tilcdc slave support for tda998x driver
drm/tilcdc: Add support for external compontised DRM encoder
drm/tilcdc: Add DRM_TILCDC_INIT for "ti,tilcdc,slave" binding support
drm/tilcdc: Force building of DRM_TILCDC_INIT
ARM: dts: am335x-boneblack: Use new binding for HDMI
.../devicetree/bindings/drm/tilcdc/slave.txt | 18 -
.../devicetree/bindings/drm/tilcdc/tilcdc.txt | 27 ++
arch/arm/boot/dts/am335x-boneblack.dts | 20 +-
drivers/gpu/drm/Makefile | 1 +
drivers/gpu/drm/tilcdc/Kconfig | 6 +
drivers/gpu/drm/tilcdc/Makefile | 4 +-
drivers/gpu/drm/tilcdc/tilcdc_boot_init.c | 270 ++++++++++++++
drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 36 +-
drivers/gpu/drm/tilcdc/tilcdc_drv.c | 69 ++--
drivers/gpu/drm/tilcdc/tilcdc_drv.h | 3 +-
drivers/gpu/drm/tilcdc/tilcdc_external.c | 105 ++++++
drivers/gpu/drm/tilcdc/tilcdc_external.h | 24 ++
drivers/gpu/drm/tilcdc/tilcdc_slave.c | 411 ---------------------
drivers/gpu/drm/tilcdc/tilcdc_slave.h | 26 --
drivers/gpu/drm/tilcdc/tilcdc_slave_convert.dts | 70 ++++
15 files changed, 601 insertions(+), 489 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/drm/tilcdc/slave.txt
create mode 100644 drivers/gpu/drm/tilcdc/tilcdc_boot_init.c
create mode 100644 drivers/gpu/drm/tilcdc/tilcdc_external.c
create mode 100644 drivers/gpu/drm/tilcdc/tilcdc_external.h
delete mode 100644 drivers/gpu/drm/tilcdc/tilcdc_slave.c
delete mode 100644 drivers/gpu/drm/tilcdc/tilcdc_slave.h
create mode 100644 drivers/gpu/drm/tilcdc/tilcdc_slave_convert.dts
--
1.9.1
next reply other threads:[~2015-02-26 14:55 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-26 14:55 Jyri Sarha [this message]
2015-02-26 14:55 ` [PATCH RFC 1/6] drm/tilcdc: Fix module unloading Jyri Sarha
2015-03-02 13:10 ` Tomi Valkeinen
2015-02-26 14:55 ` [PATCH RFC 2/6] drm/tilcdc: Remove tilcdc slave support for tda998x driver Jyri Sarha
2015-02-26 14:55 ` [PATCH RFC 3/6] drm/tilcdc: Add support for external compontised DRM encoder Jyri Sarha
2015-03-02 12:44 ` Tomi Valkeinen
2015-03-02 16:01 ` Russell King - ARM Linux
2015-03-06 8:33 ` Jyri Sarha
2015-03-06 9:58 ` Russell King - ARM Linux
2015-03-06 10:21 ` Jyri Sarha
2015-03-06 10:35 ` Russell King - ARM Linux
2015-02-26 14:55 ` [PATCH RFC 4/6] drm/tilcdc: Add DRM_TILCDC_INIT for "ti,tilcdc,slave" binding support Jyri Sarha
[not found] ` <6cf3243f87975ef349dead7af136870fa406ad6b.1424961754.git.jsarha-l0cyMroinI0@public.gmane.org>
2015-03-02 13:04 ` Tomi Valkeinen
[not found] ` <cover.1424961754.git.jsarha-l0cyMroinI0@public.gmane.org>
2015-02-26 14:55 ` [PATCH RFC 5/6] drm/tilcdc: Force building of DRM_TILCDC_INIT Jyri Sarha
2015-03-02 12:59 ` Tomi Valkeinen
2015-02-26 14:55 ` [PATCH RFC 6/6] ARM: dts: am335x-boneblack: Use new binding for HDMI Jyri Sarha
2015-03-02 12:28 ` Tomi Valkeinen
2015-03-02 16:06 ` Russell King - ARM Linux
2015-03-02 17:08 ` Tomi Valkeinen
2015-03-02 17:42 ` Russell King - ARM Linux
2015-03-03 8:35 ` Tomi Valkeinen
2015-03-02 11:34 ` [PATCH RFC 0/6] Use DRM component API in tilcdc to connect to tda998x Tomi Valkeinen
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.1424961754.git.jsarha@ti.com \
--to=jsarha@ti.com \
--cc=airlied@linux.ie \
--cc=bcousson@baylibre.com \
--cc=detheridge@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=moinejf@free.fr \
--cc=tomi.valkeinen@ti.com \
--cc=tony@atomide.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).