AMD binaryPI: Switch to MMCONF_SUPPORT_DEFAULT
Vendorcode always does PCI MMCONF access once it is enabled via MSR. In coreboot proper, we don't give opportunity to make pci_read/write calls before PCI MMCONF is enabled via MSR. This happens early in romstage amd_initmmio() for all cores. Change-Id: Id6ec25706b52441259e7dc1582f9a4ce8b154083 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/17534 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
cc37bbd7ac
commit
187543c90d
|
@ -16,6 +16,7 @@
|
|||
config CPU_AMD_PI_00630F01
|
||||
bool
|
||||
select PCI_IO_CFG_EXT
|
||||
select MMCONF_SUPPORT_DEFAULT
|
||||
select X86_AMD_FIXED_MTRRS
|
||||
|
||||
if CPU_AMD_PI_00630F01
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
config CPU_AMD_PI_00660F01
|
||||
bool
|
||||
select PCI_IO_CFG_EXT
|
||||
select MMCONF_SUPPORT_DEFAULT
|
||||
select X86_AMD_FIXED_MTRRS
|
||||
|
||||
if CPU_AMD_PI_00660F01
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
config CPU_AMD_PI_00670F00
|
||||
bool
|
||||
select PCI_IO_CFG_EXT
|
||||
select MMCONF_SUPPORT_DEFAULT
|
||||
select X86_AMD_FIXED_MTRRS
|
||||
|
||||
if CPU_AMD_PI_00670F00
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
config CPU_AMD_PI_00730F01
|
||||
bool
|
||||
select PCI_IO_CFG_EXT
|
||||
select MMCONF_SUPPORT_DEFAULT
|
||||
select X86_AMD_FIXED_MTRRS
|
||||
|
||||
if CPU_AMD_PI_00730F01
|
||||
|
|
|
@ -32,6 +32,7 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
void *resume_backup_memory;
|
||||
#endif
|
||||
|
||||
/* Must come first to enable PCI MMCONF. */
|
||||
amd_initmmio();
|
||||
|
||||
hudson_lpc_port80();
|
||||
|
|
|
@ -37,6 +37,9 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
{
|
||||
u32 val;
|
||||
|
||||
/* Must come first to enable PCI MMCONF. */
|
||||
amd_initmmio();
|
||||
|
||||
/*
|
||||
* In Hudson RRG, PMIOxD2[5:4] is "Drive strength control for
|
||||
* LpcClk[1:0]". This following register setting has been
|
||||
|
@ -48,8 +51,6 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
outb(0xD2, 0xcd6);
|
||||
outb(0x00, 0xcd7);
|
||||
|
||||
amd_initmmio();
|
||||
|
||||
hudson_lpc_port80();
|
||||
|
||||
if (!cpu_init_detectedx && boot_cpu()) {
|
||||
|
|
|
@ -41,6 +41,9 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
{
|
||||
u32 val;
|
||||
|
||||
/* Must come first to enable PCI MMCONF. */
|
||||
amd_initmmio();
|
||||
|
||||
/*
|
||||
* In Hudson RRG, PMIOxD2[5:4] is "Drive strength control for
|
||||
* LpcClk[1:0]". This following register setting has been
|
||||
|
@ -52,7 +55,6 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
outb(0xD2, 0xcd6);
|
||||
outb(0x00, 0xcd7);
|
||||
|
||||
amd_initmmio();
|
||||
hudson_lpc_decode();
|
||||
|
||||
outb(0x24, 0xCD6);
|
||||
|
|
|
@ -37,6 +37,9 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
{
|
||||
u32 val;
|
||||
|
||||
/* Must come first to enable PCI MMCONF. */
|
||||
amd_initmmio();
|
||||
|
||||
/*
|
||||
* In Hudson RRG, PMIOxD2[5:4] is "Drive strength control for
|
||||
* LpcClk[1:0]". This following register setting has been
|
||||
|
@ -48,8 +51,6 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
outb(0xD2, 0xcd6);
|
||||
outb(0x00, 0xcd7);
|
||||
|
||||
amd_initmmio();
|
||||
|
||||
hudson_lpc_port80();
|
||||
|
||||
if (!cpu_init_detectedx && boot_cpu()) {
|
||||
|
|
|
@ -41,6 +41,9 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
{
|
||||
u32 val;
|
||||
|
||||
/* Must come first to enable PCI MMCONF. */
|
||||
amd_initmmio();
|
||||
|
||||
/*
|
||||
* In Hudson RRG, PMIOxD2[5:4] is "Drive strength control for
|
||||
* LpcClk[1:0]". This following register setting has been
|
||||
|
@ -52,8 +55,6 @@ void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
|
|||
outb(0xD2, 0xcd6);
|
||||
outb(0x00, 0xcd7);
|
||||
|
||||
amd_initmmio();
|
||||
|
||||
hudson_lpc_port80();
|
||||
|
||||
if (!cpu_init_detectedx && boot_cpu()) {
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
##
|
||||
config NORTHBRIDGE_AMD_PI_00630F01
|
||||
bool
|
||||
select MMCONF_SUPPORT
|
||||
|
||||
if NORTHBRIDGE_AMD_PI_00630F01
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
##
|
||||
config NORTHBRIDGE_AMD_PI_00660F01
|
||||
bool
|
||||
select MMCONF_SUPPORT
|
||||
|
||||
if NORTHBRIDGE_AMD_PI_00660F01
|
||||
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
##
|
||||
config NORTHBRIDGE_AMD_PI_00670F00
|
||||
bool
|
||||
select MMCONF_SUPPORT
|
||||
|
||||
if NORTHBRIDGE_AMD_PI_00670F00
|
||||
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
##
|
||||
config NORTHBRIDGE_AMD_PI_00730F01
|
||||
bool
|
||||
select MMCONF_SUPPORT
|
||||
|
||||
if NORTHBRIDGE_AMD_PI_00730F01
|
||||
|
||||
|
|
Loading…
Reference in New Issue