mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-29 01:59:02 +00:00
58f4667a37
New stm32 target introduces support for stm32mp1 based devices.
For now it includes an initial support of the STM32MP135F-DK device.
The specifications bellow only list supported features.
Specifications
--------------
SOC: STM32MP135FAF7
RAM: 512 MiB
Storage: SD Card
Ethernet: 2x 100 Mbps
Wireless: 2.4GHz Cypress CYW43455 (802.11b/g/n)
LEDs: Heartbeat (Blue)
Buttons: 1x Reset, 1x User (USER2)
USB: 4x 2.0 Type-A
Signed-off-by: Thomas Richard <thomas.richard@bootlin.com>
Link: https://github.com/openwrt/openwrt/pull/16716
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit 851e7f77e4
)
Link: https://github.com/openwrt/openwrt/pull/17097
Signed-off-by: Petr Štetiar <ynezz@true.cz>
35 lines
913 B
Diff
35 lines
913 B
Diff
From d6e424f926397e682fc44a952d5b3a1e34b2cd73 Mon Sep 17 00:00:00 2001
|
|
From: Valentin Caron <valentin.caron@foss.st.com>
|
|
Date: Tue, 27 Aug 2024 16:04:50 +0200
|
|
Subject: [PATCH] ARM: dts: stm32: rtc, add LSCO to WLAN/BT module on
|
|
stm32mp135f-dk
|
|
|
|
On stm32mp135f-dk board, WLAN/BT module LPO_IN pin is wired to
|
|
RTC OUT2_RMP pin.
|
|
|
|
Provide a pinctrl configuration to enable LSCO on OUT2_RMP.
|
|
|
|
Signed-off-by: Valentin Caron <valentin.caron@foss.st.com>
|
|
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
|
|
---
|
|
arch/arm/boot/dts/st/stm32mp135f-dk.dts | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
--- a/arch/arm/boot/dts/st/stm32mp135f-dk.dts
|
|
+++ b/arch/arm/boot/dts/st/stm32mp135f-dk.dts
|
|
@@ -184,7 +184,14 @@
|
|
};
|
|
|
|
&rtc {
|
|
+ pinctrl-names = "default";
|
|
+ pinctrl-0 = <&rtc_rsvd_pins_a>;
|
|
status = "okay";
|
|
+
|
|
+ rtc_lsco_pins_a: rtc-lsco-0 {
|
|
+ pins = "out2_rmp";
|
|
+ function = "lsco";
|
|
+ };
|
|
};
|
|
|
|
&scmi_regu {
|