From: John Keeping <john@metanate.com>
To: Pavel Hofman <pavel.hofman@ivitera.com>
Cc: linux-usb@vger.kernel.org,
Ruslan Bilovol <ruslan.bilovol@gmail.com>,
Jerome Brunet <jbrunet@baylibre.com>,
Julian Scheel <julian@jusst.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: [PATCH v2 02/11] usb: gadget: u_audio: Support multiple sampling rates
Date: Tue, 4 Jan 2022 15:32:53 +0000 [thread overview]
Message-ID: <YdRopd4BfUM9ZtbX@donbot> (raw)
In-Reply-To: <6392639d-8a6f-8203-e5d0-e862ee1d2654@ivitera.com>
On Wed, Dec 22, 2021 at 08:13:01AM +0100, Pavel Hofman wrote:
> Dne 21. 12. 21 v 12:35 John Keeping napsal(a):
> > On Mon, Dec 20, 2021 at 10:11:21PM +0100, Pavel Hofman wrote:
> > > From: Julian Scheel <julian@jusst.de>
> > >
> > > Implement support for multiple sampling rates in u_audio part of the
> > > audio gadget. The currently configured rates are exposed through
> > > read-only amixer controls 'Capture Rate' and 'Playback Rate'.
> > >
> > > Signed-off-by: Julian Scheel <julian@jusst.de>
> > > Signed-off-by: Pavel Hofman <pavel.hofman@ivitera.com>
> > > ---
> >
> > > diff --git a/drivers/usb/gadget/function/uac_common.h b/drivers/usb/gadget/function/uac_common.h
> > > new file mode 100644
> > > index 000000000000..3ecf89d6e814
> > > --- /dev/null
> > > +++ b/drivers/usb/gadget/function/uac_common.h
> > > @@ -0,0 +1,9 @@
> > > +/* SPDX-License-Identifier: GPL-2.0+ */
> > > +/*
> > > + */
> > > +
> > > +#ifndef UAC_COMMON_H
> > > +#define UAC_COMMON_H
> > > +
> > > +#define UAC_MAX_RATES 10 /* maximum number of rates configurable by f_uac1/2 */
> >
> > Why a new header for this - doesn't it belong in u_audio.h?
>
> The constant is used in subsequent patches in f_uac1.c, f_uac2.c, their
> headers u_uac1.h, u_uac2.h, and legacy/audio.c (which already includes
> u_uac1.h/u_uac2.h as needed). Since all occurences must use the same value,
> I did not know how to solve this without introducing a common header file,
> included in the existing headers u_audio.h, u_uac1.h, u_uac2.h. If there is
> a better way, I will be happy to use it, I do not like the extra common
> header file either. Thanks a lot for your help.
Ah, right - I hadn't accounted for UAC1.
Do you think anyone is using UAC1 these days? I wonder if it makes
sense to just drop those changes and focus on UAC2.
John
next prev parent reply other threads:[~2022-01-04 15:33 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-20 21:11 [PATCH v2 00/11] usb: gadget: audio: Multiple rates, dyn. bInterval Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 01/11] usb: gadget: u_audio: Subdevice 0 for capture ctls Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 02/11] usb: gadget: u_audio: Support multiple sampling rates Pavel Hofman
2021-12-21 11:35 ` John Keeping
2021-12-22 7:13 ` Pavel Hofman
2022-01-04 15:32 ` John Keeping [this message]
2022-01-05 10:55 ` Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 03/11] usb: gadget: f_uac2: " Pavel Hofman
2021-12-21 11:59 ` John Keeping
2021-12-22 10:01 ` Pavel Hofman
2022-01-04 15:33 ` John Keeping
2022-01-05 12:20 ` Pavel Hofman
2022-01-05 12:44 ` John Keeping
2022-01-05 14:05 ` Pavel Hofman
2022-01-06 8:45 ` Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 04/11] usb: gadget: f_uac1: " Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 05/11] usb: gadget: f_uac2: Renaming Clock Sources to fixed names Pavel Hofman
2021-12-21 12:02 ` John Keeping
2021-12-22 10:11 ` Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 06/11] usb: gadget: u_audio: Rate ctl notifies about current srate (0=stopped) Pavel Hofman
2021-12-21 12:07 ` John Keeping
2021-12-22 10:41 ` Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 07/11] usb: gadget: u_audio: Stopping PCM substream at capture/playback stop Pavel Hofman
2021-12-21 12:18 ` John Keeping
2021-12-22 12:26 ` Pavel Hofman
2021-12-28 9:04 ` [RFC: PATCH " Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 08/11] usb: gadget: u_audio: Adding suspend call Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 09/11] usb: gadget: f_uac2: Adding suspend callback Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 10/11] usb: gadget: f_uac1: " Pavel Hofman
2021-12-20 21:11 ` [PATCH v2 11/11] usb: gadget: f_uac2: Determining bInterval for HS and SS Pavel Hofman
2021-12-21 12:29 ` John Keeping
2021-12-22 13:35 ` Pavel Hofman
2021-12-22 19:50 ` John Keeping
2021-12-23 7:09 ` Pavel Hofman
2022-01-04 15:33 ` John Keeping
2022-01-05 11:31 ` Pavel Hofman
2022-01-06 14:32 ` John Keeping
2022-01-07 10:30 ` Pavel Hofman
2021-12-21 7:59 ` [PATCH v2 00/11] usb: gadget: audio: Multiple rates, dyn. bInterval Greg Kroah-Hartman
2021-12-22 13:38 ` Pavel Hofman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YdRopd4BfUM9ZtbX@donbot \
--to=john@metanate.com \
--cc=gregkh@linuxfoundation.org \
--cc=jbrunet@baylibre.com \
--cc=julian@jusst.de \
--cc=linux-usb@vger.kernel.org \
--cc=pavel.hofman@ivitera.com \
--cc=ruslan.bilovol@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).