All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2 00/31] drm/omap: patches for v4.6 part 1
@ 2016-02-26  9:35 Tomi Valkeinen
  2016-02-26  9:35 ` [PATCHv2 01/31] drm/omap: HDMI: change enable/disable to avoid sync-losts Tomi Valkeinen
                   ` (31 more replies)
  0 siblings, 32 replies; 40+ messages in thread
From: Tomi Valkeinen @ 2016-02-26  9:35 UTC (permalink / raw)
  To: dri-devel, Laurent Pinchart; +Cc: Tomi Valkeinen

Hi,

Here's a collection of patches for omapdrm. Some of them have been sent for
review at some point, most of them haven't.

There are two bigger features in the series: dmabuf import support and HDMI
interlace output support. Otherwise they are smaller improvements, fixes and
cleanups.

Changes to v1 of the series:

- Dropped the following patches, which need a bit more work:
  * HACK: drm/omap: fix memory barrier bug in DMM driver
  * drm/omap: partial workaround for DRA7 DMM errata i878

- Cosmetic fixes addressing the review comments

 Tomi

Jyri Sarha (1):
  drm/omap: drm_atomic_get_plane_state() may return ERR_PTR

Laurent Pinchart (3):
  drm/omap: gem: Clean up GEM objects memory flags
  drm/omap: gem: Refactor GEM object allocation
  drm/omap: gem: Implement dma_buf import

Manisha Agrawal (3):
  drm/omap: tpd12s015: remove platform data support
  drm/omap: tpd12s015: gpio descriptor API
  drm/omap: tpd12s015: CT_CP_HPD as optional gpio

Rob Clark (1):
  drm/omap: EBUSY status handling in omap_gem_fault()

Tomi Valkeinen (23):
  drm/omap: HDMI: change enable/disable to avoid sync-losts
  HACK: drm/omap: always use blocking DMM fill
  drm/omap: add dmm_read() and dmm_write() wrappers
  drm/omap: add define for DISPC_IRQ_WBUNCOMPLETEERROR
  drm/omap: use dma_mapping_error in omap_gem_attach_pages
  drm/omap: use dma_mapping_error in omap_gem_dma_sync
  drm/omap: print an error if display enable fails
  drm/omap: remove support for ext mem & sync
  drm/omap: increase vblank wait timeout
  drm/omap: DISPC: support double-pixel mode
  drm/omap: support double-pixel
  drm/omap: HDMI: support double-pixel pixel clock
  drm/omap: HDMI: Fix HSW value
  drm/omap: HDMI: fix WP timings for ilace
  drm/omap: DISPC: Fix field order for HDMI
  drm/omap: HDMI5: Fix FC HSW value
  drm/omap: HDMI5: clean up timings copy
  drm/omap: HDMI5: Add interlace support
  drm/omap: HDMI5: allow interlace
  drm/omap: verify that display x-res is divisible by 8
  drm/omap: verify that fb plane pitches are the same
  drm/omap: fix crtc->plane property delegation
  drm/omap: check if rotation is supported before commit

 .../gpu/drm/omapdrm/displays/encoder-tpd12s015.c   | 118 ++------
 drivers/gpu/drm/omapdrm/dss/dispc.c                |  20 ++
 drivers/gpu/drm/omapdrm/dss/dpi.c                  |   3 +
 drivers/gpu/drm/omapdrm/dss/hdmi4.c                |  23 +-
 drivers/gpu/drm/omapdrm/dss/hdmi5.c                |  27 +-
 drivers/gpu/drm/omapdrm/dss/hdmi5_core.c           |  42 ++-
 drivers/gpu/drm/omapdrm/dss/hdmi_wp.c              |  32 +-
 drivers/gpu/drm/omapdrm/omap_connector.c           |   4 +
 drivers/gpu/drm/omapdrm/omap_crtc.c                |  69 +++--
 drivers/gpu/drm/omapdrm/omap_dmm_tiler.c           |  54 +++-
 drivers/gpu/drm/omapdrm/omap_drv.h                 |   3 +
 drivers/gpu/drm/omapdrm/omap_encoder.c             |   6 +-
 drivers/gpu/drm/omapdrm/omap_fb.c                  |  16 +
 drivers/gpu/drm/omapdrm/omap_gem.c                 | 328 ++++++++++++---------
 drivers/gpu/drm/omapdrm/omap_gem_dmabuf.c          |  53 +++-
 drivers/gpu/drm/omapdrm/omap_plane.c               |   6 +
 include/video/omap-panel-data.h                    |  15 -
 include/video/omapdss.h                            |   3 +
 18 files changed, 502 insertions(+), 320 deletions(-)

-- 
2.5.0

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

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

end of thread, other threads:[~2016-03-01  8:32 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-26  9:35 [PATCHv2 00/31] drm/omap: patches for v4.6 part 1 Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 01/31] drm/omap: HDMI: change enable/disable to avoid sync-losts Tomi Valkeinen
2016-02-29 21:48   ` Laurent Pinchart
2016-02-26  9:35 ` [PATCHv2 02/31] HACK: drm/omap: always use blocking DMM fill Tomi Valkeinen
2016-02-29 21:47   ` Laurent Pinchart
2016-02-26  9:35 ` [PATCHv2 03/31] drm/omap: add dmm_read() and dmm_write() wrappers Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 04/31] drm/omap: drm_atomic_get_plane_state() may return ERR_PTR Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 05/31] drm/omap: tpd12s015: remove platform data support Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 06/31] drm/omap: tpd12s015: gpio descriptor API Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 07/31] drm/omap: tpd12s015: CT_CP_HPD as optional gpio Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 08/31] drm/omap: add define for DISPC_IRQ_WBUNCOMPLETEERROR Tomi Valkeinen
2016-02-26  9:35 ` [PATCHv2 09/31] drm/omap: use dma_mapping_error in omap_gem_attach_pages Tomi Valkeinen
2016-02-29 21:48   ` Laurent Pinchart
2016-02-26  9:35 ` [PATCHv2 10/31] drm/omap: use dma_mapping_error in omap_gem_dma_sync Tomi Valkeinen
2016-02-29 21:51   ` Laurent Pinchart
2016-02-26  9:35 ` [PATCHv2 11/31] drm/omap: print an error if display enable fails Tomi Valkeinen
2016-02-29 21:52   ` Laurent Pinchart
2016-02-26  9:36 ` [PATCHv2 12/31] drm/omap: gem: Clean up GEM objects memory flags Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 13/31] drm/omap: gem: Refactor GEM object allocation Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 14/31] drm/omap: gem: Implement dma_buf import Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 15/31] drm/omap: remove support for ext mem & sync Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 16/31] drm/omap: increase vblank wait timeout Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 17/31] drm/omap: DISPC: support double-pixel mode Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 18/31] drm/omap: support double-pixel Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 19/31] drm/omap: HDMI: support double-pixel pixel clock Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 20/31] drm/omap: HDMI: Fix HSW value Tomi Valkeinen
2016-02-29 21:55   ` Laurent Pinchart
2016-03-01  8:32     ` Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 21/31] drm/omap: HDMI: fix WP timings for ilace Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 22/31] drm/omap: DISPC: Fix field order for HDMI Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 23/31] drm/omap: HDMI5: Fix FC HSW value Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 24/31] drm/omap: HDMI5: clean up timings copy Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 25/31] drm/omap: HDMI5: Add interlace support Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 26/31] drm/omap: HDMI5: allow interlace Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 27/31] drm/omap: verify that display x-res is divisible by 8 Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 28/31] drm/omap: verify that fb plane pitches are the same Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 29/31] drm/omap: EBUSY status handling in omap_gem_fault() Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 30/31] drm/omap: fix crtc->plane property delegation Tomi Valkeinen
2016-02-26  9:36 ` [PATCHv2 31/31] drm/omap: check if rotation is supported before commit Tomi Valkeinen
2016-02-29 21:56 ` [PATCHv2 00/31] drm/omap: patches for v4.6 part 1 Laurent Pinchart

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.