mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Add 88 new patches to series. tag: orange-pi-5.17-20220409-0454 * Fix the applicability of patches.megous to the v5.17.3 kernel * Fix series.conf. Disable the patch that is not being applied * Add support for sun50i-h6-orangepi-3-lts * Check the applicability in the series * Move to a patches.armbian folder * Bananapro: add AXP209 regulators * fix-gpio-kconfig remove if EXPERT to allow normal build * sunxi-5.17: Remove unused patches
51 lines
1.1 KiB
Diff
51 lines
1.1 KiB
Diff
From c241059400999c4e87fba5fc2463148da6b81369 Mon Sep 17 00:00:00 2001
|
|
From: Ondrej Jirman <megi@xff.cz>
|
|
Date: Sat, 2 Apr 2022 02:24:26 +0200
|
|
Subject: [PATCH 527/544] ARM: dts: sun8i-h3-orange-pi-one: Enable all gpio
|
|
header UARTs
|
|
|
|
---
|
|
arch/arm/boot/dts/sun8i-h3-orangepi-one.dts | 9 ++++++---
|
|
1 file changed, 6 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts b/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts
|
|
index 96d2d5498c64..50479e716eae 100644
|
|
--- a/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts
|
|
+++ b/arch/arm/boot/dts/sun8i-h3-orangepi-one.dts
|
|
@@ -54,6 +54,9 @@ / {
|
|
aliases {
|
|
ethernet0 = &emac;
|
|
serial0 = &uart0;
|
|
+ serial1 = &uart1;
|
|
+ serial2 = &uart2;
|
|
+ serial3 = &uart3;
|
|
};
|
|
|
|
chosen {
|
|
@@ -183,19 +186,19 @@ &uart0 {
|
|
&uart1 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&uart1_pins>;
|
|
- status = "disabled";
|
|
+ status = "okay";
|
|
};
|
|
|
|
&uart2 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&uart2_pins>;
|
|
- status = "disabled";
|
|
+ status = "okay";
|
|
};
|
|
|
|
&uart3 {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&uart3_pins>;
|
|
- status = "disabled";
|
|
+ status = "okay";
|
|
};
|
|
|
|
&usb_otg {
|
|
--
|
|
2.34.1
|
|
|