1/*
2 * Copyright (c) 2024 Analog Devices, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&i2c0 {
8	eeprom0: eeprom@54 {
9		compatible = "zephyr,i2c-target-eeprom";
10		reg = <0x54>;
11		address-width = <16>;
12		size = <1024>;
13	};
14};
15
16&i2c2 {
17	status = "okay";
18	pinctrl-0 = <&i2c2c_scl_p1_8 &i2c2c_sda_p1_7>;
19	pinctrl-names = "default";
20
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