1/* SPDX-License-Identifier: Apache-2.0 */ 2 3&pinctrl { 4 i2c2_default: i2c2_default { 5 group0 { 6 pinmux = <PA10MFP_I2C2_SDA>, /* UNO D6 */ 7 <PA11MFP_I2C2_SCL>; /* UNO D7 */ 8 }; 9 }; 10 11 i2c0_default: i2c0_default { 12 group0 { 13 pinmux = <PA4MFP_I2C0_SDA>, /* UNO D14 */ 14 <PA5MFP_I2C0_SCL>; /* UNO D15 */ 15 }; 16 }; 17}; 18 19&i2c2 { 20 pinctrl-0 = <&i2c2_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&i2c0 { 33 pinctrl-0 = <&i2c0_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