forked from Qortal/Brooklyn
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
33 lines
962 B
Plaintext
33 lines
962 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
config VIDEO_RCAR_CSI2
|
|
tristate "R-Car MIPI CSI-2 Receiver"
|
|
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 MIPI CSI-2 receiver.
|
|
Supports R-Car Gen3 and RZ/G2 SoCs.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called rcar-csi2.
|
|
|
|
config VIDEO_RCAR_VIN
|
|
tristate "R-Car Video Input (VIN) Driver"
|
|
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 VIDEOBUF2_DMA_CONTIG
|
|
select V4L2_FWNODE
|
|
help
|
|
Support for Renesas R-Car Video Input (VIN) driver.
|
|
Supports R-Car Gen{2,3} and RZ/G{1,2} SoCs.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called rcar-vin.
|