Kconfig 679 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. if TARGET_VCT
  2. config SYS_BOARD
  3. default "vct"
  4. config SYS_VENDOR
  5. default "micronas"
  6. config SYS_CONFIG_NAME
  7. default "vct"
  8. config SYS_TEXT_BASE
  9. default 0x87000000
  10. config SYS_DCACHE_SIZE
  11. default 16384
  12. config SYS_DCACHE_LINE_SIZE
  13. default 32
  14. config SYS_ICACHE_SIZE
  15. default 16384
  16. config SYS_ICACHE_LINE_SIZE
  17. default 32
  18. menu "vct board options"
  19. choice
  20. prompt "Board variant"
  21. optional
  22. config VCT_PLATINUM
  23. bool "Enable VCT_PLATINUM"
  24. config VCT_PLATINUMAVC
  25. bool "Enable VCT_PLATINUMAVC"
  26. config VCT_PREMIUM
  27. bool "Enable VCT_PLATINUMAVC"
  28. endchoice
  29. config VCT_ONENAND
  30. bool "Enable VCT_ONENAND"
  31. config VCT_SMALL_IMAGE
  32. bool "Enable VCT_SMALL_IMAGE"
  33. endmenu
  34. endif