summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8173/Kconfig
blob: 7558ad18d225bac256c711f1075f137c8c8a0f06 (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_MEDIATEK_MT8173
	bool
	default n
	select ARM64_A53_ERRATUM_843419
	select ARCH_BOOTBLOCK_ARMV8_64
	select ARCH_RAMSTAGE_ARMV8_64
	select ARCH_ROMSTAGE_ARMV8_64
	select ARCH_VERSTAGE_ARMV8_64
	select ARM64_USE_ARM_TRUSTED_FIRMWARE
	select BOOTBLOCK_CONSOLE
	select HAVE_UART_SPECIAL
	select HAVE_MONOTONIC_TIMER
	select GENERIC_UDELAY
	select GENERIC_GPIO_LIB
	select HAVE_HARD_RESET
	select RTC

if SOC_MEDIATEK_MT8173

config CHROMEOS
	select VBOOT_OPROM_MATTERS
	select VBOOT_STARTS_IN_BOOTBLOCK
	select SEPARATE_VERSTAGE

config MEMORY_TEST
	bool
	default n

config DEBUG_SOC_DRIVER
	bool "The top level switch for soc driver debug message"
	default n
	select DEBUG_DRAM
	select DEBUG_I2C
	select DEBUG_PMIC
	select DEBUG_PMIC_WRAP

config DEBUG_DRAM
	bool "Output verbose DRAM related debug message"
	default n
	help
	  This option enables additional DRAM related debug messages.

config DEBUG_I2C
	bool "Output verbose I2C related debug message"
	default n
	help
	  This option enables I2C related debug message.

config DEBUG_PMIC
	bool "Output verbose PMIC related debug message"
	default n
	help
	  This option enables PMIC related debug message.

config DEBUG_PMIC_WRAP
	bool "Output verbose PMIC WRAP related debug message"
	default n
	help
	  This option enables PMIC WRAP related debug message.
endif