diff --git a/tests/drivers/build_all/display/app.overlay b/tests/drivers/build_all/display/app.overlay index d425bf103b976f..e262a8726920d2 100644 --- a/tests/drivers/build_all/display/app.overlay +++ b/tests/drivers/build_all/display/app.overlay @@ -137,6 +137,73 @@ }; }; + test_mipi_dsi { + compatible = "vnd,mipi-dsi"; + #address-cells = <1>; + #size-cells = <0>; + status = "okay"; + + test_hx8394: hx8394@0 { + status = "okay"; + compatible = "himax,hx8394"; + reg = <0x0>; + reset-gpios = <&test_gpio 0 0>; + data-lanes = <2>; + width = <720>; + height = <1280>; + pixel-format = <0>; + }; + + test_nt35510: nt35510@1 { + status = "okay"; + compatible = "frida,nt35510"; + reg = <0x1>; + height = <800>; + width = <480>; + reset-gpios = <&test_gpio 0 0>; + bl-gpios = <&test_gpio 0 0>; + data-lanes = <2>; + pixel-format = <0>; + rotation = <90>; + }; + + test_otm8009a: otm8009a@2 { + status = "okay"; + compatible = "orisetech,otm8009a"; + reg = <0x2>; + height = <800>; + width = <480>; + reset-gpios = <&test_gpio 0 0>; + bl-gpios = <&test_gpio 0 0>; + data-lanes = <2>; + pixel-format = <0>; + rotation = <90>; + }; + + test_rm67162: rm67162@3 { + status = "okay"; + compatible = "raydium,rm67162"; + reg = <0x3>; + reset-gpios = <&test_gpio 0 0>; + bl-gpios = <&test_gpio 0 0>; + te-gpios = <&test_gpio 0 0>; + data-lanes = <1>; + width = <400>; + height = <392>; + pixel-format = <0>; + }; + + test_rm68200: rm68200@4 { + status = "okay"; + compatible = "raydium,rm68200"; + reg = <0x4>; + reset-gpios = <&test_gpio 0 0>; + data-lanes = <2>; + width = <720>; + height = <1280>; + pixel-format = <0>; + }; + }; test_spi: spi@33334444 { #address-cells = <1>; diff --git a/tests/drivers/build_all/display/prj.conf b/tests/drivers/build_all/display/prj.conf index 8b2c0984e43765..b7328a4325ce7c 100644 --- a/tests/drivers/build_all/display/prj.conf +++ b/tests/drivers/build_all/display/prj.conf @@ -2,3 +2,4 @@ CONFIG_TEST=y CONFIG_SPI=y CONFIG_GPIO=y CONFIG_DISPLAY=y +CONFIG_MIPI_DSI=y diff --git a/tests/drivers/build_all/display/testcase.yaml b/tests/drivers/build_all/display/testcase.yaml index e692e607c6af43..84ee77816847b3 100644 --- a/tests/drivers/build_all/display/testcase.yaml +++ b/tests/drivers/build_all/display/testcase.yaml @@ -7,4 +7,7 @@ common: - native_posix - native_sim tests: - drivers.display.default: {} + drivers.display.default: + extra_configs: + - CONFIG_DISPLAY_NT35510_INIT_PRIORITY=87 + - CONFIG_DISPLAY_OTM8009A_INIT_PRIORITY=87