summaryrefslogtreecommitdiffstats
path: root/src/soc/qualcomm/ipq40xx/Kconfig
blob: 0ce92731c06a744064794f435d4b5b86e0a038fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
config SOC_QC_IPQ40XX
	bool
	default n
	select ARCH_BOOTBLOCK_ARMV7
	select ARCH_VERSTAGE_ARMV7
	select ARCH_ROMSTAGE_ARMV7
	select ARCH_RAMSTAGE_ARMV7
	select HAVE_UART_SPECIAL
	select GENERIC_GPIO_LIB

if SOC_QC_IPQ40XX

config MEMLAYOUT_LD_FILE
	string
	default "src/soc/qualcomm/ipq40xx/memlayout.ld"

config GENERIC_UDELAY
	def_bool n

config VBOOT
	select VBOOT_STARTS_IN_BOOTBLOCK
	select VBOOT_SEPARATE_VERSTAGE
	select VBOOT_RETURN_FROM_VERSTAGE
	select VBOOT_VBNV_FLASH

config IPQ_QFN_PART
	bool
	default n
	help
	  Is the SoC a QFN part (as opposed to a BGA part)

config CDT_MBN
	string "CDT binary blob"
	default "cdt-AP.DK01.1-C1.bin"

config DDR_MBN
	string "DDR driver binary blob"
	default "ddr.mbn"

config TZ_MBN
	string "TZ binary blob"
	default "tzbsp_no_xpu.mbn"

config SBL_ELF
	depends on USE_BLOBS
	string "file name of the QCA SBL ELF"
	default "3rdparty/blobs/cpu/qualcomm/ipq40xx/sbl.elf"
	help
	  The path and filename of the binary blob containing
	  ipq40xx early initialization code, as supplied by the
	  vendor.

config SBL_UTIL_PATH
	depends on USE_BLOBS
	string "Path for utils to combine SBL_ELF and bootblock"
	default "util/qualcomm"
	help
	  Path for utils to combine SBL_ELF and bootblock

endif