From: Andy Shevchenko <andriy.shevchenko@intel.com>
To: Maurizio Casciano <mauriziocasciano7@gmail.com>
Cc: linux-media@vger.kernel.org,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Bingbu Cao <bingbu.cao@amd.com>,
Jacopo Mondi <jacopo.mondi@ideasonboard.com>,
Nicholas Roth <nicholas@rothemail.net>,
Andy Shevchenko <andy@kernel.org>,
Hans de Goede <hansg@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jose Maria Martin <jmmartinf@hotmail.com>,
Uwe Kleine-Koenig <ukleinek@kernel.org>,
linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 14/15] media: atomisp: allow raw Bayer capture
Date: Mon, 31 Aug 2026 14:40:57 +0300 [thread overview]
Message-ID: <apVoSXcirnD2A7-d@ashevche-desk.local> (raw)
In-Reply-To: <749f33adb08c4b311aec241c0bdcc455fcdc0a3c.1787933456.git.mauriziocasciano7@gmail.com>
On Fri, Aug 28, 2026 at 06:14:56PM +0200, Maurizio Casciano wrote:
> AtomISP currently rejects all raw formats and silently substitutes
> YUV420. This prevents userspace camera processing stacks from obtaining
> unprocessed sensor frames.
>
> Enumerate only the raw format matching the sensor media-bus code and
> reconcile raw requests with the code selected by the sensor. Userspace
> opts in by selecting that raw V4L2 pixel format with VIDIOC_S_FMT.
>
> Raw formats expose the full sensor transport frame so ISP2401 can use
> its copy pipeline. Processed formats retain the existing global padding
> behavior; selecting a smaller receiver crop remains a userspace pipeline
> decision.
...
> Link: https://lore.kernel.org/linux-media/apCc_pt5dDxGJrei@ashevche-desk.local/
> Link: https://lore.kernel.org/linux-media/apF0Cds9fnqQ7XRg@kekkonen.localdomain/
Drop these.
...
> void atomisp_get_padding(struct atomisp_device *isp, struct v4l2_area size,
> u32 min_pad_w = ISP2400_MIN_PAD_W;
> u32 min_pad_h = ISP2400_MIN_PAD_H;
> struct v4l2_mbus_framefmt *sink;
> -
> if (!input->crop_support) {
> pad->width = pad_w;
> pad->height = pad_h;
Stray change.
...
> - size.width = f->width;
> - size.height = f->height;
> - atomisp_get_padding(isp, size, &padding);
> + if (fmt->sh_fmt == IA_CSS_FRAME_FORMAT_RAW) {
> + padding = (struct v4l2_area) { };
> + } else {
> + size.width = f->width;
> + size.height = f->height;
> + atomisp_get_padding(isp, size, &padding);
> + }
Compound literal is not needed here. With the previous suggestions this becomes
if (fmt->sh_fmt == IA_CSS_FRAME_FORMAT_RAW)
padding = {};
else
atomisp_get_padding(isp, f, &padding);
...
> ffmt.code);
> return -EINVAL;
> }
Not enough context, but I assume a blank line is good to have here.
> + if (fmt->sh_fmt == IA_CSS_FRAME_FORMAT_RAW &&
> + fmt->mbus_code != snr_fmt->mbus_code) {
> + fmt = snr_fmt;
> + f->pixelformat = fmt->pixelformat;
> + }
...
> + if (format->sh_fmt == IA_CSS_FRAME_FORMAT_RAW)
> + padding = (struct v4l2_area) { };
padding = {};
should suffice.
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2026-08-31 11:41 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-28 16:14 [PATCH v4 00/15] media: Add Lenovo Yoga Book YB1-X91 camera support Maurizio Casciano
2026-08-28 16:14 ` [PATCH v4 01/15] media: ov8858: Extract digital gain programming Maurizio Casciano
2026-08-31 9:32 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 02/15] media: ov8858: support 19.2 MHz clock and CHT gain setup Maurizio Casciano
2026-08-31 9:38 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 03/15] media: ov2740: Use C99 initializers for ACPI IDs Maurizio Casciano
2026-08-28 16:14 ` [PATCH v4 04/15] media: ov2740: Add OVTI2740 ACPI ID Maurizio Casciano
2026-08-31 9:39 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 05/15] media: ov8858: Add INT3477 " Maurizio Casciano
2026-08-31 9:40 ` Andy Shevchenko
2026-08-31 13:12 ` mauriziocasciano7
2026-08-31 13:29 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 06/15] media: intel: ipu-bridge: Add Yoga Book camera sensors Maurizio Casciano
2026-08-31 9:40 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 07/15] media: atomisp: Add Yoga Book camera configuration Maurizio Casciano
2026-08-31 9:42 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 08/15] media: ov2740: support 288 MHz link frequency Maurizio Casciano
2026-08-31 9:45 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 09/15] media: intel: ipu-bridge: allow sensor-specific link frequencies Maurizio Casciano
2026-08-31 9:52 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 10/15] media: atomisp: derive CSI-2 timing from sensor link frequency Maurizio Casciano
2026-08-31 9:56 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 11/15] media: atomisp: provide Yoga Book OV2740 " Maurizio Casciano
2026-08-31 9:58 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 12/15] media: ov2740: add manual white balance controls Maurizio Casciano
2026-08-31 10:03 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 13/15] media: atomisp: Use struct v4l2_area for padding Maurizio Casciano
2026-08-31 11:27 ` Andy Shevchenko
2026-08-28 16:14 ` [PATCH v4 14/15] media: atomisp: allow raw Bayer capture Maurizio Casciano
2026-08-31 11:40 ` Andy Shevchenko [this message]
2026-08-28 16:14 ` [PATCH v4 15/15] media: i2c: Add WV517S lens actuator driver Maurizio Casciano
2026-08-31 9:46 ` [PATCH v4 00/15] media: Add Lenovo Yoga Book YB1-X91 camera support Andy Shevchenko
2026-08-31 18:00 ` [PATCH v5 00/16] " Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 01/16] media: ov8858: Extract digital gain programming Maurizio Casciano
2026-09-01 11:29 ` Andy Shevchenko
2026-08-31 18:00 ` [PATCH v5 02/16] media: ov8858: support 19.2 MHz clock and CHT gain setup Maurizio Casciano
2026-09-01 11:24 ` Andy Shevchenko
2026-08-31 18:00 ` [PATCH v5 03/16] media: ov2740: Use C99 initializers for ACPI IDs Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 04/16] media: ov2740: Add OVTI2740 ACPI ID Maurizio Casciano
2026-09-01 11:18 ` Andy Shevchenko
2026-08-31 18:00 ` [PATCH v5 05/16] media: ov8858: Add INT3477 " Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 06/16] media: intel: ipu-bridge: Add Yoga Book camera sensors Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 07/16] media: atomisp: Add Yoga Book camera configuration Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 08/16] media: ov2740: support 288 MHz link frequency Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 09/16] media: intel: ipu-bridge: allow sensor-specific link frequencies Maurizio Casciano
2026-09-01 11:27 ` Andy Shevchenko
2026-08-31 18:00 ` [PATCH v5 10/16] media: atomisp: derive CSI-2 timing from sensor link frequency Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 11/16] media: atomisp: provide Yoga Book OV2740 " Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 12/16] media: ov2740: release group hold after gain write errors Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 13/16] media: ov2740: add manual white balance controls Maurizio Casciano
2026-08-31 18:00 ` [PATCH v5 14/16] media: atomisp: Use struct v4l2_area for padding Maurizio Casciano
2026-08-31 18:01 ` [PATCH v5 15/16] media: atomisp: allow raw Bayer capture Maurizio Casciano
2026-08-31 18:01 ` [PATCH v5 16/16] media: i2c: Add WV517S lens actuator driver Maurizio Casciano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=apVoSXcirnD2A7-d@ashevche-desk.local \
--to=andriy.shevchenko@intel.com \
--cc=andy@kernel.org \
--cc=bingbu.cao@amd.com \
--cc=gregkh@linuxfoundation.org \
--cc=hansg@kernel.org \
--cc=jacopo.mondi@ideasonboard.com \
--cc=jmmartinf@hotmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=mauriziocasciano7@gmail.com \
--cc=mchehab@kernel.org \
--cc=nicholas@rothemail.net \
--cc=sakari.ailus@linux.intel.com \
--cc=ukleinek@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®