mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 16:53:59 -04:00
Currently, the Raspberry Pi PiSP Backend (BE) ISP is only present on the
Broadcom BCM2712-based Raspberry Pi 5. Hence add a dependency on
ARCH_BCM2835, to prevent asking the user about this driver when
configuring a kernel without Broadcom BCM2835 family support. The
dependency can be relaxed if/when the encoder appears on other SoC
families.
Fixes: 12187bd5d4 ("media: raspberrypi: Add support for PiSP BE")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: FLorian Fainelli <florian.fainelli@broadcom.com>
Acked-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
14 lines
436 B
Plaintext
14 lines
436 B
Plaintext
config VIDEO_RASPBERRYPI_PISP_BE
|
|
tristate "Raspberry Pi PiSP Backend (BE) ISP driver"
|
|
depends on V4L_PLATFORM_DRIVERS
|
|
depends on VIDEO_DEV
|
|
depends on ARCH_BCM2835 || COMPILE_TEST
|
|
select VIDEO_V4L2_SUBDEV_API
|
|
select MEDIA_CONTROLLER
|
|
select VIDEOBUF2_DMA_CONTIG
|
|
help
|
|
Say Y here to enable support for the PiSP Backend (BE) ISP driver.
|
|
|
|
To compile this driver as a module, choose M here. The module will be
|
|
called pisp-be.
|