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_6 &i2c0a_sda_p0_7>;
10	pinctrl-names = "default";
11
12	eeprom0: eeprom@54 {
13		compatible = "zephyr,i2c-target-eeprom";
14		reg = <0x54>;
15		address-width = <16>;
16		size = <1024>;
17	};
18};
19
20&i2c2 {
21	dmas = <&dma0 1 MAX32_DMA_SLOT_I2C2_TX>, <&dma0 2 MAX32_DMA_SLOT_I2C2_RX>;
22	dma-names = "tx", "rx";
23
24	eeprom1: eeprom@56 {
25		compatible = "zephyr,i2c-target-eeprom";
26		reg = <0x56>;
27		address-width = <16>;
28		size = <1024>;
29	};
30};
31