[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[patch RFC 38/38] irqchip: Add IMS array driver - NOT FOR MERGING



A generic IMS irq chip and irq domain implementation for IMS based devices
which utilize a MSI message store array on chip.

Allows IMS devices with a MSI message store array to reuse this code for
different array sizes.

Allocation and freeing of interrupts happens via the generic
msi_domain_alloc/free_irqs() interface. No special purpose IMS magic
required as long as the interrupt domain is stored in the underlying device
struct.

Completely untested of course and mostly for illustration and educational
purpose. This should of course be a modular irq chip, but adding that
support is left as an exercise for the people who care about this deeply.

Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
Cc: Marc Zyngier <maz@xxxxxxxxxx>
Cc: Megha Dey <megha.dey@xxxxxxxxx>
Cc: Jason Gunthorpe <jgg@xxxxxxxxxxxx>
Cc: Dave Jiang <dave.jiang@xxxxxxxxx>
Cc: Alex Williamson <alex.williamson@xxxxxxxxxx>
Cc: Jacob Pan <jacob.jun.pan@xxxxxxxxx>
Cc: Baolu Lu <baolu.lu@xxxxxxxxx>
Cc: Kevin Tian <kevin.tian@xxxxxxxxx>
Cc: Dan Williams <dan.j.williams@xxxxxxxxx>
---
 drivers/irqchip/Kconfig             |    8 +
 drivers/irqchip/Makefile            |    1 
 drivers/irqchip/irq-ims-msi.c       |  169 ++++++++++++++++++++++++++++++++++++
 include/linux/irqchip/irq-ims-msi.h |   41 ++++++++
 4 files changed, 219 insertions(+)

--- a/drivers/irqchip/Kconfig
+++ b/drivers/irqchip/Kconfig
@@ -571,4 +571,12 @@ config LOONGSON_PCH_MSI
        help
          Support for the Loongson PCH MSI Controller.
 
+config IMS_MSI
+       bool "IMS Interrupt Message Store MSI controller"
+       depends on PCI
+       select DEVICE_MSI
+       help
+         Support for IMS Interrupt Message Store MSI controller
+         with IMS slot storage in a slot array
+
 endmenu
--- a/drivers/irqchip/Makefile
+++ b/drivers/irqchip/Makefile
@@ -111,3 +111,4 @@ obj-$(CONFIG_LOONGSON_HTPIC)                += irq-loo
 obj-$(CONFIG_LOONGSON_HTVEC)           += irq-loongson-htvec.o
 obj-$(CONFIG_LOONGSON_PCH_PIC)         += irq-loongson-pch-pic.o
 obj-$(CONFIG_LOONGSON_PCH_MSI)         += irq-loongson-pch-msi.o
+obj-$(CONFIG_IMS_MSI)                  += irq-ims-msi.o
--- /dev/null
+++ b/drivers/irqchip/irq-ims-msi.c
@@ -0,0 +1,169 @@
+// SPDX-License-Identifier: GPL-2.0
+// (C) Copyright 2020 Thomas Gleixner <tglx@xxxxxxxxxxxxx>
+/*
+ * Shared interrupt chip and irq domain for Intel IMS devices
+ */
+#include <linux/device.h>
+#include <linux/slab.h>
+#include <linux/msi.h>
+#include <linux/irq.h>
+
+#include <linux/irqchip/irq-ims-msi.h>
+
+struct ims_data {
+       struct ims_array_info   info;
+       unsigned long           map[0];
+};
+
+static void ims_mask_irq(struct irq_data *data)
+{
+       struct msi_desc *desc = irq_data_get_msi_desc(data);
+       struct ims_array_slot __iomem *slot = desc->device_msi.priv_iomem;
+       u32 __iomem *ctrl = &slot->ctrl;
+
+       iowrite32(ioread32(ctrl) & ~IMS_VECTOR_CTRL_UNMASK, ctrl);
+}
+
+static void ims_unmask_irq(struct irq_data *data)
+{
+       struct msi_desc *desc = irq_data_get_msi_desc(data);
+       struct ims_array_slot __iomem *slot = desc->device_msi.priv_iomem;
+       u32 __iomem *ctrl = &slot->ctrl;
+
+       iowrite32(ioread32(ctrl) | IMS_VECTOR_CTRL_UNMASK, ctrl);
+}
+
+static void ims_write_msi_msg(struct irq_data *data, struct msi_msg *msg)
+{
+       struct msi_desc *desc = irq_data_get_msi_desc(data);
+       struct ims_array_slot __iomem *slot = desc->device_msi.priv_iomem;
+
+       iowrite32(msg->address_lo, &slot->address_lo);
+       iowrite32(msg->address_hi, &slot->address_hi);
+       iowrite32(msg->data, &slot->data);
+}
+
+static const struct irq_chip ims_msi_controller = {
+       .name                   = "IMS",
+       .irq_mask               = ims_mask_irq,
+       .irq_unmask             = ims_unmask_irq,
+       .irq_write_msi_msg      = ims_write_msi_msg,
+       .irq_retrigger          = irq_chip_retrigger_hierarchy,
+       .flags                  = IRQCHIP_SKIP_SET_WAKE,
+};
+
+static void ims_reset_slot(struct ims_array_slot __iomem *slot)
+{
+       iowrite32(0, &slot->address_lo);
+       iowrite32(0, &slot->address_hi);
+       iowrite32(0, &slot->data);
+       iowrite32(0, &slot->ctrl);
+}
+
+static void ims_free_msi_store(struct irq_domain *domain, struct device *dev)
+{
+       struct msi_domain_info *info = domain->host_data;
+       struct ims_data *ims = info->data;
+       struct msi_desc *entry;
+
+       for_each_msi_entry(entry, dev) {
+               if (entry->device_msi.priv_iomem) {
+                       clear_bit(entry->device_msi.hwirq, ims->map);
+                       ims_reset_slot(entry->device_msi.priv_iomem);
+                       entry->device_msi.priv_iomem = NULL;
+                       entry->device_msi.hwirq = 0;
+               }
+       }
+}
+
+static int ims_alloc_msi_store(struct irq_domain *domain, struct device *dev,
+                              int nvec)
+{
+       struct msi_domain_info *info = domain->host_data;
+       struct ims_data *ims = info->data;
+       struct msi_desc *entry;
+
+       for_each_msi_entry(entry, dev) {
+               unsigned int idx;
+
+               idx = find_first_zero_bit(ims->map, ims->info.max_slots);
+               if (idx >= ims->info.max_slots)
+                       goto fail;
+               set_bit(idx, ims->map);
+               entry->device_msi.priv_iomem = &ims->info.slots[idx];
+               entry->device_msi.hwirq = idx;
+       }
+       return 0;
+
+fail:
+       ims_free_msi_store(domain, dev);
+       return -ENOSPC;
+}
+
+struct ims_domain_template {
+       struct msi_domain_ops   ops;
+       struct msi_domain_info  info;
+};
+
+static const struct ims_domain_template ims_domain_template = {
+       .ops = {
+               .msi_alloc_store        = ims_alloc_msi_store,
+               .msi_free_store         = ims_free_msi_store,
+       },
+       .info = {
+               .flags          = MSI_FLAG_USE_DEF_DOM_OPS |
+                                 MSI_FLAG_USE_DEF_CHIP_OPS,
+               .handler        = handle_edge_irq,
+               .handler_name   = "edge",
+       },
+};
+
+struct irq_domain *
+pci_ims_create_msi_irq_domain(struct pci_dev *pdev,
+                             struct ims_array_info *ims_info)
+{
+       struct ims_domain_template *info;
+       struct irq_domain *domain;
+       struct irq_chip *chip;
+       struct ims_data *data;
+       unsigned int size;
+
+       /* Allocate new domain storage */
+       info = kmemdup(&ims_domain_template, sizeof(ims_domain_template),
+                      GFP_KERNEL);
+       if (!info)
+               return NULL;
+       /* Link the ops */
+       info->info.ops = &info->ops;
+
+       /* Allocate ims_info along with the bitmap */
+       size = sizeof(*data);
+       size += BITS_TO_LONGS(ims_info->max_slots) * sizeof(unsigned long);
+       data = kzalloc(size, GFP_KERNEL);
+       if (!data)
+               goto err_info;
+
+       data->info = *ims_info;
+       info->info.data = data;
+
+       chip = kmemdup(&ims_msi_controller, sizeof(ims_msi_controller),
+                      GFP_KERNEL);
+       if (!chip)
+               goto err_data;
+       info->info.chip = chip;
+
+       domain = pci_subdevice_msi_create_irq_domain(pdev, &info->info);
+       if (!domain)
+               goto err_chip;
+
+       return domain;
+
+err_chip:
+       kfree(chip);
+err_data:
+       kfree(data);
+err_info:
+       kfree(info);
+       return NULL;
+}
+EXPORT_SYMBOL_GPL(pci_ims_create_msi_irq_domain);
--- /dev/null
+++ b/include/linux/irqchip/irq-ims-msi.h
@@ -0,0 +1,41 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/* (C) Copyright 2020 Thomas Gleixner <tglx@xxxxxxxxxxxxx> */
+
+#ifndef _LINUX_IRQCHIP_IRQ_IMS_MSI_H
+#define _LINUX_IRQCHIP_IRQ_IMS_MSI_H
+
+#include <linux/types.h>
+
+struct ims_array_slot {
+       u32     address_lo;
+       u32     address_hi;
+       u32     data;
+       u32     ctrl;
+};
+
+/* Bit to unmask the interrupt in slot->ctrl */
+#define IMS_VECTOR_CTRL_UNMASK 0x01
+
+struct ims_array_info {
+       struct ims_array_slot   __iomem *slots;
+       unsigned int            max_slots;
+};
+
+/* Dummy forward declaration for illustration */
+struct ims_queue_slot;
+
+/**
+ * ims_msi_store - Interrupt Message Store descriptor data
+ * @array_slot:        Pointer to a on device IMS storage array slot
+ * @queue_slot:        Pointer to storage embedded in queue data
+ * @hw_irq:    Index of the slot or queue. Also hardware irq number
+ */
+struct ims_msi_store {
+       union {
+               struct ims_array_slot __iomem   *array_slot;
+               struct ims_queue_slot           *queue_slot;
+       };
+       unsigned int                            hw_irq;
+};
+
+#endif




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.