-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media: platform: Add Renesas RZ/G2L MIPI CSI-2 receiver driver
Add MIPI CSI-2 receiver driver for Renesas RZ/G2L. The MIPI CSI-2 is part of the CRU module found on RZ/G2L family. Based on a patch in the BSP by Hien Huynh <hien.huynh.px@renesas.com> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
- Loading branch information
Lad Prabhakar
authored and
Mauro Carvalho Chehab
committed
Nov 25, 2022
1 parent
a180041
commit 51e8415
Showing
5 changed files
with
899 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
# | ||
|
||
obj-y += rcar-vin/ | ||
obj-y += rzg2l-cru/ | ||
obj-y += vsp1/ | ||
|
||
obj-$(CONFIG_VIDEO_RCAR_DRIF) += rcar_drif.o | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
config VIDEO_RZG2L_CSI2 | ||
tristate "RZ/G2L MIPI CSI-2 Receiver" | ||
depends on ARCH_RENESAS || COMPILE_TEST | ||
depends on V4L_PLATFORM_DRIVERS | ||
depends on VIDEO_DEV && OF | ||
select MEDIA_CONTROLLER | ||
select RESET_CONTROLLER | ||
select V4L2_FWNODE | ||
select VIDEO_V4L2_SUBDEV_API | ||
help | ||
Support for Renesas RZ/G2L (and alike SoC's) MIPI CSI-2 | ||
Receiver driver. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called rzg2l-csi2. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
obj-$(CONFIG_VIDEO_RZG2L_CSI2) += rzg2l-csi2.o |
Oops, something went wrong.