1/*
2 * Copyright (c) 2023 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&i2c1 {
17	status = "okay";
18	pinctrl-0 = <&i2c1_scl_p0_16 &i2c1_sda_p0_17>;
19	pinctrl-names = "default";
20
21	dmas = <&dma0 1 MAX32_DMA_SLOT_I2C1_TX>, <&dma0 2 MAX32_DMA_SLOT_I2C1_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