1/*
2 * Copyright (c) 2024 Analog Devices, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&i2c0 {
8	status = "okay";
9	pinctrl-0 = <&i2c0a_scl_p0_12 &i2c0a_sda_p0_13>;
10	pinctrl-names = "default";
11
12	eeprom0: eeprom@54 {
13		compatible = "zephyr,i2c-target-eeprom";
14		reg = <0x54>;
15		size = <256>;
16	};
17};
18
19&i2c1 {
20	dmas = <&dma0 1 MAX32_DMA_SLOT_I2C1_TX>, <&dma0 2 MAX32_DMA_SLOT_I2C1_RX>;
21	dma-names = "tx", "rx";
22
23	eeprom1: eeprom@56 {
24		compatible = "zephyr,i2c-target-eeprom";
25		reg = <0x56>;
26		size = <256>;
27	};
28};
29