blob: e8ce8ee7d62d996c0be5cd7ecb93baabefc37a57 [file] [log] [blame]
Mark Brownb6877a42010-03-03 11:43:38 +00001/*
2 * wm8960.h -- WM8960 Soc Audio driver platform data
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef _WM8960_PDATA_H
10#define _WM8960_PDATA_H
11
12#define WM8960_DRES_400R 0
13#define WM8960_DRES_200R 1
14#define WM8960_DRES_600R 2
15#define WM8960_DRES_150R 3
16#define WM8960_DRES_MAX 3
17
18struct wm8960_data {
Mark Brown913d7b42010-03-03 13:47:03 +000019 bool capless; /* Headphone outputs configured in capless mode */
20
Mark Brown37061632012-09-13 11:46:58 +080021 bool shared_lrclk; /* DAC and ADC LRCLKs are wired together */
Mark Brownb6877a42010-03-03 11:43:38 +000022};
23
24#endif