• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## SPDX-License-Identifier: GPL-2.0-only
2
3config SOC_MEDIATEK_MT8173
4	bool
5	default n
6	select ARM64_A53_ERRATUM_843419
7	select ARCH_BOOTBLOCK_ARMV8_64
8	select ARCH_RAMSTAGE_ARMV8_64
9	select ARCH_ROMSTAGE_ARMV8_64
10	select ARCH_VERSTAGE_ARMV8_64
11	select ARM64_USE_ARM_TRUSTED_FIRMWARE
12	select HAVE_DEBUG_RAM_SETUP
13	select HAVE_UART_SPECIAL
14	select GENERIC_GPIO_LIB
15	select RTC
16	select SOC_MEDIATEK_COMMON
17
18if SOC_MEDIATEK_MT8173
19
20config MEMLAYOUT_LD_FILE
21	string
22	default "src/soc/mediatek/mt8173/memlayout.ld"
23
24config VBOOT
25	select VBOOT_MUST_REQUEST_DISPLAY
26	select VBOOT_STARTS_IN_BOOTBLOCK
27	select VBOOT_SEPARATE_VERSTAGE
28
29config DEBUG_SOC_DRIVER
30	bool "The top level switch for soc driver debug messages"
31	default n
32	select DEBUG_RAM_SETUP
33	select DEBUG_I2C
34	select DEBUG_PMIC
35	select DEBUG_PMIC_WRAP
36
37config DEBUG_I2C
38	bool "Output verbose I2C related debug messages"
39	default n
40	help
41	  This option enables I2C related debug messages.
42
43config DEBUG_PMIC
44	bool "Output verbose PMIC related debug messages"
45	default n
46	help
47	  This option enables PMIC related debug messages.
48
49config DEBUG_PMIC_WRAP
50	bool "Output verbose PMIC WRAP related debug messages"
51	default n
52	help
53	  This option enables PMIC WRAP related debug messages.
54endif
55