1/*
2 * Copyright (c) 2024 TOKITA Hiroshi
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/dts-v1/;
8
9#include "m5stack_cores3_procpu_common.dtsi"
10
11/ {
12	model = "M5Stack CoreS3 PROCPU";
13	compatible = "m5stack,cores3";
14
15	aliases {
16		accel0 = &bmi270;
17		magn0 = &bmm150;
18	};
19};
20
21&i2c0 {
22	bmi270: bmi270@69 {
23		compatible = "bosch,bmi270";
24		reg = <0x69>;
25	};
26
27	bmm150: bmm150@10 {
28		compatible = "bosch,bmm150";
29		status = "okay";
30		reg = <0x10>;
31	};
32};
33