提交 ba3849d5 编写于 作者: E Eunchul Kim 提交者: Dave Airlie

drm/exynos: add default pixel format for plane

DRM checks whether the plane supports a pixel format of fb when plane is
updated. This adds a default pixel format supporting format exynos drm
plane.
Signed-off-by: NEunchul Kim <chulspro.kim@samsung.com>
Signed-off-by: NJoonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: NInki Dae <inki.dae@samsung.com>
Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: NDave Airlie <airlied@redhat.com>
上级 590f418a
...@@ -22,6 +22,10 @@ struct exynos_plane { ...@@ -22,6 +22,10 @@ struct exynos_plane {
bool enabled; bool enabled;
}; };
static const uint32_t formats[] = {
DRM_FORMAT_XRGB8888,
};
static int static int
exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc, exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
struct drm_framebuffer *fb, int crtc_x, int crtc_y, struct drm_framebuffer *fb, int crtc_x, int crtc_y,
...@@ -115,9 +119,9 @@ int exynos_plane_init(struct drm_device *dev, unsigned int nr) ...@@ -115,9 +119,9 @@ int exynos_plane_init(struct drm_device *dev, unsigned int nr)
exynos_plane->overlay.zpos = DEFAULT_ZPOS; exynos_plane->overlay.zpos = DEFAULT_ZPOS;
/* TODO: format */
return drm_plane_init(dev, &exynos_plane->base, possible_crtcs, return drm_plane_init(dev, &exynos_plane->base, possible_crtcs,
&exynos_plane_funcs, NULL, 0, false); &exynos_plane_funcs, formats, ARRAY_SIZE(formats),
false);
} }
int exynos_plane_set_zpos_ioctl(struct drm_device *dev, void *data, int exynos_plane_set_zpos_ioctl(struct drm_device *dev, void *data,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册