/* * Copyright (c) 2024 Nordic Semiconductor ASA * * SPDX-License-Identifier: Apache-2.0 */ /* * SDA = P1.8 and P1.9 * SCL = P1.10 and P1.11 */ &pinctrl { i2c21_default: i2c21_default { group1 { psels = , ; bias-pull-up; }; }; i2c21_sleep: i2c21_sleep { group1 { psels = , ; low-power-enable; }; }; i2c22_default: i2c22_default { group1 { psels = , ; bias-pull-up; }; }; i2c22_sleep: i2c22_sleep { group1 { psels = , ; low-power-enable; }; }; }; &i2c21 { pinctrl-0 = <&i2c21_default>; pinctrl-1 = <&i2c21_sleep>; pinctrl-names = "default", "sleep"; zephyr,concat-buf-size = <256>; status = "okay"; eeprom1: eeprom@56 { compatible = "zephyr,i2c-target-eeprom"; reg = <0x56>; address-width = <8>; size = <256>; }; }; &i2c22 { compatible = "nordic,nrf-twis"; pinctrl-0 = <&i2c22_default>; pinctrl-1 = <&i2c22_sleep>; pinctrl-names = "default", "sleep"; status = "okay"; eeprom0: eeprom@54 { compatible = "zephyr,i2c-target-eeprom"; reg = <0x54>; address-width = <8>; size = <256>; }; };