1/*
2 * Copyright 2024 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <freq.h>
8
9/ {
10	aliases {
11		ambient-temp0 = &p3t1755;
12	};
13};
14
15&i3c1 {
16	status = "okay";
17
18	i2c-scl-hz = <DT_FREQ_K(400)>;
19	i3c-scl-hz = <DT_FREQ_M(4)>;
20	i3c-od-scl-hz = <DT_FREQ_K(1500)>;
21
22	p3t1755: p3t1755@4800000236152a0090 {
23		compatible = "nxp,p3t1755";
24		reg = <0x48 0x0236 0x152a0090>;
25		status = "okay";
26	};
27};
28