diff options
author | Johannes Stezenbach <js@sig21.net> | 2011-11-14 11:23:17 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-14 16:34:14 -0500 |
commit | e012ba249171a205c5735a76b947bdae9cf34c6e (patch) | |
tree | bca3a151f4aa57d15acb060ab141b09769e2fd1b /include | |
parent | 8f9aa2526b4e799ee8242762e35cd8e2ca0788b2 (diff) |
ASoC: sta32x: add platform data definition
Add a structure for platform specific configuration and use it,
thereby removing a few FIXMEs which marked hard-coded values.
Signed-off-by: Johannes Stezenbach <js@sig21.net>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/sound/sta32x.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/sound/sta32x.h b/include/sound/sta32x.h new file mode 100644 index 000000000000..45d7477c049b --- /dev/null +++ b/include/sound/sta32x.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | * Platform data for ST STA32x ASoC codec driver. | ||
3 | * | ||
4 | * Copyright: 2011 Raumfeld GmbH | ||
5 | * Author: Johannes Stezenbach <js@sig21.net> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | */ | ||
12 | #ifndef __LINUX_SND__STA32X_H | ||
13 | #define __LINUX_SND__STA32X_H | ||
14 | |||
15 | #define STA32X_OCFG_2CH 0 | ||
16 | #define STA32X_OCFG_2_1CH 1 | ||
17 | #define STA32X_OCFG_1CH 3 | ||
18 | |||
19 | #define STA32X_OM_CH1 0 | ||
20 | #define STA32X_OM_CH2 1 | ||
21 | #define STA32X_OM_CH3 2 | ||
22 | |||
23 | #define STA32X_THERMAL_ADJUSTMENT_ENABLE 1 | ||
24 | #define STA32X_THERMAL_RECOVERY_ENABLE 2 | ||
25 | |||
26 | struct sta32x_platform_data { | ||
27 | int output_conf; | ||
28 | int ch1_output_mapping; | ||
29 | int ch2_output_mapping; | ||
30 | int ch3_output_mapping; | ||
31 | int thermal_conf; | ||
32 | }; | ||
33 | |||
34 | #endif /* __LINUX_SND__STA32X_H */ | ||