From: Greg KH <gregkh@linuxfoundation.org>
To: ������ <jh0801.jung@samsung.com>
Cc: linux-usb@vger.kernel.org
Subject: Re: [PATCH] ANDROID: sound: usb: Add vendor's hooking interface
Date: Wed, 17 Jun 2020 11:44:53 +0200 [thread overview]
Message-ID: <20200617094453.GA1944221@kroah.com> (raw)
In-Reply-To: <033901d64487$2bab03f0$83010bd0$@samsung.com>
On Wed, Jun 17, 2020 at 06:10:39PM +0900, ������ wrote:
>
>
> > -----Original Message-----
> > From: linux-usb-owner@vger.kernel.org [mailto:linux-usb-
> > owner@vger.kernel.org] On Behalf Of Greg KH
> > Sent: Wednesday, June 17, 2020 4:53 PM
> > To: JaeHun Jung
> > Cc: linux-usb@vger.kernel.org
> > Subject: Re: [PATCH] ANDROID: sound: usb: Add vendor's hooking interface
> >
> > On Wed, Jun 17, 2020 at 07:17:38AM +0200, Greg KH wrote:
> > > On Wed, Jun 17, 2020 at 10:55:30AM +0900, JaeHun Jung wrote:
> > > > In mobile, a co-processor is used when using USB audio to improve
> > > > power consumption.
> > > > hooking is required for sync-up when operating the co-processor. So
> > > > register call-back function.
> > > > The main operation of the call-back function is as follows:
> > > > - Initialize the co-processor by transmitting data
> > > > when initializing.
> > > > - Change the co-processor setting value through
> > > > the interface function.
> > > > - Configure sampling rate
> > > > - pcm open/close
> > > >
> > > > Bug: 156315379
> > > >
> > > > Change-Id: I32e1dd408e64aaef68ee06c480c4b4d4c95546dc
> > >
> > > No need for Bug or Change-Id on patches submitted to us, same for the
> > > odd "ANDROID:" in the subject.
> > >
>
> Ok, I will delete it.
>
> > > > Signed-off-by: JaeHun Jung <jh0801.jung@samsung.com>
> > > > ---
> > > > sound/usb/card.c | 16 ++++++++++++++++
> > > > sound/usb/card.h | 1 +
> > > > sound/usb/clock.c | 5 +++++
> > > > sound/usb/pcm.c | 33 +++++++++++++++++++++++++++++++++
> > > > sound/usb/usbaudio.h | 30 ++++++++++++++++++++++++++++++
> > > > 5 files changed, 85 insertions(+)
> > >
> > > Did you run scripts/get_maintainer.pl on this patch to determine that
> > > maybe the alsa-devel list should also be needed?
> > >
>
> Yes, it was sent looking for maintainer of sound/usb.
> This callbacks is for sync with Audio Core.
> So, I was implement on sound/usb.
>
> > >
> > >
> > > >
> > > > diff --git a/sound/usb/card.c b/sound/usb/card.c index
> > > > fd6fd17..2f3fa14 100644
> > > > --- a/sound/usb/card.c
> > > > +++ b/sound/usb/card.c
> > > > @@ -111,6 +111,7 @@ MODULE_PARM_DESC(skip_validation, "Skip unit
> > > > descriptor validation (default: no) static
> > > > DEFINE_MUTEX(register_mutex); static struct snd_usb_audio
> > > > *usb_chip[SNDRV_CARDS]; static struct usb_driver usb_audio_driver;
> > > > +struct snd_usb_audio_vendor_ops *usb_audio_ops;
> > > >
> > > > /*
> > > > * disconnect streams
> > > > @@ -210,6 +211,12 @@ static int snd_usb_create_stream(struct
> > snd_usb_audio *chip, int ctrlif, int int
> > > > return 0;
> > > > }
> > > >
> > > > +void snd_set_vender_interface(struct snd_usb_audio_vendor_ops
> > > > +*vendor_ops) {
> > > > + usb_audio_ops = vendor_ops;
> > > > +}
> > > > +EXPORT_SYMBOL_GPL(snd_set_vender_interface);
> > >
> > > You are exporting a lot of new symbols, but you have no user of these
> > > symbols, which is not allowed, as you know. Please also post your
> > > user of them so we can see if you are doing things correctly or not.
> > >
>
> Yes, I know.
> This is called from Audio core module.
> Audio related drivers associated with this module cannot disclose because
> of security.
What do you mean? The license of the code is GPL version 2, so there is
no "security" reason to not publish it.
> I think this is true of other vendors as well.
What other vendor needs these hooks?
> > > Also, only one set of "vendor ops" does not make any sense at all,
> > > this needs to be on a per-host-controller basis, right? If so, why is
> > > this all in the sound driver?
> >
>
> Currently, this interface is only for USB audio. USB information is that is
> has in the xhci host driver.
> When USB audio is connected, F/W of audio core performs the control of USB
> host for low power.
But that's not how these hooks are being created, you need to properly
handle any USB bus type. As-is these will not work correctly.
> > Also, your api is making a lot of assumptions about the running system,
> > there seems to not be any way to always "know" what bus/device the
> > callbacks are being used for in many places.
>
> This is only used in limited scenarios. And the information of USB host get
> through from exynos_usb_audio driver.
But that's not what these hooks show.
Again, please publish all of the code, we can not just add random kernel
hooks (that aren't even correct), without having a user of the code.
Would you want to have to maintain such a system?
> > Why not just add the needed functionality to the sound driver itself
> > instead of trying to rely on these odd "callbacks"?
>
> Audio core operates in F/W and is module.
> Because there are many connected modules, it is cannot on built-in and
> module to implement the non-callbacks
I do not understand, sorry. Perhaps the code that uses the hooks would
better explain this.
thanks,
greg k-h
next prev parent reply other threads:[~2020-06-17 9:45 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20200617020305epcas2p35de377f38ec42a41adb47a49dfc33791@epcas2p3.samsung.com>
2020-06-17 1:55 ` [PATCH] ANDROID: sound: usb: Add vendor's hooking interface JaeHun Jung
2020-06-17 5:17 ` Greg KH
2020-06-17 7:52 ` Greg KH
2020-06-17 9:10 ` 정재훈
2020-06-17 9:44 ` Greg KH [this message]
[not found] <CGME20200617022554epcas2p214a49f03a15e504d8faa28148e06e796@epcas2p2.samsung.com>
2020-06-17 2:18 ` JaeHun Jung
2020-06-17 2:18 ` JaeHun Jung
2020-06-17 4:02 ` Takashi Sakamoto
2020-06-18 8:12 ` Christoph Hellwig
2020-06-18 8:12 ` Christoph Hellwig
2020-06-18 12:27 ` Pierre-Louis Bossart
[not found] <CGME20200616113032epcas2p19a45e49c1899f81358a0a41d5db4f8e8@epcas2p1.samsung.com>
2020-06-16 11:22 ` JaeHun Jung
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=20200617094453.GA1944221@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=jh0801.jung@samsung.com \
--cc=linux-usb@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.