2012-06-13 01:29:32 +02:00
|
|
|
/*
|
|
|
|
This software and ancillary information (herein called SOFTWARE )
|
|
|
|
called LinuxBIOS is made available under the terms described
|
|
|
|
here. The SOFTWARE has been approved for release with associated
|
|
|
|
LA-CC Number 00-34 . Unless otherwise indicated, this SOFTWARE has
|
|
|
|
been authored by an employee or employees of the University of
|
|
|
|
California, operator of the Los Alamos National Laboratory under
|
|
|
|
Contract No. W-7405-ENG-36 with the U.S. Department of Energy. The
|
|
|
|
U.S. Government has rights to use, reproduce, and distribute this
|
|
|
|
SOFTWARE. The public may copy, distribute, prepare derivative works
|
|
|
|
and publicly display this SOFTWARE without charge, provided that this
|
|
|
|
Notice and any statement of authorship are reproduced on all copies.
|
|
|
|
Neither the Government nor the University makes any warranty, express
|
|
|
|
or implied, or assumes any liability or responsibility for the use of
|
|
|
|
this SOFTWARE. If SOFTWARE is modified to produce derivative works,
|
|
|
|
such modified SOFTWARE should be clearly marked, so as not to confuse
|
|
|
|
it with the version available from LANL.
|
|
|
|
*/
|
|
|
|
/* Copyright 2000, Ron Minnich, Advanced Computing Lab, LANL
|
|
|
|
* rminnich@lanl.gov
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <lib.h>
|
|
|
|
#include <console/console.h>
|
|
|
|
|
|
|
|
int checkstack(void *top_of_stack, int core)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
u32 *stack = (u32 *) (top_of_stack - CONFIG_STACK_SIZE);
|
|
|
|
|
|
|
|
if (stack[0] != 0xDEADBEEF){
|
2013-11-14 00:41:13 +01:00
|
|
|
printk(BIOS_ERR, "Stack overrun on CPU%d. "
|
2012-06-13 01:29:32 +02:00
|
|
|
"Increase stack from current %d bytes\n",
|
2013-02-12 04:05:36 +01:00
|
|
|
core, CONFIG_STACK_SIZE);
|
2012-06-13 01:29:32 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-10-16 00:19:43 +02:00
|
|
|
for(i = 1; i < CONFIG_STACK_SIZE/sizeof(stack[0]); i++){
|
2012-06-13 01:29:32 +02:00
|
|
|
if (stack[i] == 0xDEADBEEF)
|
|
|
|
continue;
|
2012-10-16 00:19:43 +02:00
|
|
|
printk(BIOS_SPEW, "CPU%d: stack: %p - %p, ",
|
|
|
|
core, stack,
|
2012-06-13 01:29:32 +02:00
|
|
|
&stack[CONFIG_STACK_SIZE/sizeof(stack[0])]);
|
2012-10-16 00:19:43 +02:00
|
|
|
printk(BIOS_SPEW, "lowest used address %p, ", &stack[i]);
|
|
|
|
printk(BIOS_SPEW, "stack used: %ld bytes\n",
|
|
|
|
(unsigned long)&stack[CONFIG_STACK_SIZE /
|
|
|
|
sizeof(stack[0])] - (unsigned long)&stack[i]);
|
|
|
|
return 0;
|
2012-06-13 01:29:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|