blob: d38944a1e2586e046257edbfa109364ed49c2209 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Olof Johansson38958dd2007-12-12 17:44:46 +11002/*
3 * Copyright 2007, Olof Johansson, PA Semi
4 *
5 * Based on arch/powerpc/sysdev/mpic_u3msi.c:
6 *
7 * Copyright 2006, Segher Boessenkool, IBM Corporation.
8 * Copyright 2006-2007, Michael Ellerman, IBM Corporation.
Olof Johansson38958dd2007-12-12 17:44:46 +11009 */
10
Olof Johansson38958dd2007-12-12 17:44:46 +110011#include <linux/irq.h>
Olof Johansson38958dd2007-12-12 17:44:46 +110012#include <linux/msi.h>
13#include <asm/mpic.h>
14#include <asm/prom.h>
15#include <asm/hw_irq.h>
16#include <asm/ppc-pci.h>
Michael Ellerman25235f72008-08-06 09:10:03 +100017#include <asm/msi_bitmap.h>
Olof Johansson38958dd2007-12-12 17:44:46 +110018
Michael Ellerman5af7a6f2015-04-10 11:52:06 +100019#include <sysdev/mpic.h>
Olof Johansson38958dd2007-12-12 17:44:46 +110020
21/* Allocate 16 interrupts per device, to give an alignment of 16,
22 * since that's the size of the grouping w.r.t. affinity. If someone
23 * needs more than 32 MSI's down the road we'll have to rethink this,
24 * but it should be OK for now.
25 */
26#define ALLOC_CHUNK 16
27
28#define PASEMI_MSI_ADDR 0xfc080000
29
30/* A bit ugly, can we get this from the pci_dev somehow? */
31static struct mpic *msi_mpic;
32
33
Thomas Gleixner1c9db522010-09-28 16:46:51 +020034static void mpic_pasemi_msi_mask_irq(struct irq_data *data)
Olof Johansson38958dd2007-12-12 17:44:46 +110035{
Thomas Gleixner1c9db522010-09-28 16:46:51 +020036 pr_debug("mpic_pasemi_msi_mask_irq %d\n", data->irq);
Thomas Gleixner280510f2014-11-23 12:23:20 +010037 pci_msi_mask_irq(data);
Lennert Buytenhek835c05532011-03-08 22:26:43 +000038 mpic_mask_irq(data);
Olof Johansson38958dd2007-12-12 17:44:46 +110039}
40
Thomas Gleixner1c9db522010-09-28 16:46:51 +020041static void mpic_pasemi_msi_unmask_irq(struct irq_data *data)
Olof Johansson38958dd2007-12-12 17:44:46 +110042{
Thomas Gleixner1c9db522010-09-28 16:46:51 +020043 pr_debug("mpic_pasemi_msi_unmask_irq %d\n", data->irq);
Lennert Buytenhek835c05532011-03-08 22:26:43 +000044 mpic_unmask_irq(data);
Thomas Gleixner280510f2014-11-23 12:23:20 +010045 pci_msi_unmask_irq(data);
Olof Johansson38958dd2007-12-12 17:44:46 +110046}
47
48static struct irq_chip mpic_pasemi_msi_chip = {
Lennert Buytenhek835c05532011-03-08 22:26:43 +000049 .irq_shutdown = mpic_pasemi_msi_mask_irq,
50 .irq_mask = mpic_pasemi_msi_mask_irq,
51 .irq_unmask = mpic_pasemi_msi_unmask_irq,
52 .irq_eoi = mpic_end_irq,
53 .irq_set_type = mpic_set_irq_type,
54 .irq_set_affinity = mpic_set_affinity,
55 .name = "PASEMI-MSI",
Olof Johansson38958dd2007-12-12 17:44:46 +110056};
57
Olof Johansson38958dd2007-12-12 17:44:46 +110058static void pasemi_msi_teardown_msi_irqs(struct pci_dev *pdev)
59{
60 struct msi_desc *entry;
Paul Mackerrase297c932015-09-10 14:36:21 +100061 irq_hw_number_t hwirq;
Olof Johansson38958dd2007-12-12 17:44:46 +110062
63 pr_debug("pasemi_msi_teardown_msi_irqs, pdev %p\n", pdev);
64
Jiang Liu2921d172015-07-09 16:00:38 +080065 for_each_pci_msi_entry(entry, pdev) {
Michael Ellermanef24ba72016-09-06 21:53:24 +100066 if (!entry->irq)
Olof Johansson38958dd2007-12-12 17:44:46 +110067 continue;
68
Paul Mackerrase297c932015-09-10 14:36:21 +100069 hwirq = virq_to_hw(entry->irq);
Thomas Gleixnerec775d02011-03-25 16:45:20 +010070 irq_set_msi_desc(entry->irq, NULL);
Olof Johansson38958dd2007-12-12 17:44:46 +110071 irq_dispose_mapping(entry->irq);
Paul Mackerrase297c932015-09-10 14:36:21 +100072 msi_bitmap_free_hwirqs(&msi_mpic->msi_bitmap, hwirq, ALLOC_CHUNK);
Olof Johansson38958dd2007-12-12 17:44:46 +110073 }
74
75 return;
76}
77
78static int pasemi_msi_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type)
79{
Olof Johansson38958dd2007-12-12 17:44:46 +110080 unsigned int virq;
81 struct msi_desc *entry;
82 struct msi_msg msg;
Michael Ellerman25235f72008-08-06 09:10:03 +100083 int hwirq;
Olof Johansson38958dd2007-12-12 17:44:46 +110084
Alexander Gordeev6b2fd7ef2014-09-07 20:57:53 +020085 if (type == PCI_CAP_ID_MSIX)
86 pr_debug("pasemi_msi: MSI-X untested, trying anyway\n");
Olof Johansson38958dd2007-12-12 17:44:46 +110087 pr_debug("pasemi_msi_setup_msi_irqs, pdev %p nvec %d type %d\n",
88 pdev, nvec, type);
89
90 msg.address_hi = 0;
91 msg.address_lo = PASEMI_MSI_ADDR;
92
Jiang Liu2921d172015-07-09 16:00:38 +080093 for_each_pci_msi_entry(entry, pdev) {
Olof Johansson38958dd2007-12-12 17:44:46 +110094 /* Allocate 16 interrupts for now, since that's the grouping for
95 * affinity. This can be changed later if it turns out 32 is too
96 * few MSIs for someone, but restrictions will apply to how the
97 * sources can be changed independently.
98 */
Michael Ellerman25235f72008-08-06 09:10:03 +100099 hwirq = msi_bitmap_alloc_hwirqs(&msi_mpic->msi_bitmap,
100 ALLOC_CHUNK);
101 if (hwirq < 0) {
Olof Johansson38958dd2007-12-12 17:44:46 +1100102 pr_debug("pasemi_msi: failed allocating hwirq\n");
103 return hwirq;
104 }
105
106 virq = irq_create_mapping(msi_mpic->irqhost, hwirq);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000107 if (!virq) {
Michael Ellerman25235f72008-08-06 09:10:03 +1000108 pr_debug("pasemi_msi: failed mapping hwirq 0x%x\n",
109 hwirq);
110 msi_bitmap_free_hwirqs(&msi_mpic->msi_bitmap, hwirq,
111 ALLOC_CHUNK);
Olof Johansson38958dd2007-12-12 17:44:46 +1100112 return -ENOSPC;
113 }
114
115 /* Vector on MSI is really an offset, the hardware adds
116 * it to the value written at the magic address. So set
117 * it to 0 to remain sane.
118 */
119 mpic_set_vector(virq, 0);
120
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100121 irq_set_msi_desc(virq, entry);
122 irq_set_chip(virq, &mpic_pasemi_msi_chip);
123 irq_set_irq_type(virq, IRQ_TYPE_EDGE_RISING);
Olof Johansson38958dd2007-12-12 17:44:46 +1100124
Michael Ellerman25235f72008-08-06 09:10:03 +1000125 pr_debug("pasemi_msi: allocated virq 0x%x (hw 0x%x) " \
126 "addr 0x%x\n", virq, hwirq, msg.address_lo);
Olof Johansson38958dd2007-12-12 17:44:46 +1100127
128 /* Likewise, the device writes [0...511] into the target
129 * register to generate MSI [512...1023]
130 */
131 msg.data = hwirq-0x200;
Jiang Liu83a18912014-11-09 23:10:34 +0800132 pci_write_msi_msg(virq, &msg);
Olof Johansson38958dd2007-12-12 17:44:46 +1100133 }
134
135 return 0;
136}
137
138int mpic_pasemi_msi_init(struct mpic *mpic)
139{
140 int rc;
Daniel Axtens83922962015-04-14 14:28:01 +1000141 struct pci_controller *phb;
Marc Zyngier5d4c9bc2015-10-13 12:51:29 +0100142 struct device_node *of_node;
Olof Johansson38958dd2007-12-12 17:44:46 +1100143
Marc Zyngier5d4c9bc2015-10-13 12:51:29 +0100144 of_node = irq_domain_get_of_node(mpic->irqhost);
145 if (!of_node ||
146 !of_device_is_compatible(of_node,
Olof Johansson38958dd2007-12-12 17:44:46 +1100147 "pasemi,pwrficient-openpic"))
148 return -ENODEV;
149
150 rc = mpic_msi_init_allocator(mpic);
151 if (rc) {
152 pr_debug("pasemi_msi: Error allocating bitmap!\n");
153 return rc;
154 }
155
156 pr_debug("pasemi_msi: Registering PA Semi MPIC MSI callbacks\n");
157
158 msi_mpic = mpic;
Daniel Axtens83922962015-04-14 14:28:01 +1000159 list_for_each_entry(phb, &hose_list, list_node) {
160 WARN_ON(phb->controller_ops.setup_msi_irqs);
161 phb->controller_ops.setup_msi_irqs = pasemi_msi_setup_msi_irqs;
162 phb->controller_ops.teardown_msi_irqs = pasemi_msi_teardown_msi_irqs;
163 }
Olof Johansson38958dd2007-12-12 17:44:46 +1100164
165 return 0;
166}