Kconfig 757 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. mainmenu "RT-Thread Project Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "../.."
  10. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. source "$RTT_DIR/Kconfig"
  15. source "$PKGS_DIR/Kconfig"
  16. source "drivers/Kconfig"
  17. config BSP_USING_CV1800B
  18. bool
  19. select ARCH_RISCV64
  20. select RT_USING_COMPONENTS_INIT
  21. select RT_USING_USER_MAIN
  22. select RT_USING_CACHE
  23. select ARCH_MM_MMU
  24. default y
  25. config C906_PLIC_PHY_ADDR
  26. hex
  27. default 0x70000000
  28. config IRQ_MAX_NR
  29. int
  30. default 64
  31. config TIMER_CLK_FREQ
  32. int
  33. default 25000000
  34. config __STACKSIZE__
  35. int "stack size for interrupt"
  36. default 4096