mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
40 lines
656 B
Text
40 lines
656 B
Text
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
//
|
||
|
// Copyright (C) 2020 TQ-Systems GmbH
|
||
|
|
||
|
&fec {
|
||
|
pinctrl-names = "default";
|
||
|
pinctrl-0 = <&pinctrl_enet>, <&pinctrl_enet_fix>;
|
||
|
interrupts-extended = <&gpio1 6 IRQ_TYPE_LEVEL_HIGH>,
|
||
|
<&intc 0 119 IRQ_TYPE_LEVEL_HIGH>;
|
||
|
};
|
||
|
|
||
|
&i2c1 {
|
||
|
sensor1: lm75@49 {
|
||
|
compatible = "lm75";
|
||
|
reg = <0x49>;
|
||
|
};
|
||
|
|
||
|
eeprom1: m24c64@57 {
|
||
|
compatible = "st,24c64", "at24";
|
||
|
reg = <0x57>;
|
||
|
pagesize = <32>;
|
||
|
};
|
||
|
|
||
|
rtc1: ds1339@68 {
|
||
|
compatible = "ds1339";
|
||
|
reg = <0x68>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&iomuxc {
|
||
|
mba6 {
|
||
|
pinctrl_enet_fix: enetfixgrp {
|
||
|
fsl,pins = <
|
||
|
/* ENET ping patch */
|
||
|
MX6QDL_PAD_GPIO_6__ENET_IRQ 0x000b1
|
||
|
>;
|
||
|
};
|
||
|
};
|
||
|
};
|