blob: 58b3f92d3a5f057bf639885c6ac4d4e76a3c2c02 (
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
|
# SPDX-License-Identifier: GPL-2.0-only
if CPU_AMD_PI || SOC_AMD_PI
menu "AMD Platform Initialization"
source "src/vendorcode/amd/pi/Kconfig"
config AGESA_EXTRA_TIMESTAMPS
bool "Add instrumentation for AGESA calls"
default n
depends on DRIVERS_AMD_PI
help
Insert additional timestamps around each entrypoint into
AGESA vendorcode.
endmenu
endif
config SOC_AMD_OPENSIL
bool
help
Select this on SoCs that use openSIL.
source "src/vendorcode/amd/opensil/Kconfig"
|