Linux Media Controller development
 help / color / mirror / Atom feed
* [PATCH v6 00/16] media: Add Yoga Book camera support
@ 2026-09-01 19:04 Maurizio Casciano
  2026-09-01 19:04 ` [PATCH v6 01/16] media: ov8858: Extract digital gain programming Maurizio Casciano
                   ` (16 more replies)
  0 siblings, 17 replies; 24+ messages in thread
From: Maurizio Casciano @ 2026-09-01 19:04 UTC (permalink / raw)
  To: mchehab, linux-media
  Cc: sakari.ailus, bingbu.cao, jacopo.mondi, nicholas, andy,
	andriy.shevchenko, hansg, gregkh, linux-staging, linux-kernel

Hi,

This series adds the sensor, bridge, AtomISP and lens-actuator support
needed by the front and rear cameras of the Lenovo Yoga Book YB1-X91.

It covers the OV8858 19.2 MHz clock and Cherry Trail gain programming,
OV2740 288 MHz link frequency and manual white balance, firmware IDs and
IPU bridge data, AtomISP raw capture and CSI-2 timing, and the WV517S lens
actuator.

Changes in v6:
- In patch 2, replace the arithmetic MHz expressions with direct Hz
  constants, as requested by Andy Shevchenko.
- Give the supported input clocks distinct names:
  OV8858_XVCLK_FREQ_24MHZ and OV8858_XVCLK_FREQ_19_2MHZ.
- No other code changes from v5.

Validation:
- Strict checkpatch over all 16 patches: no errors or warnings.
- W=1 object build of drivers/media/i2c/ov8858.o.
- Sparse C=2 check of drivers/media/i2c/ov8858.c.
- Front and rear cameras previously validated on the Yoga Book with real
  raw Bayer capture.

Maurizio Casciano (16):
  media: ov8858: Extract digital gain programming
  media: ov8858: support 19.2 MHz clock and CHT gain setup
  media: ov2740: Use C99 initializers for ACPI IDs
  media: ov2740: Add OVTI2740 ACPI ID
  media: ov8858: Add INT3477 ACPI ID
  media: intel: ipu-bridge: Add Yoga Book camera sensors
  media: atomisp: Add Yoga Book camera configuration
  media: ov2740: support 288 MHz link frequency
  media: intel: ipu-bridge: allow sensor-specific link frequencies
  media: atomisp: derive CSI-2 timing from sensor link frequency
  media: atomisp: provide Yoga Book OV2740 link frequency
  media: ov2740: release group hold after gain write errors
  media: ov2740: add manual white balance controls
  media: atomisp: Use struct v4l2_area for padding
  media: atomisp: allow raw Bayer capture
  media: i2c: Add WV517S lens actuator driver

 MAINTAINERS                                   |   1 +
 drivers/media/i2c/Kconfig                     |  11 +
 drivers/media/i2c/Makefile                    |   1 +
 drivers/media/i2c/ov2740.c                    | 114 +++++++---
 drivers/media/i2c/ov8858.c                    | 166 ++++++++++++--
 drivers/media/i2c/wv517s.c                    | 206 ++++++++++++++++++
 drivers/media/pci/intel/ipu-bridge.c          |  19 +-
 .../staging/media/atomisp/pci/atomisp_cmd.c   |  80 ++++---
 .../staging/media/atomisp/pci/atomisp_cmd.h   |   6 +-
 .../staging/media/atomisp/pci/atomisp_csi2.c  |  20 +-
 .../media/atomisp/pci/atomisp_csi2_bridge.c   |  30 ++-
 .../staging/media/atomisp/pci/atomisp_ioctl.c |  34 ++-
 .../media/atomisp/pci/atomisp_subdev.c        |   4 +-
 .../media/atomisp/pci/atomisp_subdev.h        |   3 +-
 include/media/ipu-bridge.h                    |   3 +
 15 files changed, 588 insertions(+), 110 deletions(-)
 create mode 100644 drivers/media/i2c/wv517s.c

With Best Regards,
Maurizio Casciano

-- 
2.53.0

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

end of thread, other threads:[~2026-09-03  4:38 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 19:04 [PATCH v6 00/16] media: Add Yoga Book camera support Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 01/16] media: ov8858: Extract digital gain programming Maurizio Casciano
2026-09-01 22:16   ` Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 02/16] media: ov8858: support 19.2 MHz clock and CHT gain setup Maurizio Casciano
2026-09-02 10:33   ` Sakari Ailus
2026-09-02 13:13     ` Andy Shevchenko
2026-09-01 19:04 ` [PATCH v6 03/16] media: ov2740: Use C99 initializers for ACPI IDs Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 04/16] media: ov2740: Add OVTI2740 ACPI ID Maurizio Casciano
2026-09-01 22:17   ` Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 05/16] media: ov8858: Add INT3477 " Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 06/16] media: intel: ipu-bridge: Add Yoga Book camera sensors Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 07/16] media: atomisp: Add Yoga Book camera configuration Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 08/16] media: ov2740: support 288 MHz link frequency Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 09/16] media: intel: ipu-bridge: allow sensor-specific link frequencies Maurizio Casciano
2026-09-01 22:21   ` Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 10/16] media: atomisp: derive CSI-2 timing from sensor link frequency Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 11/16] media: atomisp: provide Yoga Book OV2740 " Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 12/16] media: ov2740: release group hold after gain write errors Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 13/16] media: ov2740: add manual white balance controls Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 14/16] media: atomisp: Use struct v4l2_area for padding Maurizio Casciano
2026-09-03  4:38   ` Andy Shevchenko
2026-09-01 19:04 ` [PATCH v6 15/16] media: atomisp: allow raw Bayer capture Maurizio Casciano
2026-09-01 19:04 ` [PATCH v6 16/16] media: i2c: Add WV517S lens actuator driver Maurizio Casciano
2026-09-02 13:27 ` [PATCH v6 00/16] media: Add Yoga Book camera support Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox