Hi Tom, please pull video patches for v2021.07-rc1.
gitlab CI: https://source.denx.de/u-boot/custodians/u-boot-video/-/pipelines/7124 Thanks, Anatolij The following changes since commit a1e95e3805eacca1162f6049dceb9b1d2726cbf5: Merge tag 'u-boot-imx-20210409' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2021-04-09 10:08:52 -0400) are available in the Git repository at: https://source.denx.de/u-boot/custodians/u-boot-video.git tags/video-2021-07-rc1 for you to fetch changes up to 38e18d6392fca9f6809cb3079af3069efc3d181f: video: Fix line padding calculation for 16 and 24 BPP bitmaps (2021-04-10 17:09:59 +0200) ---------------------------------------------------------------- - rk3399 eDP support - pwm backlight without a known period_ns - add Chrome OS EC PWM driver - Kconfig SIMPLE_PANEL DM_GPIO dependency - remove mb862xx driver remnants - fix KiB format in reserve_video() debug trace - fix tegra124 sor CSTM LVDS_EN_ENABLE/DISABLE config - fix line padding calculation for 16 and 24 BPP bitmaps ---------------------------------------------------------------- Alper Nebi Yasak (2): video: backlight: Support PWMs without a known period_ns pwm: Add a driver for Chrome OS EC PWM Arnaud Patard (Rtp) (9): rockchip: video: vop: Use endpoint compatible string to find VOP mode rockchip: video: edp: Add rk3399 support Rockchip: video: edp: Change interrupt polarity configuration Rockchip: video: vop: Reserve efi fb memory rockchip: Pinebook Pro: Enable edp rockchip: pwm: Fix default polarity rockchip: video: vop: Fix format of fbbase in debug string rockchip: video: edp: Add missing reset support rockchip: video: vop: Add reset support Asherah Connor (1): video: SIMPLE_PANEL depends on DM_GPIO Heinrich Schuchardt (1): tegra: video: fix tegra_dc_sor_config_panel() Patrick Delaunay (1): board_f: cosmetic: change the debug trace to KB in reserve_video Sylwester Nawrocki (1): video: Fix line padding calculation for 16 and 24 BPP bitmaps Trevor Woerner (1): finish removing mb862xx video driver arch/arm/dts/rk3399-pinebook-pro-u-boot.dtsi | 4 + arch/arm/include/asm/arch-rockchip/edp_rk3288.h | 9 ++- arch/arm/include/asm/arch-rockchip/vop_rk3288.h | 15 +--- common/board_f.c | 2 +- doc/device-tree-bindings/pwm/cros-ec-pwm.txt | 23 ++++++ drivers/misc/cros_ec.c | 17 ++++ drivers/pwm/Kconfig | 9 +++ drivers/pwm/Makefile | 1 + drivers/pwm/cros_ec_pwm.c | 84 +++++++++++++++++++ drivers/pwm/rk_pwm.c | 2 +- drivers/pwm/sandbox_pwm.c | 11 ++- drivers/video/Kconfig | 2 +- drivers/video/cfb_console.c | 14 ---- drivers/video/pwm_backlight.c | 20 +++-- drivers/video/rockchip/rk_edp.c | 103 +++++++++++++++++++----- drivers/video/rockchip/rk_vop.c | 84 +++++++++++++++++-- drivers/video/tegra124/sor.c | 4 +- drivers/video/video_bmp.c | 4 +- include/cros_ec.h | 13 +++ include/pwm.h | 8 ++ scripts/config_whitelist.txt | 1 - test/dm/pwm.c | 11 +++ 22 files changed, 370 insertions(+), 71 deletions(-) create mode 100644 doc/device-tree-bindings/pwm/cros-ec-pwm.txt create mode 100644 drivers/pwm/cros_ec_pwm.c