aboutsummaryrefslogtreecommitdiff
path: root/include/sound/wm8962.h
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2010-08-05 13:20:59 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2010-08-05 13:38:57 +0100
commit9a76f1ff6e299fbb04149fe15aff061351fd0dab (patch)
treea9101f20804588022dd6f3307663f58104ceb150 /include/sound/wm8962.h
parentbda7d2a862e6b788bca2d02d38a07966a9c92e48 (diff)
ASoC: Add initial WM8962 CODEC driver
The WM8962 is a low power, high performance stereo CODEC designed for portable digital audio applications. This initial driver release supports the key audio paths of the WM8962. Extended functionality, such as microphone detection, digital microphones and the advanced DSP signal enhancements provided by the device are not yet supported. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/sound/wm8962.h')
-rw-r--r--include/sound/wm8962.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/sound/wm8962.h b/include/sound/wm8962.h
new file mode 100644
index 00000000000..f70258e3471
--- /dev/null
+++ b/include/sound/wm8962.h
@@ -0,0 +1,23 @@
+/*
+ * wm8962.h -- WM8962 Soc Audio driver platform data
+ *
+ * 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 _WM8962_PDATA_H
+#define _WM8962_PDATA_H
+
+#define WM8962_MAX_GPIO 6
+
+/* Use to set GPIO default values to zero */
+#define WM8962_GPIO_SET 0x10000
+
+struct wm8962_pdata {
+ u32 gpio_init[WM8962_MAX_GPIO];
+
+ bool spk_mono; /* Speaker outputs tied together as mono */
+};
+
+#endif