mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-24 16:28:46 +00:00
Prepare to re-use the DTS for the RUTX50. Signed-off-by: David Bauer <mail@david-bauer.net> (cherry picked from commit dbc4be142e206e681ac53afa3fd1e4018e7843b7)
74 lines
1.4 KiB
Plaintext
74 lines
1.4 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "qcom-ipq4018-rutx.dtsi"
|
|
|
|
/ {
|
|
model = "Teltonika RUTX10";
|
|
compatible = "teltonika,rutx10";
|
|
|
|
soc {
|
|
leds {
|
|
compatible = "gpio-leds";
|
|
|
|
wifi2g {
|
|
label = "green:wifi2g";
|
|
gpios = <&stm32_io 19 GPIO_ACTIVE_HIGH>;
|
|
linux,default-trigger = "phy0tpt";
|
|
};
|
|
|
|
wifi5g {
|
|
label = "green:wifi5g";
|
|
gpios = <&stm32_io 18 GPIO_ACTIVE_HIGH>;
|
|
linux,default-trigger = "phy1tpt";
|
|
};
|
|
};
|
|
|
|
gpio_export {
|
|
compatible = "gpio-export";
|
|
#size-cells = <0>;
|
|
|
|
gpio_out {
|
|
gpio-export,name = "gpio_out";
|
|
gpio-export,output = <0>;
|
|
gpio-export,direction_may_change = <0>;
|
|
gpios = <&stm32_io 23 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
gpio_in {
|
|
gpio-export,name = "gpio_in";
|
|
gpio-export,input = <0>;
|
|
gpio-export,direction_may_change = <0>;
|
|
gpios = <&stm32_io 24 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
&blsp1_i2c3 {
|
|
status = "okay";
|
|
pinctrl-0 = <&i2c_0_pins>;
|
|
pinctrl-names = "default";
|
|
clock-frequency = <400000>;
|
|
|
|
stm32_io: stm32@74 {
|
|
compatible = "tlt,stm32v1";
|
|
#gpio-cells = <2>;
|
|
#interrupt-cells = <2>;
|
|
gpio-controller;
|
|
interrupt-controller;
|
|
interrupt-parent = <&tlmm>;
|
|
interrupts = <5 2>;
|
|
reg = <0x74>;
|
|
};
|
|
};
|
|
|
|
&wifi0 {
|
|
status = "okay";
|
|
qcom,ath10k-calibration-variant = "Teltonika-RUTX10";
|
|
};
|
|
|
|
&wifi1 {
|
|
status = "okay";
|
|
qcom,ath10k-calibration-variant = "Teltonika-RUTX10";
|
|
};
|