Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-only
0002 /*
0003  * Copyright 2013 Sascha Hauer, Pengutronix
0004  *
0005  * Copyright 2013-2021 TQ-Systems GmbH
0006  * Author: Markus Niebel <Markus.Niebel@tq-group.com>
0007  */
0008 
0009 &fec {
0010         pinctrl-names = "default";
0011         pinctrl-0 = <&pinctrl_enet>;
0012 };
0013 
0014 &i2c1 {
0015         clock-frequency = <100000>;
0016         pinctrl-names = "default", "gpio";
0017         pinctrl-0 = <&pinctrl_i2c1>;
0018         pinctrl-1 = <&pinctrl_i2c1_recovery>;
0019         scl-gpios = <&gpio5 27 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
0020         sda-gpios = <&gpio5 26 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
0021         status = "okay";
0022 };
0023 
0024 &i2c3 {
0025         lm75: temperature-sensor@49 {
0026                 compatible = "national,lm75";
0027                 reg = <0x49>;
0028         };
0029 
0030         m24c64_57: eeprom@57 {
0031                 compatible = "atmel,24c64";
0032                 reg = <0x57>;
0033                 pagesize = <32>;
0034         };
0035 
0036         rtc0: rtc@68 {
0037                 compatible = "dallas,ds1339";
0038                 reg = <0x68>;
0039         };
0040 };
0041 
0042 &iomuxc {
0043         pinctrl_i2c1: i2c1grp {
0044                 fsl,pins = <
0045                         MX6QDL_PAD_CSI0_DAT8__I2C1_SDA 0x4001b899
0046                         MX6QDL_PAD_CSI0_DAT9__I2C1_SCL 0x4001b899
0047                 >;
0048         };
0049 };