blob: 2fc1521e2d306f6d34abbf52f7767a44497f6106 [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
18
19config LNX_KRNL_IMG_TEXT_OFFSET_BASE
20 default 0x80000000
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030021
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020022choice
23 prompt "Snapdragon board select"
24
25config TARGET_DRAGONBOARD410C
26 bool "96Boards Dragonboard 410C"
Ramon Fried63596f02018-09-21 13:35:46 +030027 select BOARD_LATE_INIT
Stephan Gerhold2279dde2021-07-07 11:06:02 +020028 select ENABLE_ARM_SOC_BOOT0_HOOK
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020029 help
30 Support for 96Boards Dragonboard 410C. This board complies with
31 96Board Open Platform Specifications. Features:
32 - Qualcomm Snapdragon 410C SoC - APQ8016 (4xCortex A53, Adreno 306)
33 - 1GiB RAM
34 - 8GiB eMMC, uSD slot
35 - WiFi, Bluetooth and GPS module
36 - 2x Host, 1x Device USB port
37 - HDMI
38 - 20-pin low speed and 40-pin high speed expanders, 4 LED, 3 buttons
39
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010040config TARGET_DRAGONBOARD820C
41 bool "96Boards Dragonboard 820C"
42 help
43 Support for 96Boards Dragonboard 820C. This board complies with
44 96Board Open Platform Specifications. Features:
45 - Qualcomm Snapdragon 820C SoC - APQ8096 (4xKyro CPU)
46 - 3GiB RAM
47 - 32GiB UFS drive
48
Sumit Garg5b32da42022-07-12 12:42:08 +053049config TARGET_DRAGONBOARD845C
50 bool "96Boards Dragonboard 845C"
51 help
52 Support for 96Boards Dragonboard 845C aka Robotics RB3 Development
53 Platform. This board complies with 96Boards Open Platform
54 Specifications. Features:
55 - Qualcomm Snapdragon SDA845 SoC
56 - 4GiB RAM
57 - 64GiB UFS drive
58 select MISC_INIT_R
59 select SDM845
Sumit Garg5b32da42022-07-12 12:42:08 +053060
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030061config TARGET_STARQLTECHN
62 bool "Samsung S9 SM-G9600(starqltechn)"
63 help
64 Support for Samsung S9 SM-G9600(starqltechn) board.
65 Features:
66 - Qualcomm Snapdragon SDM845 SoC
67 - 4GiB RAM
68 - 64GiB UFS drive
69 select MISC_INIT_R
70 select SDM845
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030071
Sumit Garg89a8ec92022-07-12 12:42:12 +053072config TARGET_QCS404EVB
73 bool "Qualcomm Technologies, Inc. QCS404 EVB"
74 select LINUX_KERNEL_IMAGE_HEADER
75 help
76 Support for Qualcomm Technologies, Inc. QCS404 evaluation board.
77 Features:
78 - Qualcomm Snapdragon QCS404 SoC
79 - 1GiB RAM
80 - 8GiB eMMC, uSD slot
81
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020082endchoice
83
84source "board/qualcomm/dragonboard410c/Kconfig"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010085source "board/qualcomm/dragonboard820c/Kconfig"
Sumit Garg5b32da42022-07-12 12:42:08 +053086source "board/qualcomm/dragonboard845c/Kconfig"
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030087source "board/samsung/starqltechn/Kconfig"
Sumit Garg89a8ec92022-07-12 12:42:12 +053088source "board/qualcomm/qcs404-evb/Kconfig"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020089
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020090endif