mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 20:53:53 +08:00
ac4fc3eeb7
We can know if dmic is used by reading the value of dmic1_data_pin and dmic2_data_pin. Also IRQ must be used if codec JD or button detection function is used. So, dmic_en and en_jd_func can be remove from platform data. Signed-off-by: Bard Liao <bardliao@realtek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
30 lines
688 B
C
30 lines
688 B
C
/*
|
|
* 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;
|
|
|
|
unsigned int dmic1_data_pin;
|
|
/* 0 = IN2N; 1 = GPIO5; 2 = GPIO11 */
|
|
unsigned int dmic2_data_pin;
|
|
/* 0 = IN2P; 1 = GPIO6; 2 = GPIO10; 3 = GPIO12 */
|
|
|
|
unsigned int hp_det_gpio;
|
|
bool gpio_hp_det_active_high;
|
|
|
|
unsigned int jd_mode;
|
|
};
|
|
|
|
#endif
|