blob: 6295a65c383a7fadda2fcadfd059df01ddeb1c1a [file] [log] [blame]
zbao7d94cf92012-07-02 14:19:14 +08001/* $NoKeywords:$ */
2/**
3 * @file
4 *
5 * AMD Heap Manager and Heap Allocation APIs, and related functions.
6 *
7 * Contains code that initialize, maintain, and allocate the heap space.
8 *
9 * @xrefitem bom "File Content Label" "Release Content"
10 * @e project: AGESA
11 * @e sub-project: CPU
12 * @e \$Revision: 64574 $ @e \$Date: 2012-01-25 01:01:51 -0600 (Wed, 25 Jan 2012) $
13 *
14 */
15/*
16 ******************************************************************************
17 *
Siyuan Wang641f00c2013-06-08 11:50:55 +080018 * Copyright (c) 2008 - 2012, Advanced Micro Devices, Inc.
19 * All rights reserved.
zbao7d94cf92012-07-02 14:19:14 +080020 *
Siyuan Wang641f00c2013-06-08 11:50:55 +080021 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions are met:
23 * * Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * * Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 * * Neither the name of Advanced Micro Devices, Inc. nor the names of
29 * its contributors may be used to endorse or promote products derived
30 * from this software without specific prior written permission.
zbao7d94cf92012-07-02 14:19:14 +080031 *
Siyuan Wang641f00c2013-06-08 11:50:55 +080032 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
33 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
34 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
35 * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
36 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
37 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
39 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
zbao7d94cf92012-07-02 14:19:14 +080042 ******************************************************************************
43 */
44
45#ifndef _HEAP_MANAGER_H_
46#define _HEAP_MANAGER_H_
47
48/*---------------------------------------------------------------------------------------
49 * M I X E D (Definitions And Macros / Typedefs, Structures, Enums)
50 *---------------------------------------------------------------------------------------
51 */
52
53
54/*---------------------------------------------------------------------------------------
55 * D E F I N I T I O N S A N D M A C R O S
56 *---------------------------------------------------------------------------------------
57 */
58#define AMD_MTRR_VARIABLE_BASE0 0x200
59#define AMD_MTRR_VARIABLE_HEAP_BASE 0x20A
60#define AMD_MTRR_VARIABLE_HEAP_MASK (AMD_MTRR_VARIABLE_HEAP_BASE + 1)
61
62#define AMD_HEAP_START_ADDRESS 0x400000ul
63#define AMD_HEAP_REGION_END_ADDRESS 0xBFFFFFul
64#define AMD_HEAP_SIZE_PER_CORE 0x010000ul
65#define AMD_HEAP_INVALID_HEAP_OFFSET 0xFFFFFFFFul
66#define AMD_HEAP_MTRR_MASK ((0xFFFFFFFFFFFFF800ull & (((UINT64)AMD_HEAP_SIZE_PER_CORE ^ (-1)) + 1)) | 0x800)
67#define AMD_HEAP_SIZE_DWORD_PER_CORE (AMD_HEAP_SIZE_PER_CORE / 4)
68
69#define AMD_TEMP_TOM 0x20000000ul // Set TOM to 512 MB (temporary value)
70#define AMD_VAR_MTRR_ENABLE_BIT 0x100000ul // bit 20
71
72#define AMD_HEAP_RAM_ADDRESS 0xB0000ul
73
74#define HEAP_SIGNATURE_VALID 0x50414548ul // Signature: 'HEAP'
75#define HEAP_SIGNATURE_INVALID 0x00000000ul // Signature cleared
76
77///Heap Manager Life cycle
78#define HEAP_DO_NOT_EXIST_YET 1
79#define HEAP_LOCAL_CACHE 2
80#define HEAP_TEMP_MEM 3
81#define HEAP_SYSTEM_MEM 4
82#define HEAP_DO_NOT_EXIST_ANYMORE 5
83#define HEAP_S3_RESUME 6
84#define HEAP_RUNTIME_SYSTEM_MEM 7
85
86///Heap callout
87#define HEAP_CALLOUT_BOOTTIME 0
88#define HEAP_CALLOUT_RUNTIME 1
89
90#define AMD_MTRR_FIX64k_00000 0x250
91#define AMD_MTRR_FIX16k_80000 0x258
92#define AMD_MTRR_FIX16k_A0000 0x259
93#define AMD_MTRR_FIX4k_C0000 0x268
94#define AMD_MTRR_FIX4k_C8000 0x269
95#define AMD_MTRR_FIX4k_D0000 0x26A
96#define AMD_MTRR_FIX4k_D8000 0x26B
97#define AMD_MTRR_FIX4k_E0000 0x26C
98#define AMD_MTRR_FIX4k_E8000 0x26D
99#define AMD_MTRR_FIX4k_F0000 0x26E
100#define AMD_MTRR_FIX4k_F8000 0x26F
101
102#define AMD_MTRR_FIX64K_WB_DRAM 0x1E
103#define AMD_MTRR_FIX64K_WT_DRAM 0x1C
104#define AMD_MTRR_FIX64K_UC_DRAM 0x18
105#define AMD_MTRR_FIX16K_WB_DRAM 0x1E1E1E1E1E1E1E1Eull
106#define AMD_MTRR_FIX16K_WT_DRAM 0x1C1C1C1C1C1C1C1Cull
107#define AMD_MTRR_FIX16K_UC_DRAM 0x1818181818181818ull
108#define AMD_MTRR_FIX4K_WB_DRAM 0x1E1E1E1E1E1E1E1Eull
109#define AMD_MTRR_FIX4K_WT_DRAM 0x1C1C1C1C1C1C1C1Cull
110#define AMD_MTRR_FIX4K_UC_DRAM 0x1818181818181818ull
111
112/*---------------------------------------------------------------------------------------
113 * T Y P E D E F S, S T R U C T U R E S, E N U M S
114 *---------------------------------------------------------------------------------------
115 */
116/// Allocate Heap Parameters
117typedef struct _ALLOCATE_HEAP_PARAMS {
118 UINT32 RequestedBufferSize; ///< Size of buffer.
119 UINT32 BufferHandle; ///< An unique ID of buffer.
120 UINT8 Persist; ///< A flag. If marked, to be stored and passed to AmdInitLate.
121 UINT8 *BufferPtr; ///< Pointer to buffer.
122} ALLOCATE_HEAP_PARAMS;
123
124/// Locate Heap Parameters
125typedef struct _LOCATE_HEAP_PTR {
126 UINT32 BufferHandle; ///< An unique ID of buffer.
127 UINT32 BufferSize; ///< Data buffer size.
128 UINT8 *BufferPtr; ///< Pointer to buffer.
129} LOCATE_HEAP_PTR;
130
131/// Heap Node Header
132typedef struct _BUFFER_NODE {
133 UINT32 BufferHandle; ///< An unique ID of buffer.
134 UINT32 BufferSize; ///< Size of buffer.
135 UINT8 Persist; ///< A flag. If marked, to be stored and passed to AmdInitLate.
136 UINT8 PadSize; ///< Size of pad.
137 UINT32 OffsetOfNextNode; ///< Offset of next node (relative to the base).
138} BUFFER_NODE;
139
140/// Heap Manager
141typedef struct _HEAP_MANAGER {
142 UINT32 Signature; ///< a signature to indicate if the heap is valid.
143 UINT32 UsedSize; ///< Used size of heap.
144 UINT32 FirstActiveBufferOffset; ///< Offset of the first active buffer.
145 UINT32 FirstFreeSpaceOffset; ///< Offset of the first free space.
146} HEAP_MANAGER;
147
148/// AGESA Buffer Handles (These are reserved)
149typedef enum {
150 AMD_INIT_RESET_HANDLE = 0x000A000, ///< Assign 0x000A000 buffer handle to AmdInitReset routine.
151 AMD_INIT_EARLY_HANDLE, ///< Assign 0x000A001 buffer handle to AmdInitEarly routine.
152 AMD_INIT_POST_HANDLE, ///< Assign 0x000A002 buffer handle to AmdInitPost routine.
153 AMD_INIT_ENV_HANDLE, ///< Assign 0x000A003 buffer handle to AmdInitEnv routine.
154 AMD_INIT_MID_HANDLE, ///< Assign 0x000A004 buffer handle to AmdInitMid routine.
155 AMD_INIT_LATE_HANDLE, ///< Assign 0x000A005 buffer handle to AmdInitLate routine.
156 AMD_INIT_RESUME_HANDLE, ///< Assign 0x000A006 buffer handle to AmdInitResume routine.
157 AMD_LATE_RUN_AP_TASK_HANDLE, ///< Assign 0x000A007 buffer handle to AmdLateRunApTask routine.
158 AMD_S3_SAVE_HANDLE, ///< Assign 0x000A008 buffer handle to AmdS3Save routine.
159 AMD_S3_LATE_RESTORE_HANDLE, ///< Assign 0x000A009 buffer handle to AmdS3LateRestore routine.
160 AMD_S3_SCRIPT_SAVE_TABLE_HANDLE, ///< Assign 0x000A00A buffer handle to be used for S3 save table
161 AMD_S3_SCRIPT_TEMP_BUFFER_HANDLE, ///< Assign 0x000A00B buffer handle to be used for S3 save table
162 AMD_CPU_AP_TASKING_HANDLE, ///< Assign 0x000A00C buffer handle to AP tasking input parameters.
163 AMD_REC_MEM_SOCKET_HANDLE, ///< Assign 0x000A00D buffer handle to save socket with memory in memory recovery mode.
164 AMD_MEM_AUTO_HANDLE, ///< Assign 0x000A00E buffer handle to AmdMemAuto routine.
165 AMD_MEM_SPD_HANDLE, ///< Assign 0x000A00F buffer handle to AmdMemSpd routine.
166 AMD_MEM_DATA_HANDLE, ///< Assign 0x000A010 buffer handle to MemData
167 AMD_MEM_TRAIN_BUFFER_HANDLE, ///< Assign 0x000A011 buffer handle to allocate buffer for training
168 AMD_MEM_S3_DATA_HANDLE, ///< Assign 0x000A012 buffer handle to special case register for S3
169 AMD_MEM_S3_NB_HANDLE, ///< Assign 0x000A013 buffer handle to NB block for S3
170 AMD_MEM_S3_MR0_DATA_HANDLE, ///< Assign 0x000A014 buffer handle to MR0 data block for S3
171 AMD_UMA_INFO_HANDLE, ///< Assign 0x000A015 buffer handle to be used for Uma information
172 AMD_DMI_MEM_DEV_INFO_HANDLE, ///< Assign 0x000A016 buffer handle to DMI Type16 17 19 20 information
173 HT_STATE_DATA_HANDLE, ///< Assign 0x000A017 buffer handle to HT State Data
174 PRESERVE_MAIL_BOX_HANDLE, ///< Assign 0x000A018 buffer handle for Preserve Mailbox Feature.
175 EVENT_LOG_BUFFER_HANDLE, ///< Assign 0x000A019 buffer handle to Event Log
176 IDS_CONTROL_HANDLE, ///< Assign 0x000A01A buffer handle to AmdIds routine.
177 IDS_HT_DATA_HANDLE, ///< Assign 0x000A01B buffer handle to Ht IDS control
178 IDS_HDT_OUT_BUFFER_HANDLE, ///< Assign 0x000A01C buffer handle to be used for HDTOUT support.
179 IDS_CHECK_POINT_PERF_HANDLE, ///< Assign 0x000A01D buffer handle to Performance analysis
180 AMD_PCIE_COMPLEX_DATA_HANDLE, ///< Assign 0x000A01E buffer handle to be used for PCIe support
181 AMD_MEM_SYS_DATA_HANDLE, ///< Assign 0x000A01F buffer handle to be used for memory data structure
182 AMD_GNB_SMU_CONFIG_HANDLE, ///< Assign 0x000A020 buffer handle to be used for GNB SMU configuration
183 AMD_PP_FUSE_TABLE_HANDLE, ///< Assign 0x000A021 buffer handle to be used for TT fuse table
184 AMD_GFX_PLATFORM_CONFIG_HANDLE, ///< Assign 0x000A022 buffer handle to be used for Gfx platform configuration
185 AMD_GNB_TEMP_DATA_HANDLE, ///< Assign 0x000A024 buffer handle for GNB general purpose data block
186 AMD_MEM_2D_RDQS_HANDLE, ///< Assign 0x000A025 buffer handle for 2D training
187 AMD_GNB_IOMMU_SCRATCH_MEM_HANDLE, ///< Assign 0x000A026 buffer handle to be used for GNB IOMMU scratch memory
188 AMD_MEM_S3_SAVE_HANDLE, ///< Assign 0x000A027 buffer handle for memory data saved right after memory init
189 AMD_MEM_2D_RDQS_RIM_HANDLE, ///< Assign 0x000A028 buffer handle for 2D training Eye RIM Search
190 AMD_CPU_NB_PSTATE_FIXUP_HANDLE, ///< Assign 0x000A029 buffer handle for an NB P-state workaround
191 AMD_MEM_CRAT_INFO_BUFFER_HANDLE, ///< Assign 0x000A02B buffer handle for CRAT Memory affinity component structure
192 AMD_MEM_MISC_HANDLES_START = 0x1000000, ///< Reserve 0x1000000 to 0x1FFFFFF buffer handle
193 AMD_MEM_MISC_HANDLES_END = 0x1FFFFFF, ///< miscellaneous memory init tasks' buffers.
194 AMD_HEAP_IN_MAIN_MEMORY_HANDLE = 0x8000000, ///< Assign 0x8000000 to AMD_HEAP_IN_MAIN_MEMORY_HANDLE.
195 SOCKET_DIE_MAP_HANDLE = 0x534F4B54, ///< 'sokt'
196 NODE_ID_MAP_HANDLE = 0x4E4F4445, ///< 'node'
197 HOP_COUNT_TABLE_HANDLE = 0x484F5053, ///< 'hops'
198 LOCAL_AP_MAIL_BOX_CACHE_HANDLE = 0x414D4258, ///< 'ambx'
199 AMD_FCH_RESET_DATA_BLOCK_HANDLE = 0x46434852, ///< 'FCHR' Buffer handle for FCH private data block at InitReset
200 AMD_FCH_DATA_BLOCK_HANDLE = 0x46434845, ///< 'FCHE' Buffer handle for FCH private data block at InitEnv
201 IDS_TRAP_TABLE_HANDLE = 0x49524547, ///< 'IREG' Handle for IDS register table
202 IDS_SAVE_IDTR_HANDLE = 0x49445452, ///< 'IDTR'
203 IDS_BSC_IDT_HANDLE = 0x42534349, ///< 'BSCI' BSC Idt table
204 IDS_NV_TO_CMOS_HANDLE = 0x534D4349, ///< 'ICMS' Handle for IDS CMOS save
205 IDS_GRA_HANDLE = 0x41524749, ///< 'IGRA' Handle for IDS GRA save
206 IDS_EXTEND_HANDLE = 0x54584549 ///< 'IEXT' Handle for IDS extend module
207} AGESA_BUFFER_HANDLE;
208
209
210/*---------------------------------------------------------------------------------------
211 * F U N C T I O N P R O T O T Y P E
212 *---------------------------------------------------------------------------------------
213 */
214
215AGESA_STATUS
216HeapManagerInit (
217 IN AMD_CONFIG_PARAMS *StdHeader
218 );
219
220AGESA_STATUS
221HeapAllocateBuffer (
222 IN OUT ALLOCATE_HEAP_PARAMS *AllocateHeapParams,
223 IN OUT AMD_CONFIG_PARAMS *StdHeader
224 );
225
226AGESA_STATUS
227HeapDeallocateBuffer (
228 IN UINT32 BufferHandle,
229 IN AMD_CONFIG_PARAMS *StdHeader
230 );
231
232AGESA_STATUS
233HeapLocateBuffer (
234 IN OUT LOCATE_HEAP_PTR *LocateHeap,
235 IN AMD_CONFIG_PARAMS *StdHeader
236 );
237
238UINT64
239HeapGetBaseAddress (
240 IN AMD_CONFIG_PARAMS *StdHeader
241 );
242
243AGESA_STATUS
244EventLogInitialization (
245 IN AMD_CONFIG_PARAMS *StdHeader
246 );
247#endif // _HEAP_MANAGER_H_