1## SPDX-License-Identifier: GPL-2.0-only 2 3config SOC_QC_IPQ806X 4 bool 5 default n 6 select ARCH_BOOTBLOCK_ARMV7 7 select ARCH_VERSTAGE_ARMV7 8 select ARCH_ROMSTAGE_ARMV7 9 select ARCH_RAMSTAGE_ARMV7 10 select HAVE_UART_SPECIAL 11 select GENERIC_GPIO_LIB 12 select NO_MONOTONIC_TIMER 13 14if SOC_QC_IPQ806X 15 16config MEMLAYOUT_LD_FILE 17 string 18 default "src/soc/qualcomm/ipq806x/memlayout.ld" 19 20config VBOOT 21 select VBOOT_STARTS_IN_BOOTBLOCK 22 select VBOOT_VBNV_FLASH 23 select VBOOT_SEPARATE_VERSTAGE 24 select VBOOT_RETURN_FROM_VERSTAGE 25 26config SBL_BLOB 27 depends on USE_BLOBS 28 string "file name of the Qualcomm SBL blob" 29 default "3rdparty/blobs/cpu/qualcomm/ipq806x/uber-sbl.mbn" 30 help 31 The path and filename of the binary blob containing 32 ipq806x early initialization code, as supplied by the 33 vendor. 34 35endif 36