All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org,
	Archit Taneja <archit@ti.com>
Cc: Jyri Sarha <jsarha@ti.com>, Tomi Valkeinen <tomi.valkeinen@ti.com>
Subject: [PATCH 00/15] OMAPDSS: HDMI infoframe & cleanup
Date: Tue, 24 Jun 2014 10:03:45 +0000	[thread overview]
Message-ID: <1403604240-16738-1-git-send-email-tomi.valkeinen@ti.com> (raw)

This series makes OMAP HDMI drivers use the common infoframe functionality and
makes the drivers get the infoframe from the upper layer, instead of using
hardcoded infoframes.

This allows us to remove quite a bit of ugly code from the drivers.

The downside is that the infoframe functionality is only there for DRM, not for
FB. So when using omapfb, the HDMI output will always use DVI mode, i.e.
without sound support and without the HDMI features like color ranges.
Considering that the HDMI audio hasn't been working for some time, and the
other features were always hardcoded, this doesn't sound like a big issue.

 Tomi

Tomi Valkeinen (15):
  OMAPDSS: DISPC: fix debugfs reg dump
  OMAPDSS: DISPC: reject interlace for lcd out
  OMAPDSS: DISPC: clean up dispc_mgr_timings_ok
  OMAPDSS: HDMI: fix name conflict
  OMAPDSS: Kconfig: select HDMI
  OMAPDSS: HDMI4: use common AVI infoframe support
  OMAPDSS: HDMI5: use common AVI infoframe support
  OMAPDSS: HDMI: remove custom avi infoframe
  OMAPDSS: add hdmi ops to hdmi_ops and omap_dss_driver
  OMAPDSS: add hdmi ops to hdmi-connector and tpd12s015
  OMAPDSS: HDMI: add infoframe and hdmi_dvi_mode fields
  OMAPDSS: HDMI4: add support to set infoframe & HDMI mode
  OMAPDSS: HDMI5: add support to set infoframe & HDMI mode
  OMAPDSS: HDMI: remove the unused code
  drm/omap: Add infoframe & dvi/hdmi mode support

 drivers/gpu/drm/omapdrm/omap_connector.c           |  12 +
 drivers/gpu/drm/omapdrm/omap_drv.h                 |   1 +
 drivers/gpu/drm/omapdrm/omap_encoder.c             |  27 ++
 .../fbdev/omap2/displays-new/connector-hdmi.c      |  19 ++
 .../fbdev/omap2/displays-new/encoder-tpd12s015.c   |  20 ++
 drivers/video/fbdev/omap2/dss/Kconfig              |   1 +
 drivers/video/fbdev/omap2/dss/dispc.c              |  22 +-
 drivers/video/fbdev/omap2/dss/hdmi.h               | 107 +------
 drivers/video/fbdev/omap2/dss/hdmi4.c              |  47 ++-
 drivers/video/fbdev/omap2/dss/hdmi4_core.c         | 164 ++---------
 drivers/video/fbdev/omap2/dss/hdmi4_core.h         |   1 +
 drivers/video/fbdev/omap2/dss/hdmi5.c              |  47 ++-
 drivers/video/fbdev/omap2/dss/hdmi5_core.c         | 124 ++++----
 drivers/video/fbdev/omap2/dss/hdmi_common.c        | 316 ---------------------
 include/video/omapdss.h                            |   9 +
 15 files changed, 231 insertions(+), 686 deletions(-)

-- 
1.9.1


WARNING: multiple messages have this Message-ID (diff)
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: linux-fbdev@vger.kernel.org, linux-omap@vger.kernel.org,
	Archit Taneja <archit@ti.com>
Cc: Jyri Sarha <jsarha@ti.com>, Tomi Valkeinen <tomi.valkeinen@ti.com>
Subject: [PATCH 00/15] OMAPDSS: HDMI infoframe & cleanup
Date: Tue, 24 Jun 2014 13:03:45 +0300	[thread overview]
Message-ID: <1403604240-16738-1-git-send-email-tomi.valkeinen@ti.com> (raw)

This series makes OMAP HDMI drivers use the common infoframe functionality and
makes the drivers get the infoframe from the upper layer, instead of using
hardcoded infoframes.

This allows us to remove quite a bit of ugly code from the drivers.

The downside is that the infoframe functionality is only there for DRM, not for
FB. So when using omapfb, the HDMI output will always use DVI mode, i.e.
without sound support and without the HDMI features like color ranges.
Considering that the HDMI audio hasn't been working for some time, and the
other features were always hardcoded, this doesn't sound like a big issue.

 Tomi

Tomi Valkeinen (15):
  OMAPDSS: DISPC: fix debugfs reg dump
  OMAPDSS: DISPC: reject interlace for lcd out
  OMAPDSS: DISPC: clean up dispc_mgr_timings_ok
  OMAPDSS: HDMI: fix name conflict
  OMAPDSS: Kconfig: select HDMI
  OMAPDSS: HDMI4: use common AVI infoframe support
  OMAPDSS: HDMI5: use common AVI infoframe support
  OMAPDSS: HDMI: remove custom avi infoframe
  OMAPDSS: add hdmi ops to hdmi_ops and omap_dss_driver
  OMAPDSS: add hdmi ops to hdmi-connector and tpd12s015
  OMAPDSS: HDMI: add infoframe and hdmi_dvi_mode fields
  OMAPDSS: HDMI4: add support to set infoframe & HDMI mode
  OMAPDSS: HDMI5: add support to set infoframe & HDMI mode
  OMAPDSS: HDMI: remove the unused code
  drm/omap: Add infoframe & dvi/hdmi mode support

 drivers/gpu/drm/omapdrm/omap_connector.c           |  12 +
 drivers/gpu/drm/omapdrm/omap_drv.h                 |   1 +
 drivers/gpu/drm/omapdrm/omap_encoder.c             |  27 ++
 .../fbdev/omap2/displays-new/connector-hdmi.c      |  19 ++
 .../fbdev/omap2/displays-new/encoder-tpd12s015.c   |  20 ++
 drivers/video/fbdev/omap2/dss/Kconfig              |   1 +
 drivers/video/fbdev/omap2/dss/dispc.c              |  22 +-
 drivers/video/fbdev/omap2/dss/hdmi.h               | 107 +------
 drivers/video/fbdev/omap2/dss/hdmi4.c              |  47 ++-
 drivers/video/fbdev/omap2/dss/hdmi4_core.c         | 164 ++---------
 drivers/video/fbdev/omap2/dss/hdmi4_core.h         |   1 +
 drivers/video/fbdev/omap2/dss/hdmi5.c              |  47 ++-
 drivers/video/fbdev/omap2/dss/hdmi5_core.c         | 124 ++++----
 drivers/video/fbdev/omap2/dss/hdmi_common.c        | 316 ---------------------
 include/video/omapdss.h                            |   9 +
 15 files changed, 231 insertions(+), 686 deletions(-)

-- 
1.9.1


             reply	other threads:[~2014-06-24 10:03 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-24 10:03 Tomi Valkeinen [this message]
2014-06-24 10:03 ` [PATCH 00/15] OMAPDSS: HDMI infoframe & cleanup Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 01/15] OMAPDSS: DISPC: fix debugfs reg dump Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 02/15] OMAPDSS: DISPC: reject interlace for lcd out Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 03/15] OMAPDSS: DISPC: clean up dispc_mgr_timings_ok Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 04/15] OMAPDSS: HDMI: fix name conflict Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 05/15] OMAPDSS: Kconfig: select HDMI Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 06/15] OMAPDSS: HDMI4: use common AVI infoframe support Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 07/15] OMAPDSS: HDMI5: " Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 08/15] OMAPDSS: HDMI: remove custom avi infoframe Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 09/15] OMAPDSS: add hdmi ops to hdmi_ops and omap_dss_driver Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 10/15] OMAPDSS: add hdmi ops to hdmi-connector and tpd12s015 Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 11/15] OMAPDSS: HDMI: add infoframe and hdmi_dvi_mode fields Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 12/15] OMAPDSS: HDMI4: add support to set infoframe & HDMI mode Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 13/15] OMAPDSS: HDMI5: " Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-24 10:03 ` [PATCH 14/15] OMAPDSS: HDMI: remove the unused code Tomi Valkeinen
2014-06-24 10:03   ` Tomi Valkeinen
2014-06-26 19:05   ` Jyri Sarha
2014-06-26 19:05     ` Jyri Sarha
2014-06-27 10:16     ` Tomi Valkeinen
2014-06-27 10:16       ` Tomi Valkeinen
2014-06-27 10:20       ` Tomi Valkeinen
2014-06-27 10:20         ` Tomi Valkeinen
2014-06-24 10:04 ` [PATCH 15/15] drm/omap: Add infoframe & dvi/hdmi mode support Tomi Valkeinen
2014-06-24 10:04   ` Tomi Valkeinen
2014-06-25 11:03   ` Archit Taneja
2014-06-25 11:15     ` Archit Taneja
2014-06-25 11:29     ` Tomi Valkeinen
2014-06-25 11:29       ` Tomi Valkeinen
2014-07-03  5:55   ` Tomi Valkeinen
2014-07-03  5:55     ` 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=1403604240-16738-1-git-send-email-tomi.valkeinen@ti.com \
    --to=tomi.valkeinen@ti.com \
    --cc=archit@ti.com \
    --cc=jsarha@ti.com \
    --cc=linux-fbdev@vger.kernel.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.