forked from Openwrt-EcoNet/openwrt
Add STM32MP157C-DK2 support. This profile also supports the STM32MP157F-DK2 board. The only difference between these two boards is the CPU frequency (650MHz for 157C and 800MHz for 157F). A SCMI variant is available. With this variant the reset and clock resources are provided by OP-TEE and the associated SCMI services. It is the configuration recommended by STMicroelectronics, with secured system resources. The specifications bellow only list supported features. Specifications -------------- SOC: STM32MP157C RAM: 512 MiB Storage: SD Card Ethernet: 1x 1 Gbps Wireless: 2.4GHz Cypress CYW43455 (802.11b/g/n) LEDs: Heartbeat (Blue) USB: 4x 2.0 Type-A Signed-off-by: Thomas Richard <thomas.richard@bootlin.com> Link: https://github.com/openwrt/openwrt/pull/18119 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
37 lines
982 B
Diff
37 lines
982 B
Diff
From c24e7ae60d3e97799998466a4220ef6ffa0e4c94 Mon Sep 17 00:00:00 2001
|
|
From: Valentin Caron <valentin.caron@foss.st.com>
|
|
Date: Tue, 27 Aug 2024 16:04:49 +0200
|
|
Subject: [PATCH] ARM: dts: stm32: rtc, add LSCO to WLAN/BT module on
|
|
stm32mp157c-dk2
|
|
|
|
On stm32mp157c-dk2 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/stm32mp157c-dk2.dts | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
--- a/arch/arm/boot/dts/st/stm32mp157c-dk2.dts
|
|
+++ b/arch/arm/boot/dts/st/stm32mp157c-dk2.dts
|
|
@@ -84,6 +84,16 @@
|
|
};
|
|
};
|
|
|
|
+&rtc {
|
|
+ pinctrl-names = "default";
|
|
+ pinctrl-0 = <&rtc_rsvd_pins_a>;
|
|
+
|
|
+ rtc_lsco_pins_a: rtc-lsco-0 {
|
|
+ pins = "out2_rmp";
|
|
+ function = "lsco";
|
|
+ };
|
|
+};
|
|
+
|
|
&usart2 {
|
|
pinctrl-names = "default", "sleep", "idle";
|
|
pinctrl-0 = <&usart2_pins_c>;
|