blob: bf910d47e900a954c6ea3e9ab5fdc3229c03112c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Thomas Gleixner926ff9a2014-11-17 18:09:34 +01002#ifndef __ASM_GENERIC_MSI_H
3#define __ASM_GENERIC_MSI_H
4
5#include <linux/types.h>
6
Thomas Gleixner8073c1a2020-10-24 22:35:11 +01007#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
8
Thomas Gleixner926ff9a2014-11-17 18:09:34 +01009#ifndef NUM_MSI_ALLOC_SCRATCHPAD_REGS
10# define NUM_MSI_ALLOC_SCRATCHPAD_REGS 2
11#endif
12
13struct msi_desc;
14
15/**
16 * struct msi_alloc_info - Default structure for MSI interrupt allocation.
17 * @desc: Pointer to msi descriptor
18 * @hwirq: Associated hw interrupt number in the domain
19 * @scratchpad: Storage for implementation specific scratch data
20 *
21 * Architectures can provide their own implementation by not including
22 * asm-generic/msi.h into their arch specific header file.
23 */
24typedef struct msi_alloc_info {
25 struct msi_desc *desc;
26 irq_hw_number_t hwirq;
Marc Zyngier91f90da2020-11-29 13:52:06 +000027 unsigned long flags;
Thomas Gleixner926ff9a2014-11-17 18:09:34 +010028 union {
29 unsigned long ul;
30 void *ptr;
31 } scratchpad[NUM_MSI_ALLOC_SCRATCHPAD_REGS];
32} msi_alloc_info_t;
33
Marc Zyngier91f90da2020-11-29 13:52:06 +000034/* Device generating MSIs is proxying for another device */
35#define MSI_ALLOC_FLAGS_PROXY_DEVICE (1UL << 0)
36
Thomas Gleixner926ff9a2014-11-17 18:09:34 +010037#define GENERIC_MSI_DOMAIN_OPS 1
38
Thomas Gleixner8073c1a2020-10-24 22:35:11 +010039#endif /* CONFIG_GENERIC_MSI_IRQ_DOMAIN */
40
Thomas Gleixner926ff9a2014-11-17 18:09:34 +010041#endif