Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. if ARCH_SNAPDRAGON
  2. config SYS_SOC
  3. default "snapdragon"
  4. config SYS_MALLOC_F_LEN
  5. default 0x2000
  6. config SPL_SYS_MALLOC_F_LEN
  7. default 0x2000
  8. choice
  9. prompt "Snapdragon board select"
  10. config TARGET_DRAGONBOARD410C
  11. bool "96Boards Dragonboard 410C"
  12. select BOARD_LATE_INIT
  13. help
  14. Support for 96Boards Dragonboard 410C. This board complies with
  15. 96Board Open Platform Specifications. Features:
  16. - Qualcomm Snapdragon 410C SoC - APQ8016 (4xCortex A53, Adreno 306)
  17. - 1GiB RAM
  18. - 8GiB eMMC, uSD slot
  19. - WiFi, Bluetooth and GPS module
  20. - 2x Host, 1x Device USB port
  21. - HDMI
  22. - 20-pin low speed and 40-pin high speed expanders, 4 LED, 3 buttons
  23. config TARGET_DRAGONBOARD820C
  24. bool "96Boards Dragonboard 820C"
  25. help
  26. Support for 96Boards Dragonboard 820C. This board complies with
  27. 96Board Open Platform Specifications. Features:
  28. - Qualcomm Snapdragon 820C SoC - APQ8096 (4xKyro CPU)
  29. - 3GiB RAM
  30. - 32GiB UFS drive
  31. endchoice
  32. source "board/qualcomm/dragonboard410c/Kconfig"
  33. source "board/qualcomm/dragonboard820c/Kconfig"
  34. endif