ALSA SoC machine driver for MT762X SoCs with WM8960 CODEC chip.
- OpenWrt with kernel 5.10 or later.
- Add the
mt762x-wm8960
folder to thepackage/kernel
folder of OpenWrt.
cd package/kernel
git clone https://github.com/redchenjs/mt762x-wm8960.git
- Modify the target DTS file in the
target/linux/ramips/dts
folder of OpenWrt according to the example DTS files.
WM8960 can get MCLK
from an externel clock source or the refclk
output of MT762X SoCs (12MHz). To enable the refclk
output, you can modify the dts file as follows:
refclk {
groups = "refclk";
function = "refclk";
};
WM8960 can internally get ADCLRC
from DACLRC
and the ADCLRC
pin can be used as GPIO1
. It is useful for some boards that only have the DACLRC
pin connected and the ADCLRC
pin is left floating. To enable this feature, modify the dts file as follows:
codec: wm8960@1a {
compatible = "wlf,wm8960";
reg = <0x1a>;
wlf,shared-lrclk;
wlf,hp-cfg = <0 0 0>;
wlf,gpio-cfg = <1 0>;
};
make menuconfig
- Navigate to
> Kernel modules > Sound Support
. - Select
kmod-sound-core
andkmod-sound-mt762x-wm8960
.
- Navigate to
> Sound
and selectalsa-utils
.
make -j9 V=s
Examples of /etc/asound.conf
:
examples/asound.conf.alsa
for ALSA only.examples/asound.conf.pulse
for PulseAudio.
After restarting, the output of WM8960 is muted. Use these commands to set the volume.
amixer sset "Headphone" 90
amixer sset "Speaker" 90
amixer sset "Left Output Mixer PCM" on
amixer sset "Right Output Mixer PCM" on
amixer sset "Left Input Mixer Boost" on
amixer sset "Right Input Mixer Boost" on
amixer sset "ALC Function" "Stereo"