[libcamera-devel,2/2] ipa: rkisp1: Update to kernel header changes
diff mbox series

Message ID 20210302201603.21566-3-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • libcamera: Update kernel headers to v5.12-rc1
Related show

Commit Message

Laurent Pinchart March 2, 2021, 8:16 p.m. UTC
The rkisp1 driver has received support for newer ISP versions, which
changes its userspace API and ABI. Adapt to the API change. This
requires kernel v5.11 or newer, or backporting the corresponding rkisp1
changes to older kernels.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 src/ipa/rkisp1/rkisp1.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Dafna Hirschfeld March 3, 2021, 2:39 p.m. UTC | #1
Hi,

On 02.03.21 21:16, Laurent Pinchart wrote:
> The rkisp1 driver has received support for newer ISP versions, which
> changes its userspace API and ABI. Adapt to the API change. This
> requires kernel v5.11 or newer, or backporting the corresponding rkisp1
> changes to older kernels.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Reviewed-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>

> ---
>   src/ipa/rkisp1/rkisp1.cpp | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
> index 67bac986aff7..f11aeb40cb05 100644
> --- a/src/ipa/rkisp1/rkisp1.cpp
> +++ b/src/ipa/rkisp1/rkisp1.cpp
> @@ -216,7 +216,7 @@ void IPARkISP1::updateStatistics(unsigned int frame,
>   
>   		unsigned int value = 0;
>   		unsigned int num = 0;
> -		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX; i++) {
> +		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX_V10; i++) {
>   			if (ae->exp_mean[i] <= 15)
>   				continue;
>   
>
Kieran Bingham March 3, 2021, 4:32 p.m. UTC | #2
Hi Laurent,

On 02/03/2021 20:16, Laurent Pinchart wrote:
> The rkisp1 driver has received support for newer ISP versions, which
> changes its userspace API and ABI. Adapt to the API change. This
> requires kernel v5.11 or newer, or backporting the corresponding rkisp1
> changes to older kernels.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

Does this still compile with 1/2 applied? Or does it need to be squashed
down?

Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

> ---
>  src/ipa/rkisp1/rkisp1.cpp | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
> index 67bac986aff7..f11aeb40cb05 100644
> --- a/src/ipa/rkisp1/rkisp1.cpp
> +++ b/src/ipa/rkisp1/rkisp1.cpp
> @@ -216,7 +216,7 @@ void IPARkISP1::updateStatistics(unsigned int frame,
>  
>  		unsigned int value = 0;
>  		unsigned int num = 0;
> -		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX; i++) {
> +		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX_V10; i++) {
>  			if (ae->exp_mean[i] <= 15)
>  				continue;
>  
>
Laurent Pinchart March 3, 2021, 4:35 p.m. UTC | #3
Hi Kieran,

On Wed, Mar 03, 2021 at 04:32:59PM +0000, Kieran Bingham wrote:
> On 02/03/2021 20:16, Laurent Pinchart wrote:
> > The rkisp1 driver has received support for newer ISP versions, which
> > changes its userspace API and ABI. Adapt to the API change. This
> > requires kernel v5.11 or newer, or backporting the corresponding rkisp1
> > changes to older kernels.
> > 
> > Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> 
> Does this still compile with 1/2 applied? Or does it need to be squashed
> down?

I assume you mean with 1/2 but without 2/2. It will compile, but won't
handle the stats properly in the IPA.

> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
> 
> > ---
> >  src/ipa/rkisp1/rkisp1.cpp | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
> > index 67bac986aff7..f11aeb40cb05 100644
> > --- a/src/ipa/rkisp1/rkisp1.cpp
> > +++ b/src/ipa/rkisp1/rkisp1.cpp
> > @@ -216,7 +216,7 @@ void IPARkISP1::updateStatistics(unsigned int frame,
> >  
> >  		unsigned int value = 0;
> >  		unsigned int num = 0;
> > -		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX; i++) {
> > +		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX_V10; i++) {
> >  			if (ae->exp_mean[i] <= 15)
> >  				continue;
> >
Kieran Bingham March 3, 2021, 4:37 p.m. UTC | #4
On 03/03/2021 16:35, Laurent Pinchart wrote:
> Hi Kieran,
> 
> On Wed, Mar 03, 2021 at 04:32:59PM +0000, Kieran Bingham wrote:
>> On 02/03/2021 20:16, Laurent Pinchart wrote:
>>> The rkisp1 driver has received support for newer ISP versions, which
>>> changes its userspace API and ABI. Adapt to the API change. This
>>> requires kernel v5.11 or newer, or backporting the corresponding rkisp1
>>> changes to older kernels.
>>>
>>> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>>
>> Does this still compile with 1/2 applied? Or does it need to be squashed
>> down?
> 
> I assume you mean with 1/2 but without 2/2. It will compile, but won't
> handle the stats properly in the IPA.

That's fine, keep it separate then ;-)

> 
>> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
>>
>>> ---
>>>  src/ipa/rkisp1/rkisp1.cpp | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
>>> index 67bac986aff7..f11aeb40cb05 100644
>>> --- a/src/ipa/rkisp1/rkisp1.cpp
>>> +++ b/src/ipa/rkisp1/rkisp1.cpp
>>> @@ -216,7 +216,7 @@ void IPARkISP1::updateStatistics(unsigned int frame,
>>>  
>>>  		unsigned int value = 0;
>>>  		unsigned int num = 0;
>>> -		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX; i++) {
>>> +		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX_V10; i++) {
>>>  			if (ae->exp_mean[i] <= 15)
>>>  				continue;
>>>  
>

Patch
diff mbox series

diff --git a/src/ipa/rkisp1/rkisp1.cpp b/src/ipa/rkisp1/rkisp1.cpp
index 67bac986aff7..f11aeb40cb05 100644
--- a/src/ipa/rkisp1/rkisp1.cpp
+++ b/src/ipa/rkisp1/rkisp1.cpp
@@ -216,7 +216,7 @@  void IPARkISP1::updateStatistics(unsigned int frame,
 
 		unsigned int value = 0;
 		unsigned int num = 0;
-		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX; i++) {
+		for (int i = 0; i < RKISP1_CIF_ISP_AE_MEAN_MAX_V10; i++) {
 			if (ae->exp_mean[i] <= 15)
 				continue;