xref: /aosp_15_r20/external/coreboot/src/vendorcode/amd/opensil/Kconfig.debug (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1## SPDX-License-Identifier: GPL-2.0-only
2
3if SOC_AMD_OPENSIL
4
5config OPENSIL_DEBUG_OUTPUT
6	bool "OpenSIL console output"
7	default y
8	help
9	  Select this if you want OpenSIL debug messages compiled
10	  in the image.
11
12if OPENSIL_DEBUG_OUTPUT
13
14config OPENSIL_DEBUG_PREFIX
15	bool "Print the openSIL prefix"
16	default n
17	help
18	  This prints the function name and line level in front of the
19	  actual message.
20
21config OPENSIL_DEBUG_APOB
22	bool "Enable APOB messages"
23	default n
24	help
25	  Enable printing APOB related messages.
26
27config OPENSIL_DEBUG_NBIO
28	bool "Enable NBIO messages"
29	default y
30	help
31	  Enable printing NBIO related messages.
32
33config OPENSIL_DEBUG_CCX
34	bool "Enable CCX messages"
35	default y
36	help
37	  Enable printing CCX related messages.
38
39config OPENSIL_DEBUG_SMU
40	bool "Enable SMU messages"
41	default y
42	help
43	  Enable printing SMU related messages.
44
45config OPENSIL_DEBUG_DF
46	bool "Enable DF messages"
47	default y
48	help
49	  Enable printing DF related messages.
50
51config OPENSIL_DEBUG_MEM
52	bool "Enable MEM messages"
53	default y
54	help
55	  Enable printing MEM related messages.
56
57config OPENSIL_DEBUG_FCH
58	bool "Enable FCH messages"
59	default y
60	help
61	  Enable printing FCH related messages.
62
63config OPENSIL_DEBUG_RAS
64	bool "Enable RAS messages"
65	default y
66	help
67	  Enable printing RAS related messages.
68
69endif # OPENSIL_DEBUG_OUTPUT
70
71endif # SOC_AMD_OPENSIL
72