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 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 26006C54EBD for ; Mon, 9 Jan 2023 16:07:20 +0000 (UTC) Received: from alsa1.perex.cz (alsa1.perex.cz [207.180.221.201]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by alsa0.perex.cz (Postfix) with ESMTPS id 1E00873D6; Mon, 9 Jan 2023 17:06:28 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa0.perex.cz 1E00873D6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=alsa-project.org; s=default; t=1673280438; bh=0AchH1x0f1OvcHS9WNHJGjFwXU2i6hh2/u1j9Soj5oU=; h=Date:From:To:Subject:References:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: Cc:From; b=iAaa30hkCMUD00YlsXhoVcqOXhEOgftCqSQEwM0iIqUnsh88dGZrbgS6uMMH3Qszh M+uEKZEvXJmK+nZtHUbquxw4hAf+dEg2hvMiLeRy8Di4t20x+86/HpPbLAGOqgDFE1 GiAOnNDpLZjGEI0VPXU3PLUEKhaDHauElEjEpmO4= Received: from alsa1.perex.cz (localhost.localdomain [127.0.0.1]) by alsa1.perex.cz (Postfix) with ESMTP id C09E3F804D2; Mon, 9 Jan 2023 17:06:27 +0100 (CET) Received: by alsa1.perex.cz (Postfix, from userid 50401) id 217EBF804D2; Mon, 9 Jan 2023 17:06:27 +0100 (CET) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by alsa1.perex.cz (Postfix) with ESMTPS id 6DD39F8026A for ; Mon, 9 Jan 2023 17:06:25 +0100 (CET) DKIM-Filter: OpenDKIM Filter v2.11.0 alsa1.perex.cz 6DD39F8026A Authentication-Results: alsa1.perex.cz; dkim=pass (2048-bit key, unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=ECf7exAt Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id DC1A1611BD; Mon, 9 Jan 2023 16:06:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CC540C433D2; Mon, 9 Jan 2023 16:06:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1673280383; bh=0AchH1x0f1OvcHS9WNHJGjFwXU2i6hh2/u1j9Soj5oU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ECf7exAtfn/G07XAVlAPqATorHAJ7bSVuiceiebmNIh2ZfNuJlb1DV+jkdJBramFl fbz98uRYzhbBNO73i6EMs2YF0Xj2l71QUe6tlB+GTnSENEPU9KXhzgUktT0RRVQgyX w8WQOY0wcKlGp8WkXA1JDaA6RnLdk7xCxSk45EmLkfR40/9oth/cqwIW5aAXcUyRsU pDerYvlMoUItRUYcl2dW8ied4nkw3zXr8AjaDmuPsOOfzRNIDzygix6Haq6+L9bJIB tgzxMwy1QOYpvaRY/prSqlTM9cnl6HB1DxjkXhdk6/VxdpxKn4Zs472noQ1TPj7mcH KPEqHj5rb1B5A== Date: Mon, 9 Jan 2023 21:36:19 +0530 From: Vinod Koul To: Richard Fitzgerald Subject: Re: [PATCH v2 0/3] soundwire: cadence: Fix oversized FIFO size define Message-ID: References: <20221202161812.4186897-1-rf@opensource.cirrus.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221202161812.4186897-1-rf@opensource.cirrus.com> X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: alsa-devel@alsa-project.org, patches@opensource.cirrus.com, pierre-louis.bossart@linux.intel.com, linux-kernel@vger.kernel.org, sanyog.r.kale@intel.com, yung-chuan.liao@linux.intel.com Errors-To: alsa-devel-bounces@alsa-project.org Sender: "Alsa-devel" On 02-12-22, 16:18, Richard Fitzgerald wrote: > As determined by experimentation and asking a hardware person, the FIFO > in the Cadence IP is actually only 8 entries long, not 32. This is fixed > in patch #1. > > As a bonus, patches #2 and #3 fix two other things I noticed while > debugging this. Applied, thanks -- ~Vinod