blob: 51e438d497380252ea63c68cd0672746f32f21a7 [file] [log] [blame]
efdesign9895b66112011-07-20 13:23:04 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
efdesign9895b66112011-07-20 13:23:04 -060018 */
19
20/*----------------------------------------------------------------------------------------
21 * M O D U L E S U S E D
22 *----------------------------------------------------------------------------------------
23 */
24
25
26#ifndef _AGESAWRAPPER_H_
27#define _AGESAWRAPPER_H_
28
29#include <stdint.h>
30#include "Porting.h"
31#include "AGESA.h"
32
33/*----------------------------------------------------------------------------------------
34 * D E F I N I T I O N S A N D M A C R O S
35 *----------------------------------------------------------------------------------------
36 */
37#define PCIE_BASE_ADDRESS CONFIG_MMCONF_BASE_ADDRESS
38
39enum {
40 PICK_DMI, /* DMI Interface */
41 PICK_PSTATE, /* Acpi Pstate SSDT Table */
42 PICK_SRAT, /* SRAT Table */
43 PICK_SLIT, /* SLIT Table */
44 PICK_WHEA_MCE, /* WHEA MCE table */
45 PICK_WHEA_CMC, /* WHEA CMV table */
46 PICK_ALIB, /* SACPI SSDT table with ALIB implementation */
47};
48
49
50
51/*----------------------------------------------------------------------------------------
52 * T Y P E D E F S A N D S T R U C T U R E S
53 *----------------------------------------------------------------------------------------
54 */
55
efdesign9895b66112011-07-20 13:23:04 -060056/*----------------------------------------------------------------------------------------
57 * P R O T O T Y P E S O F L O C A L F U N C T I O N S
58 *----------------------------------------------------------------------------------------
59 */
60
61/*----------------------------------------------------------------------------------------
62 * E X P O R T E D F U N C T I O N S
63 *----------------------------------------------------------------------------------------
64 */
65
66/*---------------------------------------------------------------------------------------
67 * L O C A L F U N C T I O N S
68 *---------------------------------------------------------------------------------------
69 */
70
71UINT32 agesawrapper_amdinitreset (void);
72UINT32 agesawrapper_amdinitearly (void);
73UINT32 agesawrapper_amdinitenv (void);
74UINT32 agesawrapper_amdinitlate (void);
75UINT32 agesawrapper_amdinitpost (void);
76UINT32 agesawrapper_amdinitmid (void);
77UINT32 agesawrapper_amdreadeventlog (UINT8 HeapStatus);
78UINT32 agesawrapper_amdinitmmio (void);
79void *agesawrapper_getlateinitptr (int pick);
Kyösti Mälkki838e2112014-05-05 12:21:04 +030080UINT32 agesawrapper_amdlaterunaptask (UINT32 Func, UINT32 Data, VOID *ConfigPtr);
efdesign9895b66112011-07-20 13:23:04 -060081
Kyösti Mälkki005028e2014-06-19 23:12:15 +030082static inline UINT32 agesawrapper_amdS3Save(void) { return 0; }
efdesign9895b66112011-07-20 13:23:04 -060083#endif