]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/mach-snapdragon/Kconfig
Kconfig: Remove all default n/no options
[thirdparty/u-boot.git] / arch / arm / mach-snapdragon / Kconfig
CommitLineData
08592136
MK
1if ARCH_SNAPDRAGON
2
3config SYS_SOC
4 default "snapdragon"
5
f0355266
RF
6config SYS_MALLOC_F_LEN
7 default 0x2000
8
7431b0ad
SG
9config SPL_SYS_MALLOC_F
10 default y
11
f0355266
RF
12config SPL_SYS_MALLOC_F_LEN
13 default 0x2000
14
4cbc16ce
DS
15config SDM845
16 bool "Qualcomm Snapdragon 845 SoC"
80565ec6
DS
17 select LINUX_KERNEL_IMAGE_HEADER
18
19config LNX_KRNL_IMG_TEXT_OFFSET_BASE
20 default 0x80000000
4cbc16ce 21
626f048b
MK
22choice
23 prompt "Snapdragon board select"
24
25config TARGET_DRAGONBOARD410C
26 bool "96Boards Dragonboard 410C"
2df573e6 27 select BOARD_LATE_INIT
0204d1b5 28 select ENABLE_ARM_SOC_BOOT0_HOOK
626f048b
MK
29 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
4b684a6b
JRO
40config 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
d35b2113
SG
49config 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
d35b2113 60
80565ec6
DS
61config 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
80565ec6 71
bf95d178
SG
72config 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
626f048b
MK
82endchoice
83
84source "board/qualcomm/dragonboard410c/Kconfig"
4b684a6b 85source "board/qualcomm/dragonboard820c/Kconfig"
d35b2113 86source "board/qualcomm/dragonboard845c/Kconfig"
80565ec6 87source "board/samsung/starqltechn/Kconfig"
bf95d178 88source "board/qualcomm/qcs404-evb/Kconfig"
626f048b 89
08592136 90endif