blob: d49b37dc16fc19cf4882ad96105ed783608c4da1 [file] [log] [blame]
Arthur Heymans791ce582023-07-13 16:58:55 +02001## 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