mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
99545b4bb1
This target adds support for the Allwinner D1 RISC-V based SoCs. - RISC-V single-core T-Head C906 (RV64GCV) - Tensilica HiFi4 DSP - DDR2/DDR3 support - 10/100/1000M ethernet - usual peripherals like USB2, SPI, I2C, PWM, etc. Four boards are supported: - Dongshan Nezha STU - 512Mb RAM - ethernet - LicheePi RV Dock - 512Mb RAM - wireless-only (RTL8723DS) - MangoPi MQ-Pro - 512Mb RAM - there are pads available for an SPI flash - wireless-only (RTL8723DS) - Nezha D1 - 512Mb/1Gb/2Gb RAM - 256Mb NAND flash - ethernet, wireless Installation: Standard SD-card installation via dd-ing the generated image to an SD-card of at least 256Mb. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
24 lines
758 B
Diff
24 lines
758 B
Diff
From 87a77f803f5038e3fc64f45d5142ea402512029a Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Wed, 23 Jun 2021 21:18:47 -0500
|
|
Subject: [PATCH 082/117] ASoC: sun20i-codec: What is this ramp thing?
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
sound/soc/sunxi/sun20i-codec.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
--- a/sound/soc/sunxi/sun20i-codec.c
|
|
+++ b/sound/soc/sunxi/sun20i-codec.c
|
|
@@ -709,6 +709,10 @@ static int sun20i_codec_component_probe(
|
|
0x3 << SUN20I_CODEC_ADC_DIG_CTRL_ADC_VOL_EN,
|
|
0x3 << SUN20I_CODEC_ADC_DIG_CTRL_ADC_VOL_EN);
|
|
|
|
+ /* Maaagic... */
|
|
+ snd_soc_component_update_bits(component, SUN20I_CODEC_RAMP,
|
|
+ BIT(1) | BIT(0), BIT(0));
|
|
+
|
|
return 0;
|
|
|
|
err_assert_reset:
|