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=-16.2 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable 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 D35F5C48BE0 for ; Fri, 11 Jun 2021 05:45:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B305E61009 for ; Fri, 11 Jun 2021 05:45:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231178AbhFKFrF (ORCPT ); Fri, 11 Jun 2021 01:47:05 -0400 Received: from mail.kernel.org ([198.145.29.99]:41144 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230001AbhFKFrD (ORCPT ); Fri, 11 Jun 2021 01:47:03 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id A7C1A61009; Fri, 11 Jun 2021 05:45:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1623390306; bh=ZKNmxmMgms5VwXe37d6FX3oCzRYrOHamlq+LusSpfDQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=knMjjDylTMahicXKkVt/YLCmk4mCoxpjqAmhthAw0HMhmKG/W8CI3rZqfWdeNdBdp pcW6sxhQcOPclccFCK1bjN6yNxX9yJY1nJKMSLzOaHGzks+BvkoV7FyhOEoX2KV+KA /nx0Pl/+tDCIBzqsHKhga/T5//eYIXApMda6ZkBOBhdh6khRUpE22dCUe/O3rCAKnU O+PhSYLlWRHhDLvHHdVEYZzg6IJJH8bkBZA/FdWGmpOTlVNGl1BnNzuxIBBOwumPEu rGL/THLtpnBoxplbdw58X0Foobl/J07M0lUU9L4p46ehrKp3u8qn/tBv1Wxfs9dfJw 7JwpvxAyl6Dyg== Date: Fri, 11 Jun 2021 11:15:01 +0530 From: Vinod Koul To: John Stultz Cc: Bjorn Andersson , linux-arm-msm , Andy Gross , Rob Herring , Dmitry Baryshkov , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS" , lkml Subject: Re: [PATCH] arm64: dts: qcom: sm8350-mtp: Use mdt files for firmware Message-ID: References: <20210611050808.2554431-1-vkoul@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10-06-21, 22:27, John Stultz wrote: > On Thu, Jun 10, 2021 at 10:08 PM Vinod Koul wrote: > > > > As discussed in [1], it makes it easy for everyone to use mdt firmware file > > name instead of mbn ones, so changes this for SM8350 > > > > [1]: http://lore.kernel.org/r/CALAqxLXn6wFBAxRkThxWg5RvTuFEX80kHPt8BVja1CpAB-qzGA@mail.gmail.com > > > > Signed-off-by: Vinod Koul > > --- > > arch/arm64/boot/dts/qcom/sm8350-mtp.dts | 8 ++++---- > > 1 file changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/arch/arm64/boot/dts/qcom/sm8350-mtp.dts b/arch/arm64/boot/dts/qcom/sm8350-mtp.dts > > index 93740444dd1e..d859305f1f75 100644 > > --- a/arch/arm64/boot/dts/qcom/sm8350-mtp.dts > > +++ b/arch/arm64/boot/dts/qcom/sm8350-mtp.dts > > @@ -40,7 +40,7 @@ vph_pwr: vph-pwr-regulator { > > > > &adsp { > > status = "okay"; > > - firmware-name = "qcom/sm8350/adsp.mbn"; > > + irmware-name = "qcom/sm8350/adsp.mdt"; > > }; > > Uhh, isn't this the opposite of [1]? My apologies for butting in, and > I'd stay out of the discussion, except for my mail being linked as > justification :) I would rather think of your email as background material or trigger :) > In [1] the case was db845c was switched from older mdt files to using > the upstream linux-firmware mbn files. This was a bit of a pain, as it > broke on our userland with mdt files, and since we use both old and > new kernels we had to have both filenames on the disk (via symlink) to > keep it working everywhere. > > My argument in [1] was for new boards, go with the new conventions, > but we should avoid breaking those conventions casually on existing > devices. That said, I know it's more complex, and I graciously defer > to Bjorn and RobC on the decision. > > But your patch above seems to be switching from mbn (what I understand > to be the new convention) to mdt (what I thought was the old way). And > from the git blame, it looks like it was introduced as mbn (new board, > new convention - so all good, right?). > > So is this really the right change? Or maybe just more exposition in > the commit message is needed (rather than pointing to my mail, which > seems to be arguing the opposite) to explain it? We have had a discussion after the email thread and thought it is better approach to stick to mdt format as used downstream and not have confusion and issues resulting from upstream vs downstream Since SM8350 is a new platform, so switching here onwards made sense, hence this patch I should have added more details for this in changelog as well... Thanks -- ~Vinod