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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 698D2C433FE for ; Thu, 11 Nov 2021 17:28:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4F5BF619BB for ; Thu, 11 Nov 2021 17:28:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234392AbhKKRa6 (ORCPT ); Thu, 11 Nov 2021 12:30:58 -0500 Received: from mail.kernel.org ([198.145.29.99]:47818 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234321AbhKKRaw (ORCPT ); Thu, 11 Nov 2021 12:30:52 -0500 Received: by mail.kernel.org (Postfix) with ESMTPSA id D5C38610A2; Thu, 11 Nov 2021 17:28:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636651682; bh=fVWeNM/EkROzLgkEOagtV1bVZ4cBFHPDPoXfH7hX2iE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=b04t9yWlvJRuOR91Dqy359Zxx3vihLWJzeIBHsSbeg+Q39SAljOBx/QChJXlpPB0i mOaKnn/3dTdDHtrleoX6tiSsi6FCuRq0NSR+s0SRSAG8JTlTehqyYfrfpbydYbzhJm NGS5Yi7MrO+9eaNKrti9ah36DOsgu/+EZuN0TEd2YtaXzoj52ZAWFf9D5aYCc83vfc PUeNoQP7+leSt37f9GQrMBWR+Bp6tNV+iRbENPMuufvFhERqmbXCFNxQnmA/uPV92a CCRPylP0ehjme0bt1CAemgW943hA6pgRRr3s5t1KYFm3H1F/64hR6KmZvlDOcwR6FK 011h452aw0QDw== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1mlDrk-0001of-0C; Thu, 11 Nov 2021 17:28:00 +0000 From: Mauro Carvalho Chehab Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , Bhaskar Chowdhury , Deepak R Varma , Greg Kroah-Hartman , Hans Verkuil , Hans de Goede , Mauro Carvalho Chehab , Randy Dunlap , Sakari Ailus , linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linux-staging@lists.linux.dev Subject: [PATCH 2/3] media: atomisp-ov2680: adjust the maximum frame rate Date: Thu, 11 Nov 2021 17:27:57 +0000 Message-Id: X-Mailer: git-send-email 2.33.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The ov2680 supports a maximum bandwidth of 660Mbps and allows up to 60fps when the resolution is below 720p. Adjust the sensor's table to reflect that. Signed-off-by: Mauro Carvalho Chehab --- See [PATCH 0/3] at: https://lore.kernel.org/all/cover.1636651027.git.mchehab+huawei@kernel.org/ drivers/staging/media/atomisp/i2c/ov2680.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/media/atomisp/i2c/ov2680.h b/drivers/staging/media/atomisp/i2c/ov2680.h index cb3c37d1c38e..4e351196fe34 100644 --- a/drivers/staging/media/atomisp/i2c/ov2680.h +++ b/drivers/staging/media/atomisp/i2c/ov2680.h @@ -822,7 +822,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 1280, .height = 720, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -835,7 +835,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 800, .height = 600, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -848,7 +848,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 720, .height = 592, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -861,7 +861,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 656, .height = 496, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -874,7 +874,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 336, .height = 256, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -887,7 +887,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 352, .height = 288, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -900,7 +900,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 176, .height = 144, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, -- 2.33.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 444352C80 for ; Thu, 11 Nov 2021 17:28:03 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id D5C38610A2; Thu, 11 Nov 2021 17:28:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1636651682; bh=fVWeNM/EkROzLgkEOagtV1bVZ4cBFHPDPoXfH7hX2iE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=b04t9yWlvJRuOR91Dqy359Zxx3vihLWJzeIBHsSbeg+Q39SAljOBx/QChJXlpPB0i mOaKnn/3dTdDHtrleoX6tiSsi6FCuRq0NSR+s0SRSAG8JTlTehqyYfrfpbydYbzhJm NGS5Yi7MrO+9eaNKrti9ah36DOsgu/+EZuN0TEd2YtaXzoj52ZAWFf9D5aYCc83vfc PUeNoQP7+leSt37f9GQrMBWR+Bp6tNV+iRbENPMuufvFhERqmbXCFNxQnmA/uPV92a CCRPylP0ehjme0bt1CAemgW943hA6pgRRr3s5t1KYFm3H1F/64hR6KmZvlDOcwR6FK 011h452aw0QDw== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1mlDrk-0001of-0C; Thu, 11 Nov 2021 17:28:00 +0000 From: Mauro Carvalho Chehab To: Cc: linuxarm@huawei.com, mauro.chehab@huawei.com, Mauro Carvalho Chehab , Bhaskar Chowdhury , Deepak R Varma , Greg Kroah-Hartman , Hans Verkuil , Hans de Goede , Mauro Carvalho Chehab , Randy Dunlap , Sakari Ailus , linux-kernel@vger.kernel.org, linux-media@vger.kernel.org, linux-staging@lists.linux.dev Subject: [PATCH 2/3] media: atomisp-ov2680: adjust the maximum frame rate Date: Thu, 11 Nov 2021 17:27:57 +0000 Message-Id: X-Mailer: git-send-email 2.33.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab The ov2680 supports a maximum bandwidth of 660Mbps and allows up to 60fps when the resolution is below 720p. Adjust the sensor's table to reflect that. Signed-off-by: Mauro Carvalho Chehab --- See [PATCH 0/3] at: https://lore.kernel.org/all/cover.1636651027.git.mchehab+huawei@kernel.org/ drivers/staging/media/atomisp/i2c/ov2680.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/media/atomisp/i2c/ov2680.h b/drivers/staging/media/atomisp/i2c/ov2680.h index cb3c37d1c38e..4e351196fe34 100644 --- a/drivers/staging/media/atomisp/i2c/ov2680.h +++ b/drivers/staging/media/atomisp/i2c/ov2680.h @@ -822,7 +822,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 1280, .height = 720, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -835,7 +835,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 800, .height = 600, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -848,7 +848,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 720, .height = 592, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -861,7 +861,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 656, .height = 496, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -874,7 +874,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 336, .height = 256, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -887,7 +887,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 352, .height = 288, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, @@ -900,7 +900,7 @@ static struct ov2680_resolution ov2680_res_preview[] = { { .width = 176, .height = 144, - .fps = 30, + .fps = 60, .pix_clk_freq = 66, .pixels_per_line = 1698,//1704, .lines_per_frame = 1294, -- 2.33.1