From: Shawn Guo <shawn.guo@xxxxxxxxxx> The series updates zx_vou driver a bit as the preparation of adding TVENC output device, and then adds the device driver. Changes for v2: - Save the use of variable 'vactive' by checking interlaced case. - Rename mask variable for scan register to avoid naming scope confusion. - Write a proper comment to explain how vback_porch of the first and second field are related. - Embed struct drm_display_mode in zx_tvenc_mode to save function zx_tvenc_mode_to_drm_mode(). - Use drm_mode_equal() to find the matching mode. - Use drm_mode_set_name() to name mode. - Fix typos in clock multiplier comment. - Add a sanity check in .mode_valid hook to ensure the given mode is valid. - Remove destroy() calls from .unbind hook, as those are already taken care of by drm_mode_config_cleanup(). Shawn Guo (5): drm: zte: add interlace mode support drm: zte: move struct vou_inf into zx_vou driver drm: zte: add function to configure vou_ctrl dividers dt: add bindings for ZTE tvenc device drm: zte: add tvenc driver support .../devicetree/bindings/display/zte,vou.txt | 15 + drivers/gpu/drm/zte/Makefile | 1 + drivers/gpu/drm/zte/zx_drm_drv.c | 1 + drivers/gpu/drm/zte/zx_drm_drv.h | 1 + drivers/gpu/drm/zte/zx_hdmi.c | 12 +- drivers/gpu/drm/zte/zx_tvenc.c | 407 +++++++++++++++++++++ drivers/gpu/drm/zte/zx_tvenc_regs.h | 31 ++ drivers/gpu/drm/zte/zx_vou.c | 167 ++++++++- drivers/gpu/drm/zte/zx_vou.h | 32 +- drivers/gpu/drm/zte/zx_vou_regs.h | 31 ++ 10 files changed, 672 insertions(+), 26 deletions(-) create mode 100644 drivers/gpu/drm/zte/zx_tvenc.c create mode 100644 drivers/gpu/drm/zte/zx_tvenc_regs.h -- 1.9.1 _______________________________________________ dri-devel mailing list dri-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/dri-devel