1/*
2 * Copyright (c) 2025 STMicroelectronics
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/* I2C bus pins are exposed on the ST Arduino header.
7 *
8 *  Bus        SDA                    SCL
9 *          Pin   Hdr              Pin   Hdr
10 *  i2c1    PC1   CN12:10 (D15)    PH9   CN12:9 (D14)
11 *  i2c4    PE14  CN12:2  (D9)     PE13  CN11:7 (D6)
12 *
13 * Short Pin PC1 to PE14, and PH9 to PE13, for the test to pass.
14 */
15
16&i2c1 {
17	eeprom0: eeprom@54 {
18		compatible = "zephyr,i2c-target-eeprom";
19		reg = <0x54>;
20		size = <256>;
21	};
22};
23
24&i2c4 {
25	eeprom1: eeprom@56 {
26		compatible = "zephyr,i2c-target-eeprom";
27		reg = <0x56>;
28		size = <256>;
29	};
30};
31