2017-11-03 11:28:30 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-02-02 22:01:34 +05:30
|
|
|
/*
|
|
|
|
* f_uac2.c -- USB Audio Class 2.0 Function
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011
|
|
|
|
* Yadwinder Singh (yadi.brar01@gmail.com)
|
|
|
|
* Jaswinder Singh (jaswinder.singh@linaro.org)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/usb/audio.h>
|
|
|
|
#include <linux/usb/audio-v2.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
#include "u_audio.h"
|
2014-07-22 19:58:30 +02:00
|
|
|
#include "u_uac2.h"
|
|
|
|
|
2012-02-02 22:01:34 +05:30
|
|
|
/*
|
|
|
|
* The driver implements a simple UAC_2 topology.
|
|
|
|
* USB-OUT -> IT_1 -> OT_3 -> ALSA_Capture
|
|
|
|
* ALSA_Playback -> IT_2 -> OT_4 -> USB-IN
|
|
|
|
* Capture and Playback sampling rates are independently
|
|
|
|
* controlled by two clock sources :
|
|
|
|
* CLK_5 := c_srate, and CLK_6 := p_srate
|
|
|
|
*/
|
|
|
|
#define USB_OUT_IT_ID 1
|
|
|
|
#define IO_IN_IT_ID 2
|
|
|
|
#define IO_OUT_OT_ID 3
|
|
|
|
#define USB_IN_OT_ID 4
|
|
|
|
#define USB_OUT_CLK_ID 5
|
|
|
|
#define USB_IN_CLK_ID 6
|
|
|
|
|
|
|
|
#define CONTROL_ABSENT 0
|
|
|
|
#define CONTROL_RDONLY 1
|
|
|
|
#define CONTROL_RDWR 3
|
|
|
|
|
|
|
|
#define CLK_FREQ_CTRL 0
|
|
|
|
#define CLK_VLD_CTRL 2
|
|
|
|
|
|
|
|
#define COPY_CTRL 0
|
|
|
|
#define CONN_CTRL 2
|
|
|
|
#define OVRLD_CTRL 4
|
|
|
|
#define CLSTR_CTRL 6
|
|
|
|
#define UNFLW_CTRL 8
|
|
|
|
#define OVFLW_CTRL 10
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 {
|
|
|
|
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() */
|
2012-02-02 22:01:34 +05:30
|
|
|
};
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
static inline struct f_uac2 *func_to_uac2(struct usb_function *f)
|
2012-02-02 22:01:34 +05:30
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
return container_of(f, struct f_uac2, g_audio.func);
|
2012-02-02 22:01:34 +05:30
|
|
|
}
|
|
|
|
|
2014-08-27 19:09:05 +02:00
|
|
|
static inline
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2_opts *g_audio_to_uac2_opts(struct g_audio *agdev)
|
2014-08-27 19:09:05 +02:00
|
|
|
{
|
|
|
|
return container_of(agdev->func.fi, struct f_uac2_opts, func_inst);
|
|
|
|
}
|
|
|
|
|
2012-02-02 22:01:34 +05:30
|
|
|
/* --------- USB Function Interface ------------- */
|
|
|
|
|
|
|
|
enum {
|
|
|
|
STR_ASSOC,
|
|
|
|
STR_IF_CTRL,
|
|
|
|
STR_CLKSRC_IN,
|
|
|
|
STR_CLKSRC_OUT,
|
|
|
|
STR_USB_IT,
|
|
|
|
STR_IO_IT,
|
|
|
|
STR_USB_OT,
|
|
|
|
STR_IO_OT,
|
|
|
|
STR_AS_OUT_ALT0,
|
|
|
|
STR_AS_OUT_ALT1,
|
|
|
|
STR_AS_IN_ALT0,
|
|
|
|
STR_AS_IN_ALT1,
|
|
|
|
};
|
|
|
|
|
|
|
|
static char clksrc_in[8];
|
|
|
|
static char clksrc_out[8];
|
|
|
|
|
|
|
|
static struct usb_string strings_fn[] = {
|
2012-10-22 22:15:09 +02:00
|
|
|
[STR_ASSOC].s = "Source/Sink",
|
|
|
|
[STR_IF_CTRL].s = "Topology Control",
|
2012-02-02 22:01:34 +05:30
|
|
|
[STR_CLKSRC_IN].s = clksrc_in,
|
|
|
|
[STR_CLKSRC_OUT].s = clksrc_out,
|
2012-10-22 22:15:09 +02:00
|
|
|
[STR_USB_IT].s = "USBH Out",
|
|
|
|
[STR_IO_IT].s = "USBD Out",
|
|
|
|
[STR_USB_OT].s = "USBH In",
|
|
|
|
[STR_IO_OT].s = "USBD In",
|
|
|
|
[STR_AS_OUT_ALT0].s = "Playback Inactive",
|
|
|
|
[STR_AS_OUT_ALT1].s = "Playback Active",
|
|
|
|
[STR_AS_IN_ALT0].s = "Capture Inactive",
|
|
|
|
[STR_AS_IN_ALT1].s = "Capture Active",
|
2012-02-02 22:01:34 +05:30
|
|
|
{ },
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct usb_gadget_strings str_fn = {
|
|
|
|
.language = 0x0409, /* en-us */
|
|
|
|
.strings = strings_fn,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct usb_gadget_strings *fn_strings[] = {
|
|
|
|
&str_fn,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct usb_interface_assoc_descriptor iad_desc = {
|
|
|
|
.bLength = sizeof iad_desc,
|
|
|
|
.bDescriptorType = USB_DT_INTERFACE_ASSOCIATION,
|
|
|
|
|
|
|
|
.bFirstInterface = 0,
|
|
|
|
.bInterfaceCount = 3,
|
|
|
|
.bFunctionClass = USB_CLASS_AUDIO,
|
|
|
|
.bFunctionSubClass = UAC2_FUNCTION_SUBCLASS_UNDEFINED,
|
|
|
|
.bFunctionProtocol = UAC_VERSION_2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Control Interface */
|
|
|
|
static struct usb_interface_descriptor std_ac_if_desc = {
|
|
|
|
.bLength = sizeof std_ac_if_desc,
|
|
|
|
.bDescriptorType = USB_DT_INTERFACE,
|
|
|
|
|
|
|
|
.bAlternateSetting = 0,
|
|
|
|
.bNumEndpoints = 0,
|
|
|
|
.bInterfaceClass = USB_CLASS_AUDIO,
|
|
|
|
.bInterfaceSubClass = USB_SUBCLASS_AUDIOCONTROL,
|
|
|
|
.bInterfaceProtocol = UAC_VERSION_2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Clock source for IN traffic */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac_clock_source_descriptor in_clk_src_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof in_clk_src_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC2_CLOCK_SOURCE,
|
|
|
|
.bClockID = USB_IN_CLK_ID,
|
|
|
|
.bmAttributes = UAC_CLOCK_SOURCE_TYPE_INT_FIXED,
|
|
|
|
.bmControls = (CONTROL_RDONLY << CLK_FREQ_CTRL),
|
|
|
|
.bAssocTerminal = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Clock source for OUT traffic */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac_clock_source_descriptor out_clk_src_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof out_clk_src_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC2_CLOCK_SOURCE,
|
|
|
|
.bClockID = USB_OUT_CLK_ID,
|
|
|
|
.bmAttributes = UAC_CLOCK_SOURCE_TYPE_INT_FIXED,
|
|
|
|
.bmControls = (CONTROL_RDONLY << CLK_FREQ_CTRL),
|
|
|
|
.bAssocTerminal = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Input Terminal for USB_OUT */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_input_terminal_descriptor usb_out_it_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof usb_out_it_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_INPUT_TERMINAL,
|
|
|
|
.bTerminalID = USB_OUT_IT_ID,
|
|
|
|
.wTerminalType = cpu_to_le16(UAC_TERMINAL_STREAMING),
|
|
|
|
.bAssocTerminal = 0,
|
|
|
|
.bCSourceID = USB_OUT_CLK_ID,
|
|
|
|
.iChannelNames = 0,
|
2017-06-25 16:23:47 +03:00
|
|
|
.bmControls = cpu_to_le16(CONTROL_RDWR << COPY_CTRL),
|
2012-02-02 22:01:34 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/* Input Terminal for I/O-In */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_input_terminal_descriptor io_in_it_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof io_in_it_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_INPUT_TERMINAL,
|
|
|
|
.bTerminalID = IO_IN_IT_ID,
|
|
|
|
.wTerminalType = cpu_to_le16(UAC_INPUT_TERMINAL_UNDEFINED),
|
|
|
|
.bAssocTerminal = 0,
|
|
|
|
.bCSourceID = USB_IN_CLK_ID,
|
|
|
|
.iChannelNames = 0,
|
2017-06-25 16:23:47 +03:00
|
|
|
.bmControls = cpu_to_le16(CONTROL_RDWR << COPY_CTRL),
|
2012-02-02 22:01:34 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/* Ouput Terminal for USB_IN */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_output_terminal_descriptor usb_in_ot_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof usb_in_ot_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_OUTPUT_TERMINAL,
|
|
|
|
.bTerminalID = USB_IN_OT_ID,
|
|
|
|
.wTerminalType = cpu_to_le16(UAC_TERMINAL_STREAMING),
|
|
|
|
.bAssocTerminal = 0,
|
|
|
|
.bSourceID = IO_IN_IT_ID,
|
|
|
|
.bCSourceID = USB_IN_CLK_ID,
|
2017-06-25 16:23:47 +03:00
|
|
|
.bmControls = cpu_to_le16(CONTROL_RDWR << COPY_CTRL),
|
2012-02-02 22:01:34 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/* Ouput Terminal for I/O-Out */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_output_terminal_descriptor io_out_ot_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof io_out_ot_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_OUTPUT_TERMINAL,
|
|
|
|
.bTerminalID = IO_OUT_OT_ID,
|
|
|
|
.wTerminalType = cpu_to_le16(UAC_OUTPUT_TERMINAL_UNDEFINED),
|
|
|
|
.bAssocTerminal = 0,
|
|
|
|
.bSourceID = USB_OUT_IT_ID,
|
|
|
|
.bCSourceID = USB_OUT_CLK_ID,
|
2017-06-25 16:23:47 +03:00
|
|
|
.bmControls = cpu_to_le16(CONTROL_RDWR << COPY_CTRL),
|
2012-02-02 22:01:34 +05:30
|
|
|
};
|
|
|
|
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_ac_header_descriptor ac_hdr_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof ac_hdr_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_MS_HEADER,
|
|
|
|
.bcdADC = cpu_to_le16(0x200),
|
|
|
|
.bCategory = UAC2_FUNCTION_IO_BOX,
|
2017-06-25 16:23:47 +03:00
|
|
|
.wTotalLength = cpu_to_le16(sizeof in_clk_src_desc
|
|
|
|
+ sizeof out_clk_src_desc + sizeof usb_out_it_desc
|
|
|
|
+ sizeof io_in_it_desc + sizeof usb_in_ot_desc
|
|
|
|
+ sizeof io_out_ot_desc),
|
2012-02-02 22:01:34 +05:30
|
|
|
.bmControls = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Streaming OUT Interface - Alt0 */
|
|
|
|
static struct usb_interface_descriptor std_as_out_if0_desc = {
|
|
|
|
.bLength = sizeof std_as_out_if0_desc,
|
|
|
|
.bDescriptorType = USB_DT_INTERFACE,
|
|
|
|
|
|
|
|
.bAlternateSetting = 0,
|
|
|
|
.bNumEndpoints = 0,
|
|
|
|
.bInterfaceClass = USB_CLASS_AUDIO,
|
|
|
|
.bInterfaceSubClass = USB_SUBCLASS_AUDIOSTREAMING,
|
|
|
|
.bInterfaceProtocol = UAC_VERSION_2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Streaming OUT Interface - Alt1 */
|
|
|
|
static struct usb_interface_descriptor std_as_out_if1_desc = {
|
|
|
|
.bLength = sizeof std_as_out_if1_desc,
|
|
|
|
.bDescriptorType = USB_DT_INTERFACE,
|
|
|
|
|
|
|
|
.bAlternateSetting = 1,
|
|
|
|
.bNumEndpoints = 1,
|
|
|
|
.bInterfaceClass = USB_CLASS_AUDIO,
|
|
|
|
.bInterfaceSubClass = USB_SUBCLASS_AUDIOSTREAMING,
|
|
|
|
.bInterfaceProtocol = UAC_VERSION_2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Stream OUT Intface Desc */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_as_header_descriptor as_out_hdr_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof as_out_hdr_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_AS_GENERAL,
|
|
|
|
.bTerminalLink = USB_OUT_IT_ID,
|
|
|
|
.bmControls = 0,
|
|
|
|
.bFormatType = UAC_FORMAT_TYPE_I,
|
|
|
|
.bmFormats = cpu_to_le32(UAC_FORMAT_TYPE_I_PCM),
|
|
|
|
.iChannelNames = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio USB_OUT Format */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_format_type_i_descriptor as_out_fmt1_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof as_out_fmt1_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
.bDescriptorSubtype = UAC_FORMAT_TYPE,
|
|
|
|
.bFormatType = UAC_FORMAT_TYPE_I,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* STD AS ISO OUT Endpoint */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct usb_endpoint_descriptor fs_epout_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = USB_DT_ENDPOINT_SIZE,
|
|
|
|
.bDescriptorType = USB_DT_ENDPOINT,
|
|
|
|
|
|
|
|
.bEndpointAddress = USB_DIR_OUT,
|
|
|
|
.bmAttributes = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC,
|
2014-09-29 14:18:14 -05:00
|
|
|
.wMaxPacketSize = cpu_to_le16(1023),
|
2012-02-02 22:01:34 +05:30
|
|
|
.bInterval = 1,
|
|
|
|
};
|
|
|
|
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct usb_endpoint_descriptor hs_epout_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = USB_DT_ENDPOINT_SIZE,
|
|
|
|
.bDescriptorType = USB_DT_ENDPOINT,
|
|
|
|
|
|
|
|
.bmAttributes = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC,
|
2014-09-29 14:18:14 -05:00
|
|
|
.wMaxPacketSize = cpu_to_le16(1024),
|
2012-02-02 22:01:34 +05:30
|
|
|
.bInterval = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* CS AS ISO OUT Endpoint */
|
|
|
|
static struct uac2_iso_endpoint_descriptor as_iso_out_desc = {
|
|
|
|
.bLength = sizeof as_iso_out_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_ENDPOINT,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_EP_GENERAL,
|
|
|
|
.bmAttributes = 0,
|
|
|
|
.bmControls = 0,
|
|
|
|
.bLockDelayUnits = 0,
|
|
|
|
.wLockDelay = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Streaming IN Interface - Alt0 */
|
|
|
|
static struct usb_interface_descriptor std_as_in_if0_desc = {
|
|
|
|
.bLength = sizeof std_as_in_if0_desc,
|
|
|
|
.bDescriptorType = USB_DT_INTERFACE,
|
|
|
|
|
|
|
|
.bAlternateSetting = 0,
|
|
|
|
.bNumEndpoints = 0,
|
|
|
|
.bInterfaceClass = USB_CLASS_AUDIO,
|
|
|
|
.bInterfaceSubClass = USB_SUBCLASS_AUDIOSTREAMING,
|
|
|
|
.bInterfaceProtocol = UAC_VERSION_2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Streaming IN Interface - Alt1 */
|
|
|
|
static struct usb_interface_descriptor std_as_in_if1_desc = {
|
|
|
|
.bLength = sizeof std_as_in_if1_desc,
|
|
|
|
.bDescriptorType = USB_DT_INTERFACE,
|
|
|
|
|
|
|
|
.bAlternateSetting = 1,
|
|
|
|
.bNumEndpoints = 1,
|
|
|
|
.bInterfaceClass = USB_CLASS_AUDIO,
|
|
|
|
.bInterfaceSubClass = USB_SUBCLASS_AUDIOSTREAMING,
|
|
|
|
.bInterfaceProtocol = UAC_VERSION_2,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio Stream IN Intface Desc */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_as_header_descriptor as_in_hdr_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof as_in_hdr_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_AS_GENERAL,
|
|
|
|
.bTerminalLink = USB_IN_OT_ID,
|
|
|
|
.bmControls = 0,
|
|
|
|
.bFormatType = UAC_FORMAT_TYPE_I,
|
|
|
|
.bmFormats = cpu_to_le32(UAC_FORMAT_TYPE_I_PCM),
|
|
|
|
.iChannelNames = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Audio USB_IN Format */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct uac2_format_type_i_descriptor as_in_fmt1_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = sizeof as_in_fmt1_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_INTERFACE,
|
|
|
|
.bDescriptorSubtype = UAC_FORMAT_TYPE,
|
|
|
|
.bFormatType = UAC_FORMAT_TYPE_I,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* STD AS ISO IN Endpoint */
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct usb_endpoint_descriptor fs_epin_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = USB_DT_ENDPOINT_SIZE,
|
|
|
|
.bDescriptorType = USB_DT_ENDPOINT,
|
|
|
|
|
|
|
|
.bEndpointAddress = USB_DIR_IN,
|
|
|
|
.bmAttributes = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC,
|
2014-09-29 14:18:14 -05:00
|
|
|
.wMaxPacketSize = cpu_to_le16(1023),
|
2012-02-02 22:01:34 +05:30
|
|
|
.bInterval = 1,
|
|
|
|
};
|
|
|
|
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct usb_endpoint_descriptor hs_epin_desc = {
|
2012-02-02 22:01:34 +05:30
|
|
|
.bLength = USB_DT_ENDPOINT_SIZE,
|
|
|
|
.bDescriptorType = USB_DT_ENDPOINT,
|
|
|
|
|
|
|
|
.bmAttributes = USB_ENDPOINT_XFER_ISOC | USB_ENDPOINT_SYNC_ASYNC,
|
2014-09-29 14:18:14 -05:00
|
|
|
.wMaxPacketSize = cpu_to_le16(1024),
|
2012-02-02 22:01:34 +05:30
|
|
|
.bInterval = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* CS AS ISO IN Endpoint */
|
|
|
|
static struct uac2_iso_endpoint_descriptor as_iso_in_desc = {
|
|
|
|
.bLength = sizeof as_iso_in_desc,
|
|
|
|
.bDescriptorType = USB_DT_CS_ENDPOINT,
|
|
|
|
|
|
|
|
.bDescriptorSubtype = UAC_EP_GENERAL,
|
|
|
|
.bmAttributes = 0,
|
|
|
|
.bmControls = 0,
|
|
|
|
.bLockDelayUnits = 0,
|
|
|
|
.wLockDelay = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct usb_descriptor_header *fs_audio_desc[] = {
|
|
|
|
(struct usb_descriptor_header *)&iad_desc,
|
|
|
|
(struct usb_descriptor_header *)&std_ac_if_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&ac_hdr_desc,
|
|
|
|
(struct usb_descriptor_header *)&in_clk_src_desc,
|
|
|
|
(struct usb_descriptor_header *)&out_clk_src_desc,
|
|
|
|
(struct usb_descriptor_header *)&usb_out_it_desc,
|
|
|
|
(struct usb_descriptor_header *)&io_in_it_desc,
|
|
|
|
(struct usb_descriptor_header *)&usb_in_ot_desc,
|
|
|
|
(struct usb_descriptor_header *)&io_out_ot_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&std_as_out_if0_desc,
|
|
|
|
(struct usb_descriptor_header *)&std_as_out_if1_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&as_out_hdr_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_out_fmt1_desc,
|
|
|
|
(struct usb_descriptor_header *)&fs_epout_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_iso_out_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&std_as_in_if0_desc,
|
|
|
|
(struct usb_descriptor_header *)&std_as_in_if1_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&as_in_hdr_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_in_fmt1_desc,
|
|
|
|
(struct usb_descriptor_header *)&fs_epin_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 *)&std_ac_if_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&ac_hdr_desc,
|
|
|
|
(struct usb_descriptor_header *)&in_clk_src_desc,
|
|
|
|
(struct usb_descriptor_header *)&out_clk_src_desc,
|
|
|
|
(struct usb_descriptor_header *)&usb_out_it_desc,
|
|
|
|
(struct usb_descriptor_header *)&io_in_it_desc,
|
|
|
|
(struct usb_descriptor_header *)&usb_in_ot_desc,
|
|
|
|
(struct usb_descriptor_header *)&io_out_ot_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&std_as_out_if0_desc,
|
|
|
|
(struct usb_descriptor_header *)&std_as_out_if1_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&as_out_hdr_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_out_fmt1_desc,
|
|
|
|
(struct usb_descriptor_header *)&hs_epout_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_iso_out_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&std_as_in_if0_desc,
|
|
|
|
(struct usb_descriptor_header *)&std_as_in_if1_desc,
|
|
|
|
|
|
|
|
(struct usb_descriptor_header *)&as_in_hdr_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_in_fmt1_desc,
|
|
|
|
(struct usb_descriptor_header *)&hs_epin_desc,
|
|
|
|
(struct usb_descriptor_header *)&as_iso_in_desc,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cntrl_cur_lay3 {
|
2018-07-02 23:46:47 +02:00
|
|
|
__le32 dCUR;
|
2012-02-02 22:01:34 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
struct cntrl_range_lay3 {
|
2018-07-02 23:46:47 +02:00
|
|
|
__le16 wNumSubRanges;
|
|
|
|
__le32 dMIN;
|
|
|
|
__le32 dMAX;
|
|
|
|
__le32 dRES;
|
2012-02-02 22:01:34 +05:30
|
|
|
} __packed;
|
|
|
|
|
2015-07-30 13:13:03 +08:00
|
|
|
static void set_ep_max_packet_size(const struct f_uac2_opts *uac2_opts,
|
|
|
|
struct usb_endpoint_descriptor *ep_desc,
|
|
|
|
unsigned int factor, bool is_playback)
|
|
|
|
{
|
|
|
|
int chmask, srate, ssize;
|
|
|
|
u16 max_packet_size;
|
|
|
|
|
|
|
|
if (is_playback) {
|
|
|
|
chmask = uac2_opts->p_chmask;
|
|
|
|
srate = uac2_opts->p_srate;
|
|
|
|
ssize = uac2_opts->p_ssize;
|
|
|
|
} else {
|
|
|
|
chmask = uac2_opts->c_chmask;
|
|
|
|
srate = uac2_opts->c_srate;
|
|
|
|
ssize = uac2_opts->c_ssize;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_packet_size = num_channels(chmask) * ssize *
|
|
|
|
DIV_ROUND_UP(srate, factor / (1 << (ep_desc->bInterval - 1)));
|
2015-08-04 11:02:45 -05:00
|
|
|
ep_desc->wMaxPacketSize = cpu_to_le16(min_t(u16, max_packet_size,
|
2015-07-30 13:13:03 +08:00
|
|
|
le16_to_cpu(ep_desc->wMaxPacketSize)));
|
|
|
|
}
|
|
|
|
|
2014-07-22 19:58:30 +02:00
|
|
|
static int
|
2012-02-02 22:01:34 +05:30
|
|
|
afunc_bind(struct usb_configuration *cfg, struct usb_function *fn)
|
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 *uac2 = func_to_uac2(fn);
|
|
|
|
struct g_audio *agdev = func_to_g_audio(fn);
|
2012-02-02 22:01:34 +05:30
|
|
|
struct usb_composite_dev *cdev = cfg->cdev;
|
|
|
|
struct usb_gadget *gadget = cdev->gadget;
|
2017-06-18 16:23:51 +03:00
|
|
|
struct device *dev = &gadget->dev;
|
2014-07-22 19:58:30 +02:00
|
|
|
struct f_uac2_opts *uac2_opts;
|
2014-07-22 19:58:33 +02:00
|
|
|
struct usb_string *us;
|
2012-02-02 22:01:34 +05:30
|
|
|
int ret;
|
|
|
|
|
2014-07-22 19:58:30 +02:00
|
|
|
uac2_opts = container_of(fn->fi, struct f_uac2_opts, func_inst);
|
|
|
|
|
2014-07-22 19:58:33 +02:00
|
|
|
us = usb_gstrings_attach(cdev, fn_strings, ARRAY_SIZE(strings_fn));
|
|
|
|
if (IS_ERR(us))
|
|
|
|
return PTR_ERR(us);
|
|
|
|
iad_desc.iFunction = us[STR_ASSOC].id;
|
|
|
|
std_ac_if_desc.iInterface = us[STR_IF_CTRL].id;
|
|
|
|
in_clk_src_desc.iClockSource = us[STR_CLKSRC_IN].id;
|
|
|
|
out_clk_src_desc.iClockSource = us[STR_CLKSRC_OUT].id;
|
|
|
|
usb_out_it_desc.iTerminal = us[STR_USB_IT].id;
|
|
|
|
io_in_it_desc.iTerminal = us[STR_IO_IT].id;
|
|
|
|
usb_in_ot_desc.iTerminal = us[STR_USB_OT].id;
|
|
|
|
io_out_ot_desc.iTerminal = us[STR_IO_OT].id;
|
|
|
|
std_as_out_if0_desc.iInterface = us[STR_AS_OUT_ALT0].id;
|
|
|
|
std_as_out_if1_desc.iInterface = us[STR_AS_OUT_ALT1].id;
|
|
|
|
std_as_in_if0_desc.iInterface = us[STR_AS_IN_ALT0].id;
|
|
|
|
std_as_in_if1_desc.iInterface = us[STR_AS_IN_ALT1].id;
|
|
|
|
|
2014-07-22 19:58:30 +02:00
|
|
|
|
|
|
|
/* Initialize the configurable parameters */
|
|
|
|
usb_out_it_desc.bNrChannels = num_channels(uac2_opts->c_chmask);
|
|
|
|
usb_out_it_desc.bmChannelConfig = cpu_to_le32(uac2_opts->c_chmask);
|
|
|
|
io_in_it_desc.bNrChannels = num_channels(uac2_opts->p_chmask);
|
|
|
|
io_in_it_desc.bmChannelConfig = cpu_to_le32(uac2_opts->p_chmask);
|
|
|
|
as_out_hdr_desc.bNrChannels = num_channels(uac2_opts->c_chmask);
|
|
|
|
as_out_hdr_desc.bmChannelConfig = cpu_to_le32(uac2_opts->c_chmask);
|
|
|
|
as_in_hdr_desc.bNrChannels = num_channels(uac2_opts->p_chmask);
|
|
|
|
as_in_hdr_desc.bmChannelConfig = cpu_to_le32(uac2_opts->p_chmask);
|
|
|
|
as_out_fmt1_desc.bSubslotSize = uac2_opts->c_ssize;
|
|
|
|
as_out_fmt1_desc.bBitResolution = uac2_opts->c_ssize * 8;
|
|
|
|
as_in_fmt1_desc.bSubslotSize = uac2_opts->p_ssize;
|
|
|
|
as_in_fmt1_desc.bBitResolution = uac2_opts->p_ssize * 8;
|
|
|
|
|
|
|
|
snprintf(clksrc_in, sizeof(clksrc_in), "%uHz", uac2_opts->p_srate);
|
|
|
|
snprintf(clksrc_out, sizeof(clksrc_out), "%uHz", uac2_opts->c_srate);
|
|
|
|
|
2012-02-02 22:01:34 +05:30
|
|
|
ret = usb_interface_id(cfg, fn);
|
|
|
|
if (ret < 0) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
return ret;
|
|
|
|
}
|
2018-01-12 18:43:32 +00:00
|
|
|
iad_desc.bFirstInterface = ret;
|
|
|
|
|
2012-02-02 22:01:34 +05:30
|
|
|
std_ac_if_desc.bInterfaceNumber = ret;
|
2017-06-18 16:23:52 +03:00
|
|
|
uac2->ac_intf = ret;
|
|
|
|
uac2->ac_alt = 0;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
ret = usb_interface_id(cfg, fn);
|
|
|
|
if (ret < 0) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
std_as_out_if0_desc.bInterfaceNumber = ret;
|
|
|
|
std_as_out_if1_desc.bInterfaceNumber = ret;
|
2017-06-18 16:23:52 +03:00
|
|
|
uac2->as_out_intf = ret;
|
|
|
|
uac2->as_out_alt = 0;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
ret = usb_interface_id(cfg, fn);
|
|
|
|
if (ret < 0) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
std_as_in_if0_desc.bInterfaceNumber = ret;
|
|
|
|
std_as_in_if1_desc.bInterfaceNumber = ret;
|
2017-06-18 16:23:52 +03:00
|
|
|
uac2->as_in_intf = ret;
|
|
|
|
uac2->as_in_alt = 0;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
2017-05-17 13:45:17 +05:30
|
|
|
/* Calculate wMaxPacketSize according to audio bandwidth */
|
|
|
|
set_ep_max_packet_size(uac2_opts, &fs_epin_desc, 1000, true);
|
|
|
|
set_ep_max_packet_size(uac2_opts, &fs_epout_desc, 1000, false);
|
|
|
|
set_ep_max_packet_size(uac2_opts, &hs_epin_desc, 8000, true);
|
|
|
|
set_ep_max_packet_size(uac2_opts, &hs_epout_desc, 8000, false);
|
|
|
|
|
2012-02-02 22:01:34 +05:30
|
|
|
agdev->out_ep = usb_ep_autoconfig(gadget, &fs_epout_desc);
|
2012-10-22 22:14:59 +02:00
|
|
|
if (!agdev->out_ep) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
usb: gadget: f_uac2: fix error handling in afunc_bind (again)
If usb_ep_autoconfig() fails (i.e. returns a null endpoint descriptor),
we expect afunc_bind() to fail (i.e. return a negative error code).
However, due to v4.10-rc1 commit f1d3861d63a5 ("usb: gadget: f_uac2: fix
error handling at afunc_bind"), afunc_bind() returns zero, telling the
caller that it succeeded. This then generates NULL pointer dereference
in below scenario on Rcar H3-ES20-Salvator-X target:
rcar-gen3:/home/root# modprobe g_audio
[ 626.521155] g_audio gadget: afunc_bind:565 Error!
[ 626.526319] g_audio gadget: Linux USB Audio Gadget, version: Feb 2, 2012
[ 626.533405] g_audio gadget: g_audio ready
rcar-gen3:/home/root#
rcar-gen3:/home/root# modprobe -r g_audio
[ 728.256707] ==================================================================
[ 728.264293] BUG: KASAN: null-ptr-deref in u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.272244] Read of size 8 at addr 00000000000000a0 by task modprobe/2545
[ 728.279309]
[ 728.280849] CPU: 0 PID: 2545 Comm: modprobe Tainted: G WC 4.14.47+ #152
[ 728.288778] Hardware name: Renesas Salvator-X board based on r8a7795 ES2.0+ (DT)
[ 728.296454] Call trace:
[ 728.299151] [<ffff2000080925ac>] dump_backtrace+0x0/0x364
[ 728.304808] [<ffff200008092924>] show_stack+0x14/0x1c
[ 728.310081] [<ffff200008f8d5cc>] dump_stack+0x108/0x174
[ 728.315522] [<ffff2000083c77c8>] kasan_report+0x1fc/0x354
[ 728.321134] [<ffff2000083c611c>] __asan_load8+0x24/0x94
[ 728.326600] [<ffff2000021e1618>] u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.333735] [<ffff2000021f8b7c>] afunc_disable+0x44/0x60 [usb_f_uac2]
[ 728.340503] [<ffff20000218177c>] usb_remove_function+0x9c/0x210 [libcomposite]
[ 728.348060] [<ffff200002183320>] remove_config.isra.2+0x1d8/0x218 [libcomposite]
[ 728.355788] [<ffff200002186c54>] __composite_unbind+0x104/0x1f8 [libcomposite]
[ 728.363339] [<ffff200002186d58>] composite_unbind+0x10/0x18 [libcomposite]
[ 728.370536] [<ffff20000152f158>] usb_gadget_remove_driver+0xc0/0x170 [udc_core]
[ 728.378172] [<ffff20000153154c>] usb_gadget_unregister_driver+0x1cc/0x258 [udc_core]
[ 728.386274] [<ffff200002180de8>] usb_composite_unregister+0x10/0x18 [libcomposite]
[ 728.394116] [<ffff2000021d035c>] audio_driver_exit+0x14/0x28 [g_audio]
[ 728.400878] [<ffff200008213ed4>] SyS_delete_module+0x288/0x32c
[ 728.406935] Exception stack(0xffff8006cf6c7ec0 to 0xffff8006cf6c8000)
[ 728.413624] 7ec0: 0000000006136428 0000000000000800 0000000000000000 0000ffffd706efe8
[ 728.421718] 7ee0: 0000ffffd706efe9 000000000000000a 1999999999999999 0000000000000000
[ 728.429792] 7f00: 000000000000006a 000000000042c078 0000000000000000 0000000000000005
[ 728.437870] 7f20: 0000000000000000 0000000000000000 0000000000000004 0000000000000000
[ 728.445952] 7f40: 000000000042bfc8 0000ffffbc7c8f40 0000000000000000 00000000061363c0
[ 728.454035] 7f60: 0000000006136428 0000000000000000 0000000000000000 0000000006136428
[ 728.462114] 7f80: 000000000042c000 0000ffffd7071448 000000000042c000 0000000000000000
[ 728.470190] 7fa0: 00000000061350c0 0000ffffd7070010 000000000041129c 0000ffffd7070010
[ 728.478281] 7fc0: 0000ffffbc7c8f48 0000000060000000 0000000006136428 000000000000006a
[ 728.486351] 7fe0: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[ 728.494434] [<ffff200008084780>] el0_svc_naked+0x34/0x38
[ 728.499957] ==================================================================
[ 728.507801] Unable to handle kernel NULL pointer dereference at virtual address 000000a0
[ 728.517742] Mem abort info:
[ 728.520993] Exception class = DABT (current EL), IL = 32 bits
[ 728.527375] SET = 0, FnV = 0
[ 728.530731] EA = 0, S1PTW = 0
[ 728.534361] Data abort info:
[ 728.537650] ISV = 0, ISS = 0x00000006
[ 728.541863] CM = 0, WnR = 0
[ 728.545167] user pgtable: 4k pages, 48-bit VAs, pgd = ffff8006c6100000
[ 728.552156] [00000000000000a0] *pgd=0000000716a8d003
[ 728.557519] , *pud=00000007116fc003
[ 728.561259] , *pmd=0000000000000000
[ 728.564985] Internal error: Oops: 96000006 [#1] PREEMPT SMP
[ 728.570815] Modules linked in:
[ 728.574023] usb_f_uac2
[ 728.576560] u_audio
[ 728.578827] g_audio(-)
[ 728.581361] libcomposite
[ 728.584071] configfs
[ 728.586428] aes_ce_blk
[ 728.588960] sata_rcar
[ 728.591421] crypto_simd
[ 728.594039] cryptd
[ 728.596217] libata
[ 728.598396] aes_ce_cipher
[ 728.601188] crc32_ce
[ 728.603542] ghash_ce
[ 728.605896] gf128mul
[ 728.608250] aes_arm64
[ 728.610692] scsi_mod
[ 728.613046] sha2_ce
[ 728.615313] xhci_plat_hcd
[ 728.618106] sha256_arm64
[ 728.620811] sha1_ce
[ 728.623077] renesas_usbhs
[ 728.625869] xhci_hcd
[ 728.628243] renesas_usb3
[ 728.630948] sha1_generic
[ 728.633670] ravb_streaming(C)
[ 728.636814] udc_core
[ 728.639168] cpufreq_dt
[ 728.641697] rcar_gen3_thermal
[ 728.644840] usb_dmac
[ 728.647194] pwm_rcar
[ 728.649548] thermal_sys
[ 728.652165] virt_dma
[ 728.654519] mch_core(C)
[ 728.657137] pwm_bl
[ 728.659315] snd_soc_rcar
[ 728.662020] snd_aloop
[ 728.664462] snd_soc_generic_card
[ 728.667869] snd_soc_ak4613
[ 728.670749] ipv6
[ 728.672768] autofs4
[ 728.675052] CPU: 0 PID: 2545 Comm: modprobe Tainted: G B WC 4.14.47+ #152
[ 728.682973] Hardware name: Renesas Salvator-X board based on r8a7795 ES2.0+ (DT)
[ 728.690637] task: ffff8006ced38000 task.stack: ffff8006cf6c0000
[ 728.696814] PC is at u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.702896] LR is at u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.708964] pc : [<ffff2000021e1618>] lr : [<ffff2000021e1618>] pstate: 60000145
[ 728.716620] sp : ffff8006cf6c7a50
[ 728.720154] x29: ffff8006cf6c7a50
[ 728.723760] x28: ffff8006ced38000
[ 728.727272] x27: ffff200008fd7000
[ 728.730857] x26: ffff2000021d2340
[ 728.734361] x25: 0000000000000000
[ 728.737948] x24: ffff200009e94b08
[ 728.741452] x23: 00000000000000a0
[ 728.745052] x22: 00000000000000a8
[ 728.748558] x21: 1ffff000d9ed8f7c
[ 728.752142] x20: ffff8006d671a800
[ 728.755646] x19: 0000000000000000
[ 728.759231] x18: 0000000000000000
[ 728.762736] x17: 0000ffffbc7c8f40
[ 728.766320] x16: ffff200008213c4c
[ 728.769823] x15: 0000000000000000
[ 728.773408] x14: 0720072007200720
[ 728.776912] x13: 0720072007200720
[ 728.780497] x12: ffffffffffffffff
[ 728.784001] x11: 0000000000000040
[ 728.787598] x10: 0000000000001600
[ 728.791103] x9 : ffff8006cf6c77a0
[ 728.794689] x8 : ffff8006ced39660
[ 728.798193] x7 : ffff20000811c738
[ 728.801794] x6 : 0000000000000000
[ 728.805299] x5 : dfff200000000000
[ 728.808885] x4 : ffff8006ced38000
[ 728.812390] x3 : ffff200008fb46e8
[ 728.815976] x2 : 0000000000000007
[ 728.819480] x1 : 3ba68643e7431500
[ 728.823066] x0 : 0000000000000000
[ 728.826574] Process modprobe (pid: 2545, stack limit = 0xffff8006cf6c0000)
[ 728.833704] Call trace:
[ 728.836292] Exception stack(0xffff8006cf6c7910 to 0xffff8006cf6c7a50)
[ 728.842987] 7900: 0000000000000000 3ba68643e7431500
[ 728.851084] 7920: 0000000000000007 ffff200008fb46e8 ffff8006ced38000 dfff200000000000
[ 728.859173] 7940: 0000000000000000 ffff20000811c738 ffff8006ced39660 ffff8006cf6c77a0
[ 728.867248] 7960: 0000000000001600 0000000000000040 ffffffffffffffff 0720072007200720
[ 728.875323] 7980: 0720072007200720 0000000000000000 ffff200008213c4c 0000ffffbc7c8f40
[ 728.883412] 79a0: 0000000000000000 0000000000000000 ffff8006d671a800 1ffff000d9ed8f7c
[ 728.891485] 79c0: 00000000000000a8 00000000000000a0 ffff200009e94b08 0000000000000000
[ 728.899561] 79e0: ffff2000021d2340 ffff200008fd7000 ffff8006ced38000 ffff8006cf6c7a50
[ 728.907636] 7a00: ffff2000021e1618 ffff8006cf6c7a50 ffff2000021e1618 0000000060000145
[ 728.915710] 7a20: 0000000000000008 0000000000000000 0000ffffffffffff 3ba68643e7431500
[ 728.923780] 7a40: ffff8006cf6c7a50 ffff2000021e1618
[ 728.928880] [<ffff2000021e1618>] u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.936032] [<ffff2000021f8b7c>] afunc_disable+0x44/0x60 [usb_f_uac2]
[ 728.942822] [<ffff20000218177c>] usb_remove_function+0x9c/0x210 [libcomposite]
[ 728.950385] [<ffff200002183320>] remove_config.isra.2+0x1d8/0x218 [libcomposite]
[ 728.958134] [<ffff200002186c54>] __composite_unbind+0x104/0x1f8 [libcomposite]
[ 728.965689] [<ffff200002186d58>] composite_unbind+0x10/0x18 [libcomposite]
[ 728.972882] [<ffff20000152f158>] usb_gadget_remove_driver+0xc0/0x170 [udc_core]
[ 728.980522] [<ffff20000153154c>] usb_gadget_unregister_driver+0x1cc/0x258 [udc_core]
[ 728.988638] [<ffff200002180de8>] usb_composite_unregister+0x10/0x18 [libcomposite]
[ 728.996472] [<ffff2000021d035c>] audio_driver_exit+0x14/0x28 [g_audio]
[ 729.003231] [<ffff200008213ed4>] SyS_delete_module+0x288/0x32c
[ 729.009278] Exception stack(0xffff8006cf6c7ec0 to 0xffff8006cf6c8000)
[ 729.015946] 7ec0: 0000000006136428 0000000000000800 0000000000000000 0000ffffd706efe8
[ 729.024022] 7ee0: 0000ffffd706efe9 000000000000000a 1999999999999999 0000000000000000
[ 729.032099] 7f00: 000000000000006a 000000000042c078 0000000000000000 0000000000000005
[ 729.040172] 7f20: 0000000000000000 0000000000000000 0000000000000004 0000000000000000
[ 729.048263] 7f40: 000000000042bfc8 0000ffffbc7c8f40 0000000000000000 00000000061363c0
[ 729.056337] 7f60: 0000000006136428 0000000000000000 0000000000000000 0000000006136428
[ 729.064411] 7f80: 000000000042c000 0000ffffd7071448 000000000042c000 0000000000000000
[ 729.072484] 7fa0: 00000000061350c0 0000ffffd7070010 000000000041129c 0000ffffd7070010
[ 729.080563] 7fc0: 0000ffffbc7c8f48 0000000060000000 0000000006136428 000000000000006a
[ 729.088636] 7fe0: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[ 729.096733] [<ffff200008084780>] el0_svc_naked+0x34/0x38
[ 729.102259] Code: 9597d1b3 aa1703e0 9102a276 958792b9 (f9405275)
[ 729.108617] ---[ end trace 7560c5fa3d100243 ]---
After this patch is applied, the issue is fixed:
rcar-gen3:/home/root# modprobe g_audio
[ 59.217127] g_audio gadget: afunc_bind:565 Error!
[ 59.222329] g_audio ee020000.usb: failed to start g_audio: -19
modprobe: ERROR: could not insert 'g_audio': No such device
rcar-gen3:/home/root# modprobe -r g_audio
rcar-gen3:/home/root#
Fixes: f1d3861d63a5 ("usb: gadget: f_uac2: fix error handling at afunc_bind")
Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
2018-06-21 17:22:46 +02:00
|
|
|
return -ENODEV;
|
2012-10-22 22:14:59 +02:00
|
|
|
}
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
agdev->in_ep = usb_ep_autoconfig(gadget, &fs_epin_desc);
|
2012-10-22 22:14:59 +02:00
|
|
|
if (!agdev->in_ep) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
usb: gadget: f_uac2: fix error handling in afunc_bind (again)
If usb_ep_autoconfig() fails (i.e. returns a null endpoint descriptor),
we expect afunc_bind() to fail (i.e. return a negative error code).
However, due to v4.10-rc1 commit f1d3861d63a5 ("usb: gadget: f_uac2: fix
error handling at afunc_bind"), afunc_bind() returns zero, telling the
caller that it succeeded. This then generates NULL pointer dereference
in below scenario on Rcar H3-ES20-Salvator-X target:
rcar-gen3:/home/root# modprobe g_audio
[ 626.521155] g_audio gadget: afunc_bind:565 Error!
[ 626.526319] g_audio gadget: Linux USB Audio Gadget, version: Feb 2, 2012
[ 626.533405] g_audio gadget: g_audio ready
rcar-gen3:/home/root#
rcar-gen3:/home/root# modprobe -r g_audio
[ 728.256707] ==================================================================
[ 728.264293] BUG: KASAN: null-ptr-deref in u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.272244] Read of size 8 at addr 00000000000000a0 by task modprobe/2545
[ 728.279309]
[ 728.280849] CPU: 0 PID: 2545 Comm: modprobe Tainted: G WC 4.14.47+ #152
[ 728.288778] Hardware name: Renesas Salvator-X board based on r8a7795 ES2.0+ (DT)
[ 728.296454] Call trace:
[ 728.299151] [<ffff2000080925ac>] dump_backtrace+0x0/0x364
[ 728.304808] [<ffff200008092924>] show_stack+0x14/0x1c
[ 728.310081] [<ffff200008f8d5cc>] dump_stack+0x108/0x174
[ 728.315522] [<ffff2000083c77c8>] kasan_report+0x1fc/0x354
[ 728.321134] [<ffff2000083c611c>] __asan_load8+0x24/0x94
[ 728.326600] [<ffff2000021e1618>] u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.333735] [<ffff2000021f8b7c>] afunc_disable+0x44/0x60 [usb_f_uac2]
[ 728.340503] [<ffff20000218177c>] usb_remove_function+0x9c/0x210 [libcomposite]
[ 728.348060] [<ffff200002183320>] remove_config.isra.2+0x1d8/0x218 [libcomposite]
[ 728.355788] [<ffff200002186c54>] __composite_unbind+0x104/0x1f8 [libcomposite]
[ 728.363339] [<ffff200002186d58>] composite_unbind+0x10/0x18 [libcomposite]
[ 728.370536] [<ffff20000152f158>] usb_gadget_remove_driver+0xc0/0x170 [udc_core]
[ 728.378172] [<ffff20000153154c>] usb_gadget_unregister_driver+0x1cc/0x258 [udc_core]
[ 728.386274] [<ffff200002180de8>] usb_composite_unregister+0x10/0x18 [libcomposite]
[ 728.394116] [<ffff2000021d035c>] audio_driver_exit+0x14/0x28 [g_audio]
[ 728.400878] [<ffff200008213ed4>] SyS_delete_module+0x288/0x32c
[ 728.406935] Exception stack(0xffff8006cf6c7ec0 to 0xffff8006cf6c8000)
[ 728.413624] 7ec0: 0000000006136428 0000000000000800 0000000000000000 0000ffffd706efe8
[ 728.421718] 7ee0: 0000ffffd706efe9 000000000000000a 1999999999999999 0000000000000000
[ 728.429792] 7f00: 000000000000006a 000000000042c078 0000000000000000 0000000000000005
[ 728.437870] 7f20: 0000000000000000 0000000000000000 0000000000000004 0000000000000000
[ 728.445952] 7f40: 000000000042bfc8 0000ffffbc7c8f40 0000000000000000 00000000061363c0
[ 728.454035] 7f60: 0000000006136428 0000000000000000 0000000000000000 0000000006136428
[ 728.462114] 7f80: 000000000042c000 0000ffffd7071448 000000000042c000 0000000000000000
[ 728.470190] 7fa0: 00000000061350c0 0000ffffd7070010 000000000041129c 0000ffffd7070010
[ 728.478281] 7fc0: 0000ffffbc7c8f48 0000000060000000 0000000006136428 000000000000006a
[ 728.486351] 7fe0: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[ 728.494434] [<ffff200008084780>] el0_svc_naked+0x34/0x38
[ 728.499957] ==================================================================
[ 728.507801] Unable to handle kernel NULL pointer dereference at virtual address 000000a0
[ 728.517742] Mem abort info:
[ 728.520993] Exception class = DABT (current EL), IL = 32 bits
[ 728.527375] SET = 0, FnV = 0
[ 728.530731] EA = 0, S1PTW = 0
[ 728.534361] Data abort info:
[ 728.537650] ISV = 0, ISS = 0x00000006
[ 728.541863] CM = 0, WnR = 0
[ 728.545167] user pgtable: 4k pages, 48-bit VAs, pgd = ffff8006c6100000
[ 728.552156] [00000000000000a0] *pgd=0000000716a8d003
[ 728.557519] , *pud=00000007116fc003
[ 728.561259] , *pmd=0000000000000000
[ 728.564985] Internal error: Oops: 96000006 [#1] PREEMPT SMP
[ 728.570815] Modules linked in:
[ 728.574023] usb_f_uac2
[ 728.576560] u_audio
[ 728.578827] g_audio(-)
[ 728.581361] libcomposite
[ 728.584071] configfs
[ 728.586428] aes_ce_blk
[ 728.588960] sata_rcar
[ 728.591421] crypto_simd
[ 728.594039] cryptd
[ 728.596217] libata
[ 728.598396] aes_ce_cipher
[ 728.601188] crc32_ce
[ 728.603542] ghash_ce
[ 728.605896] gf128mul
[ 728.608250] aes_arm64
[ 728.610692] scsi_mod
[ 728.613046] sha2_ce
[ 728.615313] xhci_plat_hcd
[ 728.618106] sha256_arm64
[ 728.620811] sha1_ce
[ 728.623077] renesas_usbhs
[ 728.625869] xhci_hcd
[ 728.628243] renesas_usb3
[ 728.630948] sha1_generic
[ 728.633670] ravb_streaming(C)
[ 728.636814] udc_core
[ 728.639168] cpufreq_dt
[ 728.641697] rcar_gen3_thermal
[ 728.644840] usb_dmac
[ 728.647194] pwm_rcar
[ 728.649548] thermal_sys
[ 728.652165] virt_dma
[ 728.654519] mch_core(C)
[ 728.657137] pwm_bl
[ 728.659315] snd_soc_rcar
[ 728.662020] snd_aloop
[ 728.664462] snd_soc_generic_card
[ 728.667869] snd_soc_ak4613
[ 728.670749] ipv6
[ 728.672768] autofs4
[ 728.675052] CPU: 0 PID: 2545 Comm: modprobe Tainted: G B WC 4.14.47+ #152
[ 728.682973] Hardware name: Renesas Salvator-X board based on r8a7795 ES2.0+ (DT)
[ 728.690637] task: ffff8006ced38000 task.stack: ffff8006cf6c0000
[ 728.696814] PC is at u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.702896] LR is at u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.708964] pc : [<ffff2000021e1618>] lr : [<ffff2000021e1618>] pstate: 60000145
[ 728.716620] sp : ffff8006cf6c7a50
[ 728.720154] x29: ffff8006cf6c7a50
[ 728.723760] x28: ffff8006ced38000
[ 728.727272] x27: ffff200008fd7000
[ 728.730857] x26: ffff2000021d2340
[ 728.734361] x25: 0000000000000000
[ 728.737948] x24: ffff200009e94b08
[ 728.741452] x23: 00000000000000a0
[ 728.745052] x22: 00000000000000a8
[ 728.748558] x21: 1ffff000d9ed8f7c
[ 728.752142] x20: ffff8006d671a800
[ 728.755646] x19: 0000000000000000
[ 728.759231] x18: 0000000000000000
[ 728.762736] x17: 0000ffffbc7c8f40
[ 728.766320] x16: ffff200008213c4c
[ 728.769823] x15: 0000000000000000
[ 728.773408] x14: 0720072007200720
[ 728.776912] x13: 0720072007200720
[ 728.780497] x12: ffffffffffffffff
[ 728.784001] x11: 0000000000000040
[ 728.787598] x10: 0000000000001600
[ 728.791103] x9 : ffff8006cf6c77a0
[ 728.794689] x8 : ffff8006ced39660
[ 728.798193] x7 : ffff20000811c738
[ 728.801794] x6 : 0000000000000000
[ 728.805299] x5 : dfff200000000000
[ 728.808885] x4 : ffff8006ced38000
[ 728.812390] x3 : ffff200008fb46e8
[ 728.815976] x2 : 0000000000000007
[ 728.819480] x1 : 3ba68643e7431500
[ 728.823066] x0 : 0000000000000000
[ 728.826574] Process modprobe (pid: 2545, stack limit = 0xffff8006cf6c0000)
[ 728.833704] Call trace:
[ 728.836292] Exception stack(0xffff8006cf6c7910 to 0xffff8006cf6c7a50)
[ 728.842987] 7900: 0000000000000000 3ba68643e7431500
[ 728.851084] 7920: 0000000000000007 ffff200008fb46e8 ffff8006ced38000 dfff200000000000
[ 728.859173] 7940: 0000000000000000 ffff20000811c738 ffff8006ced39660 ffff8006cf6c77a0
[ 728.867248] 7960: 0000000000001600 0000000000000040 ffffffffffffffff 0720072007200720
[ 728.875323] 7980: 0720072007200720 0000000000000000 ffff200008213c4c 0000ffffbc7c8f40
[ 728.883412] 79a0: 0000000000000000 0000000000000000 ffff8006d671a800 1ffff000d9ed8f7c
[ 728.891485] 79c0: 00000000000000a8 00000000000000a0 ffff200009e94b08 0000000000000000
[ 728.899561] 79e0: ffff2000021d2340 ffff200008fd7000 ffff8006ced38000 ffff8006cf6c7a50
[ 728.907636] 7a00: ffff2000021e1618 ffff8006cf6c7a50 ffff2000021e1618 0000000060000145
[ 728.915710] 7a20: 0000000000000008 0000000000000000 0000ffffffffffff 3ba68643e7431500
[ 728.923780] 7a40: ffff8006cf6c7a50 ffff2000021e1618
[ 728.928880] [<ffff2000021e1618>] u_audio_stop_capture+0x70/0x268 [u_audio]
[ 728.936032] [<ffff2000021f8b7c>] afunc_disable+0x44/0x60 [usb_f_uac2]
[ 728.942822] [<ffff20000218177c>] usb_remove_function+0x9c/0x210 [libcomposite]
[ 728.950385] [<ffff200002183320>] remove_config.isra.2+0x1d8/0x218 [libcomposite]
[ 728.958134] [<ffff200002186c54>] __composite_unbind+0x104/0x1f8 [libcomposite]
[ 728.965689] [<ffff200002186d58>] composite_unbind+0x10/0x18 [libcomposite]
[ 728.972882] [<ffff20000152f158>] usb_gadget_remove_driver+0xc0/0x170 [udc_core]
[ 728.980522] [<ffff20000153154c>] usb_gadget_unregister_driver+0x1cc/0x258 [udc_core]
[ 728.988638] [<ffff200002180de8>] usb_composite_unregister+0x10/0x18 [libcomposite]
[ 728.996472] [<ffff2000021d035c>] audio_driver_exit+0x14/0x28 [g_audio]
[ 729.003231] [<ffff200008213ed4>] SyS_delete_module+0x288/0x32c
[ 729.009278] Exception stack(0xffff8006cf6c7ec0 to 0xffff8006cf6c8000)
[ 729.015946] 7ec0: 0000000006136428 0000000000000800 0000000000000000 0000ffffd706efe8
[ 729.024022] 7ee0: 0000ffffd706efe9 000000000000000a 1999999999999999 0000000000000000
[ 729.032099] 7f00: 000000000000006a 000000000042c078 0000000000000000 0000000000000005
[ 729.040172] 7f20: 0000000000000000 0000000000000000 0000000000000004 0000000000000000
[ 729.048263] 7f40: 000000000042bfc8 0000ffffbc7c8f40 0000000000000000 00000000061363c0
[ 729.056337] 7f60: 0000000006136428 0000000000000000 0000000000000000 0000000006136428
[ 729.064411] 7f80: 000000000042c000 0000ffffd7071448 000000000042c000 0000000000000000
[ 729.072484] 7fa0: 00000000061350c0 0000ffffd7070010 000000000041129c 0000ffffd7070010
[ 729.080563] 7fc0: 0000ffffbc7c8f48 0000000060000000 0000000006136428 000000000000006a
[ 729.088636] 7fe0: 0000000000000000 0000000000000000 0000000000000000 0000000000000000
[ 729.096733] [<ffff200008084780>] el0_svc_naked+0x34/0x38
[ 729.102259] Code: 9597d1b3 aa1703e0 9102a276 958792b9 (f9405275)
[ 729.108617] ---[ end trace 7560c5fa3d100243 ]---
After this patch is applied, the issue is fixed:
rcar-gen3:/home/root# modprobe g_audio
[ 59.217127] g_audio gadget: afunc_bind:565 Error!
[ 59.222329] g_audio ee020000.usb: failed to start g_audio: -19
modprobe: ERROR: could not insert 'g_audio': No such device
rcar-gen3:/home/root# modprobe -r g_audio
rcar-gen3:/home/root#
Fixes: f1d3861d63a5 ("usb: gadget: f_uac2: fix error handling at afunc_bind")
Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
2018-06-21 17:22:46 +02:00
|
|
|
return -ENODEV;
|
2012-10-22 22:14:59 +02:00
|
|
|
}
|
2012-02-02 22:01:34 +05:30
|
|
|
|
2017-06-25 16:23:47 +03:00
|
|
|
agdev->in_ep_maxpsize = max_t(u16,
|
|
|
|
le16_to_cpu(fs_epin_desc.wMaxPacketSize),
|
|
|
|
le16_to_cpu(hs_epin_desc.wMaxPacketSize));
|
|
|
|
agdev->out_ep_maxpsize = max_t(u16,
|
|
|
|
le16_to_cpu(fs_epout_desc.wMaxPacketSize),
|
|
|
|
le16_to_cpu(hs_epout_desc.wMaxPacketSize));
|
2013-05-30 18:23:33 +05:30
|
|
|
|
2012-02-02 22:01:34 +05:30
|
|
|
hs_epout_desc.bEndpointAddress = fs_epout_desc.bEndpointAddress;
|
|
|
|
hs_epin_desc.bEndpointAddress = fs_epin_desc.bEndpointAddress;
|
|
|
|
|
2016-02-05 17:06:07 -08:00
|
|
|
ret = usb_assign_descriptors(fn, fs_audio_desc, hs_audio_desc, NULL,
|
|
|
|
NULL);
|
2012-10-22 22:15:06 +02:00
|
|
|
if (ret)
|
2016-11-08 10:10:44 +08:00
|
|
|
return ret;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
2017-06-18 16:23:51 +03:00
|
|
|
agdev->gadget = gadget;
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
agdev->params.p_chmask = uac2_opts->p_chmask;
|
|
|
|
agdev->params.p_srate = uac2_opts->p_srate;
|
|
|
|
agdev->params.p_ssize = uac2_opts->p_ssize;
|
|
|
|
agdev->params.c_chmask = uac2_opts->c_chmask;
|
|
|
|
agdev->params.c_srate = uac2_opts->c_srate;
|
|
|
|
agdev->params.c_ssize = uac2_opts->c_ssize;
|
|
|
|
agdev->params.req_number = uac2_opts->req_number;
|
|
|
|
ret = g_audio_setup(agdev, "UAC2 PCM", "UAC2_Gadget");
|
2012-10-22 22:14:59 +02:00
|
|
|
if (ret)
|
2017-06-18 16:23:52 +03:00
|
|
|
goto err_free_descs;
|
2012-10-22 22:14:59 +02:00
|
|
|
return 0;
|
2014-10-22 19:24:58 +05:30
|
|
|
|
2016-11-08 10:10:44 +08:00
|
|
|
err_free_descs:
|
|
|
|
usb_free_all_descriptors(fn);
|
2017-06-18 16:23:51 +03:00
|
|
|
agdev->gadget = NULL;
|
2017-01-04 10:19:22 +08:00
|
|
|
return ret;
|
2012-02-02 22:01:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
afunc_set_alt(struct usb_function *fn, unsigned intf, unsigned alt)
|
|
|
|
{
|
|
|
|
struct usb_composite_dev *cdev = fn->config->cdev;
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 *uac2 = func_to_uac2(fn);
|
2012-02-02 22:01:34 +05:30
|
|
|
struct usb_gadget *gadget = cdev->gadget;
|
2017-06-18 16:23:51 +03:00
|
|
|
struct device *dev = &gadget->dev;
|
2017-06-18 16:23:52 +03:00
|
|
|
int ret = 0;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
/* No i/f has more than 2 alt settings */
|
|
|
|
if (alt > 1) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
if (intf == uac2->ac_intf) {
|
2012-02-02 22:01:34 +05:30
|
|
|
/* Control I/f has only 1 AltSetting - 0 */
|
|
|
|
if (alt) {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
if (intf == uac2->as_out_intf) {
|
|
|
|
uac2->as_out_alt = alt;
|
2014-08-27 19:09:07 +02:00
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
if (alt)
|
|
|
|
ret = u_audio_start_capture(&uac2->g_audio);
|
2014-08-27 19:09:07 +02:00
|
|
|
else
|
2017-06-18 16:23:52 +03:00
|
|
|
u_audio_stop_capture(&uac2->g_audio);
|
|
|
|
} else if (intf == uac2->as_in_intf) {
|
|
|
|
uac2->as_in_alt = alt;
|
2014-08-27 19:09:07 +02:00
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
if (alt)
|
|
|
|
ret = u_audio_start_playback(&uac2->g_audio);
|
|
|
|
else
|
|
|
|
u_audio_stop_playback(&uac2->g_audio);
|
2012-02-02 22:01:34 +05:30
|
|
|
} else {
|
2014-08-27 19:09:04 +02:00
|
|
|
dev_err(dev, "%s:%d Error!\n", __func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
return ret;
|
2012-02-02 22:01:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
afunc_get_alt(struct usb_function *fn, unsigned intf)
|
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 *uac2 = func_to_uac2(fn);
|
|
|
|
struct g_audio *agdev = func_to_g_audio(fn);
|
|
|
|
|
|
|
|
if (intf == uac2->ac_intf)
|
|
|
|
return uac2->ac_alt;
|
|
|
|
else if (intf == uac2->as_out_intf)
|
|
|
|
return uac2->as_out_alt;
|
|
|
|
else if (intf == uac2->as_in_intf)
|
|
|
|
return uac2->as_in_alt;
|
2012-02-02 22:01:34 +05:30
|
|
|
else
|
2017-06-18 16:23:51 +03:00
|
|
|
dev_err(&agdev->gadget->dev,
|
2012-02-02 22:01:34 +05:30
|
|
|
"%s:%d Invalid Interface %d!\n",
|
|
|
|
__func__, __LINE__, intf);
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
afunc_disable(struct usb_function *fn)
|
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 *uac2 = func_to_uac2(fn);
|
2012-02-02 22:01:34 +05:30
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
uac2->as_in_alt = 0;
|
|
|
|
uac2->as_out_alt = 0;
|
|
|
|
u_audio_stop_capture(&uac2->g_audio);
|
|
|
|
u_audio_stop_playback(&uac2->g_audio);
|
2012-02-02 22:01:34 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
in_rq_cur(struct usb_function *fn, const struct usb_ctrlrequest *cr)
|
|
|
|
{
|
|
|
|
struct usb_request *req = fn->config->cdev->req;
|
2017-06-18 16:23:52 +03:00
|
|
|
struct g_audio *agdev = func_to_g_audio(fn);
|
2014-07-22 19:58:30 +02:00
|
|
|
struct f_uac2_opts *opts;
|
2012-02-02 22:01:34 +05:30
|
|
|
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;
|
2014-07-22 19:58:30 +02:00
|
|
|
int p_srate, c_srate;
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
opts = g_audio_to_uac2_opts(agdev);
|
2014-07-22 19:58:30 +02:00
|
|
|
p_srate = opts->p_srate;
|
|
|
|
c_srate = opts->c_srate;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
if (control_selector == UAC2_CS_CONTROL_SAM_FREQ) {
|
|
|
|
struct cntrl_cur_lay3 c;
|
2016-05-08 23:20:59 +02:00
|
|
|
memset(&c, 0, sizeof(struct cntrl_cur_lay3));
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
if (entity_id == USB_IN_CLK_ID)
|
2018-07-02 23:46:47 +02:00
|
|
|
c.dCUR = cpu_to_le32(p_srate);
|
2012-02-02 22:01:34 +05:30
|
|
|
else if (entity_id == USB_OUT_CLK_ID)
|
2018-07-02 23:46:47 +02:00
|
|
|
c.dCUR = cpu_to_le32(c_srate);
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
value = min_t(unsigned, w_length, sizeof c);
|
|
|
|
memcpy(req->buf, &c, value);
|
|
|
|
} else if (control_selector == UAC2_CS_CONTROL_CLOCK_VALID) {
|
|
|
|
*(u8 *)req->buf = 1;
|
|
|
|
value = min_t(unsigned, w_length, 1);
|
|
|
|
} else {
|
2017-06-18 16:23:51 +03:00
|
|
|
dev_err(&agdev->gadget->dev,
|
2012-02-02 22:01:34 +05:30
|
|
|
"%s:%d control_selector=%d TODO!\n",
|
|
|
|
__func__, __LINE__, control_selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
in_rq_range(struct usb_function *fn, const struct usb_ctrlrequest *cr)
|
|
|
|
{
|
|
|
|
struct usb_request *req = fn->config->cdev->req;
|
2017-06-18 16:23:52 +03:00
|
|
|
struct g_audio *agdev = func_to_g_audio(fn);
|
2014-07-22 19:58:30 +02:00
|
|
|
struct f_uac2_opts *opts;
|
2012-02-02 22:01:34 +05:30
|
|
|
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;
|
|
|
|
struct cntrl_range_lay3 r;
|
|
|
|
int value = -EOPNOTSUPP;
|
2014-07-22 19:58:30 +02:00
|
|
|
int p_srate, c_srate;
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
opts = g_audio_to_uac2_opts(agdev);
|
2014-07-22 19:58:30 +02:00
|
|
|
p_srate = opts->p_srate;
|
|
|
|
c_srate = opts->c_srate;
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
if (control_selector == UAC2_CS_CONTROL_SAM_FREQ) {
|
|
|
|
if (entity_id == USB_IN_CLK_ID)
|
2018-07-02 23:46:47 +02:00
|
|
|
r.dMIN = cpu_to_le32(p_srate);
|
2012-02-02 22:01:34 +05:30
|
|
|
else if (entity_id == USB_OUT_CLK_ID)
|
2018-07-02 23:46:47 +02:00
|
|
|
r.dMIN = cpu_to_le32(c_srate);
|
2012-02-02 22:01:34 +05:30
|
|
|
else
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
r.dMAX = r.dMIN;
|
|
|
|
r.dRES = 0;
|
2018-07-02 23:46:47 +02:00
|
|
|
r.wNumSubRanges = cpu_to_le16(1);
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
value = min_t(unsigned, w_length, sizeof r);
|
|
|
|
memcpy(req->buf, &r, value);
|
|
|
|
} else {
|
2017-06-18 16:23:51 +03:00
|
|
|
dev_err(&agdev->gadget->dev,
|
2012-02-02 22:01:34 +05:30
|
|
|
"%s:%d control_selector=%d TODO!\n",
|
|
|
|
__func__, __LINE__, control_selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ac_rq_in(struct usb_function *fn, const struct usb_ctrlrequest *cr)
|
|
|
|
{
|
|
|
|
if (cr->bRequest == UAC2_CS_CUR)
|
|
|
|
return in_rq_cur(fn, cr);
|
|
|
|
else if (cr->bRequest == UAC2_CS_RANGE)
|
|
|
|
return in_rq_range(fn, cr);
|
|
|
|
else
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
out_rq_cur(struct usb_function *fn, const struct usb_ctrlrequest *cr)
|
|
|
|
{
|
|
|
|
u16 w_length = le16_to_cpu(cr->wLength);
|
|
|
|
u16 w_value = le16_to_cpu(cr->wValue);
|
|
|
|
u8 control_selector = w_value >> 8;
|
|
|
|
|
|
|
|
if (control_selector == UAC2_CS_CONTROL_SAM_FREQ)
|
|
|
|
return w_length;
|
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
setup_rq_inf(struct usb_function *fn, const struct usb_ctrlrequest *cr)
|
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 *uac2 = func_to_uac2(fn);
|
|
|
|
struct g_audio *agdev = func_to_g_audio(fn);
|
2012-02-02 22:01:34 +05:30
|
|
|
u16 w_index = le16_to_cpu(cr->wIndex);
|
|
|
|
u8 intf = w_index & 0xff;
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
if (intf != uac2->ac_intf) {
|
2017-06-18 16:23:51 +03:00
|
|
|
dev_err(&agdev->gadget->dev,
|
2012-02-02 22:01:34 +05:30
|
|
|
"%s:%d Error!\n", __func__, __LINE__);
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cr->bRequestType & USB_DIR_IN)
|
|
|
|
return ac_rq_in(fn, cr);
|
|
|
|
else if (cr->bRequest == UAC2_CS_CUR)
|
|
|
|
return out_rq_cur(fn, cr);
|
|
|
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
afunc_setup(struct usb_function *fn, const struct usb_ctrlrequest *cr)
|
|
|
|
{
|
|
|
|
struct usb_composite_dev *cdev = fn->config->cdev;
|
2017-06-18 16:23:52 +03:00
|
|
|
struct g_audio *agdev = func_to_g_audio(fn);
|
2012-02-02 22:01:34 +05:30
|
|
|
struct usb_request *req = cdev->req;
|
|
|
|
u16 w_length = le16_to_cpu(cr->wLength);
|
|
|
|
int value = -EOPNOTSUPP;
|
|
|
|
|
|
|
|
/* Only Class specific requests are supposed to reach here */
|
|
|
|
if ((cr->bRequestType & USB_TYPE_MASK) != USB_TYPE_CLASS)
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
if ((cr->bRequestType & USB_RECIP_MASK) == USB_RECIP_INTERFACE)
|
|
|
|
value = setup_rq_inf(fn, cr);
|
|
|
|
else
|
2017-06-18 16:23:51 +03:00
|
|
|
dev_err(&agdev->gadget->dev, "%s:%d Error!\n",
|
|
|
|
__func__, __LINE__);
|
2012-02-02 22:01:34 +05:30
|
|
|
|
|
|
|
if (value >= 0) {
|
|
|
|
req->length = value;
|
|
|
|
req->zero = value < w_length;
|
|
|
|
value = usb_ep_queue(cdev->gadget->ep0, req, GFP_ATOMIC);
|
|
|
|
if (value < 0) {
|
2017-06-18 16:23:51 +03:00
|
|
|
dev_err(&agdev->gadget->dev,
|
2012-02-02 22:01:34 +05:30
|
|
|
"%s:%d Error!\n", __func__, __LINE__);
|
|
|
|
req->status = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2014-07-22 19:58:35 +02:00
|
|
|
static inline struct f_uac2_opts *to_f_uac2_opts(struct config_item *item)
|
|
|
|
{
|
|
|
|
return container_of(to_config_group(item), struct f_uac2_opts,
|
|
|
|
func_inst.group);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void f_uac2_attr_release(struct config_item *item)
|
|
|
|
{
|
|
|
|
struct f_uac2_opts *opts = to_f_uac2_opts(item);
|
|
|
|
|
|
|
|
usb_put_function_instance(&opts->func_inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct configfs_item_operations f_uac2_item_ops = {
|
|
|
|
.release = f_uac2_attr_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
#define UAC2_ATTRIBUTE(name) \
|
2015-10-03 15:32:49 +02:00
|
|
|
static ssize_t f_uac2_opts_##name##_show(struct config_item *item, \
|
2014-07-22 19:58:35 +02:00
|
|
|
char *page) \
|
|
|
|
{ \
|
2015-10-03 15:32:49 +02:00
|
|
|
struct f_uac2_opts *opts = to_f_uac2_opts(item); \
|
2014-07-22 19:58:35 +02:00
|
|
|
int result; \
|
|
|
|
\
|
|
|
|
mutex_lock(&opts->lock); \
|
|
|
|
result = sprintf(page, "%u\n", opts->name); \
|
|
|
|
mutex_unlock(&opts->lock); \
|
|
|
|
\
|
|
|
|
return result; \
|
|
|
|
} \
|
|
|
|
\
|
2015-10-03 15:32:49 +02:00
|
|
|
static ssize_t f_uac2_opts_##name##_store(struct config_item *item, \
|
2014-07-22 19:58:35 +02:00
|
|
|
const char *page, size_t len) \
|
|
|
|
{ \
|
2015-10-03 15:32:49 +02:00
|
|
|
struct f_uac2_opts *opts = to_f_uac2_opts(item); \
|
2014-07-22 19:58:35 +02:00
|
|
|
int ret; \
|
|
|
|
u32 num; \
|
|
|
|
\
|
|
|
|
mutex_lock(&opts->lock); \
|
|
|
|
if (opts->refcnt) { \
|
|
|
|
ret = -EBUSY; \
|
|
|
|
goto end; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
ret = kstrtou32(page, 0, &num); \
|
|
|
|
if (ret) \
|
|
|
|
goto end; \
|
|
|
|
\
|
|
|
|
opts->name = num; \
|
|
|
|
ret = len; \
|
|
|
|
\
|
|
|
|
end: \
|
|
|
|
mutex_unlock(&opts->lock); \
|
|
|
|
return ret; \
|
|
|
|
} \
|
|
|
|
\
|
2015-10-03 15:32:49 +02:00
|
|
|
CONFIGFS_ATTR(f_uac2_opts_, name)
|
2014-07-22 19:58:35 +02:00
|
|
|
|
|
|
|
UAC2_ATTRIBUTE(p_chmask);
|
|
|
|
UAC2_ATTRIBUTE(p_srate);
|
|
|
|
UAC2_ATTRIBUTE(p_ssize);
|
|
|
|
UAC2_ATTRIBUTE(c_chmask);
|
|
|
|
UAC2_ATTRIBUTE(c_srate);
|
|
|
|
UAC2_ATTRIBUTE(c_ssize);
|
2017-01-04 10:19:23 +08:00
|
|
|
UAC2_ATTRIBUTE(req_number);
|
2014-07-22 19:58:35 +02:00
|
|
|
|
|
|
|
static struct configfs_attribute *f_uac2_attrs[] = {
|
2015-10-03 15:32:49 +02:00
|
|
|
&f_uac2_opts_attr_p_chmask,
|
|
|
|
&f_uac2_opts_attr_p_srate,
|
|
|
|
&f_uac2_opts_attr_p_ssize,
|
|
|
|
&f_uac2_opts_attr_c_chmask,
|
|
|
|
&f_uac2_opts_attr_c_srate,
|
|
|
|
&f_uac2_opts_attr_c_ssize,
|
2017-01-04 10:19:23 +08:00
|
|
|
&f_uac2_opts_attr_req_number,
|
2014-07-22 19:58:35 +02:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2017-10-16 17:18:41 +02:00
|
|
|
static const struct config_item_type f_uac2_func_type = {
|
2014-07-22 19:58:35 +02:00
|
|
|
.ct_item_ops = &f_uac2_item_ops,
|
|
|
|
.ct_attrs = f_uac2_attrs,
|
|
|
|
.ct_owner = THIS_MODULE,
|
|
|
|
};
|
|
|
|
|
2014-07-22 19:58:30 +02:00
|
|
|
static void afunc_free_inst(struct usb_function_instance *f)
|
|
|
|
{
|
|
|
|
struct f_uac2_opts *opts;
|
|
|
|
|
|
|
|
opts = container_of(f, struct f_uac2_opts, func_inst);
|
|
|
|
kfree(opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct usb_function_instance *afunc_alloc_inst(void)
|
|
|
|
{
|
|
|
|
struct f_uac2_opts *opts;
|
|
|
|
|
|
|
|
opts = kzalloc(sizeof(*opts), GFP_KERNEL);
|
|
|
|
if (!opts)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
2014-07-22 19:58:35 +02:00
|
|
|
mutex_init(&opts->lock);
|
2014-07-22 19:58:30 +02:00
|
|
|
opts->func_inst.free_func_inst = afunc_free_inst;
|
|
|
|
|
2014-07-22 19:58:35 +02:00
|
|
|
config_group_init_type_name(&opts->func_inst.group, "",
|
|
|
|
&f_uac2_func_type);
|
|
|
|
|
|
|
|
opts->p_chmask = UAC2_DEF_PCHMASK;
|
|
|
|
opts->p_srate = UAC2_DEF_PSRATE;
|
|
|
|
opts->p_ssize = UAC2_DEF_PSSIZE;
|
|
|
|
opts->c_chmask = UAC2_DEF_CCHMASK;
|
|
|
|
opts->c_srate = UAC2_DEF_CSRATE;
|
|
|
|
opts->c_ssize = UAC2_DEF_CSSIZE;
|
2017-01-04 10:19:23 +08:00
|
|
|
opts->req_number = UAC2_DEF_REQ_NUM;
|
2014-07-22 19:58:30 +02:00
|
|
|
return &opts->func_inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void afunc_free(struct usb_function *f)
|
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct g_audio *agdev;
|
2014-07-22 19:58:35 +02:00
|
|
|
struct f_uac2_opts *opts;
|
2014-07-22 19:58:30 +02:00
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
agdev = func_to_g_audio(f);
|
2014-07-22 19:58:35 +02:00
|
|
|
opts = container_of(f->fi, struct f_uac2_opts, func_inst);
|
2014-07-22 19:58:30 +02:00
|
|
|
kfree(agdev);
|
2014-07-22 19:58:35 +02:00
|
|
|
mutex_lock(&opts->lock);
|
|
|
|
--opts->refcnt;
|
|
|
|
mutex_unlock(&opts->lock);
|
2014-07-22 19:58:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void afunc_unbind(struct usb_configuration *c, struct usb_function *f)
|
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct g_audio *agdev = func_to_g_audio(f);
|
2014-07-22 19:58:30 +02:00
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
g_audio_cleanup(agdev);
|
2014-07-22 19:58:30 +02:00
|
|
|
usb_free_all_descriptors(f);
|
2017-06-18 16:23:51 +03:00
|
|
|
|
|
|
|
agdev->gadget = NULL;
|
2014-07-22 19:58:30 +02:00
|
|
|
}
|
|
|
|
|
2015-02-04 18:01:11 +00:00
|
|
|
static struct usb_function *afunc_alloc(struct usb_function_instance *fi)
|
2014-07-22 19:58:30 +02:00
|
|
|
{
|
2017-06-18 16:23:52 +03:00
|
|
|
struct f_uac2 *uac2;
|
2014-07-22 19:58:30 +02:00
|
|
|
struct f_uac2_opts *opts;
|
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
uac2 = kzalloc(sizeof(*uac2), GFP_KERNEL);
|
|
|
|
if (uac2 == NULL)
|
2014-07-22 19:58:30 +02:00
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
opts = container_of(fi, struct f_uac2_opts, func_inst);
|
2014-07-22 19:58:35 +02:00
|
|
|
mutex_lock(&opts->lock);
|
|
|
|
++opts->refcnt;
|
|
|
|
mutex_unlock(&opts->lock);
|
2014-07-22 19:58:30 +02:00
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
uac2->g_audio.func.name = "uac2_func";
|
|
|
|
uac2->g_audio.func.bind = afunc_bind;
|
|
|
|
uac2->g_audio.func.unbind = afunc_unbind;
|
|
|
|
uac2->g_audio.func.set_alt = afunc_set_alt;
|
|
|
|
uac2->g_audio.func.get_alt = afunc_get_alt;
|
|
|
|
uac2->g_audio.func.disable = afunc_disable;
|
|
|
|
uac2->g_audio.func.setup = afunc_setup;
|
|
|
|
uac2->g_audio.func.free_func = afunc_free;
|
2014-07-22 19:58:30 +02:00
|
|
|
|
2017-06-18 16:23:52 +03:00
|
|
|
return &uac2->g_audio.func;
|
2014-07-22 19:58:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DECLARE_USB_FUNCTION_INIT(uac2, afunc_alloc_inst, afunc_alloc);
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_AUTHOR("Yadwinder Singh");
|
|
|
|
MODULE_AUTHOR("Jaswinder Singh");
|