ALSA: hda/realtek: Enable headset mic of Acer C20-820 with ALC269VC
[linux-2.6-block.git] / sound / usb / mixer.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
3e1aebef
DM
2#ifndef __USBMIXER_H
3#define __USBMIXER_H
4
3360b84b
TI
5#include <sound/info.h>
6
66354f18
SK
7struct media_mixer_ctl;
8
fef66ae7
TI
9struct usbmix_connector_map {
10 u8 id;
11 u8 delegated_id;
12 u8 control;
13 u8 channel;
14};
15
7b1eda22
DM
16struct usb_mixer_interface {
17 struct snd_usb_audio *chip;
1faa5d07 18 struct usb_host_interface *hostif;
7b1eda22
DM
19 struct list_head list;
20 unsigned int ignore_ctl_error;
21 struct urb *urb;
22 /* array[MAX_ID_ELEMS], indexed by unit id */
3360b84b 23 struct usb_mixer_elem_list **id_elems;
7b1eda22 24
23caaf19
DM
25 /* the usb audio specification version this interface complies to */
26 int protocol;
27
fef66ae7
TI
28 /* optional connector delegation map */
29 const struct usbmix_connector_map *connector_map;
30
7b1eda22
DM
31 /* Sound Blaster remote control stuff */
32 const struct rc_config *rc_cfg;
33 u32 rc_code;
34 wait_queue_head_t rc_waitq;
35 struct urb *rc_urb;
36 struct usb_ctrlrequest *rc_setup_packet;
37 u8 rc_buffer[6];
66354f18 38 struct media_mixer_ctl *media_mixer_ctl;
124751d5
TI
39
40 bool disconnected;
9e4d5c1b
GB
41
42 void *private_data;
43 void (*private_free)(struct usb_mixer_interface *mixer);
44 void (*private_suspend)(struct usb_mixer_interface *mixer);
7b1eda22
DM
45};
46
9e38658f
DM
47#define MAX_CHANNELS 16 /* max logical channels */
48
49enum {
50 USB_MIXER_BOOLEAN,
51 USB_MIXER_INV_BOOLEAN,
52 USB_MIXER_S8,
53 USB_MIXER_U8,
54 USB_MIXER_S16,
55 USB_MIXER_U16,
bc18e31c
JS
56 USB_MIXER_S32,
57 USB_MIXER_U32,
9e38658f 58};
7b1eda22 59
3360b84b
TI
60typedef void (*usb_mixer_elem_dump_func_t)(struct snd_info_buffer *buffer,
61 struct usb_mixer_elem_list *list);
62typedef int (*usb_mixer_elem_resume_func_t)(struct usb_mixer_elem_list *elem);
63
64struct usb_mixer_elem_list {
7b1eda22 65 struct usb_mixer_interface *mixer;
3360b84b
TI
66 struct usb_mixer_elem_list *next_id_elem; /* list of controls with same id */
67 struct snd_kcontrol *kctl;
7b1eda22 68 unsigned int id;
220345e9 69 bool is_std_info;
3360b84b
TI
70 usb_mixer_elem_dump_func_t dump;
71 usb_mixer_elem_resume_func_t resume;
72};
73
8c558076
TI
74/* iterate over mixer element list of the given unit id */
75#define for_each_mixer_elem(list, mixer, id) \
76 for ((list) = (mixer)->id_elems[id]; (list); (list) = (list)->next_id_elem)
77#define mixer_elem_list_to_info(list) \
78 container_of(list, struct usb_mixer_elem_info, head)
79
3360b84b
TI
80struct usb_mixer_elem_info {
81 struct usb_mixer_elem_list head;
7b1eda22
DM
82 unsigned int control; /* CS or ICN (high byte) */
83 unsigned int cmask; /* channel mask bitmap: 0 = master */
9f814105 84 unsigned int idx_off; /* Control index offset */
a6a33259
DM
85 unsigned int ch_readonly;
86 unsigned int master_readonly;
7b1eda22
DM
87 int channels;
88 int val_type;
89 int min, max, res;
90 int dBmin, dBmax;
91 int cached;
92 int cache_val[MAX_CHANNELS];
93 u8 initialized;
0f174b35 94 u8 min_mute;
f41d6049 95 void *private_data;
7b1eda22
DM
96};
97
3e1aebef
DM
98int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
99 int ignore_error);
a6cece9d 100void snd_usb_mixer_disconnect(struct usb_mixer_interface *mixer);
3e1aebef 101
7b1eda22
DM
102void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid);
103
104int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
105 int request, int validx, int value_set);
3e1aebef 106
220345e9
TI
107int snd_usb_mixer_add_list(struct usb_mixer_elem_list *list,
108 struct snd_kcontrol *kctl,
109 bool is_std_info);
110
111#define snd_usb_mixer_add_control(list, kctl) \
112 snd_usb_mixer_add_list(list, kctl, true)
ef9d5970 113
3360b84b
TI
114void snd_usb_mixer_elem_init_std(struct usb_mixer_elem_list *list,
115 struct usb_mixer_interface *mixer,
116 int unitid);
117
285de9c0
FH
118int snd_usb_mixer_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
119 unsigned int size, unsigned int __user *_tlv);
120
400362f1
TI
121#ifdef CONFIG_PM
122int snd_usb_mixer_suspend(struct usb_mixer_interface *mixer);
123int snd_usb_mixer_resume(struct usb_mixer_interface *mixer, bool reset_resume);
124#endif
125
eef90451
CA
126int snd_usb_set_cur_mix_value(struct usb_mixer_elem_info *cval, int channel,
127 int index, int value);
128
129int snd_usb_get_cur_mix_value(struct usb_mixer_elem_info *cval,
130 int channel, int index, int *value);
131
132extern void snd_usb_mixer_elem_free(struct snd_kcontrol *kctl);
133
195727e8 134extern const struct snd_kcontrol_new *snd_usb_feature_unit_ctl;
00966dcd 135
3e1aebef 136#endif /* __USBMIXER_H */