-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 42030 b: refs/heads/master c: 15e9b58 h: refs/heads/master v: v3
- Loading branch information
Heiko Carstens
authored and
Martin Schwidefsky
committed
Dec 4, 2006
1 parent
344d9e2
commit ec937ff
Showing
14 changed files
with
247 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 2254f5a7779452395e37ea2f7d6e1a550d34e678 | ||
refs/heads/master: 15e9b586e0bd3692e2a21c5be178810d9d32214e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* arch/s390/kernel/reset.S | ||
* | ||
* Copyright (C) IBM Corp. 2006 | ||
* Author(s): Heiko Carstens <heiko.carstens@de.ibm.com> | ||
*/ | ||
|
||
#include <asm/ptrace.h> | ||
#include <asm/lowcore.h> | ||
|
||
#ifdef CONFIG_64BIT | ||
|
||
.globl reset_mcck_handler | ||
reset_mcck_handler: | ||
basr %r13,0 | ||
0: lg %r15,__LC_PANIC_STACK # load panic stack | ||
aghi %r15,-STACK_FRAME_OVERHEAD | ||
lg %r1,s390_reset_mcck_handler-0b(%r13) | ||
ltgr %r1,%r1 | ||
jz 1f | ||
basr %r14,%r1 | ||
1: la %r1,4095 | ||
lmg %r0,%r15,__LC_GPREGS_SAVE_AREA-4095(%r1) | ||
lpswe __LC_MCK_OLD_PSW | ||
|
||
.globl s390_reset_mcck_handler | ||
s390_reset_mcck_handler: | ||
.quad 0 | ||
|
||
#else /* CONFIG_64BIT */ | ||
|
||
.globl reset_mcck_handler | ||
reset_mcck_handler: | ||
basr %r13,0 | ||
0: l %r15,__LC_PANIC_STACK # load panic stack | ||
ahi %r15,-STACK_FRAME_OVERHEAD | ||
l %r1,s390_reset_mcck_handler-0b(%r13) | ||
ltr %r1,%r1 | ||
jz 1f | ||
basr %r14,%r1 | ||
1: lm %r0,%r15,__LC_GPREGS_SAVE_AREA | ||
lpsw __LC_MCK_OLD_PSW | ||
|
||
.globl s390_reset_mcck_handler | ||
s390_reset_mcck_handler: | ||
.long 0 | ||
|
||
#endif /* CONFIG_64BIT */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.