-
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: 376523 b: refs/heads/master c: b75c100 h: refs/heads/master i: 376521: 9e5f827 376519: f148bcc v: v3
- Loading branch information
Michael Neuling
authored and
Benjamin Herrenschmidt
committed
May 31, 2013
1 parent
6efd640
commit 6a22abd
Showing
5 changed files
with
22 additions
and
15 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: 6ce6c629fd8254b3177650de99699682ff7f6707 | ||
refs/heads/master: b75c100ef24894bd2c8b52e123bcc5f191c5d9fd |
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,18 @@ | ||
#ifndef _ASM_POWERPC_TM_H | ||
#define _ASM_POWERPC_TM_H | ||
|
||
/* Reason codes describing kernel causes for transaction aborts. By | ||
* convention, bit0 is copied to TEXASR[56] (IBM bit 7) which is set if | ||
* the failure is persistent. PAPR saves 0xff-0xe0 for the hypervisor. | ||
*/ | ||
#define TM_CAUSE_PERSISTENT 0x01 | ||
#define TM_CAUSE_RESCHED 0xde | ||
#define TM_CAUSE_TLBI 0xdc | ||
#define TM_CAUSE_FAC_UNAV 0xda | ||
#define TM_CAUSE_SYSCALL 0xd8 /* future use */ | ||
#define TM_CAUSE_MISC 0xd6 /* future use */ | ||
#define TM_CAUSE_SIGNAL 0xd4 | ||
#define TM_CAUSE_ALIGNMENT 0xd2 | ||
#define TM_CAUSE_EMULATE 0xd0 | ||
|
||
#endif |