pcxhr_mix22.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Driver for Digigram pcxhr compatible soundcards
  4. *
  5. * low level interface with interrupt ans message handling
  6. *
  7. * Copyright (c) 2004 by Digigram <[email protected]>
  8. */
  9. #ifndef __SOUND_PCXHR_MIX22_H
  10. #define __SOUND_PCXHR_MIX22_H
  11. struct pcxhr_mgr;
  12. int hr222_sub_init(struct pcxhr_mgr *mgr);
  13. int hr222_sub_set_clock(struct pcxhr_mgr *mgr, unsigned int rate,
  14. int *changed);
  15. int hr222_get_external_clock(struct pcxhr_mgr *mgr,
  16. enum pcxhr_clock_type clock_type,
  17. int *sample_rate);
  18. int hr222_read_gpio(struct pcxhr_mgr *mgr, int is_gpi, int *value);
  19. int hr222_write_gpo(struct pcxhr_mgr *mgr, int value);
  20. int hr222_manage_timecode(struct pcxhr_mgr *mgr, int enable);
  21. #define HR222_LINE_PLAYBACK_LEVEL_MIN 0 /* -25.5 dB */
  22. #define HR222_LINE_PLAYBACK_ZERO_LEVEL 51 /* 0.0 dB */
  23. #define HR222_LINE_PLAYBACK_LEVEL_MAX 99 /* +24.0 dB */
  24. #define HR222_LINE_CAPTURE_LEVEL_MIN 0 /* -111.5 dB */
  25. #define HR222_LINE_CAPTURE_ZERO_LEVEL 223 /* 0.0 dB */
  26. #define HR222_LINE_CAPTURE_LEVEL_MAX 255 /* +16 dB */
  27. #define HR222_MICRO_CAPTURE_LEVEL_MIN 0 /* -98.5 dB */
  28. #define HR222_MICRO_CAPTURE_LEVEL_MAX 210 /* +6.5 dB */
  29. int hr222_update_analog_audio_level(struct snd_pcxhr *chip,
  30. int is_capture,
  31. int channel);
  32. int hr222_set_audio_source(struct snd_pcxhr *chip);
  33. int hr222_iec958_capture_byte(struct snd_pcxhr *chip, int aes_idx,
  34. unsigned char *aes_bits);
  35. int hr222_iec958_update_byte(struct snd_pcxhr *chip, int aes_idx,
  36. unsigned char aes_bits);
  37. int hr222_add_mic_controls(struct snd_pcxhr *chip);
  38. #endif /* __SOUND_PCXHR_MIX22_H */