1/*
2 * Copyright (c) 2024 Analog Devices, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&i2c1 {
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	dmas = <&dma0 1 MAX32_DMA_SLOT_I2C2_TX>, <&dma0 2 MAX32_DMA_SLOT_I2C2_RX>;
18	dma-names = "tx", "rx";
19
20	eeprom1: eeprom@56 {
21		compatible = "zephyr,i2c-target-eeprom";
22		reg = <0x56>;
23		address-width = <16>;
24		size = <1024>;
25	};
26};
27