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