AGESA binaryPI: Remove dependency on K8 headers
The included .c file also pulled in ancient files amdk8/pre_f.h and amdk8/raminit.h Do a dirty copy-paste to work around that. Change-Id: Ie89a5f91d5234f1ef334d30a43dd56e0b722b5ac Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/26670 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
f8307c3bb4
commit
8251fa0eb0
|
@ -19,7 +19,18 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
#include <northbridge/amd/amdk8/reset_test.c>
|
||||
#define HT_INIT_CONTROL 0x6c
|
||||
#define HTIC_ColdR_Detect (1<<4)
|
||||
#define HTIC_BIOSR_Detect (1<<5)
|
||||
#define HTIC_INIT_Detect (1<<6)
|
||||
|
||||
static void set_bios_reset(void)
|
||||
{
|
||||
u32 htic;
|
||||
htic = pci_io_read_config32(PCI_DEV(0, 0x18, 0), HT_INIT_CONTROL);
|
||||
htic &= ~HTIC_BIOSR_Detect;
|
||||
pci_io_write_config32(PCI_DEV(0, 0x18, 0), HT_INIT_CONTROL, htic);
|
||||
}
|
||||
|
||||
void do_hard_reset(void)
|
||||
{
|
||||
|
|
|
@ -19,7 +19,19 @@
|
|||
#include <arch/io.h>
|
||||
#include <reset.h>
|
||||
|
||||
#include <northbridge/amd/amdk8/reset_test.c>
|
||||
#define HT_INIT_CONTROL 0x6c
|
||||
#define HTIC_ColdR_Detect (1<<4)
|
||||
#define HTIC_BIOSR_Detect (1<<5)
|
||||
#define HTIC_INIT_Detect (1<<6)
|
||||
|
||||
static void set_bios_reset(void)
|
||||
{
|
||||
u32 htic;
|
||||
htic = pci_io_read_config32(PCI_DEV(0, 0x18, 0), HT_INIT_CONTROL);
|
||||
htic &= ~HTIC_BIOSR_Detect;
|
||||
pci_io_write_config32(PCI_DEV(0, 0x18, 0), HT_INIT_CONTROL, htic);
|
||||
}
|
||||
|
||||
|
||||
void do_hard_reset(void)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue