meson: Enable simple pipeline handler on all platforms by default
diff mbox series

Message ID 20240730220253.646-1-laurent.pinchart@ideasonboard.com
State Accepted
Commit 98b01768397f982bd177b55e9bc67002b645b4d0
Headers show
Series
  • meson: Enable simple pipeline handler on all platforms by default
Related show

Commit Message

Laurent Pinchart July 30, 2024, 10:02 p.m. UTC
The simple pipeline handler is enabled by default on arm platforms only,
as it used to support arm SoCs only. Now that support for the IPU6 has
been added to the pipeline handler, it should be enabled on x86
platforms as well. Fix it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: c9152bad5ce905f5a31dbd05b40195f02c0cc2a9

Comments

Javier Martinez Canillas July 30, 2024, 10:10 p.m. UTC | #1
Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:

Hello Laurent,

> The simple pipeline handler is enabled by default on arm platforms only,
> as it used to support arm SoCs only. Now that support for the IPU6 has
> been added to the pipeline handler, it should be enabled on x86
> platforms as well. Fix it.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---

Indeed.

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Laurent Pinchart July 30, 2024, 10:17 p.m. UTC | #2
On Wed, Jul 31, 2024 at 12:10:59AM +0200, Javier Martinez Canillas wrote:
> Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:
> 
> Hello Laurent,
> 
> > The simple pipeline handler is enabled by default on arm platforms only,
> > as it used to support arm SoCs only. Now that support for the IPU6 has
> > been added to the pipeline handler, it should be enabled on x86
> > platforms as well. Fix it.
> >
> > Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > ---
> 
> Indeed.
> 
> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>

I will also add

Fixes: 06e0d8508e5c ("libcamera: pipeline: simple: Enable intel-ipu6 with Soft ISP")
Kieran Bingham July 31, 2024, 9:17 a.m. UTC | #3
Quoting Laurent Pinchart (2024-07-30 23:17:49)
> On Wed, Jul 31, 2024 at 12:10:59AM +0200, Javier Martinez Canillas wrote:
> > Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:
> > 
> > Hello Laurent,
> > 
> > > The simple pipeline handler is enabled by default on arm platforms only,
> > > as it used to support arm SoCs only. Now that support for the IPU6 has
> > > been added to the pipeline handler, it should be enabled on x86
> > > platforms as well. Fix it.
> > >
> > > Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> > > ---
> > 
> > Indeed.
> > 
> > Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
> 
> I will also add
> 
> Fixes: 06e0d8508e5c ("libcamera: pipeline: simple: Enable intel-ipu6 with Soft ISP")


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

> 
> -- 
> Regards,
> 
> Laurent Pinchart
Hans de Goede July 31, 2024, 9:23 a.m. UTC | #4
Hi,

On 7/31/24 12:17 AM, Laurent Pinchart wrote:
> On Wed, Jul 31, 2024 at 12:10:59AM +0200, Javier Martinez Canillas wrote:
>> Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:
>>
>> Hello Laurent,
>>
>>> The simple pipeline handler is enabled by default on arm platforms only,
>>> as it used to support arm SoCs only. Now that support for the IPU6 has
>>> been added to the pipeline handler, it should be enabled on x86
>>> platforms as well. Fix it.
>>>
>>> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>>> ---
>>
>> Indeed.
>>
>> Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
> 
> I will also add
> 
> Fixes: 06e0d8508e5c ("libcamera: pipeline: simple: Enable intel-ipu6 with Soft ISP")

Thanks, patch looks good to me:

Reviewed-by: Hans de Goede <hdegoede@redhat.com>

Regards,

Hans

Patch
diff mbox series

diff --git a/meson.build b/meson.build
index f946eba94fc2..316abdb84e92 100644
--- a/meson.build
+++ b/meson.build
@@ -219,7 +219,7 @@  pipelines_support = {
     'mali-c55':     arch_arm,
     'rkisp1':       arch_arm,
     'rpi/vc4':      arch_arm,
-    'simple':       arch_arm,
+    'simple':       ['any'],
     'uvcvideo':     ['any'],
     'vimc':         ['test'],
 }