soc/intel: Use common romstage code
This provides stack guards with checking and common entry into postcar. The code in cpu/intel/car/romstage.c is candidate for becoming architectural so function prototype is moved to <arch/romstage.h>. Change-Id: I4c5a9789e7cf3f7f49a4a33e21dac894320a9639 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34893 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
16248e89ec
commit
cd7a70f487
|
@ -18,6 +18,8 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
void mainboard_romstage_entry(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Support setting up a stack frame consisting of MTRR information
|
* Support setting up a stack frame consisting of MTRR information
|
||||||
* for use in bootstrapping the caching attributes after cache-as-ram
|
* for use in bootstrapping the caching attributes after cache-as-ram
|
||||||
|
@ -61,6 +63,20 @@ void postcar_frame_common_mtrrs(struct postcar_frame *pcf);
|
||||||
*/
|
*/
|
||||||
void *postcar_commit_mtrrs(struct postcar_frame *pcf);
|
void *postcar_commit_mtrrs(struct postcar_frame *pcf);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* fill_postcar_frame() is called after raminit completes and right before
|
||||||
|
* calling run_postcar_phase(). Implementation should call postcar_frame_add_mtrr()
|
||||||
|
* to tag memory ranges as cacheable to speed up execution of postcar and
|
||||||
|
* early ramstage.
|
||||||
|
*/
|
||||||
|
void fill_postcar_frame(struct postcar_frame *pcf);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* prepare_and_run_postcar() determines the stack to use after
|
||||||
|
* cache-as-ram is torn down as well as the MTRR settings to use.
|
||||||
|
*/
|
||||||
|
void prepare_and_run_postcar(struct postcar_frame *pcf);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Load and run a program that takes control of execution that
|
* Load and run a program that takes control of execution that
|
||||||
* tears down CAR and loads ramstage. The postcar_frame object
|
* tears down CAR and loads ramstage. The postcar_frame object
|
||||||
|
|
|
@ -132,6 +132,21 @@ void postcar_frame_common_mtrrs(struct postcar_frame *pcf)
|
||||||
postcar_frame_add_romcache(pcf, MTRR_TYPE_WRPROT);
|
postcar_frame_add_romcache(pcf, MTRR_TYPE_WRPROT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* prepare_and_run_postcar() determines the stack to use after
|
||||||
|
* cache-as-ram is torn down as well as the MTRR settings to use. */
|
||||||
|
void prepare_and_run_postcar(struct postcar_frame *pcf)
|
||||||
|
{
|
||||||
|
if (postcar_frame_init(pcf, 0))
|
||||||
|
die("Unable to initialize postcar frame.\n");
|
||||||
|
|
||||||
|
fill_postcar_frame(pcf);
|
||||||
|
|
||||||
|
postcar_frame_common_mtrrs(pcf);
|
||||||
|
|
||||||
|
run_postcar_phase(pcf);
|
||||||
|
/* We do not return here. */
|
||||||
|
}
|
||||||
|
|
||||||
void *postcar_commit_mtrrs(struct postcar_frame *pcf)
|
void *postcar_commit_mtrrs(struct postcar_frame *pcf)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <bootblock_common.h>
|
#include <bootblock_common.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cpu/x86/smm.h>
|
#include <cpu/x86/smm.h>
|
||||||
#include <arch/symbols.h>
|
#include <arch/symbols.h>
|
||||||
|
@ -29,21 +28,6 @@
|
||||||
|
|
||||||
static struct postcar_frame early_mtrrs;
|
static struct postcar_frame early_mtrrs;
|
||||||
|
|
||||||
/* prepare_and_run_postcar() determines the stack to use after
|
|
||||||
* cache-as-ram is torn down as well as the MTRR settings to use. */
|
|
||||||
static void prepare_and_run_postcar(struct postcar_frame *pcf)
|
|
||||||
{
|
|
||||||
if (postcar_frame_init(pcf, 0))
|
|
||||||
die("Unable to initialize postcar frame.\n");
|
|
||||||
|
|
||||||
fill_postcar_frame(pcf);
|
|
||||||
|
|
||||||
postcar_frame_common_mtrrs(pcf);
|
|
||||||
|
|
||||||
run_postcar_phase(pcf);
|
|
||||||
/* We do not return here. */
|
|
||||||
}
|
|
||||||
|
|
||||||
static void romstage_main(unsigned long bist)
|
static void romstage_main(unsigned long bist)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <commonlib/helpers.h>
|
#include <commonlib/helpers.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cpu/x86/smm.h>
|
#include <cpu/x86/smm.h>
|
||||||
#include <fsp/car.h>
|
#include <fsp/car.h>
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
#ifndef _CPU_INTEL_ROMSTAGE_H
|
|
||||||
#define _CPU_INTEL_ROMSTAGE_H
|
|
||||||
|
|
||||||
#include <arch/romstage.h>
|
|
||||||
|
|
||||||
void mainboard_romstage_entry(void);
|
|
||||||
|
|
||||||
/* fill_postcar_frame() is called after raminit completes and right before
|
|
||||||
* calling run_postcar_phase(). Implementation should call postcar_frame_add_mtrr()
|
|
||||||
* to tag memory ranges as cacheable to speed up execution of postcar and
|
|
||||||
* early ramstage. */
|
|
||||||
void fill_postcar_frame(struct postcar_frame *pcf);
|
|
||||||
|
|
||||||
#endif /* _CPU_INTEL_ROMSTAGE_H */
|
|
|
@ -16,7 +16,7 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
|
|
||||||
#include <southbridge/intel/i82801dx/i82801dx.h>
|
#include <southbridge/intel/i82801dx/i82801dx.h>
|
||||||
#include <northbridge/intel/e7505/raminit.h>
|
#include <northbridge/intel/e7505/raminit.h>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include <cf9_reset.h>
|
#include <cf9_reset.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <device/pnp_ops.h>
|
#include <device/pnp_ops.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/intel/haswell/haswell.h>
|
#include <cpu/intel/haswell/haswell.h>
|
||||||
#include <device/pnp_ops.h>
|
#include <device/pnp_ops.h>
|
||||||
#include <northbridge/intel/haswell/haswell.h>
|
#include <northbridge/intel/haswell/haswell.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <southbridge/intel/i82371eb/i82371eb.h>
|
#include <southbridge/intel/i82371eb/i82371eb.h>
|
||||||
#include <northbridge/intel/i440bx/raminit.h>
|
#include <northbridge/intel/i440bx/raminit.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
#include <superio/winbond/w83977tf/w83977tf.h>
|
#include <superio/winbond/w83977tf/w83977tf.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <southbridge/intel/i82371eb/i82371eb.h>
|
#include <southbridge/intel/i82371eb/i82371eb.h>
|
||||||
#include <northbridge/intel/i440bx/raminit.h>
|
#include <northbridge/intel/i440bx/raminit.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
/* FIXME: The ASUS P2B-LS has a Winbond W83977EF, actually. */
|
/* FIXME: The ASUS P2B-LS has a Winbond W83977EF, actually. */
|
||||||
#include <superio/winbond/w83977tf/w83977tf.h>
|
#include <superio/winbond/w83977tf/w83977tf.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <southbridge/intel/i82371eb/i82371eb.h>
|
#include <southbridge/intel/i82371eb/i82371eb.h>
|
||||||
#include <northbridge/intel/i440bx/raminit.h>
|
#include <northbridge/intel/i440bx/raminit.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
#include <superio/winbond/w83977tf/w83977tf.h>
|
#include <superio/winbond/w83977tf/w83977tf.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <southbridge/intel/i82371eb/i82371eb.h>
|
#include <southbridge/intel/i82371eb/i82371eb.h>
|
||||||
#include <northbridge/intel/i440bx/raminit.h>
|
#include <northbridge/intel/i440bx/raminit.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
|
/* FIXME: The ASUS P3B-F has a Winbond W83977EF, actually. */
|
||||||
#include <superio/winbond/w83977tf/w83977tf.h>
|
#include <superio/winbond/w83977tf/w83977tf.h>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
#include <superio/winbond/w83627dhg/w83627dhg.h>
|
#include <superio/winbond/w83627dhg/w83627dhg.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <southbridge/intel/common/pmclib.h>
|
#include <southbridge/intel/common/pmclib.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/winbond/w83667hg-a/w83667hg-a.h>
|
#include <superio/winbond/w83667hg-a/w83667hg-a.h>
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include <device/pnp_ops.h>
|
#include <device/pnp_ops.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/intel/speedstep.h>
|
#include <cpu/intel/speedstep.h>
|
||||||
#include <cpu/x86/msr.h>
|
#include <cpu/x86/msr.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <pc80/mc146818rtc.h>
|
#include <pc80/mc146818rtc.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include <superio/ite/it8718f/it8718f.h>
|
#include <superio/ite/it8718f/it8718f.h>
|
||||||
#include <superio/ite/common/ite.h>
|
#include <superio/ite/common/ite.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <southbridge/intel/common/pmclib.h>
|
#include <southbridge/intel/common/pmclib.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/ite/it8718f/it8718f.h>
|
#include <superio/ite/it8718f/it8718f.h>
|
||||||
#include <superio/ite/common/ite.h>
|
#include <superio/ite/common/ite.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/intel/haswell/haswell.h>
|
#include <cpu/intel/haswell/haswell.h>
|
||||||
#include <northbridge/intel/haswell/haswell.h>
|
#include <northbridge/intel/haswell/haswell.h>
|
||||||
#include <northbridge/intel/haswell/raminit.h>
|
#include <northbridge/intel/haswell/raminit.h>
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include "variant.h"
|
#include "variant.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <device/pnp_ops.h>
|
#include <device/pnp_ops.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <device/pnp_def.h>
|
#include <device/pnp_def.h>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/intel/haswell/haswell.h>
|
#include <cpu/intel/haswell/haswell.h>
|
||||||
#include <northbridge/intel/haswell/haswell.h>
|
#include <northbridge/intel/haswell/haswell.h>
|
||||||
#include <northbridge/intel/haswell/raminit.h>
|
#include <northbridge/intel/haswell/raminit.h>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <superio/smsc/lpc47m15x/lpc47m15x.h>
|
#include <superio/smsc/lpc47m15x/lpc47m15x.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include <device/pnp_ops.h>
|
#include <device/pnp_ops.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <southbridge/intel/common/pmclib.h>
|
#include <southbridge/intel/common/pmclib.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <superio/winbond/w83627dhg/w83627dhg.h>
|
#include <superio/winbond/w83627dhg/w83627dhg.h>
|
||||||
#include <superio/winbond/common/winbond.h>
|
#include <superio/winbond/common/winbond.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
#include <cf9_reset.h>
|
#include <cf9_reset.h>
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include <device/pnp_def.h>
|
#include <device/pnp_def.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <southbridge/intel/common/pmclib.h>
|
#include <southbridge/intel/common/pmclib.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <superio/smsc/smscsuperio/smscsuperio.h>
|
#include <superio/smsc/smscsuperio/smscsuperio.h>
|
||||||
#include <northbridge/intel/x4x/iomap.h>
|
#include <northbridge/intel/x4x/iomap.h>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <romstage_handoff.h>
|
#include <romstage_handoff.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <ec/acpi/ec.h>
|
#include <ec/acpi/ec.h>
|
||||||
#include <timestamp.h>
|
#include <timestamp.h>
|
||||||
#include <arch/acpi.h>
|
#include <arch/acpi.h>
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <arch/acpi.h>
|
#include <arch/acpi.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include <device/pnp_def.h>
|
#include <device/pnp_def.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <romstage_handoff.h>
|
#include <romstage_handoff.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <ec/acpi/ec.h>
|
#include <ec/acpi/ec.h>
|
||||||
#include <timestamp.h>
|
#include <timestamp.h>
|
||||||
#include <arch/acpi.h>
|
#include <arch/acpi.h>
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <pc80/mc146818rtc.h>
|
#include <pc80/mc146818rtc.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/i945/i945.h>
|
#include <northbridge/intel/i945/i945.h>
|
||||||
#include <northbridge/intel/i945/raminit.h>
|
#include <northbridge/intel/i945/raminit.h>
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cpu/intel/haswell/haswell.h>
|
#include <cpu/intel/haswell/haswell.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/haswell/haswell.h>
|
#include <northbridge/intel/haswell/haswell.h>
|
||||||
#include <northbridge/intel/haswell/pei_data.h>
|
#include <northbridge/intel/haswell/pei_data.h>
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
#include "e7505.h"
|
#include "e7505.h"
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <arch/acpi.h>
|
#include <arch/acpi.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <northbridge/intel/gm45/gm45.h>
|
#include <northbridge/intel/gm45/gm45.h>
|
||||||
#include <southbridge/intel/i82801ix/i82801ix.h>
|
#include <southbridge/intel/i82801ix/i82801ix.h>
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
|
#include <commonlib/helpers.h>
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <stage_cache.h>
|
#include <stage_cache.h>
|
||||||
#include "haswell.h"
|
#include "haswell.h"
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <commonlib/helpers.h>
|
#include <commonlib/helpers.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
#include "i440bx.h"
|
#include "i440bx.h"
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include "i945.h"
|
#include "i945.h"
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
#include <cpu/intel/smm_reloc.h>
|
#include <cpu/intel/smm_reloc.h>
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
#include <stage_cache.h>
|
#include <stage_cache.h>
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <northbridge/intel/pineview/pineview.h>
|
#include <northbridge/intel/pineview/pineview.h>
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/intel/smm_reloc.h>
|
#include <cpu/intel/smm_reloc.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stage_cache.h>
|
#include <stage_cache.h>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include <southbridge/intel/i82801gx/i82801gx.h>
|
#include <southbridge/intel/i82801gx/i82801gx.h>
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <southbridge/intel/common/pmclib.h>
|
#include <southbridge/intel/common/pmclib.h>
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include "raminit.h"
|
#include "raminit.h"
|
||||||
#include "pineview.h"
|
#include "pineview.h"
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/intel/smm_reloc.h>
|
#include <cpu/intel/smm_reloc.h>
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include <cpu/x86/lapic.h>
|
#include <cpu/x86/lapic.h>
|
||||||
#include <timestamp.h>
|
#include <timestamp.h>
|
||||||
#include "sandybridge.h"
|
#include "sandybridge.h"
|
||||||
#include <cpu/intel/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <northbridge/intel/sandybridge/chip.h>
|
#include <northbridge/intel/sandybridge/chip.h>
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <northbridge/intel/x4x/x4x.h>
|
#include <northbridge/intel/x4x/x4x.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <arch/cpu.h>
|
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <arch/symbols.h>
|
#include <arch/symbols.h>
|
||||||
|
@ -193,20 +192,15 @@ void set_max_freq(void)
|
||||||
cpu_set_p_state_to_turbo_ratio();
|
cpu_set_p_state_to_turbo_ratio();
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void car_stage_entry(void)
|
void mainboard_romstage_entry(void)
|
||||||
{
|
{
|
||||||
struct postcar_frame pcf;
|
|
||||||
uintptr_t top_of_ram;
|
|
||||||
bool s3wake;
|
bool s3wake;
|
||||||
|
size_t var_size;
|
||||||
struct chipset_power_state *ps = pmc_get_power_state();
|
struct chipset_power_state *ps = pmc_get_power_state();
|
||||||
uintptr_t smm_base;
|
|
||||||
size_t smm_size, var_size;
|
|
||||||
const void *new_var_data;
|
const void *new_var_data;
|
||||||
|
|
||||||
timestamp_add_now(TS_START_ROMSTAGE);
|
timestamp_add_now(TS_START_ROMSTAGE);
|
||||||
|
|
||||||
console_init();
|
|
||||||
|
|
||||||
soc_early_romstage_init();
|
soc_early_romstage_init();
|
||||||
|
|
||||||
s3wake = pmc_fill_power_state(ps) == ACPI_S3;
|
s3wake = pmc_fill_power_state(ps) == ACPI_S3;
|
||||||
|
@ -227,10 +221,14 @@ asmlinkage void car_stage_entry(void)
|
||||||
else
|
else
|
||||||
printk(BIOS_ERR, "Failed to determine variable data\n");
|
printk(BIOS_ERR, "Failed to determine variable data\n");
|
||||||
|
|
||||||
if (postcar_frame_init(&pcf, 0))
|
|
||||||
die("Unable to initialize postcar frame.\n");
|
|
||||||
|
|
||||||
mainboard_save_dimm_info();
|
mainboard_save_dimm_info();
|
||||||
|
}
|
||||||
|
|
||||||
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
|
{
|
||||||
|
uintptr_t top_of_ram;
|
||||||
|
uintptr_t smm_base;
|
||||||
|
size_t smm_size;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to make sure ramstage will be run cached. At this point exact
|
* We need to make sure ramstage will be run cached. At this point exact
|
||||||
|
@ -240,12 +238,9 @@ asmlinkage void car_stage_entry(void)
|
||||||
top_of_ram = (uintptr_t) cbmem_top();
|
top_of_ram = (uintptr_t) cbmem_top();
|
||||||
/* cbmem_top() needs to be at least 16 MiB aligned */
|
/* cbmem_top() needs to be at least 16 MiB aligned */
|
||||||
assert(ALIGN_DOWN(top_of_ram, 16*MiB) == top_of_ram);
|
assert(ALIGN_DOWN(top_of_ram, 16*MiB) == top_of_ram);
|
||||||
postcar_frame_add_mtrr(&pcf, top_of_ram - 16*MiB, 16*MiB,
|
postcar_frame_add_mtrr(pcf, top_of_ram - 16*MiB, 16*MiB,
|
||||||
MTRR_TYPE_WRBACK);
|
MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
/* Cache the memory-mapped boot media. */
|
|
||||||
postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Cache the TSEG region at the top of ram. This region is
|
* Cache the TSEG region at the top of ram. This region is
|
||||||
* not restricted to SMM mode until SMM has been relocated.
|
* not restricted to SMM mode until SMM has been relocated.
|
||||||
|
@ -254,9 +249,7 @@ asmlinkage void car_stage_entry(void)
|
||||||
* region for other purposes.
|
* region for other purposes.
|
||||||
*/
|
*/
|
||||||
smm_region(&smm_base, &smm_size);
|
smm_region(&smm_base, &smm_size);
|
||||||
postcar_frame_add_mtrr(&pcf, smm_base, smm_size, MTRR_TYPE_WRBACK);
|
postcar_frame_add_mtrr(pcf, smm_base, smm_size, MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
run_postcar_phase(&pcf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fill_console_params(FSPM_UPD *mupd)
|
static void fill_console_params(FSPM_UPD *mupd)
|
||||||
|
|
|
@ -54,23 +54,6 @@
|
||||||
|
|
||||||
static struct postcar_frame early_mtrrs;
|
static struct postcar_frame early_mtrrs;
|
||||||
|
|
||||||
static void fill_postcar_frame(struct postcar_frame *pcf);
|
|
||||||
|
|
||||||
/* prepare_and_run_postcar() determines the stack to use after
|
|
||||||
* cache-as-ram is torn down as well as the MTRR settings to use. */
|
|
||||||
static void prepare_and_run_postcar(struct postcar_frame *pcf)
|
|
||||||
{
|
|
||||||
if (postcar_frame_init(pcf, 0))
|
|
||||||
die("Unable to initialize postcar frame.\n");
|
|
||||||
|
|
||||||
fill_postcar_frame(pcf);
|
|
||||||
|
|
||||||
postcar_frame_common_mtrrs(pcf);
|
|
||||||
|
|
||||||
run_postcar_phase(pcf);
|
|
||||||
/* We do not return here. */
|
|
||||||
}
|
|
||||||
|
|
||||||
static void program_base_addresses(void)
|
static void program_base_addresses(void)
|
||||||
{
|
{
|
||||||
uint32_t reg;
|
uint32_t reg;
|
||||||
|
@ -260,7 +243,7 @@ void romstage_common(struct romstage_params *params)
|
||||||
romstage_handoff_init(prev_sleep_state == ACPI_S3);
|
romstage_handoff_init(prev_sleep_state == ACPI_S3);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fill_postcar_frame(struct postcar_frame *pcf)
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
{
|
{
|
||||||
uintptr_t top_of_ram;
|
uintptr_t top_of_ram;
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#include <bootmode.h>
|
#include <bootmode.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <cpu/intel/romstage.h>
|
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <elog.h>
|
#include <elog.h>
|
||||||
#include <program_loading.h>
|
#include <program_loading.h>
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <arch/cpu.h>
|
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
|
@ -128,15 +127,11 @@ static void save_dimm_info(void)
|
||||||
printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
|
printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void car_stage_entry(void)
|
void mainboard_romstage_entry(void)
|
||||||
{
|
{
|
||||||
bool s3wake;
|
bool s3wake;
|
||||||
struct postcar_frame pcf;
|
|
||||||
uintptr_t top_of_ram;
|
|
||||||
struct chipset_power_state *ps = pmc_get_power_state();
|
struct chipset_power_state *ps = pmc_get_power_state();
|
||||||
|
|
||||||
console_init();
|
|
||||||
|
|
||||||
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
|
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
|
||||||
systemagent_early_init();
|
systemagent_early_init();
|
||||||
/* initialize Heci interface */
|
/* initialize Heci interface */
|
||||||
|
@ -148,9 +143,11 @@ asmlinkage void car_stage_entry(void)
|
||||||
pmc_set_disb();
|
pmc_set_disb();
|
||||||
if (!s3wake)
|
if (!s3wake)
|
||||||
save_dimm_info();
|
save_dimm_info();
|
||||||
if (postcar_frame_init(&pcf, 0))
|
}
|
||||||
die("Unable to initialize postcar frame.\n");
|
|
||||||
|
|
||||||
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
|
{
|
||||||
|
uintptr_t top_of_ram;
|
||||||
/*
|
/*
|
||||||
* We need to make sure ramstage will be run cached. At this
|
* We need to make sure ramstage will be run cached. At this
|
||||||
* point exact location of ramstage in cbmem is not known.
|
* point exact location of ramstage in cbmem is not known.
|
||||||
|
@ -160,10 +157,5 @@ asmlinkage void car_stage_entry(void)
|
||||||
top_of_ram = (uintptr_t) cbmem_top();
|
top_of_ram = (uintptr_t) cbmem_top();
|
||||||
printk(BIOS_DEBUG, "top_of_ram = 0x%lx\n", top_of_ram);
|
printk(BIOS_DEBUG, "top_of_ram = 0x%lx\n", top_of_ram);
|
||||||
top_of_ram -= 16*MiB;
|
top_of_ram -= 16*MiB;
|
||||||
postcar_frame_add_mtrr(&pcf, top_of_ram, 16*MiB, MTRR_TYPE_WRBACK);
|
postcar_frame_add_mtrr(pcf, top_of_ram, 16*MiB, MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
/* Cache the ROM as WP just below 4GiB. */
|
|
||||||
postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
|
|
||||||
|
|
||||||
run_postcar_phase(&pcf);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <arch/cpu.h>
|
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
|
@ -137,16 +136,8 @@ static void early_tco_init(void)
|
||||||
outw(reg16, tco_base + TCO2_STS);
|
outw(reg16, tco_base + TCO2_STS);
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void car_stage_entry(void)
|
void mainboard_romstage_entry(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
struct postcar_frame pcf;
|
|
||||||
uintptr_t top_of_ram;
|
|
||||||
uintptr_t smm_base;
|
|
||||||
size_t smm_size;
|
|
||||||
|
|
||||||
console_init();
|
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "FSP TempRamInit was successful...\n");
|
printk(BIOS_DEBUG, "FSP TempRamInit was successful...\n");
|
||||||
|
|
||||||
mainboard_config_gpios();
|
mainboard_config_gpios();
|
||||||
|
@ -158,9 +149,13 @@ asmlinkage void car_stage_entry(void)
|
||||||
#if CONFIG(DISPLAY_HOBS)
|
#if CONFIG(DISPLAY_HOBS)
|
||||||
display_fsp_smbios_memory_info_hob();
|
display_fsp_smbios_memory_info_hob();
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
if (postcar_frame_init(&pcf, 0))
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
die("Unable to initialize postcar frame.\n");
|
{
|
||||||
|
uintptr_t top_of_ram;
|
||||||
|
uintptr_t smm_base;
|
||||||
|
size_t smm_size;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to make sure ramstage will be run cached. At this point exact
|
* We need to make sure ramstage will be run cached. At this point exact
|
||||||
|
@ -168,12 +163,9 @@ asmlinkage void car_stage_entry(void)
|
||||||
* 16 megs under cbmem top which is a safe bet to cover ramstage.
|
* 16 megs under cbmem top which is a safe bet to cover ramstage.
|
||||||
*/
|
*/
|
||||||
top_of_ram = (uintptr_t)cbmem_top();
|
top_of_ram = (uintptr_t)cbmem_top();
|
||||||
postcar_frame_add_mtrr(&pcf, top_of_ram - 16 * MiB, 16 * MiB,
|
postcar_frame_add_mtrr(pcf, top_of_ram - 16 * MiB, 16 * MiB,
|
||||||
MTRR_TYPE_WRBACK);
|
MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
/* Cache the memory-mapped boot media. */
|
|
||||||
postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Cache the TSEG region at the top of ram. This region is
|
* Cache the TSEG region at the top of ram. This region is
|
||||||
* not restricted to SMM mode until SMM has been relocated.
|
* not restricted to SMM mode until SMM has been relocated.
|
||||||
|
@ -181,12 +173,8 @@ asmlinkage void car_stage_entry(void)
|
||||||
* when relocating the SMM handler as well as using the TSEG
|
* when relocating the SMM handler as well as using the TSEG
|
||||||
* region for other purposes.
|
* region for other purposes.
|
||||||
*/
|
*/
|
||||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
smm_region(&smm_base, &smm_size);
|
||||||
smm_region(&smm_base, &smm_size);
|
postcar_frame_add_mtrr(pcf, smm_base, smm_size, MTRR_TYPE_WRBACK);
|
||||||
postcar_frame_add_mtrr(&pcf, smm_base, smm_size, MTRR_TYPE_WRBACK);
|
|
||||||
}
|
|
||||||
|
|
||||||
run_postcar_phase(&pcf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void soc_memory_init_params(FSP_M_CONFIG *m_cfg)
|
static void soc_memory_init_params(FSP_M_CONFIG *m_cfg)
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <arch/cpu.h>
|
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <cpu/x86/mtrr.h>
|
#include <cpu/x86/mtrr.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
|
@ -112,15 +111,11 @@ static void save_dimm_info(void)
|
||||||
printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
|
printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void car_stage_entry(void)
|
void mainboard_romstage_entry(void)
|
||||||
{
|
{
|
||||||
bool s3wake;
|
bool s3wake;
|
||||||
struct postcar_frame pcf;
|
|
||||||
uintptr_t top_of_ram;
|
|
||||||
struct chipset_power_state *ps = pmc_get_power_state();
|
struct chipset_power_state *ps = pmc_get_power_state();
|
||||||
|
|
||||||
console_init();
|
|
||||||
|
|
||||||
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
|
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
|
||||||
systemagent_early_init();
|
systemagent_early_init();
|
||||||
/* initialize Heci interface */
|
/* initialize Heci interface */
|
||||||
|
@ -132,9 +127,11 @@ asmlinkage void car_stage_entry(void)
|
||||||
pmc_set_disb();
|
pmc_set_disb();
|
||||||
if (!s3wake)
|
if (!s3wake)
|
||||||
save_dimm_info();
|
save_dimm_info();
|
||||||
if (postcar_frame_init(&pcf, 0))
|
}
|
||||||
die("Unable to initialize postcar frame.\n");
|
|
||||||
|
|
||||||
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
|
{
|
||||||
|
uintptr_t top_of_ram;
|
||||||
/*
|
/*
|
||||||
* We need to make sure ramstage will be run cached. At this
|
* We need to make sure ramstage will be run cached. At this
|
||||||
* point exact location of ramstage in cbmem is not known.
|
* point exact location of ramstage in cbmem is not known.
|
||||||
|
@ -144,10 +141,5 @@ asmlinkage void car_stage_entry(void)
|
||||||
top_of_ram = (uintptr_t) cbmem_top();
|
top_of_ram = (uintptr_t) cbmem_top();
|
||||||
printk(BIOS_DEBUG, "top_of_ram = 0x%lx\n", top_of_ram);
|
printk(BIOS_DEBUG, "top_of_ram = 0x%lx\n", top_of_ram);
|
||||||
top_of_ram -= 16*MiB;
|
top_of_ram -= 16*MiB;
|
||||||
postcar_frame_add_mtrr(&pcf, top_of_ram, 16*MiB, MTRR_TYPE_WRBACK);
|
postcar_frame_add_mtrr(pcf, top_of_ram, 16*MiB, MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
/* Cache the ROM as WP just below 4GiB. */
|
|
||||||
postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
|
|
||||||
|
|
||||||
run_postcar_phase(&pcf);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,12 +28,11 @@
|
||||||
#include <soc/reg_access.h>
|
#include <soc/reg_access.h>
|
||||||
#include <soc/storage_test.h>
|
#include <soc/storage_test.h>
|
||||||
|
|
||||||
|
static struct postcar_frame early_mtrrs;
|
||||||
|
|
||||||
asmlinkage void car_stage_c_entry(void)
|
asmlinkage void car_stage_c_entry(void)
|
||||||
{
|
{
|
||||||
struct postcar_frame pcf;
|
|
||||||
bool s3wake;
|
bool s3wake;
|
||||||
uintptr_t top_of_ram;
|
|
||||||
uintptr_t top_of_low_usable_memory;
|
|
||||||
|
|
||||||
post_code(0x20);
|
post_code(0x20);
|
||||||
console_init();
|
console_init();
|
||||||
|
@ -63,28 +62,33 @@ asmlinkage void car_stage_c_entry(void)
|
||||||
/* Initialize the PCIe bridges */
|
/* Initialize the PCIe bridges */
|
||||||
pcie_init();
|
pcie_init();
|
||||||
|
|
||||||
if (postcar_frame_init(&pcf, 0))
|
prepare_and_run_postcar(&early_mtrrs);
|
||||||
die("Unable to initialize postcar frame.\n");
|
/* We do not return here. */
|
||||||
|
}
|
||||||
|
|
||||||
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
|
{
|
||||||
|
uintptr_t top_of_ram;
|
||||||
|
uintptr_t top_of_low_usable_memory;
|
||||||
|
|
||||||
/* Locate the top of RAM */
|
/* Locate the top of RAM */
|
||||||
top_of_low_usable_memory = (uintptr_t) cbmem_top();
|
top_of_low_usable_memory = (uintptr_t) cbmem_top();
|
||||||
top_of_ram = ALIGN(top_of_low_usable_memory, 16 * MiB);
|
top_of_ram = ALIGN(top_of_low_usable_memory, 16 * MiB);
|
||||||
|
|
||||||
/* Cache postcar and ramstage */
|
/* Cache postcar and ramstage */
|
||||||
postcar_frame_add_mtrr(&pcf, top_of_ram - (16 * MiB), 16 * MiB,
|
postcar_frame_add_mtrr(pcf, top_of_ram - (16 * MiB), 16 * MiB,
|
||||||
MTRR_TYPE_WRBACK);
|
MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
/* Cache RMU area */
|
/* Cache RMU area */
|
||||||
postcar_frame_add_mtrr(&pcf, (uintptr_t) top_of_low_usable_memory,
|
postcar_frame_add_mtrr(pcf, (uintptr_t) top_of_low_usable_memory,
|
||||||
0x10000, MTRR_TYPE_WRTHROUGH);
|
0x10000, MTRR_TYPE_WRTHROUGH);
|
||||||
|
|
||||||
/* Cache ESRAM */
|
/* Cache ESRAM */
|
||||||
postcar_frame_add_mtrr(&pcf, 0x80000000, 0x80000, MTRR_TYPE_WRBACK);
|
postcar_frame_add_mtrr(pcf, 0x80000000, 0x80000, MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
|
pcf->skip_common_mtrr = 1;
|
||||||
/* Cache SPI flash - Write protect not supported */
|
/* Cache SPI flash - Write protect not supported */
|
||||||
postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRTHROUGH);
|
postcar_frame_add_romcache(pcf, MTRR_TYPE_WRTHROUGH);
|
||||||
|
|
||||||
run_postcar_phase(&pcf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct chipset_power_state power_state;
|
static struct chipset_power_state power_state;
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <arch/cpu.h>
|
|
||||||
#include <arch/romstage.h>
|
#include <arch/romstage.h>
|
||||||
#include <arch/symbols.h>
|
#include <arch/symbols.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -140,15 +139,11 @@ static void save_dimm_info(void)
|
||||||
printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
|
printk(BIOS_DEBUG, "%d DIMMs found\n", mem_info->dimm_cnt);
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void car_stage_entry(void)
|
void mainboard_romstage_entry(void)
|
||||||
{
|
{
|
||||||
bool s3wake;
|
bool s3wake;
|
||||||
struct postcar_frame pcf;
|
|
||||||
uintptr_t top_of_ram;
|
|
||||||
struct chipset_power_state *ps;
|
struct chipset_power_state *ps;
|
||||||
|
|
||||||
console_init();
|
|
||||||
|
|
||||||
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
|
/* Program MCHBAR, DMIBAR, GDXBAR and EDRAMBAR */
|
||||||
systemagent_early_init();
|
systemagent_early_init();
|
||||||
|
|
||||||
|
@ -159,8 +154,13 @@ asmlinkage void car_stage_entry(void)
|
||||||
pmc_set_disb();
|
pmc_set_disb();
|
||||||
if (!s3wake)
|
if (!s3wake)
|
||||||
save_dimm_info();
|
save_dimm_info();
|
||||||
if (postcar_frame_init(&pcf, 0))
|
}
|
||||||
die("Unable to initialize postcar frame.\n");
|
|
||||||
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
|
{
|
||||||
|
uintptr_t top_of_ram;
|
||||||
|
uintptr_t smm_base;
|
||||||
|
size_t smm_size;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need to make sure ramstage will be run cached. At this
|
* We need to make sure ramstage will be run cached. At this
|
||||||
|
@ -171,28 +171,17 @@ asmlinkage void car_stage_entry(void)
|
||||||
top_of_ram = (uintptr_t) cbmem_top();
|
top_of_ram = (uintptr_t) cbmem_top();
|
||||||
printk(BIOS_DEBUG, "top_of_ram = 0x%lx\n", top_of_ram);
|
printk(BIOS_DEBUG, "top_of_ram = 0x%lx\n", top_of_ram);
|
||||||
top_of_ram -= 16*MiB;
|
top_of_ram -= 16*MiB;
|
||||||
postcar_frame_add_mtrr(&pcf, top_of_ram, 16*MiB, MTRR_TYPE_WRBACK);
|
postcar_frame_add_mtrr(pcf, top_of_ram, 16*MiB, MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
if (CONFIG(HAVE_SMI_HANDLER)) {
|
/*
|
||||||
uintptr_t smm_base;
|
* Cache the TSEG region at the top of ram. This region is
|
||||||
size_t smm_size;
|
* not restricted to SMM mode until SMM has been relocated.
|
||||||
|
* By setting the region to cacheable it provides faster access
|
||||||
/*
|
* when relocating the SMM handler as well as using the TSEG
|
||||||
* Cache the TSEG region at the top of ram. This region is
|
* region for other purposes.
|
||||||
* not restricted to SMM mode until SMM has been relocated.
|
*/
|
||||||
* By setting the region to cacheable it provides faster access
|
smm_region(&smm_base, &smm_size);
|
||||||
* when relocating the SMM handler as well as using the TSEG
|
postcar_frame_add_mtrr(pcf, smm_base, smm_size, MTRR_TYPE_WRBACK);
|
||||||
* region for other purposes.
|
|
||||||
*/
|
|
||||||
smm_region(&smm_base, &smm_size);
|
|
||||||
postcar_frame_add_mtrr(&pcf, smm_base, smm_size,
|
|
||||||
MTRR_TYPE_WRBACK);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Cache the ROM as WP just below 4GiB. */
|
|
||||||
postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
|
|
||||||
|
|
||||||
run_postcar_phase(&pcf);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cpu_flex_override(FSP_M_CONFIG *m_cfg)
|
static void cpu_flex_override(FSP_M_CONFIG *m_cfg)
|
||||||
|
|
Loading…
Reference in New Issue