blob: 914f4d9605345cd945dadc45b213517ff4209e19 [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
Sumit Garg5b32da42022-07-12 12:42:08 +053047config TARGET_DRAGONBOARD845C
48 bool "96Boards Dragonboard 845C"
49 help
50 Support for 96Boards Dragonboard 845C aka Robotics RB3 Development
51 Platform. This board complies with 96Boards Open Platform
52 Specifications. Features:
53 - Qualcomm Snapdragon SDA845 SoC
54 - 4GiB RAM
55 - 64GiB UFS drive
56 select MISC_INIT_R
57 select SDM845
Sumit Garg5b32da42022-07-12 12:42:08 +053058
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030059config TARGET_STARQLTECHN
60 bool "Samsung S9 SM-G9600(starqltechn)"
61 help
62 Support for Samsung S9 SM-G9600(starqltechn) board.
63 Features:
64 - Qualcomm Snapdragon SDM845 SoC
65 - 4GiB RAM
66 - 64GiB UFS drive
67 select MISC_INIT_R
68 select SDM845
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030069
Sumit Garg89a8ec92022-07-12 12:42:12 +053070config TARGET_QCS404EVB
71 bool "Qualcomm Technologies, Inc. QCS404 EVB"
72 select LINUX_KERNEL_IMAGE_HEADER
73 help
74 Support for Qualcomm Technologies, Inc. QCS404 evaluation board.
75 Features:
76 - Qualcomm Snapdragon QCS404 SoC
77 - 1GiB RAM
78 - 8GiB eMMC, uSD slot
79
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020080endchoice
81
82source "board/qualcomm/dragonboard410c/Kconfig"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010083source "board/qualcomm/dragonboard820c/Kconfig"
Sumit Garg5b32da42022-07-12 12:42:08 +053084source "board/qualcomm/dragonboard845c/Kconfig"
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030085source "board/samsung/starqltechn/Kconfig"
Sumit Garg89a8ec92022-07-12 12:42:12 +053086source "board/qualcomm/qcs404-evb/Kconfig"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020087
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020088endif