blob: 976c0e35fcef29bafecbbd6ea04459de852df275 [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
Neil Armstrongf0e46d42024-10-16 11:25:32 +020014config SYS_MALLOC_LEN
15 default 0x10000000
16
Ramon Fried8a1ed602018-05-28 23:55:49 +030017config SYS_MALLOC_F_LEN
18 default 0x2000
19
Simon Glassb59037b2023-09-26 08:14:25 -060020config SPL_SYS_MALLOC_F
21 default y
22
Ramon Fried8a1ed602018-05-28 23:55:49 +030023config SPL_SYS_MALLOC_F_LEN
24 default 0x2000
25
Caleb Connolly2bdb2522024-10-12 15:57:19 +020026config SYS_MALLOC_LEN
27 default 0x800000
28
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030029config LNX_KRNL_IMG_TEXT_OFFSET_BASE
30 default 0x80000000
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030031
Caleb Connollyfe1694c2024-02-26 17:26:24 +000032config SYS_BOARD
Sumit Garg6461bd772024-04-11 18:07:26 +053033 string "Snapdragon SoCs based board"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020034 help
Sumit Garg6461bd772024-04-11 18:07:26 +053035 Allows to specify the Snapdragon SoCs based board name.
36 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD>
37 will be used as the custom board directory.
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020038
Caleb Connollyfe1694c2024-02-26 17:26:24 +000039config SYS_CONFIG_NAME
40 string "Board configuration name"
41 default SYS_BOARD if SYS_BOARD != ""
42 default "qcom"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010043 help
Caleb Connollyfe1694c2024-02-26 17:26:24 +000044 This option contains information about board configuration name.
45 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
46 will be used for board configuration.
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020047
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020048endif