* Use latest ODROID-N2+ patches (partial #929) Use the queued patches (and fixes) for upstream ODROID-N2+ support. This uses the clock settings from meson-g12b-a311d.dtsi running the CPUs at the following clocks: - 4xA73@2.2GHz - 2xA53@1.8GHz * Actually fix CDC ACM error recovery path (#921) Remove the revert of the cool-down patch and add the actual fix for the CDC ACM error recovery path.
43 lines
1.5 KiB
Diff
43 lines
1.5 KiB
Diff
From 5f7bab7b52bc68738dd23af62a085dcc45c22f79 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <5f7bab7b52bc68738dd23af62a085dcc45c22f79.1603880585.git.stefan@agner.ch>
|
|
In-Reply-To: <59bbf3567b02c36edfa4ee013d7e7e8c492756f2.1603880585.git.stefan@agner.ch>
|
|
References: <59bbf3567b02c36edfa4ee013d7e7e8c492756f2.1603880585.git.stefan@agner.ch>
|
|
From: Jerome Brunet <jbrunet@baylibre.com>
|
|
Date: Thu, 7 May 2020 00:16:55 +0200
|
|
Subject: [PATCH 04/14] arm64: dts: meson: g12: add internal DAC
|
|
|
|
add internal audio DAC support on the g12 and sm1 SoC family
|
|
|
|
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
|
|
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
|
|
Link: https://lore.kernel.org/r/20200506221656.477379-7-jbrunet@baylibre.com
|
|
---
|
|
arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi | 11 +++++++++++
|
|
1 file changed, 11 insertions(+)
|
|
|
|
diff --git a/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi b/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
|
|
index c0aef7d69117..593a006f4b7b 100644
|
|
--- a/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
|
|
+++ b/arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
|
|
@@ -250,6 +250,17 @@ hwrng: rng@218 {
|
|
};
|
|
};
|
|
|
|
+ acodec: audio-controller@32000 {
|
|
+ compatible = "amlogic,t9015";
|
|
+ reg = <0x0 0x32000 0x0 0x14>;
|
|
+ #sound-dai-cells = <0>;
|
|
+ sound-name-prefix = "ACODEC";
|
|
+ clocks = <&clkc CLKID_AUDIO_CODEC>;
|
|
+ clock-names = "pclk";
|
|
+ resets = <&reset RESET_AUDIO_CODEC>;
|
|
+ status = "disabled";
|
|
+ };
|
|
+
|
|
periphs: bus@34400 {
|
|
compatible = "simple-bus";
|
|
reg = <0x0 0x34400 0x0 0x400>;
|
|
--
|
|
2.29.1
|
|
|