David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * wm8960.h -- WM8960 Soc Audio driver platform data |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 4 | */ |
| 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 | |
| 15 | struct 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 |