From nobody Sat Sep 21 23:00:33 2024 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A81C7C43334 for ; Wed, 29 Jun 2022 02:13:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230422AbiF2CN2 (ORCPT ); Tue, 28 Jun 2022 22:13:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34028 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230083AbiF2CN1 (ORCPT ); Tue, 28 Jun 2022 22:13:27 -0400 Received: from mailgw02.mediatek.com (unknown [210.61.82.184]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 38630F5BB; Tue, 28 Jun 2022 19:13:16 -0700 (PDT) X-UUID: 3bb42ca9036f4d1d938a9a2a23169fb1-20220629 X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.1.7,REQID:cf3a56db-bb7b-470a-8d8d-537b2efe5a3d,OB:0,LO B:0,IP:0,URL:5,TC:0,Content:0,EDM:0,RT:0,SF:0,FILE:0,RULE:Release_Ham,ACTI ON:release,TS:5 X-CID-META: VersionHash:87442a2,CLOUDID:83a6e662-0b3f-4b2c-b3a6-ed5c044366a0,C OID:IGNORED,Recheck:0,SF:nil,TC:nil,Content:0,EDM:-3,IP:nil,URL:1,File:nil ,QS:nil,BEC:nil,COL:0 X-UUID: 3bb42ca9036f4d1d938a9a2a23169fb1-20220629 Received: from mtkexhb01.mediatek.inc [(172.21.101.102)] by mailgw02.mediatek.com (envelope-from ) (Generic MTA with TLSv1.2 ECDHE-RSA-AES256-SHA384 256/256) with ESMTP id 960008906; Wed, 29 Jun 2022 10:13:09 +0800 Received: from mtkmbs11n1.mediatek.inc (172.21.101.186) by mtkmbs10n2.mediatek.inc (172.21.101.183) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.792.3; Wed, 29 Jun 2022 10:13:07 +0800 Received: from localhost.localdomain (10.17.3.154) by mtkmbs11n1.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 15.2.792.3 via Frontend Transport; Wed, 29 Jun 2022 10:13:07 +0800 From: Chunfeng Yun To: Felipe Balbi CC: Greg Kroah-Hartman , Matthias Brugger , Pavel Hofman , "Julian Scheel" , Ruslan Bilovol , "Chunfeng Yun" , Yunhao Tian , xin lin , , , , Subject: [PATCH v2] usb: gadget: f_uac1: add interface association descriptor Date: Wed, 29 Jun 2022 10:13:04 +0800 Message-ID: <20220629021304.21725-1-chunfeng.yun@mediatek.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-MTK: N Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: xin lin When we want to use a composite device that supports UVC, UAC1 and ADB at the same time, encounter that UAC1 can't work when connected to windows 10 system. From the online documents of microsoft, "overview of enumeration of interface collections on usb composite devices", it recommends that vendors use IADs (interface association descriptor) to define interface collections. After addding IAD, we can fix the issue. Signed-off-by: xin lin Signed-off-by: Chunfeng Yun Reviewed-by: AngeloGioacchino Del Regno --- v2: modify commit log suggested by Greg --- drivers/usb/gadget/function/f_uac1.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/drivers/usb/gadget/function/f_uac1.c b/drivers/usb/gadget/func= tion/f_uac1.c index 6f0e1d803dc2..8390207bc513 100644 --- a/drivers/usb/gadget/function/f_uac1.c +++ b/drivers/usb/gadget/function/f_uac1.c @@ -71,6 +71,17 @@ static inline struct f_uac1_opts *g_audio_to_uac1_opts(s= truct g_audio *audio) * ALSA_Playback -> IT_3 -> OT_4 -> USB-IN */ =20 +static struct usb_interface_assoc_descriptor iad_desc =3D { + .bLength =3D sizeof(iad_desc), + .bDescriptorType =3D USB_DT_INTERFACE_ASSOCIATION, + + .bFirstInterface =3D 0, + .bInterfaceCount =3D 3, + .bFunctionClass =3D USB_CLASS_AUDIO, + .bFunctionSubClass =3D 0, + .bFunctionProtocol =3D UAC_VERSION_1, +}; + /* B.3.1 Standard AC Interface Descriptor */ static struct usb_interface_descriptor ac_interface_desc =3D { .bLength =3D USB_DT_INTERFACE_SIZE, @@ -259,6 +270,7 @@ static struct uac_iso_endpoint_descriptor as_iso_in_des= c =3D { }; =20 static struct usb_descriptor_header *f_audio_desc[] =3D { + (struct usb_descriptor_header *)&iad_desc, (struct usb_descriptor_header *)&ac_interface_desc, (struct usb_descriptor_header *)&ac_header_desc, =20 @@ -293,6 +305,7 @@ static struct usb_descriptor_header *f_audio_desc[] =3D= { }; =20 enum { + STR_ASSOC, STR_AC_IF, STR_USB_OUT_IT, STR_USB_OUT_IT_CH_NAMES, @@ -310,6 +323,7 @@ enum { =20 static struct usb_string strings_uac1[] =3D { /* [STR_AC_IF].s =3D DYNAMIC, */ + [STR_ASSOC].s =3D "Source/Sink", [STR_USB_OUT_IT].s =3D "Playback Input terminal", [STR_USB_OUT_IT_CH_NAMES].s =3D "Playback Channels", [STR_IO_OUT_OT].s =3D "Playback Output terminal", @@ -1058,6 +1072,7 @@ static void setup_descriptor(struct f_uac1_opts *opts) as_out_header_desc.bTerminalLink =3D usb_out_it_desc.bTerminalID; as_in_header_desc.bTerminalLink =3D usb_in_ot_desc.bTerminalID; =20 + iad_desc.bInterfaceCount =3D 1; ac_header_desc->wTotalLength =3D cpu_to_le16(ac_header_desc->bLength); =20 if (EPIN_EN(opts)) { @@ -1068,6 +1083,7 @@ static void setup_descriptor(struct f_uac1_opts *opts) if (FUIN_EN(opts)) len +=3D in_feature_unit_desc->bLength; ac_header_desc->wTotalLength =3D cpu_to_le16(len); + iad_desc.bInterfaceCount++; } if (EPOUT_EN(opts)) { u16 len =3D le16_to_cpu(ac_header_desc->wTotalLength); @@ -1077,9 +1093,11 @@ static void setup_descriptor(struct f_uac1_opts *opt= s) if (FUOUT_EN(opts)) len +=3D out_feature_unit_desc->bLength; ac_header_desc->wTotalLength =3D cpu_to_le16(len); + iad_desc.bInterfaceCount++; } =20 i =3D 0; + f_audio_desc[i++] =3D USBDHDR(&iad_desc); f_audio_desc[i++] =3D USBDHDR(&ac_interface_desc); f_audio_desc[i++] =3D USBDHDR(ac_header_desc); =20 @@ -1217,6 +1235,7 @@ static int f_audio_bind(struct usb_configuration *c, = struct usb_function *f) } } =20 + iad_desc.iFunction =3D us[STR_ASSOC].id; ac_interface_desc.iInterface =3D us[STR_AC_IF].id; usb_out_it_desc.iTerminal =3D us[STR_USB_OUT_IT].id; usb_out_it_desc.iChannelNames =3D us[STR_USB_OUT_IT_CH_NAMES].id; @@ -1302,6 +1321,8 @@ static int f_audio_bind(struct usb_configuration *c, = struct usb_function *f) status =3D usb_interface_id(c, f); if (status < 0) goto err_free_fu; + + iad_desc.bFirstInterface =3D status; ac_interface_desc.bInterfaceNumber =3D status; uac1->ac_intf =3D status; uac1->ac_alt =3D 0; --=20 2.18.0