From: Ahmad Fatoum <a.fatoum@barebox.org>
To: barebox@lists.infradead.org
Subject: [PATCH v2 00/16] ARM: stm32mp: add MIPI DSI support
Date: Fri, 6 Jun 2025 07:57:32 +0200 [thread overview]
Message-ID: <20250606055748.1990383-1-a.fatoum@barebox.org> (raw)
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.
v1 -> v2:
- fix breakage for ACPI/EFI, because struct bus_type::dev
change
- add various header includes to fix allyesconfig sandbox
build. Now everything is green
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/bus/acpi.c | 12 +-
drivers/efi/efi-device.c | 31 +-
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 | 1043 ++++++++++
drivers/video/mipi_dsi.c | 1731 +++++++++++++++++
drivers/video/panel-orisetech-otm8009a.c | 506 +++++
drivers/video/rockchip/rockchip_drm_vop2.c | 13 -
drivers/video/stm32_dsi.c | 458 +++++
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 | 619 ++++++
include/video/vpl.h | 15 +
45 files changed, 4964 insertions(+), 145 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
next reply other threads:[~2025-06-06 5:58 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-06 5:57 Ahmad Fatoum [this message]
2025-06-06 5:57 ` [PATCH v2 01/16] driver: bus: embed bus driver node into bus Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 02/16] driver: switch busses to device class Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 03/16] driver: factor out bus definitions into separate header Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 04/16] driver: bus: add helpers for finding devices in busses Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 05/16] drive: bus: make use of new bus_find_device helper Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 06/16] of: implement of_alias_from_compatible Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 07/16] video: vpl: fix potential read of uninitialized variable Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 08/16] video: vpl: factor out vpl_for_each Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 09/16] video: vpl: handle missing struct vpl::ioctl gracefully Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 10/16] video: vpl: add vpl_bridge abstraction Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 11/16] video: factor out drm_mode_vrefresh Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 12/16] video: add base MIPI DSI support Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 13/16] video: add Designware MIPI-DSI support Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 14/16] video: add STM32 MIPI DSI video driver Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 15/16] video: add support for Orise Technology otm8009a panel Ahmad Fatoum
2025-06-06 5:57 ` [PATCH v2 16/16] ARM: stm32mp: dk2: enable MIPI-DSI display by default Ahmad Fatoum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250606055748.1990383-1-a.fatoum@barebox.org \
--to=a.fatoum@barebox.org \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox