1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright 2013 Sascha Hauer, Pengutronix
4 *
5 * Copyright 2013-2021 TQ-Systems GmbH
6 * Author: Markus Niebel <Markus.Niebel@tq-group.com>
7 */
8
9&fec {
10	pinctrl-names = "default";
11	pinctrl-0 = <&pinctrl_enet>;
12};
13
14&i2c1 {
15	clock-frequency = <100000>;
16	pinctrl-names = "default", "gpio";
17	pinctrl-0 = <&pinctrl_i2c1>;
18	pinctrl-1 = <&pinctrl_i2c1_recovery>;
19	scl-gpios = <&gpio5 27 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
20	sda-gpios = <&gpio5 26 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
21	status = "okay";
22};
23
24&i2c3 {
25	lm75: temperature-sensor@49 {
26		compatible = "national,lm75";
27		reg = <0x49>;
28	};
29
30	m24c64_57: eeprom@57 {
31		compatible = "atmel,24c64";
32		reg = <0x57>;
33		pagesize = <32>;
34	};
35
36	rtc0: rtc@68 {
37		compatible = "dallas,ds1339";
38		reg = <0x68>;
39	};
40};
41
42&iomuxc {
43	pinctrl_i2c1: i2c1grp {
44		fsl,pins = <
45			MX6QDL_PAD_CSI0_DAT8__I2C1_SDA 0x4001b899
46			MX6QDL_PAD_CSI0_DAT9__I2C1_SCL 0x4001b899
47		>;
48	};
49};
50