From patchwork Thu Sep 22 14:20:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andre Przywara X-Patchwork-Id: 608361 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 6832DC54EE9 for ; Thu, 22 Sep 2022 14:20:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230047AbiIVOUn (ORCPT ); Thu, 22 Sep 2022 10:20:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35782 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230335AbiIVOUl (ORCPT ); Thu, 22 Sep 2022 10:20:41 -0400 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 35FC83055D; Thu, 22 Sep 2022 07:20:38 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7E93C1595; Thu, 22 Sep 2022 07:20:44 -0700 (PDT) Received: from donnerap.arm.com (donnerap.cambridge.arm.com [10.1.197.42]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 6225B3F73B; Thu, 22 Sep 2022 07:20:36 -0700 (PDT) From: Andre Przywara To: Liviu Dudau , Sudeep Holla , Lorenzo Pieralisi , Rob Herring , Grant Likely , Krzysztof Kozlowski Cc: Jean-Philippe Brucker , Pawel Moll , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 0/3] arm64: dts: arm: Fix copyrights and license tags Date: Thu, 22 Sep 2022 15:20:07 +0100 Message-Id: <20220922142010.1412640-1-andre.przywara@arm.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org The usage of license tags and copyrights for the DT files of Arm Ltd. devices was rather incoherent: some didn't carry either at all, some just got a placeholder GPL-2.0 tag, others didn't use SPDX tags, etc. Fix this by harmonising the licences and tags: - Every file gets a SPDX tag, dual licensing with GPL and some BSD compatible license, as it is recommended for DT files. - GPL requires a copyright line, so add Copyright lines to every file as well. The company used (either Arm Ltd. or Linaro) was derived by looking at the domain of the initial contributor. I would like to ask Grant Likely (or someone else from Linaro) to confirm this for Linaro. This was triggered when trying to import kernel DT files into the Trusted Firmware-A repository, so that the DTB can be built into the FIP package. This requires both a BSD compatible license, but also does checks for SPDX tags and Copyright lines in its CI. Cheers, Andre Andre Przywara (3): arm64: dts: arm: unify DT license statements arm64: dts: arm: add copyright messages (Arm Ltd.) arm64: dts: arm: add copyright messages (Linaro) arch/arm64/boot/dts/arm/foundation-v8-gicv2.dtsi | 3 ++- arch/arm64/boot/dts/arm/foundation-v8-gicv3-psci.dts | 3 ++- arch/arm64/boot/dts/arm/foundation-v8-gicv3.dts | 4 ++-- arch/arm64/boot/dts/arm/foundation-v8-gicv3.dtsi | 3 ++- arch/arm64/boot/dts/arm/foundation-v8-psci.dts | 3 ++- arch/arm64/boot/dts/arm/foundation-v8-psci.dtsi | 3 ++- arch/arm64/boot/dts/arm/foundation-v8-spin-table.dtsi | 3 ++- arch/arm64/boot/dts/arm/foundation-v8.dts | 5 ++--- arch/arm64/boot/dts/arm/foundation-v8.dtsi | 4 ++-- arch/arm64/boot/dts/arm/fvp-base-revc.dts | 4 +++- arch/arm64/boot/dts/arm/juno-base.dtsi | 7 ++++++- arch/arm64/boot/dts/arm/juno-clocks.dtsi | 3 +-- arch/arm64/boot/dts/arm/juno-cs-r1r2.dtsi | 7 ++++++- arch/arm64/boot/dts/arm/juno-motherboard.dtsi | 3 +-- arch/arm64/boot/dts/arm/juno-r1-scmi.dts | 6 ++++++ arch/arm64/boot/dts/arm/juno-r1.dts | 3 +-- arch/arm64/boot/dts/arm/juno-r2-scmi.dts | 6 ++++++ arch/arm64/boot/dts/arm/juno-r2.dts | 3 +-- arch/arm64/boot/dts/arm/juno-scmi.dts | 2 ++ arch/arm64/boot/dts/arm/juno-scmi.dtsi | 6 ++++++ arch/arm64/boot/dts/arm/juno.dts | 3 +-- arch/arm64/boot/dts/arm/rtsm_ve-aemv8a.dts | 4 +++- arch/arm64/boot/dts/arm/rtsm_ve-motherboard-rs2.dtsi | 4 +++- arch/arm64/boot/dts/arm/rtsm_ve-motherboard.dtsi | 4 +++- arch/arm64/boot/dts/arm/vexpress-v2f-1xv7-ca53x2.dts | 6 +++--- 25 files changed, 70 insertions(+), 32 deletions(-) Acked-by: Liviu Dudau