aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/sound/rt5645.h
diff options
context:
space:
mode:
authorOder Chiou <oder_chiou@realtek.com>2014-04-28 19:59:10 +0800
committerMark Brown <broonie@linaro.org>2014-05-03 10:36:10 -0700
commit1319b2f6a565231ca2e3f368ab7f74fc4714c799 (patch)
tree53c72251c9aa2f864e56dce60729bb446e5140ea /include/sound/rt5645.h
parentASoC: rt5651: Staticise non-exported symbols (diff)
downloadwireguard-linux-1319b2f6a565231ca2e3f368ab7f74fc4714c799.tar.xz
wireguard-linux-1319b2f6a565231ca2e3f368ab7f74fc4714c799.zip
ASoC: rt5645: Add codec driver
This patch adds the Realtek ALC5645 codec driver. It is the base version that because the jack detect function is not implemented to it, the headphone and AMIC1 are not workable. We will fill up the further functions later. Signed-off-by: Bard Liao <bardliao@realtek.com> Signed-off-by: Oder Chiou <oder_chiou@realtek.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/sound/rt5645.h')
-rw-r--r--include/sound/rt5645.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/sound/rt5645.h b/include/sound/rt5645.h
new file mode 100644
index 000000000000..1de744c242f6
--- /dev/null
+++ b/include/sound/rt5645.h
@@ -0,0 +1,25 @@
+/*
+ * linux/sound/rt5645.h -- Platform data for RT5645
+ *
+ * Copyright 2013 Realtek Microelectronics
+ *
+ * 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_RT5645_H
+#define __LINUX_SND_RT5645_H
+
+struct rt5645_platform_data {
+ /* IN2 can optionally be differential */
+ bool in2_diff;
+
+ bool dmic_en;
+ unsigned int dmic1_data_pin;
+ /* 0 = IN2N; 1 = GPIO5; 2 = GPIO11 */
+ unsigned int dmic2_data_pin;
+ /* 0 = IN2P; 1 = GPIO6; 2 = GPIO10; 3 = GPIO12 */
+};
+
+#endif