Received: by 2002:a25:e74b:0:0:0:0:0 with SMTP id e72csp1292459ybh; Thu, 16 Jul 2020 08:14:56 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxKf/kAP/dJnxsRC3N2Huc1UlV37ngpj7wef8MnzAJw0jata8ihjx9jy7swhEfQwFjLw3La X-Received: by 2002:a50:cd1a:: with SMTP id z26mr5081989edi.120.1594912495690; Thu, 16 Jul 2020 08:14:55 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1594912495; cv=none; d=google.com; s=arc-20160816; b=kfhaDFVbLOtkRRO1Pttnjw3xIcatUiaDyJqHM3yQh+Y9y0MPh+u4YUfTjw/sadRp7Y RWYcWFQEf99CZQ/LQmP4pDZkdKOoaYGJOzBDGMMZVabZ0mc6ncGs1OsHPZHU0S0VxUyU GanzJufq9GrVTcNcY9ENSHvIOEahjK8FhDDdFJfIBZirXwYJzYLrruuXe/pDPw8qyJWW x7/CUR7Wze/uIBd7AAEUYSABhMVxHf991EhZTvNq4hdsLCRkeMINfqbm3l+ljKHqfl6k hor5elYHr37dTKfeVPDAK7jGTV6yeCsyoIUZdq1C6c0wo1OW5GQ4E/Ynw5fWkqc3aIyp QqoA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=bc2WdDvj1SVZqyZVvTpkvj44Uo6Ps2GhWNaMjvBkUDM=; b=F9TgLlmtXXHyRhHIMWGSnnnwlkU5/jVpfiV7Mkv3KT+FUMdNT66NiB9xCCzVbX6CyD FwGabHgHB6fwE/0/eWOauAy4LJFwN7SXNSrssRylwSivpuca5716HKX/jWHXzKfHxe0E LXTTD5V+FMhWeXp9jRqxsYcSt1vyJbkAjUDwPoCHyLxV82miPuhjPKRCZnEeLMcskMf4 cBOsMkzJpQDLtKsCrtuMefnyN1kpzXByFYXZvDVPFJGkWKre+wQ0VY+rwpaqxcLSdLC8 Cu8TCPzmqNtlMS+ccW3no/U6w1KmD+FXfN94EUVYI4JpSiShInMoxol1m+aKFYbOiNk+ 3Ocw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id i4si3519480edr.244.2020.07.16.08.14.31; Thu, 16 Jul 2020 08:14:55 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=collabora.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728590AbgGPPOS (ORCPT + 99 others); Thu, 16 Jul 2020 11:14:18 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:46766 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728412AbgGPPOS (ORCPT ); Thu, 16 Jul 2020 11:14:18 -0400 Received: from xps.home (unknown [IPv6:2a01:e35:2fb5:1510:95f7:ce7f:fb76:c54a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: aferraris) by bhuna.collabora.co.uk (Postfix) with ESMTPSA id D3DAE2A0DFF; Thu, 16 Jul 2020 16:14:16 +0100 (BST) From: Arnaud Ferraris To: alsa-devel@alsa-project.org Cc: Timur Tabi , Nicolin Chen , Xiubo Li , Fabio Estevam , Shengjiu Wang , Liam Girdwood , Mark Brown , linux-kernel@vger.kernel.org, kernel@collabora.com Subject: [PATCH v2 0/2] ASoC: fsl_asrc: improve clock selection and quality Date: Thu, 16 Jul 2020 17:13:50 +0200 Message-Id: <20200716151352.193451-1-arnaud.ferraris@collabora.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200716145201.186270-1-arnaud.ferraris@collabora.com> References: <20200716145201.186270-1-arnaud.ferraris@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series fixes the automatic clock selection and enables internal ratio in order to improve audio quality. The clock selection patches have been set aside for now, as the discussion is still ongoing regarding that matter. v1 -> v2: - compare clock indexes (and not the location in the clock table) to make sure input and output clocks are different Arnaud Ferraris(2): ASoC: fsl_asrc: make sure the input and output clocks are different ASoC: fsl_asrc: always use internal ratio sound/soc/fsl/fsl_asrc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)