devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/16] media: i2c: Miscellaneous features and fixes for OV5647
@ 2025-11-18 12:02 Jai Luthra
  2025-11-18 12:02 ` [PATCH v2 01/16] media: i2c: ov5647: Initialize subdev before controls Jai Luthra
                   ` (15 more replies)
  0 siblings, 16 replies; 19+ messages in thread
From: Jai Luthra @ 2025-11-18 12:02 UTC (permalink / raw)
  To: Sakari Ailus, Dave Stevenson, Jacopo Mondi, Mauro Carvalho Chehab,
	Naushir Patuck, Rob Herring, Krzysztof Kozlowski, Conor Dooley
  Cc: linux-media, linux-kernel, devicetree, Mauro Carvalho Chehab,
	Kieran Bingham, David Plowman, Laurent Pinchart, Peter Robinson,
	Stefan Wahren, Ivan T. Ivanov, Jacopo Mondi, Jai Luthra

This series adds support for some important features, like controls for
H/VFLIP, horizontal blanking, link frequency and regulator support that
is present in the downstream kernel to support the Raspberry Pi v1 camera
module.

Additionally, it also fixes some known issues with streaming lockups and
wrong pixel array size.

Signed-off-by: Jai Luthra <jai.luthra@ideasonboard.com>
---
Changes in v2:
- Drop [PATCH 4/13] as it is already present in mainline
- Add a fix for a potential segfault by reordering ov5647_init_controls
  after v4l2_i2c_subdev_init in the probe
- Add 2 new patches updating dt-bindings for regulators and
  rotation/orientation
- Add a patch for cleaning up the PIXEL_RATE control
- Reorder the patches in the series, moving all fixes at the start
- Fix review comments from Jacopo, Stefan, Kieran and Dave, picking
  Jacopo's R-by tag on a few patches
- Link to v1: https://lore.kernel.org/r/20251028-b4-rpi-ov5647-v1-0-098413454f5e@ideasonboard.com

---
Dave Stevenson (7):
      media: i2c: ov5647: Add support for regulator control
      media: i2c: ov5647: Use v4l2_async_register_subdev_sensor for lens binding
      media: i2c: ov5647: Add control of V4L2_CID_HBLANK
      media: i2c: ov5647: Tidy up mode registers to make the order common
      media: i2c: ov5647: Separate out the common registers.
      media: i2c: ov5647: Use the same PLL config for full, 1080p, and binned modes
      media: i2c: ov5647: Add V4L2_CID_LINK_FREQUENCY control

David Plowman (4):
      media: i2c: ov5647: Correct pixel array offset
      media: i2c: ov5647: Correct minimum VBLANK value
      media: i2c: ov5647: Sensor should report RAW color space
      media: i2c: ov5647: Support HFLIP and VFLIP

Jai Luthra (4):
      media: i2c: ov5647: Initialize subdev before controls
      dt-bindings: media: ov5647: Add optional regulators
      dt-bindings: media: ov5647: Allow props from video-interface-devices
      media: i2c: ov5647: Tidy up PIXEL_RATE control

Laurent Pinchart (1):
      media: i2c: ov5647: Parse and register properties

 .../devicetree/bindings/media/i2c/ovti,ov5647.yaml |  14 +-
 drivers/media/i2c/ov5647.c                         | 467 ++++++++++-----------
 2 files changed, 238 insertions(+), 243 deletions(-)
---
base-commit: 3a8660878839faadb4f1a6dd72c3179c1df56787
change-id: 20251024-b4-rpi-ov5647-05b600758762

Best regards,
-- 
Jai Luthra <jai.luthra@ideasonboard.com>


^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2025-11-19  6:58 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-18 12:02 [PATCH v2 00/16] media: i2c: Miscellaneous features and fixes for OV5647 Jai Luthra
2025-11-18 12:02 ` [PATCH v2 01/16] media: i2c: ov5647: Initialize subdev before controls Jai Luthra
2025-11-18 12:02 ` [PATCH v2 02/16] media: i2c: ov5647: Correct pixel array offset Jai Luthra
2025-11-18 12:02 ` [PATCH v2 03/16] media: i2c: ov5647: Correct minimum VBLANK value Jai Luthra
2025-11-18 12:02 ` [PATCH v2 04/16] media: i2c: ov5647: Sensor should report RAW color space Jai Luthra
2025-11-18 12:02 ` [PATCH v2 05/16] dt-bindings: media: ov5647: Add optional regulators Jai Luthra
2025-11-19  6:57   ` Krzysztof Kozlowski
2025-11-18 12:02 ` [PATCH v2 06/16] media: i2c: ov5647: Add support for regulator control Jai Luthra
2025-11-18 12:03 ` [PATCH v2 07/16] dt-bindings: media: ov5647: Allow props from video-interface-devices Jai Luthra
2025-11-19  6:58   ` Krzysztof Kozlowski
2025-11-18 12:03 ` [PATCH v2 08/16] media: i2c: ov5647: Parse and register properties Jai Luthra
2025-11-18 12:03 ` [PATCH v2 09/16] media: i2c: ov5647: Support HFLIP and VFLIP Jai Luthra
2025-11-18 12:03 ` [PATCH v2 10/16] media: i2c: ov5647: Use v4l2_async_register_subdev_sensor for lens binding Jai Luthra
2025-11-18 12:03 ` [PATCH v2 11/16] media: i2c: ov5647: Add control of V4L2_CID_HBLANK Jai Luthra
2025-11-18 12:03 ` [PATCH v2 12/16] media: i2c: ov5647: Tidy up mode registers to make the order common Jai Luthra
2025-11-18 12:03 ` [PATCH v2 13/16] media: i2c: ov5647: Separate out the common registers Jai Luthra
2025-11-18 12:03 ` [PATCH v2 14/16] media: i2c: ov5647: Use the same PLL config for full, 1080p, and binned modes Jai Luthra
2025-11-18 12:03 ` [PATCH v2 15/16] media: i2c: ov5647: Tidy up PIXEL_RATE control Jai Luthra
2025-11-18 12:03 ` [PATCH v2 16/16] media: i2c: ov5647: Add V4L2_CID_LINK_FREQUENCY control Jai Luthra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).