Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 1 | #ifndef __IPUV3_PLANE_H__ |
| 2 | #define __IPUV3_PLANE_H__ |
| 3 | |
| 4 | #include <drm/drm_crtc.h> /* drm_plane */ |
| 5 | |
| 6 | struct drm_plane; |
| 7 | struct drm_device; |
| 8 | struct ipu_soc; |
| 9 | struct drm_crtc; |
| 10 | struct drm_framebuffer; |
| 11 | |
| 12 | struct ipuv3_channel; |
| 13 | struct dmfc_channel; |
| 14 | struct ipu_dp; |
| 15 | |
| 16 | struct ipu_plane { |
| 17 | struct drm_plane base; |
| 18 | |
| 19 | struct ipu_soc *ipu; |
| 20 | struct ipuv3_channel *ipu_ch; |
Philipp Zabel | f6b50ef | 2016-07-22 12:02:45 +0200 | [diff] [blame] | 21 | struct ipuv3_channel *alpha_ch; |
Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 22 | struct dmfc_channel *dmfc; |
| 23 | struct ipu_dp *dp; |
| 24 | |
| 25 | int dma; |
| 26 | int dp_flow; |
Philipp Zabel | eb8c888 | 2017-02-24 18:31:05 +0100 | [diff] [blame] | 27 | |
| 28 | bool disabling; |
Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 29 | }; |
| 30 | |
| 31 | struct ipu_plane *ipu_plane_init(struct drm_device *dev, struct ipu_soc *ipu, |
| 32 | int dma, int dp, unsigned int possible_crtcs, |
Philipp Zabel | 4389559 | 2015-11-06 11:08:02 +0100 | [diff] [blame] | 33 | enum drm_plane_type type); |
Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 34 | |
| 35 | /* Init IDMAC, DMFC, DP */ |
| 36 | int ipu_plane_mode_set(struct ipu_plane *plane, struct drm_crtc *crtc, |
| 37 | struct drm_display_mode *mode, |
| 38 | struct drm_framebuffer *fb, int crtc_x, int crtc_y, |
| 39 | unsigned int crtc_w, unsigned int crtc_h, |
| 40 | uint32_t src_x, uint32_t src_y, uint32_t src_w, |
Philipp Zabel | dd7fa6d | 2014-07-11 18:02:06 +0200 | [diff] [blame] | 41 | uint32_t src_h, bool interlaced); |
Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 42 | |
Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 43 | int ipu_plane_get_resources(struct ipu_plane *plane); |
| 44 | void ipu_plane_put_resources(struct ipu_plane *plane); |
| 45 | |
| 46 | int ipu_plane_irq(struct ipu_plane *plane); |
| 47 | |
Philipp Zabel | eb8c888 | 2017-02-24 18:31:05 +0100 | [diff] [blame] | 48 | void ipu_plane_disable(struct ipu_plane *ipu_plane, bool disable_dp_channel); |
| 49 | void ipu_plane_disable_deferred(struct drm_plane *plane); |
| 50 | |
Philipp Zabel | b8d181e | 2013-10-10 16:18:45 +0200 | [diff] [blame] | 51 | #endif |