1/* 2 * Copyright (c) 2023 ITE Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&i2c4 { 8 status = "okay"; 9 clock-frequency = <I2C_BITRATE_STANDARD>; 10 pinctrl-0 = <&i2c4_clk_gpe0_default 11 &i2c4_data_gpe7_default>; 12 pinctrl-names = "default"; 13 14 eeprom1: eeprom@54 { 15 compatible = "zephyr,i2c-target-eeprom"; 16 reg = <0x54>; 17 size = <256>; 18 }; 19}; 20 21&i2c5 { 22 status = "okay"; 23 pinctrl-0 = <&i2c5_clk_gpa4_default 24 &i2c5_data_gpa5_default>; 25 pinctrl-names = "default"; 26 27 target-enable; 28 eeprom0: eeprom@52 { 29 compatible = "zephyr,i2c-target-eeprom"; 30 reg = <0x52>; 31 size = <256>; 32 }; 33}; 34