1/*
2 * SPDX-License-Identifier: Apache-2.0
3 *
4 * Copyright (c) 2023 Cypress Semiconductor Corporation (an Infineon company) or
5 * an affiliate of Cypress Semiconductor Corporation
6 */
7
8/ {
9	aliases {
10		gy271 = &i2c1;
11		i2c-0 =&i2c1;
12	};
13};
14
15i2c1: &scb1 {
16	compatible = "infineon,cat1-i2c";
17
18	status = "okay";
19	pinctrl-0 = <&p10_0_scb1_i2c_scl &p10_1_scb1_i2c_sda>;
20	pinctrl-names = "default";
21};
22
23/* Configure pin control bias mode for i2c pins */
24&p10_0_scb1_i2c_scl {
25	drive-open-drain;
26	input-enable;
27};
28
29&p10_1_scb1_i2c_sda {
30	drive-open-drain;
31	input-enable;
32};
33