sta32x.h 912 B

123456789101112131415161718192021222324252627282930313233343536
  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. #define STA32X_OCFG_2CH 0
  15. #define STA32X_OCFG_2_1CH 1
  16. #define STA32X_OCFG_1CH 3
  17. #define STA32X_OM_CH1 0
  18. #define STA32X_OM_CH2 1
  19. #define STA32X_OM_CH3 2
  20. #define STA32X_THERMAL_ADJUSTMENT_ENABLE 1
  21. #define STA32X_THERMAL_RECOVERY_ENABLE 2
  22. struct sta32x_platform_data {
  23. int output_conf;
  24. int ch1_output_mapping;
  25. int ch2_output_mapping;
  26. int ch3_output_mapping;
  27. int thermal_conf;
  28. int needs_esd_watchdog;
  29. };
  30. #endif /* __LINUX_SND__STA32X_H */