mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
8e029fcdd8
There were number of issues in wakeup sequence: - Wakeup stack was placed in hardcoded address. - NX bit in EFER was not enabled. - Initialization incorrectly set physical address of secondary_startup_64. - Some alignment issues. This patch fixes these issues and in addition: - Unifies coding conventions in .S files. - Sets alignments of code and data right. Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@intel.com> Link: http://lkml.kernel.org/r/1336501366-28617-18-git-send-email-jarkko.sakkinen@intel.com Originally-by: H. Peter Anvin <hpa@linux.intel.com> Cc: Rafael J. Wysocki <rjw@sisk.pl> Cc: Len Brown <len.brown@intel.com> Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
19 lines
240 B
ArmAsm
19 lines
240 B
ArmAsm
/*
|
|
* Common heap and stack allocations
|
|
*/
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
.data
|
|
GLOBAL(HEAP)
|
|
.long rm_heap
|
|
GLOBAL(heap_end)
|
|
.long rm_stack
|
|
|
|
.bss
|
|
.balign 16
|
|
GLOBAL(rm_heap)
|
|
.space 2048
|
|
GLOBAL(rm_stack)
|
|
.space 2048
|
|
GLOBAL(rm_stack_end)
|