treewide: Add SPDX license identifier for more missed files
[linux-block.git] / drivers / thunderbolt / nhi.c
CommitLineData
09c434b8 1// SPDX-License-Identifier: GPL-2.0-only
16603153 2/*
15c6784c 3 * Thunderbolt driver - NHI driver
16603153
AN
4 *
5 * The NHI (native host interface) is the pci device that allows us to send and
6 * receive frames from the thunderbolt bus.
7 *
8 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
15c6784c 9 * Copyright (C) 2018, Intel Corporation
16603153
AN
10 */
11
23dd5bb4 12#include <linux/pm_runtime.h>
16603153
AN
13#include <linux/slab.h>
14#include <linux/errno.h>
15#include <linux/pci.h>
16#include <linux/interrupt.h>
17#include <linux/module.h>
cd446ee2 18#include <linux/delay.h>
16603153
AN
19
20#include "nhi.h"
21#include "nhi_regs.h"
d6cc51cd 22#include "tb.h"
16603153
AN
23
24#define RING_TYPE(ring) ((ring)->is_tx ? "TX ring" : "RX ring")
25
9fb1e654
MW
26/*
27 * Used to enable end-to-end workaround for missing RX packets. Do not
28 * use this ring for anything else.
29 */
30#define RING_E2E_UNUSED_HOPID 2
0b2863ac 31#define RING_FIRST_USABLE_HOPID TB_PATH_MIN_HOPID
9fb1e654 32
046bee1f
MW
33/*
34 * Minimal number of vectors when we use MSI-X. Two for control channel
35 * Rx/Tx and the rest four are for cross domain DMA paths.
36 */
37#define MSIX_MIN_VECS 6
38#define MSIX_MAX_VECS 16
16603153 39
cd446ee2
MW
40#define NHI_MAILBOX_TIMEOUT 500 /* ms */
41
16603153
AN
42static int ring_interrupt_index(struct tb_ring *ring)
43{
44 int bit = ring->hop;
45 if (!ring->is_tx)
46 bit += ring->nhi->hop_count;
47 return bit;
48}
49
50/**
51 * ring_interrupt_active() - activate/deactivate interrupts for a single ring
52 *
53 * ring->nhi->lock must be held.
54 */
55static void ring_interrupt_active(struct tb_ring *ring, bool active)
56{
19bf4d4f
LW
57 int reg = REG_RING_INTERRUPT_BASE +
58 ring_interrupt_index(ring) / 32 * 4;
16603153
AN
59 int bit = ring_interrupt_index(ring) & 31;
60 int mask = 1 << bit;
61 u32 old, new;
046bee1f
MW
62
63 if (ring->irq > 0) {
64 u32 step, shift, ivr, misc;
65 void __iomem *ivr_base;
66 int index;
67
68 if (ring->is_tx)
69 index = ring->hop;
70 else
71 index = ring->hop + ring->nhi->hop_count;
72
73 /*
74 * Ask the hardware to clear interrupt status bits automatically
75 * since we already know which interrupt was triggered.
76 */
77 misc = ioread32(ring->nhi->iobase + REG_DMA_MISC);
78 if (!(misc & REG_DMA_MISC_INT_AUTO_CLEAR)) {
79 misc |= REG_DMA_MISC_INT_AUTO_CLEAR;
80 iowrite32(misc, ring->nhi->iobase + REG_DMA_MISC);
81 }
82
83 ivr_base = ring->nhi->iobase + REG_INT_VEC_ALLOC_BASE;
84 step = index / REG_INT_VEC_ALLOC_REGS * REG_INT_VEC_ALLOC_BITS;
85 shift = index % REG_INT_VEC_ALLOC_REGS * REG_INT_VEC_ALLOC_BITS;
86 ivr = ioread32(ivr_base + step);
87 ivr &= ~(REG_INT_VEC_ALLOC_MASK << shift);
88 if (active)
89 ivr |= ring->vector << shift;
90 iowrite32(ivr, ivr_base + step);
91 }
92
16603153
AN
93 old = ioread32(ring->nhi->iobase + reg);
94 if (active)
95 new = old | mask;
96 else
97 new = old & ~mask;
98
daa5140f
MW
99 dev_dbg(&ring->nhi->pdev->dev,
100 "%s interrupt at register %#x bit %d (%#x -> %#x)\n",
101 active ? "enabling" : "disabling", reg, bit, old, new);
16603153
AN
102
103 if (new == old)
104 dev_WARN(&ring->nhi->pdev->dev,
105 "interrupt for %s %d is already %s\n",
106 RING_TYPE(ring), ring->hop,
107 active ? "enabled" : "disabled");
108 iowrite32(new, ring->nhi->iobase + reg);
109}
110
111/**
112 * nhi_disable_interrupts() - disable interrupts for all rings
113 *
114 * Use only during init and shutdown.
115 */
116static void nhi_disable_interrupts(struct tb_nhi *nhi)
117{
118 int i = 0;
119 /* disable interrupts */
120 for (i = 0; i < RING_INTERRUPT_REG_COUNT(nhi); i++)
121 iowrite32(0, nhi->iobase + REG_RING_INTERRUPT_BASE + 4 * i);
122
123 /* clear interrupt status bits */
124 for (i = 0; i < RING_NOTIFY_REG_COUNT(nhi); i++)
125 ioread32(nhi->iobase + REG_RING_NOTIFY_BASE + 4 * i);
126}
127
128/* ring helper methods */
129
130static void __iomem *ring_desc_base(struct tb_ring *ring)
131{
132 void __iomem *io = ring->nhi->iobase;
133 io += ring->is_tx ? REG_TX_RING_BASE : REG_RX_RING_BASE;
134 io += ring->hop * 16;
135 return io;
136}
137
138static void __iomem *ring_options_base(struct tb_ring *ring)
139{
140 void __iomem *io = ring->nhi->iobase;
141 io += ring->is_tx ? REG_TX_OPTIONS_BASE : REG_RX_OPTIONS_BASE;
142 io += ring->hop * 32;
143 return io;
144}
145
146static void ring_iowrite16desc(struct tb_ring *ring, u32 value, u32 offset)
147{
148 iowrite16(value, ring_desc_base(ring) + offset);
149}
150
151static void ring_iowrite32desc(struct tb_ring *ring, u32 value, u32 offset)
152{
153 iowrite32(value, ring_desc_base(ring) + offset);
154}
155
156static void ring_iowrite64desc(struct tb_ring *ring, u64 value, u32 offset)
157{
158 iowrite32(value, ring_desc_base(ring) + offset);
159 iowrite32(value >> 32, ring_desc_base(ring) + offset + 4);
160}
161
162static void ring_iowrite32options(struct tb_ring *ring, u32 value, u32 offset)
163{
164 iowrite32(value, ring_options_base(ring) + offset);
165}
166
167static bool ring_full(struct tb_ring *ring)
168{
169 return ((ring->head + 1) % ring->size) == ring->tail;
170}
171
172static bool ring_empty(struct tb_ring *ring)
173{
174 return ring->head == ring->tail;
175}
176
177/**
178 * ring_write_descriptors() - post frames from ring->queue to the controller
179 *
180 * ring->lock is held.
181 */
182static void ring_write_descriptors(struct tb_ring *ring)
183{
184 struct ring_frame *frame, *n;
185 struct ring_desc *descriptor;
186 list_for_each_entry_safe(frame, n, &ring->queue, list) {
187 if (ring_full(ring))
188 break;
189 list_move_tail(&frame->list, &ring->in_flight);
190 descriptor = &ring->descriptors[ring->head];
191 descriptor->phys = frame->buffer_phy;
192 descriptor->time = 0;
193 descriptor->flags = RING_DESC_POSTED | RING_DESC_INTERRUPT;
194 if (ring->is_tx) {
195 descriptor->length = frame->size;
196 descriptor->eof = frame->eof;
197 descriptor->sof = frame->sof;
198 }
199 ring->head = (ring->head + 1) % ring->size;
200 ring_iowrite16desc(ring, ring->head, ring->is_tx ? 10 : 8);
201 }
202}
203
204/**
205 * ring_work() - progress completed frames
206 *
207 * If the ring is shutting down then all frames are marked as canceled and
208 * their callbacks are invoked.
209 *
210 * Otherwise we collect all completed frame from the ring buffer, write new
211 * frame to the ring buffer and invoke the callbacks for the completed frames.
212 */
213static void ring_work(struct work_struct *work)
214{
215 struct tb_ring *ring = container_of(work, typeof(*ring), work);
216 struct ring_frame *frame;
217 bool canceled = false;
22b7de10 218 unsigned long flags;
16603153 219 LIST_HEAD(done);
22b7de10
MW
220
221 spin_lock_irqsave(&ring->lock, flags);
16603153
AN
222
223 if (!ring->running) {
224 /* Move all frames to done and mark them as canceled. */
225 list_splice_tail_init(&ring->in_flight, &done);
226 list_splice_tail_init(&ring->queue, &done);
227 canceled = true;
228 goto invoke_callback;
229 }
230
231 while (!ring_empty(ring)) {
232 if (!(ring->descriptors[ring->tail].flags
233 & RING_DESC_COMPLETED))
234 break;
235 frame = list_first_entry(&ring->in_flight, typeof(*frame),
236 list);
237 list_move_tail(&frame->list, &done);
238 if (!ring->is_tx) {
239 frame->size = ring->descriptors[ring->tail].length;
240 frame->eof = ring->descriptors[ring->tail].eof;
241 frame->sof = ring->descriptors[ring->tail].sof;
242 frame->flags = ring->descriptors[ring->tail].flags;
16603153
AN
243 }
244 ring->tail = (ring->tail + 1) % ring->size;
245 }
246 ring_write_descriptors(ring);
247
248invoke_callback:
22b7de10
MW
249 /* allow callbacks to schedule new work */
250 spin_unlock_irqrestore(&ring->lock, flags);
16603153
AN
251 while (!list_empty(&done)) {
252 frame = list_first_entry(&done, typeof(*frame), list);
253 /*
254 * The callback may reenqueue or delete frame.
255 * Do not hold on to it.
256 */
257 list_del_init(&frame->list);
4ffe722e
MW
258 if (frame->callback)
259 frame->callback(ring, frame, canceled);
16603153
AN
260 }
261}
262
3b3d9f4d 263int __tb_ring_enqueue(struct tb_ring *ring, struct ring_frame *frame)
16603153 264{
22b7de10 265 unsigned long flags;
16603153 266 int ret = 0;
22b7de10
MW
267
268 spin_lock_irqsave(&ring->lock, flags);
16603153
AN
269 if (ring->running) {
270 list_add_tail(&frame->list, &ring->queue);
271 ring_write_descriptors(ring);
272 } else {
273 ret = -ESHUTDOWN;
274 }
22b7de10 275 spin_unlock_irqrestore(&ring->lock, flags);
16603153
AN
276 return ret;
277}
3b3d9f4d 278EXPORT_SYMBOL_GPL(__tb_ring_enqueue);
16603153 279
4ffe722e
MW
280/**
281 * tb_ring_poll() - Poll one completed frame from the ring
282 * @ring: Ring to poll
283 *
284 * This function can be called when @start_poll callback of the @ring
285 * has been called. It will read one completed frame from the ring and
286 * return it to the caller. Returns %NULL if there is no more completed
287 * frames.
288 */
289struct ring_frame *tb_ring_poll(struct tb_ring *ring)
290{
291 struct ring_frame *frame = NULL;
292 unsigned long flags;
293
294 spin_lock_irqsave(&ring->lock, flags);
295 if (!ring->running)
296 goto unlock;
297 if (ring_empty(ring))
298 goto unlock;
299
300 if (ring->descriptors[ring->tail].flags & RING_DESC_COMPLETED) {
301 frame = list_first_entry(&ring->in_flight, typeof(*frame),
302 list);
303 list_del_init(&frame->list);
304
305 if (!ring->is_tx) {
306 frame->size = ring->descriptors[ring->tail].length;
307 frame->eof = ring->descriptors[ring->tail].eof;
308 frame->sof = ring->descriptors[ring->tail].sof;
309 frame->flags = ring->descriptors[ring->tail].flags;
310 }
311
312 ring->tail = (ring->tail + 1) % ring->size;
313 }
314
315unlock:
316 spin_unlock_irqrestore(&ring->lock, flags);
317 return frame;
318}
319EXPORT_SYMBOL_GPL(tb_ring_poll);
320
321static void __ring_interrupt_mask(struct tb_ring *ring, bool mask)
322{
323 int idx = ring_interrupt_index(ring);
324 int reg = REG_RING_INTERRUPT_BASE + idx / 32 * 4;
325 int bit = idx % 32;
326 u32 val;
327
328 val = ioread32(ring->nhi->iobase + reg);
329 if (mask)
330 val &= ~BIT(bit);
331 else
332 val |= BIT(bit);
333 iowrite32(val, ring->nhi->iobase + reg);
334}
335
336/* Both @nhi->lock and @ring->lock should be held */
337static void __ring_interrupt(struct tb_ring *ring)
338{
339 if (!ring->running)
340 return;
341
342 if (ring->start_poll) {
74657181 343 __ring_interrupt_mask(ring, true);
4ffe722e
MW
344 ring->start_poll(ring->poll_data);
345 } else {
346 schedule_work(&ring->work);
347 }
348}
349
350/**
351 * tb_ring_poll_complete() - Re-start interrupt for the ring
352 * @ring: Ring to re-start the interrupt
353 *
354 * This will re-start (unmask) the ring interrupt once the user is done
355 * with polling.
356 */
357void tb_ring_poll_complete(struct tb_ring *ring)
358{
359 unsigned long flags;
360
361 spin_lock_irqsave(&ring->nhi->lock, flags);
362 spin_lock(&ring->lock);
363 if (ring->start_poll)
364 __ring_interrupt_mask(ring, false);
365 spin_unlock(&ring->lock);
366 spin_unlock_irqrestore(&ring->nhi->lock, flags);
367}
368EXPORT_SYMBOL_GPL(tb_ring_poll_complete);
369
046bee1f
MW
370static irqreturn_t ring_msix(int irq, void *data)
371{
372 struct tb_ring *ring = data;
373
4ffe722e
MW
374 spin_lock(&ring->nhi->lock);
375 spin_lock(&ring->lock);
376 __ring_interrupt(ring);
377 spin_unlock(&ring->lock);
378 spin_unlock(&ring->nhi->lock);
379
046bee1f
MW
380 return IRQ_HANDLED;
381}
382
383static int ring_request_msix(struct tb_ring *ring, bool no_suspend)
384{
385 struct tb_nhi *nhi = ring->nhi;
386 unsigned long irqflags;
387 int ret;
388
389 if (!nhi->pdev->msix_enabled)
390 return 0;
391
392 ret = ida_simple_get(&nhi->msix_ida, 0, MSIX_MAX_VECS, GFP_KERNEL);
393 if (ret < 0)
394 return ret;
395
396 ring->vector = ret;
397
398 ring->irq = pci_irq_vector(ring->nhi->pdev, ring->vector);
399 if (ring->irq < 0)
400 return ring->irq;
401
402 irqflags = no_suspend ? IRQF_NO_SUSPEND : 0;
403 return request_irq(ring->irq, ring_msix, irqflags, "thunderbolt", ring);
404}
405
406static void ring_release_msix(struct tb_ring *ring)
407{
408 if (ring->irq <= 0)
409 return;
410
411 free_irq(ring->irq, ring);
412 ida_simple_remove(&ring->nhi->msix_ida, ring->vector);
413 ring->vector = 0;
414 ring->irq = 0;
415}
416
9a01c7c2
MW
417static int nhi_alloc_hop(struct tb_nhi *nhi, struct tb_ring *ring)
418{
419 int ret = 0;
420
421 spin_lock_irq(&nhi->lock);
422
423 if (ring->hop < 0) {
424 unsigned int i;
425
426 /*
427 * Automatically allocate HopID from the non-reserved
428 * range 8 .. hop_count - 1.
429 */
430 for (i = RING_FIRST_USABLE_HOPID; i < nhi->hop_count; i++) {
431 if (ring->is_tx) {
432 if (!nhi->tx_rings[i]) {
433 ring->hop = i;
434 break;
435 }
436 } else {
437 if (!nhi->rx_rings[i]) {
438 ring->hop = i;
439 break;
440 }
441 }
442 }
443 }
444
445 if (ring->hop < 0 || ring->hop >= nhi->hop_count) {
446 dev_warn(&nhi->pdev->dev, "invalid hop: %d\n", ring->hop);
447 ret = -EINVAL;
448 goto err_unlock;
449 }
450 if (ring->is_tx && nhi->tx_rings[ring->hop]) {
451 dev_warn(&nhi->pdev->dev, "TX hop %d already allocated\n",
452 ring->hop);
453 ret = -EBUSY;
454 goto err_unlock;
455 } else if (!ring->is_tx && nhi->rx_rings[ring->hop]) {
456 dev_warn(&nhi->pdev->dev, "RX hop %d already allocated\n",
457 ring->hop);
458 ret = -EBUSY;
459 goto err_unlock;
460 }
461
462 if (ring->is_tx)
463 nhi->tx_rings[ring->hop] = ring;
464 else
465 nhi->rx_rings[ring->hop] = ring;
466
467err_unlock:
468 spin_unlock_irq(&nhi->lock);
469
470 return ret;
471}
472
3b3d9f4d
MW
473static struct tb_ring *tb_ring_alloc(struct tb_nhi *nhi, u32 hop, int size,
474 bool transmit, unsigned int flags,
4ffe722e
MW
475 u16 sof_mask, u16 eof_mask,
476 void (*start_poll)(void *),
477 void *poll_data)
16603153
AN
478{
479 struct tb_ring *ring = NULL;
daa5140f
MW
480
481 dev_dbg(&nhi->pdev->dev, "allocating %s ring %d of size %d\n",
482 transmit ? "TX" : "RX", hop, size);
16603153 483
9fb1e654
MW
484 /* Tx Ring 2 is reserved for E2E workaround */
485 if (transmit && hop == RING_E2E_UNUSED_HOPID)
486 return NULL;
487
16603153
AN
488 ring = kzalloc(sizeof(*ring), GFP_KERNEL);
489 if (!ring)
59120e06 490 return NULL;
16603153 491
22b7de10 492 spin_lock_init(&ring->lock);
16603153
AN
493 INIT_LIST_HEAD(&ring->queue);
494 INIT_LIST_HEAD(&ring->in_flight);
495 INIT_WORK(&ring->work, ring_work);
496
497 ring->nhi = nhi;
498 ring->hop = hop;
499 ring->is_tx = transmit;
500 ring->size = size;
046bee1f 501 ring->flags = flags;
9fb1e654
MW
502 ring->sof_mask = sof_mask;
503 ring->eof_mask = eof_mask;
16603153
AN
504 ring->head = 0;
505 ring->tail = 0;
506 ring->running = false;
4ffe722e
MW
507 ring->start_poll = start_poll;
508 ring->poll_data = poll_data;
046bee1f 509
16603153
AN
510 ring->descriptors = dma_alloc_coherent(&ring->nhi->pdev->dev,
511 size * sizeof(*ring->descriptors),
512 &ring->descriptors_dma, GFP_KERNEL | __GFP_ZERO);
513 if (!ring->descriptors)
59120e06 514 goto err_free_ring;
16603153 515
59120e06
MW
516 if (ring_request_msix(ring, flags & RING_FLAG_NO_SUSPEND))
517 goto err_free_descs;
518
9a01c7c2 519 if (nhi_alloc_hop(nhi, ring))
59120e06 520 goto err_release_msix;
59120e06 521
16603153
AN
522 return ring;
523
59120e06 524err_release_msix:
59120e06
MW
525 ring_release_msix(ring);
526err_free_descs:
527 dma_free_coherent(&ring->nhi->pdev->dev,
528 ring->size * sizeof(*ring->descriptors),
529 ring->descriptors, ring->descriptors_dma);
530err_free_ring:
16603153 531 kfree(ring);
59120e06 532
16603153
AN
533 return NULL;
534}
535
3b3d9f4d
MW
536/**
537 * tb_ring_alloc_tx() - Allocate DMA ring for transmit
538 * @nhi: Pointer to the NHI the ring is to be allocated
539 * @hop: HopID (ring) to allocate
540 * @size: Number of entries in the ring
541 * @flags: Flags for the ring
542 */
543struct tb_ring *tb_ring_alloc_tx(struct tb_nhi *nhi, int hop, int size,
544 unsigned int flags)
16603153 545{
4ffe722e 546 return tb_ring_alloc(nhi, hop, size, true, flags, 0, 0, NULL, NULL);
16603153 547}
3b3d9f4d 548EXPORT_SYMBOL_GPL(tb_ring_alloc_tx);
16603153 549
3b3d9f4d
MW
550/**
551 * tb_ring_alloc_rx() - Allocate DMA ring for receive
552 * @nhi: Pointer to the NHI the ring is to be allocated
9a01c7c2 553 * @hop: HopID (ring) to allocate. Pass %-1 for automatic allocation.
3b3d9f4d
MW
554 * @size: Number of entries in the ring
555 * @flags: Flags for the ring
556 * @sof_mask: Mask of PDF values that start a frame
557 * @eof_mask: Mask of PDF values that end a frame
4ffe722e
MW
558 * @start_poll: If not %NULL the ring will call this function when an
559 * interrupt is triggered and masked, instead of callback
560 * in each Rx frame.
561 * @poll_data: Optional data passed to @start_poll
3b3d9f4d
MW
562 */
563struct tb_ring *tb_ring_alloc_rx(struct tb_nhi *nhi, int hop, int size,
4ffe722e
MW
564 unsigned int flags, u16 sof_mask, u16 eof_mask,
565 void (*start_poll)(void *), void *poll_data)
16603153 566{
4ffe722e
MW
567 return tb_ring_alloc(nhi, hop, size, false, flags, sof_mask, eof_mask,
568 start_poll, poll_data);
16603153 569}
3b3d9f4d 570EXPORT_SYMBOL_GPL(tb_ring_alloc_rx);
16603153
AN
571
572/**
3b3d9f4d 573 * tb_ring_start() - enable a ring
16603153 574 *
3b3d9f4d 575 * Must not be invoked in parallel with tb_ring_stop().
16603153 576 */
3b3d9f4d 577void tb_ring_start(struct tb_ring *ring)
16603153 578{
9fb1e654
MW
579 u16 frame_size;
580 u32 flags;
581
59120e06
MW
582 spin_lock_irq(&ring->nhi->lock);
583 spin_lock(&ring->lock);
bdccf295
MW
584 if (ring->nhi->going_away)
585 goto err;
16603153
AN
586 if (ring->running) {
587 dev_WARN(&ring->nhi->pdev->dev, "ring already started\n");
588 goto err;
589 }
daa5140f
MW
590 dev_dbg(&ring->nhi->pdev->dev, "starting %s %d\n",
591 RING_TYPE(ring), ring->hop);
16603153 592
9fb1e654
MW
593 if (ring->flags & RING_FLAG_FRAME) {
594 /* Means 4096 */
595 frame_size = 0;
596 flags = RING_FLAG_ENABLE;
597 } else {
598 frame_size = TB_FRAME_SIZE;
599 flags = RING_FLAG_ENABLE | RING_FLAG_RAW;
600 }
601
602 if (ring->flags & RING_FLAG_E2E && !ring->is_tx) {
603 u32 hop;
604
605 /*
606 * In order not to lose Rx packets we enable end-to-end
607 * workaround which transfers Rx credits to an unused Tx
608 * HopID.
609 */
610 hop = RING_E2E_UNUSED_HOPID << REG_RX_OPTIONS_E2E_HOP_SHIFT;
611 hop &= REG_RX_OPTIONS_E2E_HOP_MASK;
612 flags |= hop | RING_FLAG_E2E_FLOW_CONTROL;
613 }
614
16603153
AN
615 ring_iowrite64desc(ring, ring->descriptors_dma, 0);
616 if (ring->is_tx) {
617 ring_iowrite32desc(ring, ring->size, 12);
618 ring_iowrite32options(ring, 0, 4); /* time releated ? */
9fb1e654 619 ring_iowrite32options(ring, flags, 0);
16603153 620 } else {
9fb1e654
MW
621 u32 sof_eof_mask = ring->sof_mask << 16 | ring->eof_mask;
622
623 ring_iowrite32desc(ring, (frame_size << 16) | ring->size, 12);
624 ring_iowrite32options(ring, sof_eof_mask, 4);
625 ring_iowrite32options(ring, flags, 0);
16603153
AN
626 }
627 ring_interrupt_active(ring, true);
628 ring->running = true;
629err:
59120e06
MW
630 spin_unlock(&ring->lock);
631 spin_unlock_irq(&ring->nhi->lock);
16603153 632}
3b3d9f4d 633EXPORT_SYMBOL_GPL(tb_ring_start);
16603153
AN
634
635/**
3b3d9f4d 636 * tb_ring_stop() - shutdown a ring
16603153
AN
637 *
638 * Must not be invoked from a callback.
639 *
3b3d9f4d
MW
640 * This method will disable the ring. Further calls to
641 * tb_ring_tx/tb_ring_rx will return -ESHUTDOWN until ring_stop has been
642 * called.
16603153
AN
643 *
644 * All enqueued frames will be canceled and their callbacks will be executed
645 * with frame->canceled set to true (on the callback thread). This method
646 * returns only after all callback invocations have finished.
647 */
3b3d9f4d 648void tb_ring_stop(struct tb_ring *ring)
16603153 649{
59120e06
MW
650 spin_lock_irq(&ring->nhi->lock);
651 spin_lock(&ring->lock);
daa5140f
MW
652 dev_dbg(&ring->nhi->pdev->dev, "stopping %s %d\n",
653 RING_TYPE(ring), ring->hop);
bdccf295
MW
654 if (ring->nhi->going_away)
655 goto err;
16603153
AN
656 if (!ring->running) {
657 dev_WARN(&ring->nhi->pdev->dev, "%s %d already stopped\n",
658 RING_TYPE(ring), ring->hop);
659 goto err;
660 }
661 ring_interrupt_active(ring, false);
662
663 ring_iowrite32options(ring, 0, 0);
664 ring_iowrite64desc(ring, 0, 0);
665 ring_iowrite16desc(ring, 0, ring->is_tx ? 10 : 8);
666 ring_iowrite32desc(ring, 0, 12);
667 ring->head = 0;
668 ring->tail = 0;
669 ring->running = false;
670
671err:
59120e06
MW
672 spin_unlock(&ring->lock);
673 spin_unlock_irq(&ring->nhi->lock);
16603153
AN
674
675 /*
676 * schedule ring->work to invoke callbacks on all remaining frames.
677 */
678 schedule_work(&ring->work);
679 flush_work(&ring->work);
680}
3b3d9f4d 681EXPORT_SYMBOL_GPL(tb_ring_stop);
16603153
AN
682
683/*
3b3d9f4d 684 * tb_ring_free() - free ring
16603153
AN
685 *
686 * When this method returns all invocations of ring->callback will have
687 * finished.
688 *
689 * Ring must be stopped.
690 *
691 * Must NOT be called from ring_frame->callback!
692 */
3b3d9f4d 693void tb_ring_free(struct tb_ring *ring)
16603153 694{
59120e06 695 spin_lock_irq(&ring->nhi->lock);
16603153
AN
696 /*
697 * Dissociate the ring from the NHI. This also ensures that
698 * nhi_interrupt_work cannot reschedule ring->work.
699 */
700 if (ring->is_tx)
701 ring->nhi->tx_rings[ring->hop] = NULL;
702 else
703 ring->nhi->rx_rings[ring->hop] = NULL;
704
705 if (ring->running) {
706 dev_WARN(&ring->nhi->pdev->dev, "%s %d still running\n",
707 RING_TYPE(ring), ring->hop);
708 }
4ffe722e 709 spin_unlock_irq(&ring->nhi->lock);
16603153 710
046bee1f
MW
711 ring_release_msix(ring);
712
16603153
AN
713 dma_free_coherent(&ring->nhi->pdev->dev,
714 ring->size * sizeof(*ring->descriptors),
715 ring->descriptors, ring->descriptors_dma);
716
f19b72c6 717 ring->descriptors = NULL;
16603153
AN
718 ring->descriptors_dma = 0;
719
720
daa5140f
MW
721 dev_dbg(&ring->nhi->pdev->dev, "freeing %s %d\n", RING_TYPE(ring),
722 ring->hop);
16603153 723
16603153 724 /**
046bee1f
MW
725 * ring->work can no longer be scheduled (it is scheduled only
726 * by nhi_interrupt_work, ring_stop and ring_msix). Wait for it
727 * to finish before freeing the ring.
16603153
AN
728 */
729 flush_work(&ring->work);
16603153
AN
730 kfree(ring);
731}
3b3d9f4d 732EXPORT_SYMBOL_GPL(tb_ring_free);
16603153 733
cd446ee2
MW
734/**
735 * nhi_mailbox_cmd() - Send a command through NHI mailbox
736 * @nhi: Pointer to the NHI structure
737 * @cmd: Command to send
738 * @data: Data to be send with the command
739 *
740 * Sends mailbox command to the firmware running on NHI. Returns %0 in
741 * case of success and negative errno in case of failure.
742 */
743int nhi_mailbox_cmd(struct tb_nhi *nhi, enum nhi_mailbox_cmd cmd, u32 data)
744{
745 ktime_t timeout;
746 u32 val;
747
748 iowrite32(data, nhi->iobase + REG_INMAIL_DATA);
749
750 val = ioread32(nhi->iobase + REG_INMAIL_CMD);
751 val &= ~(REG_INMAIL_CMD_MASK | REG_INMAIL_ERROR);
752 val |= REG_INMAIL_OP_REQUEST | cmd;
753 iowrite32(val, nhi->iobase + REG_INMAIL_CMD);
754
755 timeout = ktime_add_ms(ktime_get(), NHI_MAILBOX_TIMEOUT);
756 do {
757 val = ioread32(nhi->iobase + REG_INMAIL_CMD);
758 if (!(val & REG_INMAIL_OP_REQUEST))
759 break;
760 usleep_range(10, 20);
761 } while (ktime_before(ktime_get(), timeout));
762
763 if (val & REG_INMAIL_OP_REQUEST)
764 return -ETIMEDOUT;
765 if (val & REG_INMAIL_ERROR)
766 return -EIO;
767
768 return 0;
769}
770
771/**
772 * nhi_mailbox_mode() - Return current firmware operation mode
773 * @nhi: Pointer to the NHI structure
774 *
775 * The function reads current firmware operation mode using NHI mailbox
776 * registers and returns it to the caller.
777 */
778enum nhi_fw_mode nhi_mailbox_mode(struct tb_nhi *nhi)
779{
780 u32 val;
781
782 val = ioread32(nhi->iobase + REG_OUTMAIL_CMD);
783 val &= REG_OUTMAIL_CMD_OPMODE_MASK;
784 val >>= REG_OUTMAIL_CMD_OPMODE_SHIFT;
785
786 return (enum nhi_fw_mode)val;
787}
788
16603153
AN
789static void nhi_interrupt_work(struct work_struct *work)
790{
791 struct tb_nhi *nhi = container_of(work, typeof(*nhi), interrupt_work);
792 int value = 0; /* Suppress uninitialized usage warning. */
793 int bit;
794 int hop = -1;
795 int type = 0; /* current interrupt type 0: TX, 1: RX, 2: RX overflow */
796 struct tb_ring *ring;
797
59120e06 798 spin_lock_irq(&nhi->lock);
16603153
AN
799
800 /*
801 * Starting at REG_RING_NOTIFY_BASE there are three status bitfields
802 * (TX, RX, RX overflow). We iterate over the bits and read a new
803 * dwords as required. The registers are cleared on read.
804 */
805 for (bit = 0; bit < 3 * nhi->hop_count; bit++) {
806 if (bit % 32 == 0)
807 value = ioread32(nhi->iobase
808 + REG_RING_NOTIFY_BASE
809 + 4 * (bit / 32));
810 if (++hop == nhi->hop_count) {
811 hop = 0;
812 type++;
813 }
814 if ((value & (1 << (bit % 32))) == 0)
815 continue;
816 if (type == 2) {
817 dev_warn(&nhi->pdev->dev,
818 "RX overflow for ring %d\n",
819 hop);
820 continue;
821 }
822 if (type == 0)
823 ring = nhi->tx_rings[hop];
824 else
825 ring = nhi->rx_rings[hop];
826 if (ring == NULL) {
827 dev_warn(&nhi->pdev->dev,
828 "got interrupt for inactive %s ring %d\n",
829 type ? "RX" : "TX",
830 hop);
831 continue;
832 }
4ffe722e
MW
833
834 spin_lock(&ring->lock);
835 __ring_interrupt(ring);
836 spin_unlock(&ring->lock);
16603153 837 }
59120e06 838 spin_unlock_irq(&nhi->lock);
16603153
AN
839}
840
841static irqreturn_t nhi_msi(int irq, void *data)
842{
843 struct tb_nhi *nhi = data;
844 schedule_work(&nhi->interrupt_work);
845 return IRQ_HANDLED;
846}
847
23dd5bb4
AN
848static int nhi_suspend_noirq(struct device *dev)
849{
850 struct pci_dev *pdev = to_pci_dev(dev);
851 struct tb *tb = pci_get_drvdata(pdev);
9d3cce0b
MW
852
853 return tb_domain_suspend_noirq(tb);
23dd5bb4
AN
854}
855
8c6bba10
MW
856static void nhi_enable_int_throttling(struct tb_nhi *nhi)
857{
858 /* Throttling is specified in 256ns increments */
859 u32 throttle = DIV_ROUND_UP(128 * NSEC_PER_USEC, 256);
860 unsigned int i;
861
862 /*
863 * Configure interrupt throttling for all vectors even if we
864 * only use few.
865 */
866 for (i = 0; i < MSIX_MAX_VECS; i++) {
867 u32 reg = REG_INT_THROTTLING_RATE + i * 4;
868 iowrite32(throttle, nhi->iobase + reg);
869 }
870}
871
23dd5bb4
AN
872static int nhi_resume_noirq(struct device *dev)
873{
874 struct pci_dev *pdev = to_pci_dev(dev);
875 struct tb *tb = pci_get_drvdata(pdev);
9d3cce0b 876
bdccf295
MW
877 /*
878 * Check that the device is still there. It may be that the user
879 * unplugged last device which causes the host controller to go
880 * away on PCs.
881 */
882 if (!pci_device_is_present(pdev))
883 tb->nhi->going_away = true;
8c6bba10
MW
884 else
885 nhi_enable_int_throttling(tb->nhi);
bdccf295 886
9d3cce0b 887 return tb_domain_resume_noirq(tb);
23dd5bb4
AN
888}
889
f67cf491
MW
890static int nhi_suspend(struct device *dev)
891{
892 struct pci_dev *pdev = to_pci_dev(dev);
893 struct tb *tb = pci_get_drvdata(pdev);
894
895 return tb_domain_suspend(tb);
896}
897
898static void nhi_complete(struct device *dev)
899{
900 struct pci_dev *pdev = to_pci_dev(dev);
901 struct tb *tb = pci_get_drvdata(pdev);
902
2d8ff0b5
MW
903 /*
904 * If we were runtime suspended when system suspend started,
905 * schedule runtime resume now. It should bring the domain back
906 * to functional state.
907 */
908 if (pm_runtime_suspended(&pdev->dev))
909 pm_runtime_resume(&pdev->dev);
910 else
911 tb_domain_complete(tb);
912}
913
914static int nhi_runtime_suspend(struct device *dev)
915{
916 struct pci_dev *pdev = to_pci_dev(dev);
917 struct tb *tb = pci_get_drvdata(pdev);
918
919 return tb_domain_runtime_suspend(tb);
920}
921
922static int nhi_runtime_resume(struct device *dev)
923{
924 struct pci_dev *pdev = to_pci_dev(dev);
925 struct tb *tb = pci_get_drvdata(pdev);
926
927 nhi_enable_int_throttling(tb->nhi);
928 return tb_domain_runtime_resume(tb);
f67cf491
MW
929}
930
16603153
AN
931static void nhi_shutdown(struct tb_nhi *nhi)
932{
933 int i;
daa5140f
MW
934
935 dev_dbg(&nhi->pdev->dev, "shutdown\n");
16603153
AN
936
937 for (i = 0; i < nhi->hop_count; i++) {
938 if (nhi->tx_rings[i])
939 dev_WARN(&nhi->pdev->dev,
940 "TX ring %d is still active\n", i);
941 if (nhi->rx_rings[i])
942 dev_WARN(&nhi->pdev->dev,
943 "RX ring %d is still active\n", i);
944 }
945 nhi_disable_interrupts(nhi);
946 /*
947 * We have to release the irq before calling flush_work. Otherwise an
948 * already executing IRQ handler could call schedule_work again.
949 */
046bee1f
MW
950 if (!nhi->pdev->msix_enabled) {
951 devm_free_irq(&nhi->pdev->dev, nhi->pdev->irq, nhi);
952 flush_work(&nhi->interrupt_work);
953 }
046bee1f
MW
954 ida_destroy(&nhi->msix_ida);
955}
956
957static int nhi_init_msi(struct tb_nhi *nhi)
958{
959 struct pci_dev *pdev = nhi->pdev;
960 int res, irq, nvec;
961
962 /* In case someone left them on. */
963 nhi_disable_interrupts(nhi);
964
8c6bba10
MW
965 nhi_enable_int_throttling(nhi);
966
046bee1f
MW
967 ida_init(&nhi->msix_ida);
968
969 /*
970 * The NHI has 16 MSI-X vectors or a single MSI. We first try to
971 * get all MSI-X vectors and if we succeed, each ring will have
972 * one MSI-X. If for some reason that does not work out, we
973 * fallback to a single MSI.
974 */
975 nvec = pci_alloc_irq_vectors(pdev, MSIX_MIN_VECS, MSIX_MAX_VECS,
976 PCI_IRQ_MSIX);
977 if (nvec < 0) {
978 nvec = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_MSI);
979 if (nvec < 0)
980 return nvec;
981
982 INIT_WORK(&nhi->interrupt_work, nhi_interrupt_work);
983
984 irq = pci_irq_vector(nhi->pdev, 0);
985 if (irq < 0)
986 return irq;
987
988 res = devm_request_irq(&pdev->dev, irq, nhi_msi,
989 IRQF_NO_SUSPEND, "thunderbolt", nhi);
990 if (res) {
991 dev_err(&pdev->dev, "request_irq failed, aborting\n");
992 return res;
993 }
994 }
995
996 return 0;
16603153
AN
997}
998
999static int nhi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1000{
1001 struct tb_nhi *nhi;
d6cc51cd 1002 struct tb *tb;
16603153
AN
1003 int res;
1004
1005 res = pcim_enable_device(pdev);
1006 if (res) {
1007 dev_err(&pdev->dev, "cannot enable PCI device, aborting\n");
1008 return res;
1009 }
1010
16603153
AN
1011 res = pcim_iomap_regions(pdev, 1 << 0, "thunderbolt");
1012 if (res) {
1013 dev_err(&pdev->dev, "cannot obtain PCI resources, aborting\n");
1014 return res;
1015 }
1016
1017 nhi = devm_kzalloc(&pdev->dev, sizeof(*nhi), GFP_KERNEL);
1018 if (!nhi)
1019 return -ENOMEM;
1020
1021 nhi->pdev = pdev;
1022 /* cannot fail - table is allocated bin pcim_iomap_regions */
1023 nhi->iobase = pcim_iomap_table(pdev)[0];
1024 nhi->hop_count = ioread32(nhi->iobase + REG_HOP_COUNT) & 0x3ff;
19bf4d4f 1025 if (nhi->hop_count != 12 && nhi->hop_count != 32)
16603153
AN
1026 dev_warn(&pdev->dev, "unexpected hop count: %d\n",
1027 nhi->hop_count);
16603153 1028
2a211f32
HS
1029 nhi->tx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
1030 sizeof(*nhi->tx_rings), GFP_KERNEL);
1031 nhi->rx_rings = devm_kcalloc(&pdev->dev, nhi->hop_count,
1032 sizeof(*nhi->rx_rings), GFP_KERNEL);
16603153
AN
1033 if (!nhi->tx_rings || !nhi->rx_rings)
1034 return -ENOMEM;
1035
046bee1f 1036 res = nhi_init_msi(nhi);
16603153 1037 if (res) {
046bee1f 1038 dev_err(&pdev->dev, "cannot enable MSI, aborting\n");
16603153
AN
1039 return res;
1040 }
1041
59120e06 1042 spin_lock_init(&nhi->lock);
16603153 1043
dba3caf6
MW
1044 res = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
1045 if (res)
1046 res = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
1047 if (res) {
1048 dev_err(&pdev->dev, "failed to set DMA mask\n");
1049 return res;
1050 }
1051
16603153
AN
1052 pci_set_master(pdev);
1053
f67cf491 1054 tb = icm_probe(nhi);
9d3cce0b 1055 if (!tb)
f67cf491
MW
1056 tb = tb_probe(nhi);
1057 if (!tb) {
1058 dev_err(&nhi->pdev->dev,
1059 "failed to determine connection manager, aborting\n");
9d3cce0b 1060 return -ENODEV;
f67cf491
MW
1061 }
1062
daa5140f 1063 dev_dbg(&nhi->pdev->dev, "NHI initialized, starting thunderbolt\n");
9d3cce0b
MW
1064
1065 res = tb_domain_add(tb);
1066 if (res) {
d6cc51cd
AN
1067 /*
1068 * At this point the RX/TX rings might already have been
1069 * activated. Do a proper shutdown.
1070 */
9d3cce0b 1071 tb_domain_put(tb);
d6cc51cd 1072 nhi_shutdown(nhi);
68a7a2ac 1073 return res;
d6cc51cd
AN
1074 }
1075 pci_set_drvdata(pdev, tb);
16603153 1076
2d8ff0b5
MW
1077 pm_runtime_allow(&pdev->dev);
1078 pm_runtime_set_autosuspend_delay(&pdev->dev, TB_AUTOSUSPEND_DELAY);
1079 pm_runtime_use_autosuspend(&pdev->dev);
1080 pm_runtime_put_autosuspend(&pdev->dev);
1081
16603153
AN
1082 return 0;
1083}
1084
1085static void nhi_remove(struct pci_dev *pdev)
1086{
d6cc51cd
AN
1087 struct tb *tb = pci_get_drvdata(pdev);
1088 struct tb_nhi *nhi = tb->nhi;
9d3cce0b 1089
2d8ff0b5
MW
1090 pm_runtime_get_sync(&pdev->dev);
1091 pm_runtime_dont_use_autosuspend(&pdev->dev);
1092 pm_runtime_forbid(&pdev->dev);
1093
9d3cce0b 1094 tb_domain_remove(tb);
16603153
AN
1095 nhi_shutdown(nhi);
1096}
1097
23dd5bb4
AN
1098/*
1099 * The tunneled pci bridges are siblings of us. Use resume_noirq to reenable
1100 * the tunnels asap. A corresponding pci quirk blocks the downstream bridges
1101 * resume_noirq until we are done.
1102 */
1103static const struct dev_pm_ops nhi_pm_ops = {
1104 .suspend_noirq = nhi_suspend_noirq,
1105 .resume_noirq = nhi_resume_noirq,
1106 .freeze_noirq = nhi_suspend_noirq, /*
1107 * we just disable hotplug, the
1108 * pci-tunnels stay alive.
1109 */
f2a659f7 1110 .thaw_noirq = nhi_resume_noirq,
23dd5bb4 1111 .restore_noirq = nhi_resume_noirq,
f67cf491
MW
1112 .suspend = nhi_suspend,
1113 .freeze = nhi_suspend,
1114 .poweroff = nhi_suspend,
1115 .complete = nhi_complete,
2d8ff0b5
MW
1116 .runtime_suspend = nhi_runtime_suspend,
1117 .runtime_resume = nhi_runtime_resume,
23dd5bb4
AN
1118};
1119
620863f7 1120static struct pci_device_id nhi_ids[] = {
16603153
AN
1121 /*
1122 * We have to specify class, the TB bridges use the same device and
1d111406 1123 * vendor (sub)id on gen 1 and gen 2 controllers.
16603153 1124 */
19bf4d4f
LW
1125 {
1126 .class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0,
1127 .vendor = PCI_VENDOR_ID_INTEL,
1128 .device = PCI_DEVICE_ID_INTEL_LIGHT_RIDGE,
1129 .subvendor = 0x2222, .subdevice = 0x1111,
1130 },
16603153
AN
1131 {
1132 .class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0,
1d111406
LW
1133 .vendor = PCI_VENDOR_ID_INTEL,
1134 .device = PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C,
16603153
AN
1135 .subvendor = 0x2222, .subdevice = 0x1111,
1136 },
82a6a81c
XG
1137 {
1138 .class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0,
1139 .vendor = PCI_VENDOR_ID_INTEL,
1140 .device = PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI,
1141 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID,
1142 },
16603153
AN
1143 {
1144 .class = PCI_CLASS_SYSTEM_OTHER << 8, .class_mask = ~0,
1d111406
LW
1145 .vendor = PCI_VENDOR_ID_INTEL,
1146 .device = PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI,
a42fb351 1147 .subvendor = PCI_ANY_ID, .subdevice = PCI_ANY_ID,
16603153 1148 },
5e2781bc
MW
1149
1150 /* Thunderbolt 3 */
1151 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_NHI) },
1152 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_NHI) },
1153 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_USBONLY_NHI) },
1154 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_NHI) },
1155 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_USBONLY_NHI) },
1156 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_NHI) },
1157 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_NHI) },
1158 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_USBONLY_NHI) },
4bac471d
RM
1159 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_NHI) },
1160 { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_NHI) },
5e2781bc 1161
16603153
AN
1162 { 0,}
1163};
1164
1165MODULE_DEVICE_TABLE(pci, nhi_ids);
1166MODULE_LICENSE("GPL");
1167
1168static struct pci_driver nhi_driver = {
1169 .name = "thunderbolt",
1170 .id_table = nhi_ids,
1171 .probe = nhi_probe,
1172 .remove = nhi_remove,
23dd5bb4 1173 .driver.pm = &nhi_pm_ops,
16603153
AN
1174};
1175
1176static int __init nhi_init(void)
1177{
9d3cce0b
MW
1178 int ret;
1179
9d3cce0b
MW
1180 ret = tb_domain_init();
1181 if (ret)
1182 return ret;
1183 ret = pci_register_driver(&nhi_driver);
1184 if (ret)
1185 tb_domain_exit();
1186 return ret;
16603153
AN
1187}
1188
1189static void __exit nhi_unload(void)
1190{
1191 pci_unregister_driver(&nhi_driver);
9d3cce0b 1192 tb_domain_exit();
16603153
AN
1193}
1194
eafa717b 1195rootfs_initcall(nhi_init);
16603153 1196module_exit(nhi_unload);