Contributors: 13
Author Tokens Token Proportion Commits Commit Proportion
Wei Liu 1219 70.26% 4 16.67%
Nam Cao 269 15.50% 1 4.17%
Mukesh Rathor 86 4.96% 1 4.17%
Thomas Gleixner 47 2.71% 2 8.33%
K. Y. Srinivasan 32 1.84% 4 16.67%
Stanislav Kinsburskii 29 1.67% 1 4.17%
Nuno Das Neves 22 1.27% 3 12.50%
Vitaly Kuznetsov 12 0.69% 3 12.50%
Joseph Salisbury 12 0.69% 1 4.17%
Naman Jain 3 0.17% 1 4.17%
Lan Tianyu 2 0.12% 1 4.17%
Björn Helgaas 1 0.06% 1 4.17%
Kees Cook 1 0.06% 1 4.17%
Total 1735 24


// SPDX-License-Identifier: GPL-2.0
/*
 * Irqdomain for Linux to run as the root partition on Microsoft Hypervisor.
 *
 * Authors:
 *  Sunil Muthuswamy <sunilmut@microsoft.com>
 *  Wei Liu <wei.liu@kernel.org>
 */

#include <linux/pci.h>
#include <linux/irq.h>
#include <linux/export.h>
#include <linux/irqchip/irq-msi-lib.h>
#include <asm/mshyperv.h>

static int hv_map_interrupt(union hv_device_id hv_devid, bool level,
		int cpu, int vector, struct hv_interrupt_entry *ret_entry)
{
	struct hv_input_map_device_interrupt *input;
	struct hv_output_map_device_interrupt *output;
	struct hv_device_interrupt_descriptor *intr_desc;
	unsigned long flags;
	u64 status;
	int nr_bank, var_size;

	local_irq_save(flags);

	input = *this_cpu_ptr(hyperv_pcpu_input_arg);
	output = *this_cpu_ptr(hyperv_pcpu_output_arg);

	intr_desc = &input->interrupt_descriptor;
	memset(input, 0, sizeof(*input));
	input->partition_id = hv_current_partition_id;
	input->device_id = hv_devid.as_uint64;
	intr_desc->interrupt_type = HV_X64_INTERRUPT_TYPE_FIXED;
	intr_desc->vector_count = 1;
	intr_desc->target.vector = vector;

	if (level)
		intr_desc->trigger_mode = HV_INTERRUPT_TRIGGER_MODE_LEVEL;
	else
		intr_desc->trigger_mode = HV_INTERRUPT_TRIGGER_MODE_EDGE;

	intr_desc->target.vp_set.valid_bank_mask = 0;
	intr_desc->target.vp_set.format = HV_GENERIC_SET_SPARSE_4K;
	nr_bank = cpumask_to_vpset(&intr_desc->target.vp_set, cpumask_of(cpu));
	if (nr_bank < 0) {
		local_irq_restore(flags);
		pr_err("%s: unable to generate VP set\n", __func__);
		return -EINVAL;
	}
	intr_desc->target.flags = HV_DEVICE_INTERRUPT_TARGET_PROCESSOR_SET;

	/*
	 * var-sized hypercall, var-size starts after vp_mask (thus
	 * vp_set.format does not count, but vp_set.valid_bank_mask
	 * does).
	 */
	var_size = nr_bank + 1;

	status = hv_do_rep_hypercall(HVCALL_MAP_DEVICE_INTERRUPT, 0, var_size,
			input, output);
	*ret_entry = output->interrupt_entry;

	local_irq_restore(flags);

	if (!hv_result_success(status))
		hv_status_err(status, "\n");

	return hv_result_to_errno(status);
}

static int hv_unmap_interrupt(u64 id, struct hv_interrupt_entry *irq_entry)
{
	unsigned long flags;
	struct hv_input_unmap_device_interrupt *input;
	u64 status;

	local_irq_save(flags);
	input = *this_cpu_ptr(hyperv_pcpu_input_arg);

	memset(input, 0, sizeof(*input));
	input->partition_id = hv_current_partition_id;
	input->device_id = id;
	input->interrupt_entry = *irq_entry;

	status = hv_do_hypercall(HVCALL_UNMAP_DEVICE_INTERRUPT, input, NULL);
	local_irq_restore(flags);

	if (!hv_result_success(status))
		hv_status_err(status, "\n");

	return hv_result_to_errno(status);
}

#ifdef CONFIG_PCI_MSI
struct rid_data {
	struct pci_dev *bridge;
	u32 rid;
};

static int get_rid_cb(struct pci_dev *pdev, u16 alias, void *data)
{
	struct rid_data *rd = data;
	u8 bus = PCI_BUS_NUM(rd->rid);

	if (pdev->bus->number != bus || PCI_BUS_NUM(alias) != bus) {
		rd->bridge = pdev;
		rd->rid = alias;
	}

	return 0;
}

static union hv_device_id hv_build_devid_type_pci(struct pci_dev *pdev)
{
	int pos;
	union hv_device_id hv_devid;
	struct rid_data data = {
		.bridge = NULL,
		.rid = PCI_DEVID(pdev->bus->number, pdev->devfn)
	};

	pci_for_each_dma_alias(pdev, get_rid_cb, &data);

	hv_devid.as_uint64 = 0;
	hv_devid.device_type = HV_DEVICE_TYPE_PCI;
	hv_devid.pci.segment = pci_domain_nr(pdev->bus);

	hv_devid.pci.bdf.bus = PCI_BUS_NUM(data.rid);
	hv_devid.pci.bdf.device = PCI_SLOT(data.rid);
	hv_devid.pci.bdf.function = PCI_FUNC(data.rid);
	hv_devid.pci.source_shadow = HV_SOURCE_SHADOW_NONE;

	if (data.bridge == NULL)
		goto out;

	/*
	 * Microsoft Hypervisor requires a bus range when the bridge is
	 * running in PCI-X mode.
	 *
	 * To distinguish conventional vs PCI-X bridge, we can check
	 * the bridge's PCI-X Secondary Status Register, Secondary Bus
	 * Mode and Frequency bits. See PCI Express to PCI/PCI-X Bridge
	 * Specification Revision 1.0 5.2.2.1.3.
	 *
	 * Value zero means it is in conventional mode, otherwise it is
	 * in PCI-X mode.
	 */

	pos = pci_find_capability(data.bridge, PCI_CAP_ID_PCIX);
	if (pos) {
		u16 status;

		pci_read_config_word(data.bridge, pos + PCI_X_BRIDGE_SSTATUS,
				     &status);

		if (status & PCI_X_SSTATUS_FREQ) {
			/* Non-zero, PCI-X mode */
			u8 sec_bus, sub_bus;

			hv_devid.pci.source_shadow =
					     HV_SOURCE_SHADOW_BRIDGE_BUS_RANGE;

			pci_read_config_byte(data.bridge, PCI_SECONDARY_BUS,
					     &sec_bus);
			hv_devid.pci.shadow_bus_range.secondary_bus = sec_bus;
			pci_read_config_byte(data.bridge, PCI_SUBORDINATE_BUS,
					     &sub_bus);
			hv_devid.pci.shadow_bus_range.subordinate_bus = sub_bus;
		}
	}

out:
	return hv_devid;
}

/*
 * hv_map_msi_interrupt() - Map the MSI IRQ in the hypervisor.
 * @data:      Describes the IRQ
 * @out_entry: Hypervisor (MSI) interrupt entry (can be NULL)
 *
 * Map the IRQ in the hypervisor by issuing a MAP_DEVICE_INTERRUPT hypercall.
 *
 * Return: 0 on success, -errno on failure
 */
int hv_map_msi_interrupt(struct irq_data *data,
			 struct hv_interrupt_entry *out_entry)
{
	struct irq_cfg *cfg = irqd_cfg(data);
	struct hv_interrupt_entry dummy;
	union hv_device_id hv_devid;
	struct msi_desc *msidesc;
	struct pci_dev *pdev;
	int cpu;

	msidesc = irq_data_get_msi_desc(data);
	pdev = msi_desc_to_pci_dev(msidesc);
	hv_devid = hv_build_devid_type_pci(pdev);
	cpu = cpumask_first(irq_data_get_effective_affinity_mask(data));

	return hv_map_interrupt(hv_devid, false, cpu, cfg->vector,
				out_entry ? out_entry : &dummy);
}
EXPORT_SYMBOL_GPL(hv_map_msi_interrupt);

static void entry_to_msi_msg(struct hv_interrupt_entry *entry,
			     struct msi_msg *msg)
{
	/* High address is always 0 */
	msg->address_hi = 0;
	msg->address_lo = entry->msi_entry.address.as_uint32;
	msg->data = entry->msi_entry.data.as_uint32;
}

static int hv_unmap_msi_interrupt(struct pci_dev *pdev,
				  struct hv_interrupt_entry *irq_entry);

static void hv_irq_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
{
	struct hv_interrupt_entry *stored_entry;
	struct irq_cfg *cfg = irqd_cfg(data);
	struct msi_desc *msidesc;
	struct pci_dev *pdev;
	int ret;

	msidesc = irq_data_get_msi_desc(data);
	pdev = msi_desc_to_pci_dev(msidesc);

	if (!cfg) {
		pr_debug("%s: cfg is NULL", __func__);
		return;
	}

	if (data->chip_data) {
		/*
		 * This interrupt is already mapped. Let's unmap first.
		 *
		 * We don't use retarget interrupt hypercalls here because
		 * Microsoft Hypervisor doesn't allow root to change the vector
		 * or specify VPs outside of the set that is initially used
		 * during mapping.
		 */
		stored_entry = data->chip_data;
		data->chip_data = NULL;

		ret = hv_unmap_msi_interrupt(pdev, stored_entry);

		kfree(stored_entry);

		if (ret)
			return;
	}

	stored_entry = kzalloc_obj(*stored_entry, GFP_ATOMIC);
	if (!stored_entry)
		return;

	ret = hv_map_msi_interrupt(data, stored_entry);
	if (ret) {
		kfree(stored_entry);
		return;
	}

	data->chip_data = stored_entry;
	entry_to_msi_msg(data->chip_data, msg);
}

static int hv_unmap_msi_interrupt(struct pci_dev *pdev,
				  struct hv_interrupt_entry *irq_entry)
{
	union hv_device_id hv_devid;

	hv_devid = hv_build_devid_type_pci(pdev);
	return hv_unmap_interrupt(hv_devid.as_uint64, irq_entry);
}

/* NB: during map, hv_interrupt_entry is saved via data->chip_data */
static void hv_teardown_msi_irq(struct pci_dev *pdev, struct irq_data *irqd)
{
	struct hv_interrupt_entry irq_entry;
	struct msi_msg msg;

	if (!irqd->chip_data) {
		pr_debug("%s: no chip data\n!", __func__);
		return;
	}

	irq_entry = *(struct hv_interrupt_entry *)irqd->chip_data;
	entry_to_msi_msg(&irq_entry, &msg);

	kfree(irqd->chip_data);
	irqd->chip_data = NULL;

	(void)hv_unmap_msi_interrupt(pdev, &irq_entry);
}

/*
 * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
 * which implement the MSI or MSI-X Capability Structure.
 */
static struct irq_chip hv_pci_msi_controller = {
	.name			= "HV-PCI-MSI",
	.irq_ack		= irq_chip_ack_parent,
	.irq_compose_msi_msg	= hv_irq_compose_msi_msg,
	.irq_set_affinity	= irq_chip_set_affinity_parent,
};

static bool hv_init_dev_msi_info(struct device *dev, struct irq_domain *domain,
				 struct irq_domain *real_parent,
				 struct msi_domain_info *info)
{
	struct irq_chip *chip = info->chip;

	if (!msi_lib_init_dev_msi_info(dev, domain, real_parent, info))
		return false;

	chip->flags |= IRQCHIP_SKIP_SET_WAKE | IRQCHIP_MOVE_DEFERRED;

	info->ops->msi_prepare = pci_msi_prepare;

	return true;
}

#define HV_MSI_FLAGS_SUPPORTED	(MSI_GENERIC_FLAGS_MASK | MSI_FLAG_PCI_MSIX)
#define HV_MSI_FLAGS_REQUIRED	(MSI_FLAG_USE_DEF_DOM_OPS |	\
				 MSI_FLAG_USE_DEF_CHIP_OPS)

static struct msi_parent_ops hv_msi_parent_ops = {
	.supported_flags	= HV_MSI_FLAGS_SUPPORTED,
	.required_flags		= HV_MSI_FLAGS_REQUIRED,
	.bus_select_token	= DOMAIN_BUS_NEXUS,
	.bus_select_mask	= MATCH_PCI_MSI,
	.chip_flags		= MSI_CHIP_FLAG_SET_ACK,
	.prefix			= "HV-",
	.init_dev_msi_info	= hv_init_dev_msi_info,
};

/* Allocate nr_irqs IRQs for the given irq domain */
static int hv_msi_domain_alloc(struct irq_domain *d, unsigned int virq,
			       unsigned int nr_irqs, void *arg)
{
	/*
	 * TODO: The allocation bits of hv_irq_compose_msi_msg(), i.e.
	 *	 everything except entry_to_msi_msg() should be in here.
	 */
	int ret;

	ret = irq_domain_alloc_irqs_parent(d, virq, nr_irqs, arg);
	if (ret)
		return ret;

	for (int i = 0; i < nr_irqs; ++i) {
		irq_domain_set_info(d, virq + i, 0, &hv_pci_msi_controller,
				    NULL, handle_edge_irq, NULL, "edge");
	}

	return 0;
}

static void hv_msi_domain_free(struct irq_domain *d, unsigned int virq,
			       unsigned int nr_irqs)
{
	for (int i = 0; i < nr_irqs; ++i) {
		struct irq_data *irqd = irq_domain_get_irq_data(d, virq);
		struct msi_desc *desc;

		desc = irq_data_get_msi_desc(irqd);
		if (!desc || !desc->irq || WARN_ON_ONCE(!dev_is_pci(desc->dev)))
			continue;

		hv_teardown_msi_irq(to_pci_dev(desc->dev), irqd);
	}

	irq_domain_free_irqs_top(d, virq, nr_irqs);
}

static const struct irq_domain_ops hv_msi_domain_ops = {
	.select	= msi_lib_irq_domain_select,
	.alloc	= hv_msi_domain_alloc,
	.free	= hv_msi_domain_free,
};

struct irq_domain * __init hv_create_pci_msi_domain(void)
{
	struct irq_domain *d = NULL;

	struct irq_domain_info info = {
		.fwnode		= irq_domain_alloc_named_fwnode("HV-PCI-MSI"),
		.ops		= &hv_msi_domain_ops,
		.parent		= x86_vector_domain,
	};

	if (info.fwnode)
		d = msi_create_parent_irq_domain(&info, &hv_msi_parent_ops);

	/* No point in going further if we can't get an irq domain */
	BUG_ON(!d);

	return d;
}

#endif /* CONFIG_PCI_MSI */

int hv_unmap_ioapic_interrupt(int ioapic_id, struct hv_interrupt_entry *entry)
{
	union hv_device_id hv_devid;

	hv_devid.as_uint64 = 0;
	hv_devid.device_type = HV_DEVICE_TYPE_IOAPIC;
	hv_devid.ioapic.ioapic_id = (u8)ioapic_id;

	return hv_unmap_interrupt(hv_devid.as_uint64, entry);
}
EXPORT_SYMBOL_GPL(hv_unmap_ioapic_interrupt);

int hv_map_ioapic_interrupt(int ioapic_id, bool level, int cpu, int vector,
		struct hv_interrupt_entry *entry)
{
	union hv_device_id hv_devid;

	hv_devid.as_uint64 = 0;
	hv_devid.device_type = HV_DEVICE_TYPE_IOAPIC;
	hv_devid.ioapic.ioapic_id = (u8)ioapic_id;

	return hv_map_interrupt(hv_devid, level, cpu, vector, entry);
}
EXPORT_SYMBOL_GPL(hv_map_ioapic_interrupt);