
Hi,
On Mon, 14 Mar 2016 11:20:13 +0800 Jacob Chen jacob-chen@iotwrt.com wrote:
This series patches add LVDS support for rk3288.
Changes in v3:
- Use fdtdec_get_int instead fdtdec_get_uint in rk_lvds_ofdata_to_platdata
Changes in v2:
- Add binding file
- Add comments to struct rk_lvds_priv
- Drop useless 0x0 prefix in header
- Include bingding file in source file
- Correct dt-bindings document
- Change description since the using of bingding file
Jacob Chen (6): dm: video: Add a operation to display uclass rockchip: Add a binding file for rk3288 video rockchip: video: Add a display driver for rockchip LVDS rockchip: dts: Add LVDS support rockchip: video: Add LVDS support in vop driver doc: dt-bindings: Describe rockchip LVDS interface
arch/arm/dts/rk3288.dtsi | 47 ++++- arch/arm/include/asm/arch-rockchip/lvds_rk3288.h | 97 +++++++++ arch/arm/include/asm/arch-rockchip/vop_rk3288.h | 1 + doc/device-tree-bindings/video/rockchip-lvds.txt | 77 +++++++ drivers/video/display-uclass.c | 3 + drivers/video/rockchip/Makefile | 2 +- drivers/video/rockchip/rk_lvds.c | 254 +++++++++++++++++++++++ drivers/video/rockchip/rk_vop.c | 16 +- include/display.h | 11 +- include/dt-bindings/video/rk3288.h | 11 + 10 files changed, 514 insertions(+), 5 deletions(-) create mode 100644 arch/arm/include/asm/arch-rockchip/lvds_rk3288.h create mode 100644 doc/device-tree-bindings/video/rockchip-lvds.txt create mode 100644 drivers/video/rockchip/rk_lvds.c create mode 100644 include/dt-bindings/video/rk3288.h
Series applied to u-boot-video/master, thanks!
-- Anatolij