Enable driver for ADV7511(ADV7535) in Torizon OS

Hi Team,

We are working on DSI to HDMI converter (ADV7511/ADV7535) on our custom carrier board, which is based on IMX8M Plus. We have replaced ADV7535 instead of LT8912B MIPI DSI to HDMI bridge, which comes with Toradex carrier board.

We are trying to enable driver ADV7511/ADV7535 in Torizon OS, which is running on IMX8M plus.

Kindly please clarify on below points:

  1. Do we need to use Yocto build project or simple kmod configurations?
  2. Which source branch of Torizon OS we have to use?
  3. How to enable the driver using kconfig?
  4. Do we have to make any changes in device tree for DSI to HDMI converter?

Below are the systems details:

Software summary

Bootloader: U-Boot
Kernel version: 5.15.129-6.5.0+git.6f8fd49366db #1-TorizonCore SMP PREEMPT Fri Dec 22 11:15:52 UTC 2023
Kernel command line: root=LABEL=otaroot rootfstype=ext4 quiet logo.nologo vt.global_cursor_default=0 plymouth.ignore-serial-consoles splash fbcon=map:3 ostree=/ostree/boot.0/torizon/0675ef60b6510e69b99103e48d52b4fc37504a16b10cb79a10beaee292d75b0c/0
Distro name: NAME=“TorizonCore”
Distro version: VERSION_ID=6.5.0-build.8
Distro variant: VARIANT=“Docker”
Hostname: verdin-imx8mp-147XXXXX

Hardware info

HW model: Toradex Verdin iMX8M Plus on Verdin Development Board
Toradex version: 0063 V1.1A
Serial number: 14XXXXXX
Processor arch: aarch64

Thanks & Regards,
Rupesh Kathar

Hi, I’m the Toradex AI Assistant.

I might make mistakes. Our support team will step in if needed. If I answered your question, please tick the “Solution” checkbox. For follow-up questions to me, please use @ToradexAI in your post.

Did you like my answer? :+1: :-1:


Hello Rupesh,

Thank you for providing detailed information about your setup. Here’s a step-by-step clarification for each of your questions regarding enabling the ADV7511/ADV7535 DSI-to-HDMI bridge on Torizon OS for your Verdin iMX8M Plus:


1. Do we need to use Yocto build project or simple kmod configurations?

For Torizon OS, direct kernel module (kmod) handling or manual builds are not recommended. The preferred approach for enabling new drivers (such as ADV7511/ADV7535) is to use TorizonCore Builder, not a full Yocto build, unless you need deep customizations not covered by overlays or available modules.


2. Which source branch of Torizon OS should we use?

Your TorizonCore version (6.5.0-build.8) is based on the Linux kernel branch toradex_6.6-2.1.x-imx for the i.MX8M Plus family. For customizations, refer to this kernel branch when preparing device tree overlays or compiling drivers:


3. How to enable the driver using kconfig?

If the ADV7511/ADV7535 driver is not built into your kernel, you may need to enable it via kernel configuration:

  • Use TorizonCore Builder to add or enable additional kernel modules, including ADV7511/ADV7535.
  • If you must manually configure, get the corresponding kernel source and use make menuconfig or make nconfig to enable the driver:
    • Device Drivers → Graphics Support → Display Interface Bridges
    • Enable options for ADV7511/ADV7535 as built-in or module.

After configuration, use TorizonCore Builder to integrate resulting modules/overlays into your Torizon OS image.


4. Do we have to make any changes in device tree for DSI to HDMI converter?

Yes, supporting the ADV7511/ADV7535 bridge requires device tree changes:

  • You must declare the ADV7511/ADV7535 node in your device tree or overlay, specifying:
    • Connection to the MIPI DSI host
    • I2C address/interface for control
    • HDMI output configuration
    • Any required GPIOs (e.g., for reset, enable)
  • PWM for backlight and any other display-specific signals (like hotplug detect) should also be configured.

TorizonCore Builder supports adding such overlays. For reference on MIPI DSI-related signals and how overlays are deployed, see:
MIPI DSI Signals Reference


Prototyping Tip:


Summary of Steps:

  1. Prepare your device tree overlay for ADV7511/ADV7535.
  2. Enable the driver (as kernel config/module if not present).
  3. Use TorizonCore Builder to integrate your overlay and/or kernel modules.
  4. Deploy the image and test HDMI output.

If you need further details on writing the device tree overlay, let me know!

Best regards,
Toradex AI Assistant.

Hi @rkathar!

I’ll ask our R&D team to enable this driver. So, in a few days, it will be added to our nightly images and all other images after that (monthly, quarterly, etc). However, we won’t add new drivers to LTS versions (like 6.8), so I would recommend you use newer Torizon OS versions, such as 7.x. Is it possible for your project?

If you prefer, I can let you know once it has been added to Torizon OS 7.x.

Best regards.

Hi @lucas_az.tx,

Thank you for response!

We could not use Torizon OS version 7.x as our product has developed on version 6.8. We have followed below steps:

  1. Cloned downstream based linux kernel source code and switched to toradex_6.6-2.0.x-imx branch.
  2. Cloned Device tree overlay source code for the same branch (toradex_6.6-2.0.x-imx).

Please provide procedure to enable ADV7511/ADV7535 drivers, as we are working with strict deadline.

Let us know if any information is required from our end.

Thanks & Regards,
Rupesh