1/* SPDX-License-Identifier: Apache-2.0 */ 2 3&pinctrl { 4 i2c1_default: i2c1_default { 5 group0 { 6 pinmux = <PB2MFP_I2C1_SDA>, /* UNO D0 */ 7 <PB3MFP_I2C1_SCL>; /* UNO D1 */ 8 }; 9 }; 10 11 i2c3_default: i2c3_default { 12 group0 { 13 pinmux = <PG1MFP_I2C3_SDA>, /* UNO D14 */ 14 <PG0MFP_I2C3_SCL>; /* UNO D15 */ 15 }; 16 }; 17}; 18 19&i2c1 { 20 pinctrl-0 = <&i2c1_default>; 21 pinctrl-names = "default"; 22 status = "okay"; 23 24 eeprom0: eeprom@54 { 25 compatible = "zephyr,i2c-target-eeprom"; 26 reg = <0x54>; 27 address-width = <16>; 28 size = <1024>; 29 }; 30}; 31 32&i2c3 { 33 pinctrl-0 = <&i2c3_default>; 34 pinctrl-names = "default"; 35 status = "okay"; 36 37 eeprom1: eeprom@56 { 38 compatible = "zephyr,i2c-target-eeprom"; 39 reg = <0x56>; 40 address-width = <16>; 41 size = <1024>; 42 }; 43}; 44