blob: c20649666abe5dcbbf628f6c2d1692d3e7190eeb [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Brian Austindfe0f982012-04-27 15:45:52 -05002/*
3 * linux/sound/cs42l52.h -- Platform data for CS42L52
4 *
5 * Copyright (c) 2012 Cirrus Logic Inc.
Brian Austindfe0f982012-04-27 15:45:52 -05006 */
7
8#ifndef __CS42L52_H
9#define __CS42L52_H
10
11struct cs42l52_platform_data {
12
13 /* MICBIAS Level. Check datasheet Pg48 */
14 unsigned int micbias_lvl;
15
Brian Austin44b2ed52013-11-14 11:46:11 -060016 /* MICA mode selection Differential or Single-ended */
17 bool mica_diff_cfg;
Brian Austindfe0f982012-04-27 15:45:52 -050018
Brian Austin44b2ed52013-11-14 11:46:11 -060019 /* MICB mode selection Differential or Single-ended */
20 bool micb_diff_cfg;
Brian Austindfe0f982012-04-27 15:45:52 -050021
Brian Austindfe0f982012-04-27 15:45:52 -050022 /* Charge Pump Freq. Check datasheet Pg73 */
23 unsigned int chgfreq;
24
Brian Austin6dd17752013-10-25 10:01:14 -050025 /* Reset GPIO */
26 unsigned int reset_gpio;
Brian Austindfe0f982012-04-27 15:45:52 -050027};
28
29#endif /* __CS42L52_H */