diff --git a/tests/drivers/i2c/i2c_target_api/boards/max32672evkit.conf b/tests/drivers/i2c/i2c_target_api/boards/max32672evkit.conf new file mode 100644 index 00000000000..c25d2c5d47f --- /dev/null +++ b/tests/drivers/i2c/i2c_target_api/boards/max32672evkit.conf @@ -0,0 +1,4 @@ +# Copyright (c) 2024 Analog Devices, Inc. +# SPDX-License-Identifier: Apache-2.0 + +CONFIG_I2C_VIRTUAL=n diff --git a/tests/drivers/i2c/i2c_target_api/boards/max32672evkit.overlay b/tests/drivers/i2c/i2c_target_api/boards/max32672evkit.overlay new file mode 100644 index 00000000000..f6cfd1f923f --- /dev/null +++ b/tests/drivers/i2c/i2c_target_api/boards/max32672evkit.overlay @@ -0,0 +1,31 @@ +/* + * Copyright (c) 2024 Analog Devices, Inc. + * + * SPDX-License-Identifier: Apache-2.0 + */ + +&i2c0 { + status = "okay"; + pinctrl-0 = <&i2c0a_scl_p0_6 &i2c0a_sda_p0_7>; + pinctrl-names = "default"; + + eeprom0: eeprom@54 { + compatible = "zephyr,i2c-target-eeprom"; + reg = <0x54>; + address-width = <16>; + size = <1024>; + }; +}; + +&i2c1 { + status = "okay"; + pinctrl-0 = <&i2c1a_scl_p0_12 &i2c1a_sda_p0_13>; + pinctrl-names = "default"; + + eeprom1: eeprom@56 { + compatible = "zephyr,i2c-target-eeprom"; + reg = <0x56>; + address-width = <16>; + size = <1024>; + }; +};