/** * enum adau1761_digmic_jackdet_pin_mode - Configuration of the JACKDET/MICIN pin * @ADAU1761_DIGMIC_JACKDET_PIN_MODE_NONE: Disable the pin * @ADAU1761_DIGMIC_JACKDET_PIN_MODE_DIGMIC: Configure the pin for usage as * digital microphone input. * @ADAU1761_DIGMIC_JACKDET_PIN_MODE_JACKDETECT: Configure the pin for jack * insertion detection.
*/ enum adau1761_digmic_jackdet_pin_mode {
ADAU1761_DIGMIC_JACKDET_PIN_MODE_NONE,
ADAU1761_DIGMIC_JACKDET_PIN_MODE_DIGMIC,
ADAU1761_DIGMIC_JACKDET_PIN_MODE_JACKDETECT,
};
/** * struct adau1761_platform_data - ADAU1761 Codec driver platform data * @input_differential: If true the input pins will be configured in * differential mode. * @lineout_mode: Output mode for the LOUT/ROUT pins * @headphone_mode: Output mode for the LHP/RHP pins * @digmic_jackdetect_pin_mode: JACKDET/MICIN pin configuration * @jackdetect_debounce_time: Jack insertion detection debounce time. * Note: This value will only be used, if the JACKDET/MICIN pin is configured * for jack insertion detection. * @jackdetect_active_low: If true the jack insertion detection is active low. * Othwise it will be active high. * @micbias_voltage: Microphone voltage bias
*/ struct adau1761_platform_data { bool input_differential; enum adau1761_output_mode lineout_mode; enum adau1761_output_mode headphone_mode;
/** * struct adau1781_platform_data - ADAU1781 Codec driver platform data * @left_input_differential: If true configure the left input as * differential input. * @right_input_differential: If true configure the right input as differntial * input. * @use_dmic: If true configure the MIC pins as digital microphone pins instead * of analog microphone pins. * @micbias_voltage: Microphone voltage bias
*/ struct adau1781_platform_data { bool left_input_differential; bool right_input_differential;
bool use_dmic;
enum adau17x1_micbias_voltage micbias_voltage;
};
#endif
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.