mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-26 03:20:34 -04:00
Pull media updates from Mauro Carvalho Chehab:
- new CSI tegra support, covering Tegra20 and Tegra30
- new camera sensor drivers: T4ka3 and ov2732
- m88ds3103: add 3103c chip support
- uvcvideo: add support for Intel RealSense D436/D555 and P010 pixel format
- synopsys csi2rx: add i.MX93 support
- imx8-isi: add i.MX95 support
- imx8mq-mipi-csi2: add i.MX8ULP support
- dw100: add V4L2 requests support
- support for DTV devices from Hauppauge got some improvements
- media staging: dropped starfive-camss driver
- media docs: document multi-committers model and improve maint profile
- media core:
- add v4l2_subdev_get_frame_desc_passthrough() helper
- improve error handling in fwnode parsing
- lots of driver fixes, cleanups and improvements
* tag 'media/v7.1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (251 commits)
Revert "media: cx231xx: add USB ID 2040:8360 for Hauppauge WinTV-HVR-935"
media: synopsys: csi2rx: add i.MX93 support
media: dt-bindings: add NXP i.MX93 compatible string
media: synopsys: csi2rx: Use enum and u32 array for register offsets
media: synopsys: csi2rx: implement .get_frame_desc() callback
media: synopsys: csi2rx: only check errors from devm_clk_bulk_get_all()
media: synopsys: csi2rx: use devm_reset_control_get_optional_exclusive()
media: i2c: imx283: add support for non-continuous MIPI clock mode
media: i2c: ov08d10: add support for 24 MHz input clock
media: i2c: ov08d10: add support for reset and power management
media: i2c: ov08d10: add support for binding via device tree
dt-bindings: media: i2c: document Omnivision OV08D10 CMOS image sensor
media: i2c: ov08d10: add missing newline to prints
media: i2c: ov08d10: fix some typos in comments
media: i2c: ov08d10: remove duplicate register write
media: i2c: ov08d10: fix image vertical start setting
media: i2c: ov08d10: fix runtime PM handling in probe
staging: media: ipu7: Update TODO
media: Add t4ka3 camera sensor driver
media: i2c: Add ov2732 image sensor driver
...
24 lines
830 B
Plaintext
24 lines
830 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
source "drivers/media/platform/synopsys/hdmirx/Kconfig"
|
|
|
|
config VIDEO_DW_MIPI_CSI2RX
|
|
tristate "Synopsys DesignWare MIPI CSI-2 Receiver"
|
|
depends on ARCH_ROCKCHIP || COMPILE_TEST
|
|
depends on VIDEO_DEV
|
|
depends on V4L_PLATFORM_DRIVERS
|
|
depends on PM && COMMON_CLK
|
|
select GENERIC_PHY_MIPI_DPHY
|
|
select MEDIA_CONTROLLER
|
|
select V4L2_FWNODE
|
|
select VIDEO_V4L2_SUBDEV_API
|
|
help
|
|
The Synopsys DesignWare MIPI CSI-2 Receiver is a CSI-2 bridge with
|
|
one input port and one output port. It receives the data with the
|
|
help of an external MIPI PHY (C-PHY or D-PHY) and passes it to e.g.,
|
|
the Rockchip Video Capture (VICAP) block on recent Rockchip SoCs.
|
|
This is a driver for this unit.
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be called dw-mipi-csi2rx.
|