blob: 536960b83c3bb253ab6bacf5e4bf7f5f065193ef [file] [log] [blame]
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02001if ARCH_SNAPDRAGON
2
3config SYS_SOC
4 default "snapdragon"
5
Caleb Connollyfe1694c2024-02-26 17:26:24 +00006config SYS_VENDOR
Sumit Garg6461bd772024-04-11 18:07:26 +05307 string "Snapdragon board vendor"
Caleb Connollyfe1694c2024-02-26 17:26:24 +00008 default "qualcomm"
Sumit Garg6461bd772024-04-11 18:07:26 +05309 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.
Caleb Connollyfe1694c2024-02-26 17:26:24 +000013
Ramon Fried8a1ed602018-05-28 23:55:49 +030014config SYS_MALLOC_F_LEN
15 default 0x2000
16
Simon Glassb59037b2023-09-26 08:14:25 -060017config SPL_SYS_MALLOC_F
18 default y
19
Ramon Fried8a1ed602018-05-28 23:55:49 +030020config SPL_SYS_MALLOC_F_LEN
21 default 0x2000
22
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030023config LNX_KRNL_IMG_TEXT_OFFSET_BASE
24 default 0x80000000
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030025
Caleb Connollyfe1694c2024-02-26 17:26:24 +000026config SYS_BOARD
Sumit Garg6461bd772024-04-11 18:07:26 +053027 string "Snapdragon SoCs based board"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020028 help
Sumit Garg6461bd772024-04-11 18:07:26 +053029 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.
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020032
Caleb Connollyfe1694c2024-02-26 17:26:24 +000033config SYS_CONFIG_NAME
34 string "Board configuration name"
35 default SYS_BOARD if SYS_BOARD != ""
36 default "qcom"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010037 help
Caleb Connollyfe1694c2024-02-26 17:26:24 +000038 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.
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020041
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020042endif