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 7373FEE3F34 for ; Mon, 11 Sep 2023 20:53:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233977AbjIKUwi (ORCPT ); Mon, 11 Sep 2023 16:52:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56624 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243171AbjIKQ4S (ORCPT ); Mon, 11 Sep 2023 12:56:18 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CD00A110; Mon, 11 Sep 2023 09:56:13 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 498D4C433C8; Mon, 11 Sep 2023 16:56:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1694451373; bh=Y7SJ+v7BXjVozGwx+J8uyS7CcVLahIvWjaQ730vSWCo=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=hIs7H5J9qh+/vQZbRcQkkGuUsmwRuh9CHhEDotPRKQRi7T+p5N+zf27CipLkU0/Z/ uuAXzJD/UPFsuwR/ST29vQrmzllHup7naqD3R0o6mwk4/CPzT8TbuyhQG/6ES2V6XQ TyKpvt2tGFWrxchhVT9qShnFTNpvh95bB5/ts10iELKiYRpeV9RIM4TIuVcszjPGZa taYCGN7GORziAu2dBKOQ982XEObI+qsiNhssp1xCYw0rIq+YBSFcg2Umdpht28mMfZ 5MeNR53CEPfmHSJmneJsoQPnRxvNWy1+reAqFSnwJg8H5hapBD1tAxLvUgkueCrc3h Aze/zavd44OzQ== Received: (nullmailer pid 1367058 invoked by uid 1000); Mon, 11 Sep 2023 16:56:10 -0000 Date: Mon, 11 Sep 2023 11:56:10 -0500 From: Rob Herring To: Siddharth Vadapalli Cc: nm@ti.com, vigneshr@ti.com, kristo@kernel.org, krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, r-gunasekaran@ti.com, srk@ti.com Subject: Re: [PATCH] arm64: dts: ti: k3-j721s2-evm-gesi: Specify base dtb for overlay file Message-ID: <20230911165610.GA1362932-robh@kernel.org> References: <20230911052158.89185-1-s-vadapalli@ti.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230911052158.89185-1-s-vadapalli@ti.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Mon, Sep 11, 2023 at 10:51:58AM +0530, Siddharth Vadapalli wrote: > Specify the base dtb file k3-j721s2-common-proc-board.dtb on which the > k3-j721s2-evm-gesi-exp-board.dtbo overlay has to be applied. Name the > resulting dtb as k3-j721s2-evm.dtb. > > Fixes: cac04e27f093 ("arm64: dts: ti: k3-j721s2: Add overlay to enable main CPSW2G with GESI") > Reported-by: Rob Herring > Signed-off-by: Siddharth Vadapalli > --- > > Note: This patch is based on linux-next tagged next-20230911. > > arch/arm64/boot/dts/ti/Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/ti/Makefile b/arch/arm64/boot/dts/ti/Makefile > index e7b8e2e7f083..ef8ca50fbb36 100644 > --- a/arch/arm64/boot/dts/ti/Makefile > +++ b/arch/arm64/boot/dts/ti/Makefile > @@ -63,9 +63,9 @@ dtb-$(CONFIG_ARCH_K3) += k3-j721e-evm-gesi-exp-board.dtbo > dtb-$(CONFIG_ARCH_K3) += k3-j721e-sk.dtb > > # Boards with J721s2 SoC > +k3-j721s2-evm-dtbs := k3-j721s2-common-proc-board.dtb k3-j721s2-evm-gesi-exp-board.dtbo Move this next to the "dtb-$(CONFIG_ARCH_K3) += k3-j721s2-evm.dtb" line. > dtb-$(CONFIG_ARCH_K3) += k3-am68-sk-base-board.dtb > -dtb-$(CONFIG_ARCH_K3) += k3-j721s2-common-proc-board.dtb > -dtb-$(CONFIG_ARCH_K3) += k3-j721s2-evm-gesi-exp-board.dtbo I think dropping these will cause them to not get installed (by dtbs_install). Presumably you want them. > +dtb-$(CONFIG_ARCH_K3) += k3-j721s2-evm.dtb > > # Boards with J784s4 SoC > dtb-$(CONFIG_ARCH_K3) += k3-am69-sk.dtb > -- > 2.34.1 >