1// SPDX-License-Identifier: GPL-2.0+
2//
3// Copyright (C) 2020 TQ-Systems GmbH
4
5&fec {
6	pinctrl-names = "default";
7	pinctrl-0 = <&pinctrl_enet>;
8};
9
10&i2c1 {
11	clock-frequency = <100000>;
12	pinctrl-names = "default";
13	pinctrl-0 = <&pinctrl_i2c1>;
14	status = "okay";
15};
16
17&i2c3 {
18	sensor1: lm75@49 {
19		compatible = "lm75";
20		reg = <0x49>;
21	};
22
23	eeprom1: m24c64@57 {
24		compatible = "st,24c64", "at24";
25		reg = <0x57>;
26		pagesize = <32>;
27	};
28
29	rtc1: ds1339@68 {
30		compatible = "ds1339";
31		reg = <0x68>;
32	};
33};
34
35&iomuxc {
36	mba6 {
37		pinctrl_i2c1: i2c1grp {
38			fsl,pins = <
39				MX6QDL_PAD_CSI0_DAT8__I2C1_SDA 0x4001b899
40				MX6QDL_PAD_CSI0_DAT9__I2C1_SCL 0x4001b899
41			>;
42		};
43	};
44
45};
46