Received: by 2002:ac0:a5a7:0:0:0:0:0 with SMTP id m36-v6csp1578003imm; Thu, 19 Jul 2018 04:23:50 -0700 (PDT) X-Google-Smtp-Source: AAOMgpdczlfdneLPrfC4wtlfrzVnRksNC6DV4orsCJV6Xy+O0GUWlmHIndFxGSSb7YfeNGYxiHDK X-Received: by 2002:a17:902:3a3:: with SMTP id d32-v6mr9749858pld.294.1531999430161; Thu, 19 Jul 2018 04:23:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1531999430; cv=none; d=google.com; s=arc-20160816; b=NXwTsnXJAjvWzO71TJRhLyvw3Nldwo9SEVPOFSvaERSRzQri3YFTaQ75p5rgKAZO+n RVc/qgdnDQ0eQ1s1zZctcYyW2l/J3jl2ZIpxO/FlK0kWOherieuIocmxHQntpbeItJKB jd/+nOeZ3vn7kFbEwLVSgdZbERBKGKUgiQqQOwER5weNEK6eXweYQFOA+tZtmXo+/R9l 8/GnbkhBzLqpYGQRq3leCPpwpvYK/tS6M/tq+OeF8EdJUZgzqpU353e7LWrI/foHPXQW BGnFjcGFLa5+CQwPk1OIkat1F2Iq4xqohu5ln+ZVh2W5KAy6FPKsesN08wP2dDlYElu2 9YEQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=FLQuhcbdXQMtn8lcTFygCGzBhZ75uzQC/8KZ4WEvvMA=; b=LlDJ3H+6ZDUz5Mg4n2MdMKfNegv5vZRpy7IC/58mJUs1St5EIKHCa00SOPCR8+QFG0 rGez+13PNFnrQfvNnZAoyjFaDQYnHohry1Fu8eEvGwuXFwsL+LNmZbC5X1OtOTB2pmBn Wpx519OmMzT72Q/z5DCh0kFTxB+wui9ZPtmfmeMBE8rU0/56By9aor1UhXfGpc3swvWJ 6526ggxPYLkDw2aVZXOJzcDf7dHKYf6jc/YKFUw5RoyklQWFtO9onGlb6w+Xg97e1n4h F3Y/afiwxPs38mnjr+qH7ygKeygt+hD2Gc/y3Od8E2zKZx3wkJ28vAjk5BaNOxLMlbpv 50hg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=codethink.co.uk Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id j4-v6si5111825pll.101.2018.07.19.04.23.12; Thu, 19 Jul 2018 04:23:50 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=codethink.co.uk Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731154AbeGSMFE (ORCPT + 99 others); Thu, 19 Jul 2018 08:05:04 -0400 Received: from imap1.codethink.co.uk ([176.9.8.82]:59736 "EHLO imap1.codethink.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727702AbeGSMFE (ORCPT ); Thu, 19 Jul 2018 08:05:04 -0400 Received: from [148.252.241.226] (helo=ct-lt-1121.office.codethink.co.uk) by imap1.codethink.co.uk with esmtpsa (Exim 4.84_2 #1 (Debian)) id 1fg70l-0004fU-Jk; Thu, 19 Jul 2018 12:22:19 +0100 From: Jorge Sanjuan To: tiwai@suse.de Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: [PATCH 4/4] ALSA: usb-audio: Add UAC3 Power Domains to suspend/resume Date: Thu, 19 Jul 2018 12:22:15 +0100 Message-Id: <20180719112215.4219-5-jorge.sanjuan@codethink.co.uk> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180719112215.4219-1-jorge.sanjuan@codethink.co.uk> References: <20180719112215.4219-1-jorge.sanjuan@codethink.co.uk> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Set the UAC3 Power Domain state for an Audio Streaming interface to D2 state before suspending the device (usb_driver callback). This lets the device know there is no intention to use any of the Units in the Audio Function and that the host is not going to even listen for wake-up events (interrupts) on the units. If the usb_driver gets resumed, the state D1 (idle) will be set. Signed-off-by: Jorge Sanjuan --- sound/usb/card.c | 9 +++++++++ sound/usb/pcm.c | 30 ++++++++++++++++++++++++++++++ sound/usb/pcm.h | 2 ++ 3 files changed, 41 insertions(+) diff --git a/sound/usb/card.c b/sound/usb/card.c index a1ed798a1c6b..9c2a15b805c3 100644 --- a/sound/usb/card.c +++ b/sound/usb/card.c @@ -808,6 +808,7 @@ static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message) snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot); if (!chip->num_suspended_intf++) { list_for_each_entry(as, &chip->pcm_list, list) { + snd_usb_pcm_suspend(as); snd_pcm_suspend_all(as->pcm); as->substream[0].need_setup_ep = as->substream[1].need_setup_ep = true; @@ -824,6 +825,7 @@ static int usb_audio_suspend(struct usb_interface *intf, pm_message_t message) static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume) { struct snd_usb_audio *chip = usb_get_intfdata(intf); + struct snd_usb_stream *as; struct usb_mixer_interface *mixer; struct list_head *p; int err = 0; @@ -834,6 +836,13 @@ static int __usb_audio_resume(struct usb_interface *intf, bool reset_resume) return 0; atomic_inc(&chip->active); /* avoid autopm */ + + list_for_each_entry(as, &chip->pcm_list, list) { + err = snd_usb_pcm_resume(as); + if (err < 0) + goto err_out; + } + /* * ALSA leaves material resumption to user space * we just notify and restart the mixers diff --git a/sound/usb/pcm.c b/sound/usb/pcm.c index 0ae5f539706d..266f7028d01b 100644 --- a/sound/usb/pcm.c +++ b/sound/usb/pcm.c @@ -729,6 +729,36 @@ static int snd_usb_pcm_change_state(struct snd_usb_substream *subs, int state) return 0; } +int snd_usb_pcm_suspend(struct snd_usb_stream *as) +{ + int ret; + + ret = snd_usb_pcm_change_state(&as->substream[0], UAC3_PD_STATE_D2); + if (ret < 0) + return ret; + + ret = snd_usb_pcm_change_state(&as->substream[1], UAC3_PD_STATE_D2); + if (ret < 0) + return ret; + + return 0; +} + +int snd_usb_pcm_resume(struct snd_usb_stream *as) +{ + int ret; + + ret = snd_usb_pcm_change_state(&as->substream[0], UAC3_PD_STATE_D1); + if (ret < 0) + return ret; + + ret = snd_usb_pcm_change_state(&as->substream[1], UAC3_PD_STATE_D1); + if (ret < 0) + return ret; + + return 0; +} + /* * hw_params callback * diff --git a/sound/usb/pcm.h b/sound/usb/pcm.h index f77ec58bf1a1..9833627c1eca 100644 --- a/sound/usb/pcm.h +++ b/sound/usb/pcm.h @@ -6,6 +6,8 @@ snd_pcm_uframes_t snd_usb_pcm_delay(struct snd_usb_substream *subs, unsigned int rate); void snd_usb_set_pcm_ops(struct snd_pcm *pcm, int stream); +int snd_usb_pcm_suspend(struct snd_usb_stream *as); +int snd_usb_pcm_resume(struct snd_usb_stream *as); int snd_usb_init_pitch(struct snd_usb_audio *chip, int iface, struct usb_host_interface *alts, -- 2.11.0