1 #ifndef __IPUV3_PLANE_H__
2 #define __IPUV3_PLANE_H__
4 #include <drm/drm_crtc.h> /* drm_plane */
10 struct drm_framebuffer
;
17 struct drm_plane base
;
20 struct ipuv3_channel
*ipu_ch
;
21 struct dmfc_channel
*dmfc
;
35 struct ipu_plane
*ipu_plane_init(struct drm_device
*dev
, struct ipu_soc
*ipu
,
36 int dma
, int dp
, unsigned int possible_crtcs
,
39 /* Init IDMAC, DMFC, DP */
40 int ipu_plane_mode_set(struct ipu_plane
*plane
, struct drm_crtc
*crtc
,
41 struct drm_display_mode
*mode
,
42 struct drm_framebuffer
*fb
, int crtc_x
, int crtc_y
,
43 unsigned int crtc_w
, unsigned int crtc_h
,
44 uint32_t src_x
, uint32_t src_y
, uint32_t src_w
,
45 uint32_t src_h
, bool interlaced
);
47 void ipu_plane_enable(struct ipu_plane
*plane
);
48 void ipu_plane_disable(struct ipu_plane
*plane
);
49 int ipu_plane_set_base(struct ipu_plane
*plane
, struct drm_framebuffer
*fb
,
52 int ipu_plane_get_resources(struct ipu_plane
*plane
);
53 void ipu_plane_put_resources(struct ipu_plane
*plane
);
55 int ipu_plane_irq(struct ipu_plane
*plane
);