blob: 96e44e2c54919d24a0140998e058af339765a9df [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
7 default "qualcomm"
8
Ramon Fried8a1ed602018-05-28 23:55:49 +03009config SYS_MALLOC_F_LEN
10 default 0x2000
11
Simon Glassb59037b2023-09-26 08:14:25 -060012config SPL_SYS_MALLOC_F
13 default y
14
Ramon Fried8a1ed602018-05-28 23:55:49 +030015config SPL_SYS_MALLOC_F_LEN
16 default 0x2000
17
Dzmitry Sankouski4e6df402021-10-17 13:44:32 +030018config LNX_KRNL_IMG_TEXT_OFFSET_BASE
19 default 0x80000000
Dzmitry Sankouski2826cbd2021-10-17 13:44:31 +030020
Caleb Connollyfe1694c2024-02-26 17:26:24 +000021config SYS_BOARD
22 string "Qualcomm custom board"
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020023 help
Caleb Connollyfe1694c2024-02-26 17:26:24 +000024 The Dragonboard 410c and 820c have additional board init
25 code that isn't shared with other Qualcomm boards.
26 Based on this option board/qualcomm/<CONFIG_SYS_BOARD> will
27 be used.
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020028
Caleb Connollyfe1694c2024-02-26 17:26:24 +000029config SYS_CONFIG_NAME
30 string "Board configuration name"
31 default SYS_BOARD if SYS_BOARD != ""
32 default "qcom"
Jorge Ramirez-Ortiz9f2d1b22018-01-10 11:33:50 +010033 help
Caleb Connollyfe1694c2024-02-26 17:26:24 +000034 This option contains information about board configuration name.
35 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
36 will be used for board configuration.
Mateusz Kulikowskiee5e70d2016-03-31 23:12:33 +020037
Mateusz Kulikowski2507d822016-03-31 23:12:32 +020038endif