dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef LINUX_MSI_API_H
|
|
#define LINUX_MSI_API_H
|
|
|
|
/*
|
|
* APIs which are relevant for device driver code for allocating and
|
|
* freeing MSI interrupts and querying the associations between
|
|
* hardware/software MSI indices and the Linux interrupt number.
|
|
*/
|
|
|
|
struct device;
|
|
|
|
/*
|
|
* Per device interrupt domain related constants.
|
|
*/
|
|
enum msi_domain_ids {
|
|
MSI_DEFAULT_DOMAIN,
|
|
MSI_MAX_DEVICE_IRQDOMAINS,
|
|
};
|
|
|
|
/**
|
|
* union msi_instance_cookie - MSI instance cookie
|
|
* @value: u64 value store
|
|
* @ptr: Pointer to usage site specific data
|
|
*
|
|
* This cookie is handed to the IMS allocation function and stored in the
|
|
* MSI descriptor for the interrupt chip callbacks.
|
|
*
|
|
* The content of this cookie is MSI domain implementation defined. For
|
|
* PCI/IMS implementations this could be a PASID or a pointer to queue
|
|
* memory.
|
|
*/
|
|
union msi_instance_cookie {
|
|
u64 value;
|
|
void *ptr;
|
|
};
|
|
|
|
/**
|
|
* msi_map - Mapping between MSI index and Linux interrupt number
|
|
* @index: The MSI index, e.g. slot in the MSI-X table or
|
|
* a software managed index if >= 0. If negative
|
|
* the allocation function failed and it contains
|
|
* the error code.
|
|
* @virq: The associated Linux interrupt number
|
|
*/
|
|
struct msi_map {
|
|
int index;
|
|
int virq;
|
|
};
|
|
|
|
/*
|
|
* Constant to be used for dynamic allocations when the allocation is any
|
|
* free MSI index, which is either an entry in a hardware table or a
|
|
* software managed index.
|
|
*/
|
|
#define MSI_ANY_INDEX UINT_MAX
|
|
|
|
unsigned int msi_domain_get_virq(struct device *dev, unsigned int domid, unsigned int index);
|
|
|
|
/**
|
|
* msi_get_virq - Lookup the Linux interrupt number for a MSI index on the default interrupt domain
|
|
* @dev: Device for which the lookup happens
|
|
* @index: The MSI index to lookup
|
|
*
|
|
* Return: The Linux interrupt number on success (> 0), 0 if not found
|
|
*/
|
|
static inline unsigned int msi_get_virq(struct device *dev, unsigned int index)
|
|
{
|
|
return msi_domain_get_virq(dev, MSI_DEFAULT_DOMAIN, index);
|
|
}
|
|
|
|
#endif
|