mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* meson64-edge/5.19: use `tag:v5.19-rc2`, meson64 kernel config and kernel patches, by @adeepv * meson64-edge/5.19: we don't need `CONFIG_ARCH_ROCKCHIP=y` for meson64, right? * meson64-edge/5.19: remove `meson_drv_shutdown` revert patch, instead `CONFIG_DRM_MESON=y` and its dependencies in .config - this allows other meson64's to shutdown properly, while allowing the N2(+) to reboot without kernel-side hangs * meson64-edge/5.19: odroidn2(+): remove SD UHS modes patch for ODROID N2(+) - it works when cold-booted - but changes voltage to enable - when rebooted, voltage persists and uboot can't read the SD anymore - adding the "odroid,reboot" driver+dt that is supposed to fix this, doesn't - so for now remove it * meson64-edge/5.19: odroidn2(+): add dumb gpio fan at 30 celsius - backport from rework in 5.10 * meson64-edge/5.19: odroidhc4: bring back `fan1_input` by adding fan details to DT - yeah, I know; the cooling map is right there too, so empty, poor thing. for later. * meson64-edge/5.19: bump to 5.19-rc3 * meson64-edge/5.19: radxa-zero: add patch to remove UHS mode so `wifi` works - sent by @pyavitz: https://raw.githubusercontent.com/pyavitz/debian-image-builder/feature/patches/amlogic/radxazero/wifi/001-arm64-dts-amlogic-radxa-zero-sdio-card-speed.patch - tested by @lanefu * meson64-edge/5.19: bump to 5.19-rc4 * meson64-edge/5.19: bump to 5.19-rc5 * meson64-edge/5.19: bump to 5.19-rc7 * meson64-edge/5.19: bump to 5.19.y branch, which is 5.19.0 right now * Add kernel config - tested on Odroid N2+ Co-authored-by: Vyacheslav Bocharov <adeep@lexina.in> Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
42 lines
1.1 KiB
Diff
42 lines
1.1 KiB
Diff
From 9c2b8d82e36bf5ce932e6561d13adf5c7c5d367f Mon Sep 17 00:00:00 2001
|
|
From: Neil Armstrong <narmstrong@baylibre.com>
|
|
Date: Thu, 3 Nov 2016 15:29:25 +0100
|
|
Subject: [PATCH 06/90] HACK: arm64: dts: meson: add support for GX PM and
|
|
Virtual RTC
|
|
|
|
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
|
|
---
|
|
arch/arm64/boot/dts/amlogic/meson-gx.dtsi | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/amlogic/meson-gx.dtsi b/arch/arm64/boot/dts/amlogic/meson-gx.dtsi
|
|
index 99b8916e0c5d..d6dc407127cd 100644
|
|
--- a/arch/arm64/boot/dts/amlogic/meson-gx.dtsi
|
|
+++ b/arch/arm64/boot/dts/amlogic/meson-gx.dtsi
|
|
@@ -221,6 +221,10 @@ sm: secure-monitor {
|
|
};
|
|
};
|
|
|
|
+ system-suspend {
|
|
+ compatible = "amlogic,meson-gx-pm";
|
|
+ };
|
|
+
|
|
efuse: efuse {
|
|
compatible = "amlogic,meson-gx-efuse", "amlogic,meson-gxbb-efuse";
|
|
#address-cells = <1>;
|
|
@@ -459,6 +463,11 @@ clkc_AO: clock-controller {
|
|
};
|
|
};
|
|
|
|
+ vrtc: rtc@a8 {
|
|
+ compatible = "amlogic,meson-vrtc";
|
|
+ reg = <0x0 0x000a8 0x0 0x4>;
|
|
+ };
|
|
+
|
|
cec_AO: cec@100 {
|
|
compatible = "amlogic,meson-gx-ao-cec";
|
|
reg = <0x0 0x00100 0x0 0x14>;
|
|
--
|
|
2.35.1
|
|
|