Since the move to 5.10 multiple users experience stability issues leading to random crashes. All reboots follow a SError Interrupt: [48112.247242] SError Interrupt on CPU5, code 0xbf000000 -- SError ... Revert back to Linux 5.9.16 for now.
56 lines
1.8 KiB
Diff
56 lines
1.8 KiB
Diff
From 7dba042e7863dc61ec74c0759493264e48d32df2 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <7dba042e7863dc61ec74c0759493264e48d32df2.1622055679.git.stefan@agner.ch>
|
|
In-Reply-To: <0955f7e64f302c5c331b90fd07fc48dfb677eab5.1622055679.git.stefan@agner.ch>
|
|
References: <0955f7e64f302c5c331b90fd07fc48dfb677eab5.1622055679.git.stefan@agner.ch>
|
|
From: Christian Hewitt <christianshewitt@gmail.com>
|
|
Date: Mon, 11 Jan 2021 13:58:31 +0000
|
|
Subject: [PATCH 04/11] arm64: dts: meson: add i2c3/rtc nodes and rtc aliases
|
|
to ODROID-N2 dtsi
|
|
|
|
Enable the onboard pcf8563 rtc hardware on ODROID N2/N2+ boards via the
|
|
common dtsi. Also add aliases to ensure vrtc does not claim /dev/rtc0.
|
|
|
|
Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
|
|
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
|
|
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
|
|
Link: https://lore.kernel.org/r/20210111135831.2218-1-christianshewitt@gmail.com
|
|
---
|
|
.../boot/dts/amlogic/meson-g12b-odroid-n2.dtsi | 14 ++++++++++++++
|
|
1 file changed, 14 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi b/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi
|
|
index 6982632ae646..5927c4493f5a 100644
|
|
--- a/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi
|
|
+++ b/arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi
|
|
@@ -13,6 +13,8 @@ / {
|
|
aliases {
|
|
serial0 = &uart_AO;
|
|
ethernet0 = ðmac;
|
|
+ rtc0 = &rtc;
|
|
+ rtc1 = &vrtc;
|
|
};
|
|
|
|
dioo2133: audio-amplifier-0 {
|
|
@@ -478,6 +480,18 @@ &ir {
|
|
linux,rc-map-name = "rc-odroid";
|
|
};
|
|
|
|
+&i2c3 {
|
|
+ status = "okay";
|
|
+ pinctrl-0 = <&i2c3_sda_a_pins>, <&i2c3_sck_a_pins>;
|
|
+ pinctrl-names = "default";
|
|
+
|
|
+ rtc: rtc@51 {
|
|
+ compatible = "nxp,pcf8563";
|
|
+ reg = <0x51>;
|
|
+ wakeup-source;
|
|
+ };
|
|
+};
|
|
+
|
|
&pwm_ab {
|
|
pinctrl-0 = <&pwm_a_e_pins>;
|
|
pinctrl-names = "default";
|
|
--
|
|
2.31.1
|
|
|