Kconfig 907 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menu "Tegra firmware driver"
  3. config TEGRA_IVC
  4. bool "Tegra IVC protocol"
  5. depends on ARCH_TEGRA
  6. help
  7. IVC (Inter-VM Communication) protocol is part of the IPC
  8. (Inter Processor Communication) framework on Tegra. It maintains the
  9. data and the different communication channels in SysRAM or RAM and
  10. keeps the content is synchronization between host CPU and remote
  11. processors.
  12. config TEGRA_BPMP
  13. bool "Tegra BPMP driver"
  14. depends on ARCH_TEGRA && TEGRA_HSP_MBOX && TEGRA_IVC
  15. help
  16. BPMP (Boot and Power Management Processor) is designed to off-loading
  17. the PM functions which include clock/DVFS/thermal/power from the CPU.
  18. It needs HSP as the HW synchronization and notification module and
  19. IVC module as the message communication protocol.
  20. This driver manages the IPC interface between host CPU and the
  21. firmware running on BPMP.
  22. endmenu