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