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 smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 DE6D1C77B7D for ; Mon, 15 May 2023 00:48:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) id 9337FC433A4; Mon, 15 May 2023 00:48:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 68721C433EF; Mon, 15 May 2023 00:47:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1684111697; bh=1zQxsyUKQuLPlubixvcaK54fF5Gs4vF4eOBUGTEEczw=; h=Date:From:To:List-Id:Cc:Subject:References:In-Reply-To:From; b=sELuOiue+EILxB3fyDU7U+UwWDZjIIVdfOqlkfT6VABDKqGbd7POy7uX2+/lcJrmo +sDAnMBteCnX7oWl6wvVqEruZAM1nQPfI9PBqzFQezVIC5RiOMAZbYco71eU+Aqr1L HXN4WdRS8aY2XcqMjtgGFfuZATwSpTWHBW+Ocoa4iS6gDANZul2z4m+DGHL3Admclm hODKweNFimfJw0TpDsvhPcNQXXpMXsqbL8T7IuZNl+ywTZfAAjd/qqr3kZO6G+3W+G cm3DgYjHOg6GPwCvwE8e99MiJb37iaXqap4ZSMtVON83l4lUsNFcxap6T1VJCcDyDL 0tXbpdAEK6dqA== Date: Mon, 15 May 2023 08:47:44 +0800 From: Shawn Guo To: Rob Herring List-Id: Cc: soc@kernel.org, Christian Marangi , Krzysztof Kozlowski , Russell King , Masahiro Yamada , Andreas =?iso-8859-1?Q?F=E4rber?= , Manivannan Sadhasivam , Sascha Hauer , Fabio Estevam , Antoine Tenart , Neil Armstrong , Kevin Hilman , Jerome Brunet , Martin Blumenstingl , Linus Walleij , Sudeep Holla , Joel Stanley , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , Lars Persson , Scott Branden , Florian Fainelli , Andre Przywara , Baruch Siach , Wei Xu , Jean-Marie Verdun , Nick Hawkins , Maxime Coquelin , Alexandre Torgue , Vladimir Zapolskiy , Andrew Lunn , Gregory Clement , Lubomir Rintel , Matthias Brugger , Peter Rosin , Nancy Yuen , Benjamin Fair , Jonathan =?iso-8859-1?Q?Neusch=E4fer?= , Thierry Reding , Bjorn Andersson , Geert Uytterhoeven , Heiko Stuebner , Daniel Palmer , Romain Perier , Kunihiko Hayashi , Masami Hiramatsu , Viresh Kumar , Shiraz Hashim , Patrice Chotard , Marek Vasut , Qin Jian , Jisheng Zhang , Tony Lindgren , Paul Barker , Bartosz Golaszewski , Nishanth Menon , Santosh Shilimkar , Enric Balletbo i Serra , Javier Martinez Canillas , Michal Simek , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-kernel@axis.com Subject: Re: [PATCH 4/4] ARM: dts: Move .dts files to vendor sub-directories Message-ID: <20230515004744.GA727834@dragon> References: <20230504-arm-dts-mv-v1-0-2c8e51a2b6c4@kernel.org> <20230504-arm-dts-mv-v1-4-2c8e51a2b6c4@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230504-arm-dts-mv-v1-4-2c8e51a2b6c4@kernel.org> On Thu, May 04, 2023 at 10:29:29PM -0500, Rob Herring wrote: > The arm dts directory has grown to 1553 boards which makes it a bit > unwieldy to maintain and use. Past attempts stalled out due to plans to > move .dts files out of the kernel tree. Doing that is no longer planned > (any time soon at least), so let's go ahead and group .dts files by > vendors. This move aligns arm with arm64 .dts file structure. > > Doing this enables building subsets of dts files by vendor easily > without changing kernel configs: > > make allyesconfig > make arch/arm/boot/dts/ti/ > > There's no change to dtbs_install as the flat structure is maintained on > install. > > The naming of vendor directories is roughly in this order of preference: > - Matching original and current SoC vendor prefix/name (e.g. ti, qcom) > - Current vendor prefix/name if still actively sold (SoCs which have > been aquired) (e.g. nxp/imx) > - Existing platform name for older platforms not sold/maintained by any > company (e.g. gemini, nspire) > > The whole move was scripted with the exception of MAINTAINERS. > > Signed-off-by: Rob Herring For i.MX platform: Acked-by: Shawn Guo