blob: dde37eccc55e4e2df05cac9f5cbaa43cdb58f5f5 [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
Simon Glassb59037b2023-09-26 08:14:25 -06009config SPL_SYS_MALLOC_F
10 default y
11
Ramon Fried8a1ed602018-05-28 23:55:49 +030012config SPL_SYS_MALLOC_F_LEN
13 default 0x2000
14
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030015config SDM845
16 bool "Qualcomm Snapdragon 845 SoC"
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030017 select LINUX_KERNEL_IMAGE_HEADER
Caleb Connolly878b26a2023-11-07 12:40:59 +000018 imply CLK_QCOM_SDM845
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030019
20config LNX_KRNL_IMG_TEXT_OFFSET_BASE
21 default 0x80000000
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030022
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020023choice
24 prompt "Snapdragon board select"
25
26config TARGET_DRAGONBOARD410C
27 bool "96Boards Dragonboard 410C"
Ramon Fried63596f02018-09-21 13:35:46 +030028 select BOARD_LATE_INIT
Stephan Gerhold2279dde2021-07-07 11:06:02 +020029 select ENABLE_ARM_SOC_BOOT0_HOOK
Caleb Connolly878b26a2023-11-07 12:40:59 +000030 imply CLK_QCOM_APQ8016
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020031 help
32 Support for 96Boards Dragonboard 410C. This board complies with
33 96Board Open Platform Specifications. Features:
34 - Qualcomm Snapdragon 410C SoC - APQ8016 (4xCortex A53, Adreno 306)
35 - 1GiB RAM
36 - 8GiB eMMC, uSD slot
37 - WiFi, Bluetooth and GPS module
38 - 2x Host, 1x Device USB port
39 - HDMI
40 - 20-pin low speed and 40-pin high speed expanders, 4 LED, 3 buttons
41
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010042config TARGET_DRAGONBOARD820C
43 bool "96Boards Dragonboard 820C"
Caleb Connolly878b26a2023-11-07 12:40:59 +000044 imply CLK_QCOM_APQ8096
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010045 help
46 Support for 96Boards Dragonboard 820C. This board complies with
47 96Board Open Platform Specifications. Features:
48 - Qualcomm Snapdragon 820C SoC - APQ8096 (4xKyro CPU)
49 - 3GiB RAM
50 - 32GiB UFS drive
51
Sumit Garg5b32da42022-07-12 12:42:08 +053052config TARGET_DRAGONBOARD845C
53 bool "96Boards Dragonboard 845C"
54 help
55 Support for 96Boards Dragonboard 845C aka Robotics RB3 Development
56 Platform. This board complies with 96Boards Open Platform
57 Specifications. Features:
58 - Qualcomm Snapdragon SDA845 SoC
59 - 4GiB RAM
60 - 64GiB UFS drive
61 select MISC_INIT_R
62 select SDM845
Sumit Garg5b32da42022-07-12 12:42:08 +053063
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030064config TARGET_STARQLTECHN
65 bool "Samsung S9 SM-G9600(starqltechn)"
66 help
67 Support for Samsung S9 SM-G9600(starqltechn) board.
68 Features:
69 - Qualcomm Snapdragon SDM845 SoC
70 - 4GiB RAM
71 - 64GiB UFS drive
72 select MISC_INIT_R
73 select SDM845
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030074
Sumit Garg89a8ec92022-07-12 12:42:12 +053075config TARGET_QCS404EVB
76 bool "Qualcomm Technologies, Inc. QCS404 EVB"
77 select LINUX_KERNEL_IMAGE_HEADER
Caleb Connolly878b26a2023-11-07 12:40:59 +000078 imply CLK_QCOM_QCS404
Sumit Garg89a8ec92022-07-12 12:42:12 +053079 help
80 Support for Qualcomm Technologies, Inc. QCS404 evaluation board.
81 Features:
82 - Qualcomm Snapdragon QCS404 SoC
83 - 1GiB RAM
84 - 8GiB eMMC, uSD slot
85
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020086endchoice
87
88source "board/qualcomm/dragonboard410c/Kconfig"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010089source "board/qualcomm/dragonboard820c/Kconfig"
Sumit Garg5b32da42022-07-12 12:42:08 +053090source "board/qualcomm/dragonboard845c/Kconfig"
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030091source "board/samsung/starqltechn/Kconfig"
Sumit Garg89a8ec92022-07-12 12:42:12 +053092source "board/qualcomm/qcs404-evb/Kconfig"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020093
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020094endif