├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs ├── alsa-utils.png ├── kmod.png └── wm8960blkdiag.png ├── examples ├── asound.conf.alsa ├── asound.conf.pulse ├── mt7628an_mediatek_linkit-smart-7688.dts └── mt7628an_widora_neo.dtsi └── src ├── Kconfig ├── Makefile └── mt762x-wm8960.c /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | .* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/README.md -------------------------------------------------------------------------------- /docs/alsa-utils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/docs/alsa-utils.png -------------------------------------------------------------------------------- /docs/kmod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/docs/kmod.png -------------------------------------------------------------------------------- /docs/wm8960blkdiag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/docs/wm8960blkdiag.png -------------------------------------------------------------------------------- /examples/asound.conf.alsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/examples/asound.conf.alsa -------------------------------------------------------------------------------- /examples/asound.conf.pulse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/examples/asound.conf.pulse -------------------------------------------------------------------------------- /examples/mt7628an_mediatek_linkit-smart-7688.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/examples/mt7628an_mediatek_linkit-smart-7688.dts -------------------------------------------------------------------------------- /examples/mt7628an_widora_neo.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/examples/mt7628an_widora_neo.dtsi -------------------------------------------------------------------------------- /src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/src/Kconfig -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/mt762x-wm8960.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redchenjs/mt762x-wm8960/HEAD/src/mt762x-wm8960.c --------------------------------------------------------------------------------