Commit 66d8c9d2 authored by Kieran Bingham's avatar Kieran Bingham Committed by Mauro Carvalho Chehab
Browse files

media: i2c: Add MAX9286 driver



The MAX9286 is a 4-channel GMSL deserializer with coax or STP input and
CSI-2 output. The device supports multicamera streaming applications,
and features the ability to synchronise the attached cameras.

CSI-2 output can be configured with 1 to 4 lanes, and a control channel
is supported over I2C, which implements an I2C mux to facilitate
communications with connected cameras across the reverse control
channel.

Signed-off-by: default avatarJacopo Mondi <jacopo+renesas@jmondi.org>
Signed-off-by: default avatarKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: default avatarNiklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 18f12901
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -10438,6 +10438,16 @@ F: Documentation/hwmon/max6697.rst
F:	drivers/hwmon/max6697.c
F:	include/linux/platform_data/max6697.h
MAX9286 QUAD GMSL DESERIALIZER DRIVER
M:	Jacopo Mondi <jacopo+renesas@jmondi.org>
M:	Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
M:	Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
M:	Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
L:	linux-media@vger.kernel.org
S:	Maintained
F:	Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
F:	drivers/media/i2c/max9286.c
MAX9860 MONO AUDIO VOICE CODEC DRIVER
M:	Peter Rosin <peda@axentia.se>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
+13 −0
Original line number Diff line number Diff line
@@ -464,6 +464,19 @@ config VIDEO_VPX3220
	  To compile this driver as a module, choose M here: the
	  module will be called vpx3220.

config VIDEO_MAX9286
	tristate "Maxim MAX9286 GMSL deserializer support"
	depends on I2C && I2C_MUX
	depends on OF
	select V4L2_FWNODE
	select VIDEO_V4L2_SUBDEV_API
	select MEDIA_CONTROLLER
	help
	  This driver supports the Maxim MAX9286 GMSL deserializer.

	  To compile this driver as a module, choose M here: the
	  module will be called max9286.

comment "Video and audio decoders"

config VIDEO_SAA717X
+1 −0
Original line number Diff line number Diff line
@@ -119,6 +119,7 @@ obj-$(CONFIG_VIDEO_IMX274) += imx274.o
obj-$(CONFIG_VIDEO_IMX290)	+= imx290.o
obj-$(CONFIG_VIDEO_IMX319)	+= imx319.o
obj-$(CONFIG_VIDEO_IMX355)	+= imx355.o
obj-$(CONFIG_VIDEO_MAX9286)	+= max9286.o
obj-$(CONFIG_VIDEO_ST_MIPID02) += st-mipid02.o

obj-$(CONFIG_SDR_MAX2175) += max2175.o
+1320 −0

File added.

Preview size limit exceeded, changes collapsed.