intel/model_206ax: Prepare for dynamic CONFIG_RAMTOP
Change-Id: Ib3250677ee926deaa957c83aca7479eb0159358c Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/15231 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
8431fcb8c8
commit
75d139bdf2
|
@ -10,3 +10,4 @@ cpu_microcode_bins += 3rdparty/blobs/cpu/intel/model_206ax/microcode.bin
|
|||
cpu_microcode_bins += 3rdparty/blobs/cpu/intel/model_306ax/microcode.bin
|
||||
|
||||
cpu_incs-y += $(src)/cpu/intel/model_206ax/cache_as_ram.inc
|
||||
romstage-y += ../car/romstage.c
|
||||
|
|
|
@ -172,7 +172,12 @@ clear_mtrrs:
|
|||
before_romstage:
|
||||
post_code(0x29)
|
||||
/* Call romstage.c main function. */
|
||||
call main
|
||||
call romstage_main
|
||||
|
||||
/* Save return value from romstage_main. It contains the stack to use
|
||||
* after cache-as-ram is torn down.
|
||||
*/
|
||||
movl %eax, %ebx
|
||||
|
||||
post_code(0x2f)
|
||||
|
||||
|
@ -303,7 +308,8 @@ __main:
|
|||
post_code(POST_PREPARE_RAMSTAGE)
|
||||
cld /* Clear direction flag. */
|
||||
|
||||
movl $CONFIG_RAMTOP, %esp
|
||||
/* Setup stack as indicated by return value from romstage_main(). */
|
||||
movl %ebx, %esp
|
||||
movl %esp, %ebp
|
||||
call copy_and_run
|
||||
|
||||
|
|
|
@ -43,7 +43,10 @@ static void early_pch_init(void)
|
|||
pci_write_config8(PCH_LPC_DEV, 0xa4, reg8);
|
||||
}
|
||||
|
||||
void main(unsigned long bist)
|
||||
/* Platform has no romstage entry point under mainboard directory,
|
||||
* so this one is named with prefix mainboard.
|
||||
*/
|
||||
void mainboard_romstage_entry(unsigned long bist)
|
||||
{
|
||||
int s3resume = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue