summaryrefslogtreecommitdiff
path: root/include/sound/rt5682.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sound/rt5682.h')
-rw-r--r--include/sound/rt5682.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/include/sound/rt5682.h b/include/sound/rt5682.h
index 0251797ab438..4256df721e3a 100644
--- a/include/sound/rt5682.h
+++ b/include/sound/rt5682.h
@@ -1,11 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
/*
* linux/sound/rt5682.h -- Platform data for RT5682
*
* Copyright 2018 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_RT5682_H
@@ -27,13 +24,22 @@ enum rt5682_jd_src {
RT5682_JD1,
};
-struct rt5682_platform_data {
-
- int ldo1_en; /* GPIO for LDO1_EN */
+enum rt5682_dai_clks {
+ RT5682_DAI_WCLK_IDX,
+ RT5682_DAI_BCLK_IDX,
+ RT5682_DAI_NUM_CLKS,
+};
+struct rt5682_platform_data {
enum rt5682_dmic1_data_pin dmic1_data_pin;
enum rt5682_dmic1_clk_pin dmic1_clk_pin;
enum rt5682_jd_src jd_src;
+ unsigned int btndet_delay;
+ unsigned int dmic_clk_rate;
+ unsigned int dmic_delay;
+ bool dmic_clk_driving_high;
+
+ const char *dai_clk_names[RT5682_DAI_NUM_CLKS];
};
#endif