2014-04-28 11:59:10 +00:00
|
|
|
/*
|
|
|
|
* 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 */
|
2014-09-19 11:15:45 +00:00
|
|
|
|
2014-11-18 08:50:18 +00:00
|
|
|
unsigned int jd_mode;
|
2017-06-28 12:49:37 +00:00
|
|
|
/* Use level triggered irq */
|
|
|
|
bool level_trigger_irq;
|
2017-06-28 12:49:38 +00:00
|
|
|
/* Invert JD1_1 status polarity */
|
|
|
|
bool inv_jd1_1;
|
2017-12-11 21:26:40 +00:00
|
|
|
|
|
|
|
/* Value to asign to snd_soc_card.long_name */
|
|
|
|
const char *long_name;
|
2014-04-28 11:59:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|