AGESA,binaryPI: Replace use of __PRE_RAM__
Change-Id: Id878fd33ec3d2de640d9a488058a805be3ccd223 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34997 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
@ -160,18 +160,19 @@ AGESA_STATUS agesa_GfxGetVbiosImage(UINT32 Func, UINTN FchData, VOID *ConfigPrt)
|
|||||||
|
|
||||||
AGESA_STATUS agesa_ReadSpd (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
AGESA_STATUS agesa_ReadSpd (UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status = AGESA_UNSUPPORTED;
|
if (!ENV_ROMSTAGE)
|
||||||
#ifdef __PRE_RAM__
|
return AGESA_UNSUPPORTED;
|
||||||
Status = AmdMemoryReadSPD (Func, Data, ConfigPtr);
|
|
||||||
#endif
|
return AmdMemoryReadSPD (Func, Data, ConfigPtr);
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AGESA_STATUS agesa_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
AGESA_STATUS agesa_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status = AGESA_UNSUPPORTED;
|
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
||||||
|
|
||||||
|
if (!ENV_ROMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
if (info->MemChannelId > 0)
|
if (info->MemChannelId > 0)
|
||||||
return AGESA_UNSUPPORTED;
|
return AGESA_UNSUPPORTED;
|
||||||
if (info->SocketId != 0)
|
if (info->SocketId != 0)
|
||||||
@ -183,9 +184,7 @@ AGESA_STATUS agesa_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|||||||
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, 0) < 0)
|
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, 0) < 0)
|
||||||
die("No SPD data\n");
|
die("No SPD data\n");
|
||||||
|
|
||||||
Status = AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
#endif
|
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if HAS_AGESA_FCH_OEM_CALLOUT
|
#if HAS_AGESA_FCH_OEM_CALLOUT
|
||||||
|
@ -117,9 +117,11 @@ AGESA_STATUS Fch_Oem_config(UINT32 Func, UINTN FchData, VOID *ConfigPtr)
|
|||||||
|
|
||||||
static AGESA_STATUS board_ReadSpd(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
static AGESA_STATUS board_ReadSpd(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
int spdAddress;
|
|
||||||
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
||||||
|
int spdAddress;
|
||||||
|
|
||||||
|
if (!ENV_ROMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
DEVTREE_CONST struct device *dev = pcidev_on_root(0x18, 2);
|
DEVTREE_CONST struct device *dev = pcidev_on_root(0x18, 2);
|
||||||
|
|
||||||
@ -154,6 +156,6 @@ static AGESA_STATUS board_ReadSpd(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
|||||||
int err = hudson_readSpd(spdAddress, (void *) info->Buffer, 128);
|
int err = hudson_readSpd(spdAddress, (void *) info->Buffer, 128);
|
||||||
if (err)
|
if (err)
|
||||||
return AGESA_ERROR;
|
return AGESA_ERROR;
|
||||||
#endif
|
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
@ -191,11 +191,12 @@ void board_FCH_InitEnv(struct sysinfo *cb_NA, FCH_DATA_BLOCK *FchParams_env)
|
|||||||
|
|
||||||
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status = AGESA_UNSUPPORTED;
|
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
||||||
u8 index;
|
u8 index;
|
||||||
|
|
||||||
|
if (!ENV_ROMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
if (CONFIG(BAP_E20_DDR3_1066))
|
if (CONFIG(BAP_E20_DDR3_1066))
|
||||||
index = 1;
|
index = 1;
|
||||||
else /* CONFIG_BAP_E20_DDR3_800 */
|
else /* CONFIG_BAP_E20_DDR3_800 */
|
||||||
@ -212,7 +213,5 @@ static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *Confi
|
|||||||
if (read_ddr3_spd_from_cbfs((u8 *)info->Buffer, index) < 0)
|
if (read_ddr3_spd_from_cbfs((u8 *)info->Buffer, index) < 0)
|
||||||
die("No SPD data\n");
|
die("No SPD data\n");
|
||||||
|
|
||||||
Status = AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
#endif
|
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
@ -299,11 +299,12 @@ static AGESA_STATUS Fch_Oem_config(UINT32 Func, UINTN FchData, VOID *ConfigPtr)
|
|||||||
|
|
||||||
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status = AGESA_UNSUPPORTED;
|
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
||||||
u8 index;
|
u8 index;
|
||||||
|
|
||||||
|
if (!ENV_ROMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
if (CONFIG(BAP_E21_DDR3_1066))
|
if (CONFIG(BAP_E21_DDR3_1066))
|
||||||
index = 1;
|
index = 1;
|
||||||
else if (CONFIG(BAP_E21_DDR3_1333))
|
else if (CONFIG(BAP_E21_DDR3_1333))
|
||||||
@ -322,7 +323,5 @@ static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *Confi
|
|||||||
if (read_ddr3_spd_from_cbfs((u8 *)info->Buffer, index) < 0)
|
if (read_ddr3_spd_from_cbfs((u8 *)info->Buffer, index) < 0)
|
||||||
die("No SPD data\n");
|
die("No SPD data\n");
|
||||||
|
|
||||||
Status = AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
#endif
|
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
@ -50,9 +50,11 @@ static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigP
|
|||||||
|
|
||||||
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status = AGESA_UNSUPPORTED;
|
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
||||||
|
|
||||||
|
if (!ENV_ROMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
u8 index = get_spd_offset();
|
u8 index = get_spd_offset();
|
||||||
|
|
||||||
if (info->MemChannelId > 0)
|
if (info->MemChannelId > 0)
|
||||||
@ -66,7 +68,5 @@ static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *Confi
|
|||||||
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, index) < 0)
|
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, index) < 0)
|
||||||
die("No SPD data\n");
|
die("No SPD data\n");
|
||||||
|
|
||||||
Status = AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
#endif
|
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
@ -130,9 +130,11 @@ static AGESA_STATUS Fch_Oem_config(UINT32 Func, UINTN FchData, VOID *ConfigPtr)
|
|||||||
|
|
||||||
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *ConfigPtr)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status = AGESA_UNSUPPORTED;
|
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
AGESA_READ_SPD_PARAMS *info = ConfigPtr;
|
||||||
|
|
||||||
|
if (!ENV_ROMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
u8 index = get_spd_offset();
|
u8 index = get_spd_offset();
|
||||||
|
|
||||||
if (info->MemChannelId > 0)
|
if (info->MemChannelId > 0)
|
||||||
@ -146,7 +148,5 @@ static AGESA_STATUS board_ReadSpd_from_cbfs(UINT32 Func, UINTN Data, VOID *Confi
|
|||||||
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, index) < 0)
|
if (read_ddr3_spd_from_cbfs((u8*)info->Buffer, index) < 0)
|
||||||
die("No SPD data\n");
|
die("No SPD data\n");
|
||||||
|
|
||||||
Status = AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
#endif
|
|
||||||
return Status;
|
|
||||||
}
|
}
|
||||||
|
@ -54,11 +54,7 @@ static struct dram_base_mask_t get_dram_base_mask(u32 nodeid)
|
|||||||
{
|
{
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
struct dram_base_mask_t d;
|
struct dram_base_mask_t d;
|
||||||
#if defined(__PRE_RAM__)
|
|
||||||
dev = PCI_DEV(0, DEV_CDB, 1);
|
|
||||||
#else
|
|
||||||
dev = __f1_dev[0];
|
dev = __f1_dev[0];
|
||||||
#endif // defined(__PRE_RAM__)
|
|
||||||
|
|
||||||
u32 temp;
|
u32 temp;
|
||||||
temp = pci_read_config32(dev, 0x44); //[39:24] at [31:16]
|
temp = pci_read_config32(dev, 0x44); //[39:24] at [31:16]
|
||||||
|
@ -52,11 +52,7 @@ static struct dram_base_mask_t get_dram_base_mask(u32 nodeid)
|
|||||||
{
|
{
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
struct dram_base_mask_t d;
|
struct dram_base_mask_t d;
|
||||||
#if defined(__PRE_RAM__)
|
|
||||||
dev = PCI_DEV(0, DEV_CDB, 1);
|
|
||||||
#else
|
|
||||||
dev = __f1_dev[0];
|
dev = __f1_dev[0];
|
||||||
#endif // defined(__PRE_RAM__)
|
|
||||||
|
|
||||||
u32 temp;
|
u32 temp;
|
||||||
temp = pci_read_config32(dev, 0x44); //[39:24] at [31:16]
|
temp = pci_read_config32(dev, 0x44); //[39:24] at [31:16]
|
||||||
|
@ -248,13 +248,15 @@ AGESA_STATUS agesawrapper_amdinitmid(void)
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
|
||||||
AGESA_STATUS agesawrapper_amdinitlate(void)
|
AGESA_STATUS agesawrapper_amdinitlate(void)
|
||||||
{
|
{
|
||||||
AGESA_STATUS Status;
|
AGESA_STATUS Status;
|
||||||
AMD_INTERFACE_PARAMS AmdParamStruct;
|
AMD_INTERFACE_PARAMS AmdParamStruct;
|
||||||
AMD_LATE_PARAMS *AmdLateParams;
|
AMD_LATE_PARAMS *AmdLateParams;
|
||||||
|
|
||||||
|
if (!ENV_RAMSTAGE)
|
||||||
|
return AGESA_UNSUPPORTED;
|
||||||
|
|
||||||
LibAmdMemFill (&AmdParamStruct,
|
LibAmdMemFill (&AmdParamStruct,
|
||||||
0,
|
0,
|
||||||
sizeof(AMD_INTERFACE_PARAMS),
|
sizeof(AMD_INTERFACE_PARAMS),
|
||||||
@ -289,7 +291,6 @@ AGESA_STATUS agesawrapper_amdinitlate(void)
|
|||||||
/* No AmdReleaseStruct(&AmdParamStruct), we need AmdLateParams later. */
|
/* No AmdReleaseStruct(&AmdParamStruct), we need AmdLateParams later. */
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
#endif /* #ifndef __PRE_RAM__ */
|
|
||||||
|
|
||||||
const void *agesawrapper_locate_module (const CHAR8 name[8])
|
const void *agesawrapper_locate_module (const CHAR8 name[8])
|
||||||
{
|
{
|
||||||
|
@ -61,14 +61,11 @@ static inline int hudson_ide_enable(void)
|
|||||||
return (CONFIG_HUDSON_SATA_MODE == 0) || (CONFIG_HUDSON_SATA_MODE == 3);
|
return (CONFIG_HUDSON_SATA_MODE == 0) || (CONFIG_HUDSON_SATA_MODE == 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __SMM__
|
|
||||||
|
|
||||||
void pm_write8(u8 reg, u8 value);
|
void pm_write8(u8 reg, u8 value);
|
||||||
u8 pm_read8(u8 reg);
|
u8 pm_read8(u8 reg);
|
||||||
void pm_write16(u8 reg, u16 value);
|
void pm_write16(u8 reg, u16 value);
|
||||||
u16 pm_read16(u16 reg);
|
u16 pm_read16(u16 reg);
|
||||||
|
|
||||||
#ifdef __SIMPLE_DEVICE__
|
|
||||||
void hudson_lpc_port80(void);
|
void hudson_lpc_port80(void);
|
||||||
void hudson_pci_port80(void);
|
void hudson_pci_port80(void);
|
||||||
void hudson_clk_output_48Mhz(void);
|
void hudson_clk_output_48Mhz(void);
|
||||||
@ -76,10 +73,6 @@ void hudson_clk_output_48Mhz(void);
|
|||||||
int s3_save_nvram_early(u32 dword, int size, int nvram_pos);
|
int s3_save_nvram_early(u32 dword, int size, int nvram_pos);
|
||||||
int s3_load_nvram_early(int size, u32 *old_dword, int nvram_pos);
|
int s3_load_nvram_early(int size, u32 *old_dword, int nvram_pos);
|
||||||
|
|
||||||
#else
|
|
||||||
void hudson_enable(struct device *dev);
|
void hudson_enable(struct device *dev);
|
||||||
|
|
||||||
#endif /* __PRE_RAM__ */
|
|
||||||
#endif /* __SMM__ */
|
|
||||||
|
|
||||||
#endif /* HUDSON_H */
|
#endif /* HUDSON_H */
|
||||||
|
@ -54,7 +54,6 @@ void imc_reg_init(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
|
||||||
void enable_imc_thermal_zone(void)
|
void enable_imc_thermal_zone(void)
|
||||||
{
|
{
|
||||||
AMD_CONFIG_PARAMS StdHeader;
|
AMD_CONFIG_PARAMS StdHeader;
|
||||||
@ -83,4 +82,3 @@ void enable_imc_thermal_zone(void)
|
|||||||
WriteECmsg(MSG_SYS_TO_IMC, AccessWidth8, &FunNum, &StdHeader); // function number
|
WriteECmsg(MSG_SYS_TO_IMC, AccessWidth8, &FunNum, &StdHeader); // function number
|
||||||
WaitForEcLDN9MailboxCmdAck(&StdHeader);
|
WaitForEcLDN9MailboxCmdAck(&StdHeader);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
#ifndef _SB800_FAN_H_
|
#ifndef _SB800_FAN_H_
|
||||||
#define _SB800_FAN_H_
|
#define _SB800_FAN_H_
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
#include <device/device.h>
|
||||||
|
|
||||||
void init_sb800_IMC_fans(struct device *dev);
|
void init_sb800_IMC_fans(struct device *dev);
|
||||||
void init_sb800_MANUAL_fans(struct device *dev);
|
void init_sb800_MANUAL_fans(struct device *dev);
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Fan Register Definitions */
|
/* Fan Register Definitions */
|
||||||
#define FAN_0_OFFSET 0x00
|
#define FAN_0_OFFSET 0x00
|
||||||
|
@ -243,15 +243,13 @@ void sb900_cimx_config(AMDSBCFG *sb_config)
|
|||||||
sb_config->PciClks = SB_PCI_CLOCK_RESERVED;
|
sb_config->PciClks = SB_PCI_CLOCK_RESERVED;
|
||||||
sb_config->hwm.hwmEnable = 0x0;
|
sb_config->hwm.hwmEnable = 0x0;
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
|
||||||
/* ramstage cimx config here */
|
/* ramstage cimx config here */
|
||||||
if (!sb_config->StdHeader.CALLBACK.CalloutPtr) {
|
if (ENV_RAMSTAGE && !sb_config->StdHeader.CALLBACK.CalloutPtr) {
|
||||||
sb_config->StdHeader.CALLBACK.CalloutPtr = sb900_callout_entry;
|
sb_config->StdHeader.CALLBACK.CalloutPtr = sb900_callout_entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
//sb_config->
|
//sb_config->
|
||||||
#endif //!__PRE_RAM__
|
printk(BIOS_INFO, "SB900 - Cfg.c - sb900_cimx_config - End.\n");
|
||||||
printk(BIOS_INFO, "SB900 - Cfg.c - sb900_cimx_config - End.\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SbPowerOnInit_Config(AMDSBCFG *sb_config)
|
void SbPowerOnInit_Config(AMDSBCFG *sb_config)
|
||||||
|
@ -22,8 +22,6 @@
|
|||||||
#include "amd_pci_int_defs.h"
|
#include "amd_pci_int_defs.h"
|
||||||
#include "amd_pci_int_types.h"
|
#include "amd_pci_int_types.h"
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
|
||||||
|
|
||||||
const struct pirq_struct * pirq_data_ptr = NULL;
|
const struct pirq_struct * pirq_data_ptr = NULL;
|
||||||
u32 pirq_data_size = 0;
|
u32 pirq_data_size = 0;
|
||||||
const u8 *intr_data_ptr = NULL;
|
const u8 *intr_data_ptr = NULL;
|
||||||
@ -195,4 +193,3 @@ void write_pci_cfg_irqs(void)
|
|||||||
} /* for (dev = all_devices) */
|
} /* for (dev = all_devices) */
|
||||||
printk(BIOS_DEBUG, "PCI_CFG IRQ: Finished writing PCI config space IRQ assignments\n");
|
printk(BIOS_DEBUG, "PCI_CFG IRQ: Finished writing PCI config space IRQ assignments\n");
|
||||||
}
|
}
|
||||||
#endif /* __PRE_RAM__ */
|
|
||||||
|
@ -23,8 +23,6 @@
|
|||||||
#define PCI_INTR_INDEX 0xc00
|
#define PCI_INTR_INDEX 0xc00
|
||||||
#define PCI_INTR_DATA 0xc01
|
#define PCI_INTR_DATA 0xc01
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
|
||||||
|
|
||||||
struct pirq_struct {
|
struct pirq_struct {
|
||||||
u8 devfn;
|
u8 devfn;
|
||||||
u8 PIN[4]; /* PINA/B/C/D are index 0/1/2/3 */
|
u8 PIN[4]; /* PINA/B/C/D are index 0/1/2/3 */
|
||||||
@ -39,6 +37,5 @@ u8 read_pci_int_idx(u8 index, int mode);
|
|||||||
void write_pci_int_idx(u8 index, int mode, u8 data);
|
void write_pci_int_idx(u8 index, int mode, u8 data);
|
||||||
void write_pci_cfg_irqs(void);
|
void write_pci_cfg_irqs(void);
|
||||||
void write_pci_int_table (void);
|
void write_pci_int_table (void);
|
||||||
#endif /* __PRE_RAM */
|
|
||||||
|
|
||||||
#endif /* AMD_PCI_UTIL_H */
|
#endif /* AMD_PCI_UTIL_H */
|
||||||
|
@ -169,14 +169,11 @@ static inline int hudson_ide_enable(void)
|
|||||||
return (CONFIG_HUDSON_SATA_MODE == 0) || (CONFIG_HUDSON_SATA_MODE == 3);
|
return (CONFIG_HUDSON_SATA_MODE == 0) || (CONFIG_HUDSON_SATA_MODE == 3);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __SMM__
|
|
||||||
|
|
||||||
void pm_write8(u8 reg, u8 value);
|
void pm_write8(u8 reg, u8 value);
|
||||||
u8 pm_read8(u8 reg);
|
u8 pm_read8(u8 reg);
|
||||||
void pm_write16(u8 reg, u16 value);
|
void pm_write16(u8 reg, u16 value);
|
||||||
u16 pm_read16(u16 reg);
|
u16 pm_read16(u16 reg);
|
||||||
|
|
||||||
#ifdef __PRE_RAM__
|
|
||||||
void hudson_lpc_port80(void);
|
void hudson_lpc_port80(void);
|
||||||
void hudson_lpc_decode(void);
|
void hudson_lpc_decode(void);
|
||||||
void hudson_pci_port80(void);
|
void hudson_pci_port80(void);
|
||||||
@ -190,15 +187,9 @@ void lpc_wideio_16_window(uint16_t base);
|
|||||||
void hudson_tpm_decode_spi(void);
|
void hudson_tpm_decode_spi(void);
|
||||||
int s3_save_nvram_early(u32 dword, int size, int nvram_pos);
|
int s3_save_nvram_early(u32 dword, int size, int nvram_pos);
|
||||||
int s3_load_nvram_early(int size, u32 *old_dword, int nvram_pos);
|
int s3_load_nvram_early(int size, u32 *old_dword, int nvram_pos);
|
||||||
#if CONFIG(HUDSON_UART)
|
|
||||||
void configure_hudson_uart(void);
|
void configure_hudson_uart(void);
|
||||||
#endif
|
|
||||||
|
|
||||||
#else
|
|
||||||
void hudson_enable(struct device *dev);
|
void hudson_enable(struct device *dev);
|
||||||
void s3_resume_init_data(void *FchParams);
|
void s3_resume_init_data(void *FchParams);
|
||||||
|
|
||||||
#endif /* __PRE_RAM__ */
|
|
||||||
#endif /* __SMM__ */
|
|
||||||
|
|
||||||
#endif /* HUDSON_H */
|
#endif /* HUDSON_H */
|
||||||
|
@ -51,7 +51,6 @@ void imc_reg_init(void)
|
|||||||
pci_write_config8(PCI_DEV(0, 0x18, 0x3), 0x1E4, reg8);
|
pci_write_config8(PCI_DEV(0, 0x18, 0x3), 0x1E4, reg8);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef __PRE_RAM__
|
|
||||||
void enable_imc_thermal_zone(void)
|
void enable_imc_thermal_zone(void)
|
||||||
{
|
{
|
||||||
AMD_CONFIG_PARAMS StdHeader;
|
AMD_CONFIG_PARAMS StdHeader;
|
||||||
@ -80,4 +79,3 @@ void enable_imc_thermal_zone(void)
|
|||||||
WriteECmsg(MSG_SYS_TO_IMC, AccessWidth8, &FunNum, &StdHeader);
|
WriteECmsg(MSG_SYS_TO_IMC, AccessWidth8, &FunNum, &StdHeader);
|
||||||
WaitForEcLDN9MailboxCmdAck(&StdHeader);
|
WaitForEcLDN9MailboxCmdAck(&StdHeader);
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#define AGESA_ENTRY_CFG_H
|
#define AGESA_ENTRY_CFG_H
|
||||||
|
|
||||||
|
|
||||||
#if defined(__PRE_RAM__)
|
#if ENV_ROMSTAGE
|
||||||
|
|
||||||
#define AGESA_ENTRY_INIT_RESET TRUE
|
#define AGESA_ENTRY_INIT_RESET TRUE
|
||||||
#define AGESA_ENTRY_INIT_EARLY TRUE
|
#define AGESA_ENTRY_INIT_EARLY TRUE
|
||||||
|
Reference in New Issue
Block a user