blob: e562d693c6b3d55a565744236c3aa884474d3d07 [file] [log] [blame]
Mateusz Kulikowski08592132016-03-31 23:12:32 +02001if ARCH_SNAPDRAGON
2
3config SYS_SOC
4 default "snapdragon"
5
Ramon Friedf0355262018-05-28 23:55:49 +03006config SYS_MALLOC_F_LEN
7 default 0x2000
8
9config SPL_SYS_MALLOC_F_LEN
10 default 0x2000
11
Mateusz Kulikowski626f0482016-03-31 23:12:33 +020012choice
13 prompt "Snapdragon board select"
14
15config TARGET_DRAGONBOARD410C
16 bool "96Boards Dragonboard 410C"
Ramon Fried2df573e2018-09-21 13:35:46 +030017 select BOARD_LATE_INIT
Mateusz Kulikowski626f0482016-03-31 23:12:33 +020018 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
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010029config 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
Mateusz Kulikowski626f0482016-03-31 23:12:33 +020038endchoice
39
40source "board/qualcomm/dragonboard410c/Kconfig"
Jorge Ramirez-Ortiz4b684a62018-01-10 11:33:50 +010041source "board/qualcomm/dragonboard820c/Kconfig"
Mateusz Kulikowski626f0482016-03-31 23:12:33 +020042
Mateusz Kulikowski08592132016-03-31 23:12:32 +020043endif