1/* SPDX-License-Identifier: Apache-2.0 */ 2 3/ { 4 chosen { 5 zephyr,shell-uart = &uart1; 6 }; 7}; 8 9&i2c0_0 { 10 eeprom0: eeprom@54 { 11 compatible = "zephyr,i2c-target-eeprom"; 12 reg = <0x54>; 13 address-width = <16>; 14 size = <1024>; 15 }; 16}; 17 18&i2c2_0 { 19 status = "okay"; 20 pinctrl-0 = <&i2c2_0_sda_scl_gp91_92>; 21 pinctrl-names = "default"; 22 clock-frequency = <I2C_BITRATE_FAST>; 23 24 eeprom1: eeprom@56 { 25 compatible = "zephyr,i2c-target-eeprom"; 26 reg = <0x56>; 27 address-width = <16>; 28 size = <1024>; 29 }; 30}; 31 32&i2c_ctrl2 { 33 status = "okay"; 34}; 35