remove trailing whitespace
[coreboot.git] / src / mainboard / amd / inagua / agesawrapper.h
1 /*
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
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
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 AMD Ontario APPU SSID/SVID */
38 #define AMD_APU_SVID    0x1022
39 #define AMD_APU_SSID    0x1234
40 #define PCIE_BASE_ADDRESS   CONFIG_MMCONF_BASE_ADDRESS
41
42
43 enum {
44   PICK_DMI,       /* DMI Interface */
45   PICK_PSTATE,    /* Acpi Pstate SSDT Table */
46   PICK_SRAT,      /* SRAT Table */
47   PICK_SLIT,      /* SLIT Table */
48   PICK_WHEA_MCE,  /* WHEA MCE table */
49   PICK_WHEA_CMC,  /* WHEA CMV table */
50   PICK_ALIB,      /* SACPI SSDT table with ALIB implementation */
51 };
52
53
54
55 /*----------------------------------------------------------------------------------------
56  *                  T Y P E D E F S     A N D     S T R U C T U  R E S
57  *----------------------------------------------------------------------------------------
58  */
59
60 typedef struct {
61   UINT32 CalloutName;
62   AGESA_STATUS (*CalloutPtr) (UINT32 Func, UINT32 Data, VOID* ConfigPtr);
63 } BIOS_CALLOUT_STRUCT;
64
65 /*----------------------------------------------------------------------------------------
66  *           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
67  *----------------------------------------------------------------------------------------
68  */
69
70 /*----------------------------------------------------------------------------------------
71  *                          E X P O R T E D    F U N C T I O N S
72  *----------------------------------------------------------------------------------------
73  */
74
75 /*---------------------------------------------------------------------------------------
76  *                          L O C A L    F U N C T I O N S
77  *---------------------------------------------------------------------------------------
78  */
79
80 //void brazos_platform_stage(void);
81 UINT32 agesawrapper_amdinitreset (void);
82 UINT32 agesawrapper_amdinitearly (void);
83 UINT32 agesawrapper_amdinitenv (void);
84 UINT32 agesawrapper_amdinitlate (void);
85 UINT32 agesawrapper_amdinitpost (void);
86 UINT32 agesawrapper_amdinitmid (void);
87 UINT32 agesawrapper_amdreadeventlog (void);
88 UINT32 agesawrapper_amdinitmmio (void);
89 void *agesawrapper_getlateinitptr (int pick);
90
91 #endif