xref: /openbmc/u-boot/arch/arm/mach-snapdragon/Kconfig (revision 2df573e6a5d30c3f009a9cea8f5e2e11cc9710e3)
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 	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 
29 config 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 
38 endchoice
39 
40 source "board/qualcomm/dragonboard410c/Kconfig"
41 source "board/qualcomm/dragonboard820c/Kconfig"
42 
43 endif
44