Kconfig 811 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "MTK Board Support Package"
  2. choice
  3. bool "MTK Board"
  4. config MTK_EVB_BOARD
  5. bool "MTK EVB BOARD"
  6. depends on (ARCH_MT6580 || ARCH_MT6735 || ARCH_MT6735M || ARCH_MT6753 || ARCH_MT6755 || ARCH_MT6797)
  7. select ARM_L1_CACHE_SHIFT_6 if (!ARM64)
  8. help
  9. Select if you are using an EVB board.
  10. config MTK_FPGA
  11. bool "MTK FPGA"
  12. depends on (ARCH_MT6580 || ARCH_MT6735 || ARCH_MT6735M || ARCH_MT6753 || ARCH_MT6755 || ARCH_MT6797)
  13. select ARM_L1_CACHE_SHIFT_6 if (!ARM64)
  14. help
  15. Select if you are using the FPGA board.
  16. endchoice
  17. config FPGA_CA7
  18. bool "FPGA CA7"
  19. depends on MTK_FPGA
  20. default n
  21. help
  22. Select if you are using the CA7 FPGA board.
  23. config MTK_PSCI
  24. bool "Mediatek PSCI boot method"
  25. depends on ARM64
  26. default n
  27. help
  28. Select if you want to enable PSCI boot method on MTK platform.
  29. endmenu