File: apic-msidef.h

package info (click to toggle)
qemu 1%3A2.8%2Bdfsg-6%2Bdeb9u9
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 80,664 kB
  • sloc: ansic: 1,023,075; sh: 16,809; python: 15,697; cpp: 12,293; asm: 11,295; perl: 4,421; makefile: 2,076; objc: 1,224; xml: 708
file content (31 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef HW_APIC_MSIDEF_H
#define HW_APIC_MSIDEF_H

/*
 * Intel APIC constants: from include/asm/msidef.h
 */

/*
 * Shifts for MSI data
 */

#define MSI_DATA_VECTOR_SHIFT           0
#define  MSI_DATA_VECTOR_MASK           0x000000ff

#define MSI_DATA_DELIVERY_MODE_SHIFT    8
#define MSI_DATA_LEVEL_SHIFT            14
#define MSI_DATA_TRIGGER_SHIFT          15

/*
 * Shift/mask fields for msi address
 */

#define MSI_ADDR_DEST_MODE_SHIFT        2

#define MSI_ADDR_REDIRECTION_SHIFT      3

#define MSI_ADDR_DEST_ID_SHIFT          12
#define MSI_ADDR_DEST_IDX_SHIFT         4
#define  MSI_ADDR_DEST_ID_MASK          0x00ffff0

#endif /* HW_APIC_MSIDEF_H */