1/*
2 * Copyright (c) 2022 Andrei-Edward Popa
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&pinctrl {
8	i2c1_default: i2c1_default {
9		group1 {
10			pinmux = <I2C1_SDA_P14>, <I2C1_SCL_P15>;
11			input-enable;
12			input-schmitt-enable;
13		};
14	};
15};
16
17&i2c0 {
18	eeprom0: eeprom@54 {
19		compatible = "zephyr,i2c-target-eeprom";
20		reg = <0x54>;
21		size = <256>;
22	};
23};
24
25&i2c1 {
26	clock-frequency = <I2C_BITRATE_STANDARD>;
27	status = "okay";
28	pinctrl-0 = <&i2c1_default>;
29	pinctrl-names = "default";
30	eeprom1: eeprom@56 {
31		compatible = "zephyr,i2c-target-eeprom";
32		reg = <0x56>;
33		size = <256>;
34	};
35};
36