]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
drm: zte: make zx_plane accessible from zx_vou driver
authorShawn Guo <shawn.guo@linaro.org>
Wed, 28 Dec 2016 06:41:37 +0000 (14:41 +0800)
committerShawn Guo <shawn.guo@linaro.org>
Sat, 28 Jan 2017 02:17:40 +0000 (10:17 +0800)
commit98ae9869d187ab737b5b231e7879d15e1e9a763d
treea70a2d240e7cb20ec43e58f9ef3b558c4678cb4d
parent83d7115250c181da6dacd187671e174f8be71dfd
drm: zte: make zx_plane accessible from zx_vou driver

Move struct zx_plane from zx_plane.c to zx_plane.h, so that it can be
accessed from zx_vou driver, and we can save the use of struct
zx_layer_data completely.  More importantly, those additional data used
by VOU controller to enable/disable graphic and video layers can later
be added and accessed much more easily from zx_vou driver.

While at it, we make two changes to zx_plane_init() interface:

 - Encode struct device pointer in zx_plane, so that we do not need to
   pass it as a parameter.
 - Change return of zx_plane_init() from struct drm_plane pointer to
   error code, since we can get the pointer from zx_plane in zx_vou
   driver now.

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Reviewed-by: Sean Paul <seanpaul@chromium.org>
drivers/gpu/drm/zte/zx_plane.c
drivers/gpu/drm/zte/zx_plane.h
drivers/gpu/drm/zte/zx_vou.c