1 // SPDX-License-Identifier: GPL-2.0-only
3 * Thunderbolt driver - NHI driver
5 * The NHI (native host interface) is the pci device that allows us to send and
6 * receive frames from the thunderbolt bus.
8 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
9 * Copyright (C) 2018, Intel Corporation
12 #include <linux/pm_runtime.h>
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>
18 #include <linux/delay.h>
19 #include <linux/property.h>
25 #define RING_TYPE(ring) ((ring)->is_tx ? "TX ring" : "RX ring")
27 #define RING_FIRST_USABLE_HOPID 1
30 * Minimal number of vectors when we use MSI-X. Two for control channel
31 * Rx/Tx and the rest four are for cross domain DMA paths.
33 #define MSIX_MIN_VECS 6
34 #define MSIX_MAX_VECS 16
36 #define NHI_MAILBOX_TIMEOUT 500 /* ms */
38 static int ring_interrupt_index(struct tb_ring
*ring
)
42 bit
+= ring
->nhi
->hop_count
;
47 * ring_interrupt_active() - activate/deactivate interrupts for a single ring
49 * ring->nhi->lock must be held.
51 static void ring_interrupt_active(struct tb_ring
*ring
, bool active
)
53 int reg
= REG_RING_INTERRUPT_BASE
+
54 ring_interrupt_index(ring
) / 32 * 4;
55 int bit
= ring_interrupt_index(ring
) & 31;
60 u32 step
, shift
, ivr
, misc
;
61 void __iomem
*ivr_base
;
67 index
= ring
->hop
+ ring
->nhi
->hop_count
;
70 * Ask the hardware to clear interrupt status bits automatically
71 * since we already know which interrupt was triggered.
73 misc
= ioread32(ring
->nhi
->iobase
+ REG_DMA_MISC
);
74 if (!(misc
& REG_DMA_MISC_INT_AUTO_CLEAR
)) {
75 misc
|= REG_DMA_MISC_INT_AUTO_CLEAR
;
76 iowrite32(misc
, ring
->nhi
->iobase
+ REG_DMA_MISC
);
79 ivr_base
= ring
->nhi
->iobase
+ REG_INT_VEC_ALLOC_BASE
;
80 step
= index
/ REG_INT_VEC_ALLOC_REGS
* REG_INT_VEC_ALLOC_BITS
;
81 shift
= index
% REG_INT_VEC_ALLOC_REGS
* REG_INT_VEC_ALLOC_BITS
;
82 ivr
= ioread32(ivr_base
+ step
);
83 ivr
&= ~(REG_INT_VEC_ALLOC_MASK
<< shift
);
85 ivr
|= ring
->vector
<< shift
;
86 iowrite32(ivr
, ivr_base
+ step
);
89 old
= ioread32(ring
->nhi
->iobase
+ reg
);
95 dev_dbg(&ring
->nhi
->pdev
->dev
,
96 "%s interrupt at register %#x bit %d (%#x -> %#x)\n",
97 active
? "enabling" : "disabling", reg
, bit
, old
, new);
100 dev_WARN(&ring
->nhi
->pdev
->dev
,
101 "interrupt for %s %d is already %s\n",
102 RING_TYPE(ring
), ring
->hop
,
103 active
? "enabled" : "disabled");
104 iowrite32(new, ring
->nhi
->iobase
+ reg
);
108 * nhi_disable_interrupts() - disable interrupts for all rings
110 * Use only during init and shutdown.
112 static void nhi_disable_interrupts(struct tb_nhi
*nhi
)
115 /* disable interrupts */
116 for (i
= 0; i
< RING_INTERRUPT_REG_COUNT(nhi
); i
++)
117 iowrite32(0, nhi
->iobase
+ REG_RING_INTERRUPT_BASE
+ 4 * i
);
119 /* clear interrupt status bits */
120 for (i
= 0; i
< RING_NOTIFY_REG_COUNT(nhi
); i
++)
121 ioread32(nhi
->iobase
+ REG_RING_NOTIFY_BASE
+ 4 * i
);
124 /* ring helper methods */
126 static void __iomem
*ring_desc_base(struct tb_ring
*ring
)
128 void __iomem
*io
= ring
->nhi
->iobase
;
129 io
+= ring
->is_tx
? REG_TX_RING_BASE
: REG_RX_RING_BASE
;
130 io
+= ring
->hop
* 16;
134 static void __iomem
*ring_options_base(struct tb_ring
*ring
)
136 void __iomem
*io
= ring
->nhi
->iobase
;
137 io
+= ring
->is_tx
? REG_TX_OPTIONS_BASE
: REG_RX_OPTIONS_BASE
;
138 io
+= ring
->hop
* 32;
142 static void ring_iowrite_cons(struct tb_ring
*ring
, u16 cons
)
145 * The other 16-bits in the register is read-only and writes to it
146 * are ignored by the hardware so we can save one ioread32() by
147 * filling the read-only bits with zeroes.
149 iowrite32(cons
, ring_desc_base(ring
) + 8);
152 static void ring_iowrite_prod(struct tb_ring
*ring
, u16 prod
)
154 /* See ring_iowrite_cons() above for explanation */
155 iowrite32(prod
<< 16, ring_desc_base(ring
) + 8);
158 static void ring_iowrite32desc(struct tb_ring
*ring
, u32 value
, u32 offset
)
160 iowrite32(value
, ring_desc_base(ring
) + offset
);
163 static void ring_iowrite64desc(struct tb_ring
*ring
, u64 value
, u32 offset
)
165 iowrite32(value
, ring_desc_base(ring
) + offset
);
166 iowrite32(value
>> 32, ring_desc_base(ring
) + offset
+ 4);
169 static void ring_iowrite32options(struct tb_ring
*ring
, u32 value
, u32 offset
)
171 iowrite32(value
, ring_options_base(ring
) + offset
);
174 static bool ring_full(struct tb_ring
*ring
)
176 return ((ring
->head
+ 1) % ring
->size
) == ring
->tail
;
179 static bool ring_empty(struct tb_ring
*ring
)
181 return ring
->head
== ring
->tail
;
185 * ring_write_descriptors() - post frames from ring->queue to the controller
187 * ring->lock is held.
189 static void ring_write_descriptors(struct tb_ring
*ring
)
191 struct ring_frame
*frame
, *n
;
192 struct ring_desc
*descriptor
;
193 list_for_each_entry_safe(frame
, n
, &ring
->queue
, list
) {
196 list_move_tail(&frame
->list
, &ring
->in_flight
);
197 descriptor
= &ring
->descriptors
[ring
->head
];
198 descriptor
->phys
= frame
->buffer_phy
;
199 descriptor
->time
= 0;
200 descriptor
->flags
= RING_DESC_POSTED
| RING_DESC_INTERRUPT
;
202 descriptor
->length
= frame
->size
;
203 descriptor
->eof
= frame
->eof
;
204 descriptor
->sof
= frame
->sof
;
206 ring
->head
= (ring
->head
+ 1) % ring
->size
;
208 ring_iowrite_prod(ring
, ring
->head
);
210 ring_iowrite_cons(ring
, ring
->head
);
215 * ring_work() - progress completed frames
217 * If the ring is shutting down then all frames are marked as canceled and
218 * their callbacks are invoked.
220 * Otherwise we collect all completed frame from the ring buffer, write new
221 * frame to the ring buffer and invoke the callbacks for the completed frames.
223 static void ring_work(struct work_struct
*work
)
225 struct tb_ring
*ring
= container_of(work
, typeof(*ring
), work
);
226 struct ring_frame
*frame
;
227 bool canceled
= false;
231 spin_lock_irqsave(&ring
->lock
, flags
);
233 if (!ring
->running
) {
234 /* Move all frames to done and mark them as canceled. */
235 list_splice_tail_init(&ring
->in_flight
, &done
);
236 list_splice_tail_init(&ring
->queue
, &done
);
238 goto invoke_callback
;
241 while (!ring_empty(ring
)) {
242 if (!(ring
->descriptors
[ring
->tail
].flags
243 & RING_DESC_COMPLETED
))
245 frame
= list_first_entry(&ring
->in_flight
, typeof(*frame
),
247 list_move_tail(&frame
->list
, &done
);
249 frame
->size
= ring
->descriptors
[ring
->tail
].length
;
250 frame
->eof
= ring
->descriptors
[ring
->tail
].eof
;
251 frame
->sof
= ring
->descriptors
[ring
->tail
].sof
;
252 frame
->flags
= ring
->descriptors
[ring
->tail
].flags
;
254 ring
->tail
= (ring
->tail
+ 1) % ring
->size
;
256 ring_write_descriptors(ring
);
259 /* allow callbacks to schedule new work */
260 spin_unlock_irqrestore(&ring
->lock
, flags
);
261 while (!list_empty(&done
)) {
262 frame
= list_first_entry(&done
, typeof(*frame
), list
);
264 * The callback may reenqueue or delete frame.
265 * Do not hold on to it.
267 list_del_init(&frame
->list
);
269 frame
->callback(ring
, frame
, canceled
);
273 int __tb_ring_enqueue(struct tb_ring
*ring
, struct ring_frame
*frame
)
278 spin_lock_irqsave(&ring
->lock
, flags
);
280 list_add_tail(&frame
->list
, &ring
->queue
);
281 ring_write_descriptors(ring
);
285 spin_unlock_irqrestore(&ring
->lock
, flags
);
288 EXPORT_SYMBOL_GPL(__tb_ring_enqueue
);
291 * tb_ring_poll() - Poll one completed frame from the ring
292 * @ring: Ring to poll
294 * This function can be called when @start_poll callback of the @ring
295 * has been called. It will read one completed frame from the ring and
296 * return it to the caller. Returns %NULL if there is no more completed
299 struct ring_frame
*tb_ring_poll(struct tb_ring
*ring
)
301 struct ring_frame
*frame
= NULL
;
304 spin_lock_irqsave(&ring
->lock
, flags
);
307 if (ring_empty(ring
))
310 if (ring
->descriptors
[ring
->tail
].flags
& RING_DESC_COMPLETED
) {
311 frame
= list_first_entry(&ring
->in_flight
, typeof(*frame
),
313 list_del_init(&frame
->list
);
316 frame
->size
= ring
->descriptors
[ring
->tail
].length
;
317 frame
->eof
= ring
->descriptors
[ring
->tail
].eof
;
318 frame
->sof
= ring
->descriptors
[ring
->tail
].sof
;
319 frame
->flags
= ring
->descriptors
[ring
->tail
].flags
;
322 ring
->tail
= (ring
->tail
+ 1) % ring
->size
;
326 spin_unlock_irqrestore(&ring
->lock
, flags
);
329 EXPORT_SYMBOL_GPL(tb_ring_poll
);
331 static void __ring_interrupt_mask(struct tb_ring
*ring
, bool mask
)
333 int idx
= ring_interrupt_index(ring
);
334 int reg
= REG_RING_INTERRUPT_BASE
+ idx
/ 32 * 4;
338 val
= ioread32(ring
->nhi
->iobase
+ reg
);
343 iowrite32(val
, ring
->nhi
->iobase
+ reg
);
346 /* Both @nhi->lock and @ring->lock should be held */
347 static void __ring_interrupt(struct tb_ring
*ring
)
352 if (ring
->start_poll
) {
353 __ring_interrupt_mask(ring
, true);
354 ring
->start_poll(ring
->poll_data
);
356 schedule_work(&ring
->work
);
361 * tb_ring_poll_complete() - Re-start interrupt for the ring
362 * @ring: Ring to re-start the interrupt
364 * This will re-start (unmask) the ring interrupt once the user is done
367 void tb_ring_poll_complete(struct tb_ring
*ring
)
371 spin_lock_irqsave(&ring
->nhi
->lock
, flags
);
372 spin_lock(&ring
->lock
);
373 if (ring
->start_poll
)
374 __ring_interrupt_mask(ring
, false);
375 spin_unlock(&ring
->lock
);
376 spin_unlock_irqrestore(&ring
->nhi
->lock
, flags
);
378 EXPORT_SYMBOL_GPL(tb_ring_poll_complete
);
380 static irqreturn_t
ring_msix(int irq
, void *data
)
382 struct tb_ring
*ring
= data
;
384 spin_lock(&ring
->nhi
->lock
);
385 spin_lock(&ring
->lock
);
386 __ring_interrupt(ring
);
387 spin_unlock(&ring
->lock
);
388 spin_unlock(&ring
->nhi
->lock
);
393 static int ring_request_msix(struct tb_ring
*ring
, bool no_suspend
)
395 struct tb_nhi
*nhi
= ring
->nhi
;
396 unsigned long irqflags
;
399 if (!nhi
->pdev
->msix_enabled
)
402 ret
= ida_simple_get(&nhi
->msix_ida
, 0, MSIX_MAX_VECS
, GFP_KERNEL
);
408 ring
->irq
= pci_irq_vector(ring
->nhi
->pdev
, ring
->vector
);
412 irqflags
= no_suspend
? IRQF_NO_SUSPEND
: 0;
413 return request_irq(ring
->irq
, ring_msix
, irqflags
, "thunderbolt", ring
);
416 static void ring_release_msix(struct tb_ring
*ring
)
421 free_irq(ring
->irq
, ring
);
422 ida_simple_remove(&ring
->nhi
->msix_ida
, ring
->vector
);
427 static int nhi_alloc_hop(struct tb_nhi
*nhi
, struct tb_ring
*ring
)
431 spin_lock_irq(&nhi
->lock
);
437 * Automatically allocate HopID from the non-reserved
438 * range 1 .. hop_count - 1.
440 for (i
= RING_FIRST_USABLE_HOPID
; i
< nhi
->hop_count
; i
++) {
442 if (!nhi
->tx_rings
[i
]) {
447 if (!nhi
->rx_rings
[i
]) {
455 if (ring
->hop
< 0 || ring
->hop
>= nhi
->hop_count
) {
456 dev_warn(&nhi
->pdev
->dev
, "invalid hop: %d\n", ring
->hop
);
460 if (ring
->is_tx
&& nhi
->tx_rings
[ring
->hop
]) {
461 dev_warn(&nhi
->pdev
->dev
, "TX hop %d already allocated\n",
465 } else if (!ring
->is_tx
&& nhi
->rx_rings
[ring
->hop
]) {
466 dev_warn(&nhi
->pdev
->dev
, "RX hop %d already allocated\n",
473 nhi
->tx_rings
[ring
->hop
] = ring
;
475 nhi
->rx_rings
[ring
->hop
] = ring
;
478 spin_unlock_irq(&nhi
->lock
);
483 static struct tb_ring
*tb_ring_alloc(struct tb_nhi
*nhi
, u32 hop
, int size
,
484 bool transmit
, unsigned int flags
,
485 u16 sof_mask
, u16 eof_mask
,
486 void (*start_poll
)(void *),
489 struct tb_ring
*ring
= NULL
;
491 dev_dbg(&nhi
->pdev
->dev
, "allocating %s ring %d of size %d\n",
492 transmit
? "TX" : "RX", hop
, size
);
494 ring
= kzalloc(sizeof(*ring
), GFP_KERNEL
);
498 spin_lock_init(&ring
->lock
);
499 INIT_LIST_HEAD(&ring
->queue
);
500 INIT_LIST_HEAD(&ring
->in_flight
);
501 INIT_WORK(&ring
->work
, ring_work
);
505 ring
->is_tx
= transmit
;
508 ring
->sof_mask
= sof_mask
;
509 ring
->eof_mask
= eof_mask
;
512 ring
->running
= false;
513 ring
->start_poll
= start_poll
;
514 ring
->poll_data
= poll_data
;
516 ring
->descriptors
= dma_alloc_coherent(&ring
->nhi
->pdev
->dev
,
517 size
* sizeof(*ring
->descriptors
),
518 &ring
->descriptors_dma
, GFP_KERNEL
| __GFP_ZERO
);
519 if (!ring
->descriptors
)
522 if (ring_request_msix(ring
, flags
& RING_FLAG_NO_SUSPEND
))
525 if (nhi_alloc_hop(nhi
, ring
))
526 goto err_release_msix
;
531 ring_release_msix(ring
);
533 dma_free_coherent(&ring
->nhi
->pdev
->dev
,
534 ring
->size
* sizeof(*ring
->descriptors
),
535 ring
->descriptors
, ring
->descriptors_dma
);
543 * tb_ring_alloc_tx() - Allocate DMA ring for transmit
544 * @nhi: Pointer to the NHI the ring is to be allocated
545 * @hop: HopID (ring) to allocate
546 * @size: Number of entries in the ring
547 * @flags: Flags for the ring
549 struct tb_ring
*tb_ring_alloc_tx(struct tb_nhi
*nhi
, int hop
, int size
,
552 return tb_ring_alloc(nhi
, hop
, size
, true, flags
, 0, 0, NULL
, NULL
);
554 EXPORT_SYMBOL_GPL(tb_ring_alloc_tx
);
557 * tb_ring_alloc_rx() - Allocate DMA ring for receive
558 * @nhi: Pointer to the NHI the ring is to be allocated
559 * @hop: HopID (ring) to allocate. Pass %-1 for automatic allocation.
560 * @size: Number of entries in the ring
561 * @flags: Flags for the ring
562 * @sof_mask: Mask of PDF values that start a frame
563 * @eof_mask: Mask of PDF values that end a frame
564 * @start_poll: If not %NULL the ring will call this function when an
565 * interrupt is triggered and masked, instead of callback
567 * @poll_data: Optional data passed to @start_poll
569 struct tb_ring
*tb_ring_alloc_rx(struct tb_nhi
*nhi
, int hop
, int size
,
570 unsigned int flags
, u16 sof_mask
, u16 eof_mask
,
571 void (*start_poll
)(void *), void *poll_data
)
573 return tb_ring_alloc(nhi
, hop
, size
, false, flags
, sof_mask
, eof_mask
,
574 start_poll
, poll_data
);
576 EXPORT_SYMBOL_GPL(tb_ring_alloc_rx
);
579 * tb_ring_start() - enable a ring
581 * Must not be invoked in parallel with tb_ring_stop().
583 void tb_ring_start(struct tb_ring
*ring
)
588 spin_lock_irq(&ring
->nhi
->lock
);
589 spin_lock(&ring
->lock
);
590 if (ring
->nhi
->going_away
)
593 dev_WARN(&ring
->nhi
->pdev
->dev
, "ring already started\n");
596 dev_dbg(&ring
->nhi
->pdev
->dev
, "starting %s %d\n",
597 RING_TYPE(ring
), ring
->hop
);
599 if (ring
->flags
& RING_FLAG_FRAME
) {
602 flags
= RING_FLAG_ENABLE
;
604 frame_size
= TB_FRAME_SIZE
;
605 flags
= RING_FLAG_ENABLE
| RING_FLAG_RAW
;
608 ring_iowrite64desc(ring
, ring
->descriptors_dma
, 0);
610 ring_iowrite32desc(ring
, ring
->size
, 12);
611 ring_iowrite32options(ring
, 0, 4); /* time releated ? */
612 ring_iowrite32options(ring
, flags
, 0);
614 u32 sof_eof_mask
= ring
->sof_mask
<< 16 | ring
->eof_mask
;
616 ring_iowrite32desc(ring
, (frame_size
<< 16) | ring
->size
, 12);
617 ring_iowrite32options(ring
, sof_eof_mask
, 4);
618 ring_iowrite32options(ring
, flags
, 0);
620 ring_interrupt_active(ring
, true);
621 ring
->running
= true;
623 spin_unlock(&ring
->lock
);
624 spin_unlock_irq(&ring
->nhi
->lock
);
626 EXPORT_SYMBOL_GPL(tb_ring_start
);
629 * tb_ring_stop() - shutdown a ring
631 * Must not be invoked from a callback.
633 * This method will disable the ring. Further calls to
634 * tb_ring_tx/tb_ring_rx will return -ESHUTDOWN until ring_stop has been
637 * All enqueued frames will be canceled and their callbacks will be executed
638 * with frame->canceled set to true (on the callback thread). This method
639 * returns only after all callback invocations have finished.
641 void tb_ring_stop(struct tb_ring
*ring
)
643 spin_lock_irq(&ring
->nhi
->lock
);
644 spin_lock(&ring
->lock
);
645 dev_dbg(&ring
->nhi
->pdev
->dev
, "stopping %s %d\n",
646 RING_TYPE(ring
), ring
->hop
);
647 if (ring
->nhi
->going_away
)
649 if (!ring
->running
) {
650 dev_WARN(&ring
->nhi
->pdev
->dev
, "%s %d already stopped\n",
651 RING_TYPE(ring
), ring
->hop
);
654 ring_interrupt_active(ring
, false);
656 ring_iowrite32options(ring
, 0, 0);
657 ring_iowrite64desc(ring
, 0, 0);
658 ring_iowrite32desc(ring
, 0, 8);
659 ring_iowrite32desc(ring
, 0, 12);
662 ring
->running
= false;
665 spin_unlock(&ring
->lock
);
666 spin_unlock_irq(&ring
->nhi
->lock
);
669 * schedule ring->work to invoke callbacks on all remaining frames.
671 schedule_work(&ring
->work
);
672 flush_work(&ring
->work
);
674 EXPORT_SYMBOL_GPL(tb_ring_stop
);
677 * tb_ring_free() - free ring
679 * When this method returns all invocations of ring->callback will have
682 * Ring must be stopped.
684 * Must NOT be called from ring_frame->callback!
686 void tb_ring_free(struct tb_ring
*ring
)
688 spin_lock_irq(&ring
->nhi
->lock
);
690 * Dissociate the ring from the NHI. This also ensures that
691 * nhi_interrupt_work cannot reschedule ring->work.
694 ring
->nhi
->tx_rings
[ring
->hop
] = NULL
;
696 ring
->nhi
->rx_rings
[ring
->hop
] = NULL
;
699 dev_WARN(&ring
->nhi
->pdev
->dev
, "%s %d still running\n",
700 RING_TYPE(ring
), ring
->hop
);
702 spin_unlock_irq(&ring
->nhi
->lock
);
704 ring_release_msix(ring
);
706 dma_free_coherent(&ring
->nhi
->pdev
->dev
,
707 ring
->size
* sizeof(*ring
->descriptors
),
708 ring
->descriptors
, ring
->descriptors_dma
);
710 ring
->descriptors
= NULL
;
711 ring
->descriptors_dma
= 0;
714 dev_dbg(&ring
->nhi
->pdev
->dev
, "freeing %s %d\n", RING_TYPE(ring
),
718 * ring->work can no longer be scheduled (it is scheduled only
719 * by nhi_interrupt_work, ring_stop and ring_msix). Wait for it
720 * to finish before freeing the ring.
722 flush_work(&ring
->work
);
725 EXPORT_SYMBOL_GPL(tb_ring_free
);
728 * nhi_mailbox_cmd() - Send a command through NHI mailbox
729 * @nhi: Pointer to the NHI structure
730 * @cmd: Command to send
731 * @data: Data to be send with the command
733 * Sends mailbox command to the firmware running on NHI. Returns %0 in
734 * case of success and negative errno in case of failure.
736 int nhi_mailbox_cmd(struct tb_nhi
*nhi
, enum nhi_mailbox_cmd cmd
, u32 data
)
741 iowrite32(data
, nhi
->iobase
+ REG_INMAIL_DATA
);
743 val
= ioread32(nhi
->iobase
+ REG_INMAIL_CMD
);
744 val
&= ~(REG_INMAIL_CMD_MASK
| REG_INMAIL_ERROR
);
745 val
|= REG_INMAIL_OP_REQUEST
| cmd
;
746 iowrite32(val
, nhi
->iobase
+ REG_INMAIL_CMD
);
748 timeout
= ktime_add_ms(ktime_get(), NHI_MAILBOX_TIMEOUT
);
750 val
= ioread32(nhi
->iobase
+ REG_INMAIL_CMD
);
751 if (!(val
& REG_INMAIL_OP_REQUEST
))
753 usleep_range(10, 20);
754 } while (ktime_before(ktime_get(), timeout
));
756 if (val
& REG_INMAIL_OP_REQUEST
)
758 if (val
& REG_INMAIL_ERROR
)
765 * nhi_mailbox_mode() - Return current firmware operation mode
766 * @nhi: Pointer to the NHI structure
768 * The function reads current firmware operation mode using NHI mailbox
769 * registers and returns it to the caller.
771 enum nhi_fw_mode
nhi_mailbox_mode(struct tb_nhi
*nhi
)
775 val
= ioread32(nhi
->iobase
+ REG_OUTMAIL_CMD
);
776 val
&= REG_OUTMAIL_CMD_OPMODE_MASK
;
777 val
>>= REG_OUTMAIL_CMD_OPMODE_SHIFT
;
779 return (enum nhi_fw_mode
)val
;
782 static void nhi_interrupt_work(struct work_struct
*work
)
784 struct tb_nhi
*nhi
= container_of(work
, typeof(*nhi
), interrupt_work
);
785 int value
= 0; /* Suppress uninitialized usage warning. */
788 int type
= 0; /* current interrupt type 0: TX, 1: RX, 2: RX overflow */
789 struct tb_ring
*ring
;
791 spin_lock_irq(&nhi
->lock
);
794 * Starting at REG_RING_NOTIFY_BASE there are three status bitfields
795 * (TX, RX, RX overflow). We iterate over the bits and read a new
796 * dwords as required. The registers are cleared on read.
798 for (bit
= 0; bit
< 3 * nhi
->hop_count
; bit
++) {
800 value
= ioread32(nhi
->iobase
801 + REG_RING_NOTIFY_BASE
803 if (++hop
== nhi
->hop_count
) {
807 if ((value
& (1 << (bit
% 32))) == 0)
810 dev_warn(&nhi
->pdev
->dev
,
811 "RX overflow for ring %d\n",
816 ring
= nhi
->tx_rings
[hop
];
818 ring
= nhi
->rx_rings
[hop
];
820 dev_warn(&nhi
->pdev
->dev
,
821 "got interrupt for inactive %s ring %d\n",
827 spin_lock(&ring
->lock
);
828 __ring_interrupt(ring
);
829 spin_unlock(&ring
->lock
);
831 spin_unlock_irq(&nhi
->lock
);
834 static irqreturn_t
nhi_msi(int irq
, void *data
)
836 struct tb_nhi
*nhi
= data
;
837 schedule_work(&nhi
->interrupt_work
);
841 static int __nhi_suspend_noirq(struct device
*dev
, bool wakeup
)
843 struct pci_dev
*pdev
= to_pci_dev(dev
);
844 struct tb
*tb
= pci_get_drvdata(pdev
);
845 struct tb_nhi
*nhi
= tb
->nhi
;
848 ret
= tb_domain_suspend_noirq(tb
);
852 if (nhi
->ops
&& nhi
->ops
->suspend_noirq
) {
853 ret
= nhi
->ops
->suspend_noirq(tb
->nhi
, wakeup
);
861 static int nhi_suspend_noirq(struct device
*dev
)
863 return __nhi_suspend_noirq(dev
, device_may_wakeup(dev
));
866 static bool nhi_wake_supported(struct pci_dev
*pdev
)
871 * If power rails are sustainable for wakeup from S4 this
872 * property is set by the BIOS.
874 if (device_property_read_u8(&pdev
->dev
, "WAKE_SUPPORTED", &val
))
880 static int nhi_poweroff_noirq(struct device
*dev
)
882 struct pci_dev
*pdev
= to_pci_dev(dev
);
885 wakeup
= device_may_wakeup(dev
) && nhi_wake_supported(pdev
);
886 return __nhi_suspend_noirq(dev
, wakeup
);
889 static void nhi_enable_int_throttling(struct tb_nhi
*nhi
)
891 /* Throttling is specified in 256ns increments */
892 u32 throttle
= DIV_ROUND_UP(128 * NSEC_PER_USEC
, 256);
896 * Configure interrupt throttling for all vectors even if we
899 for (i
= 0; i
< MSIX_MAX_VECS
; i
++) {
900 u32 reg
= REG_INT_THROTTLING_RATE
+ i
* 4;
901 iowrite32(throttle
, nhi
->iobase
+ reg
);
905 static int nhi_resume_noirq(struct device
*dev
)
907 struct pci_dev
*pdev
= to_pci_dev(dev
);
908 struct tb
*tb
= pci_get_drvdata(pdev
);
909 struct tb_nhi
*nhi
= tb
->nhi
;
913 * Check that the device is still there. It may be that the user
914 * unplugged last device which causes the host controller to go
917 if (!pci_device_is_present(pdev
)) {
918 nhi
->going_away
= true;
920 if (nhi
->ops
&& nhi
->ops
->resume_noirq
) {
921 ret
= nhi
->ops
->resume_noirq(nhi
);
925 nhi_enable_int_throttling(tb
->nhi
);
928 return tb_domain_resume_noirq(tb
);
931 static int nhi_suspend(struct device
*dev
)
933 struct pci_dev
*pdev
= to_pci_dev(dev
);
934 struct tb
*tb
= pci_get_drvdata(pdev
);
936 return tb_domain_suspend(tb
);
939 static void nhi_complete(struct device
*dev
)
941 struct pci_dev
*pdev
= to_pci_dev(dev
);
942 struct tb
*tb
= pci_get_drvdata(pdev
);
945 * If we were runtime suspended when system suspend started,
946 * schedule runtime resume now. It should bring the domain back
947 * to functional state.
949 if (pm_runtime_suspended(&pdev
->dev
))
950 pm_runtime_resume(&pdev
->dev
);
952 tb_domain_complete(tb
);
955 static int nhi_runtime_suspend(struct device
*dev
)
957 struct pci_dev
*pdev
= to_pci_dev(dev
);
958 struct tb
*tb
= pci_get_drvdata(pdev
);
959 struct tb_nhi
*nhi
= tb
->nhi
;
962 ret
= tb_domain_runtime_suspend(tb
);
966 if (nhi
->ops
&& nhi
->ops
->runtime_suspend
) {
967 ret
= nhi
->ops
->runtime_suspend(tb
->nhi
);
974 static int nhi_runtime_resume(struct device
*dev
)
976 struct pci_dev
*pdev
= to_pci_dev(dev
);
977 struct tb
*tb
= pci_get_drvdata(pdev
);
978 struct tb_nhi
*nhi
= tb
->nhi
;
981 if (nhi
->ops
&& nhi
->ops
->runtime_resume
) {
982 ret
= nhi
->ops
->runtime_resume(nhi
);
987 nhi_enable_int_throttling(nhi
);
988 return tb_domain_runtime_resume(tb
);
991 static void nhi_shutdown(struct tb_nhi
*nhi
)
995 dev_dbg(&nhi
->pdev
->dev
, "shutdown\n");
997 for (i
= 0; i
< nhi
->hop_count
; i
++) {
998 if (nhi
->tx_rings
[i
])
999 dev_WARN(&nhi
->pdev
->dev
,
1000 "TX ring %d is still active\n", i
);
1001 if (nhi
->rx_rings
[i
])
1002 dev_WARN(&nhi
->pdev
->dev
,
1003 "RX ring %d is still active\n", i
);
1005 nhi_disable_interrupts(nhi
);
1007 * We have to release the irq before calling flush_work. Otherwise an
1008 * already executing IRQ handler could call schedule_work again.
1010 if (!nhi
->pdev
->msix_enabled
) {
1011 devm_free_irq(&nhi
->pdev
->dev
, nhi
->pdev
->irq
, nhi
);
1012 flush_work(&nhi
->interrupt_work
);
1014 ida_destroy(&nhi
->msix_ida
);
1016 if (nhi
->ops
&& nhi
->ops
->shutdown
)
1017 nhi
->ops
->shutdown(nhi
);
1020 static int nhi_init_msi(struct tb_nhi
*nhi
)
1022 struct pci_dev
*pdev
= nhi
->pdev
;
1025 /* In case someone left them on. */
1026 nhi_disable_interrupts(nhi
);
1028 nhi_enable_int_throttling(nhi
);
1030 ida_init(&nhi
->msix_ida
);
1033 * The NHI has 16 MSI-X vectors or a single MSI. We first try to
1034 * get all MSI-X vectors and if we succeed, each ring will have
1035 * one MSI-X. If for some reason that does not work out, we
1036 * fallback to a single MSI.
1038 nvec
= pci_alloc_irq_vectors(pdev
, MSIX_MIN_VECS
, MSIX_MAX_VECS
,
1041 nvec
= pci_alloc_irq_vectors(pdev
, 1, 1, PCI_IRQ_MSI
);
1045 INIT_WORK(&nhi
->interrupt_work
, nhi_interrupt_work
);
1047 irq
= pci_irq_vector(nhi
->pdev
, 0);
1051 res
= devm_request_irq(&pdev
->dev
, irq
, nhi_msi
,
1052 IRQF_NO_SUSPEND
, "thunderbolt", nhi
);
1054 dev_err(&pdev
->dev
, "request_irq failed, aborting\n");
1062 static bool nhi_imr_valid(struct pci_dev
*pdev
)
1066 if (!device_property_read_u8(&pdev
->dev
, "IMR_VALID", &val
))
1072 static int nhi_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
1078 if (!nhi_imr_valid(pdev
)) {
1079 dev_warn(&pdev
->dev
, "firmware image not valid, aborting\n");
1083 res
= pcim_enable_device(pdev
);
1085 dev_err(&pdev
->dev
, "cannot enable PCI device, aborting\n");
1089 res
= pcim_iomap_regions(pdev
, 1 << 0, "thunderbolt");
1091 dev_err(&pdev
->dev
, "cannot obtain PCI resources, aborting\n");
1095 nhi
= devm_kzalloc(&pdev
->dev
, sizeof(*nhi
), GFP_KERNEL
);
1100 nhi
->ops
= (const struct tb_nhi_ops
*)id
->driver_data
;
1101 /* cannot fail - table is allocated bin pcim_iomap_regions */
1102 nhi
->iobase
= pcim_iomap_table(pdev
)[0];
1103 nhi
->hop_count
= ioread32(nhi
->iobase
+ REG_HOP_COUNT
) & 0x3ff;
1104 dev_dbg(&pdev
->dev
, "total paths: %d\n", nhi
->hop_count
);
1106 nhi
->tx_rings
= devm_kcalloc(&pdev
->dev
, nhi
->hop_count
,
1107 sizeof(*nhi
->tx_rings
), GFP_KERNEL
);
1108 nhi
->rx_rings
= devm_kcalloc(&pdev
->dev
, nhi
->hop_count
,
1109 sizeof(*nhi
->rx_rings
), GFP_KERNEL
);
1110 if (!nhi
->tx_rings
|| !nhi
->rx_rings
)
1113 res
= nhi_init_msi(nhi
);
1115 dev_err(&pdev
->dev
, "cannot enable MSI, aborting\n");
1119 spin_lock_init(&nhi
->lock
);
1121 res
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
1123 res
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(32));
1125 dev_err(&pdev
->dev
, "failed to set DMA mask\n");
1129 pci_set_master(pdev
);
1131 if (nhi
->ops
&& nhi
->ops
->init
) {
1132 res
= nhi
->ops
->init(nhi
);
1137 tb
= icm_probe(nhi
);
1141 dev_err(&nhi
->pdev
->dev
,
1142 "failed to determine connection manager, aborting\n");
1146 dev_dbg(&nhi
->pdev
->dev
, "NHI initialized, starting thunderbolt\n");
1148 res
= tb_domain_add(tb
);
1151 * At this point the RX/TX rings might already have been
1152 * activated. Do a proper shutdown.
1158 pci_set_drvdata(pdev
, tb
);
1160 pm_runtime_allow(&pdev
->dev
);
1161 pm_runtime_set_autosuspend_delay(&pdev
->dev
, TB_AUTOSUSPEND_DELAY
);
1162 pm_runtime_use_autosuspend(&pdev
->dev
);
1163 pm_runtime_put_autosuspend(&pdev
->dev
);
1168 static void nhi_remove(struct pci_dev
*pdev
)
1170 struct tb
*tb
= pci_get_drvdata(pdev
);
1171 struct tb_nhi
*nhi
= tb
->nhi
;
1173 pm_runtime_get_sync(&pdev
->dev
);
1174 pm_runtime_dont_use_autosuspend(&pdev
->dev
);
1175 pm_runtime_forbid(&pdev
->dev
);
1177 tb_domain_remove(tb
);
1182 * The tunneled pci bridges are siblings of us. Use resume_noirq to reenable
1183 * the tunnels asap. A corresponding pci quirk blocks the downstream bridges
1184 * resume_noirq until we are done.
1186 static const struct dev_pm_ops nhi_pm_ops
= {
1187 .suspend_noirq
= nhi_suspend_noirq
,
1188 .resume_noirq
= nhi_resume_noirq
,
1189 .freeze_noirq
= nhi_suspend_noirq
, /*
1190 * we just disable hotplug, the
1191 * pci-tunnels stay alive.
1193 .thaw_noirq
= nhi_resume_noirq
,
1194 .restore_noirq
= nhi_resume_noirq
,
1195 .suspend
= nhi_suspend
,
1196 .freeze
= nhi_suspend
,
1197 .poweroff_noirq
= nhi_poweroff_noirq
,
1198 .poweroff
= nhi_suspend
,
1199 .complete
= nhi_complete
,
1200 .runtime_suspend
= nhi_runtime_suspend
,
1201 .runtime_resume
= nhi_runtime_resume
,
1204 static struct pci_device_id nhi_ids
[] = {
1206 * We have to specify class, the TB bridges use the same device and
1207 * vendor (sub)id on gen 1 and gen 2 controllers.
1210 .class = PCI_CLASS_SYSTEM_OTHER
<< 8, .class_mask
= ~0,
1211 .vendor
= PCI_VENDOR_ID_INTEL
,
1212 .device
= PCI_DEVICE_ID_INTEL_LIGHT_RIDGE
,
1213 .subvendor
= 0x2222, .subdevice
= 0x1111,
1216 .class = PCI_CLASS_SYSTEM_OTHER
<< 8, .class_mask
= ~0,
1217 .vendor
= PCI_VENDOR_ID_INTEL
,
1218 .device
= PCI_DEVICE_ID_INTEL_CACTUS_RIDGE_4C
,
1219 .subvendor
= 0x2222, .subdevice
= 0x1111,
1222 .class = PCI_CLASS_SYSTEM_OTHER
<< 8, .class_mask
= ~0,
1223 .vendor
= PCI_VENDOR_ID_INTEL
,
1224 .device
= PCI_DEVICE_ID_INTEL_FALCON_RIDGE_2C_NHI
,
1225 .subvendor
= PCI_ANY_ID
, .subdevice
= PCI_ANY_ID
,
1228 .class = PCI_CLASS_SYSTEM_OTHER
<< 8, .class_mask
= ~0,
1229 .vendor
= PCI_VENDOR_ID_INTEL
,
1230 .device
= PCI_DEVICE_ID_INTEL_FALCON_RIDGE_4C_NHI
,
1231 .subvendor
= PCI_ANY_ID
, .subdevice
= PCI_ANY_ID
,
1235 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_2C_NHI
) },
1236 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_4C_NHI
) },
1237 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_USBONLY_NHI
) },
1238 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_NHI
) },
1239 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_LP_USBONLY_NHI
) },
1240 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_2C_NHI
) },
1241 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_4C_NHI
) },
1242 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ALPINE_RIDGE_C_USBONLY_NHI
) },
1243 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_TITAN_RIDGE_2C_NHI
) },
1244 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_TITAN_RIDGE_4C_NHI
) },
1245 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ICL_NHI0
),
1246 .driver_data
= (kernel_ulong_t
)&icl_nhi_ops
},
1247 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_ICL_NHI1
),
1248 .driver_data
= (kernel_ulong_t
)&icl_nhi_ops
},
1249 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_TGL_NHI0
),
1250 .driver_data
= (kernel_ulong_t
)&icl_nhi_ops
},
1251 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_INTEL_TGL_NHI1
),
1252 .driver_data
= (kernel_ulong_t
)&icl_nhi_ops
},
1254 /* Any USB4 compliant host */
1255 { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_USB4
, ~0) },
1260 MODULE_DEVICE_TABLE(pci
, nhi_ids
);
1261 MODULE_LICENSE("GPL");
1263 static struct pci_driver nhi_driver
= {
1264 .name
= "thunderbolt",
1265 .id_table
= nhi_ids
,
1267 .remove
= nhi_remove
,
1268 .shutdown
= nhi_remove
,
1269 .driver
.pm
= &nhi_pm_ops
,
1272 static int __init
nhi_init(void)
1276 ret
= tb_domain_init();
1279 ret
= pci_register_driver(&nhi_driver
);
1285 static void __exit
nhi_unload(void)
1287 pci_unregister_driver(&nhi_driver
);
1291 rootfs_initcall(nhi_init
);
1292 module_exit(nhi_unload
);