1/*
2 * Copyright (c) 2023 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 *
6 * Application overlay for i3c devices
7 */
8
9/****************************************
10 * PLEASE KEEP REG ADDRESSES SEQUENTIAL *
11 ***************************************/
12
13test_i3c_lps22hh: lps22hh@100000803E0000001 {
14	compatible = "st,lps22hh";
15	reg = <0x1 0x00000803 0xE0000001>;
16	assigned-address = <0x1>;
17	drdy-gpios = <&test_gpio 0 0>;
18};
19
20test_i3c_lps22df: lps22df@200000803E0000002 {
21	compatible = "st,lps22df";
22	reg = <0x2 0x00000803 0xE0000002>;
23	assigned-address = <0x2>;
24	drdy-gpios = <&test_gpio 0 0>;
25};
26
27test_i3c_lps28dfw: lps28dfw@300000803E0000003 {
28	compatible = "st,lps28dfw";
29	reg = <0x3 0x00000803 0xE0000003>;
30	assigned-address = <0x3>;
31	drdy-gpios = <&test_gpio 0 0>;
32};
33
34test_i3c_ilps22qs: ilps22qs@400000803E0000004 {
35	compatible = "st,ilps22qs";
36	reg = <0x3 0x00000803 0xE0000004>;
37	assigned-address = <0x4>;
38};
39
40test_i3c_lsm6dsv16x: lsm6dsv16x@500000803E0000004 {
41	compatible = "st,lsm6dsv16x";
42	reg = <0x5 0x00000803 0xE0000004>;
43	assigned-address = <0x5>;
44	int1-gpios = <&test_gpio 0 0>;
45	int2-gpios = <&test_gpio 0 0>;
46	accel-range = <LSM6DSV16X_DT_FS_8G>;
47	accel-odr = <LSM6DSV16X_DT_ODR_AT_60Hz>;
48	gyro-range = <LSM6DSV16X_DT_FS_2000DPS>;
49	gyro-odr = <LSM6DSV16X_DT_ODR_AT_60Hz>;
50};
51