mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 51c3b916a4
			
		
	
	
		51c3b916a4
		
	
	
	
	
		
			
			UAPI Changes:
 
 Cross-subsystem Changes:
 
 Core Changes:
   - %p4cc printk format modifier
   - atomic: introduce drm_crtc_commit_wait, rework atomic plane state
     helpers to take the drm_commit_state structure
   - dma-buf: heaps rework to return a struct dma_buf
   - simple-kms: Add plate state helpers
   - ttm: debugfs support, removal of sysfs
 
 Driver Changes:
   - Convert drivers to shadow plane helpers
   - arc: Move to drm/tiny
   - ast: cursor plane reworks
   - gma500: Remove TTM and medfield support
   - mxsfb: imx8mm support
   - panfrost: MMU IRQ handling rework
   - qxl: rework to better handle resources deallocation, locking
   - sun4i: Add alpha properties for UI and VI layers
   - vc4: RPi4 CEC support
   - vmwgfx: doc cleanup
 -----BEGIN PGP SIGNATURE-----
 
 iHUEABYIAB0WIQRcEzekXsqa64kGDp7j7w1vZxhRxQUCYD9fUAAKCRDj7w1vZxhR
 xcRLAQDdWKgUNeHnkKCUNh3ewPGabxvc6KQtPqAxcFv0I3ZmWgEAlfTS0pRLdyzQ
 ITRBL0T0S7cIyqnDULZkwfqB6Q8D0ws=
 =hPCS
 -----END PGP SIGNATURE-----
Merge tag 'drm-misc-next-2021-03-03' of git://anongit.freedesktop.org/drm/drm-misc into drm-next
drm-misc-next for 5.13:
UAPI Changes:
Cross-subsystem Changes:
Core Changes:
  - %p4cc printk format modifier
  - atomic: introduce drm_crtc_commit_wait, rework atomic plane state
    helpers to take the drm_commit_state structure
  - dma-buf: heaps rework to return a struct dma_buf
  - simple-kms: Add plate state helpers
  - ttm: debugfs support, removal of sysfs
Driver Changes:
  - Convert drivers to shadow plane helpers
  - arc: Move to drm/tiny
  - ast: cursor plane reworks
  - gma500: Remove TTM and medfield support
  - mxsfb: imx8mm support
  - panfrost: MMU IRQ handling rework
  - qxl: rework to better handle resources deallocation, locking
  - sun4i: Add alpha properties for UI and VI layers
  - vc4: RPi4 CEC support
  - vmwgfx: doc cleanup
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20210303100600.dgnkadonzuvfnu22@gilmour
		
	
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			729 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			729 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0-only */
 | |
| /*
 | |
|  * Copyright (c) 2015 MediaTek Inc.
 | |
|  */
 | |
| 
 | |
| #ifndef MTK_DRM_CRTC_H
 | |
| #define MTK_DRM_CRTC_H
 | |
| 
 | |
| #include <drm/drm_crtc.h>
 | |
| #include "mtk_drm_ddp_comp.h"
 | |
| #include "mtk_drm_plane.h"
 | |
| 
 | |
| #define MTK_LUT_SIZE	512
 | |
| #define MTK_MAX_BPC	10
 | |
| #define MTK_MIN_BPC	3
 | |
| 
 | |
| void mtk_drm_crtc_commit(struct drm_crtc *crtc);
 | |
| int mtk_drm_crtc_create(struct drm_device *drm_dev,
 | |
| 			const enum mtk_ddp_comp_id *path,
 | |
| 			unsigned int path_len);
 | |
| int mtk_drm_crtc_plane_check(struct drm_crtc *crtc, struct drm_plane *plane,
 | |
| 			     struct mtk_plane_state *state);
 | |
| void mtk_drm_crtc_async_update(struct drm_crtc *crtc, struct drm_plane *plane,
 | |
| 			       struct drm_atomic_state *plane_state);
 | |
| 
 | |
| #endif /* MTK_DRM_CRTC_H */
 |