/* * Copyright (c) 2025 Nordic Semiconductor ASA * * SPDX-License-Identifier: Apache-2.0 */ /* * SDA = P2.8 and P2.9 * SCL = P1.2 and P1.3 */ &pinctrl { i2c130_default: i2c130_default { group1 { psels = , ; bias-pull-up; }; }; i2c130_sleep: i2c130_sleep { group1 { psels = , ; low-power-enable; }; }; i2c131_default: i2c131_default { group1 { psels = , ; bias-pull-up; }; }; i2c131_sleep: i2c131_sleep { group1 { psels = , ; low-power-enable; }; }; }; &i2c130 { clock-frequency = ; pinctrl-0 = <&i2c130_default>; pinctrl-1 = <&i2c130_sleep>; pinctrl-names = "default", "sleep"; zephyr,concat-buf-size = <256>; memory-regions = <&cpuapp_dma_region>; status = "okay"; eeprom1: eeprom@56 { compatible = "zephyr,i2c-target-eeprom"; reg = <0x56>; address-width = <8>; size = <256>; }; }; &i2c131 { compatible = "nordic,nrf-twis"; clock-frequency = ; pinctrl-0 = <&i2c131_default>; pinctrl-1 = <&i2c131_sleep>; pinctrl-names = "default", "sleep"; memory-regions = <&cpuapp_dma_region>; status = "okay"; eeprom0: eeprom@54 { compatible = "zephyr,i2c-target-eeprom"; reg = <0x54>; address-width = <8>; size = <256>; }; };