mb/google/brya: Create rull variant
[coreboot2.git] / src / vendorcode / amd / pi / Kconfig
blob7672ac38da2564fd330b363e457b672c74c617a8
1 ## SPDX-License-Identifier: BSD-3-Clause
4 # Copyright (c) 2013 - 2014, Sage Electronic Engineering, LLC
5 # Copyright (C) 2016 Advanced Micro Devices, Inc.
6 # All rights reserved.
8 # Redistribution and use in source and binary forms, with or without
9 # modification, are permitted provided that the following conditions are met:
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in the
14 #       documentation and/or other materials provided with the distribution.
15 #     * Neither the name of Advanced Micro Devices, Inc. nor the names of
16 #       its contributors may be used to endorse or promote products derived
17 #       from this software without specific prior written permission.
19 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 # DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
23 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 if CPU_AMD_PI_00730F01 || SOC_AMD_STONEYRIDGE
33 config AGESA_BINARY_PI_VENDORCODE_PATH
34         string "AGESA PI directory path"
35         default "src/vendorcode/amd/pi/00730F01" if CPU_AMD_PI_00730F01
36         default "src/vendorcode/amd/pi/00670F00" if AMD_APU_MERLINFALCON
37         default "src/vendorcode/amd/pi/00670F00" if AMD_APU_STONEYRIDGE || AMD_APU_PRAIRIEFALCON
38         help
39           Specify where to find the AGESA header files
40           for AMD platform initialization.
42 config AGESA_BINARY_PI_FILE
43         string "AGESA PI binary file name"
44         default "3rdparty/blobs/pi/amd/00730F01/FT3b/AGESA.bin" if CPU_AMD_PI_00730F01
45         default "3rdparty/amd_blobs/stoneyridge/pi/CZ/\$(CONFIG_AMD_SOC_PACKAGE)/AGESA.bin" if AMD_APU_MERLINFALCON
46         default "3rdparty/amd_blobs/stoneyridge/pi/ST/\$(CONFIG_AMD_SOC_PACKAGE)/AGESA.bin" if AMD_APU_PRAIRIEFALCON
47         default "3rdparty/amd_blobs/stoneyridge/pi/ST/\$(CONFIG_AMD_SOC_PACKAGE)/AGESA.bin" if AMD_APU_STONEYRIDGE
48         help
49           Specify the binary file to use for AMD platform initialization.
51 config AGESA_BINARY_PI_AS_STAGE
52         bool "AGESA Binary PI is added as stage to CBFS."
53         depends on SOC_AMD_STONEYRIDGE
54         help
55           AGESA will be added as a stage utilizing --xip cbfstool options
56           as needed relocating the image to the proper location in memory-mapped
57           cpu address space. It's required that the file be in ELF format
58           containing the relocations necessary for relocating at runtime.
60 config AGESA_SPLIT_MEMORY_FILES
61         bool "Split AGESA Binary PI into pre- and post-memory files."
62         depends on AGESA_BINARY_PI_AS_STAGE
63         default n
64         help
65           Specifies that AGESA is split into two binaries for pre- and
66           post-memory.
68 config AGESA_PRE_MEMORY_BINARY_PI_FILE
69         string "Pre memory Binary PI file name"
70         depends on AGESA_SPLIT_MEMORY_FILES
71         default "3rdparty/blobs/pi/amd/00670F00/FT4/AGESA_premem.elf" if SOC_AMD_STONEYRIDGE
72         help
73           Specify the binary file to use for pre-memory AMD platform
74           initialization.
76 config AGESA_POST_MEMORY_BINARY_PI_FILE
77         string "Post memory Binary PI file name"
78         depends on AGESA_SPLIT_MEMORY_FILES
79         default "3rdparty/blobs/pi/amd/00670F00/FT4/AGESA_postmem.elf" if SOC_AMD_STONEYRIDGE
80         help
81           Specify the binary file to use for post-memory AMD platform
82           initialization.
84 config AGESA_CBFS_NAME
85         string
86         default "AGESA"
88 config AGESA_PRE_MEMORY_CBFS_NAME
89         string
90         default "AGESA_PRE_MEM"
92 config AGESA_POST_MEMORY_CBFS_NAME
93         string
94         default "AGESA_POST_MEM"
96 config AGESA_BINARY_PI_LOCATION
97         hex "AGESA PI binary address in ROM"
98         default 0xFFE00000
99         depends on !AGESA_BINARY_PI_AS_STAGE
100         help
101           Specify the ROM address at which to store the binary Platform
102           Initialization code.
104 endif