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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5C404C77B7E for ; Fri, 21 Apr 2023 09:45:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231831AbjDUJpK (ORCPT ); Fri, 21 Apr 2023 05:45:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52956 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232010AbjDUJoy (ORCPT ); Fri, 21 Apr 2023 05:44:54 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 95E3BB452; Fri, 21 Apr 2023 02:44:20 -0700 (PDT) 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 0F64264F6F; Fri, 21 Apr 2023 09:44:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B5AC0C433EF; Fri, 21 Apr 2023 09:44:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1682070259; bh=RJvg9Cl+YFqg0zLVP3PJyan3HevOBCGTOaODk9YxFk8=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=OtIYL1ILsEvQ3ssJ4FjPRxbk066rNrrUEGHT+eLqNPBLc9399cehsK1f2f61cNI5d YMei8zmjkJRUOJQDpHqc8T09JGpgkDxY6fN1A0DjFlo6qrzQGuwrKKwx9sPD30XpLz q+s7AEKx3l99uQ0EP+0uuBlAphXlrXVGtGDtqZn0mqvl/cNG6teVP87j/cXGVG7twf gANGOiu3hegwUPNZUX7M8h1iZ345ji+Jtd6BH02abOD4qZ67zBBvgpXHe0YSNFMxz/ prvNWQbg6ImzXCOyEEhXktg1B/DgtR2a2wjOQ9287bffv+6PlD81L+jf9c7S1ASARq lC26afFLKIyAQ== Message-ID: <288d8b93-8dfc-2aa2-4c36-49a2612820fd@kernel.org> Date: Fri, 21 Apr 2023 11:44:15 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 Subject: Re: [PATCH 2/7] ARM: dts: s5pv210: Adjust I2S entries to match spec Content-Language: en-US From: Krzysztof Kozlowski To: Jonathan Bakker , alim.akhtar@samsung.com Cc: robh+dt@kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org References: <4ebe2bb9-4f92-2dff-6737-d057e5950b24@kernel.org> <414f1ad8-8ee1-9913-c0e8-b4f66f3e7180@kernel.org> In-Reply-To: <414f1ad8-8ee1-9913-c0e8-b4f66f3e7180@kernel.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org On 24/03/2022 12:49, Krzysztof Kozlowski wrote: > On 23/03/2022 18:24, Jonathan Bakker wrote: >> Hi Krzysztof, >> >> On 2022-03-23 8:15 a.m., Krzysztof Kozlowski wrote: >>> On 23/03/2022 16:14, Krzysztof Kozlowski wrote: >>>> On 23/03/2022 16:03, Jonathan Bakker wrote: >>>>> Based on the device tree spec, clocks should be ordered tx/rx. >>>>> Re-order from rx/tx to avoid warnings when running make dtbs_check >>>>> >>>>> Additionally, the number of #sound-dai-cells should be 1, not 0 >>>>> >>>>> Signed-off-by: Jonathan Bakker >>>>> --- >>>>> arch/arm/boot/dts/s5pv210-aries.dtsi | 2 +- >>>>> arch/arm/boot/dts/s5pv210.dtsi | 18 +++++++++--------- >>>>> 2 files changed, 10 insertions(+), 10 deletions(-) >>>>> >>>>> diff --git a/arch/arm/boot/dts/s5pv210-aries.dtsi b/arch/arm/boot/dts/s5pv210-aries.dtsi >>>>> index 70ff56daf4cb..503b5a50ef1a 100644 >>>>> --- a/arch/arm/boot/dts/s5pv210-aries.dtsi >>>>> +++ b/arch/arm/boot/dts/s5pv210-aries.dtsi >>>>> @@ -644,7 +644,7 @@ >>>>> }; >>>>> >>>>> &i2s0 { >>>>> - dmas = <&pdma0 9>, <&pdma0 10>, <&pdma0 11>; >>>>> + dmas = <&pdma0 10>, <&pdma0 9>, <&pdma0 11>; >>>>> status = "okay"; >>>> >>>> Except that fix that's the same commit as here: >>>> https://lore.kernel.org/all/20200907161141.31034-26-krzk@kernel.org/ >>>> so just extend it. >>>> >>>> sound-dai-cells should go to a separate commit. But are you sure they >>>> are correct? The Fascinate 4G seems to be using them as cells=0. >>> >>> See my previous patch and discussion: >>> https://lore.kernel.org/all/20200907161141.31034-10-krzk@kernel.org/ >>> >> >> Thanks, I'd totally forgotten about this series from the past. I'll re-test >> those commits and submit your copies of them in v2 if that's OK with you and >> that they're confirmed functional? > > My dma fixes change lacked this aries fix. The sound-dai-cells needed > more rethinking. > Hi Jonathan, Any plans for checking/fixing/testing and resending the sound-dai-cells fixes? Best regards, Krzysztof 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 5B5C7C77B75 for ; Fri, 21 Apr 2023 09:45:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:References:Cc:To:From: Subject:MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=M9T0+LNa3Zr2KyKhowjcdSwGRojyxFuhh/hRWEwd0yU=; b=ZoLCLzL06774/D 3rdh+LBnw392SguzNyEDPeEgBSLMSkXV6MziRCKJFQa4kQLhgzFc5lI/LzvG7QbAJeAC2qNaxtq/e KgIkcm3Yw5IqSNxnO0s4BWotvCXkmf7A1AspzJS2govSzRq/PhfMa6C+WAYDsAr7uwTJ/C3GL+ArP kGE6hZDYcupbaGxlF8TKco8CxF/79sN/rWAXa/6rJi+zS5Db/sE/B1PK3h7V3BW9ZY9ZUFu5HHU1+ ztF0r+6AOZ0mqpT7uQOs6dyChlHUvwbnCOkdEQvBavy4Sn4G7BDJqMqMM1eDcFJiXQPTsNZYByO4i Dy/EL9UyyMPVPvWyjbig==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1ppnJZ-00AM0a-1B; Fri, 21 Apr 2023 09:44:25 +0000 Received: from dfw.source.kernel.org ([2604:1380:4641:c500::1]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1ppnJW-00ALzD-01 for linux-arm-kernel@lists.infradead.org; Fri, 21 Apr 2023 09:44:23 +0000 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 0960C64060; Fri, 21 Apr 2023 09:44:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B5AC0C433EF; Fri, 21 Apr 2023 09:44:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1682070259; bh=RJvg9Cl+YFqg0zLVP3PJyan3HevOBCGTOaODk9YxFk8=; h=Date:Subject:From:To:Cc:References:In-Reply-To:From; b=OtIYL1ILsEvQ3ssJ4FjPRxbk066rNrrUEGHT+eLqNPBLc9399cehsK1f2f61cNI5d YMei8zmjkJRUOJQDpHqc8T09JGpgkDxY6fN1A0DjFlo6qrzQGuwrKKwx9sPD30XpLz q+s7AEKx3l99uQ0EP+0uuBlAphXlrXVGtGDtqZn0mqvl/cNG6teVP87j/cXGVG7twf gANGOiu3hegwUPNZUX7M8h1iZ345ji+Jtd6BH02abOD4qZ67zBBvgpXHe0YSNFMxz/ prvNWQbg6ImzXCOyEEhXktg1B/DgtR2a2wjOQ9287bffv+6PlD81L+jf9c7S1ASARq lC26afFLKIyAQ== Message-ID: <288d8b93-8dfc-2aa2-4c36-49a2612820fd@kernel.org> Date: Fri, 21 Apr 2023 11:44:15 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 Subject: Re: [PATCH 2/7] ARM: dts: s5pv210: Adjust I2S entries to match spec Content-Language: en-US From: Krzysztof Kozlowski To: Jonathan Bakker , alim.akhtar@samsung.com Cc: robh+dt@kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-kernel@vger.kernel.org References: <4ebe2bb9-4f92-2dff-6737-d057e5950b24@kernel.org> <414f1ad8-8ee1-9913-c0e8-b4f66f3e7180@kernel.org> In-Reply-To: <414f1ad8-8ee1-9913-c0e8-b4f66f3e7180@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230421_024422_131570_CACA21F7 X-CRM114-Status: GOOD ( 16.16 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 24/03/2022 12:49, Krzysztof Kozlowski wrote: > On 23/03/2022 18:24, Jonathan Bakker wrote: >> Hi Krzysztof, >> >> On 2022-03-23 8:15 a.m., Krzysztof Kozlowski wrote: >>> On 23/03/2022 16:14, Krzysztof Kozlowski wrote: >>>> On 23/03/2022 16:03, Jonathan Bakker wrote: >>>>> Based on the device tree spec, clocks should be ordered tx/rx. >>>>> Re-order from rx/tx to avoid warnings when running make dtbs_check >>>>> >>>>> Additionally, the number of #sound-dai-cells should be 1, not 0 >>>>> >>>>> Signed-off-by: Jonathan Bakker >>>>> --- >>>>> arch/arm/boot/dts/s5pv210-aries.dtsi | 2 +- >>>>> arch/arm/boot/dts/s5pv210.dtsi | 18 +++++++++--------- >>>>> 2 files changed, 10 insertions(+), 10 deletions(-) >>>>> >>>>> diff --git a/arch/arm/boot/dts/s5pv210-aries.dtsi b/arch/arm/boot/dts/s5pv210-aries.dtsi >>>>> index 70ff56daf4cb..503b5a50ef1a 100644 >>>>> --- a/arch/arm/boot/dts/s5pv210-aries.dtsi >>>>> +++ b/arch/arm/boot/dts/s5pv210-aries.dtsi >>>>> @@ -644,7 +644,7 @@ >>>>> }; >>>>> >>>>> &i2s0 { >>>>> - dmas = <&pdma0 9>, <&pdma0 10>, <&pdma0 11>; >>>>> + dmas = <&pdma0 10>, <&pdma0 9>, <&pdma0 11>; >>>>> status = "okay"; >>>> >>>> Except that fix that's the same commit as here: >>>> https://lore.kernel.org/all/20200907161141.31034-26-krzk@kernel.org/ >>>> so just extend it. >>>> >>>> sound-dai-cells should go to a separate commit. But are you sure they >>>> are correct? The Fascinate 4G seems to be using them as cells=0. >>> >>> See my previous patch and discussion: >>> https://lore.kernel.org/all/20200907161141.31034-10-krzk@kernel.org/ >>> >> >> Thanks, I'd totally forgotten about this series from the past. I'll re-test >> those commits and submit your copies of them in v2 if that's OK with you and >> that they're confirmed functional? > > My dma fixes change lacked this aries fix. The sound-dai-cells needed > more rethinking. > Hi Jonathan, Any plans for checking/fixing/testing and resending the sound-dai-cells fixes? Best regards, Krzysztof _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel