tcp: enforce tcp_min_snd_mss in tcp_mtu_probing()
[pandora-kernel.git] / sound / usb / mixer.h
1 #ifndef __USBMIXER_H
2 #define __USBMIXER_H
3
4 struct usb_mixer_interface {
5         struct snd_usb_audio *chip;
6         struct usb_host_interface *hostif;
7         struct list_head list;
8         unsigned int ignore_ctl_error;
9         struct urb *urb;
10         /* array[MAX_ID_ELEMS], indexed by unit id */
11         struct usb_mixer_elem_info **id_elems;
12
13         /* the usb audio specification version this interface complies to */
14         int protocol;
15
16         /* Sound Blaster remote control stuff */
17         const struct rc_config *rc_cfg;
18         u32 rc_code;
19         wait_queue_head_t rc_waitq;
20         struct urb *rc_urb;
21         struct usb_ctrlrequest *rc_setup_packet;
22         u8 rc_buffer[6];
23
24         u8 audigy2nx_leds[3];
25         u8 xonar_u1_status;
26
27         bool disconnected;
28 };
29
30 #define MAX_CHANNELS    16      /* max logical channels */
31
32 enum {
33         USB_MIXER_BOOLEAN,
34         USB_MIXER_INV_BOOLEAN,
35         USB_MIXER_S8,
36         USB_MIXER_U8,
37         USB_MIXER_S16,
38         USB_MIXER_U16,
39 };
40
41 struct usb_mixer_elem_info {
42         struct usb_mixer_interface *mixer;
43         struct usb_mixer_elem_info *next_id_elem; /* list of controls with same id */
44         struct snd_ctl_elem_id *elem_id;
45         unsigned int id;
46         unsigned int control;   /* CS or ICN (high byte) */
47         unsigned int cmask; /* channel mask bitmap: 0 = master */
48         unsigned int ch_readonly;
49         unsigned int master_readonly;
50         int channels;
51         int val_type;
52         int min, max, res;
53         int dBmin, dBmax;
54         int cached;
55         int cache_val[MAX_CHANNELS];
56         u8 initialized;
57         u8 min_mute;
58 };
59
60 int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif,
61                          int ignore_error);
62 void snd_usb_mixer_disconnect(struct list_head *p);
63
64 void snd_usb_mixer_notify_id(struct usb_mixer_interface *mixer, int unitid);
65
66 int snd_usb_mixer_set_ctl_value(struct usb_mixer_elem_info *cval,
67                                 int request, int validx, int value_set);
68 void snd_usb_mixer_inactivate(struct usb_mixer_interface *mixer);
69 int snd_usb_mixer_activate(struct usb_mixer_interface *mixer);
70
71 int snd_usb_mixer_add_control(struct usb_mixer_interface *mixer,
72                               struct snd_kcontrol *kctl);
73
74 #endif /* __USBMIXER_H */