Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 86ed3669 authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: WM9081 mono DAC with integrated 2.6W class AB/D amplifier driver



The WM9081 is designed to provide high power output at low distortion
levels in space-constrained portable applications.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent b4852b79
Loading
Loading
Loading
Loading

include/sound/wm9081.h

0 → 100644
+25 −0
Original line number Diff line number Diff line
/*
 * linux/sound/wm9081.h -- Platform data for WM9081
 *
 * Copyright 2009 Wolfson Microelectronics. PLC.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __LINUX_SND_WM_9081_H
#define __LINUX_SND_WM_9081_H

struct wm9081_retune_mobile_setting {
	const char *name;
	unsigned int rate;
	u16 config[20];
};

struct wm9081_retune_mobile_config {
	struct wm9081_retune_mobile_setting *configs;
	int num_configs;
};

#endif
+4 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ config SND_SOC_ALL_CODECS
	select SND_SOC_WM8971 if I2C
	select SND_SOC_WM8988 if SND_SOC_I2C_AND_SPI
	select SND_SOC_WM8990 if I2C
	select SND_SOC_WM9081 if I2C
	select SND_SOC_WM9705 if SND_SOC_AC97_BUS
	select SND_SOC_WM9712 if SND_SOC_AC97_BUS
	select SND_SOC_WM9713 if SND_SOC_AC97_BUS
@@ -156,6 +157,9 @@ config SND_SOC_WM8988
config SND_SOC_WM8990
	tristate

config SND_SOC_WM9081
	tristate

config SND_SOC_WM9705
	tristate

+2 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ snd-soc-wm8960-objs := wm8960.o
snd-soc-wm8971-objs := wm8971.o
snd-soc-wm8988-objs := wm8988.o
snd-soc-wm8990-objs := wm8990.o
snd-soc-wm9081-objs := wm9081.o
snd-soc-wm9705-objs := wm9705.o
snd-soc-wm9712-objs := wm9712.o
snd-soc-wm9713-objs := wm9713.o
@@ -62,6 +63,7 @@ obj-$(CONFIG_SND_SOC_WM8940) += snd-soc-wm8940.o
obj-$(CONFIG_SND_SOC_WM8960)	+= snd-soc-wm8960.o
obj-$(CONFIG_SND_SOC_WM8988)	+= snd-soc-wm8988.o
obj-$(CONFIG_SND_SOC_WM8990)	+= snd-soc-wm8990.o
obj-$(CONFIG_SND_SOC_WM9081)	+= snd-soc-wm9081.o
obj-$(CONFIG_SND_SOC_WM9705)	+= snd-soc-wm9705.o
obj-$(CONFIG_SND_SOC_WM9712)	+= snd-soc-wm9712.o
obj-$(CONFIG_SND_SOC_WM9713)	+= snd-soc-wm9713.o
+1532 −0

File added.

Preview size limit exceeded, changes collapsed.

+787 −0

File added.

Preview size limit exceeded, changes collapsed.