From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 14EA3ECDFB8 for ; Mon, 23 Jul 2018 08:56:59 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C375920874 for ; Mon, 23 Jul 2018 08:56:58 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C375920874 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=suse.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388135AbeGWJ5G (ORCPT ); Mon, 23 Jul 2018 05:57:06 -0400 Received: from mx2.suse.de ([195.135.220.15]:60978 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2388021AbeGWJ5G (ORCPT ); Mon, 23 Jul 2018 05:57:06 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id DF65BAD31; Mon, 23 Jul 2018 08:56:54 +0000 (UTC) Date: Mon, 23 Jul 2018 10:56:54 +0200 Message-ID: From: Takashi Iwai To: "Yue Wang" Cc: , "Kai-Heng Feng" , "Alberto Aguirre" , "Nobutaka Okabe" , "Ruslan Bilovol" , "Jaroslav Kysela" , "Jussi Laako" , , "Daniel Mack" Subject: Re: [PATCH] alsa/usb-audio: Generic DSD detection for Thesycon-based implementations In-Reply-To: References: <20180723085327.49134-1-yuleopen@gmail.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/26 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 23 Jul 2018 10:54:49 +0200, Yue Wang wrote: > > Please ignore this commit. there's something wrong. My apologies again. Heh, don't worry. BTW, at the next submission, please fix the subject prefix as well. The usual subject line for ALSA code is like: ALSA: usb-audio: Blah blah... thanks, Takashi > On Mon, Jul 23, 2018 at 1:53 AM Yue Wang wrote: > > > > Thesycon provides solutions to XMOS chips, and has its own device vendor id. > > > > In this patch, we use generic method to detect DSD capability of Thesycon-based UAC2 > > implementations in order to support a wide range of current and future devices. > > > > The patch will enable the SNDRV_PCM_FMTBIT_DSD_U32_BE bit for the DAC > > hence enable native DSD playback up to DSD512 format. > > > > Signed-off-by: Yue Wang > > --- > > sound/usb/quirks.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c > > index 02b6cc02767f..c51e2dee3075 100644 > > --- a/sound/usb/quirks.c > > +++ b/sound/usb/quirks.c > > @@ -1374,6 +1374,7 @@ u64 snd_usb_interface_dsd_format_quirks(struct snd_usb_audio *chip, > > break; > > > > case USB_ID(0x0d8c, 0x0316): /* Hegel HD12 DSD */ > > + case USB_ID(0x152a, 0x8750): /* Topping DX7s */ > > case USB_ID(0x16b0, 0x06b2): /* NuPrime DAC-10 */ > > case USB_ID(0x16d0, 0x0733): /* Furutech ADL Stratos */ > > case USB_ID(0x16d0, 0x09db): /* NuPrime Audio DAC-9 */ > > -- > > 2.18.0 > > >