blob: 3249685e03ad6f2771c4da88e59d62697ef0c855 [file] [log] [blame]
Jayachandran Cc24a8a72013-12-21 16:52:13 +05301/*
2 * Copyright (c) 2003-2012 Broadcom Corporation
3 * All Rights Reserved
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the Broadcom
9 * license below:
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
20 * distribution.
21 *
22 * THIS SOFTWARE IS PROVIDED BY BROADCOM ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL BROADCOM OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
31 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
32 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35#include <linux/types.h>
36#include <linux/pci.h>
37#include <linux/kernel.h>
38#include <linux/init.h>
39#include <linux/msi.h>
40#include <linux/mm.h>
41#include <linux/irq.h>
42#include <linux/irqdesc.h>
43#include <linux/console.h>
44
45#include <asm/io.h>
46
47#include <asm/netlogic/interrupt.h>
48#include <asm/netlogic/haldefs.h>
49#include <asm/netlogic/common.h>
50#include <asm/netlogic/mips-extns.h>
51
52#include <asm/netlogic/xlp-hal/iomap.h>
53#include <asm/netlogic/xlp-hal/xlp.h>
54#include <asm/netlogic/xlp-hal/pic.h>
55#include <asm/netlogic/xlp-hal/pcibus.h>
56#include <asm/netlogic/xlp-hal/bridge.h>
57
58#define XLP_MSIVEC_PER_LINK 32
59#define XLP_MSIXVEC_TOTAL 32
60#define XLP_MSIXVEC_PER_LINK 8
61
62/* 128 MSI irqs per node, mapped starting at NLM_MSI_VEC_BASE */
63static inline int nlm_link_msiirq(int link, int msivec)
64{
65 return NLM_MSI_VEC_BASE + link * XLP_MSIVEC_PER_LINK + msivec;
66}
67
68static inline int nlm_irq_msivec(int irq)
69{
70 return irq % XLP_MSIVEC_PER_LINK;
71}
72
73static inline int nlm_irq_msilink(int irq)
74{
75 return (irq % (XLP_MSIVEC_PER_LINK * PCIE_NLINKS)) /
76 XLP_MSIVEC_PER_LINK;
77}
78
79/*
80 * Only 32 MSI-X vectors are possible because there are only 32 PIC
81 * interrupts for MSI. We split them statically and use 8 MSI-X vectors
82 * per link - this keeps the allocation and lookup simple.
83 */
84static inline int nlm_link_msixirq(int link, int bit)
85{
86 return NLM_MSIX_VEC_BASE + link * XLP_MSIXVEC_PER_LINK + bit;
87}
88
89static inline int nlm_irq_msixvec(int irq)
90{
91 return irq % XLP_MSIXVEC_TOTAL; /* works when given xirq */
92}
93
94static inline int nlm_irq_msixlink(int irq)
95{
96 return nlm_irq_msixvec(irq) / XLP_MSIXVEC_PER_LINK;
97}
98
99/*
100 * Per link MSI and MSI-X information, set as IRQ handler data for
101 * MSI and MSI-X interrupts.
102 */
103struct xlp_msi_data {
104 struct nlm_soc_info *node;
105 uint64_t lnkbase;
106 uint32_t msi_enabled_mask;
107 uint32_t msi_alloc_mask;
108 uint32_t msix_alloc_mask;
109 spinlock_t msi_lock;
110};
111
112/*
113 * MSI Chip definitions
114 *
115 * On XLP, there is a PIC interrupt associated with each PCIe link on the
116 * chip (which appears as a PCI bridge to us). This gives us 32 MSI irqa
117 * per link and 128 overall.
118 *
119 * When a device connected to the link raises a MSI interrupt, we get a
120 * link interrupt and we then have to look at PCIE_MSI_STATUS register at
121 * the bridge to map it to the IRQ
122 */
123static void xlp_msi_enable(struct irq_data *d)
124{
125 struct xlp_msi_data *md = irq_data_get_irq_handler_data(d);
126 unsigned long flags;
127 int vec;
128
129 vec = nlm_irq_msivec(d->irq);
130 spin_lock_irqsave(&md->msi_lock, flags);
131 md->msi_enabled_mask |= 1u << vec;
132 nlm_write_reg(md->lnkbase, PCIE_MSI_EN, md->msi_enabled_mask);
133 spin_unlock_irqrestore(&md->msi_lock, flags);
134}
135
136static void xlp_msi_disable(struct irq_data *d)
137{
138 struct xlp_msi_data *md = irq_data_get_irq_handler_data(d);
139 unsigned long flags;
140 int vec;
141
142 vec = nlm_irq_msivec(d->irq);
143 spin_lock_irqsave(&md->msi_lock, flags);
144 md->msi_enabled_mask &= ~(1u << vec);
145 nlm_write_reg(md->lnkbase, PCIE_MSI_EN, md->msi_enabled_mask);
146 spin_unlock_irqrestore(&md->msi_lock, flags);
147}
148
149static void xlp_msi_mask_ack(struct irq_data *d)
150{
151 struct xlp_msi_data *md = irq_data_get_irq_handler_data(d);
152 int link, vec;
153
154 link = nlm_irq_msilink(d->irq);
155 vec = nlm_irq_msivec(d->irq);
156 xlp_msi_disable(d);
157
158 /* Ack MSI on bridge */
159 nlm_write_reg(md->lnkbase, PCIE_MSI_STATUS, 1u << vec);
160
161 /* Ack at eirr and PIC */
162 ack_c0_eirr(PIC_PCIE_LINK_MSI_IRQ(link));
163 nlm_pic_ack(md->node->picbase, PIC_IRT_PCIE_LINK_INDEX(link));
164}
165
166static struct irq_chip xlp_msi_chip = {
167 .name = "XLP-MSI",
168 .irq_enable = xlp_msi_enable,
169 .irq_disable = xlp_msi_disable,
170 .irq_mask_ack = xlp_msi_mask_ack,
171 .irq_unmask = xlp_msi_enable,
172};
173
174/*
175 * The MSI-X interrupt handling is different from MSI, there are 32
176 * MSI-X interrupts generated by the PIC and each of these correspond
177 * to a MSI-X vector (0-31) that can be assigned.
178 *
179 * We divide the MSI-X vectors to 8 per link and do a per-link
180 * allocation
181 *
182 * Enable and disable done using standard MSI functions.
183 */
184static void xlp_msix_mask_ack(struct irq_data *d)
185{
186 struct xlp_msi_data *md = irq_data_get_irq_handler_data(d);
187 int link, msixvec;
188
189 msixvec = nlm_irq_msixvec(d->irq);
190 link = nlm_irq_msixlink(d->irq);
191 mask_msi_irq(d);
192
193 /* Ack MSI on bridge */
194 nlm_write_reg(md->lnkbase, PCIE_MSIX_STATUS, 1u << msixvec);
195
196 /* Ack at eirr and PIC */
197 ack_c0_eirr(PIC_PCIE_MSIX_IRQ(link));
198 nlm_pic_ack(md->node->picbase, PIC_IRT_PCIE_MSIX_INDEX(msixvec));
199}
200
201static struct irq_chip xlp_msix_chip = {
202 .name = "XLP-MSIX",
203 .irq_enable = unmask_msi_irq,
204 .irq_disable = mask_msi_irq,
205 .irq_mask_ack = xlp_msix_mask_ack,
206 .irq_unmask = unmask_msi_irq,
207};
208
Jayachandran Cc24a8a72013-12-21 16:52:13 +0530209void arch_teardown_msi_irq(unsigned int irq)
210{
Jayachandran Cc24a8a72013-12-21 16:52:13 +0530211}
212
213/*
214 * Setup a PCIe link for MSI. By default, the links are in
215 * legacy interrupt mode. We will switch them to MSI mode
216 * at the first MSI request.
217 */
218static void xlp_config_link_msi(uint64_t lnkbase, int lirq, uint64_t msiaddr)
219{
220 u32 val;
221
222 val = nlm_read_reg(lnkbase, PCIE_INT_EN0);
223 if ((val & 0x200) == 0) {
224 val |= 0x200; /* MSI Interrupt enable */
225 nlm_write_reg(lnkbase, PCIE_INT_EN0, val);
226 }
227
228 val = nlm_read_reg(lnkbase, 0x1); /* CMD */
229 if ((val & 0x0400) == 0) {
230 val |= 0x0400;
231 nlm_write_reg(lnkbase, 0x1, val);
232 }
233
234 /* Update IRQ in the PCI irq reg */
235 val = nlm_read_pci_reg(lnkbase, 0xf);
236 val &= ~0x1fu;
237 val |= (1 << 8) | lirq;
238 nlm_write_pci_reg(lnkbase, 0xf, val);
239
240 /* MSI addr */
241 nlm_write_reg(lnkbase, PCIE_BRIDGE_MSI_ADDRH, msiaddr >> 32);
242 nlm_write_reg(lnkbase, PCIE_BRIDGE_MSI_ADDRL, msiaddr & 0xffffffff);
243
244 /* MSI cap for bridge */
245 val = nlm_read_reg(lnkbase, PCIE_BRIDGE_MSI_CAP);
246 if ((val & (1 << 16)) == 0) {
247 val |= 0xb << 16; /* mmc32, msi enable */
248 nlm_write_reg(lnkbase, PCIE_BRIDGE_MSI_CAP, val);
249 }
250}
251
252/*
253 * Allocate a MSI vector on a link
254 */
255static int xlp_setup_msi(uint64_t lnkbase, int node, int link,
256 struct msi_desc *desc)
257{
258 struct xlp_msi_data *md;
259 struct msi_msg msg;
260 unsigned long flags;
261 int msivec, irt, lirq, xirq, ret;
262 uint64_t msiaddr;
263
264 /* Get MSI data for the link */
265 lirq = PIC_PCIE_LINK_MSI_IRQ(link);
266 xirq = nlm_irq_to_xirq(node, nlm_link_msiirq(link, 0));
267 md = irq_get_handler_data(xirq);
268 msiaddr = MSI_LINK_ADDR(node, link);
269
270 spin_lock_irqsave(&md->msi_lock, flags);
271 if (md->msi_alloc_mask == 0) {
272 /* switch the link IRQ to MSI range */
273 xlp_config_link_msi(lnkbase, lirq, msiaddr);
274 irt = PIC_IRT_PCIE_LINK_INDEX(link);
275 nlm_setup_pic_irq(node, lirq, lirq, irt);
276 nlm_pic_init_irt(nlm_get_node(node)->picbase, irt, lirq,
Jayachandran C98d48842013-12-21 16:52:26 +0530277 node * nlm_threads_per_node(), 1 /*en */);
Jayachandran Cc24a8a72013-12-21 16:52:13 +0530278 }
279
280 /* allocate a MSI vec, and tell the bridge about it */
281 msivec = fls(md->msi_alloc_mask);
282 if (msivec == XLP_MSIVEC_PER_LINK) {
283 spin_unlock_irqrestore(&md->msi_lock, flags);
284 return -ENOMEM;
285 }
286 md->msi_alloc_mask |= (1u << msivec);
287 spin_unlock_irqrestore(&md->msi_lock, flags);
288
289 msg.address_hi = msiaddr >> 32;
290 msg.address_lo = msiaddr & 0xffffffff;
291 msg.data = 0xc00 | msivec;
292
293 xirq = xirq + msivec; /* msi mapped to global irq space */
294 ret = irq_set_msi_desc(xirq, desc);
Thomas Gleixner465665f2014-05-07 15:44:05 +0000295 if (ret < 0)
Jayachandran Cc24a8a72013-12-21 16:52:13 +0530296 return ret;
Jayachandran Cc24a8a72013-12-21 16:52:13 +0530297
298 write_msi_msg(xirq, &msg);
299 return 0;
300}
301
302/*
303 * Switch a link to MSI-X mode
304 */
305static void xlp_config_link_msix(uint64_t lnkbase, int lirq, uint64_t msixaddr)
306{
307 u32 val;
308
309 val = nlm_read_reg(lnkbase, 0x2C);
310 if ((val & 0x80000000U) == 0) {
311 val |= 0x80000000U;
312 nlm_write_reg(lnkbase, 0x2C, val);
313 }
314 val = nlm_read_reg(lnkbase, PCIE_INT_EN0);
315 if ((val & 0x200) == 0) {
316 val |= 0x200; /* MSI Interrupt enable */
317 nlm_write_reg(lnkbase, PCIE_INT_EN0, val);
318 }
319
320 val = nlm_read_reg(lnkbase, 0x1); /* CMD */
321 if ((val & 0x0400) == 0) {
322 val |= 0x0400;
323 nlm_write_reg(lnkbase, 0x1, val);
324 }
325
326 /* Update IRQ in the PCI irq reg */
327 val = nlm_read_pci_reg(lnkbase, 0xf);
328 val &= ~0x1fu;
329 val |= (1 << 8) | lirq;
330 nlm_write_pci_reg(lnkbase, 0xf, val);
331
332 /* MSI-X addresses */
333 nlm_write_reg(lnkbase, PCIE_BRIDGE_MSIX_ADDR_BASE, msixaddr >> 8);
334 nlm_write_reg(lnkbase, PCIE_BRIDGE_MSIX_ADDR_LIMIT,
335 (msixaddr + MSI_ADDR_SZ) >> 8);
336}
337
338/*
339 * Allocate a MSI-X vector
340 */
341static int xlp_setup_msix(uint64_t lnkbase, int node, int link,
342 struct msi_desc *desc)
343{
344 struct xlp_msi_data *md;
345 struct msi_msg msg;
346 unsigned long flags;
347 int t, msixvec, lirq, xirq, ret;
348 uint64_t msixaddr;
349
350 /* Get MSI data for the link */
351 lirq = PIC_PCIE_MSIX_IRQ(link);
352 xirq = nlm_irq_to_xirq(node, nlm_link_msixirq(link, 0));
353 md = irq_get_handler_data(xirq);
354 msixaddr = MSIX_LINK_ADDR(node, link);
355
356 spin_lock_irqsave(&md->msi_lock, flags);
357 /* switch the PCIe link to MSI-X mode at the first alloc */
358 if (md->msix_alloc_mask == 0)
359 xlp_config_link_msix(lnkbase, lirq, msixaddr);
360
361 /* allocate a MSI-X vec, and tell the bridge about it */
362 t = fls(md->msix_alloc_mask);
363 if (t == XLP_MSIXVEC_PER_LINK) {
364 spin_unlock_irqrestore(&md->msi_lock, flags);
365 return -ENOMEM;
366 }
367 md->msix_alloc_mask |= (1u << t);
368 spin_unlock_irqrestore(&md->msi_lock, flags);
369
370 xirq += t;
371 msixvec = nlm_irq_msixvec(xirq);
372 msg.address_hi = msixaddr >> 32;
373 msg.address_lo = msixaddr & 0xffffffff;
374 msg.data = 0xc00 | msixvec;
375
376 ret = irq_set_msi_desc(xirq, desc);
377 if (ret < 0) {
378 destroy_irq(xirq);
379 return ret;
380 }
381
382 write_msi_msg(xirq, &msg);
383 return 0;
384}
385
386int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
387{
388 struct pci_dev *lnkdev;
389 uint64_t lnkbase;
390 int node, link, slot;
391
392 lnkdev = xlp_get_pcie_link(dev);
393 if (lnkdev == NULL) {
394 dev_err(&dev->dev, "Could not find bridge\n");
395 return 1;
396 }
397 slot = PCI_SLOT(lnkdev->devfn);
398 link = PCI_FUNC(lnkdev->devfn);
399 node = slot / 8;
400 lnkbase = nlm_get_pcie_base(node, link);
401
402 if (desc->msi_attrib.is_msix)
403 return xlp_setup_msix(lnkbase, node, link, desc);
404 else
405 return xlp_setup_msi(lnkbase, node, link, desc);
406}
407
408void __init xlp_init_node_msi_irqs(int node, int link)
409{
410 struct nlm_soc_info *nodep;
411 struct xlp_msi_data *md;
412 int irq, i, irt, msixvec;
413
414 pr_info("[%d %d] Init node PCI IRT\n", node, link);
415 nodep = nlm_get_node(node);
416
417 /* Alloc an MSI block for the link */
418 md = kzalloc(sizeof(*md), GFP_KERNEL);
419 spin_lock_init(&md->msi_lock);
420 md->msi_enabled_mask = 0;
421 md->msi_alloc_mask = 0;
422 md->msix_alloc_mask = 0;
423 md->node = nodep;
424 md->lnkbase = nlm_get_pcie_base(node, link);
425
426 /* extended space for MSI interrupts */
427 irq = nlm_irq_to_xirq(node, nlm_link_msiirq(link, 0));
428 for (i = irq; i < irq + XLP_MSIVEC_PER_LINK; i++) {
429 irq_set_chip_and_handler(i, &xlp_msi_chip, handle_level_irq);
430 irq_set_handler_data(i, md);
431 }
432
433 for (i = 0; i < XLP_MSIXVEC_PER_LINK; i++) {
434 /* Initialize MSI-X irts to generate one interrupt per link */
435 msixvec = link * XLP_MSIXVEC_PER_LINK + i;
436 irt = PIC_IRT_PCIE_MSIX_INDEX(msixvec);
437 nlm_pic_init_irt(nodep->picbase, irt, PIC_PCIE_MSIX_IRQ(link),
Jayachandran C98d48842013-12-21 16:52:26 +0530438 node * nlm_threads_per_node(), 1 /* enable */);
Jayachandran Cc24a8a72013-12-21 16:52:13 +0530439
440 /* Initialize MSI-X extended irq space for the link */
441 irq = nlm_irq_to_xirq(node, nlm_link_msixirq(link, i));
442 irq_set_chip_and_handler(irq, &xlp_msix_chip, handle_level_irq);
443 irq_set_handler_data(irq, md);
444 }
445
446}
447
448void nlm_dispatch_msi(int node, int lirq)
449{
450 struct xlp_msi_data *md;
451 int link, i, irqbase;
452 u32 status;
453
454 link = lirq - PIC_PCIE_LINK_MSI_IRQ_BASE;
455 irqbase = nlm_irq_to_xirq(node, nlm_link_msiirq(link, 0));
456 md = irq_get_handler_data(irqbase);
457 status = nlm_read_reg(md->lnkbase, PCIE_MSI_STATUS) &
458 md->msi_enabled_mask;
459 while (status) {
460 i = __ffs(status);
461 do_IRQ(irqbase + i);
462 status &= status - 1;
463 }
464}
465
466void nlm_dispatch_msix(int node, int lirq)
467{
468 struct xlp_msi_data *md;
469 int link, i, irqbase;
470 u32 status;
471
472 link = lirq - PIC_PCIE_MSIX_IRQ_BASE;
473 irqbase = nlm_irq_to_xirq(node, nlm_link_msixirq(link, 0));
474 md = irq_get_handler_data(irqbase);
475 status = nlm_read_reg(md->lnkbase, PCIE_MSIX_STATUS);
476
477 /* narrow it down to the MSI-x vectors for our link */
478 status = (status >> (link * XLP_MSIXVEC_PER_LINK)) &
479 ((1 << XLP_MSIXVEC_PER_LINK) - 1);
480
481 while (status) {
482 i = __ffs(status);
483 do_IRQ(irqbase + i);
484 status &= status - 1;
485 }
486}