Kconfig.example 750 B

1234567891011121314151617181920212223242526272829
  1. menuconfig VHA
  2. tristate "IMG neural network accelerator"
  3. select GENERIC_ALLOCATOR
  4. if VHA
  5. choice
  6. prompt "VHA platform"
  7. config VHA_DUMMY
  8. bool "driver runs without hardware"
  9. config VHA_DT_EXAMPLE
  10. depends on OF
  11. bool "driver uses device tree"
  12. config VHA_ORION
  13. bool "driver runs on IMG Orion/SFF platform"
  14. endchoice
  15. config TARGET_OSID
  16. int
  17. default 0
  18. choice
  19. prompt "VHA hardware series"
  20. config HW_AX2
  21. bool "driver runs AX2145 and AX2185 hardware"
  22. config HW_AX3
  23. bool "driver runs AX31xx/AX33xx/AX35xx hardware"
  24. config HW_AX3_MC
  25. bool "driver runs AXAX3797 multicore hardware"
  26. endchoice
  27. endif