1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#ifndef __SOUND_PCXHR_MIX22_H
24#define __SOUND_PCXHR_MIX22_H
25
26struct pcxhr_mgr;
27
28int hr222_sub_init(struct pcxhr_mgr *mgr);
29int hr222_sub_set_clock(struct pcxhr_mgr *mgr, unsigned int rate,
30 int *changed);
31int hr222_get_external_clock(struct pcxhr_mgr *mgr,
32 enum pcxhr_clock_type clock_type,
33 int *sample_rate);
34
35int hr222_read_gpio(struct pcxhr_mgr *mgr, int is_gpi, int *value);
36int hr222_write_gpo(struct pcxhr_mgr *mgr, int value);
37int hr222_manage_timecode(struct pcxhr_mgr *mgr, int enable);
38
39#define HR222_LINE_PLAYBACK_LEVEL_MIN 0
40#define HR222_LINE_PLAYBACK_ZERO_LEVEL 51
41#define HR222_LINE_PLAYBACK_LEVEL_MAX 99
42
43#define HR222_LINE_CAPTURE_LEVEL_MIN 0
44#define HR222_LINE_CAPTURE_ZERO_LEVEL 223
45#define HR222_LINE_CAPTURE_LEVEL_MAX 255
46#define HR222_MICRO_CAPTURE_LEVEL_MIN 0
47#define HR222_MICRO_CAPTURE_LEVEL_MAX 210
48
49int hr222_update_analog_audio_level(struct snd_pcxhr *chip,
50 int is_capture,
51 int channel);
52int hr222_set_audio_source(struct snd_pcxhr *chip);
53int hr222_iec958_capture_byte(struct snd_pcxhr *chip, int aes_idx,
54 unsigned char *aes_bits);
55int hr222_iec958_update_byte(struct snd_pcxhr *chip, int aes_idx,
56 unsigned char aes_bits);
57
58int hr222_add_mic_controls(struct snd_pcxhr *chip);
59
60#endif
61