1# SPDX-License-Identifier: GPL-2.0
2menuconfig BCM_VIDEOCORE
3	tristate "Broadcom VideoCore support"
4	depends on OF
5	depends on RASPBERRYPI_FIRMWARE || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
6	default y
7	help
8		Support for Broadcom VideoCore services including
9		the BCM2835 family of products which is used
10		by the Raspberry PI.
11
12if BCM_VIDEOCORE
13
14config BCM2835_VCHIQ
15	tristate "BCM2835 VCHIQ"
16	help
17		Kernel to VideoCore communication interface for the
18		BCM2835 family of products.
19		Defaults to Y when the Broadcom Videocore services
20		are included in the build, N otherwise.
21
22source "drivers/staging/vc04_services/bcm2835-audio/Kconfig"
23
24source "drivers/staging/vc04_services/bcm2835-camera/Kconfig"
25
26source "drivers/staging/vc04_services/vchiq-mmal/Kconfig"
27
28endif
29
30