Mateusz Kulikowski | 2507d82 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 1 | if ARCH_SNAPDRAGON |
| 2 | |
| 3 | config SYS_SOC |
| 4 | default "snapdragon" |
| 5 | |
Caleb Connolly | fe1694c | 2024-02-26 17:26:24 +0000 | [diff] [blame] | 6 | config SYS_VENDOR |
Sumit Garg | 6461bd77 | 2024-04-11 18:07:26 +0530 | [diff] [blame] | 7 | string "Snapdragon board vendor" |
Caleb Connolly | fe1694c | 2024-02-26 17:26:24 +0000 | [diff] [blame] | 8 | default "qualcomm" |
Sumit Garg | 6461bd77 | 2024-04-11 18:07:26 +0530 | [diff] [blame] | 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. |
Caleb Connolly | fe1694c | 2024-02-26 17:26:24 +0000 | [diff] [blame] | 13 | |
Ramon Fried | 8a1ed60 | 2018-05-28 23:55:49 +0300 | [diff] [blame] | 14 | config SYS_MALLOC_F_LEN |
| 15 | default 0x2000 |
| 16 | |
Simon Glass | b59037b | 2023-09-26 08:14:25 -0600 | [diff] [blame] | 17 | config SPL_SYS_MALLOC_F |
| 18 | default y |
| 19 | |
Ramon Fried | 8a1ed60 | 2018-05-28 23:55:49 +0300 | [diff] [blame] | 20 | config SPL_SYS_MALLOC_F_LEN |
| 21 | default 0x2000 |
| 22 | |
Dzmitry Sankouski | 4e6df40 | 2021-10-17 13:44:32 +0300 | [diff] [blame] | 23 | config LNX_KRNL_IMG_TEXT_OFFSET_BASE |
| 24 | default 0x80000000 |
Dzmitry Sankouski | 2826cbd | 2021-10-17 13:44:31 +0300 | [diff] [blame] | 25 | |
Caleb Connolly | fe1694c | 2024-02-26 17:26:24 +0000 | [diff] [blame] | 26 | config SYS_BOARD |
Sumit Garg | 6461bd77 | 2024-04-11 18:07:26 +0530 | [diff] [blame] | 27 | string "Snapdragon SoCs based board" |
Mateusz Kulikowski | ee5e70d | 2016-03-31 23:12:33 +0200 | [diff] [blame] | 28 | help |
Sumit Garg | 6461bd77 | 2024-04-11 18:07:26 +0530 | [diff] [blame] | 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. |
Mateusz Kulikowski | ee5e70d | 2016-03-31 23:12:33 +0200 | [diff] [blame] | 32 | |
Caleb Connolly | fe1694c | 2024-02-26 17:26:24 +0000 | [diff] [blame] | 33 | config SYS_CONFIG_NAME |
| 34 | string "Board configuration name" |
| 35 | default SYS_BOARD if SYS_BOARD != "" |
| 36 | default "qcom" |
Jorge Ramirez-Ortiz | 9f2d1b2 | 2018-01-10 11:33:50 +0100 | [diff] [blame] | 37 | help |
Caleb Connolly | fe1694c | 2024-02-26 17:26:24 +0000 | [diff] [blame] | 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. |
Mateusz Kulikowski | ee5e70d | 2016-03-31 23:12:33 +0200 | [diff] [blame] | 41 | |
Mateusz Kulikowski | 2507d82 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 42 | endif |