mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 00/16] ARM: stm32mp: add MIPI DSI support
@ 2025-06-05 21:07 Ahmad Fatoum
  2025-06-05 21:07 ` [PATCH 01/16] driver: bus: embed bus driver node into bus Ahmad Fatoum
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Ahmad Fatoum @ 2025-06-05 21:07 UTC (permalink / raw)
  To: barebox

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




^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2025-06-05 21:15 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-06-05 21:07 [PATCH 00/16] ARM: stm32mp: add MIPI DSI support Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 01/16] driver: bus: embed bus driver node into bus Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 02/16] driver: switch busses to device class Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 03/16] driver: factor out bus definitions into separate header Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 04/16] driver: bus: add helpers for finding devices in busses Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 05/16] drive: bus: make use of new bus_find_device helper Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 06/16] of: implement of_alias_from_compatible Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 07/16] video: vpl: fix potential read of uninitialized variable Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 08/16] video: vpl: factor out vpl_for_each Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 09/16] video: vpl: handle missing struct vpl::ioctl gracefully Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 10/16] video: vpl: add vpl_bridge abstraction Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 11/16] video: factor out drm_mode_vrefresh Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 12/16] video: add base MIPI DSI support Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 13/16] video: add Designware MIPI-DSI support Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 14/16] video: add STM32 MIPI DSI video driver Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 15/16] video: add support for Orise Technology otm8009a panel Ahmad Fatoum
2025-06-05 21:07 ` [PATCH 16/16] ARM: stm32mp: dk2: enable MIPI-DSI display by default Ahmad Fatoum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox