Change in v2: - move dt-binding changes from 3/4 to 1/4 Hi, These patches add support for Maxim MAX96714F deserializer and MAX96717F serializer. MAX96714F has one GMSL2 input port and one CSI2 4 lanes output port, MAX96717F has one CSI2 input port and one GMSL2 output port. The drivers support the tunnel mode where all the CSI2 traffic coming from an imager is replicated through the deserializer output port. Both MAX96714F and MAX96717F are limited to a 3Gbps forward link rate leaving a maximum of 2.6Gbps for the video payload. Julien Massot (4): dt-bindings: media: add Maxim MAX96714F GMSL2 Deserializer dt-bindings: media: add Maxim MAX96717F GMSL2 Serializer media: i2c: add MAX96714 driver media: i2c: add MAX96717 driver .../bindings/media/i2c/maxim,max96714f.yaml | 163 +++ .../bindings/media/i2c/maxim,max96717f.yaml | 144 +++ MAINTAINERS | 12 + drivers/media/i2c/Kconfig | 26 + drivers/media/i2c/Makefile | 2 + drivers/media/i2c/max96714.c | 945 ++++++++++++++++ drivers/media/i2c/max96717.c | 1003 +++++++++++++++++ 7 files changed, 2295 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/maxim,max96714f.yaml create mode 100644 Documentation/devicetree/bindings/media/i2c/maxim,max96717f.yaml create mode 100644 drivers/media/i2c/max96714.c create mode 100644 drivers/media/i2c/max96717.c -- 2.43.0