All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] mali-dp: fixes for drm-next
@ 2017-11-24 16:13 Liviu Dudau
  0 siblings, 0 replies; 3+ messages in thread
From: Liviu Dudau @ 2017-11-24 16:13 UTC (permalink / raw)
  To: Dave Airlie; +Cc: MaliDP Maintainers, DRI devel

Hi Dave,

This is the queue of patches I have for mali-dp tree. They have
been in linux-next for a few weeks without issues.

Please pull.

Many thanks,
Liviu


The following changes since commit c209101fc1c91a318422733a3721ff6a9ff7899f:

  Merge tag 'drm-misc-fixes-2017-11-20' of git://anongit.freedesktop.org/drm/drm-misc into drm-next (2017-11-24 11:33:29 +1000)

are available in the Git repository at:

  git://linux-arm.org/linux-ld.git for-upstream/mali-dp

for you to fetch changes up to 54243016ae35a0912a680f884835237fd6176820:

  drm: mali-dp: Disable planes when their CRTC gets disabled. (2017-11-24 15:43:52 +0000)

----------------------------------------------------------------
Cihangir Akturk (1):
      drm: mali-dp: switch to drm_*_get(), drm_*_put() helpers

Liviu Dudau (2):
      drm: mali-dp: Separate static internal data into a read-only structure.
      drm: mali-dp: Disable planes when their CRTC gets disabled.

Srishti Sharma (1):
      drm/arm: Replace instances of drm_dev_unref with drm_dev_put.

 drivers/gpu/drm/arm/malidp_crtc.c   | 16 +++++----
 drivers/gpu/drm/arm/malidp_drv.c    | 34 +++++++++----------
 drivers/gpu/drm/arm/malidp_hw.c     | 46 ++++++++++++++------------
 drivers/gpu/drm/arm/malidp_hw.h     | 65 ++++++++++++++++++++++---------------
 drivers/gpu/drm/arm/malidp_planes.c | 21 ++++++------
 5 files changed, 99 insertions(+), 83 deletions(-)


-- 
====================
| I would like to |
| fix the world,  |
| but they're not |
| giving me the   |
 \ source code!  /
  ---------------
    ¯\_(ツ)_/¯
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [GIT PULL] mali-dp fixes for drm-next
@ 2018-07-23 14:53 Liviu Dudau
  0 siblings, 0 replies; 3+ messages in thread
From: Liviu Dudau @ 2018-07-23 14:53 UTC (permalink / raw)
  To: Dave Airlie; +Cc: MaliDP Maintainers, DRI devel

Hi Dave,

I have a couple of small patches for malidp to be applied in drm-next.
They have arisen from the decision to switch the writeback connectors to
always connected.

Best regards,
Liviu


The following changes since commit 500775074f88d9cf5416bed2ca19592812d62c41:

  Merge branch 'drm-next-4.19' of git://people.freedesktop.org/~agd5f/linux into drm-next (2018-07-20 14:54:31 +1000)

are available in the Git repository at:

  git://linux-arm.org/linux-ld.git for-upstream/malidp-fixes

for you to fetch changes up to 2e012e76ad59edb4a5a175c0957a44337dc39d87:

  drm: mali-dp: Set encoder possible_clones (2018-07-23 15:42:17 +0100)

----------------------------------------------------------------
Alexandru Gheorghe (2):
      drm: mali-dp: Report writeback connector as connected
      drm: mali-dp: Set encoder possible_clones

 drivers/gpu/drm/arm/malidp_drv.c | 10 ++++++++++
 drivers/gpu/drm/arm/malidp_mw.c  |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
-- 
====================
| I would like to |
| fix the world,  |
| but they're not |
| giving me the   |
 \ source code!  /
  ---------------
    ¯\_(ツ)_/¯
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [GIT PULL] mali-dp: fixes for drm-next
@ 2018-03-16 14:55 Liviu Dudau
  0 siblings, 0 replies; 3+ messages in thread
From: Liviu Dudau @ 2018-03-16 14:55 UTC (permalink / raw)
  To: Dave Airlie; +Cc: MaliDP Maintainers, DRI devel

Hi Dave,

I have accumulated some patches as we went through some internal testing
for mali-dp and I was waiting for the YUV2RGB patches to land in your
tree, so I would like to get them into drm-next at your earliest
convenient time.

Please note that after you pull Dan Carpenter's patch f2f2c85c6620
("drm: mali-dp: Uninitialized variable in malidp_se_check_scaling()")

you will get a conflict with Ville's commit 81af63a4af82 ("drm: Don't pass
clip to drm_atomic_helper_check_plane_state()") in drm-misc-next. The way it was
fixed in linux-next was:

diff --cc drivers/gpu/drm/arm/malidp_planes.c
index ee32361c87ac,b2d11df6b5e1..000000000000
--- a/drivers/gpu/drm/arm/malidp_planes.c
+++ b/drivers/gpu/drm/arm/malidp_planes.c
@@@ -147,7 -147,13 +146,9 @@@ static int malidp_se_check_scaling(stru
  	if (!crtc_state)
  		return -EINVAL;
  
 -	if (crtc_state->enable)
 -		drm_mode_get_hv_timing(&crtc_state->mode,
 -				       &clip.x2, &clip.y2);
 -
+ 	mc = to_malidp_crtc_state(crtc_state);
+ 
 -	ret = drm_atomic_helper_check_plane_state(state, crtc_state, &clip,
 +	ret = drm_atomic_helper_check_plane_state(state, crtc_state,
  						  0, INT_MAX, true, true);
  	if (ret)
  		return ret;

Please pull.

Best regards,
Liviu


The following changes since commit 963976cfe9c54d4d9e725e61c90c47a4af6b5ea2:

  Merge tag 'drm-intel-next-2018-03-08' of git://anongit.freedesktop.org/drm/drm-intel into drm-next (2018-03-14 14:53:01 +1000)

are available in the Git repository at:

  git://linux-arm.org/linux-ld.git for-upstream/mali-dp

for you to fetch changes up to 6e810eb508f4b937bc2a718bd4e5cd74cca55500:

  drm: mali-dp: Add YUV->RGB conversion support for video layers (2018-03-14 11:41:01 +0000)

----------------------------------------------------------------
Ayan Halder (2):
      drm: mali-dp: Fix bug on scaling with rotation
      drm/arm/malidp: Disable pixel alpha blending for colors that do not have alpha

Dan Carpenter (1):
      drm: mali-dp: Uninitialized variable in malidp_se_check_scaling()

Laurent Pinchart (2):
      drm: arm: malidp: Don't destroy planes manually in error handlers
      drm: arm: malidp: Use drm_atomic_helper_shutdown() to disable planes on removal

Liviu Dudau (5):
      drm/mali-dp: Rotated planes need a larger pitch size.
      drm/mali-dp: Align pitch size to be multiple of bus burst read size.
      drm/mali-dp: Don't enable scaling engine for planes that only rotate.
      drm/mali-dp: Fix malidp_atomic_commit_hw_done() for event sending.
      drm: mali-dp: Turn off CRTC vblank when removing module.

Mihail Atanassov (1):
      drm: mali-dp: Add YUV->RGB conversion support for video layers

 drivers/gpu/drm/arm/malidp_crtc.c   |  20 ++---
 drivers/gpu/drm/arm/malidp_drv.c    |  51 ++++++++-----
 drivers/gpu/drm/arm/malidp_drv.h    |   2 +-
 drivers/gpu/drm/arm/malidp_hw.c     |  26 ++++---
 drivers/gpu/drm/arm/malidp_hw.h     |  15 +++-
 drivers/gpu/drm/arm/malidp_planes.c | 141 +++++++++++++++++++++++++++++-------
 drivers/gpu/drm/arm/malidp_regs.h   |  11 +--
 7 files changed, 189 insertions(+), 77 deletions(-)

-- 
====================
| I would like to |
| fix the world,  |
| but they're not |
| giving me the   |
 \ source code!  /
  ---------------
    ¯\_(ツ)_/¯
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2018-07-23 14:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-24 16:13 [GIT PULL] mali-dp: fixes for drm-next Liviu Dudau
2018-03-16 14:55 Liviu Dudau
2018-07-23 14:53 [GIT PULL] mali-dp " Liviu Dudau

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.