[{"id":30157,"web_url":"https://patchwork.libcamera.org/comment/30157/","msgid":"<f7abef78-70e1-4155-a57b-7e4a7d941026@ideasonboard.com>","date":"2024-06-29T06:44:14","subject":"Re: [PATCH v3 2/9] libcamera: mali-c55: Limit ISP input size","submitter":{"id":86,"url":"https://patchwork.libcamera.org/api/people/86/","name":"Umang Jain","email":"umang.jain@ideasonboard.com"},"content":"Hi Jacopo,\n\nThank you for the patch\n\nOn 26/06/24 7:32 pm, Jacopo Mondi wrote:\n> The Mali-C55 ISP has an input size limit of 640x480.\n\ns/input/minimum input/\n\nReviewed-by: Umang Jain <umang.jain@ideasonboard.com>\n>\n> Filter out resolutions smaller than this when selecting the\n> sensor format. While at it, rename 'maxYuvSize' to a more\n> appropriate 'minSensorSize'.\n>\n> Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>\n> ---\n>   src/libcamera/pipeline/mali-c55/mali-c55.cpp | 38 ++++++++++++--------\n>   1 file changed, 23 insertions(+), 15 deletions(-)\n>\n> diff --git a/src/libcamera/pipeline/mali-c55/mali-c55.cpp b/src/libcamera/pipeline/mali-c55/mali-c55.cpp\n> index 1c1fef2337f0..d1ae1a61d5a9 100644\n> --- a/src/libcamera/pipeline/mali-c55/mali-c55.cpp\n> +++ b/src/libcamera/pipeline/mali-c55/mali-c55.cpp\n> @@ -79,6 +79,7 @@ const std::map<libcamera::PixelFormat, unsigned int> maliC55FmtToCode = {\n>   \t{ formats::SGRBG16, MEDIA_BUS_FMT_SGRBG16_1X16 },\n>   };\n>   \n> +constexpr Size kMaliC55MinInputSize = { 640, 480 };\n>   constexpr Size kMaliC55MinSize = { 128, 128 };\n>   constexpr Size kMaliC55MaxSize = { 8192, 8192 };\n>   constexpr unsigned int kMaliC55ISPInternalFormat = MEDIA_BUS_FMT_RGB121212_1X36;\n> @@ -265,13 +266,16 @@ PixelFormat MaliC55CameraData::adjustRawFormat(const PixelFormat &rawFmt) const\n>   \treturn rawFmt;\n>   }\n>   \n> -Size MaliC55CameraData::adjustRawSizes(const PixelFormat &rawFmt, const Size &rawSize) const\n> +Size MaliC55CameraData::adjustRawSizes(const PixelFormat &rawFmt, const Size &size) const\n>   {\n>   \t/* Just make sure the format is supported. */\n>   \tauto it = maliC55FmtToCode.find(rawFmt);\n>   \tif (it == maliC55FmtToCode.end())\n>   \t\treturn {};\n>   \n> +\t/* Expand the RAW size to the minimum ISP input size. */\n> +\tSize rawSize = size.expandedTo(kMaliC55MinInputSize);\n> +\n>   \t/* Check if the size is natively supported. */\n>   \tunsigned int rawCode = it->second;\n>   \tconst auto rawSizes = sizes(rawCode);\n> @@ -282,14 +286,14 @@ Size MaliC55CameraData::adjustRawSizes(const PixelFormat &rawFmt, const Size &ra\n>   \t/* Or adjust it to the closest supported size. */\n>   \tuint16_t distance = std::numeric_limits<uint16_t>::max();\n>   \tSize bestSize;\n> -\tfor (const Size &size : rawSizes) {\n> +\tfor (const Size &sz : rawSizes) {\n>   \t\tuint16_t dist = std::abs(static_cast<int>(rawSize.width) -\n> -\t\t\t\t\t static_cast<int>(size.width)) +\n> +\t\t\t\t\t static_cast<int>(sz.width)) +\n>   \t\t\t\tstd::abs(static_cast<int>(rawSize.height) -\n> -\t\t\t\t\t static_cast<int>(size.height));\n> +\t\t\t\t\t static_cast<int>(sz.height));\n>   \t\tif (dist < distance) {\n>   \t\t\tdist = distance;\n> -\t\t\tbestSize = size;\n> +\t\t\tbestSize = sz;\n>   \t\t}\n>   \t}\n>   \n> @@ -376,8 +380,13 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \t\tfrPipeAvailable = false;\n>   \t}\n>   \n> -\t/* Adjust processed streams. */\n> -\tSize maxYuvSize;\n> +\t/*\n> +\t * Adjust processed streams.\n> +\t *\n> +\t * Compute the minimum sensor size to be later used to select the\n> +\t * sensor configuration.\n> +\t */\n> +\tSize minSensorSize = kMaliC55MinInputSize;\n>   \tfor (StreamConfiguration &config : config_) {\n>   \t\tif (isFormatRaw(config.pixelFormat))\n>   \t\t\tcontinue;\n> @@ -399,8 +408,8 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \t\t\tstatus = Adjusted;\n>   \t\t}\n>   \n> -\t\tif (maxYuvSize < size)\n> -\t\t\tmaxYuvSize = size;\n> +\t\tif (minSensorSize < size)\n> +\t\t\tminSensorSize = size;\n>   \n>   \t\tif (frPipeAvailable) {\n>   \t\t\tconfig.setStream(const_cast<Stream *>(&data_->frStream_));\n> @@ -416,7 +425,7 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \tif (rawConfig) {\n>   \t\tconst auto it = maliC55FmtToCode.find(rawConfig->pixelFormat);\n>   \t\tsensorFormat_.code = it->second;\n> -\t\tsensorFormat_.size = rawConfig->size;\n> +\t\tsensorFormat_.size = rawConfig->size.expandedTo(minSensorSize);\n>   \n>   \t\treturn status;\n>   \t}\n> @@ -430,14 +439,13 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \tconst auto sizes = data_->sizes(it->second);\n>   \tSize bestSize;\n>   \tfor (const auto &size : sizes) {\n> -\t\t/* Skip sensor sizes that are smaller than the max YUV size. */\n> -\t\tif (maxYuvSize.width > size.width ||\n> -\t\t    maxYuvSize.height > size.height)\n> +\t\tif (minSensorSize.width > size.width ||\n> +\t\t    minSensorSize.height > size.height)\n>   \t\t\tcontinue;\n>   \n> -\t\tuint16_t dist = std::abs(static_cast<int>(maxYuvSize.width) -\n> +\t\tuint16_t dist = std::abs(static_cast<int>(minSensorSize.width) -\n>   \t\t\t\t\t static_cast<int>(size.width)) +\n> -\t\t\t\tstd::abs(static_cast<int>(maxYuvSize.height) -\n> +\t\t\t\tstd::abs(static_cast<int>(minSensorSize.height) -\n>   \t\t\t\t\t static_cast<int>(size.height));\n>   \t\tif (dist < distance) {\n>   \t\t\tdist = distance;","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 54BE0BD87C\n\tfor <parsemail@patchwork.libcamera.org>;\n\tSat, 29 Jun 2024 06:44:22 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 7017B62C99;\n\tSat, 29 Jun 2024 08:44:21 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[213.167.242.64])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 2C1C6619C7\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSat, 29 Jun 2024 08:44:20 +0200 (CEST)","from [IPV6:2405:201:2015:f873:55d7:c02e:b2eb:ee3f] (unknown\n\t[IPv6:2405:201:2015:f873:55d7:c02e:b2eb:ee3f])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 5CC664B0;\n\tSat, 29 Jun 2024 08:43:54 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"AMHmKNMk\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1719643435;\n\tbh=tLmfEucmPr1tWOFsr2WPRih2mYN2ScIFjqFbTxZe+sU=;\n\th=Date:Subject:To:References:From:In-Reply-To:From;\n\tb=AMHmKNMkB27yR/aTXNreU5GaAZQ4TXEoa88pVIpWn7N/dlDUccc56FladpA+EHNa5\n\tBms1EetupbTzThZvt8sRuJR7OLjX+5o70hAbp7w4lVb4iPhzNNKZrXRgq/5PRiw/+Y\n\tZvBrel7YLooJfdO84gQy3vTc21TDnrzWX35ZvHbc=","Message-ID":"<f7abef78-70e1-4155-a57b-7e4a7d941026@ideasonboard.com>","Date":"Sat, 29 Jun 2024 12:14:14 +0530","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH v3 2/9] libcamera: mali-c55: Limit ISP input size","Content-Language":"en-US","To":"Jacopo Mondi <jacopo.mondi@ideasonboard.com>,\n\tlibcamera-devel@lists.libcamera.org","References":"<20240626140309.50052-1-jacopo.mondi@ideasonboard.com>\n\t<20240626140309.50052-3-jacopo.mondi@ideasonboard.com>","From":"Umang Jain <umang.jain@ideasonboard.com>","In-Reply-To":"<20240626140309.50052-3-jacopo.mondi@ideasonboard.com>","Content-Type":"text/plain; charset=UTF-8; format=flowed","Content-Transfer-Encoding":"7bit","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}},{"id":30377,"web_url":"https://patchwork.libcamera.org/comment/30377/","msgid":"<99affa51-878f-4146-b98d-469e5bdd6d79@ideasonboard.com>","date":"2024-07-08T11:40:12","subject":"Re: [PATCH v3 2/9] libcamera: mali-c55: Limit ISP input size","submitter":{"id":156,"url":"https://patchwork.libcamera.org/api/people/156/","name":"Dan Scally","email":"dan.scally@ideasonboard.com"},"content":"Hi Jacopo\n\nOn 26/06/2024 15:02, Jacopo Mondi wrote:\n> The Mali-C55 ISP has an input size limit of 640x480.\n>\n> Filter out resolutions smaller than this when selecting the\n> sensor format. While at it, rename 'maxYuvSize' to a more\n> appropriate 'minSensorSize'.\n>\n> Signed-off-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>\n> ---\n\nReviewed-by: Daniel Scally <dan.scally@ideasonboard.com>\n>   src/libcamera/pipeline/mali-c55/mali-c55.cpp | 38 ++++++++++++--------\n>   1 file changed, 23 insertions(+), 15 deletions(-)\n>\n> diff --git a/src/libcamera/pipeline/mali-c55/mali-c55.cpp b/src/libcamera/pipeline/mali-c55/mali-c55.cpp\n> index 1c1fef2337f0..d1ae1a61d5a9 100644\n> --- a/src/libcamera/pipeline/mali-c55/mali-c55.cpp\n> +++ b/src/libcamera/pipeline/mali-c55/mali-c55.cpp\n> @@ -79,6 +79,7 @@ const std::map<libcamera::PixelFormat, unsigned int> maliC55FmtToCode = {\n>   \t{ formats::SGRBG16, MEDIA_BUS_FMT_SGRBG16_1X16 },\n>   };\n>   \n> +constexpr Size kMaliC55MinInputSize = { 640, 480 };\n>   constexpr Size kMaliC55MinSize = { 128, 128 };\n>   constexpr Size kMaliC55MaxSize = { 8192, 8192 };\n>   constexpr unsigned int kMaliC55ISPInternalFormat = MEDIA_BUS_FMT_RGB121212_1X36;\n> @@ -265,13 +266,16 @@ PixelFormat MaliC55CameraData::adjustRawFormat(const PixelFormat &rawFmt) const\n>   \treturn rawFmt;\n>   }\n>   \n> -Size MaliC55CameraData::adjustRawSizes(const PixelFormat &rawFmt, const Size &rawSize) const\n> +Size MaliC55CameraData::adjustRawSizes(const PixelFormat &rawFmt, const Size &size) const\n>   {\n>   \t/* Just make sure the format is supported. */\n>   \tauto it = maliC55FmtToCode.find(rawFmt);\n>   \tif (it == maliC55FmtToCode.end())\n>   \t\treturn {};\n>   \n> +\t/* Expand the RAW size to the minimum ISP input size. */\n> +\tSize rawSize = size.expandedTo(kMaliC55MinInputSize);\n> +\n>   \t/* Check if the size is natively supported. */\n>   \tunsigned int rawCode = it->second;\n>   \tconst auto rawSizes = sizes(rawCode);\n> @@ -282,14 +286,14 @@ Size MaliC55CameraData::adjustRawSizes(const PixelFormat &rawFmt, const Size &ra\n>   \t/* Or adjust it to the closest supported size. */\n>   \tuint16_t distance = std::numeric_limits<uint16_t>::max();\n>   \tSize bestSize;\n> -\tfor (const Size &size : rawSizes) {\n> +\tfor (const Size &sz : rawSizes) {\n>   \t\tuint16_t dist = std::abs(static_cast<int>(rawSize.width) -\n> -\t\t\t\t\t static_cast<int>(size.width)) +\n> +\t\t\t\t\t static_cast<int>(sz.width)) +\n>   \t\t\t\tstd::abs(static_cast<int>(rawSize.height) -\n> -\t\t\t\t\t static_cast<int>(size.height));\n> +\t\t\t\t\t static_cast<int>(sz.height));\n>   \t\tif (dist < distance) {\n>   \t\t\tdist = distance;\n> -\t\t\tbestSize = size;\n> +\t\t\tbestSize = sz;\n>   \t\t}\n>   \t}\n>   \n> @@ -376,8 +380,13 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \t\tfrPipeAvailable = false;\n>   \t}\n>   \n> -\t/* Adjust processed streams. */\n> -\tSize maxYuvSize;\n> +\t/*\n> +\t * Adjust processed streams.\n> +\t *\n> +\t * Compute the minimum sensor size to be later used to select the\n> +\t * sensor configuration.\n> +\t */\n> +\tSize minSensorSize = kMaliC55MinInputSize;\n>   \tfor (StreamConfiguration &config : config_) {\n>   \t\tif (isFormatRaw(config.pixelFormat))\n>   \t\t\tcontinue;\n> @@ -399,8 +408,8 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \t\t\tstatus = Adjusted;\n>   \t\t}\n>   \n> -\t\tif (maxYuvSize < size)\n> -\t\t\tmaxYuvSize = size;\n> +\t\tif (minSensorSize < size)\n> +\t\t\tminSensorSize = size;\n>   \n>   \t\tif (frPipeAvailable) {\n>   \t\t\tconfig.setStream(const_cast<Stream *>(&data_->frStream_));\n> @@ -416,7 +425,7 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \tif (rawConfig) {\n>   \t\tconst auto it = maliC55FmtToCode.find(rawConfig->pixelFormat);\n>   \t\tsensorFormat_.code = it->second;\n> -\t\tsensorFormat_.size = rawConfig->size;\n> +\t\tsensorFormat_.size = rawConfig->size.expandedTo(minSensorSize);\n>   \n>   \t\treturn status;\n>   \t}\n> @@ -430,14 +439,13 @@ CameraConfiguration::Status MaliC55CameraConfiguration::validate()\n>   \tconst auto sizes = data_->sizes(it->second);\n>   \tSize bestSize;\n>   \tfor (const auto &size : sizes) {\n> -\t\t/* Skip sensor sizes that are smaller than the max YUV size. */\n> -\t\tif (maxYuvSize.width > size.width ||\n> -\t\t    maxYuvSize.height > size.height)\n> +\t\tif (minSensorSize.width > size.width ||\n> +\t\t    minSensorSize.height > size.height)\n>   \t\t\tcontinue;\n>   \n> -\t\tuint16_t dist = std::abs(static_cast<int>(maxYuvSize.width) -\n> +\t\tuint16_t dist = std::abs(static_cast<int>(minSensorSize.width) -\n>   \t\t\t\t\t static_cast<int>(size.width)) +\n> -\t\t\t\tstd::abs(static_cast<int>(maxYuvSize.height) -\n> +\t\t\t\tstd::abs(static_cast<int>(minSensorSize.height) -\n>   \t\t\t\t\t static_cast<int>(size.height));\n>   \t\tif (dist < distance) {\n>   \t\t\tdist = distance;","headers":{"Return-Path":"<libcamera-devel-bounces@lists.libcamera.org>","X-Original-To":"parsemail@patchwork.libcamera.org","Delivered-To":"parsemail@patchwork.libcamera.org","Received":["from lancelot.ideasonboard.com (lancelot.ideasonboard.com\n\t[92.243.16.209])\n\tby patchwork.libcamera.org (Postfix) with ESMTPS id 899EFBDB1C\n\tfor <parsemail@patchwork.libcamera.org>;\n\tMon,  8 Jul 2024 11:40:18 +0000 (UTC)","from lancelot.ideasonboard.com (localhost [IPv6:::1])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTP id 2F95363365;\n\tMon,  8 Jul 2024 13:40:17 +0200 (CEST)","from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id E1A01619C1\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon,  8 Jul 2024 13:40:14 +0200 (CEST)","from [192.168.0.43]\n\t(cpc141996-chfd3-2-0-cust928.12-3.cable.virginm.net [86.13.91.161])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 3897DBD1\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tMon,  8 Jul 2024 13:39:43 +0200 (CEST)"],"Authentication-Results":"lancelot.ideasonboard.com; dkim=pass (1024-bit key;\n\tunprotected) header.d=ideasonboard.com header.i=@ideasonboard.com\n\theader.b=\"FPhL94IE\"; dkim-atps=neutral","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1720438783;\n\tbh=2xOGPApupsTxXvBVywJB4Fii9mCedZUg5rNbDY5aGNo=;\n\th=Date:Subject:To:References:From:In-Reply-To:From;\n\tb=FPhL94IEe77HG9ltOyC7voVFpCzEJ6557aZIfcpSVokn5c1lri9UJGyAia+YBUAiA\n\t2/Zp6O+xNbf1umg8Qu/7m5TrLPRvLO9vcKv1VuNJkr5faKleZTlO4VTQk1m0vL+GdZ\n\t00DEu5GTKBX68fGe2SYIBtDUm5XM8GK8wXL4Wdl0=","Message-ID":"<99affa51-878f-4146-b98d-469e5bdd6d79@ideasonboard.com>","Date":"Mon, 8 Jul 2024 12:40:12 +0100","MIME-Version":"1.0","User-Agent":"Mozilla Thunderbird","Subject":"Re: [PATCH v3 2/9] libcamera: mali-c55: Limit ISP input size","To":"libcamera-devel@lists.libcamera.org","References":"<20240626140309.50052-1-jacopo.mondi@ideasonboard.com>\n\t<20240626140309.50052-3-jacopo.mondi@ideasonboard.com>","Content-Language":"en-US","From":"Dan Scally <dan.scally@ideasonboard.com>","Autocrypt":"addr=dan.scally@ideasonboard.com; keydata=\n\t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","In-Reply-To":"<20240626140309.50052-3-jacopo.mondi@ideasonboard.com>","Content-Type":"text/plain; charset=UTF-8; format=flowed","Content-Transfer-Encoding":"7bit","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.29","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","Errors-To":"libcamera-devel-bounces@lists.libcamera.org","Sender":"\"libcamera-devel\" <libcamera-devel-bounces@lists.libcamera.org>"}}]