sta32x.h 1015 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Platform data for ST STA32x ASoC codec driver.
  4. *
  5. * Copyright: 2011 Raumfeld GmbH
  6. * Author: Johannes Stezenbach <[email protected]>
  7. */
  8. #ifndef __LINUX_SND__STA32X_H
  9. #define __LINUX_SND__STA32X_H
  10. #define STA32X_OCFG_2CH 0
  11. #define STA32X_OCFG_2_1CH 1
  12. #define STA32X_OCFG_1CH 3
  13. #define STA32X_OM_CH1 0
  14. #define STA32X_OM_CH2 1
  15. #define STA32X_OM_CH3 2
  16. #define STA32X_THERMAL_ADJUSTMENT_ENABLE 1
  17. #define STA32X_THERMAL_RECOVERY_ENABLE 2
  18. struct sta32x_platform_data {
  19. u8 output_conf;
  20. u8 ch1_output_mapping;
  21. u8 ch2_output_mapping;
  22. u8 ch3_output_mapping;
  23. int needs_esd_watchdog;
  24. u8 drop_compensation_ns;
  25. unsigned int thermal_warning_recovery:1;
  26. unsigned int thermal_warning_adjustment:1;
  27. unsigned int fault_detect_recovery:1;
  28. unsigned int max_power_use_mpcc:1;
  29. unsigned int max_power_correction:1;
  30. unsigned int am_reduction_mode:1;
  31. unsigned int odd_pwm_speed_mode:1;
  32. unsigned int invalid_input_detect_mute:1;
  33. };
  34. #endif /* __LINUX_SND__STA32X_H */