From patchwork Sun Apr 5 19:14:42 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 26426 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 2D108C32BB for ; Sun, 5 Apr 2026 19:15:05 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id D11D162D95; Sun, 5 Apr 2026 21:15:04 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="bGO9nEI/"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9BBC362D85 for ; Sun, 5 Apr 2026 21:15:01 +0200 (CEST) Received: from killaraus.ideasonboard.com (2001-14ba-703d-e500--2a1.rev.dnainternet.fi [IPv6:2001:14ba:703d:e500::2a1]) by perceval.ideasonboard.com (Postfix) with UTF8SMTPSA id 6A6CB1988 for ; Sun, 5 Apr 2026 21:13:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1775416415; bh=vWsA1tHJXaZ1OhaKvINtC9qr9osvAbLBcIvyYxHbaZo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=bGO9nEI/ZcyXTFI8HnAPcpODKaKJhTR7daWgTvnHhWkPqXQIM8ip6Sr+DIIU/isME 7MbJBAIVKTy3a9p1HySm97CEpa1owvk/WAO6VCwOQPoqxmZ9a5Ed/PbVFkRSx+HiKQ YvlnIR89Yf+6YL4TXIgRxaI8K6CuvotVzg6ZjOQw= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Subject: [PATCH 10/11] libcamera: rpi: Add missing SPDX headers Date: Sun, 5 Apr 2026 22:14:42 +0300 Message-ID: <20260405191443.1209948-11-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260405191443.1209948-1-laurent.pinchart@ideasonboard.com> References: <20260405191443.1209948-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Multiple files in the Raspberry Pi pipeline handler and IPA module are missing SPDX headers. Add them with the following licenses: - For code and documentation, use the BSD-2-Clause license, as for the rest of the Raspberry Pi code. - For the example pipeline handler configuration files, use the CC0-1.0 license to facilitate their usage. Signed-off-by: Laurent Pinchart --- src/ipa/rpi/controller/decompand_status.h | 1 + src/ipa/rpi/controller/rpi/decompand.cpp | 2 ++ src/ipa/rpi/controller/rpi/decompand.h | 1 + src/libcamera/pipeline/rpi/pisp/data/example.yaml | 1 + src/libcamera/pipeline/rpi/vc4/data/example.yaml | 1 + utils/raspberrypi/ctt/README.md | 2 ++ 6 files changed, 8 insertions(+) diff --git a/src/ipa/rpi/controller/decompand_status.h b/src/ipa/rpi/controller/decompand_status.h index 2d9888dca4f3..d024fe71936d 100644 --- a/src/ipa/rpi/controller/decompand_status.h +++ b/src/ipa/rpi/controller/decompand_status.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "libipa/pwl.h" diff --git a/src/ipa/rpi/controller/rpi/decompand.cpp b/src/ipa/rpi/controller/rpi/decompand.cpp index 2d457926c060..b93e5c0b1974 100644 --- a/src/ipa/rpi/controller/rpi/decompand.cpp +++ b/src/ipa/rpi/controller/rpi/decompand.cpp @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ + #include "decompand.h" #include diff --git a/src/ipa/rpi/controller/rpi/decompand.h b/src/ipa/rpi/controller/rpi/decompand.h index 6db779c359a8..fdb4d733adda 100644 --- a/src/ipa/rpi/controller/rpi/decompand.h +++ b/src/ipa/rpi/controller/rpi/decompand.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include diff --git a/src/libcamera/pipeline/rpi/pisp/data/example.yaml b/src/libcamera/pipeline/rpi/pisp/data/example.yaml index c5edbba074e8..4b0742452cf1 100644 --- a/src/libcamera/pipeline/rpi/pisp/data/example.yaml +++ b/src/libcamera/pipeline/rpi/pisp/data/example.yaml @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: CC0-1.0 { "version": 1.0, "target": "pisp", diff --git a/src/libcamera/pipeline/rpi/vc4/data/example.yaml b/src/libcamera/pipeline/rpi/vc4/data/example.yaml index 2ee2b864d55f..9e8d0fdb225f 100644 --- a/src/libcamera/pipeline/rpi/vc4/data/example.yaml +++ b/src/libcamera/pipeline/rpi/vc4/data/example.yaml @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: CC0-1.0 { "version": 1.0, "target": "bcm2835", diff --git a/utils/raspberrypi/ctt/README.md b/utils/raspberrypi/ctt/README.md index c3a738ad01ad..aa78274667b6 100644 --- a/utils/raspberrypi/ctt/README.md +++ b/utils/raspberrypi/ctt/README.md @@ -1,3 +1,5 @@ +.. SPDX-License-Identifier: BSD-2-Clause + The Raspberry Pi CTT has moved from this location to the following GitHub repository: