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