Bug #388 ยป fix-postcar-crash.patch
| src/drivers/intel/fsp1_1/exit_car.S | ||
|---|---|---|
|
pop %ebx
|
||
|
/* Move the stack pointer to real RAM */
|
||
|
movl _estack, %esp
|
||
|
movl $_estack, %esp
|
||
|
/* Align the stack 16 bytes */
|
||
|
andl $0xfffffff0, %esp
|
||
| src/soc/intel/common/block/cpu/car/exit_car_fsp.S | ||
|---|---|---|
|
chipset_teardown_car:
|
||
|
/* Set up new stack. */
|
||
|
mov _estack, %esp
|
||
|
movl $_estack, %esp
|
||
|
/* Align the stack. */
|
||
|
andl $0xfffffff0, %esp
|
||