All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Jorge <jorge.sanjuan@codethink.co.uk>
Cc: <alsa-devel@alsa-project.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [alsa-devel] [PATCH 0/4] usb-audio: Add UAC3 Power Domains
Date: Fri, 27 Jul 2018 13:26:23 +0200	[thread overview]
Message-ID: <s5hlg9wyl5s.wl-tiwai@suse.de> (raw)
In-Reply-To: <59bd0814-e41e-667d-62d1-78194e7a8127@codethink.co.uk>

On Fri, 27 Jul 2018 12:44:18 +0200,
Jorge wrote:
> 
> 
> 
> On 19/07/18 12:56, Takashi Iwai wrote:
> > On Thu, 19 Jul 2018 13:22:11 +0200,
> > Jorge Sanjuan wrote:
> >>
> >> This patchset add support for UAC3 Power Domains. This feature
> >> of the USB audio class 3 allows the host to notify the device
> >> what it is making use of so power comsumption can be optimized.
> >>
> >> This proposal implements this feature for Power Domains
> >> that include an Input/Output Terminal associated to an
> >> audio Streaming interface. This is the main usage of this
> >> feature according to the spec. For that reason, the logic
> >> for the Power Domain state change has been implemented
> >> within the ALSA PCMs logic and the suspend/resume callbacks
> >> of the usb_driver. The behaviour would be as follows:
> >>
> >> * Power Domain State D0: A Power Domain will reach this state
> >>    only when the audio substream associated to that domain is
> >>    being used (i,e. Audio playback/capture is happening).
> >> * Power Domain State D1: This is the Idle state where the driver
> >>    is going to always want to be in order to reduce power
> >>    consumption.
> >> * Power Domain State D2: This state is only set when the usb driver
> >>    asumes the device is not going to be used anymore and hence, it
> >>    wont care about getting any interrupts from the device. This
> >>    will only happen when power level is set to "auto" in sysfs
> >>    so the usb driver gets suspended when the interfaces are not in use.
> >>   NOTE: The way this has been implemented will always try to put
> >> the
> >> Power Domain in state D1 if the Power Domain exists so there is not a
> >> way a user could disable this feature. It may be worth getting a control
> >> exposed to userland that enables/disables this feature (?).
> >
> > Can it be tied with runtime PM?
> >
> > Need to read through your patchset at first...
> >
> >
> > thanks,
> >
> > Takashi
> 
> Hi,
> 
> I just realized I accidentally only replied to alsa-devel.. Sorry
> about that.

Thanks for resending.

> I think it should be possible to tie up the D1 state changes (low
> power but still interrupt capable) to runtime PM. Changes to D2 are
> already tied to PM in this patchset. Just need to find the way to
> cleanly access `dev->power.runtime_auto` before the driver attempts to
> set D1 state. We could also let the driver only do D2<->D0 changes for
> now.

Hm, OK, so the partial coverage looks feasible with the runtime PM
framework, at least.

> I got some kbuild errors due to missing include. Should I re-send this
> patchset or try to go around getting it tied up to runtime PM first?

Let's fix the easy issues with kbuild and get them merged.
The proper power state support can be implemented later.


thanks,

Takashi

WARNING: multiple messages have this Message-ID (diff)
From: Takashi Iwai <tiwai@suse.de>
To: Jorge <jorge.sanjuan@codethink.co.uk>
Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org
Subject: Re: [alsa-devel] [PATCH 0/4] usb-audio: Add UAC3 Power Domains
Date: Fri, 27 Jul 2018 13:26:23 +0200	[thread overview]
Message-ID: <s5hlg9wyl5s.wl-tiwai@suse.de> (raw)
In-Reply-To: <59bd0814-e41e-667d-62d1-78194e7a8127@codethink.co.uk>

On Fri, 27 Jul 2018 12:44:18 +0200,
Jorge wrote:
> 
> 
> 
> On 19/07/18 12:56, Takashi Iwai wrote:
> > On Thu, 19 Jul 2018 13:22:11 +0200,
> > Jorge Sanjuan wrote:
> >>
> >> This patchset add support for UAC3 Power Domains. This feature
> >> of the USB audio class 3 allows the host to notify the device
> >> what it is making use of so power comsumption can be optimized.
> >>
> >> This proposal implements this feature for Power Domains
> >> that include an Input/Output Terminal associated to an
> >> audio Streaming interface. This is the main usage of this
> >> feature according to the spec. For that reason, the logic
> >> for the Power Domain state change has been implemented
> >> within the ALSA PCMs logic and the suspend/resume callbacks
> >> of the usb_driver. The behaviour would be as follows:
> >>
> >> * Power Domain State D0: A Power Domain will reach this state
> >>    only when the audio substream associated to that domain is
> >>    being used (i,e. Audio playback/capture is happening).
> >> * Power Domain State D1: This is the Idle state where the driver
> >>    is going to always want to be in order to reduce power
> >>    consumption.
> >> * Power Domain State D2: This state is only set when the usb driver
> >>    asumes the device is not going to be used anymore and hence, it
> >>    wont care about getting any interrupts from the device. This
> >>    will only happen when power level is set to "auto" in sysfs
> >>    so the usb driver gets suspended when the interfaces are not in use.
> >>   NOTE: The way this has been implemented will always try to put
> >> the
> >> Power Domain in state D1 if the Power Domain exists so there is not a
> >> way a user could disable this feature. It may be worth getting a control
> >> exposed to userland that enables/disables this feature (?).
> >
> > Can it be tied with runtime PM?
> >
> > Need to read through your patchset at first...
> >
> >
> > thanks,
> >
> > Takashi
> 
> Hi,
> 
> I just realized I accidentally only replied to alsa-devel.. Sorry
> about that.

Thanks for resending.

> I think it should be possible to tie up the D1 state changes (low
> power but still interrupt capable) to runtime PM. Changes to D2 are
> already tied to PM in this patchset. Just need to find the way to
> cleanly access `dev->power.runtime_auto` before the driver attempts to
> set D1 state. We could also let the driver only do D2<->D0 changes for
> now.

Hm, OK, so the partial coverage looks feasible with the runtime PM
framework, at least.

> I got some kbuild errors due to missing include. Should I re-send this
> patchset or try to go around getting it tied up to runtime PM first?

Let's fix the easy issues with kbuild and get them merged.
The proper power state support can be implemented later.


thanks,

Takashi

  reply	other threads:[~2018-07-27 11:26 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-19 11:22 [PATCH 0/4] usb-audio: Add UAC3 Power Domains Jorge Sanjuan
2018-07-19 11:22 ` [PATCH 1/4] ALSA: usb-audio: Initial Power Domain support Jorge Sanjuan
2018-07-19 16:24   ` kbuild test robot
2018-07-19 17:09   ` kbuild test robot
2018-07-19 17:09     ` kbuild test robot
2018-07-19 11:22 ` [PATCH 2/4] ALSA: usb-audio: AudioStreaming Power Domain parsing Jorge Sanjuan
2018-07-19 17:48   ` kbuild test robot
2018-07-19 17:48   ` [RFC PATCH] ALSA: usb-audio: snd_usb_add_audio_stream_v3() can be static kbuild test robot
2018-07-19 11:22 ` [PATCH 3/4] ALSA: usb-audio: Operate UAC3 Power Domains in PCM callbacks Jorge Sanjuan
2018-07-19 11:22 ` [PATCH 4/4] ALSA: usb-audio: Add UAC3 Power Domains to suspend/resume Jorge Sanjuan
2018-07-19 11:56 ` [PATCH 0/4] usb-audio: Add UAC3 Power Domains Takashi Iwai
2018-07-20  9:08   ` Jorge
2018-07-27 10:44   ` [alsa-devel] " Jorge
2018-07-27 11:26     ` Takashi Iwai [this message]
2018-07-27 11:26       ` Takashi Iwai
2018-07-30  9:23 ` [PATCH v2 " Jorge Sanjuan
2018-07-30  9:23   ` [PATCH v2 1/4] ALSA: usb-audio: Initial Power Domain support Jorge Sanjuan
2018-07-30 13:01     ` Takashi Iwai
2018-07-30 13:03     ` Takashi Iwai
2018-07-30 16:05       ` Jorge
2018-07-30 16:10         ` Takashi Iwai
2018-07-30  9:23   ` [PATCH v2 2/4] ALSA: usb-audio: AudioStreaming Power Domain parsing Jorge Sanjuan
2018-07-30  9:23   ` [PATCH v2 3/4] ALSA: usb-audio: Add UAC3 Power Domains to suspend/resume Jorge Sanjuan
2018-07-30 13:07     ` Takashi Iwai
2018-07-30  9:23   ` [PATCH v2 4/4] ALSA: usb-audio: Operate UAC3 Power Domains in PCM callbacks Jorge Sanjuan
2018-07-30 13:13     ` Takashi Iwai
2018-07-30 16:09       ` Jorge
2018-07-30 16:12         ` Takashi Iwai
2018-07-30 16:48           ` Jorge
2018-07-31 12:28 ` [PATCH v3 0/4] usb-audio: Add UAC3 Power Domains Jorge Sanjuan
2018-07-31 12:28   ` [PATCH v3 1/4] ALSA: usb-audio: Initial Power Domain support Jorge Sanjuan
2018-07-31 12:28   ` [PATCH v3 2/4] ALSA: usb-audio: AudioStreaming Power Domain parsing Jorge Sanjuan
2018-07-31 12:28   ` [PATCH v3 3/4] ALSA: usb-audio: Add UAC3 Power Domains to suspend/resume Jorge Sanjuan
2018-07-31 12:28   ` [PATCH v3 4/4] ALSA: usb-audio: Operate UAC3 Power Domains in PCM callbacks Jorge Sanjuan
2018-07-31 13:12   ` [PATCH v3 0/4] usb-audio: Add UAC3 Power Domains Takashi Iwai

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=s5hlg9wyl5s.wl-tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=jorge.sanjuan@codethink.co.uk \
    --cc=linux-kernel@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.