mbox

[v1,0/2] media: i2c: IMX296 camera sensor support

Message ID 20230124150546.12876-1-naush@raspberrypi.com (mailing list archive)
Headers

Message

Naushir Patuck Jan. 24, 2023, 3:05 p.m. UTC
  Hi,

This series adds support for the Sony IMX708 camera sensor driver, with DT
bindings in patch 1/2 and the device driver in patch 2/2.

The Sony IMX708 is a 12MP MIPI CSI-2 sensor with a resolution of 4608x2592. It
is a "quad-Bayer" sensor, with on-chip re-mosaicing to output standard Bayer
data in 10-bits.

The sensor is capable of capturing HDR images from the quad-Bayer arrangement
and tone-mapping the image to 10-bits Bayer format. This functionality is
switched on/off by the wide dynamic range control:

v4l2-ctl --set-ctrl wide_dynamic_range=[0|1] -d /dev/v4l-subdev0

Thanks,
Naush

Dave Stevenson (1):
  dtbindings: media: i2c: Add IMX708 CMOS sensor binding

Nick Hollinghurst (1):
  media/i2c: Add a driver for the Sony IMX708 image sensor

 .../devicetree/bindings/media/i2c/imx708.yaml |  119 +
 MAINTAINERS                                   |    7 +
 drivers/media/i2c/Kconfig                     |   11 +
 drivers/media/i2c/Makefile                    |    1 +
 drivers/media/i2c/imx708.c                    | 1923 +++++++++++++++++
 5 files changed, 2061 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/media/i2c/imx708.yaml
 create mode 100644 drivers/media/i2c/imx708.c