mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
media: rcar-isp: Move driver to own directory
Before extending the driver with functions from the R-Car ISP core that will span multiple files move the existing driver to a separate directory. While at it rename the single source file to allow future files to be grouped by functions. Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Link: https://lore.kernel.org/r/20250423163113.2961049-6-niklas.soderlund+renesas@ragnatech.se Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
parent
63fd40f672
commit
9103d33f22
|
|
@ -14897,7 +14897,7 @@ F: Documentation/devicetree/bindings/media/renesas,csi2.yaml
|
|||
F: Documentation/devicetree/bindings/media/renesas,isp.yaml
|
||||
F: Documentation/devicetree/bindings/media/renesas,vin.yaml
|
||||
F: drivers/media/platform/renesas/rcar-csi2.c
|
||||
F: drivers/media/platform/renesas/rcar-isp.c
|
||||
F: drivers/media/platform/renesas/rcar-isp/
|
||||
F: drivers/media/platform/renesas/rcar-vin/
|
||||
|
||||
MEDIA DRIVERS FOR RENESAS - VSP1
|
||||
|
|
|
|||
|
|
@ -30,23 +30,6 @@ config VIDEO_RCAR_CSI2
|
|||
To compile this driver as a module, choose M here: the
|
||||
module will be called rcar-csi2.
|
||||
|
||||
config VIDEO_RCAR_ISP
|
||||
tristate "R-Car Image Signal Processor (ISP)"
|
||||
depends on V4L_PLATFORM_DRIVERS
|
||||
depends on VIDEO_DEV && OF
|
||||
depends on ARCH_RENESAS || COMPILE_TEST
|
||||
select MEDIA_CONTROLLER
|
||||
select VIDEO_V4L2_SUBDEV_API
|
||||
select RESET_CONTROLLER
|
||||
select V4L2_FWNODE
|
||||
help
|
||||
Support for Renesas R-Car Image Signal Processor (ISP).
|
||||
Enable this to support the Renesas R-Car Image Signal
|
||||
Processor (ISP).
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called rcar-isp.
|
||||
|
||||
config VIDEO_SH_VOU
|
||||
tristate "SuperH VOU video output driver"
|
||||
depends on V4L_PLATFORM_DRIVERS
|
||||
|
|
@ -56,6 +39,7 @@ config VIDEO_SH_VOU
|
|||
help
|
||||
Support for the Video Output Unit (VOU) on SuperH SoCs.
|
||||
|
||||
source "drivers/media/platform/renesas/rcar-isp/Kconfig"
|
||||
source "drivers/media/platform/renesas/rcar-vin/Kconfig"
|
||||
source "drivers/media/platform/renesas/rzg2l-cru/Kconfig"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,13 +3,13 @@
|
|||
# Makefile for the Renesas capture/playback device drivers.
|
||||
#
|
||||
|
||||
obj-y += rcar-isp/
|
||||
obj-y += rcar-vin/
|
||||
obj-y += rzg2l-cru/
|
||||
obj-y += vsp1/
|
||||
|
||||
obj-$(CONFIG_VIDEO_RCAR_CSI2) += rcar-csi2.o
|
||||
obj-$(CONFIG_VIDEO_RCAR_DRIF) += rcar_drif.o
|
||||
obj-$(CONFIG_VIDEO_RCAR_ISP) += rcar-isp.o
|
||||
obj-$(CONFIG_VIDEO_RENESAS_CEU) += renesas-ceu.o
|
||||
obj-$(CONFIG_VIDEO_RENESAS_FCP) += rcar-fcp.o
|
||||
obj-$(CONFIG_VIDEO_RENESAS_FDP1) += rcar_fdp1.o
|
||||
|
|
|
|||
18
drivers/media/platform/renesas/rcar-isp/Kconfig
Normal file
18
drivers/media/platform/renesas/rcar-isp/Kconfig
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
config VIDEO_RCAR_ISP
|
||||
tristate "R-Car Image Signal Processor (ISP)"
|
||||
depends on V4L_PLATFORM_DRIVERS
|
||||
depends on VIDEO_DEV && OF
|
||||
depends on ARCH_RENESAS || COMPILE_TEST
|
||||
select MEDIA_CONTROLLER
|
||||
select VIDEO_V4L2_SUBDEV_API
|
||||
select RESET_CONTROLLER
|
||||
select V4L2_FWNODE
|
||||
help
|
||||
Support for Renesas R-Car Image Signal Processor (ISP).
|
||||
Enable this to support the Renesas R-Car Image Signal
|
||||
Processor (ISP).
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called rcar-isp.
|
||||
4
drivers/media/platform/renesas/rcar-isp/Makefile
Normal file
4
drivers/media/platform/renesas/rcar-isp/Makefile
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# SPDX-License-Identifier: GPL-2.0
|
||||
rcar-isp-objs = csisp.o
|
||||
|
||||
obj-$(CONFIG_VIDEO_RCAR_ISP) += rcar-isp.o
|
||||
Loading…
Reference in New Issue
Block a user