Skip to content

Commit 02a01e5

Browse files
committed
tests: drivers: build_all: video: add IMX219
Build the IMX219 image sensor driver on the build-all tests. No interconnection with any other device is done, which is not mandatory at the time as no link-related parameter is used. Signed-off-by: Josuah Demangeon <me@josuah.net>
1 parent 2426dc4 commit 02a01e5

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

tests/drivers/build_all/video/app.overlay

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
#clock-cells = <0>;
1818
};
1919

20+
imx219_input_clock: imx219-input-clock {
21+
compatible = "fixed-clock";
22+
clock-frequency = <24000000>;
23+
#clock-cells = <0>;
24+
};
25+
2026
test {
2127
#address-cells = <1>;
2228
#size-cells = <1>;
@@ -127,11 +133,17 @@
127133
};
128134
};
129135

130-
test_i2c_ov9655: ov9655@8 {
136+
test_i2c_ov9655: ov9655@9 {
131137
compatible = "ovti,ov9655";
132-
reg = <0x8>;
138+
reg = <0x9>;
133139
reset-gpios = <&test_gpio 0 0>;
134140
};
141+
142+
test_i2c_imx219: imx219@a {
143+
compatible = "sony,imx219";
144+
reg = <0xa>;
145+
clocks = <&imx219_input_clock>;
146+
};
135147
};
136148

137149
test_video_emul_rx: video_emul_rx@10003000 {

0 commit comments

Comments
 (0)