Release 4.11 drivers/iommu/irq_remapping.c
#include <linux/seq_file.h>
#include <linux/cpumask.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/errno.h>
#include <linux/msi.h>
#include <linux/irq.h>
#include <linux/pci.h>
#include <linux/irqdomain.h>
#include <asm/hw_irq.h>
#include <asm/irq_remapping.h>
#include <asm/processor.h>
#include <asm/x86_init.h>
#include <asm/apic.h>
#include <asm/hpet.h>
#include "irq_remapping.h"
int irq_remapping_enabled;
int irq_remap_broken;
int disable_sourceid_checking;
int no_x2apic_optout;
int disable_irq_post = 0;
static int disable_irq_remap;
static struct irq_remap_ops *remap_ops;
static void irq_remapping_disable_io_apic(void)
{
/*
* With interrupt-remapping, for now we will use virtual wire A
* mode, as virtual wire B is little complex (need to configure
* both IOAPIC RTE as well as interrupt-remapping table entry).
* As this gets called during crash dump, keep this simple for
* now.
*/
if (boot_cpu_has(X86_FEATURE_APIC) || apic_from_smp_config())
disconnect_bsp_APIC(0);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jiang Liu | 10 | 41.67% | 1 | 33.33% |
Joerg Roedel | 10 | 41.67% | 1 | 33.33% |
Borislav Petkov | 4 | 16.67% | 1 | 33.33% |
Total | 24 | 100.00% | 3 | 100.00% |
static void __init irq_remapping_modify_x86_ops(void)
{
x86_io_apic_ops.disable = irq_remapping_disable_io_apic;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
static __init int setup_nointremap(char *str)
{
disable_irq_remap = 1;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 17 | 94.44% | 1 | 50.00% |
Suresh B. Siddha | 1 | 5.56% | 1 | 50.00% |
Total | 18 | 100.00% | 2 | 100.00% |
early_param("nointremap", setup_nointremap);
static __init int setup_irqremap(char *str)
{
if (!str)
return -EINVAL;
while (*str) {
if (!strncmp(str, "on", 2)) {
disable_irq_remap = 0;
disable_irq_post = 0;
} else if (!strncmp(str, "off", 3)) {
disable_irq_remap = 1;
disable_irq_post = 1;
} else if (!strncmp(str, "nosid", 5))
disable_sourceid_checking = 1;
else if (!strncmp(str, "no_x2apic_optout", 16))
no_x2apic_optout = 1;
else if (!strncmp(str, "nopost", 6))
disable_irq_post = 1;
str += strcspn(str, ",");
while (*str == ',')
str++;
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 113 | 77.93% | 1 | 33.33% |
Feng Wu | 29 | 20.00% | 1 | 33.33% |
Suresh B. Siddha | 3 | 2.07% | 1 | 33.33% |
Total | 145 | 100.00% | 3 | 100.00% |
early_param("intremap", setup_irqremap);
void set_irq_remapping_broken(void)
{
irq_remap_broken = 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Neil Horman | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
bool irq_remapping_cap(enum irq_remap_cap cap)
{
if (!remap_ops || disable_irq_post)
return false;
return (remap_ops->capability & (1 << cap));
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Feng Wu | 31 | 96.88% | 1 | 50.00% |
Joerg Roedel | 1 | 3.12% | 1 | 50.00% |
Total | 32 | 100.00% | 2 | 100.00% |
EXPORT_SYMBOL_GPL(irq_remapping_cap);
int __init irq_remapping_prepare(void)
{
if (disable_irq_remap)
return -ENOSYS;
if (intel_irq_remap_ops.prepare() == 0)
remap_ops = &intel_irq_remap_ops;
else if (IS_ENABLED(CONFIG_AMD_IOMMU) &&
amd_iommu_irq_ops.prepare() == 0)
remap_ops = &amd_iommu_irq_ops;
else
return -ENOSYS;
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jiang Liu | 23 | 39.66% | 2 | 40.00% |
Joerg Roedel | 18 | 31.03% | 1 | 20.00% |
Thomas Gleixner | 15 | 25.86% | 1 | 20.00% |
Suresh B. Siddha | 2 | 3.45% | 1 | 20.00% |
Total | 58 | 100.00% | 5 | 100.00% |
int __init irq_remapping_enable(void)
{
int ret;
if (!remap_ops->enable)
return -ENODEV;
ret = remap_ops->enable();
if (irq_remapping_enabled)
irq_remapping_modify_x86_ops();
return ret;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 36 | 92.31% | 2 | 66.67% |
Suresh B. Siddha | 3 | 7.69% | 1 | 33.33% |
Total | 39 | 100.00% | 3 | 100.00% |
void irq_remapping_disable(void)
{
if (irq_remapping_enabled && remap_ops->disable)
remap_ops->disable();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 16 | 80.00% | 2 | 50.00% |
Suresh B. Siddha | 3 | 15.00% | 1 | 25.00% |
Jiang Liu | 1 | 5.00% | 1 | 25.00% |
Total | 20 | 100.00% | 4 | 100.00% |
int irq_remapping_reenable(int mode)
{
if (irq_remapping_enabled && remap_ops->reenable)
return remap_ops->reenable(mode);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 20 | 74.07% | 2 | 50.00% |
Jiang Liu | 4 | 14.81% | 1 | 25.00% |
Suresh B. Siddha | 3 | 11.11% | 1 | 25.00% |
Total | 27 | 100.00% | 4 | 100.00% |
int __init irq_remap_enable_fault_handling(void)
{
if (!irq_remapping_enabled)
return 0;
if (!remap_ops->enable_faulting)
return -ENODEV;
return remap_ops->enable_faulting();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 32 | 96.97% | 2 | 66.67% |
Suresh B. Siddha | 1 | 3.03% | 1 | 33.33% |
Total | 33 | 100.00% | 3 | 100.00% |
void panic_if_irq_remap(const char *msg)
{
if (irq_remapping_enabled)
panic(msg);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
void ir_ack_apic_edge(struct irq_data *data)
{
ack_APIC_irq();
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
/**
* irq_remapping_get_ir_irq_domain - Get the irqdomain associated with the IOMMU
* device serving request @info
* @info: interrupt allocation information, used to identify the IOMMU device
*
* It's used to get parent irqdomain for HPET and IOAPIC irqdomains.
* Returns pointer to IRQ domain, or NULL on failure.
*/
struct irq_domain *
irq_remapping_get_ir_irq_domain(struct irq_alloc_info *info)
{
if (!remap_ops || !remap_ops->get_ir_irq_domain)
return NULL;
return remap_ops->get_ir_irq_domain(info);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jiang Liu | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
/**
* irq_remapping_get_irq_domain - Get the irqdomain serving the request @info
* @info: interrupt allocation information, used to identify the IOMMU device
*
* There will be one PCI MSI/MSIX irqdomain associated with each interrupt
* remapping device, so this interface is used to retrieve the PCI MSI/MSIX
* irqdomain serving request @info.
* Returns pointer to IRQ domain, or NULL on failure.
*/
struct irq_domain *
irq_remapping_get_irq_domain(struct irq_alloc_info *info)
{
if (!remap_ops || !remap_ops->get_irq_domain)
return NULL;
return remap_ops->get_irq_domain(info);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jiang Liu | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Joerg Roedel | 378 | 61.36% | 9 | 36.00% |
Jiang Liu | 113 | 18.34% | 7 | 28.00% |
Feng Wu | 70 | 11.36% | 3 | 12.00% |
Suresh B. Siddha | 19 | 3.08% | 2 | 8.00% |
Thomas Gleixner | 15 | 2.44% | 1 | 4.00% |
Neil Horman | 14 | 2.27% | 1 | 4.00% |
Borislav Petkov | 4 | 0.65% | 1 | 4.00% |
Yijing Wang | 3 | 0.49% | 1 | 4.00% |
Total | 616 | 100.00% | 25 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.