blob: d22e848050259cb6e73fa47ea8da7b6e7495a32b [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * wm8960.h -- WM8960 Soc Audio driver platform data
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00004 */
5
6#ifndef _WM8960_PDATA_H
7#define _WM8960_PDATA_H
8
9#define WM8960_DRES_400R 0
10#define WM8960_DRES_200R 1
11#define WM8960_DRES_600R 2
12#define WM8960_DRES_150R 3
13#define WM8960_DRES_MAX 3
14
15struct wm8960_data {
16 bool capless; /* Headphone outputs configured in capless mode */
17
18 bool shared_lrclk; /* DAC and ADC LRCLKs are wired together */
19};
20
21#endif