From 8d2a02b24d66aa359e83eebc1ed3c0f85367a1cb Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Thu, 16 May 2024 03:11:33 +0000 Subject: [PATCH] AX88772C_eeprom and ax8872c build together --- kernel/drivers/usb/gadget/function/f_uac1.c | 1777 +++++++++++++++++++++++++++++++++++++++++------------------ 1 files changed, 1,237 insertions(+), 540 deletions(-) diff --git a/kernel/drivers/usb/gadget/function/f_uac1.c b/kernel/drivers/usb/gadget/function/f_uac1.c index acd976b..2efd7c3 100644 --- a/kernel/drivers/usb/gadget/function/f_uac1.c +++ b/kernel/drivers/usb/gadget/function/f_uac1.c @@ -3,7 +3,7 @@ * f_uac1.c -- USB Audio Class 1.0 Function (using u_audio API) * * Copyright (C) 2016 Ruslan Bilovol <ruslan.bilovol@gmail.com> - * Copyright (C) 2017 Julian Scheel <julian@jusst.de> + * Copyright (C) 2021 Julian Scheel <julian@jusst.de> * * This driver doesn't expect any real Audio codec to be present * on the device - the audio streams are simply sinked to and @@ -18,10 +18,55 @@ #include <linux/module.h> #include "u_audio.h" -#include "u_uac.h" +#include "u_uac1.h" /* UAC1 spec: 3.7.2.3 Audio Channel Cluster Format */ #define UAC1_CHANNEL_MASK 0x0FFF + +#define USB_OUT_FU_ID (out_feature_unit_desc->bUnitID) +#define USB_IN_FU_ID (in_feature_unit_desc->bUnitID) + +#define EPIN_EN(_opts) ((_opts)->p_chmask != 0) +#define EPOUT_EN(_opts) ((_opts)->c_chmask != 0) +#define FUIN_EN(_opts) ((_opts)->p_mute_present \ + || (_opts)->p_volume_present) +#define FUOUT_EN(_opts) ((_opts)->c_mute_present \ + || (_opts)->c_volume_present) + +struct f_uac1 { + struct g_audio g_audio; + u8 ac_intf, as_in_intf, as_out_intf; + u8 ac_alt, as_in_alt, as_out_alt; /* needed for get_alt() */ + + struct usb_ctrlrequest setup_cr; /* will be used in data stage */ + + /* Interrupt IN endpoint of AC interface */ + struct usb_ep *int_ep; + atomic_t int_count; + int ctl_id; /* EP id */ + int c_srate; /* current capture srate */ + int p_srate; /* current playback prate */ +}; + +static inline struct f_uac1 *func_to_uac1(struct usb_function *f) +{ + return container_of(f, struct f_uac1, g_audio.func); +} + +static inline struct f_uac1_opts *g_audio_to_uac1_opts(struct g_audio *audio) +{ + return container_of(audio->func.fi, struct f_uac1_opts, func_inst); +} + +static struct usb_interface_assoc_descriptor iad_desc = { + .bLength = sizeof(iad_desc), + .bDescriptorType = USB_DT_INTERFACE_ASSOCIATION, + /* .bFirstInterface = DYNAMIC */ + /* .bInterfaceCount = DYNAMIC */ + .bFunctionClass = USB_CLASS_AUDIO, + .bFunctionSubClass = USB_SUBCLASS_AUDIOSTREAMING, + .bFunctionProtocol = UAC_VERSION_1, +}; /* * DESCRIPTORS ... most are static, but strings and full @@ -35,143 +80,85 @@ * USB-OUT -> IT_1 -> OT_2 -> ALSA_Capture * ALSA_Playback -> IT_3 -> OT_4 -> USB-IN */ -#define F_AUDIO_AC_INTERFACE 0 -#define F_AUDIO_AS_OUT_INTERFACE 1 -#define F_AUDIO_AS_IN_INTERFACE 2 -/* Number of streaming interfaces */ -#define F_AUDIO_NUM_INTERFACES 2 - -static struct usb_interface_assoc_descriptor iad_desc = { - .bLength = sizeof(iad_desc), - .bDescriptorType = USB_DT_INTERFACE_ASSOCIATION, - - .bFirstInterface = 0, - .bFunctionClass = USB_CLASS_AUDIO, - .bFunctionSubClass = USB_SUBCLASS_AUDIOSTREAMING, - .bFunctionProtocol = UAC_VERSION_1, -}; /* B.3.1 Standard AC Interface Descriptor */ static struct usb_interface_descriptor ac_interface_desc = { .bLength = USB_DT_INTERFACE_SIZE, .bDescriptorType = USB_DT_INTERFACE, - .bNumEndpoints = 0, + /* .bNumEndpoints = DYNAMIC */ .bInterfaceClass = USB_CLASS_AUDIO, .bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL, }; -/* - * The number of AudioStreaming and MIDIStreaming interfaces - * in the Audio Interface Collection - */ -DECLARE_UAC_AC_HEADER_DESCRIPTOR(2); - /* B.3.2 Class-Specific AC Interface Descriptor */ -static struct uac1_ac_header_descriptor_2 ac_header_desc = { - .bDescriptorType = USB_DT_CS_INTERFACE, - .bDescriptorSubtype = UAC_HEADER, - .bcdADC = cpu_to_le16(0x0100), - /* .baInterfaceNr[0] = DYNAMIC */ - /* .baInterfaceNr[1] = DYNAMIC */ -}; +static struct uac1_ac_header_descriptor *ac_header_desc; static struct uac_input_terminal_descriptor usb_out_it_desc = { .bLength = UAC_DT_INPUT_TERMINAL_SIZE, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubtype = UAC_INPUT_TERMINAL, + /* .bTerminalID = DYNAMIC */ .wTerminalType = cpu_to_le16(UAC_TERMINAL_STREAMING), .bAssocTerminal = 0, .wChannelConfig = cpu_to_le16(0x3), -}; - -DECLARE_UAC_FEATURE_UNIT_DESCRIPTOR(0); - -static struct uac_feature_unit_descriptor_0 io_out_ot_fu_desc = { - .bLength = UAC_DT_FEATURE_UNIT_SIZE(0), - .bDescriptorType = USB_DT_CS_INTERFACE, - .bDescriptorSubtype = UAC_FEATURE_UNIT, - .bControlSize = 2, - .bmaControls[0] = (UAC_CONTROL_BIT(UAC_FU_MUTE) | - UAC_CONTROL_BIT(UAC_FU_VOLUME)), -}; - -static struct usb_audio_control c_mute_control = { - .list = LIST_HEAD_INIT(c_mute_control.list), - .name = "Capture Mute", - .type = UAC_FU_MUTE, - .set = u_audio_fu_set_cmd, - .get = u_audio_fu_get_cmd, -}; - -static struct usb_audio_control c_volume_control = { - .list = LIST_HEAD_INIT(c_volume_control.list), - .name = "Capture Volume", - .type = UAC_FU_VOLUME, - .set = u_audio_fu_set_cmd, - .get = u_audio_fu_get_cmd, -}; - -static struct usb_audio_control_selector c_feature_unit = { - .list = LIST_HEAD_INIT(c_feature_unit.list), - .name = "Capture Mute & Volume Control", - .type = UAC_FEATURE_UNIT, - .desc = (struct usb_descriptor_header *)&io_out_ot_fu_desc, }; static struct uac1_output_terminal_descriptor io_out_ot_desc = { .bLength = UAC_DT_OUTPUT_TERMINAL_SIZE, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubtype = UAC_OUTPUT_TERMINAL, + /* .bTerminalID = DYNAMIC */ .wTerminalType = cpu_to_le16(UAC_OUTPUT_TERMINAL_SPEAKER), .bAssocTerminal = 0, + /* .bSourceID = DYNAMIC */ }; static struct uac_input_terminal_descriptor io_in_it_desc = { .bLength = UAC_DT_INPUT_TERMINAL_SIZE, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubtype = UAC_INPUT_TERMINAL, + /* .bTerminalID = DYNAMIC */ .wTerminalType = cpu_to_le16(UAC_INPUT_TERMINAL_MICROPHONE), .bAssocTerminal = 0, .wChannelConfig = cpu_to_le16(0x3), -}; - -static struct uac_feature_unit_descriptor_0 usb_in_ot_fu_desc = { - .bLength = UAC_DT_FEATURE_UNIT_SIZE(0), - .bDescriptorType = USB_DT_CS_INTERFACE, - .bDescriptorSubtype = UAC_FEATURE_UNIT, - .bControlSize = 2, - .bmaControls[0] = (UAC_FU_MUTE | UAC_FU_VOLUME), -}; - -static struct usb_audio_control p_mute_control = { - .list = LIST_HEAD_INIT(p_mute_control.list), - .name = "Playback Mute", - .type = UAC_FU_MUTE, - .set = u_audio_fu_set_cmd, - .get = u_audio_fu_get_cmd, -}; - -static struct usb_audio_control p_volume_control = { - .list = LIST_HEAD_INIT(p_volume_control.list), - .name = "Playback Volume", - .type = UAC_FU_VOLUME, - .set = u_audio_fu_set_cmd, - .get = u_audio_fu_get_cmd, -}; - -static struct usb_audio_control_selector p_feature_unit = { - .list = LIST_HEAD_INIT(p_feature_unit.list), - .name = "Playback Mute & Volume Control", - .type = UAC_FEATURE_UNIT, - .desc = (struct usb_descriptor_header *)&usb_in_ot_fu_desc, }; static struct uac1_output_terminal_descriptor usb_in_ot_desc = { .bLength = UAC_DT_OUTPUT_TERMINAL_SIZE, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubtype = UAC_OUTPUT_TERMINAL, + /* .bTerminalID = DYNAMIC */ .wTerminalType = cpu_to_le16(UAC_TERMINAL_STREAMING), .bAssocTerminal = 0, + /* .bSourceID = DYNAMIC */ +}; + +static struct uac_feature_unit_descriptor *in_feature_unit_desc; +static struct uac_feature_unit_descriptor *out_feature_unit_desc; + +/* AC IN Interrupt Endpoint */ +static struct usb_endpoint_descriptor fs_int_ep_desc = { + .bLength = USB_DT_ENDPOINT_SIZE, + .bDescriptorType = USB_DT_ENDPOINT, + .bEndpointAddress = USB_DIR_IN, + .bmAttributes = USB_ENDPOINT_XFER_INT, + .wMaxPacketSize = cpu_to_le16(2), + .bInterval = 1, +}; + +static struct usb_endpoint_descriptor ac_int_ep_desc = { + .bLength = USB_DT_ENDPOINT_SIZE, + .bDescriptorType = USB_DT_ENDPOINT, + .bEndpointAddress = USB_DIR_IN, + .bmAttributes = USB_ENDPOINT_XFER_INT, + .wMaxPacketSize = cpu_to_le16(2), + .bInterval = 4, +}; + +static struct usb_ss_ep_comp_descriptor ac_int_ep_desc_comp = { + .bLength = sizeof(ac_int_ep_desc_comp), + .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, + .wBytesPerInterval = cpu_to_le16(2), }; /* B.4.1 Standard AS Interface Descriptor */ @@ -216,6 +203,7 @@ .bLength = UAC_DT_AS_HEADER_SIZE, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubtype = UAC_AS_GENERAL, + /* .bTerminalLink = DYNAMIC */ .bDelay = 1, .wFormatTag = cpu_to_le16(UAC_FORMAT_TYPE_I_PCM), }; @@ -224,12 +212,13 @@ .bLength = UAC_DT_AS_HEADER_SIZE, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubtype = UAC_AS_GENERAL, + /* .bTerminalLink = DYNAMIC */ .bDelay = 1, .wFormatTag = cpu_to_le16(UAC_FORMAT_TYPE_I_PCM), }; DECLARE_UAC_FORMAT_TYPE_I_DISCRETE_DESC(UAC_MAX_RATES); -#define uac_format_type_i_discrete_descriptor \ +#define uac_format_type_i_discrete_descriptor \ uac_format_type_i_discrete_descriptor_##UAC_MAX_RATES static struct uac_format_type_i_discrete_descriptor as_out_type_i_desc = { @@ -243,6 +232,16 @@ }; /* Standard ISO OUT Endpoint Descriptor */ +static struct usb_endpoint_descriptor fs_out_ep_desc = { + .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, + .bDescriptorType = USB_DT_ENDPOINT, + .bEndpointAddress = USB_DIR_OUT, + .bmAttributes = USB_ENDPOINT_SYNC_ADAPTIVE + | USB_ENDPOINT_XFER_ISOC, + /* .wMaxPacketSize = DYNAMIC */ + .bInterval = 1, +}; + static struct usb_endpoint_descriptor as_out_ep_desc = { .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -253,22 +252,10 @@ .bInterval = 4, }; -static struct usb_endpoint_descriptor ss_out_ep_desc = { - .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, - .bDescriptorType = USB_DT_ENDPOINT, - - .bEndpointAddress = USB_DIR_OUT, - .bmAttributes = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ADAPTIVE, - /* .wMaxPacketSize = DYNAMIC */ - .bInterval = 4, -}; - -static struct usb_ss_ep_comp_descriptor ss_out_ep_desc_comp = { - .bLength = sizeof(ss_out_ep_desc_comp), +static struct usb_ss_ep_comp_descriptor as_out_ep_desc_comp = { + .bLength = sizeof(as_out_ep_desc_comp), .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, - .bMaxBurst = 0, - .bmAttributes = 0, - /* wBytesPerInterval = DYNAMIC */ + .wBytesPerInterval = cpu_to_le16(UAC1_OUT_EP_MAX_PACKET_SIZE), }; /* Class-specific AS ISO OUT Endpoint Descriptor */ @@ -291,7 +278,17 @@ .bSamFreqType = 0, /* filled on rate setup */ }; -/* Standard ISO OUT Endpoint Descriptor */ +/* Standard ISO IN Endpoint Descriptor */ +static struct usb_endpoint_descriptor fs_in_ep_desc = { + .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, + .bDescriptorType = USB_DT_ENDPOINT, + .bEndpointAddress = USB_DIR_IN, + .bmAttributes = USB_ENDPOINT_SYNC_ASYNC + | USB_ENDPOINT_XFER_ISOC, + /* .wMaxPacketSize = DYNAMIC */ + .bInterval = 1, +}; + static struct usb_endpoint_descriptor as_in_ep_desc = { .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -302,22 +299,10 @@ .bInterval = 4, }; -static struct usb_endpoint_descriptor ss_in_ep_desc = { - .bLength = USB_DT_ENDPOINT_AUDIO_SIZE, - .bDescriptorType = USB_DT_ENDPOINT, - - .bEndpointAddress = USB_DIR_IN, - .bmAttributes = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC, - /* .wMaxPacketSize = DYNAMIC */ - .bInterval = 4, -}; - -static struct usb_ss_ep_comp_descriptor ss_in_ep_desc_comp = { - .bLength = sizeof(ss_in_ep_desc_comp), +static struct usb_ss_ep_comp_descriptor as_in_ep_desc_comp = { + .bLength = sizeof(as_in_ep_desc_comp), .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, - .bMaxBurst = 0, - .bmAttributes = 0, - /* wBytesPerInterval = DYNAMIC */ + .wBytesPerInterval = cpu_to_le16(UAC1_OUT_EP_MAX_PACKET_SIZE), }; /* Class-specific AS ISO OUT Endpoint Descriptor */ @@ -330,17 +315,55 @@ .wLockDelay = 0, }; -static struct usb_descriptor_header *f_audio_desc[] = { +static struct usb_descriptor_header *fs_audio_desc[] = { (struct usb_descriptor_header *)&iad_desc, (struct usb_descriptor_header *)&ac_interface_desc, (struct usb_descriptor_header *)&ac_header_desc, (struct usb_descriptor_header *)&usb_out_it_desc, - (struct usb_descriptor_header *)&io_out_ot_fu_desc, (struct usb_descriptor_header *)&io_out_ot_desc, + (struct usb_descriptor_header *)&out_feature_unit_desc, + (struct usb_descriptor_header *)&io_in_it_desc, - (struct usb_descriptor_header *)&usb_in_ot_fu_desc, (struct usb_descriptor_header *)&usb_in_ot_desc, + (struct usb_descriptor_header *)&in_feature_unit_desc, + + (struct usb_descriptor_header *)&fs_int_ep_desc, + + (struct usb_descriptor_header *)&as_out_interface_alt_0_desc, + (struct usb_descriptor_header *)&as_out_interface_alt_1_desc, + (struct usb_descriptor_header *)&as_out_header_desc, + + (struct usb_descriptor_header *)&as_out_type_i_desc, + + (struct usb_descriptor_header *)&fs_out_ep_desc, + (struct usb_descriptor_header *)&as_iso_out_desc, + + (struct usb_descriptor_header *)&as_in_interface_alt_0_desc, + (struct usb_descriptor_header *)&as_in_interface_alt_1_desc, + (struct usb_descriptor_header *)&as_in_header_desc, + + (struct usb_descriptor_header *)&as_in_type_i_desc, + + (struct usb_descriptor_header *)&fs_in_ep_desc, + (struct usb_descriptor_header *)&as_iso_in_desc, + NULL, +}; + +static struct usb_descriptor_header *hs_audio_desc[] = { + (struct usb_descriptor_header *)&iad_desc, + (struct usb_descriptor_header *)&ac_interface_desc, + (struct usb_descriptor_header *)&ac_header_desc, + + (struct usb_descriptor_header *)&usb_out_it_desc, + (struct usb_descriptor_header *)&io_out_ot_desc, + (struct usb_descriptor_header *)&out_feature_unit_desc, + + (struct usb_descriptor_header *)&io_in_it_desc, + (struct usb_descriptor_header *)&usb_in_ot_desc, + (struct usb_descriptor_header *)&in_feature_unit_desc, + + (struct usb_descriptor_header *)&ac_int_ep_desc, (struct usb_descriptor_header *)&as_out_interface_alt_0_desc, (struct usb_descriptor_header *)&as_out_interface_alt_1_desc, @@ -362,17 +385,21 @@ NULL, }; -static struct usb_descriptor_header *f_ss_audio_desc[] = { +static struct usb_descriptor_header *ss_audio_desc[] = { (struct usb_descriptor_header *)&iad_desc, (struct usb_descriptor_header *)&ac_interface_desc, (struct usb_descriptor_header *)&ac_header_desc, (struct usb_descriptor_header *)&usb_out_it_desc, - (struct usb_descriptor_header *)&io_out_ot_fu_desc, (struct usb_descriptor_header *)&io_out_ot_desc, + (struct usb_descriptor_header *)&out_feature_unit_desc, + (struct usb_descriptor_header *)&io_in_it_desc, - (struct usb_descriptor_header *)&usb_in_ot_fu_desc, (struct usb_descriptor_header *)&usb_in_ot_desc, + (struct usb_descriptor_header *)&in_feature_unit_desc, + + (struct usb_descriptor_header *)&ac_int_ep_desc, + (struct usb_descriptor_header *)&ac_int_ep_desc_comp, (struct usb_descriptor_header *)&as_out_interface_alt_0_desc, (struct usb_descriptor_header *)&as_out_interface_alt_1_desc, @@ -380,8 +407,8 @@ (struct usb_descriptor_header *)&as_out_type_i_desc, - (struct usb_descriptor_header *)&ss_out_ep_desc, - (struct usb_descriptor_header *)&ss_out_ep_desc_comp, + (struct usb_descriptor_header *)&as_out_ep_desc, + (struct usb_descriptor_header *)&as_out_ep_desc_comp, (struct usb_descriptor_header *)&as_iso_out_desc, (struct usb_descriptor_header *)&as_in_interface_alt_0_desc, @@ -390,8 +417,8 @@ (struct usb_descriptor_header *)&as_in_type_i_desc, - (struct usb_descriptor_header *)&ss_in_ep_desc, - (struct usb_descriptor_header *)&ss_in_ep_desc_comp, + (struct usb_descriptor_header *)&as_in_ep_desc, + (struct usb_descriptor_header *)&as_in_ep_desc_comp, (struct usb_descriptor_header *)&as_iso_in_desc, NULL, }; @@ -401,12 +428,12 @@ STR_AC_IF, STR_USB_OUT_IT, STR_USB_OUT_IT_CH_NAMES, - STR_IO_OUT_OT_FU, STR_IO_OUT_OT, STR_IO_IN_IT, STR_IO_IN_IT_CH_NAMES, - STR_USB_IN_OT_FU, STR_USB_IN_OT, + STR_FU_IN, + STR_FU_OUT, STR_AS_OUT_IF_ALT0, STR_AS_OUT_IF_ALT1, STR_AS_IN_IF_ALT0, @@ -414,16 +441,16 @@ }; static struct usb_string strings_uac1[] = { - [STR_ASSOC].s = "Source/Sink", + /* [STR_ASSOC].s = DYNAMIC, */ [STR_AC_IF].s = "AC Interface", [STR_USB_OUT_IT].s = "Playback Input terminal", [STR_USB_OUT_IT_CH_NAMES].s = "Playback Channels", - [STR_IO_OUT_OT_FU].s = "Playback Feature Unit", [STR_IO_OUT_OT].s = "Playback Output terminal", [STR_IO_IN_IT].s = "Capture Input terminal", [STR_IO_IN_IT_CH_NAMES].s = "Capture Channels", - [STR_USB_IN_OT_FU].s = "Capture Feature Unit", [STR_USB_IN_OT].s = "Capture Output terminal", + [STR_FU_IN].s = "Capture Volume", + [STR_FU_OUT].s = "Playback Volume", [STR_AS_OUT_IF_ALT0].s = "Playback Inactive", [STR_AS_OUT_IF_ALT1].s = "Playback Active", [STR_AS_IN_IF_ALT0].s = "Capture Inactive", @@ -441,36 +468,101 @@ NULL, }; +/* Use macro to overcome line length limitation */ +#define USBDHDR(p) ((struct usb_descriptor_header *)(p)) + +static void setup_headers(struct f_uac1_opts *opts, + struct usb_descriptor_header **headers, + enum usb_device_speed speed) +{ + struct usb_ss_ep_comp_descriptor *epout_desc_comp = NULL; + struct usb_ss_ep_comp_descriptor *epin_desc_comp = NULL; + struct usb_ss_ep_comp_descriptor *ep_int_desc_comp = NULL; + struct usb_endpoint_descriptor *epout_desc; + struct usb_endpoint_descriptor *epin_desc; + struct usb_endpoint_descriptor *ep_int_desc; + int i; + + switch (speed) { + case USB_SPEED_FULL: + epout_desc = &fs_out_ep_desc; + epin_desc = &fs_in_ep_desc; + ep_int_desc = &fs_int_ep_desc; + break; + case USB_SPEED_HIGH: + epout_desc = &as_out_ep_desc; + epin_desc = &as_in_ep_desc; + ep_int_desc = &ac_int_ep_desc; + break; + default: + epout_desc = &as_out_ep_desc; + epout_desc_comp = &as_out_ep_desc_comp; + epin_desc = &as_in_ep_desc; + epin_desc_comp = &as_in_ep_desc_comp; + ep_int_desc = &ac_int_ep_desc; + ep_int_desc_comp = &ac_int_ep_desc_comp; + break; + } + + i = 0; + headers[i++] = USBDHDR(&iad_desc); + headers[i++] = USBDHDR(&ac_interface_desc); + headers[i++] = USBDHDR(ac_header_desc); + + if (EPOUT_EN(opts)) { + headers[i++] = USBDHDR(&usb_out_it_desc); + headers[i++] = USBDHDR(&io_out_ot_desc); + if (FUOUT_EN(opts)) + headers[i++] = USBDHDR(out_feature_unit_desc); + } + + if (EPIN_EN(opts)) { + headers[i++] = USBDHDR(&io_in_it_desc); + headers[i++] = USBDHDR(&usb_in_ot_desc); + if (FUIN_EN(opts)) + headers[i++] = USBDHDR(in_feature_unit_desc); + } + + if (FUOUT_EN(opts) || FUIN_EN(opts)) { + headers[i++] = USBDHDR(ep_int_desc); + if (ep_int_desc_comp) + headers[i++] = USBDHDR(ep_int_desc_comp); + } + + if (EPOUT_EN(opts)) { + headers[i++] = USBDHDR(&as_out_interface_alt_0_desc); + headers[i++] = USBDHDR(&as_out_interface_alt_1_desc); + headers[i++] = USBDHDR(&as_out_header_desc); + headers[i++] = USBDHDR(&as_out_type_i_desc); + headers[i++] = USBDHDR(epout_desc); + if (epout_desc_comp) + headers[i++] = USBDHDR(epout_desc_comp); + headers[i++] = USBDHDR(&as_iso_out_desc); + } + if (EPIN_EN(opts)) { + headers[i++] = USBDHDR(&as_in_interface_alt_0_desc); + headers[i++] = USBDHDR(&as_in_interface_alt_1_desc); + headers[i++] = USBDHDR(&as_in_header_desc); + headers[i++] = USBDHDR(&as_in_type_i_desc); + headers[i++] = USBDHDR(epin_desc); + if (epin_desc_comp) + headers[i++] = USBDHDR(epin_desc_comp); + headers[i++] = USBDHDR(&as_iso_in_desc); + } + headers[i] = NULL; +} + /* * This function is an ALSA sound card following USB Audio Class Spec 1.0. */ -static void intf_complete(struct usb_ep *ep, struct usb_request *req) -{ - struct f_uac *uac1 = req->context; - int status = req->status; - u32 data = 0; - - switch (status) { - case 0: /* normal completion? */ - if (uac1->set_con) { - memcpy(&data, req->buf, req->length); - uac1->set_con->set(uac1->set_con, uac1->set_cmd, - le16_to_cpu(data)); - uac1->set_con = NULL; - } - break; - default: - break; - } -} static void uac_cs_attr_sample_rate(struct usb_ep *ep, struct usb_request *req) { struct usb_function *fn = ep->driver_data; struct usb_composite_dev *cdev = fn->config->cdev; struct g_audio *agdev = func_to_g_audio(fn); - struct f_uac *uac1 = func_to_uac(fn); - struct f_uac_opts *opts = g_audio_to_uac_opts(agdev); + struct f_uac1 *uac1 = func_to_uac1(fn); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(agdev); u8 *buf = (u8 *)req->buf; u32 val = 0; @@ -480,88 +572,412 @@ } val = buf[0] | (buf[1] << 8) | (buf[2] << 16); - - if (uac1->ctl_id == agdev->in_ep->address) { - opts->p_srate_active = val; - u_audio_set_playback_srate(agdev, opts->p_srate_active); - } else if (uac1->ctl_id == agdev->out_ep->address) { - opts->c_srate_active = val; - u_audio_set_capture_srate(agdev, opts->c_srate_active); + if (EPIN_EN(opts) && uac1->ctl_id == agdev->in_ep->address) { + uac1->p_srate = val; + u_audio_set_playback_srate(agdev, uac1->p_srate); + } else if (EPOUT_EN(opts) && uac1->ctl_id == agdev->out_ep->address) { + uac1->c_srate = val; + u_audio_set_capture_srate(agdev, uac1->c_srate); } } -static int audio_set_intf_req(struct usb_function *f, - const struct usb_ctrlrequest *ctrl) +static void audio_notify_complete(struct usb_ep *_ep, struct usb_request *req) { - struct f_uac *uac1 = func_to_uac(f); - struct usb_composite_dev *cdev = f->config->cdev; - struct usb_request *req = cdev->req; - u8 id = ((le16_to_cpu(ctrl->wIndex) >> 8) & 0xFF); - u16 len = le16_to_cpu(ctrl->wLength); - u16 w_value = le16_to_cpu(ctrl->wValue); - u8 con_sel = (w_value >> 8) & 0xFF; - u8 cmd = (ctrl->bRequest & 0x0F); - struct usb_audio_control_selector *cs; - struct usb_audio_control *con; + struct g_audio *audio = req->context; + struct f_uac1 *uac1 = func_to_uac1(&audio->func); - DBG(cdev, "bRequest 0x%x, w_value 0x%04x, len %d, entity %d\n", - ctrl->bRequest, w_value, len, id); - - list_for_each_entry(cs, &uac1->cs, list) { - if (cs->id == id) { - list_for_each_entry(con, &cs->control, list) { - if (con->type == con_sel) { - uac1->set_con = con; - break; - } - } - break; - } - } - - uac1->set_cmd = cmd; - req->context = uac1; - req->complete = intf_complete; - - return len; + atomic_dec(&uac1->int_count); + kfree(req->buf); + usb_ep_free_request(_ep, req); } -static int audio_get_intf_req(struct usb_function *f, - const struct usb_ctrlrequest *ctrl) +static int audio_notify(struct g_audio *audio, int unit_id, int cs) { - struct f_uac *uac1 = func_to_uac(f); - struct usb_composite_dev *cdev = f->config->cdev; - struct usb_request *req = cdev->req; - int value = -EOPNOTSUPP; - u8 id = ((le16_to_cpu(ctrl->wIndex) >> 8) & 0xFF); - u16 len = le16_to_cpu(ctrl->wLength); - u16 w_value = le16_to_cpu(ctrl->wValue); - u8 con_sel = (w_value >> 8) & 0xFF; - u8 cmd = (ctrl->bRequest & 0x0F); - struct usb_audio_control_selector *cs; - struct usb_audio_control *con; + struct f_uac1 *uac1 = func_to_uac1(&audio->func); + struct usb_request *req; + struct uac1_status_word *msg; + int ret; - DBG(cdev, "bRequest 0x%x, w_value 0x%04x, len %d, entity %d\n", - ctrl->bRequest, w_value, len, id); + if (!uac1->int_ep->enabled) + return 0; - list_for_each_entry(cs, &uac1->cs, list) { - if (cs->id == id) { - list_for_each_entry(con, &cs->control, list) { - if (con->type == con_sel && con->get) { - value = con->get(con, cmd); - break; - } - } - break; - } + if (atomic_inc_return(&uac1->int_count) > UAC1_DEF_INT_REQ_NUM) { + atomic_dec(&uac1->int_count); + return 0; } - req->context = uac1; - req->complete = intf_complete; - len = min_t(size_t, sizeof(value), len); - memcpy(req->buf, &value, len); + req = usb_ep_alloc_request(uac1->int_ep, GFP_ATOMIC); + if (req == NULL) { + ret = -ENOMEM; + goto err_dec_int_count; + } - return len; + msg = kmalloc(sizeof(*msg), GFP_ATOMIC); + if (msg == NULL) { + ret = -ENOMEM; + goto err_free_request; + } + + msg->bStatusType = UAC1_STATUS_TYPE_IRQ_PENDING + | UAC1_STATUS_TYPE_ORIG_AUDIO_CONTROL_IF; + msg->bOriginator = unit_id; + + req->length = sizeof(*msg); + req->buf = msg; + req->context = audio; + req->complete = audio_notify_complete; + + ret = usb_ep_queue(uac1->int_ep, req, GFP_ATOMIC); + + if (ret) + goto err_free_msg; + + return 0; + +err_free_msg: + kfree(msg); +err_free_request: + usb_ep_free_request(uac1->int_ep, req); +err_dec_int_count: + atomic_dec(&uac1->int_count); + + return ret; +} + +static int +in_rq_cur(struct usb_function *fn, const struct usb_ctrlrequest *cr) +{ + struct usb_request *req = fn->config->cdev->req; + struct g_audio *audio = func_to_g_audio(fn); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); + u16 w_length = le16_to_cpu(cr->wLength); + u16 w_index = le16_to_cpu(cr->wIndex); + u16 w_value = le16_to_cpu(cr->wValue); + u8 entity_id = (w_index >> 8) & 0xff; + u8 control_selector = w_value >> 8; + int value = -EOPNOTSUPP; + + if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || + (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { + unsigned int is_playback = 0; + + if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) + is_playback = 1; + + if (control_selector == UAC_FU_MUTE) { + unsigned int mute; + + u_audio_get_mute(audio, is_playback, &mute); + + *(u8 *)req->buf = mute; + value = min_t(unsigned int, w_length, 1); + } else if (control_selector == UAC_FU_VOLUME) { + __le16 c; + s16 volume; + + u_audio_get_volume(audio, is_playback, &volume); + + c = cpu_to_le16(volume); + + value = min_t(unsigned int, w_length, sizeof(c)); + memcpy(req->buf, &c, value); + } else { + dev_err(&audio->gadget->dev, + "%s:%d control_selector=%d TODO!\n", + __func__, __LINE__, control_selector); + } + } else { + dev_err(&audio->gadget->dev, + "%s:%d entity_id=%d control_selector=%d TODO!\n", + __func__, __LINE__, entity_id, control_selector); + } + + return value; +} + +static int +in_rq_min(struct usb_function *fn, const struct usb_ctrlrequest *cr) +{ + struct usb_request *req = fn->config->cdev->req; + struct g_audio *audio = func_to_g_audio(fn); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); + u16 w_length = le16_to_cpu(cr->wLength); + u16 w_index = le16_to_cpu(cr->wIndex); + u16 w_value = le16_to_cpu(cr->wValue); + u8 entity_id = (w_index >> 8) & 0xff; + u8 control_selector = w_value >> 8; + int value = -EOPNOTSUPP; + + if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || + (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { + unsigned int is_playback = 0; + + if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) + is_playback = 1; + + if (control_selector == UAC_FU_VOLUME) { + __le16 r; + s16 min_db; + + if (is_playback) + min_db = opts->p_volume_min; + else + min_db = opts->c_volume_min; + + r = cpu_to_le16(min_db); + + value = min_t(unsigned int, w_length, sizeof(r)); + memcpy(req->buf, &r, value); + } else { + dev_err(&audio->gadget->dev, + "%s:%d control_selector=%d TODO!\n", + __func__, __LINE__, control_selector); + } + } else { + dev_err(&audio->gadget->dev, + "%s:%d entity_id=%d control_selector=%d TODO!\n", + __func__, __LINE__, entity_id, control_selector); + } + + return value; +} + +static int +in_rq_max(struct usb_function *fn, const struct usb_ctrlrequest *cr) +{ + struct usb_request *req = fn->config->cdev->req; + struct g_audio *audio = func_to_g_audio(fn); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); + u16 w_length = le16_to_cpu(cr->wLength); + u16 w_index = le16_to_cpu(cr->wIndex); + u16 w_value = le16_to_cpu(cr->wValue); + u8 entity_id = (w_index >> 8) & 0xff; + u8 control_selector = w_value >> 8; + int value = -EOPNOTSUPP; + + if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || + (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { + unsigned int is_playback = 0; + + if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) + is_playback = 1; + + if (control_selector == UAC_FU_VOLUME) { + __le16 r; + s16 max_db; + + if (is_playback) + max_db = opts->p_volume_max; + else + max_db = opts->c_volume_max; + + r = cpu_to_le16(max_db); + + value = min_t(unsigned int, w_length, sizeof(r)); + memcpy(req->buf, &r, value); + } else { + dev_err(&audio->gadget->dev, + "%s:%d control_selector=%d TODO!\n", + __func__, __LINE__, control_selector); + } + } else { + dev_err(&audio->gadget->dev, + "%s:%d entity_id=%d control_selector=%d TODO!\n", + __func__, __LINE__, entity_id, control_selector); + } + + return value; +} + +static int +in_rq_res(struct usb_function *fn, const struct usb_ctrlrequest *cr) +{ + struct usb_request *req = fn->config->cdev->req; + struct g_audio *audio = func_to_g_audio(fn); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); + u16 w_length = le16_to_cpu(cr->wLength); + u16 w_index = le16_to_cpu(cr->wIndex); + u16 w_value = le16_to_cpu(cr->wValue); + u8 entity_id = (w_index >> 8) & 0xff; + u8 control_selector = w_value >> 8; + int value = -EOPNOTSUPP; + + if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || + (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { + unsigned int is_playback = 0; + + if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) + is_playback = 1; + + if (control_selector == UAC_FU_VOLUME) { + __le16 r; + s16 res_db; + + if (is_playback) + res_db = opts->p_volume_res; + else + res_db = opts->c_volume_res; + + r = cpu_to_le16(res_db); + + value = min_t(unsigned int, w_length, sizeof(r)); + memcpy(req->buf, &r, value); + } else { + dev_err(&audio->gadget->dev, + "%s:%d control_selector=%d TODO!\n", + __func__, __LINE__, control_selector); + } + } else { + dev_err(&audio->gadget->dev, + "%s:%d entity_id=%d control_selector=%d TODO!\n", + __func__, __LINE__, entity_id, control_selector); + } + + return value; +} + +static void +out_rq_complete(struct usb_ep *ep, struct usb_request *req) +{ + struct g_audio *audio = req->context; + struct usb_composite_dev *cdev = audio->func.config->cdev; + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); + struct f_uac1 *uac1 = func_to_uac1(&audio->func); + struct usb_ctrlrequest *cr = &uac1->setup_cr; + u16 w_index = le16_to_cpu(cr->wIndex); + u16 w_value = le16_to_cpu(cr->wValue); + u8 entity_id = (w_index >> 8) & 0xff; + u8 control_selector = w_value >> 8; + + if (req->status != 0) { + dev_dbg(&cdev->gadget->dev, "completion err %d\n", req->status); + return; + } + + if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || + (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { + unsigned int is_playback = 0; + + if (FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) + is_playback = 1; + + if (control_selector == UAC_FU_MUTE) { + if (cr->bRequest == UAC_SET_CUR) { + u8 mute = *(u8 *)req->buf; + + u_audio_set_mute(audio, is_playback, mute); + } + + return; + } else if (control_selector == UAC_FU_VOLUME) { + __le16 *c = req->buf; + s16 volume; + + volume = le16_to_cpu(*c); + + switch (cr->bRequest) { + case UAC_SET_CUR: + u_audio_set_volume(audio, is_playback, volume); + break; + case UAC_SET_MIN: + if (is_playback) + opts->p_volume_min = volume; + else + opts->c_volume_min = volume; + break; + case UAC_SET_MAX: + if (is_playback) + opts->p_volume_max = volume; + else + opts->c_volume_max = volume; + break; + case UAC_SET_RES: + if (is_playback) + opts->p_volume_res = volume; + else + opts->c_volume_res = volume; + break; + case UAC_SET_MEM: + break; + default: + break; + } + + return; + } else { + dev_err(&audio->gadget->dev, + "%s:%d control_selector=%d TODO!\n", + __func__, __LINE__, control_selector); + usb_ep_set_halt(ep); + } + } else { + dev_err(&audio->gadget->dev, + "%s:%d entity_id=%d control_selector=%d TODO!\n", + __func__, __LINE__, entity_id, control_selector); + usb_ep_set_halt(ep); + + } +} + +static int +ac_rq_out(struct usb_function *fn, const struct usb_ctrlrequest *cr) +{ + struct usb_request *req = fn->config->cdev->req; + struct g_audio *audio = func_to_g_audio(fn); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); + struct f_uac1 *uac1 = func_to_uac1(&audio->func); + u16 w_length = le16_to_cpu(cr->wLength); + u16 w_index = le16_to_cpu(cr->wIndex); + u16 w_value = le16_to_cpu(cr->wValue); + u8 entity_id = (w_index >> 8) & 0xff; + u8 control_selector = w_value >> 8; + + if ((FUIN_EN(opts) && (entity_id == USB_IN_FU_ID)) || + (FUOUT_EN(opts) && (entity_id == USB_OUT_FU_ID))) { + memcpy(&uac1->setup_cr, cr, sizeof(*cr)); + req->context = audio; + req->complete = out_rq_complete; + + return w_length; + } else { + dev_err(&audio->gadget->dev, + "%s:%d entity_id=%d control_selector=%d TODO!\n", + __func__, __LINE__, entity_id, control_selector); + } + return -EOPNOTSUPP; +} + +static int ac_rq_in(struct usb_function *f, + const struct usb_ctrlrequest *ctrl) +{ + struct usb_composite_dev *cdev = f->config->cdev; + int value = -EOPNOTSUPP; + u8 ep = ((le16_to_cpu(ctrl->wIndex) >> 8) & 0xFF); + u16 len = le16_to_cpu(ctrl->wLength); + u16 w_value = le16_to_cpu(ctrl->wValue); + + DBG(cdev, "bRequest 0x%x, w_value 0x%04x, len %d, endpoint %d\n", + ctrl->bRequest, w_value, len, ep); + + switch (ctrl->bRequest) { + case UAC_GET_CUR: + return in_rq_cur(f, ctrl); + case UAC_GET_MIN: + return in_rq_min(f, ctrl); + case UAC_GET_MAX: + return in_rq_max(f, ctrl); + case UAC_GET_RES: + return in_rq_res(f, ctrl); + case UAC_GET_MEM: + break; + case UAC_GET_STAT: + value = len; + break; + default: + break; + } + + return value; } static int audio_set_endpoint_req(struct usb_function *f, @@ -569,9 +985,9 @@ { struct usb_composite_dev *cdev = f->config->cdev; struct usb_request *req = f->config->cdev->req; - struct f_uac *uac1 = func_to_uac(f); + struct f_uac1 *uac1 = func_to_uac1(f); int value = -EOPNOTSUPP; - u8 ep = le16_to_cpu(ctrl->wIndex) & 0xff; + u16 ep = le16_to_cpu(ctrl->wIndex); u16 len = le16_to_cpu(ctrl->wLength); u16 w_value = le16_to_cpu(ctrl->wValue); u8 cs = w_value >> 8; @@ -588,7 +1004,8 @@ } value = len; break; - } + } + case UAC_SET_MIN: break; @@ -613,11 +1030,12 @@ { struct usb_composite_dev *cdev = f->config->cdev; struct usb_request *req = f->config->cdev->req; + struct f_uac1 *uac1 = func_to_uac1(f); struct g_audio *agdev = func_to_g_audio(f); - struct f_uac_opts *opts = g_audio_to_uac_opts(agdev); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(agdev); u8 *buf = (u8 *)req->buf; int value = -EOPNOTSUPP; - u8 ep = le16_to_cpu(ctrl->wIndex) & 0xff; + u8 ep = le16_to_cpu(ctrl->wIndex); u16 len = le16_to_cpu(ctrl->wLength); u16 w_value = le16_to_cpu(ctrl->wValue); u8 cs = w_value >> 8; @@ -629,17 +1047,17 @@ switch (ctrl->bRequest) { case UAC_GET_CUR: { if (cs == UAC_EP_CS_ATTR_SAMPLE_RATE) { - if (ep == agdev->in_ep->address) - val = opts->p_srate_active; - else if (ep == agdev->out_ep->address) - val = opts->c_srate_active; + if (EPIN_EN(opts) && ep == agdev->in_ep->address) + val = uac1->p_srate; + else if (EPOUT_EN(opts) && ep == agdev->out_ep->address) + val = uac1->c_srate; buf[2] = (val >> 16) & 0xff; buf[1] = (val >> 8) & 0xff; buf[0] = val & 0xff; } value = len; break; - } + } case UAC_GET_MIN: case UAC_GET_MAX: case UAC_GET_RES: @@ -668,14 +1086,6 @@ * activation uses set_alt(). */ switch (ctrl->bRequestType) { - case USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE: - value = audio_set_intf_req(f, ctrl); - break; - - case USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE: - value = audio_get_intf_req(f, ctrl); - break; - case USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_ENDPOINT: value = audio_set_endpoint_req(f, ctrl); break; @@ -683,7 +1093,12 @@ case USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_ENDPOINT: value = audio_get_endpoint_req(f, ctrl); break; - + case USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE: + value = ac_rq_out(f, ctrl); + break; + case USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE: + value = ac_rq_in(f, ctrl); + break; default: ERROR(cdev, "invalid control req%02x.%02x v%04x i%04x l%d\n", ctrl->bRequestType, ctrl->bRequest, @@ -711,7 +1126,8 @@ struct usb_composite_dev *cdev = f->config->cdev; struct usb_gadget *gadget = cdev->gadget; struct device *dev = &gadget->dev; - struct f_uac *uac1 = func_to_uac(f); + struct g_audio *audio = func_to_g_audio(f); + struct f_uac1 *uac1 = func_to_uac1(f); int ret = 0; /* No i/f has more than 2 alt settings */ @@ -726,6 +1142,14 @@ dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); return -EINVAL; } + + /* restart interrupt endpoint */ + if (uac1->int_ep) { + usb_ep_disable(uac1->int_ep); + config_ep_by_speed(gadget, &audio->func, uac1->int_ep); + usb_ep_enable(uac1->int_ep); + } + return 0; } @@ -739,10 +1163,10 @@ } else if (intf == uac1->as_in_intf) { uac1->as_in_alt = alt; - if (alt) - ret = u_audio_start_playback(&uac1->g_audio); - else - u_audio_stop_playback(&uac1->g_audio); + if (alt) + ret = u_audio_start_playback(&uac1->g_audio); + else + u_audio_stop_playback(&uac1->g_audio); } else { dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); return -EINVAL; @@ -756,7 +1180,7 @@ struct usb_composite_dev *cdev = f->config->cdev; struct usb_gadget *gadget = cdev->gadget; struct device *dev = &gadget->dev; - struct f_uac *uac1 = func_to_uac(f); + struct f_uac1 *uac1 = func_to_uac1(f); if (intf == uac1->ac_intf) return uac1->ac_alt; @@ -774,205 +1198,143 @@ static void f_audio_disable(struct usb_function *f) { - struct f_uac *uac1 = func_to_uac(f); + struct f_uac1 *uac1 = func_to_uac1(f); uac1->as_out_alt = 0; uac1->as_in_alt = 0; u_audio_stop_playback(&uac1->g_audio); u_audio_stop_capture(&uac1->g_audio); + if (uac1->int_ep) + usb_ep_disable(uac1->int_ep); +} + +static void +f_audio_suspend(struct usb_function *f) +{ + struct f_uac1 *uac1 = func_to_uac1(f); + + u_audio_suspend(&uac1->g_audio); } /*-------------------------------------------------------------------------*/ -#define USBDHDR(p) (struct usb_descriptor_header *)(p) - -static void setup_headers(struct f_uac_opts *opts, - struct usb_descriptor_header **headers, - enum usb_device_speed speed) +static struct uac_feature_unit_descriptor *build_fu_desc(int chmask) { - struct usb_ss_ep_comp_descriptor *epout_desc_comp = NULL; - struct usb_ss_ep_comp_descriptor *epin_desc_comp = NULL; - struct usb_endpoint_descriptor *epout_desc; - struct usb_endpoint_descriptor *epin_desc; - int i; + struct uac_feature_unit_descriptor *fu_desc; + int channels = num_channels(chmask); + int fu_desc_size = UAC_DT_FEATURE_UNIT_SIZE(channels); - switch (speed) { - case USB_SPEED_FULL: - /* fall through */ - case USB_SPEED_HIGH: - epout_desc = &as_out_ep_desc; - epin_desc = &as_in_ep_desc; - break; - default: - epout_desc = &ss_out_ep_desc; - epin_desc = &ss_in_ep_desc; - epout_desc_comp = &ss_out_ep_desc_comp; - epin_desc_comp = &ss_in_ep_desc_comp; - } + fu_desc = kzalloc(fu_desc_size, GFP_KERNEL); + if (!fu_desc) + return NULL; - i = 0; - headers[i++] = USBDHDR(&iad_desc); - headers[i++] = USBDHDR(&ac_interface_desc); - headers[i++] = USBDHDR(&ac_header_desc); + fu_desc->bLength = fu_desc_size; + fu_desc->bDescriptorType = USB_DT_CS_INTERFACE; - if (EPOUT_EN(opts)) { - headers[i++] = USBDHDR(&usb_out_it_desc); - if (EPOUT_FU(opts)) - headers[i++] = USBDHDR(&io_out_ot_fu_desc); - headers[i++] = USBDHDR(&io_out_ot_desc); - } + fu_desc->bDescriptorSubtype = UAC_FEATURE_UNIT; + fu_desc->bControlSize = 2; - if (EPIN_EN(opts)) { - headers[i++] = USBDHDR(&io_in_it_desc); - if (EPIN_FU(opts)) - headers[i++] = USBDHDR(&usb_in_ot_fu_desc); - headers[i++] = USBDHDR(&usb_in_ot_desc); - } + /* bUnitID, bSourceID and bmaControls will be defined later */ - if (EPOUT_EN(opts)) { - headers[i++] = USBDHDR(&as_out_interface_alt_0_desc); - headers[i++] = USBDHDR(&as_out_interface_alt_1_desc); - headers[i++] = USBDHDR(&as_out_header_desc); - headers[i++] = USBDHDR(&as_out_type_i_desc); - headers[i++] = USBDHDR(epout_desc); - if (epout_desc_comp) - headers[i++] = USBDHDR(epout_desc_comp); - - headers[i++] = USBDHDR(&as_iso_out_desc); - } - - if (EPIN_EN(opts)) { - headers[i++] = USBDHDR(&as_in_interface_alt_0_desc); - headers[i++] = USBDHDR(&as_in_interface_alt_1_desc); - headers[i++] = USBDHDR(&as_in_header_desc); - headers[i++] = USBDHDR(&as_in_type_i_desc); - headers[i++] = USBDHDR(epin_desc); - if (epin_desc_comp) - headers[i++] = USBDHDR(epin_desc_comp); - - headers[i++] = USBDHDR(&as_iso_in_desc); - } - headers[i] = NULL; + return fu_desc; } -static void setup_descriptor(struct f_uac_opts *opts) +/* B.3.2 Class-Specific AC Interface Descriptor */ +static struct +uac1_ac_header_descriptor *build_ac_header_desc(struct f_uac1_opts *opts) { - int i = 1; - u16 len = 0; + struct uac1_ac_header_descriptor *ac_desc; + int ac_header_desc_size; + int num_ifaces = 0; + + if (EPOUT_EN(opts)) + num_ifaces++; + if (EPIN_EN(opts)) + num_ifaces++; + + ac_header_desc_size = UAC_DT_AC_HEADER_SIZE(num_ifaces); + + ac_desc = kzalloc(ac_header_desc_size, GFP_KERNEL); + if (!ac_desc) + return NULL; + + ac_desc->bLength = ac_header_desc_size; + ac_desc->bDescriptorType = USB_DT_CS_INTERFACE; + ac_desc->bDescriptorSubtype = UAC_HEADER; + ac_desc->bcdADC = cpu_to_le16(0x0100); + ac_desc->bInCollection = num_ifaces; + + /* wTotalLength and baInterfaceNr will be defined later */ + + return ac_desc; +} + +static void setup_descriptor(struct f_uac1_opts *opts) +{ + /* patch descriptors */ + int i = 1; /* ID's start with 1 */ if (EPOUT_EN(opts)) usb_out_it_desc.bTerminalID = i++; if (EPIN_EN(opts)) io_in_it_desc.bTerminalID = i++; - if (EPOUT_EN(opts) && EPOUT_FU(opts)) - io_out_ot_fu_desc.bUnitID = i++; - if (EPIN_EN(opts) && EPIN_FU(opts)) - usb_in_ot_fu_desc.bUnitID = i++; if (EPOUT_EN(opts)) io_out_ot_desc.bTerminalID = i++; if (EPIN_EN(opts)) usb_in_ot_desc.bTerminalID = i++; + if (FUOUT_EN(opts)) + out_feature_unit_desc->bUnitID = i++; + if (FUIN_EN(opts)) + in_feature_unit_desc->bUnitID = i++; - if (EPIN_FU(opts)) { - usb_in_ot_desc.bSourceID = usb_in_ot_fu_desc.bUnitID; - usb_in_ot_fu_desc.bSourceID = io_in_it_desc.bTerminalID; - p_feature_unit.id = usb_in_ot_fu_desc.bUnitID; + if (FUIN_EN(opts)) { + usb_in_ot_desc.bSourceID = in_feature_unit_desc->bUnitID; + in_feature_unit_desc->bSourceID = io_in_it_desc.bTerminalID; } else { usb_in_ot_desc.bSourceID = io_in_it_desc.bTerminalID; } - if (EPOUT_FU(opts)) { - io_out_ot_desc.bSourceID = io_out_ot_fu_desc.bUnitID; - io_out_ot_fu_desc.bSourceID = usb_out_it_desc.bTerminalID; - c_feature_unit.id = io_out_ot_fu_desc.bUnitID; + if (FUOUT_EN(opts)) { + io_out_ot_desc.bSourceID = out_feature_unit_desc->bUnitID; + out_feature_unit_desc->bSourceID = usb_out_it_desc.bTerminalID; } else { io_out_ot_desc.bSourceID = usb_out_it_desc.bTerminalID; } + as_out_header_desc.bTerminalLink = usb_out_it_desc.bTerminalID; as_in_header_desc.bTerminalLink = usb_in_ot_desc.bTerminalID; iad_desc.bInterfaceCount = 1; - ac_header_desc.bInCollection = 0; + ac_header_desc->wTotalLength = cpu_to_le16(ac_header_desc->bLength); if (EPIN_EN(opts)) { - len += UAC_DT_INPUT_TERMINAL_SIZE + UAC_DT_OUTPUT_TERMINAL_SIZE; - if (EPIN_FU(opts)) - len += UAC_DT_FEATURE_UNIT_SIZE(0); - iad_desc.bInterfaceCount++; - ac_header_desc.bInCollection++; - } + u16 len = le16_to_cpu(ac_header_desc->wTotalLength); + len += sizeof(usb_in_ot_desc); + len += sizeof(io_in_it_desc); + if (FUIN_EN(opts)) + len += in_feature_unit_desc->bLength; + ac_header_desc->wTotalLength = cpu_to_le16(len); + iad_desc.bInterfaceCount++; + } if (EPOUT_EN(opts)) { - len += UAC_DT_INPUT_TERMINAL_SIZE + UAC_DT_OUTPUT_TERMINAL_SIZE; - if (EPOUT_FU(opts)) - len += UAC_DT_FEATURE_UNIT_SIZE(0); + u16 len = le16_to_cpu(ac_header_desc->wTotalLength); + + len += sizeof(usb_out_it_desc); + len += sizeof(io_out_ot_desc); + if (FUOUT_EN(opts)) + len += out_feature_unit_desc->bLength; + ac_header_desc->wTotalLength = cpu_to_le16(len); iad_desc.bInterfaceCount++; - ac_header_desc.bInCollection++; - } - ac_header_desc.bLength = - UAC_DT_AC_HEADER_SIZE(ac_header_desc.bInCollection); - ac_header_desc.wTotalLength = cpu_to_le16(len + ac_header_desc.bLength); - - setup_headers(opts, f_audio_desc, USB_SPEED_HIGH); - setup_headers(opts, f_ss_audio_desc, USB_SPEED_SUPER); -} - -static int set_ep_max_packet_size(const struct f_uac_opts *opts, - struct usb_endpoint_descriptor *ep_desc, - enum usb_device_speed speed, bool is_playback) -{ - int chmask, srate = 0, ssize; - u16 max_size_bw, max_size_ep; - unsigned int factor; - int i; - - switch (speed) { - case USB_SPEED_FULL: - max_size_ep = 1023; - factor = 1000; - break; - - case USB_SPEED_HIGH: - /* fall through */ - case USB_SPEED_SUPER: - max_size_ep = 1024; - factor = 8000; - break; - - default: - return -EINVAL; } - if (is_playback) { - chmask = opts->p_chmask; - for (i = 0; i < UAC_MAX_RATES; i++) { - if (opts->p_srate[i] == 0) - break; - if (opts->p_srate[i] > srate) - srate = opts->p_srate[i]; - } - ssize = opts->p_ssize; - } else { - chmask = opts->c_chmask; - for (i = 0; i < UAC_MAX_RATES; i++) { - if (opts->c_srate[i] == 0) - break; - if (opts->c_srate[i] > srate) - srate = opts->c_srate[i]; - } - ssize = opts->c_ssize; - } - - max_size_bw = num_channels(chmask) * ssize * - ((srate / (factor / (1 << (ep_desc->bInterval - 1)))) + 1); - ep_desc->wMaxPacketSize = cpu_to_le16(min_t(u16, max_size_bw, - max_size_ep)); - - return 0; + setup_headers(opts, fs_audio_desc, USB_SPEED_FULL); + setup_headers(opts, hs_audio_desc, USB_SPEED_HIGH); + setup_headers(opts, ss_audio_desc, USB_SPEED_SUPER); } static int f_audio_validate_opts(struct g_audio *audio, struct device *dev) { - struct f_uac_opts *opts = g_audio_to_uac_opts(audio); + struct f_uac1_opts *opts = g_audio_to_uac1_opts(audio); if (!opts->p_chmask && !opts->c_chmask) { dev_err(dev, "Error: no playback and capture channels\n"); @@ -989,13 +1351,89 @@ } else if ((opts->c_ssize < 1) || (opts->c_ssize > 4)) { dev_err(dev, "Error: incorrect capture sample size\n"); return -EINVAL; - } else if (!opts->p_srate) { + } else if (!opts->p_srates[0]) { dev_err(dev, "Error: incorrect playback sampling rate\n"); return -EINVAL; - } else if (!opts->c_srate) { + } else if (!opts->c_srates[0]) { dev_err(dev, "Error: incorrect capture sampling rate\n"); return -EINVAL; } + + if (opts->p_volume_max <= opts->p_volume_min) { + dev_err(dev, "Error: incorrect playback volume max/min\n"); + return -EINVAL; + } else if (opts->c_volume_max <= opts->c_volume_min) { + dev_err(dev, "Error: incorrect capture volume max/min\n"); + return -EINVAL; + } else if (opts->p_volume_res <= 0) { + dev_err(dev, "Error: negative/zero playback volume resolution\n"); + return -EINVAL; + } else if (opts->c_volume_res <= 0) { + dev_err(dev, "Error: negative/zero capture volume resolution\n"); + return -EINVAL; + } + + if ((opts->p_volume_max - opts->p_volume_min) % opts->p_volume_res) { + dev_err(dev, "Error: incorrect playback volume resolution\n"); + return -EINVAL; + } else if ((opts->c_volume_max - opts->c_volume_min) % opts->c_volume_res) { + dev_err(dev, "Error: incorrect capture volume resolution\n"); + return -EINVAL; + } + + return 0; +} + +static int set_ep_max_packet_size(const struct f_uac1_opts *opts, + struct usb_endpoint_descriptor *ep_desc, + enum usb_device_speed speed, bool is_playback) +{ + int chmask, srate = 0, ssize; + u16 max_size_bw, max_size_ep; + unsigned int factor; + int i; + + switch (speed) { + case USB_SPEED_FULL: + max_size_ep = 1023; + factor = 1000; + break; + + case USB_SPEED_HIGH: + fallthrough; + case USB_SPEED_SUPER: + max_size_ep = 1024; + factor = 8000; + break; + + default: + return -EINVAL; + } + + if (is_playback) { + chmask = opts->p_chmask; + for (i = 0; i < UAC_MAX_RATES; i++) { + if (opts->p_srates[i] == 0) + break; + if (opts->p_srates[i] > srate) + srate = opts->p_srates[i]; + } + ssize = opts->p_ssize; + } else { + chmask = opts->c_chmask; + for (i = 0; i < UAC_MAX_RATES; i++) { + if (opts->c_srates[i] == 0) + break; + if (opts->c_srates[i] > srate) + srate = opts->c_srates[i]; + } + ssize = opts->c_ssize; + } + + max_size_bw = num_channels(chmask) * ssize * + ((srate / (factor / (1 << (ep_desc->bInterval - 1)))) + 1); + ep_desc->wMaxPacketSize = cpu_to_le16(min_t(u16, max_size_bw, + max_size_ep)); return 0; } @@ -1005,12 +1443,13 @@ { struct usb_composite_dev *cdev = c->cdev; struct usb_gadget *gadget = cdev->gadget; - struct f_uac *uac1 = func_to_uac(f); + struct device *dev = &gadget->dev; + struct f_uac1 *uac1 = func_to_uac1(f); struct g_audio *audio = func_to_g_audio(f); - struct f_uac_opts *audio_opts; + struct f_uac1_opts *audio_opts; struct usb_ep *ep = NULL; struct usb_string *us; - struct device *dev = &gadget->dev; + int ba_iface_id; int status; int idx, i; @@ -1018,26 +1457,60 @@ if (status) return status; - audio_opts = container_of(f->fi, struct f_uac_opts, func_inst); + audio_opts = container_of(f->fi, struct f_uac1_opts, func_inst); + + strings_uac1[STR_ASSOC].s = audio_opts->function_name; us = usb_gstrings_attach(cdev, uac1_strings, ARRAY_SIZE(strings_uac1)); if (IS_ERR(us)) return PTR_ERR(us); + ac_header_desc = build_ac_header_desc(audio_opts); + if (!ac_header_desc) + return -ENOMEM; + + if (FUOUT_EN(audio_opts)) { + out_feature_unit_desc = build_fu_desc(audio_opts->c_chmask); + if (!out_feature_unit_desc) { + status = -ENOMEM; + goto fail; + } + } + if (FUIN_EN(audio_opts)) { + in_feature_unit_desc = build_fu_desc(audio_opts->p_chmask); + if (!in_feature_unit_desc) { + status = -ENOMEM; + goto err_free_fu; + } + } + iad_desc.iFunction = us[STR_ASSOC].id; ac_interface_desc.iInterface = us[STR_AC_IF].id; usb_out_it_desc.iTerminal = us[STR_USB_OUT_IT].id; usb_out_it_desc.iChannelNames = us[STR_USB_OUT_IT_CH_NAMES].id; - io_out_ot_fu_desc.iFeature = us[STR_IO_OUT_OT_FU].id; io_out_ot_desc.iTerminal = us[STR_IO_OUT_OT].id; as_out_interface_alt_0_desc.iInterface = us[STR_AS_OUT_IF_ALT0].id; as_out_interface_alt_1_desc.iInterface = us[STR_AS_OUT_IF_ALT1].id; io_in_it_desc.iTerminal = us[STR_IO_IN_IT].id; io_in_it_desc.iChannelNames = us[STR_IO_IN_IT_CH_NAMES].id; - usb_in_ot_fu_desc.iFeature = us[STR_USB_IN_OT_FU].id; usb_in_ot_desc.iTerminal = us[STR_USB_IN_OT].id; as_in_interface_alt_0_desc.iInterface = us[STR_AS_IN_IF_ALT0].id; as_in_interface_alt_1_desc.iInterface = us[STR_AS_IN_IF_ALT1].id; + + if (FUOUT_EN(audio_opts)) { + u8 *i_feature; + + i_feature = (u8 *)out_feature_unit_desc + + out_feature_unit_desc->bLength - 1; + *i_feature = us[STR_FU_OUT].id; + } + if (FUIN_EN(audio_opts)) { + u8 *i_feature; + + i_feature = (u8 *)in_feature_unit_desc + + in_feature_unit_desc->bLength - 1; + *i_feature = us[STR_FU_IN].id; + } /* Set channel numbers */ usb_out_it_desc.bNrChannels = num_channels(audio_opts->c_chmask); @@ -1051,12 +1524,33 @@ as_in_type_i_desc.bSubframeSize = audio_opts->p_ssize; as_in_type_i_desc.bBitResolution = audio_opts->p_ssize * 8; + if (FUOUT_EN(audio_opts)) { + __le16 *bma = (__le16 *)&out_feature_unit_desc->bmaControls[0]; + u32 control = 0; + + if (audio_opts->c_mute_present) + control |= UAC_FU_MUTE; + if (audio_opts->c_volume_present) + control |= UAC_FU_VOLUME; + *bma = cpu_to_le16(control); + } + if (FUIN_EN(audio_opts)) { + __le16 *bma = (__le16 *)&in_feature_unit_desc->bmaControls[0]; + u32 control = 0; + + if (audio_opts->p_mute_present) + control |= UAC_FU_MUTE; + if (audio_opts->p_volume_present) + control |= UAC_FU_VOLUME; + *bma = cpu_to_le16(control); + } + /* Set sample rates */ for (i = 0, idx = 0; i < UAC_MAX_RATES; i++) { - if (audio_opts->c_srate[i] == 0) + if (audio_opts->c_srates[i] == 0) break; memcpy(as_out_type_i_desc.tSamFreq[idx++], - &audio_opts->c_srate[i], 3); + &audio_opts->c_srates[i], 3); } /* @@ -1065,6 +1559,20 @@ * be compatible with larger bandwidth requirements for * high speed mode. */ + status = set_ep_max_packet_size(audio_opts, &fs_out_ep_desc, + USB_SPEED_FULL, false); + if (status < 0) { + dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); + goto fail; + } + + status = set_ep_max_packet_size(audio_opts, &fs_in_ep_desc, + USB_SPEED_FULL, true); + if (status < 0) { + dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); + goto fail; + } + status = set_ep_max_packet_size(audio_opts, &as_out_ep_desc, USB_SPEED_HIGH, false); if (status < 0) { @@ -1079,53 +1587,40 @@ goto fail; } - status = set_ep_max_packet_size(audio_opts, &ss_out_ep_desc, - USB_SPEED_SUPER, false); - if (status < 0) { - dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); - goto fail; - } - - ss_out_ep_desc_comp.wBytesPerInterval = ss_out_ep_desc.wMaxPacketSize; - - status = set_ep_max_packet_size(audio_opts, &ss_in_ep_desc, - USB_SPEED_SUPER, true); - if (status < 0) { - dev_err(dev, "%s:%d Error!\n", __func__, __LINE__); - goto fail; - } - - ss_in_ep_desc_comp.wBytesPerInterval = ss_in_ep_desc.wMaxPacketSize; - + as_out_ep_desc_comp.wBytesPerInterval = as_out_ep_desc.wMaxPacketSize; + as_in_ep_desc_comp.wBytesPerInterval = as_in_ep_desc.wMaxPacketSize; as_out_type_i_desc.bLength = UAC_FORMAT_TYPE_I_DISCRETE_DESC_SIZE(idx); as_out_type_i_desc.bSamFreqType = idx; for (i = 0, idx = 0; i < UAC_MAX_RATES; i++) { - if (audio_opts->p_srate[i] == 0) + if (audio_opts->p_srates[i] == 0) break; memcpy(as_in_type_i_desc.tSamFreq[idx++], - &audio_opts->p_srate[i], 3); + &audio_opts->p_srates[i], 3); } as_in_type_i_desc.bLength = UAC_FORMAT_TYPE_I_DISCRETE_DESC_SIZE(idx); as_in_type_i_desc.bSamFreqType = idx; + uac1->p_srate = audio_opts->p_srates[0]; + uac1->c_srate = audio_opts->c_srates[0]; /* allocate instance-specific interface IDs, and patch descriptors */ status = usb_interface_id(c, f); if (status < 0) - goto fail; + goto err_free_fu; iad_desc.bFirstInterface = status; ac_interface_desc.bInterfaceNumber = status; uac1->ac_intf = status; uac1->ac_alt = 0; - ac_header_desc.baInterfaceNr[0] = ++status; - ac_header_desc.baInterfaceNr[1] = ++status; + + ba_iface_id = 0; if (EPOUT_EN(audio_opts)) { status = usb_interface_id(c, f); if (status < 0) - goto fail; + goto err_free_fu; as_out_interface_alt_0_desc.bInterfaceNumber = status; as_out_interface_alt_1_desc.bInterfaceNumber = status; + ac_header_desc->baInterfaceNr[ba_iface_id++] = status; uac1->as_out_intf = status; uac1->as_out_alt = 0; } @@ -1133,9 +1628,10 @@ if (EPIN_EN(audio_opts)) { status = usb_interface_id(c, f); if (status < 0) - goto fail; + goto err_free_fu; as_in_interface_alt_0_desc.bInterfaceNumber = status; as_in_interface_alt_1_desc.bInterfaceNumber = status; + ac_header_desc->baInterfaceNr[ba_iface_id++] = status; uac1->as_in_intf = status; uac1->as_in_alt = 0; } @@ -1144,51 +1640,82 @@ status = -ENODEV; + ac_interface_desc.bNumEndpoints = 0; + + /* allocate AC interrupt endpoint */ + if (FUOUT_EN(audio_opts) || FUIN_EN(audio_opts)) { + ep = usb_ep_autoconfig(cdev->gadget, &ac_int_ep_desc); + if (!ep) + goto err_free_fu; + uac1->int_ep = ep; + + ac_interface_desc.bNumEndpoints = 1; + } + /* allocate instance-specific endpoints */ if (EPOUT_EN(audio_opts)) { ep = usb_ep_autoconfig(cdev->gadget, &as_out_ep_desc); if (!ep) - goto fail; + goto err_free_fu; audio->out_ep = ep; - audio->out_ep->desc = &as_out_ep_desc; } if (EPIN_EN(audio_opts)) { ep = usb_ep_autoconfig(cdev->gadget, &as_in_ep_desc); if (!ep) - goto fail; - ep->maxpacket = usb_endpoint_maxp(&as_in_ep_desc); + goto err_free_fu; audio->in_ep = ep; - audio->in_ep->desc = &as_in_ep_desc; } - ss_out_ep_desc.bEndpointAddress = as_out_ep_desc.bEndpointAddress; - ss_in_ep_desc.bEndpointAddress = as_in_ep_desc.bEndpointAddress; + /* FS endpoint addresses are copied from autoconfigured HS descriptors */ + fs_int_ep_desc.bEndpointAddress = ac_int_ep_desc.bEndpointAddress; + fs_out_ep_desc.bEndpointAddress = as_out_ep_desc.bEndpointAddress; + fs_in_ep_desc.bEndpointAddress = as_in_ep_desc.bEndpointAddress; setup_descriptor(audio_opts); - /* copy descriptors, and track endpoint copies */ - status = usb_assign_descriptors(f, f_audio_desc, f_audio_desc, - f_ss_audio_desc, f_ss_audio_desc); - if (status) - goto fail; - audio->out_ep_maxpsize = le16_to_cpu(as_out_ep_desc.wMaxPacketSize); - audio->in_ep_maxpsize = le16_to_cpu(as_in_ep_desc.wMaxPacketSize); - audio->out_ep_maxpsize = max_t(u16, audio->out_ep_maxpsize, - le16_to_cpu(ss_out_ep_desc.wMaxPacketSize)); - audio->in_ep_maxpsize = max_t(u16, audio->in_ep_maxpsize, - le16_to_cpu(ss_in_ep_desc.wMaxPacketSize)); + /* copy descriptors, and track endpoint copies */ + status = usb_assign_descriptors(f, fs_audio_desc, hs_audio_desc, + ss_audio_desc, ss_audio_desc); + if (status) + goto err_free_fu; + + audio->out_ep_maxpsize = max_t(u16, + le16_to_cpu(fs_out_ep_desc.wMaxPacketSize), + le16_to_cpu(as_out_ep_desc.wMaxPacketSize)); + audio->in_ep_maxpsize = max_t(u16, + le16_to_cpu(fs_in_ep_desc.wMaxPacketSize), + le16_to_cpu(as_in_ep_desc.wMaxPacketSize)); audio->params.c_chmask = audio_opts->c_chmask; - memcpy(audio->params.c_srate, audio_opts->c_srate, - sizeof(audio->params.c_srate)); - audio->params.c_srate_active = audio_opts->c_srate_active; + memcpy(audio->params.c_srates, audio_opts->c_srates, + sizeof(audio->params.c_srates)); audio->params.c_ssize = audio_opts->c_ssize; + if (FUIN_EN(audio_opts)) { + audio->params.p_fu.id = USB_IN_FU_ID; + audio->params.p_fu.mute_present = audio_opts->p_mute_present; + audio->params.p_fu.volume_present = + audio_opts->p_volume_present; + audio->params.p_fu.volume_min = audio_opts->p_volume_min; + audio->params.p_fu.volume_max = audio_opts->p_volume_max; + audio->params.p_fu.volume_res = audio_opts->p_volume_res; + } audio->params.p_chmask = audio_opts->p_chmask; - memcpy(audio->params.p_srate, audio_opts->p_srate, - sizeof(audio->params.p_srate)); - audio->params.p_srate_active = audio_opts->p_srate_active; + memcpy(audio->params.p_srates, audio_opts->p_srates, + sizeof(audio->params.p_srates)); audio->params.p_ssize = audio_opts->p_ssize; + if (FUOUT_EN(audio_opts)) { + audio->params.c_fu.id = USB_OUT_FU_ID; + audio->params.c_fu.mute_present = audio_opts->c_mute_present; + audio->params.c_fu.volume_present = + audio_opts->c_volume_present; + audio->params.c_fu.volume_min = audio_opts->c_volume_min; + audio->params.c_fu.volume_max = audio_opts->c_volume_max; + audio->params.c_fu.volume_res = audio_opts->c_volume_res; + } audio->params.req_number = audio_opts->req_number; + audio->params.fb_max = FBACK_FAST_MAX; + if (FUOUT_EN(audio_opts) || FUIN_EN(audio_opts)) + audio->notify = audio_notify; status = g_audio_setup(audio, "UAC1_PCM", "UAC1_Gadget"); if (status) @@ -1198,75 +1725,226 @@ err_card_register: usb_free_all_descriptors(f); +err_free_fu: + kfree(out_feature_unit_desc); + out_feature_unit_desc = NULL; + kfree(in_feature_unit_desc); + in_feature_unit_desc = NULL; fail: + kfree(ac_header_desc); + ac_header_desc = NULL; return status; } /*-------------------------------------------------------------------------*/ -/* Todo: add more control selecotor dynamically */ -static int control_selector_init(struct f_uac *uac1) +static inline struct f_uac1_opts *to_f_uac1_opts(struct config_item *item) { - INIT_LIST_HEAD(&uac1->cs); + return container_of(to_config_group(item), struct f_uac1_opts, + func_inst.group); +} - /* playback feature unit */ - list_add(&p_feature_unit.list, &uac1->cs); +static void f_uac1_attr_release(struct config_item *item) +{ + struct f_uac1_opts *opts = to_f_uac1_opts(item); - INIT_LIST_HEAD(&p_feature_unit.control); - list_add(&p_mute_control.list, &p_feature_unit.control); - list_add(&p_volume_control.list, &p_feature_unit.control); - - p_volume_control.data[UAC__CUR] = UAC_VOLUME_CUR; - p_volume_control.data[UAC__MIN] = UAC_VOLUME_MIN; - p_volume_control.data[UAC__MAX] = UAC_VOLUME_MAX; - p_volume_control.data[UAC__RES] = UAC_VOLUME_RES; - - p_volume_control.context = &uac1->g_audio; - p_mute_control.context = &uac1->g_audio; - - /* capture feature unit */ - list_add(&c_feature_unit.list, &uac1->cs); - - INIT_LIST_HEAD(&c_feature_unit.control); - list_add(&c_mute_control.list, &c_feature_unit.control); - list_add(&c_volume_control.list, &c_feature_unit.control); - - c_volume_control.data[UAC__CUR] = UAC_VOLUME_CUR; - c_volume_control.data[UAC__MIN] = UAC_VOLUME_MIN; - c_volume_control.data[UAC__MAX] = UAC_VOLUME_MAX; - c_volume_control.data[UAC__RES] = UAC_VOLUME_RES; - - c_volume_control.context = &uac1->g_audio; - c_mute_control.context = &uac1->g_audio; - - return 0; + usb_put_function_instance(&opts->func_inst); } static struct configfs_item_operations f_uac1_item_ops = { - .release = f_uac_attr_release, + .release = f_uac1_attr_release, }; -UAC_ATTRIBUTE(c_chmask); -UAC_ATTRIBUTE(c_ssize); -UAC_ATTRIBUTE(c_feature_unit); -UAC_ATTRIBUTE(p_chmask); -UAC_ATTRIBUTE(p_ssize); -UAC_ATTRIBUTE(p_feature_unit); -UAC_ATTRIBUTE(req_number); +#define uac1_kstrtou32 kstrtou32 +#define uac1_kstrtos16 kstrtos16 +#define uac1_kstrtobool(s, base, res) kstrtobool((s), (res)) -UAC_RATE_ATTRIBUTE(p_srate); -UAC_RATE_ATTRIBUTE(c_srate); +static const char *u32_fmt = "%u\n"; +static const char *s16_fmt = "%hd\n"; +static const char *bool_fmt = "%u\n"; + +#define UAC1_ATTRIBUTE(type, name) \ +static ssize_t f_uac1_opts_##name##_show( \ + struct config_item *item, \ + char *page) \ +{ \ + struct f_uac1_opts *opts = to_f_uac1_opts(item); \ + int result; \ + \ + mutex_lock(&opts->lock); \ + result = sprintf(page, type##_fmt, opts->name); \ + mutex_unlock(&opts->lock); \ + \ + return result; \ +} \ + \ +static ssize_t f_uac1_opts_##name##_store( \ + struct config_item *item, \ + const char *page, size_t len) \ +{ \ + struct f_uac1_opts *opts = to_f_uac1_opts(item); \ + int ret; \ + type num; \ + \ + mutex_lock(&opts->lock); \ + if (opts->refcnt) { \ + ret = -EBUSY; \ + goto end; \ + } \ + \ + ret = uac1_kstrto##type(page, 0, &num); \ + if (ret) \ + goto end; \ + \ + opts->name = num; \ + ret = len; \ + \ +end: \ + mutex_unlock(&opts->lock); \ + return ret; \ +} \ + \ +CONFIGFS_ATTR(f_uac1_opts_, name) + +#define UAC1_RATE_ATTRIBUTE(name) \ +static ssize_t f_uac1_opts_##name##_show(struct config_item *item, \ + char *page) \ +{ \ + struct f_uac1_opts *opts = to_f_uac1_opts(item); \ + int result = 0; \ + int i; \ + \ + mutex_lock(&opts->lock); \ + page[0] = '\0'; \ + for (i = 0; i < UAC_MAX_RATES; i++) { \ + if (opts->name##s[i] == 0) \ + break; \ + result += sprintf(page + strlen(page), "%u,", \ + opts->name##s[i]); \ + } \ + if (strlen(page) > 0) \ + page[strlen(page) - 1] = '\n'; \ + mutex_unlock(&opts->lock); \ + \ + return result; \ +} \ + \ +static ssize_t f_uac1_opts_##name##_store(struct config_item *item, \ + const char *page, size_t len) \ +{ \ + struct f_uac1_opts *opts = to_f_uac1_opts(item); \ + char *split_page = NULL; \ + int ret = -EINVAL; \ + char *token; \ + u32 num; \ + int i; \ + \ + mutex_lock(&opts->lock); \ + if (opts->refcnt) { \ + ret = -EBUSY; \ + goto end; \ + } \ + \ + i = 0; \ + memset(opts->name##s, 0x00, sizeof(opts->name##s)); \ + split_page = kstrdup(page, GFP_KERNEL); \ + while ((token = strsep(&split_page, ",")) != NULL) { \ + ret = kstrtou32(token, 0, &num); \ + if (ret) \ + goto end; \ + \ + opts->name##s[i++] = num; \ + ret = len; \ + }; \ + \ +end: \ + kfree(split_page); \ + mutex_unlock(&opts->lock); \ + return ret; \ +} \ + \ +CONFIGFS_ATTR(f_uac1_opts_, name) + +#define UAC1_ATTRIBUTE_STRING(name) \ +static ssize_t f_uac1_opts_##name##_show(struct config_item *item, \ + char *page) \ +{ \ + struct f_uac1_opts *opts = to_f_uac1_opts(item); \ + int result; \ + \ + mutex_lock(&opts->lock); \ + result = snprintf(page, sizeof(opts->name), "%s", opts->name); \ + mutex_unlock(&opts->lock); \ + \ + return result; \ +} \ + \ +static ssize_t f_uac1_opts_##name##_store(struct config_item *item, \ + const char *page, size_t len) \ +{ \ + struct f_uac1_opts *opts = to_f_uac1_opts(item); \ + int ret = 0; \ + \ + mutex_lock(&opts->lock); \ + if (opts->refcnt) { \ + ret = -EBUSY; \ + goto end; \ + } \ + \ + ret = snprintf(opts->name, min(sizeof(opts->name), len), \ + "%s", page); \ + \ +end: \ + mutex_unlock(&opts->lock); \ + return ret; \ +} \ + \ +CONFIGFS_ATTR(f_uac1_opts_, name) + +UAC1_ATTRIBUTE(u32, c_chmask); +UAC1_RATE_ATTRIBUTE(c_srate); +UAC1_ATTRIBUTE(u32, c_ssize); +UAC1_ATTRIBUTE(u32, p_chmask); +UAC1_RATE_ATTRIBUTE(p_srate); +UAC1_ATTRIBUTE(u32, p_ssize); +UAC1_ATTRIBUTE(u32, req_number); + +UAC1_ATTRIBUTE(bool, p_mute_present); +UAC1_ATTRIBUTE(bool, p_volume_present); +UAC1_ATTRIBUTE(s16, p_volume_min); +UAC1_ATTRIBUTE(s16, p_volume_max); +UAC1_ATTRIBUTE(s16, p_volume_res); + +UAC1_ATTRIBUTE(bool, c_mute_present); +UAC1_ATTRIBUTE(bool, c_volume_present); +UAC1_ATTRIBUTE(s16, c_volume_min); +UAC1_ATTRIBUTE(s16, c_volume_max); +UAC1_ATTRIBUTE(s16, c_volume_res); +UAC1_ATTRIBUTE_STRING(function_name); static struct configfs_attribute *f_uac1_attrs[] = { - &f_uac_opts_attr_c_chmask, - &f_uac_opts_attr_c_srate, - &f_uac_opts_attr_c_ssize, - &f_uac_opts_attr_c_feature_unit, - &f_uac_opts_attr_p_chmask, - &f_uac_opts_attr_p_srate, - &f_uac_opts_attr_p_ssize, - &f_uac_opts_attr_p_feature_unit, - &f_uac_opts_attr_req_number, + &f_uac1_opts_attr_c_chmask, + &f_uac1_opts_attr_c_srate, + &f_uac1_opts_attr_c_ssize, + &f_uac1_opts_attr_p_chmask, + &f_uac1_opts_attr_p_srate, + &f_uac1_opts_attr_p_ssize, + &f_uac1_opts_attr_req_number, + + &f_uac1_opts_attr_p_mute_present, + &f_uac1_opts_attr_p_volume_present, + &f_uac1_opts_attr_p_volume_min, + &f_uac1_opts_attr_p_volume_max, + &f_uac1_opts_attr_p_volume_res, + + &f_uac1_opts_attr_c_mute_present, + &f_uac1_opts_attr_c_volume_present, + &f_uac1_opts_attr_c_volume_min, + &f_uac1_opts_attr_c_volume_max, + &f_uac1_opts_attr_c_volume_res, + + &f_uac1_opts_attr_function_name, + NULL, }; @@ -1278,15 +1956,15 @@ static void f_audio_free_inst(struct usb_function_instance *f) { - struct f_uac_opts *opts; + struct f_uac1_opts *opts; - opts = container_of(f, struct f_uac_opts, func_inst); + opts = container_of(f, struct f_uac1_opts, func_inst); kfree(opts); } static struct usb_function_instance *f_audio_alloc_inst(void) { - struct f_uac_opts *opts; + struct f_uac1_opts *opts; opts = kzalloc(sizeof(*opts), GFP_KERNEL); if (!opts) @@ -1298,27 +1976,39 @@ config_group_init_type_name(&opts->func_inst.group, "", &f_uac1_func_type); - opts->c_chmask = UAC_DEF_CCHMASK; - opts->c_srate[0] = UAC_DEF_CSRATE; - opts->c_srate_active = UAC_DEF_CSRATE; - opts->c_ssize = UAC_DEF_CSSIZE; - opts->c_feature_unit = UAC_DEF_CFU; - opts->p_chmask = UAC_DEF_PCHMASK; - opts->p_srate[0] = UAC_DEF_PSRATE; - opts->p_srate_active = UAC_DEF_PSRATE; - opts->p_ssize = UAC_DEF_PSSIZE; - opts->p_feature_unit = UAC_DEF_PFU; - opts->req_number = UAC_DEF_REQ_NUM; + opts->c_chmask = UAC1_DEF_CCHMASK; + opts->c_srates[0] = UAC1_DEF_CSRATE; + opts->c_ssize = UAC1_DEF_CSSIZE; + opts->p_chmask = UAC1_DEF_PCHMASK; + opts->p_srates[0] = UAC1_DEF_PSRATE; + opts->p_ssize = UAC1_DEF_PSSIZE; + + opts->p_mute_present = UAC1_DEF_MUTE_PRESENT; + opts->p_volume_present = UAC1_DEF_VOLUME_PRESENT; + opts->p_volume_min = UAC1_DEF_MIN_DB; + opts->p_volume_max = UAC1_DEF_MAX_DB; + opts->p_volume_res = UAC1_DEF_RES_DB; + + opts->c_mute_present = UAC1_DEF_MUTE_PRESENT; + opts->c_volume_present = UAC1_DEF_VOLUME_PRESENT; + opts->c_volume_min = UAC1_DEF_MIN_DB; + opts->c_volume_max = UAC1_DEF_MAX_DB; + opts->c_volume_res = UAC1_DEF_RES_DB; + + opts->req_number = UAC1_DEF_REQ_NUM; + + snprintf(opts->function_name, sizeof(opts->function_name), "Source/Sink"); + return &opts->func_inst; } static void f_audio_free(struct usb_function *f) { struct g_audio *audio; - struct f_uac_opts *opts; + struct f_uac1_opts *opts; audio = func_to_g_audio(f); - opts = container_of(f->fi, struct f_uac_opts, func_inst); + opts = container_of(f->fi, struct f_uac1_opts, func_inst); kfree(audio); mutex_lock(&opts->lock); --opts->refcnt; @@ -1332,20 +2022,28 @@ g_audio_cleanup(audio); usb_free_all_descriptors(f); + kfree(out_feature_unit_desc); + out_feature_unit_desc = NULL; + kfree(in_feature_unit_desc); + in_feature_unit_desc = NULL; + + kfree(ac_header_desc); + ac_header_desc = NULL; + audio->gadget = NULL; } static struct usb_function *f_audio_alloc(struct usb_function_instance *fi) { - struct f_uac *uac1; - struct f_uac_opts *opts; + struct f_uac1 *uac1; + struct f_uac1_opts *opts; /* allocate and initialize one new instance */ uac1 = kzalloc(sizeof(*uac1), GFP_KERNEL); if (!uac1) return ERR_PTR(-ENOMEM); - opts = container_of(fi, struct f_uac_opts, func_inst); + opts = container_of(fi, struct f_uac1_opts, func_inst); mutex_lock(&opts->lock); ++opts->refcnt; mutex_unlock(&opts->lock); @@ -1357,9 +2055,8 @@ uac1->g_audio.func.get_alt = f_audio_get_alt; uac1->g_audio.func.setup = f_audio_setup; uac1->g_audio.func.disable = f_audio_disable; + uac1->g_audio.func.suspend = f_audio_suspend; uac1->g_audio.func.free_func = f_audio_free; - - control_selector_init(uac1); return &uac1->g_audio.func; } -- Gitblit v1.6.2