1if ARCH_SNAPDRAGON
2
3config SYS_SOC
4	default "snapdragon"
5
6config SYS_VENDOR
7	string "Snapdragon board vendor"
8	default "qualcomm"
9	help
10	  Allows to specify vendor for the Snapdragon SoCs based boards.
11	  Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
12	  will be used as the custom board directory.
13
14config SYS_MALLOC_F_LEN
15	default 0x2000
16
17config SPL_SYS_MALLOC_F
18	default y
19
20config SPL_SYS_MALLOC_F_LEN
21	default 0x2000
22
23config LNX_KRNL_IMG_TEXT_OFFSET_BASE
24	default 0x80000000
25
26config SYS_BOARD
27	string "Snapdragon SoCs based board"
28	help
29	  Allows to specify the Snapdragon SoCs based board name.
30	  Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
31	  will be used as the custom board directory.
32
33config SYS_CONFIG_NAME
34	string "Board configuration name"
35	default SYS_BOARD if SYS_BOARD != ""
36	default "qcom"
37	help
38	  This option contains information about board configuration name.
39	  Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
40	  will be used for board configuration.
41
42endif
43