Kconfig 563 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. if TARGET_DBAU1X00
  2. config SYS_BOARD
  3. default "dbau1x00"
  4. config SYS_SOC
  5. default "au1x00"
  6. config SYS_CONFIG_NAME
  7. default "dbau1x00"
  8. config SYS_TEXT_BASE
  9. default 0xbfc00000
  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 "dbau1x00 board options"
  19. choice
  20. prompt "Select au1x00 SoC type"
  21. optional
  22. config DBAU1100
  23. bool "Select AU1100"
  24. config DBAU1500
  25. bool "Select AU1500"
  26. config DBAU1550
  27. bool "Select AU1550"
  28. endchoice
  29. endmenu
  30. endif