1 #ifndef __ASM_GENERIC_MSI_H
2 #define __ASM_GENERIC_MSI_H
4 #include <linux/types.h>
6 #ifndef NUM_MSI_ALLOC_SCRATCHPAD_REGS
7 # define NUM_MSI_ALLOC_SCRATCHPAD_REGS 2
13 * struct msi_alloc_info - Default structure for MSI interrupt allocation.
14 * @desc: Pointer to msi descriptor
15 * @hwirq: Associated hw interrupt number in the domain
16 * @scratchpad: Storage for implementation specific scratch data
18 * Architectures can provide their own implementation by not including
19 * asm-generic/msi.h into their arch specific header file.
21 typedef struct msi_alloc_info
{
22 struct msi_desc
*desc
;
23 irq_hw_number_t hwirq
;
27 } scratchpad
[NUM_MSI_ALLOC_SCRATCHPAD_REGS
];
30 #define GENERIC_MSI_DOMAIN_OPS 1