blob: 0ec74fa5d3e7b2aa237ee22663b4754f0d0b3e1b [file] [log] [blame]
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02001if ARCH_SNAPDRAGON
2
3config SYS_SOC
4 default "snapdragon"
5
Ramon Fried8a1ed602018-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 Kulikowskiee5e70d2016-03-31 23:12:33 +020012choice
13 prompt "Snapdragon board select"
14
15config TARGET_DRAGONBOARD410C
16 bool "96Boards Dragonboard 410C"
Ramon Fried63596f02018-09-21 13:35:46 +030017 select BOARD_LATE_INIT
Stephan Gerhold2279dde2021-07-07 11:06:02 +020018 select ENABLE_ARM_SOC_BOOT0_HOOK
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020019 help
20 Support for 96Boards Dragonboard 410C. This board complies with
21 96Board Open Platform Specifications. Features:
22 - Qualcomm Snapdragon 410C SoC - APQ8016 (4xCortex A53, Adreno 306)
23 - 1GiB RAM
24 - 8GiB eMMC, uSD slot
25 - WiFi, Bluetooth and GPS module
26 - 2x Host, 1x Device USB port
27 - HDMI
28 - 20-pin low speed and 40-pin high speed expanders, 4 LED, 3 buttons
29
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010030config TARGET_DRAGONBOARD820C
31 bool "96Boards Dragonboard 820C"
32 help
33 Support for 96Boards Dragonboard 820C. This board complies with
34 96Board Open Platform Specifications. Features:
35 - Qualcomm Snapdragon 820C SoC - APQ8096 (4xKyro CPU)
36 - 3GiB RAM
37 - 32GiB UFS drive
38
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020039endchoice
40
41source "board/qualcomm/dragonboard410c/Kconfig"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010042source "board/qualcomm/dragonboard820c/Kconfig"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020043
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020044endif