All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH xf86-video-ati 00/21] Port outstanding changes frm
@ 2018-07-11 17:27 Michel Dänzer
       [not found] ` <20180711172806.22849-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
  0 siblings, 1 reply; 23+ messages in thread
From: Michel Dänzer @ 2018-07-11 17:27 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

From: Michel Dänzer <michel.daenzer@amd.com>

These are ports of the outstanding applicable changes from the amdgpu
driver.

Emil Velikov (1):
  Do not export the DriverRec RADEON

Jim Qu (1):
  Wait for pending scanout update before calling
    drmmode_crtc_scanout_free

Keith Packard (3):
  modesetting: Record non-desktop kernel property at PreInit time
  modesetting: Create CONNECTOR_ID properties for outputs [v2]
  Add RandR leases support

Michel Dänzer (16):
  Ignore RADEON_DRM_QUEUE_ERROR (0) in radeon_drm_abort_entry
  Track DRM event queue sequence number in scanout_update_pending
  Abort scanout_update_pending event when possible
  Update RandR CRTC state if set_mode_major fails in set_desired_modes
  Simplify drmmode_crtc_scanout_update
  Don't call scanout_flip/update with a legacy RandR scanout buffer
  Simplify drmmode_handle_transform
  Set drmmode_crtc->scanout_id = 0 when TearFree is disabled
  Refactor drmmode_output_set_tear_free helper
  Wait for pending flips in drmmode_output_set_tear_free
  Replace 'foo == NULL' with '!foo'
  Call drmmode_do_crtc_dpms from drmmode_crtc_dpms as well
  Use drmmode_crtc_dpms in drmmode_set_desired_modes
  Check dimensions passed to drmmode_xf86crtc_resize
  Remove #if 0'd code
  Call drmmode_crtc_gamma_do_set from drmmode_setup_colormap

 configure.ac                 |   4 +-
 src/ati.c                    |   4 +-
 src/drmmode_display.c        | 344 ++++++++++++++++++++++++++++-------
 src/drmmode_display.h        |   8 +-
 src/evergreen_exa.c          |  10 +-
 src/r600_exa.c               |  10 +-
 src/radeon.h                 |   2 +-
 src/radeon_dri2.c            |  12 +-
 src/radeon_drm_queue.c       |   3 +
 src/radeon_exa.c             |   2 +-
 src/radeon_exa_funcs.c       |   8 +-
 src/radeon_exa_render.c      |   6 +-
 src/radeon_glamor.c          |   2 +-
 src/radeon_glamor_wrappers.c |   4 +-
 src/radeon_kms.c             |  45 ++---
 src/radeon_probe.c           |   2 +-
 src/radeon_textured_video.c  |  10 +-
 src/radeon_video.c           |   6 +-
 18 files changed, 352 insertions(+), 130 deletions(-)

-- 
2.18.0

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

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

end of thread, other threads:[~2018-07-12  4:48 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-11 17:27 [PATCH xf86-video-ati 00/21] Port outstanding changes frm Michel Dänzer
     [not found] ` <20180711172806.22849-1-michel-otUistvHUpPR7s880joybQ@public.gmane.org>
2018-07-11 17:27   ` [PATCH xf86-video-ati 01/21] Wait for pending scanout update before calling drmmode_crtc_scanout_free Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 02/21] Do not export the DriverRec RADEON Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 03/21] Ignore RADEON_DRM_QUEUE_ERROR (0) in radeon_drm_abort_entry Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 04/21] Track DRM event queue sequence number in scanout_update_pending Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 05/21] Abort scanout_update_pending event when possible Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 06/21] Update RandR CRTC state if set_mode_major fails in set_desired_modes Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 07/21] Simplify drmmode_crtc_scanout_update Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 08/21] Don't call scanout_flip/update with a legacy RandR scanout buffer Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 09/21] Simplify drmmode_handle_transform Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 10/21] Set drmmode_crtc->scanout_id = 0 when TearFree is disabled Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 11/21] Refactor drmmode_output_set_tear_free helper Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 12/21] Wait for pending flips in drmmode_output_set_tear_free Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 13/21] Replace 'foo == NULL' with '!foo' Michel Dänzer
2018-07-11 17:27   ` [PATCH xf86-video-ati 14/21] Call drmmode_do_crtc_dpms from drmmode_crtc_dpms as well Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 15/21] Use drmmode_crtc_dpms in drmmode_set_desired_modes Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 16/21] Check dimensions passed to drmmode_xf86crtc_resize Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 17/21] Remove #if 0'd code Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 18/21] Call drmmode_crtc_gamma_do_set from drmmode_setup_colormap Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 19/21] modesetting: Record non-desktop kernel property at PreInit time Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 20/21] modesetting: Create CONNECTOR_ID properties for outputs [v2] Michel Dänzer
2018-07-11 17:28   ` [PATCH xf86-video-ati 21/21] Add RandR leases support Michel Dänzer
2018-07-12  4:48   ` [PATCH xf86-video-ati 00/21] Port outstanding changes frm Alex Deucher

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.