This enables barebox to make use of the MIPI DSI display on the DK2. The RK35xx also has a Designware MIPI-DSI host and there's already VOP2 support, so that will likely follow in future.
Ahmad Fatoum (16): driver: bus: embed bus driver node into bus driver: switch busses to device class driver: factor out bus definitions into separate header driver: bus: add helpers for finding devices in busses drive: bus: make use of new bus_find_device helper of: implement of_alias_from_compatible video: vpl: fix potential read of uninitialized variable video: vpl: factor out vpl_for_each video: vpl: handle missing struct vpl::ioctl gracefully video: vpl: add vpl_bridge abstraction video: factor out drm_mode_vrefresh video: add base MIPI DSI support video: add Designware MIPI-DSI support video: add STM32 MIPI DSI video driver video: add support for Orise Technology otm8009a panel ARM: stm32mp: dk2: enable MIPI-DSI display by default arch/arm/boards/stm32mp15xx-dkx/Makefile | 1 + arch/arm/boards/stm32mp15xx-dkx/board.c | 3 + .../defaultenv-stm32mp15xx-dkx/init/splash | 18 + arch/arm/configs/stm32mp_defconfig | 18 +- commands/devinfo.c | 2 +- common/tlv/bus.c | 4 +- drivers/amba/bus.c | 2 +- drivers/base/bus.c | 68 +- drivers/base/driver.c | 2 +- drivers/efi/efi-device.c | 17 +- drivers/i2c/i2c.c | 6 +- drivers/mci/mci-core.c | 14 +- drivers/net/phy/mdio_bus.c | 6 +- drivers/net/phy/phy.c | 7 +- drivers/of/base.c | 31 + drivers/tee/tee_core.c | 7 +- drivers/tee/tee_private.h | 2 - drivers/usb/gadget/udc/core.c | 3 + drivers/video/Kconfig | 35 + drivers/video/Makefile | 5 + drivers/video/backlight.c | 7 +- drivers/video/drm/Makefile | 2 + drivers/video/drm/drm_modes.c | 67 + drivers/video/dw_mipi_dsi.c | 1042 ++++++++++ drivers/video/mipi_dsi.c | 1730 +++++++++++++++++ drivers/video/panel-orisetech-otm8009a.c | 505 +++++ drivers/video/rockchip/rockchip_drm_vop2.c | 13 - drivers/video/stm32_dsi.c | 457 +++++ drivers/video/vpl.c | 91 +- drivers/w1/w1.c | 4 +- include/driver.h | 33 +- include/i2c/i2c.h | 5 +- include/linux/device.h | 22 - include/linux/device/bus.h | 80 + include/linux/gpio/consumer.h | 3 + include/linux/phy.h | 6 +- include/module.h | 26 + include/of.h | 1 + include/video/backlight.h | 15 +- include/video/drm/drm_connector.h | 2 + include/video/drm/drm_modes.h | 2 + include/video/dw_mipi_dsi.h | 81 + include/video/mipi_dsi.h | 618 ++++++ include/video/vpl.h | 15 + 44 files changed, 4946 insertions(+), 132 deletions(-) create mode 100755 arch/arm/boards/stm32mp15xx-dkx/defaultenv-stm32mp15xx-dkx/init/splash create mode 100644 drivers/video/drm/Makefile create mode 100644 drivers/video/drm/drm_modes.c create mode 100644 drivers/video/dw_mipi_dsi.c create mode 100644 drivers/video/mipi_dsi.c create mode 100644 drivers/video/panel-orisetech-otm8009a.c create mode 100644 drivers/video/stm32_dsi.c create mode 100644 include/linux/device/bus.h create mode 100644 include/video/dw_mipi_dsi.h create mode 100644 include/video/mipi_dsi.h -- 2.39.5