-
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.
- Loading branch information
Eric W. Biederman
authored and
Linus Torvalds
committed
Oct 4, 2006
1 parent
ac66b65
commit 96f5955
Showing
4 changed files
with
120 additions
and
6 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: 589e367f9b9117b3412da0d4e10ea6882db8da84 | ||
refs/heads/master: 2d3fcc1c54df2f49674e1f7c99d4800ed1d51902 |
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,47 @@ | ||
#ifndef ASM_MSIDEF_H | ||
#define ASM_MSIDEF_H | ||
|
||
/* | ||
* Constants for Intel APIC based MSI messages. | ||
*/ | ||
|
||
/* | ||
* Shifts for MSI data | ||
*/ | ||
|
||
#define MSI_DATA_VECTOR_SHIFT 0 | ||
#define MSI_DATA_VECTOR_MASK 0x000000ff | ||
#define MSI_DATA_VECTOR(v) (((v) << MSI_DATA_VECTOR_SHIFT) & MSI_DATA_VECTOR_MASK) | ||
|
||
#define MSI_DATA_DELIVERY_MODE_SHIFT 8 | ||
#define MSI_DATA_DELIVERY_FIXED (0 << MSI_DATA_DELIVERY_MODE_SHIFT) | ||
#define MSI_DATA_DELIVERY_LOWPRI (1 << MSI_DATA_DELIVERY_MODE_SHIFT) | ||
|
||
#define MSI_DATA_LEVEL_SHIFT 14 | ||
#define MSI_DATA_LEVEL_DEASSERT (0 << MSI_DATA_LEVEL_SHIFT) | ||
#define MSI_DATA_LEVEL_ASSERT (1 << MSI_DATA_LEVEL_SHIFT) | ||
|
||
#define MSI_DATA_TRIGGER_SHIFT 15 | ||
#define MSI_DATA_TRIGGER_EDGE (0 << MSI_DATA_TRIGGER_SHIFT) | ||
#define MSI_DATA_TRIGGER_LEVEL (1 << MSI_DATA_TRIGGER_SHIFT) | ||
|
||
/* | ||
* Shift/mask fields for msi address | ||
*/ | ||
|
||
#define MSI_ADDR_BASE_HI 0 | ||
#define MSI_ADDR_BASE_LO 0xfee00000 | ||
|
||
#define MSI_ADDR_DEST_MODE_SHIFT 2 | ||
#define MSI_ADDR_DEST_MODE_PHYSICAL (0 << MSI_ADDR_DEST_MODE_SHIFT) | ||
#define MSI_ADDR_DEST_MODE_LOGICAL (1 << MSI_ADDR_DEST_MODE_SHIFT) | ||
|
||
#define MSI_ADDR_REDIRECTION_SHIFT 3 | ||
#define MSI_ADDR_REDIRECTION_CPU (0 << MSI_ADDR_REDIRECTION_SHIFT) /* dedicated cpu */ | ||
#define MSI_ADDR_REDIRECTION_LOWPRI (1 << MSI_ADDR_REDIRECTION_SHIFT) /* lowest priority */ | ||
|
||
#define MSI_ADDR_DEST_ID_SHIFT 12 | ||
#define MSI_ADDR_DEST_ID_MASK 0x00ffff0 | ||
#define MSI_ADDR_DEST_ID(dest) (((dest) << MSI_ADDR_DEST_ID_SHIFT) & MSI_ADDR_DEST_ID_MASK) | ||
|
||
#endif /* ASM_MSIDEF_H */ |