1/*
2 * Copyright 2025 NXP
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/*
8 * This is a loopback setup for the frdm_mcxw72
9 * To test this sample, connect J2.1 <-> J1.5 and J2.2 <-> J2.9
10 */
11&lpi2c1 {
12	status = "okay";
13	eeprom0: eeprom@54 {
14		compatible = "zephyr,i2c-target-eeprom";
15		reg = <0x54>;
16		size = <256>;
17	};
18};
19
20&lpi2c0 {
21	status = "okay";
22	pinctrl-0 = <&pinmux_lpi2c0>;
23	pinctrl-names = "default";
24	eeprom1: eeprom@56 {
25		compatible = "zephyr,i2c-target-eeprom";
26		reg = <0x56>;
27		size = <256>;
28	};
29};
30
31&gpiob {
32	status = "okay";
33};
34