mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
3b1e99d23e
- add fxos8700 support to GW52xx/GW53xx/GW54xx - add USB_OTG support to GW552x - add LSM9DS1 IMU support to GW560x - add LSM9DS1 IMU support to GW5904 - add CC1352 UART to GW5910 - add BCM4330 support to GW5910 - fix wlan regulator for GW5910 Signed-off-by: Tim Harvey <tharvey@gateworks.com>
67 lines
1.7 KiB
Diff
67 lines
1.7 KiB
Diff
From 66d19a4f8d0fa7539f90cad64d793b4dac6f6e5d Mon Sep 17 00:00:00 2001
|
|
From: Robert Jones <rjones@gateworks.com>
|
|
Date: Fri, 14 Feb 2020 13:01:55 -0800
|
|
Subject: [PATCH] ARM: dts: imx: ventana: add fxos8700 on gateworks boards
|
|
|
|
Add fxos8700 iio imu entries for Gateworks ventana SBCs.
|
|
|
|
Signed-off-by: Robert Jones <rjones@gateworks.com>
|
|
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
|
|
---
|
|
arch/arm/boot/dts/imx6qdl-gw52xx.dtsi | 5 +++++
|
|
arch/arm/boot/dts/imx6qdl-gw53xx.dtsi | 5 +++++
|
|
arch/arm/boot/dts/imx6qdl-gw54xx.dtsi | 5 +++++
|
|
3 files changed, 15 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
|
|
index 1a9a9d9..60563ff 100644
|
|
--- a/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
|
|
+++ b/arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
|
|
@@ -313,6 +313,11 @@
|
|
interrupts = <12 2>;
|
|
wakeup-gpios = <&gpio7 12 GPIO_ACTIVE_LOW>;
|
|
};
|
|
+
|
|
+ accel@1e {
|
|
+ compatible = "nxp,fxos8700";
|
|
+ reg = <0x1e>;
|
|
+ };
|
|
};
|
|
|
|
&ldb {
|
|
diff --git a/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi
|
|
index 54b2bea..8942bec 100644
|
|
--- a/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi
|
|
+++ b/arch/arm/boot/dts/imx6qdl-gw53xx.dtsi
|
|
@@ -304,6 +304,11 @@
|
|
interrupts = <11 2>;
|
|
wakeup-gpios = <&gpio1 11 GPIO_ACTIVE_LOW>;
|
|
};
|
|
+
|
|
+ accel@1e {
|
|
+ compatible = "nxp,fxos8700";
|
|
+ reg = <0x1e>;
|
|
+ };
|
|
};
|
|
|
|
&ldb {
|
|
diff --git a/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi b/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi
|
|
index 1b6c133..c40583d 100644
|
|
--- a/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi
|
|
+++ b/arch/arm/boot/dts/imx6qdl-gw54xx.dtsi
|
|
@@ -361,6 +361,11 @@
|
|
interrupts = <12 2>;
|
|
wakeup-gpios = <&gpio7 12 GPIO_ACTIVE_LOW>;
|
|
};
|
|
+
|
|
+ accel@1e {
|
|
+ compatible = "nxp,fxos8700";
|
|
+ reg = <0x1e>;
|
|
+ };
|
|
};
|
|
|
|
&ldb {
|
|
--
|
|
2.7.4
|
|
|