Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97b35807 authored by Eric Anholt's avatar Eric Anholt Committed by Greg Kroah-Hartman
Browse files

staging: bcm2835-v4l2: Add a build system for the module.



This is derived from the downstream tree's build system, but with just
a single Kconfig option.

For now the driver only builds on 32-bit arm -- the aarch64 build
breaks due to the driver using arm-specific cache flushing functions.

Signed-off-by: default avatarEric Anholt <eric@anholt.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 411d68be
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -27,6 +27,8 @@ source "drivers/staging/media/davinci_vpfe/Kconfig"

source "drivers/staging/media/omap4iss/Kconfig"

source "drivers/staging/media/platform/bcm2835/Kconfig"

source "drivers/staging/media/s5p-cec/Kconfig"

# Keep LIRC at the end, as it has sub-menus
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ obj-$(CONFIG_I2C_BCM2048) += bcm2048/
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_CEC) += s5p-cec/
obj-$(CONFIG_DVB_CXD2099)	+= cxd2099/
obj-$(CONFIG_LIRC_STAGING)	+= lirc/
obj-$(CONFIG_VIDEO_BCM2835)	+= platform/bcm2835/
obj-$(CONFIG_VIDEO_DM365_VPFE)	+= davinci_vpfe/
obj-$(CONFIG_VIDEO_OMAP4)	+= omap4iss/
obj-$(CONFIG_VIDEO_STI_HDMI_CEC) += st-cec/
+10 −0
Original line number Diff line number Diff line
config VIDEO_BCM2835
	tristate "Broadcom BCM2835 camera driver"
	depends on VIDEO_V4L2 && (ARCH_BCM2835 || COMPILE_TEST)
	depends on BCM2835_VCHIQ
	depends on ARM
	select VIDEOBUF2_VMALLOC
	help
	  Say Y here to enable camera host interface devices for
	  Broadcom BCM2835 SoC. This operates over the VCHIQ interface
	  to a service running on VideoCore.
+11 −0
Original line number Diff line number Diff line
bcm2835-v4l2-$(CONFIG_VIDEO_BCM2835) := \
	bcm2835-camera.o \
	controls.o \
	mmal-vchiq.o

obj-$(CONFIG_VIDEO_BCM2835) += bcm2835-v4l2.o

ccflags-y += \
	-Idrivers/staging/vc04_services \
	-Idrivers/staging/vc04_services/interface/vcos/linuxkernel \
	-D__VCCOREVER__=0x04000000