blob: 12cf02a56aaa29a11eb62a8f70fe456d284f039b [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
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030012config SDM845
13 bool "Qualcomm Snapdragon 845 SoC"
14 default n
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030015 select LINUX_KERNEL_IMAGE_HEADER
16
17config LNX_KRNL_IMG_TEXT_OFFSET_BASE
18 default 0x80000000
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030019
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020020choice
21 prompt "Snapdragon board select"
22
23config TARGET_DRAGONBOARD410C
24 bool "96Boards Dragonboard 410C"
Ramon Fried63596f02018-09-21 13:35:46 +030025 select BOARD_LATE_INIT
Stephan Gerhold2279dde2021-07-07 11:06:02 +020026 select ENABLE_ARM_SOC_BOOT0_HOOK
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020027 help
28 Support for 96Boards Dragonboard 410C. This board complies with
29 96Board Open Platform Specifications. Features:
30 - Qualcomm Snapdragon 410C SoC - APQ8016 (4xCortex A53, Adreno 306)
31 - 1GiB RAM
32 - 8GiB eMMC, uSD slot
33 - WiFi, Bluetooth and GPS module
34 - 2x Host, 1x Device USB port
35 - HDMI
36 - 20-pin low speed and 40-pin high speed expanders, 4 LED, 3 buttons
37
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010038config TARGET_DRAGONBOARD820C
39 bool "96Boards Dragonboard 820C"
40 help
41 Support for 96Boards Dragonboard 820C. This board complies with
42 96Board Open Platform Specifications. Features:
43 - Qualcomm Snapdragon 820C SoC - APQ8096 (4xKyro CPU)
44 - 3GiB RAM
45 - 32GiB UFS drive
46
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030047config TARGET_STARQLTECHN
48 bool "Samsung S9 SM-G9600(starqltechn)"
49 help
50 Support for Samsung S9 SM-G9600(starqltechn) board.
51 Features:
52 - Qualcomm Snapdragon SDM845 SoC
53 - 4GiB RAM
54 - 64GiB UFS drive
55 select MISC_INIT_R
56 select SDM845
57 select DM_ETH if NET
58
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020059endchoice
60
61source "board/qualcomm/dragonboard410c/Kconfig"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010062source "board/qualcomm/dragonboard820c/Kconfig"
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030063source "board/samsung/starqltechn/Kconfig"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020064
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020065endif