summaryrefslogtreecommitdiff
path: root/zephyr/test/i2c/boards/native_posix.overlay
blob: 8dff15ffe0fb06b0323bce5f0ad20761030b8b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Copyright 2020 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <board-overlays/native_posix.dts>

/ {
	i2c1: i2c@400 {
		status = "okay";
		compatible = "zephyr,i2c-emul-controller";
		clock-frequency = <I2C_BITRATE_STANDARD>;
		#address-cells = <1>;
		#size-cells = <0>;
		reg = <0x400 4>;
	};

	named-i2c-ports {
		compatible = "named-i2c-ports";
		accel-0 {
			i2c-port = <&i2c0>;
			enum-names = "I2C_PORT_ACCEL",
				"I2C_PORT_EEPROM";
		};
		usb-c1 {
			i2c-port = <&i2c1>;
			enum-names = "I2C_PORT_USB_C1";
		};
	};
};

&i2c0 {
	bmi_i2c: bmi@68 {
		compatible = "bosch,bmi160";
		reg = <0x68>;
	};
};