Skip to content

Commit 0ec0dde

Browse files
authored
ARL MR2, TWL MR1, ASL MR4 releases on kernel 6.12 Ubuntu 24.04 (iot)
2 parents 8c08c79 + 4010568 commit 0ec0dde

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

config/linux/ipu6ep/psys_policy_profiles.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ limitations under the License.
4444
<!-- op_modes: 0-disabled, 2-coupled. see ia_cipf_css.h in libiacss -->
4545
<pipe_executor name="ipu6_lb_video_bayer" pgs="isa_lb_video_bayer"/>
4646
<pipe_executor name="ipu6_bb_video_bayer" pgs="post_gdc_video_bayer"/>
47-
<bundle executors="ipu6_lb_video_bayer:0,ipu6_bb_video_bayer:1"/>
48-
<enableBundleInSdv name="false"/>
4947

5048
<pipe_executor name="ipu6_full_still" pgs="isa_lb_stills,post_gdc_stills"/>
5149
</graph>

config/linux/ipu6epmtl/libcamhal_profile.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<version value="1.0"/>
2020
<platform value="IPU6"/>
2121
<!-- The value format of availableSensors is "sensor name"-wf/uf-"CSI port ID". -->
22-
<availableSensors value="ov05c10-uf-4,ov08x40-uf-0,ov08x40-uf-4,ov13b10-uf-0,ov13b10-wf-4,ov5675-uf-4,ov01a1s-uf-0,ov01a10-uf-0,ov01a10-uf-4,
22+
<availableSensors value="ov05c10-uf-0,ov05c10-uf-4,ov08x40-uf-0,ov08x40-uf-4,ov13b10-uf-0,ov13b10-wf-4,ov5675-uf-4,ov01a1s-uf-0,ov01a10-uf-0,ov01a10-uf-4,
2323
ov02c10-uf-0,ov02c10-uf-1,ov02c10-uf-4,ov02e10-uf-1,ov02e10-uf-4,
2424
hm2170-uf-0,hm2170-uf-1,hm2170-uf-4,hm2172-uf-1,hm2172-uf-4,hi556-uf-1,
2525
imx390-1-0,imx390-2-0,imx390-3-0,imx390-4-0,imx390-5-4,imx390-6-4,ar0234-1-0,ar0234-2-4,

modules/memory/chrome/Camera3Buffer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2013-2024 Intel Corporation
2+
* Copyright (C) 2013-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -415,7 +415,7 @@ void Camera3Buffer::dumpImage(const void* data, int frameNumber, const int size,
415415
static unsigned int count = 0;
416416
count++;
417417

418-
std::string fileName(gDumpPath);
418+
std::string fileName(CameraDump::getDumpPath());
419419
fileName += "dump_" + std::to_string(width) + "x" + std::to_string(height) + "_frame#" +
420420
std::to_string(count) + "_req#" + std::to_string(frameNumber);
421421

src/core/DeviceBase.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,8 @@ int MainDevice::onDequeueBuffer(shared_ptr<CameraBuffer> buffer) {
384384
buffer->getStreamId(), buffer->getSequence(), __func__, buffer->getField(),
385385
buffer->getTimestamp().tv_sec, buffer->getTimestamp().tv_usec);
386386

387+
dumpFrame(buffer);
388+
387389
for (auto& consumer : mConsumers) {
388390
consumer->onFrameAvailable(mPort, buffer);
389391
}
@@ -396,8 +398,6 @@ int MainDevice::onDequeueBuffer(shared_ptr<CameraBuffer> buffer) {
396398
frameData.data.frame.timestamp.tv_usec = buffer->getTimestamp().tv_usec;
397399
notifyListeners(frameData);
398400

399-
dumpFrame(buffer);
400-
401401
return OK;
402402
}
403403

0 commit comments

Comments
 (0)