-
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.
ia64: Move the macro definitions related to MSI to one header file.
For kvm's MSI support, it needs these macros defined in ia64_msi.c, and to avoid duplicate them, move them to one header file and share with kvm. Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com> Acked-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Avi Kivity <avi@redhat.com>
- Loading branch information
Xiantao Zhang
authored and
Avi Kivity
committed
Mar 24, 2009
1 parent
4a906e4
commit 2fa8937
Showing
2 changed files
with
51 additions
and
46 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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifndef _IA64_MSI_DEF_H | ||
#define _IA64_MSI_DEF_H | ||
|
||
/* | ||
* Shifts for APIC-based data | ||
*/ | ||
|
||
#define MSI_DATA_VECTOR_SHIFT 0 | ||
#define MSI_DATA_VECTOR(v) (((u8)v) << MSI_DATA_VECTOR_SHIFT) | ||
#define MSI_DATA_VECTOR_MASK 0xffffff00 | ||
|
||
#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 APIC-based bus address | ||
*/ | ||
|
||
#define MSI_ADDR_DEST_ID_SHIFT 4 | ||
#define MSI_ADDR_HEADER 0xfee00000 | ||
|
||
#define MSI_ADDR_DEST_ID_MASK 0xfff0000f | ||
#define MSI_ADDR_DEST_ID_CPU(cpu) ((cpu) << MSI_ADDR_DEST_ID_SHIFT) | ||
|
||
#define MSI_ADDR_DEST_MODE_SHIFT 2 | ||
#define MSI_ADDR_DEST_MODE_PHYS (0 << MSI_ADDR_DEST_MODE_SHIFT) | ||
#define MSI_ADDR_DEST_MODE_LOGIC (1 << MSI_ADDR_DEST_MODE_SHIFT) | ||
|
||
#define MSI_ADDR_REDIRECTION_SHIFT 3 | ||
#define MSI_ADDR_REDIRECTION_CPU (0 << MSI_ADDR_REDIRECTION_SHIFT) | ||
#define MSI_ADDR_REDIRECTION_LOWPRI (1 << MSI_ADDR_REDIRECTION_SHIFT) | ||
|
||
#endif/* _IA64_MSI_DEF_H */ |
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