All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/36] drm/omap: miscallaneous improvements
@ 2016-11-30 11:17 Tomi Valkeinen
  2016-11-30 11:17 ` [PATCH 01/36] drm/omap: work-around for errata i886 Tomi Valkeinen
                   ` (35 more replies)
  0 siblings, 36 replies; 51+ messages in thread
From: Tomi Valkeinen @ 2016-11-30 11:17 UTC (permalink / raw)
  To: dri-devel, Laurent Pinchart; +Cc: Tomi Valkeinen

Hi,

Here's a series containing miscallaneous improvements for omapdrm from TI's
kernel.

The main things here are probably IRQ based HDMI hotplug and the refactoring of
dispc to expose dispc_ops. The dispc_ops are needed for DSS6 work, which I have
not yet sent.

 Tomi

Hemant Hariyani (1):
  drm/omap: Add support for render nodes

Peter Ujfalusi (11):
  drm/omap: Init fbdev emulation only when we have displays
  drm/omap: dss: Functions to check components in the display/output
    list
  drm/omap: dss: Support for detecting display stack readiness
  drm/omap: Use omapdss_stack_is_ready() to check that the display stack
    is up
  drm/omap: display: Add displays in sorted order to the panel_list
  drm/omap: Create fbdev emulation only for the first DRM connector
  drm/omap: poll only connectors where the connect/disconnect can be
    checked
  drm/omap: Support for HDMI hot plug detection
  drm/omap: displays: connector-hdmi: Support for hot plug detection
  drm/omap: displays: encoder-tpd12s015: Support for hot plug detection
  drm/omap: displays: panel-dpi: Support for handling backlight devices

Tomi Valkeinen (24):
  drm/omap: work-around for errata i886
  drm/omap: subclass drm_crtc_state
  drm/omap: add crtc background property
  drm/omap: remove divider constraint from hsdiv
  drm/omap: decrease min width & height
  drm/omap: improve DPI clock selection on DRA7xx
  drm/omap: fix HDMI sync polarities
  drm/omap: add omapdss_of_get_endpoint() helper
  drm/omap: add omapdss-base.ko
  drm/omap: move dss_initialized to omapdss-base
  drm/omap: output: use dev_err instead of DSSERR
  drm/omap: display: don't use dsi_get_pixel_size()
  drm/omap: move display, dss-of, output to omapdss-base
  drm/omap: move dispc related dss-feat funcs to dispc
  drm/omap: add dispc_ops
  drm/omap: fill dispc_ops
  drm/omap: use dispc_ops
  drm/omap: remove all EXPORT_SYMBOLs from dispc.c
  drm/omap: remove unused dispc_wb_enable & dispc_wb_is_enabled
  drm/omap: fix replication logic
  drm/omap: fix plane update warning when crtc is disabled
  drm/omap: fix max fb width
  drm/omap: dispc: improve debug print of display flags
  drm/omap: fix display SYNC/DE flags

 drivers/gpu/drm/omapdrm/displays/connector-hdmi.c  |  63 +++++++
 .../gpu/drm/omapdrm/displays/encoder-tpd12s015.c   |  55 ++++++
 drivers/gpu/drm/omapdrm/displays/panel-dpi.c       |  37 +++-
 drivers/gpu/drm/omapdrm/dss/Kconfig                |   4 +
 drivers/gpu/drm/omapdrm/dss/Makefile               |   8 +-
 drivers/gpu/drm/omapdrm/dss/base.c                 | 140 +++++++++++++++
 drivers/gpu/drm/omapdrm/dss/dispc.c                | 177 +++++++++++--------
 drivers/gpu/drm/omapdrm/dss/display.c              |  36 +++-
 drivers/gpu/drm/omapdrm/dss/dpi.c                  |  55 ++++--
 drivers/gpu/drm/omapdrm/dss/dsi.c                  |   2 +-
 drivers/gpu/drm/omapdrm/dss/dss-of.c               |  64 ++++++-
 drivers/gpu/drm/omapdrm/dss/dss.c                  |  13 +-
 drivers/gpu/drm/omapdrm/dss/dss.h                  |  17 +-
 drivers/gpu/drm/omapdrm/dss/dss_features.c         |   3 -
 drivers/gpu/drm/omapdrm/dss/dss_features.h         |   4 +
 drivers/gpu/drm/omapdrm/dss/hdmi_wp.c              |  12 +-
 drivers/gpu/drm/omapdrm/dss/omapdss.h              | 113 +++++++++----
 drivers/gpu/drm/omapdrm/dss/output.c               |  27 ++-
 drivers/gpu/drm/omapdrm/dss/pll.c                  |   4 +-
 drivers/gpu/drm/omapdrm/omap_connector.c           |  40 ++++-
 drivers/gpu/drm/omapdrm/omap_crtc.c                | 187 +++++++++++++++++----
 drivers/gpu/drm/omapdrm/omap_drv.c                 |  59 ++++---
 drivers/gpu/drm/omapdrm/omap_drv.h                 |   7 +-
 drivers/gpu/drm/omapdrm/omap_fbdev.c               |   7 +-
 drivers/gpu/drm/omapdrm/omap_irq.c                 |  33 ++--
 drivers/gpu/drm/omapdrm/omap_plane.c               |  19 ++-
 26 files changed, 928 insertions(+), 258 deletions(-)
 create mode 100644 drivers/gpu/drm/omapdrm/dss/base.c

-- 
2.7.4

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2016-12-09 14:08 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-30 11:17 [PATCH 00/36] drm/omap: miscallaneous improvements Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 01/36] drm/omap: work-around for errata i886 Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 02/36] drm/omap: subclass drm_crtc_state Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 03/36] drm/omap: add crtc background property Tomi Valkeinen
2016-11-30 11:25   ` Laurent Pinchart
2016-11-30 12:51     ` Tomi Valkeinen
2016-11-30 13:34       ` Laurent Pinchart
2016-11-30 13:53         ` Ville Syrjälä
2016-11-30 13:56           ` Laurent Pinchart
2016-11-30 14:40             ` Ville Syrjälä
2016-11-30 14:46               ` Laurent Pinchart
2016-11-30 14:50                 ` Ville Syrjälä
2016-11-30 13:32   ` Daniel Vetter
2016-12-09 11:03     ` Tomi Valkeinen
2016-12-09 13:41       ` Daniel Vetter
2016-11-30 11:17 ` [PATCH 04/36] drm/omap: remove divider constraint from hsdiv Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 05/36] drm/omap: decrease min width & height Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 06/36] drm/omap: improve DPI clock selection on DRA7xx Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 07/36] drm/omap: Init fbdev emulation only when we have displays Tomi Valkeinen
2016-11-30 13:46   ` Daniel Vetter
2016-12-09 11:13     ` Tomi Valkeinen
2016-12-09 14:09       ` Daniel Vetter
2016-11-30 11:17 ` [PATCH 08/36] drm/omap: Add support for render nodes Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 09/36] drm/omap: fix HDMI sync polarities Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 10/36] drm/omap: add omapdss_of_get_endpoint() helper Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 11/36] drm/omap: add omapdss-base.ko Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 12/36] drm/omap: move dss_initialized to omapdss-base Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 13/36] drm/omap: output: use dev_err instead of DSSERR Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 14/36] drm/omap: display: don't use dsi_get_pixel_size() Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 15/36] drm/omap: move display, dss-of, output to omapdss-base Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 16/36] drm/omap: move dispc related dss-feat funcs to dispc Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 17/36] drm/omap: add dispc_ops Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 18/36] drm/omap: fill dispc_ops Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 19/36] drm/omap: use dispc_ops Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 20/36] drm/omap: remove all EXPORT_SYMBOLs from dispc.c Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 21/36] drm/omap: remove unused dispc_wb_enable & dispc_wb_is_enabled Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 22/36] drm/omap: fix replication logic Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 23/36] drm/omap: dss: Functions to check components in the display/output list Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 24/36] drm/omap: dss: Support for detecting display stack readiness Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 25/36] drm/omap: Use omapdss_stack_is_ready() to check that the display stack is up Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 26/36] drm/omap: fix plane update warning when crtc is disabled Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 27/36] drm/omap: display: Add displays in sorted order to the panel_list Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 28/36] drm/omap: Create fbdev emulation only for the first DRM connector Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 29/36] drm/omap: fix max fb width Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 30/36] drm/omap: poll only connectors where the connect/disconnect can be checked Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 31/36] drm/omap: Support for HDMI hot plug detection Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 32/36] drm/omap: displays: connector-hdmi: Support for " Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 33/36] drm/omap: displays: encoder-tpd12s015: " Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 34/36] drm/omap: displays: panel-dpi: Support for handling backlight devices Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 35/36] drm/omap: dispc: improve debug print of display flags Tomi Valkeinen
2016-11-30 11:17 ` [PATCH 36/36] drm/omap: fix display SYNC/DE flags Tomi Valkeinen

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.