Loading...
1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2/*
3 * Copyright(c) 2015 - 2020 Intel Corporation.
4 * Copyright(c) 2021 Cornelis Networks.
5 */
6
7#include <linux/pci.h>
8#include <linux/netdevice.h>
9#include <linux/vmalloc.h>
10#include <linux/delay.h>
11#include <linux/xarray.h>
12#include <linux/module.h>
13#include <linux/printk.h>
14#include <linux/hrtimer.h>
15#include <linux/bitmap.h>
16#include <linux/numa.h>
17#include <rdma/rdma_vt.h>
18
19#include "hfi.h"
20#include "device.h"
21#include "common.h"
22#include "trace.h"
23#include "mad.h"
24#include "sdma.h"
25#include "debugfs.h"
26#include "verbs.h"
27#include "aspm.h"
28#include "affinity.h"
29#include "vnic.h"
30#include "exp_rcv.h"
31#include "netdev.h"
32
33#undef pr_fmt
34#define pr_fmt(fmt) DRIVER_NAME ": " fmt
35
36/*
37 * min buffers we want to have per context, after driver
38 */
39#define HFI1_MIN_USER_CTXT_BUFCNT 7
40
41#define HFI1_MIN_EAGER_BUFFER_SIZE (4 * 1024) /* 4KB */
42#define HFI1_MAX_EAGER_BUFFER_SIZE (256 * 1024) /* 256KB */
43
44#define NUM_IB_PORTS 1
45
46/*
47 * Number of user receive contexts we are configured to use (to allow for more
48 * pio buffers per ctxt, etc.) Zero means use one user context per CPU.
49 */
50int num_user_contexts = -1;
51module_param_named(num_user_contexts, num_user_contexts, int, 0444);
52MODULE_PARM_DESC(
53 num_user_contexts, "Set max number of user contexts to use (default: -1 will use the real (non-HT) CPU count)");
54
55uint krcvqs[RXE_NUM_DATA_VL];
56int krcvqsset;
57module_param_array(krcvqs, uint, &krcvqsset, S_IRUGO);
58MODULE_PARM_DESC(krcvqs, "Array of the number of non-control kernel receive queues by VL");
59
60/* computed based on above array */
61unsigned long n_krcvqs;
62
63static unsigned hfi1_rcvarr_split = 25;
64module_param_named(rcvarr_split, hfi1_rcvarr_split, uint, S_IRUGO);
65MODULE_PARM_DESC(rcvarr_split, "Percent of context's RcvArray entries used for Eager buffers");
66
67static uint eager_buffer_size = (8 << 20); /* 8MB */
68module_param(eager_buffer_size, uint, S_IRUGO);
69MODULE_PARM_DESC(eager_buffer_size, "Size of the eager buffers, default: 8MB");
70
71static uint rcvhdrcnt = 2048; /* 2x the max eager buffer count */
72module_param_named(rcvhdrcnt, rcvhdrcnt, uint, S_IRUGO);
73MODULE_PARM_DESC(rcvhdrcnt, "Receive header queue count (default 2048)");
74
75static uint hfi1_hdrq_entsize = 32;
76module_param_named(hdrq_entsize, hfi1_hdrq_entsize, uint, 0444);
77MODULE_PARM_DESC(hdrq_entsize, "Size of header queue entries: 2 - 8B, 16 - 64B, 32 - 128B (default)");
78
79unsigned int user_credit_return_threshold = 33; /* default is 33% */
80module_param(user_credit_return_threshold, uint, S_IRUGO);
81MODULE_PARM_DESC(user_credit_return_threshold, "Credit return threshold for user send contexts, return when unreturned credits passes this many blocks (in percent of allocated blocks, 0 is off)");
82
83DEFINE_XARRAY_FLAGS(hfi1_dev_table, XA_FLAGS_ALLOC | XA_FLAGS_LOCK_IRQ);
84
85static int hfi1_create_kctxt(struct hfi1_devdata *dd,
86 struct hfi1_pportdata *ppd)
87{
88 struct hfi1_ctxtdata *rcd;
89 int ret;
90
91 /* Control context has to be always 0 */
92 BUILD_BUG_ON(HFI1_CTRL_CTXT != 0);
93
94 ret = hfi1_create_ctxtdata(ppd, dd->node, &rcd);
95 if (ret < 0) {
96 dd_dev_err(dd, "Kernel receive context allocation failed\n");
97 return ret;
98 }
99
100 /*
101 * Set up the kernel context flags here and now because they use
102 * default values for all receive side memories. User contexts will
103 * be handled as they are created.
104 */
105 rcd->flags = HFI1_CAP_KGET(MULTI_PKT_EGR) |
106 HFI1_CAP_KGET(NODROP_RHQ_FULL) |
107 HFI1_CAP_KGET(NODROP_EGR_FULL) |
108 HFI1_CAP_KGET(DMA_RTAIL);
109
110 /* Control context must use DMA_RTAIL */
111 if (rcd->ctxt == HFI1_CTRL_CTXT)
112 rcd->flags |= HFI1_CAP_DMA_RTAIL;
113 rcd->fast_handler = get_dma_rtail_setting(rcd) ?
114 handle_receive_interrupt_dma_rtail :
115 handle_receive_interrupt_nodma_rtail;
116
117 hfi1_set_seq_cnt(rcd, 1);
118
119 rcd->sc = sc_alloc(dd, SC_ACK, rcd->rcvhdrqentsize, dd->node);
120 if (!rcd->sc) {
121 dd_dev_err(dd, "Kernel send context allocation failed\n");
122 return -ENOMEM;
123 }
124 hfi1_init_ctxt(rcd->sc);
125
126 return 0;
127}
128
129/*
130 * Create the receive context array and one or more kernel contexts
131 */
132int hfi1_create_kctxts(struct hfi1_devdata *dd)
133{
134 u16 i;
135 int ret;
136
137 dd->rcd = kcalloc_node(dd->num_rcv_contexts, sizeof(*dd->rcd),
138 GFP_KERNEL, dd->node);
139 if (!dd->rcd)
140 return -ENOMEM;
141
142 for (i = 0; i < dd->first_dyn_alloc_ctxt; ++i) {
143 ret = hfi1_create_kctxt(dd, dd->pport);
144 if (ret)
145 goto bail;
146 }
147
148 return 0;
149bail:
150 for (i = 0; dd->rcd && i < dd->first_dyn_alloc_ctxt; ++i)
151 hfi1_free_ctxt(dd->rcd[i]);
152
153 /* All the contexts should be freed, free the array */
154 kfree(dd->rcd);
155 dd->rcd = NULL;
156 return ret;
157}
158
159/*
160 * Helper routines for the receive context reference count (rcd and uctxt).
161 */
162static void hfi1_rcd_init(struct hfi1_ctxtdata *rcd)
163{
164 kref_init(&rcd->kref);
165}
166
167/**
168 * hfi1_rcd_free - When reference is zero clean up.
169 * @kref: pointer to an initialized rcd data structure
170 *
171 */
172static void hfi1_rcd_free(struct kref *kref)
173{
174 unsigned long flags;
175 struct hfi1_ctxtdata *rcd =
176 container_of(kref, struct hfi1_ctxtdata, kref);
177
178 spin_lock_irqsave(&rcd->dd->uctxt_lock, flags);
179 rcd->dd->rcd[rcd->ctxt] = NULL;
180 spin_unlock_irqrestore(&rcd->dd->uctxt_lock, flags);
181
182 hfi1_free_ctxtdata(rcd->dd, rcd);
183
184 kfree(rcd);
185}
186
187/**
188 * hfi1_rcd_put - decrement reference for rcd
189 * @rcd: pointer to an initialized rcd data structure
190 *
191 * Use this to put a reference after the init.
192 */
193int hfi1_rcd_put(struct hfi1_ctxtdata *rcd)
194{
195 if (rcd)
196 return kref_put(&rcd->kref, hfi1_rcd_free);
197
198 return 0;
199}
200
201/**
202 * hfi1_rcd_get - increment reference for rcd
203 * @rcd: pointer to an initialized rcd data structure
204 *
205 * Use this to get a reference after the init.
206 *
207 * Return : reflect kref_get_unless_zero(), which returns non-zero on
208 * increment, otherwise 0.
209 */
210int hfi1_rcd_get(struct hfi1_ctxtdata *rcd)
211{
212 return kref_get_unless_zero(&rcd->kref);
213}
214
215/**
216 * allocate_rcd_index - allocate an rcd index from the rcd array
217 * @dd: pointer to a valid devdata structure
218 * @rcd: rcd data structure to assign
219 * @index: pointer to index that is allocated
220 *
221 * Find an empty index in the rcd array, and assign the given rcd to it.
222 * If the array is full, we are EBUSY.
223 *
224 */
225static int allocate_rcd_index(struct hfi1_devdata *dd,
226 struct hfi1_ctxtdata *rcd, u16 *index)
227{
228 unsigned long flags;
229 u16 ctxt;
230
231 spin_lock_irqsave(&dd->uctxt_lock, flags);
232 for (ctxt = 0; ctxt < dd->num_rcv_contexts; ctxt++)
233 if (!dd->rcd[ctxt])
234 break;
235
236 if (ctxt < dd->num_rcv_contexts) {
237 rcd->ctxt = ctxt;
238 dd->rcd[ctxt] = rcd;
239 hfi1_rcd_init(rcd);
240 }
241 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
242
243 if (ctxt >= dd->num_rcv_contexts)
244 return -EBUSY;
245
246 *index = ctxt;
247
248 return 0;
249}
250
251/**
252 * hfi1_rcd_get_by_index_safe - validate the ctxt index before accessing the
253 * array
254 * @dd: pointer to a valid devdata structure
255 * @ctxt: the index of an possilbe rcd
256 *
257 * This is a wrapper for hfi1_rcd_get_by_index() to validate that the given
258 * ctxt index is valid.
259 *
260 * The caller is responsible for making the _put().
261 *
262 */
263struct hfi1_ctxtdata *hfi1_rcd_get_by_index_safe(struct hfi1_devdata *dd,
264 u16 ctxt)
265{
266 if (ctxt < dd->num_rcv_contexts)
267 return hfi1_rcd_get_by_index(dd, ctxt);
268
269 return NULL;
270}
271
272/**
273 * hfi1_rcd_get_by_index - get by index
274 * @dd: pointer to a valid devdata structure
275 * @ctxt: the index of an possilbe rcd
276 *
277 * We need to protect access to the rcd array. If access is needed to
278 * one or more index, get the protecting spinlock and then increment the
279 * kref.
280 *
281 * The caller is responsible for making the _put().
282 *
283 */
284struct hfi1_ctxtdata *hfi1_rcd_get_by_index(struct hfi1_devdata *dd, u16 ctxt)
285{
286 unsigned long flags;
287 struct hfi1_ctxtdata *rcd = NULL;
288
289 spin_lock_irqsave(&dd->uctxt_lock, flags);
290 if (dd->rcd[ctxt]) {
291 rcd = dd->rcd[ctxt];
292 if (!hfi1_rcd_get(rcd))
293 rcd = NULL;
294 }
295 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
296
297 return rcd;
298}
299
300/*
301 * Common code for user and kernel context create and setup.
302 * NOTE: the initial kref is done here (hf1_rcd_init()).
303 */
304int hfi1_create_ctxtdata(struct hfi1_pportdata *ppd, int numa,
305 struct hfi1_ctxtdata **context)
306{
307 struct hfi1_devdata *dd = ppd->dd;
308 struct hfi1_ctxtdata *rcd;
309 unsigned kctxt_ngroups = 0;
310 u32 base;
311
312 if (dd->rcv_entries.nctxt_extra >
313 dd->num_rcv_contexts - dd->first_dyn_alloc_ctxt)
314 kctxt_ngroups = (dd->rcv_entries.nctxt_extra -
315 (dd->num_rcv_contexts - dd->first_dyn_alloc_ctxt));
316 rcd = kzalloc_node(sizeof(*rcd), GFP_KERNEL, numa);
317 if (rcd) {
318 u32 rcvtids, max_entries;
319 u16 ctxt;
320 int ret;
321
322 ret = allocate_rcd_index(dd, rcd, &ctxt);
323 if (ret) {
324 *context = NULL;
325 kfree(rcd);
326 return ret;
327 }
328
329 INIT_LIST_HEAD(&rcd->qp_wait_list);
330 hfi1_exp_tid_group_init(rcd);
331 rcd->ppd = ppd;
332 rcd->dd = dd;
333 rcd->numa_id = numa;
334 rcd->rcv_array_groups = dd->rcv_entries.ngroups;
335 rcd->rhf_rcv_function_map = normal_rhf_rcv_functions;
336 rcd->slow_handler = handle_receive_interrupt;
337 rcd->do_interrupt = rcd->slow_handler;
338 rcd->msix_intr = CCE_NUM_MSIX_VECTORS;
339
340 mutex_init(&rcd->exp_mutex);
341 spin_lock_init(&rcd->exp_lock);
342 INIT_LIST_HEAD(&rcd->flow_queue.queue_head);
343 INIT_LIST_HEAD(&rcd->rarr_queue.queue_head);
344
345 hfi1_cdbg(PROC, "setting up context %u", rcd->ctxt);
346
347 /*
348 * Calculate the context's RcvArray entry starting point.
349 * We do this here because we have to take into account all
350 * the RcvArray entries that previous context would have
351 * taken and we have to account for any extra groups assigned
352 * to the static (kernel) or dynamic (vnic/user) contexts.
353 */
354 if (ctxt < dd->first_dyn_alloc_ctxt) {
355 if (ctxt < kctxt_ngroups) {
356 base = ctxt * (dd->rcv_entries.ngroups + 1);
357 rcd->rcv_array_groups++;
358 } else {
359 base = kctxt_ngroups +
360 (ctxt * dd->rcv_entries.ngroups);
361 }
362 } else {
363 u16 ct = ctxt - dd->first_dyn_alloc_ctxt;
364
365 base = ((dd->n_krcv_queues * dd->rcv_entries.ngroups) +
366 kctxt_ngroups);
367 if (ct < dd->rcv_entries.nctxt_extra) {
368 base += ct * (dd->rcv_entries.ngroups + 1);
369 rcd->rcv_array_groups++;
370 } else {
371 base += dd->rcv_entries.nctxt_extra +
372 (ct * dd->rcv_entries.ngroups);
373 }
374 }
375 rcd->eager_base = base * dd->rcv_entries.group_size;
376
377 rcd->rcvhdrq_cnt = rcvhdrcnt;
378 rcd->rcvhdrqentsize = hfi1_hdrq_entsize;
379 rcd->rhf_offset =
380 rcd->rcvhdrqentsize - sizeof(u64) / sizeof(u32);
381 /*
382 * Simple Eager buffer allocation: we have already pre-allocated
383 * the number of RcvArray entry groups. Each ctxtdata structure
384 * holds the number of groups for that context.
385 *
386 * To follow CSR requirements and maintain cacheline alignment,
387 * make sure all sizes and bases are multiples of group_size.
388 *
389 * The expected entry count is what is left after assigning
390 * eager.
391 */
392 max_entries = rcd->rcv_array_groups *
393 dd->rcv_entries.group_size;
394 rcvtids = ((max_entries * hfi1_rcvarr_split) / 100);
395 rcd->egrbufs.count = round_down(rcvtids,
396 dd->rcv_entries.group_size);
397 if (rcd->egrbufs.count > MAX_EAGER_ENTRIES) {
398 dd_dev_err(dd, "ctxt%u: requested too many RcvArray entries.\n",
399 rcd->ctxt);
400 rcd->egrbufs.count = MAX_EAGER_ENTRIES;
401 }
402 hfi1_cdbg(PROC,
403 "ctxt%u: max Eager buffer RcvArray entries: %u",
404 rcd->ctxt, rcd->egrbufs.count);
405
406 /*
407 * Allocate array that will hold the eager buffer accounting
408 * data.
409 * This will allocate the maximum possible buffer count based
410 * on the value of the RcvArray split parameter.
411 * The resulting value will be rounded down to the closest
412 * multiple of dd->rcv_entries.group_size.
413 */
414 rcd->egrbufs.buffers =
415 kcalloc_node(rcd->egrbufs.count,
416 sizeof(*rcd->egrbufs.buffers),
417 GFP_KERNEL, numa);
418 if (!rcd->egrbufs.buffers)
419 goto bail;
420 rcd->egrbufs.rcvtids =
421 kcalloc_node(rcd->egrbufs.count,
422 sizeof(*rcd->egrbufs.rcvtids),
423 GFP_KERNEL, numa);
424 if (!rcd->egrbufs.rcvtids)
425 goto bail;
426 rcd->egrbufs.size = eager_buffer_size;
427 /*
428 * The size of the buffers programmed into the RcvArray
429 * entries needs to be big enough to handle the highest
430 * MTU supported.
431 */
432 if (rcd->egrbufs.size < hfi1_max_mtu) {
433 rcd->egrbufs.size = __roundup_pow_of_two(hfi1_max_mtu);
434 hfi1_cdbg(PROC,
435 "ctxt%u: eager bufs size too small. Adjusting to %u",
436 rcd->ctxt, rcd->egrbufs.size);
437 }
438 rcd->egrbufs.rcvtid_size = HFI1_MAX_EAGER_BUFFER_SIZE;
439
440 /* Applicable only for statically created kernel contexts */
441 if (ctxt < dd->first_dyn_alloc_ctxt) {
442 rcd->opstats = kzalloc_node(sizeof(*rcd->opstats),
443 GFP_KERNEL, numa);
444 if (!rcd->opstats)
445 goto bail;
446
447 /* Initialize TID flow generations for the context */
448 hfi1_kern_init_ctxt_generations(rcd);
449 }
450
451 *context = rcd;
452 return 0;
453 }
454
455bail:
456 *context = NULL;
457 hfi1_free_ctxt(rcd);
458 return -ENOMEM;
459}
460
461/**
462 * hfi1_free_ctxt - free context
463 * @rcd: pointer to an initialized rcd data structure
464 *
465 * This wrapper is the free function that matches hfi1_create_ctxtdata().
466 * When a context is done being used (kernel or user), this function is called
467 * for the "final" put to match the kref init from hfi1_create_ctxtdata().
468 * Other users of the context do a get/put sequence to make sure that the
469 * structure isn't removed while in use.
470 */
471void hfi1_free_ctxt(struct hfi1_ctxtdata *rcd)
472{
473 hfi1_rcd_put(rcd);
474}
475
476/*
477 * Select the largest ccti value over all SLs to determine the intra-
478 * packet gap for the link.
479 *
480 * called with cca_timer_lock held (to protect access to cca_timer
481 * array), and rcu_read_lock() (to protect access to cc_state).
482 */
483void set_link_ipg(struct hfi1_pportdata *ppd)
484{
485 struct hfi1_devdata *dd = ppd->dd;
486 struct cc_state *cc_state;
487 int i;
488 u16 cce, ccti_limit, max_ccti = 0;
489 u16 shift, mult;
490 u64 src;
491 u32 current_egress_rate; /* Mbits /sec */
492 u64 max_pkt_time;
493 /*
494 * max_pkt_time is the maximum packet egress time in units
495 * of the fabric clock period 1/(805 MHz).
496 */
497
498 cc_state = get_cc_state(ppd);
499
500 if (!cc_state)
501 /*
502 * This should _never_ happen - rcu_read_lock() is held,
503 * and set_link_ipg() should not be called if cc_state
504 * is NULL.
505 */
506 return;
507
508 for (i = 0; i < OPA_MAX_SLS; i++) {
509 u16 ccti = ppd->cca_timer[i].ccti;
510
511 if (ccti > max_ccti)
512 max_ccti = ccti;
513 }
514
515 ccti_limit = cc_state->cct.ccti_limit;
516 if (max_ccti > ccti_limit)
517 max_ccti = ccti_limit;
518
519 cce = cc_state->cct.entries[max_ccti].entry;
520 shift = (cce & 0xc000) >> 14;
521 mult = (cce & 0x3fff);
522
523 current_egress_rate = active_egress_rate(ppd);
524
525 max_pkt_time = egress_cycles(ppd->ibmaxlen, current_egress_rate);
526
527 src = (max_pkt_time >> shift) * mult;
528
529 src &= SEND_STATIC_RATE_CONTROL_CSR_SRC_RELOAD_SMASK;
530 src <<= SEND_STATIC_RATE_CONTROL_CSR_SRC_RELOAD_SHIFT;
531
532 write_csr(dd, SEND_STATIC_RATE_CONTROL, src);
533}
534
535static enum hrtimer_restart cca_timer_fn(struct hrtimer *t)
536{
537 struct cca_timer *cca_timer;
538 struct hfi1_pportdata *ppd;
539 int sl;
540 u16 ccti_timer, ccti_min;
541 struct cc_state *cc_state;
542 unsigned long flags;
543 enum hrtimer_restart ret = HRTIMER_NORESTART;
544
545 cca_timer = container_of(t, struct cca_timer, hrtimer);
546 ppd = cca_timer->ppd;
547 sl = cca_timer->sl;
548
549 rcu_read_lock();
550
551 cc_state = get_cc_state(ppd);
552
553 if (!cc_state) {
554 rcu_read_unlock();
555 return HRTIMER_NORESTART;
556 }
557
558 /*
559 * 1) decrement ccti for SL
560 * 2) calculate IPG for link (set_link_ipg())
561 * 3) restart timer, unless ccti is at min value
562 */
563
564 ccti_min = cc_state->cong_setting.entries[sl].ccti_min;
565 ccti_timer = cc_state->cong_setting.entries[sl].ccti_timer;
566
567 spin_lock_irqsave(&ppd->cca_timer_lock, flags);
568
569 if (cca_timer->ccti > ccti_min) {
570 cca_timer->ccti--;
571 set_link_ipg(ppd);
572 }
573
574 if (cca_timer->ccti > ccti_min) {
575 unsigned long nsec = 1024 * ccti_timer;
576 /* ccti_timer is in units of 1.024 usec */
577 hrtimer_forward_now(t, ns_to_ktime(nsec));
578 ret = HRTIMER_RESTART;
579 }
580
581 spin_unlock_irqrestore(&ppd->cca_timer_lock, flags);
582 rcu_read_unlock();
583 return ret;
584}
585
586/*
587 * Common code for initializing the physical port structure.
588 */
589void hfi1_init_pportdata(struct pci_dev *pdev, struct hfi1_pportdata *ppd,
590 struct hfi1_devdata *dd, u8 hw_pidx, u32 port)
591{
592 int i;
593 uint default_pkey_idx;
594 struct cc_state *cc_state;
595
596 ppd->dd = dd;
597 ppd->hw_pidx = hw_pidx;
598 ppd->port = port; /* IB port number, not index */
599 ppd->prev_link_width = LINK_WIDTH_DEFAULT;
600 /*
601 * There are C_VL_COUNT number of PortVLXmitWait counters.
602 * Adding 1 to C_VL_COUNT to include the PortXmitWait counter.
603 */
604 for (i = 0; i < C_VL_COUNT + 1; i++) {
605 ppd->port_vl_xmit_wait_last[i] = 0;
606 ppd->vl_xmit_flit_cnt[i] = 0;
607 }
608
609 default_pkey_idx = 1;
610
611 ppd->pkeys[default_pkey_idx] = DEFAULT_P_KEY;
612 ppd->part_enforce |= HFI1_PART_ENFORCE_IN;
613 ppd->pkeys[0] = 0x8001;
614
615 INIT_WORK(&ppd->link_vc_work, handle_verify_cap);
616 INIT_WORK(&ppd->link_up_work, handle_link_up);
617 INIT_WORK(&ppd->link_down_work, handle_link_down);
618 INIT_WORK(&ppd->freeze_work, handle_freeze);
619 INIT_WORK(&ppd->link_downgrade_work, handle_link_downgrade);
620 INIT_WORK(&ppd->sma_message_work, handle_sma_message);
621 INIT_WORK(&ppd->link_bounce_work, handle_link_bounce);
622 INIT_DELAYED_WORK(&ppd->start_link_work, handle_start_link);
623 INIT_WORK(&ppd->linkstate_active_work, receive_interrupt_work);
624 INIT_WORK(&ppd->qsfp_info.qsfp_work, qsfp_event);
625
626 mutex_init(&ppd->hls_lock);
627 spin_lock_init(&ppd->qsfp_info.qsfp_lock);
628
629 ppd->qsfp_info.ppd = ppd;
630 ppd->sm_trap_qp = 0x0;
631 ppd->sa_qp = 0x1;
632
633 ppd->hfi1_wq = NULL;
634
635 spin_lock_init(&ppd->cca_timer_lock);
636
637 for (i = 0; i < OPA_MAX_SLS; i++) {
638 hrtimer_init(&ppd->cca_timer[i].hrtimer, CLOCK_MONOTONIC,
639 HRTIMER_MODE_REL);
640 ppd->cca_timer[i].ppd = ppd;
641 ppd->cca_timer[i].sl = i;
642 ppd->cca_timer[i].ccti = 0;
643 ppd->cca_timer[i].hrtimer.function = cca_timer_fn;
644 }
645
646 ppd->cc_max_table_entries = IB_CC_TABLE_CAP_DEFAULT;
647
648 spin_lock_init(&ppd->cc_state_lock);
649 spin_lock_init(&ppd->cc_log_lock);
650 cc_state = kzalloc(sizeof(*cc_state), GFP_KERNEL);
651 RCU_INIT_POINTER(ppd->cc_state, cc_state);
652 if (!cc_state)
653 goto bail;
654 return;
655
656bail:
657 dd_dev_err(dd, "Congestion Control Agent disabled for port %d\n", port);
658}
659
660/*
661 * Do initialization for device that is only needed on
662 * first detect, not on resets.
663 */
664static int loadtime_init(struct hfi1_devdata *dd)
665{
666 return 0;
667}
668
669/**
670 * init_after_reset - re-initialize after a reset
671 * @dd: the hfi1_ib device
672 *
673 * sanity check at least some of the values after reset, and
674 * ensure no receive or transmit (explicitly, in case reset
675 * failed
676 */
677static int init_after_reset(struct hfi1_devdata *dd)
678{
679 int i;
680 struct hfi1_ctxtdata *rcd;
681 /*
682 * Ensure chip does no sends or receives, tail updates, or
683 * pioavail updates while we re-initialize. This is mostly
684 * for the driver data structures, not chip registers.
685 */
686 for (i = 0; i < dd->num_rcv_contexts; i++) {
687 rcd = hfi1_rcd_get_by_index(dd, i);
688 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS |
689 HFI1_RCVCTRL_INTRAVAIL_DIS |
690 HFI1_RCVCTRL_TAILUPD_DIS, rcd);
691 hfi1_rcd_put(rcd);
692 }
693 pio_send_control(dd, PSC_GLOBAL_DISABLE);
694 for (i = 0; i < dd->num_send_contexts; i++)
695 sc_disable(dd->send_contexts[i].sc);
696
697 return 0;
698}
699
700static void enable_chip(struct hfi1_devdata *dd)
701{
702 struct hfi1_ctxtdata *rcd;
703 u32 rcvmask;
704 u16 i;
705
706 /* enable PIO send */
707 pio_send_control(dd, PSC_GLOBAL_ENABLE);
708
709 /*
710 * Enable kernel ctxts' receive and receive interrupt.
711 * Other ctxts done as user opens and initializes them.
712 */
713 for (i = 0; i < dd->first_dyn_alloc_ctxt; ++i) {
714 rcd = hfi1_rcd_get_by_index(dd, i);
715 if (!rcd)
716 continue;
717 rcvmask = HFI1_RCVCTRL_CTXT_ENB | HFI1_RCVCTRL_INTRAVAIL_ENB;
718 rcvmask |= HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL) ?
719 HFI1_RCVCTRL_TAILUPD_ENB : HFI1_RCVCTRL_TAILUPD_DIS;
720 if (!HFI1_CAP_KGET_MASK(rcd->flags, MULTI_PKT_EGR))
721 rcvmask |= HFI1_RCVCTRL_ONE_PKT_EGR_ENB;
722 if (HFI1_CAP_KGET_MASK(rcd->flags, NODROP_RHQ_FULL))
723 rcvmask |= HFI1_RCVCTRL_NO_RHQ_DROP_ENB;
724 if (HFI1_CAP_KGET_MASK(rcd->flags, NODROP_EGR_FULL))
725 rcvmask |= HFI1_RCVCTRL_NO_EGR_DROP_ENB;
726 if (HFI1_CAP_IS_KSET(TID_RDMA))
727 rcvmask |= HFI1_RCVCTRL_TIDFLOW_ENB;
728 hfi1_rcvctrl(dd, rcvmask, rcd);
729 sc_enable(rcd->sc);
730 hfi1_rcd_put(rcd);
731 }
732}
733
734/**
735 * create_workqueues - create per port workqueues
736 * @dd: the hfi1_ib device
737 */
738static int create_workqueues(struct hfi1_devdata *dd)
739{
740 int pidx;
741 struct hfi1_pportdata *ppd;
742
743 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
744 ppd = dd->pport + pidx;
745 if (!ppd->hfi1_wq) {
746 ppd->hfi1_wq =
747 alloc_workqueue(
748 "hfi%d_%d",
749 WQ_SYSFS | WQ_HIGHPRI | WQ_CPU_INTENSIVE |
750 WQ_MEM_RECLAIM,
751 HFI1_MAX_ACTIVE_WORKQUEUE_ENTRIES,
752 dd->unit, pidx);
753 if (!ppd->hfi1_wq)
754 goto wq_error;
755 }
756 if (!ppd->link_wq) {
757 /*
758 * Make the link workqueue single-threaded to enforce
759 * serialization.
760 */
761 ppd->link_wq =
762 alloc_workqueue(
763 "hfi_link_%d_%d",
764 WQ_SYSFS | WQ_MEM_RECLAIM | WQ_UNBOUND,
765 1, /* max_active */
766 dd->unit, pidx);
767 if (!ppd->link_wq)
768 goto wq_error;
769 }
770 }
771 return 0;
772wq_error:
773 pr_err("alloc_workqueue failed for port %d\n", pidx + 1);
774 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
775 ppd = dd->pport + pidx;
776 if (ppd->hfi1_wq) {
777 destroy_workqueue(ppd->hfi1_wq);
778 ppd->hfi1_wq = NULL;
779 }
780 if (ppd->link_wq) {
781 destroy_workqueue(ppd->link_wq);
782 ppd->link_wq = NULL;
783 }
784 }
785 return -ENOMEM;
786}
787
788/**
789 * destroy_workqueues - destroy per port workqueues
790 * @dd: the hfi1_ib device
791 */
792static void destroy_workqueues(struct hfi1_devdata *dd)
793{
794 int pidx;
795 struct hfi1_pportdata *ppd;
796
797 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
798 ppd = dd->pport + pidx;
799
800 if (ppd->hfi1_wq) {
801 destroy_workqueue(ppd->hfi1_wq);
802 ppd->hfi1_wq = NULL;
803 }
804 if (ppd->link_wq) {
805 destroy_workqueue(ppd->link_wq);
806 ppd->link_wq = NULL;
807 }
808 }
809}
810
811/**
812 * enable_general_intr() - Enable the IRQs that will be handled by the
813 * general interrupt handler.
814 * @dd: valid devdata
815 *
816 */
817static void enable_general_intr(struct hfi1_devdata *dd)
818{
819 set_intr_bits(dd, CCE_ERR_INT, MISC_ERR_INT, true);
820 set_intr_bits(dd, PIO_ERR_INT, TXE_ERR_INT, true);
821 set_intr_bits(dd, IS_SENDCTXT_ERR_START, IS_SENDCTXT_ERR_END, true);
822 set_intr_bits(dd, PBC_INT, GPIO_ASSERT_INT, true);
823 set_intr_bits(dd, TCRIT_INT, TCRIT_INT, true);
824 set_intr_bits(dd, IS_DC_START, IS_DC_END, true);
825 set_intr_bits(dd, IS_SENDCREDIT_START, IS_SENDCREDIT_END, true);
826}
827
828/**
829 * hfi1_init - do the actual initialization sequence on the chip
830 * @dd: the hfi1_ib device
831 * @reinit: re-initializing, so don't allocate new memory
832 *
833 * Do the actual initialization sequence on the chip. This is done
834 * both from the init routine called from the PCI infrastructure, and
835 * when we reset the chip, or detect that it was reset internally,
836 * or it's administratively re-enabled.
837 *
838 * Memory allocation here and in called routines is only done in
839 * the first case (reinit == 0). We have to be careful, because even
840 * without memory allocation, we need to re-write all the chip registers
841 * TIDs, etc. after the reset or enable has completed.
842 */
843int hfi1_init(struct hfi1_devdata *dd, int reinit)
844{
845 int ret = 0, pidx, lastfail = 0;
846 unsigned long len;
847 u16 i;
848 struct hfi1_ctxtdata *rcd;
849 struct hfi1_pportdata *ppd;
850
851 /* Set up send low level handlers */
852 dd->process_pio_send = hfi1_verbs_send_pio;
853 dd->process_dma_send = hfi1_verbs_send_dma;
854 dd->pio_inline_send = pio_copy;
855 dd->process_vnic_dma_send = hfi1_vnic_send_dma;
856
857 if (is_ax(dd)) {
858 atomic_set(&dd->drop_packet, DROP_PACKET_ON);
859 dd->do_drop = true;
860 } else {
861 atomic_set(&dd->drop_packet, DROP_PACKET_OFF);
862 dd->do_drop = false;
863 }
864
865 /* make sure the link is not "up" */
866 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
867 ppd = dd->pport + pidx;
868 ppd->linkup = 0;
869 }
870
871 if (reinit)
872 ret = init_after_reset(dd);
873 else
874 ret = loadtime_init(dd);
875 if (ret)
876 goto done;
877
878 /* dd->rcd can be NULL if early initialization failed */
879 for (i = 0; dd->rcd && i < dd->first_dyn_alloc_ctxt; ++i) {
880 /*
881 * Set up the (kernel) rcvhdr queue and egr TIDs. If doing
882 * re-init, the simplest way to handle this is to free
883 * existing, and re-allocate.
884 * Need to re-create rest of ctxt 0 ctxtdata as well.
885 */
886 rcd = hfi1_rcd_get_by_index(dd, i);
887 if (!rcd)
888 continue;
889
890 lastfail = hfi1_create_rcvhdrq(dd, rcd);
891 if (!lastfail)
892 lastfail = hfi1_setup_eagerbufs(rcd);
893 if (!lastfail)
894 lastfail = hfi1_kern_exp_rcv_init(rcd, reinit);
895 if (lastfail) {
896 dd_dev_err(dd,
897 "failed to allocate kernel ctxt's rcvhdrq and/or egr bufs\n");
898 ret = lastfail;
899 }
900 /* enable IRQ */
901 hfi1_rcd_put(rcd);
902 }
903
904 /* Allocate enough memory for user event notification. */
905 len = PAGE_ALIGN(chip_rcv_contexts(dd) * HFI1_MAX_SHARED_CTXTS *
906 sizeof(*dd->events));
907 dd->events = vmalloc_user(len);
908 if (!dd->events)
909 dd_dev_err(dd, "Failed to allocate user events page\n");
910 /*
911 * Allocate a page for device and port status.
912 * Page will be shared amongst all user processes.
913 */
914 dd->status = vmalloc_user(PAGE_SIZE);
915 if (!dd->status)
916 dd_dev_err(dd, "Failed to allocate dev status page\n");
917 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
918 ppd = dd->pport + pidx;
919 if (dd->status)
920 /* Currently, we only have one port */
921 ppd->statusp = &dd->status->port;
922
923 set_mtu(ppd);
924 }
925
926 /* enable chip even if we have an error, so we can debug cause */
927 enable_chip(dd);
928
929done:
930 /*
931 * Set status even if port serdes is not initialized
932 * so that diags will work.
933 */
934 if (dd->status)
935 dd->status->dev |= HFI1_STATUS_CHIP_PRESENT |
936 HFI1_STATUS_INITTED;
937 if (!ret) {
938 /* enable all interrupts from the chip */
939 enable_general_intr(dd);
940 init_qsfp_int(dd);
941
942 /* chip is OK for user apps; mark it as initialized */
943 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
944 ppd = dd->pport + pidx;
945
946 /*
947 * start the serdes - must be after interrupts are
948 * enabled so we are notified when the link goes up
949 */
950 lastfail = bringup_serdes(ppd);
951 if (lastfail)
952 dd_dev_info(dd,
953 "Failed to bring up port %u\n",
954 ppd->port);
955
956 /*
957 * Set status even if port serdes is not initialized
958 * so that diags will work.
959 */
960 if (ppd->statusp)
961 *ppd->statusp |= HFI1_STATUS_CHIP_PRESENT |
962 HFI1_STATUS_INITTED;
963 if (!ppd->link_speed_enabled)
964 continue;
965 }
966 }
967
968 /* if ret is non-zero, we probably should do some cleanup here... */
969 return ret;
970}
971
972struct hfi1_devdata *hfi1_lookup(int unit)
973{
974 return xa_load(&hfi1_dev_table, unit);
975}
976
977/*
978 * Stop the timers during unit shutdown, or after an error late
979 * in initialization.
980 */
981static void stop_timers(struct hfi1_devdata *dd)
982{
983 struct hfi1_pportdata *ppd;
984 int pidx;
985
986 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
987 ppd = dd->pport + pidx;
988 if (ppd->led_override_timer.function) {
989 del_timer_sync(&ppd->led_override_timer);
990 atomic_set(&ppd->led_override_timer_active, 0);
991 }
992 }
993}
994
995/**
996 * shutdown_device - shut down a device
997 * @dd: the hfi1_ib device
998 *
999 * This is called to make the device quiet when we are about to
1000 * unload the driver, and also when the device is administratively
1001 * disabled. It does not free any data structures.
1002 * Everything it does has to be setup again by hfi1_init(dd, 1)
1003 */
1004static void shutdown_device(struct hfi1_devdata *dd)
1005{
1006 struct hfi1_pportdata *ppd;
1007 struct hfi1_ctxtdata *rcd;
1008 unsigned pidx;
1009 int i;
1010
1011 if (dd->flags & HFI1_SHUTDOWN)
1012 return;
1013 dd->flags |= HFI1_SHUTDOWN;
1014
1015 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1016 ppd = dd->pport + pidx;
1017
1018 ppd->linkup = 0;
1019 if (ppd->statusp)
1020 *ppd->statusp &= ~(HFI1_STATUS_IB_CONF |
1021 HFI1_STATUS_IB_READY);
1022 }
1023 dd->flags &= ~HFI1_INITTED;
1024
1025 /* mask and clean up interrupts */
1026 set_intr_bits(dd, IS_FIRST_SOURCE, IS_LAST_SOURCE, false);
1027 msix_clean_up_interrupts(dd);
1028
1029 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1030 for (i = 0; i < dd->num_rcv_contexts; i++) {
1031 rcd = hfi1_rcd_get_by_index(dd, i);
1032 hfi1_rcvctrl(dd, HFI1_RCVCTRL_TAILUPD_DIS |
1033 HFI1_RCVCTRL_CTXT_DIS |
1034 HFI1_RCVCTRL_INTRAVAIL_DIS |
1035 HFI1_RCVCTRL_PKEY_DIS |
1036 HFI1_RCVCTRL_ONE_PKT_EGR_DIS, rcd);
1037 hfi1_rcd_put(rcd);
1038 }
1039 /*
1040 * Gracefully stop all sends allowing any in progress to
1041 * trickle out first.
1042 */
1043 for (i = 0; i < dd->num_send_contexts; i++)
1044 sc_flush(dd->send_contexts[i].sc);
1045 }
1046
1047 /*
1048 * Enough for anything that's going to trickle out to have actually
1049 * done so.
1050 */
1051 udelay(20);
1052
1053 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1054 ppd = dd->pport + pidx;
1055
1056 /* disable all contexts */
1057 for (i = 0; i < dd->num_send_contexts; i++)
1058 sc_disable(dd->send_contexts[i].sc);
1059 /* disable the send device */
1060 pio_send_control(dd, PSC_GLOBAL_DISABLE);
1061
1062 shutdown_led_override(ppd);
1063
1064 /*
1065 * Clear SerdesEnable.
1066 * We can't count on interrupts since we are stopping.
1067 */
1068 hfi1_quiet_serdes(ppd);
1069 if (ppd->hfi1_wq)
1070 flush_workqueue(ppd->hfi1_wq);
1071 if (ppd->link_wq)
1072 flush_workqueue(ppd->link_wq);
1073 }
1074 sdma_exit(dd);
1075}
1076
1077/**
1078 * hfi1_free_ctxtdata - free a context's allocated data
1079 * @dd: the hfi1_ib device
1080 * @rcd: the ctxtdata structure
1081 *
1082 * free up any allocated data for a context
1083 * It should never change any chip state, or global driver state.
1084 */
1085void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
1086{
1087 u32 e;
1088
1089 if (!rcd)
1090 return;
1091
1092 if (rcd->rcvhdrq) {
1093 dma_free_coherent(&dd->pcidev->dev, rcvhdrq_size(rcd),
1094 rcd->rcvhdrq, rcd->rcvhdrq_dma);
1095 rcd->rcvhdrq = NULL;
1096 if (hfi1_rcvhdrtail_kvaddr(rcd)) {
1097 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1098 (void *)hfi1_rcvhdrtail_kvaddr(rcd),
1099 rcd->rcvhdrqtailaddr_dma);
1100 rcd->rcvhdrtail_kvaddr = NULL;
1101 }
1102 }
1103
1104 /* all the RcvArray entries should have been cleared by now */
1105 kfree(rcd->egrbufs.rcvtids);
1106 rcd->egrbufs.rcvtids = NULL;
1107
1108 for (e = 0; e < rcd->egrbufs.alloced; e++) {
1109 if (rcd->egrbufs.buffers[e].addr)
1110 dma_free_coherent(&dd->pcidev->dev,
1111 rcd->egrbufs.buffers[e].len,
1112 rcd->egrbufs.buffers[e].addr,
1113 rcd->egrbufs.buffers[e].dma);
1114 }
1115 kfree(rcd->egrbufs.buffers);
1116 rcd->egrbufs.alloced = 0;
1117 rcd->egrbufs.buffers = NULL;
1118
1119 sc_free(rcd->sc);
1120 rcd->sc = NULL;
1121
1122 vfree(rcd->subctxt_uregbase);
1123 vfree(rcd->subctxt_rcvegrbuf);
1124 vfree(rcd->subctxt_rcvhdr_base);
1125 kfree(rcd->opstats);
1126
1127 rcd->subctxt_uregbase = NULL;
1128 rcd->subctxt_rcvegrbuf = NULL;
1129 rcd->subctxt_rcvhdr_base = NULL;
1130 rcd->opstats = NULL;
1131}
1132
1133/*
1134 * Release our hold on the shared asic data. If we are the last one,
1135 * return the structure to be finalized outside the lock. Must be
1136 * holding hfi1_dev_table lock.
1137 */
1138static struct hfi1_asic_data *release_asic_data(struct hfi1_devdata *dd)
1139{
1140 struct hfi1_asic_data *ad;
1141 int other;
1142
1143 if (!dd->asic_data)
1144 return NULL;
1145 dd->asic_data->dds[dd->hfi1_id] = NULL;
1146 other = dd->hfi1_id ? 0 : 1;
1147 ad = dd->asic_data;
1148 dd->asic_data = NULL;
1149 /* return NULL if the other dd still has a link */
1150 return ad->dds[other] ? NULL : ad;
1151}
1152
1153static void finalize_asic_data(struct hfi1_devdata *dd,
1154 struct hfi1_asic_data *ad)
1155{
1156 clean_up_i2c(dd, ad);
1157 kfree(ad);
1158}
1159
1160/**
1161 * hfi1_free_devdata - cleans up and frees per-unit data structure
1162 * @dd: pointer to a valid devdata structure
1163 *
1164 * It cleans up and frees all data structures set up by
1165 * by hfi1_alloc_devdata().
1166 */
1167void hfi1_free_devdata(struct hfi1_devdata *dd)
1168{
1169 struct hfi1_asic_data *ad;
1170 unsigned long flags;
1171
1172 xa_lock_irqsave(&hfi1_dev_table, flags);
1173 __xa_erase(&hfi1_dev_table, dd->unit);
1174 ad = release_asic_data(dd);
1175 xa_unlock_irqrestore(&hfi1_dev_table, flags);
1176
1177 finalize_asic_data(dd, ad);
1178 free_platform_config(dd);
1179 rcu_barrier(); /* wait for rcu callbacks to complete */
1180 free_percpu(dd->int_counter);
1181 free_percpu(dd->rcv_limit);
1182 free_percpu(dd->send_schedule);
1183 free_percpu(dd->tx_opstats);
1184 dd->int_counter = NULL;
1185 dd->rcv_limit = NULL;
1186 dd->send_schedule = NULL;
1187 dd->tx_opstats = NULL;
1188 kfree(dd->comp_vect);
1189 dd->comp_vect = NULL;
1190 if (dd->rcvhdrtail_dummy_kvaddr)
1191 dma_free_coherent(&dd->pcidev->dev, sizeof(u64),
1192 (void *)dd->rcvhdrtail_dummy_kvaddr,
1193 dd->rcvhdrtail_dummy_dma);
1194 dd->rcvhdrtail_dummy_kvaddr = NULL;
1195 sdma_clean(dd, dd->num_sdma);
1196 rvt_dealloc_device(&dd->verbs_dev.rdi);
1197}
1198
1199/**
1200 * hfi1_alloc_devdata - Allocate our primary per-unit data structure.
1201 * @pdev: Valid PCI device
1202 * @extra: How many bytes to alloc past the default
1203 *
1204 * Must be done via verbs allocator, because the verbs cleanup process
1205 * both does cleanup and free of the data structure.
1206 * "extra" is for chip-specific data.
1207 */
1208static struct hfi1_devdata *hfi1_alloc_devdata(struct pci_dev *pdev,
1209 size_t extra)
1210{
1211 struct hfi1_devdata *dd;
1212 int ret, nports;
1213
1214 /* extra is * number of ports */
1215 nports = extra / sizeof(struct hfi1_pportdata);
1216
1217 dd = (struct hfi1_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
1218 nports);
1219 if (!dd)
1220 return ERR_PTR(-ENOMEM);
1221 dd->num_pports = nports;
1222 dd->pport = (struct hfi1_pportdata *)(dd + 1);
1223 dd->pcidev = pdev;
1224 pci_set_drvdata(pdev, dd);
1225
1226 ret = xa_alloc_irq(&hfi1_dev_table, &dd->unit, dd, xa_limit_32b,
1227 GFP_KERNEL);
1228 if (ret < 0) {
1229 dev_err(&pdev->dev,
1230 "Could not allocate unit ID: error %d\n", -ret);
1231 goto bail;
1232 }
1233 rvt_set_ibdev_name(&dd->verbs_dev.rdi, "%s_%d", class_name(), dd->unit);
1234 /*
1235 * If the BIOS does not have the NUMA node information set, select
1236 * NUMA 0 so we get consistent performance.
1237 */
1238 dd->node = pcibus_to_node(pdev->bus);
1239 if (dd->node == NUMA_NO_NODE) {
1240 dd_dev_err(dd, "Invalid PCI NUMA node. Performance may be affected\n");
1241 dd->node = 0;
1242 }
1243
1244 /*
1245 * Initialize all locks for the device. This needs to be as early as
1246 * possible so locks are usable.
1247 */
1248 spin_lock_init(&dd->sc_lock);
1249 spin_lock_init(&dd->sendctrl_lock);
1250 spin_lock_init(&dd->rcvctrl_lock);
1251 spin_lock_init(&dd->uctxt_lock);
1252 spin_lock_init(&dd->hfi1_diag_trans_lock);
1253 spin_lock_init(&dd->sc_init_lock);
1254 spin_lock_init(&dd->dc8051_memlock);
1255 seqlock_init(&dd->sc2vl_lock);
1256 spin_lock_init(&dd->sde_map_lock);
1257 spin_lock_init(&dd->pio_map_lock);
1258 mutex_init(&dd->dc8051_lock);
1259 init_waitqueue_head(&dd->event_queue);
1260 spin_lock_init(&dd->irq_src_lock);
1261
1262 dd->int_counter = alloc_percpu(u64);
1263 if (!dd->int_counter) {
1264 ret = -ENOMEM;
1265 goto bail;
1266 }
1267
1268 dd->rcv_limit = alloc_percpu(u64);
1269 if (!dd->rcv_limit) {
1270 ret = -ENOMEM;
1271 goto bail;
1272 }
1273
1274 dd->send_schedule = alloc_percpu(u64);
1275 if (!dd->send_schedule) {
1276 ret = -ENOMEM;
1277 goto bail;
1278 }
1279
1280 dd->tx_opstats = alloc_percpu(struct hfi1_opcode_stats_perctx);
1281 if (!dd->tx_opstats) {
1282 ret = -ENOMEM;
1283 goto bail;
1284 }
1285
1286 dd->comp_vect = kzalloc(sizeof(*dd->comp_vect), GFP_KERNEL);
1287 if (!dd->comp_vect) {
1288 ret = -ENOMEM;
1289 goto bail;
1290 }
1291
1292 /* allocate dummy tail memory for all receive contexts */
1293 dd->rcvhdrtail_dummy_kvaddr =
1294 dma_alloc_coherent(&dd->pcidev->dev, sizeof(u64),
1295 &dd->rcvhdrtail_dummy_dma, GFP_KERNEL);
1296 if (!dd->rcvhdrtail_dummy_kvaddr) {
1297 ret = -ENOMEM;
1298 goto bail;
1299 }
1300
1301 atomic_set(&dd->ipoib_rsm_usr_num, 0);
1302 return dd;
1303
1304bail:
1305 hfi1_free_devdata(dd);
1306 return ERR_PTR(ret);
1307}
1308
1309/*
1310 * Called from freeze mode handlers, and from PCI error
1311 * reporting code. Should be paranoid about state of
1312 * system and data structures.
1313 */
1314void hfi1_disable_after_error(struct hfi1_devdata *dd)
1315{
1316 if (dd->flags & HFI1_INITTED) {
1317 u32 pidx;
1318
1319 dd->flags &= ~HFI1_INITTED;
1320 if (dd->pport)
1321 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1322 struct hfi1_pportdata *ppd;
1323
1324 ppd = dd->pport + pidx;
1325 if (dd->flags & HFI1_PRESENT)
1326 set_link_state(ppd, HLS_DN_DISABLE);
1327
1328 if (ppd->statusp)
1329 *ppd->statusp &= ~HFI1_STATUS_IB_READY;
1330 }
1331 }
1332
1333 /*
1334 * Mark as having had an error for driver, and also
1335 * for /sys and status word mapped to user programs.
1336 * This marks unit as not usable, until reset.
1337 */
1338 if (dd->status)
1339 dd->status->dev |= HFI1_STATUS_HWERROR;
1340}
1341
1342static void remove_one(struct pci_dev *);
1343static int init_one(struct pci_dev *, const struct pci_device_id *);
1344static void shutdown_one(struct pci_dev *);
1345
1346#define DRIVER_LOAD_MSG "Cornelis " DRIVER_NAME " loaded: "
1347#define PFX DRIVER_NAME ": "
1348
1349const struct pci_device_id hfi1_pci_tbl[] = {
1350 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL0) },
1351 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL1) },
1352 { 0, }
1353};
1354
1355MODULE_DEVICE_TABLE(pci, hfi1_pci_tbl);
1356
1357static struct pci_driver hfi1_pci_driver = {
1358 .name = DRIVER_NAME,
1359 .probe = init_one,
1360 .remove = remove_one,
1361 .shutdown = shutdown_one,
1362 .id_table = hfi1_pci_tbl,
1363 .err_handler = &hfi1_pci_err_handler,
1364};
1365
1366static void __init compute_krcvqs(void)
1367{
1368 int i;
1369
1370 for (i = 0; i < krcvqsset; i++)
1371 n_krcvqs += krcvqs[i];
1372}
1373
1374/*
1375 * Do all the generic driver unit- and chip-independent memory
1376 * allocation and initialization.
1377 */
1378static int __init hfi1_mod_init(void)
1379{
1380 int ret;
1381
1382 ret = dev_init();
1383 if (ret)
1384 goto bail;
1385
1386 ret = node_affinity_init();
1387 if (ret)
1388 goto bail;
1389
1390 /* validate max MTU before any devices start */
1391 if (!valid_opa_max_mtu(hfi1_max_mtu)) {
1392 pr_err("Invalid max_mtu 0x%x, using 0x%x instead\n",
1393 hfi1_max_mtu, HFI1_DEFAULT_MAX_MTU);
1394 hfi1_max_mtu = HFI1_DEFAULT_MAX_MTU;
1395 }
1396 /* valid CUs run from 1-128 in powers of 2 */
1397 if (hfi1_cu > 128 || !is_power_of_2(hfi1_cu))
1398 hfi1_cu = 1;
1399 /* valid credit return threshold is 0-100, variable is unsigned */
1400 if (user_credit_return_threshold > 100)
1401 user_credit_return_threshold = 100;
1402
1403 compute_krcvqs();
1404 /*
1405 * sanitize receive interrupt count, time must wait until after
1406 * the hardware type is known
1407 */
1408 if (rcv_intr_count > RCV_HDR_HEAD_COUNTER_MASK)
1409 rcv_intr_count = RCV_HDR_HEAD_COUNTER_MASK;
1410 /* reject invalid combinations */
1411 if (rcv_intr_count == 0 && rcv_intr_timeout == 0) {
1412 pr_err("Invalid mode: both receive interrupt count and available timeout are zero - setting interrupt count to 1\n");
1413 rcv_intr_count = 1;
1414 }
1415 if (rcv_intr_count > 1 && rcv_intr_timeout == 0) {
1416 /*
1417 * Avoid indefinite packet delivery by requiring a timeout
1418 * if count is > 1.
1419 */
1420 pr_err("Invalid mode: receive interrupt count greater than 1 and available timeout is zero - setting available timeout to 1\n");
1421 rcv_intr_timeout = 1;
1422 }
1423 if (rcv_intr_dynamic && !(rcv_intr_count > 1 && rcv_intr_timeout > 0)) {
1424 /*
1425 * The dynamic algorithm expects a non-zero timeout
1426 * and a count > 1.
1427 */
1428 pr_err("Invalid mode: dynamic receive interrupt mitigation with invalid count and timeout - turning dynamic off\n");
1429 rcv_intr_dynamic = 0;
1430 }
1431
1432 /* sanitize link CRC options */
1433 link_crc_mask &= SUPPORTED_CRCS;
1434
1435 ret = opfn_init();
1436 if (ret < 0) {
1437 pr_err("Failed to allocate opfn_wq");
1438 goto bail_dev;
1439 }
1440
1441 /*
1442 * These must be called before the driver is registered with
1443 * the PCI subsystem.
1444 */
1445 hfi1_dbg_init();
1446 ret = pci_register_driver(&hfi1_pci_driver);
1447 if (ret < 0) {
1448 pr_err("Unable to register driver: error %d\n", -ret);
1449 goto bail_dev;
1450 }
1451 goto bail; /* all OK */
1452
1453bail_dev:
1454 hfi1_dbg_exit();
1455 dev_cleanup();
1456bail:
1457 return ret;
1458}
1459
1460module_init(hfi1_mod_init);
1461
1462/*
1463 * Do the non-unit driver cleanup, memory free, etc. at unload.
1464 */
1465static void __exit hfi1_mod_cleanup(void)
1466{
1467 pci_unregister_driver(&hfi1_pci_driver);
1468 opfn_exit();
1469 node_affinity_destroy_all();
1470 hfi1_dbg_exit();
1471
1472 WARN_ON(!xa_empty(&hfi1_dev_table));
1473 dispose_firmware(); /* asymmetric with obtain_firmware() */
1474 dev_cleanup();
1475}
1476
1477module_exit(hfi1_mod_cleanup);
1478
1479/* this can only be called after a successful initialization */
1480static void cleanup_device_data(struct hfi1_devdata *dd)
1481{
1482 int ctxt;
1483 int pidx;
1484
1485 /* users can't do anything more with chip */
1486 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1487 struct hfi1_pportdata *ppd = &dd->pport[pidx];
1488 struct cc_state *cc_state;
1489 int i;
1490
1491 if (ppd->statusp)
1492 *ppd->statusp &= ~HFI1_STATUS_CHIP_PRESENT;
1493
1494 for (i = 0; i < OPA_MAX_SLS; i++)
1495 hrtimer_cancel(&ppd->cca_timer[i].hrtimer);
1496
1497 spin_lock(&ppd->cc_state_lock);
1498 cc_state = get_cc_state_protected(ppd);
1499 RCU_INIT_POINTER(ppd->cc_state, NULL);
1500 spin_unlock(&ppd->cc_state_lock);
1501
1502 if (cc_state)
1503 kfree_rcu(cc_state, rcu);
1504 }
1505
1506 free_credit_return(dd);
1507
1508 /*
1509 * Free any resources still in use (usually just kernel contexts)
1510 * at unload; we do for ctxtcnt, because that's what we allocate.
1511 */
1512 for (ctxt = 0; dd->rcd && ctxt < dd->num_rcv_contexts; ctxt++) {
1513 struct hfi1_ctxtdata *rcd = dd->rcd[ctxt];
1514
1515 if (rcd) {
1516 hfi1_free_ctxt_rcv_groups(rcd);
1517 hfi1_free_ctxt(rcd);
1518 }
1519 }
1520
1521 kfree(dd->rcd);
1522 dd->rcd = NULL;
1523
1524 free_pio_map(dd);
1525 /* must follow rcv context free - need to remove rcv's hooks */
1526 for (ctxt = 0; ctxt < dd->num_send_contexts; ctxt++)
1527 sc_free(dd->send_contexts[ctxt].sc);
1528 dd->num_send_contexts = 0;
1529 kfree(dd->send_contexts);
1530 dd->send_contexts = NULL;
1531 kfree(dd->hw_to_sw);
1532 dd->hw_to_sw = NULL;
1533 kfree(dd->boardname);
1534 vfree(dd->events);
1535 vfree(dd->status);
1536}
1537
1538/*
1539 * Clean up on unit shutdown, or error during unit load after
1540 * successful initialization.
1541 */
1542static void postinit_cleanup(struct hfi1_devdata *dd)
1543{
1544 hfi1_start_cleanup(dd);
1545 hfi1_comp_vectors_clean_up(dd);
1546 hfi1_dev_affinity_clean_up(dd);
1547
1548 hfi1_pcie_ddcleanup(dd);
1549 hfi1_pcie_cleanup(dd->pcidev);
1550
1551 cleanup_device_data(dd);
1552
1553 hfi1_free_devdata(dd);
1554}
1555
1556static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1557{
1558 int ret = 0, j, pidx, initfail;
1559 struct hfi1_devdata *dd;
1560 struct hfi1_pportdata *ppd;
1561
1562 /* First, lock the non-writable module parameters */
1563 HFI1_CAP_LOCK();
1564
1565 /* Validate dev ids */
1566 if (!(ent->device == PCI_DEVICE_ID_INTEL0 ||
1567 ent->device == PCI_DEVICE_ID_INTEL1)) {
1568 dev_err(&pdev->dev, "Failing on unknown Intel deviceid 0x%x\n",
1569 ent->device);
1570 ret = -ENODEV;
1571 goto bail;
1572 }
1573
1574 /* Allocate the dd so we can get to work */
1575 dd = hfi1_alloc_devdata(pdev, NUM_IB_PORTS *
1576 sizeof(struct hfi1_pportdata));
1577 if (IS_ERR(dd)) {
1578 ret = PTR_ERR(dd);
1579 goto bail;
1580 }
1581
1582 /* Validate some global module parameters */
1583 ret = hfi1_validate_rcvhdrcnt(dd, rcvhdrcnt);
1584 if (ret)
1585 goto bail;
1586
1587 /* use the encoding function as a sanitization check */
1588 if (!encode_rcv_header_entry_size(hfi1_hdrq_entsize)) {
1589 dd_dev_err(dd, "Invalid HdrQ Entry size %u\n",
1590 hfi1_hdrq_entsize);
1591 ret = -EINVAL;
1592 goto bail;
1593 }
1594
1595 /* The receive eager buffer size must be set before the receive
1596 * contexts are created.
1597 *
1598 * Set the eager buffer size. Validate that it falls in a range
1599 * allowed by the hardware - all powers of 2 between the min and
1600 * max. The maximum valid MTU is within the eager buffer range
1601 * so we do not need to cap the max_mtu by an eager buffer size
1602 * setting.
1603 */
1604 if (eager_buffer_size) {
1605 if (!is_power_of_2(eager_buffer_size))
1606 eager_buffer_size =
1607 roundup_pow_of_two(eager_buffer_size);
1608 eager_buffer_size =
1609 clamp_val(eager_buffer_size,
1610 MIN_EAGER_BUFFER * 8,
1611 MAX_EAGER_BUFFER_TOTAL);
1612 dd_dev_info(dd, "Eager buffer size %u\n",
1613 eager_buffer_size);
1614 } else {
1615 dd_dev_err(dd, "Invalid Eager buffer size of 0\n");
1616 ret = -EINVAL;
1617 goto bail;
1618 }
1619
1620 /* restrict value of hfi1_rcvarr_split */
1621 hfi1_rcvarr_split = clamp_val(hfi1_rcvarr_split, 0, 100);
1622
1623 ret = hfi1_pcie_init(dd);
1624 if (ret)
1625 goto bail;
1626
1627 /*
1628 * Do device-specific initialization, function table setup, dd
1629 * allocation, etc.
1630 */
1631 ret = hfi1_init_dd(dd);
1632 if (ret)
1633 goto clean_bail; /* error already printed */
1634
1635 ret = create_workqueues(dd);
1636 if (ret)
1637 goto clean_bail;
1638
1639 /* do the generic initialization */
1640 initfail = hfi1_init(dd, 0);
1641
1642 ret = hfi1_register_ib_device(dd);
1643
1644 /*
1645 * Now ready for use. this should be cleared whenever we
1646 * detect a reset, or initiate one. If earlier failure,
1647 * we still create devices, so diags, etc. can be used
1648 * to determine cause of problem.
1649 */
1650 if (!initfail && !ret) {
1651 dd->flags |= HFI1_INITTED;
1652 /* create debufs files after init and ib register */
1653 hfi1_dbg_ibdev_init(&dd->verbs_dev);
1654 }
1655
1656 j = hfi1_device_create(dd);
1657 if (j)
1658 dd_dev_err(dd, "Failed to create /dev devices: %d\n", -j);
1659
1660 if (initfail || ret) {
1661 msix_clean_up_interrupts(dd);
1662 stop_timers(dd);
1663 flush_workqueue(ib_wq);
1664 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1665 hfi1_quiet_serdes(dd->pport + pidx);
1666 ppd = dd->pport + pidx;
1667 if (ppd->hfi1_wq) {
1668 destroy_workqueue(ppd->hfi1_wq);
1669 ppd->hfi1_wq = NULL;
1670 }
1671 if (ppd->link_wq) {
1672 destroy_workqueue(ppd->link_wq);
1673 ppd->link_wq = NULL;
1674 }
1675 }
1676 if (!j)
1677 hfi1_device_remove(dd);
1678 if (!ret)
1679 hfi1_unregister_ib_device(dd);
1680 postinit_cleanup(dd);
1681 if (initfail)
1682 ret = initfail;
1683 goto bail; /* everything already cleaned */
1684 }
1685
1686 sdma_start(dd);
1687
1688 return 0;
1689
1690clean_bail:
1691 hfi1_pcie_cleanup(pdev);
1692bail:
1693 return ret;
1694}
1695
1696static void wait_for_clients(struct hfi1_devdata *dd)
1697{
1698 /*
1699 * Remove the device init value and complete the device if there is
1700 * no clients or wait for active clients to finish.
1701 */
1702 if (refcount_dec_and_test(&dd->user_refcount))
1703 complete(&dd->user_comp);
1704
1705 wait_for_completion(&dd->user_comp);
1706}
1707
1708static void remove_one(struct pci_dev *pdev)
1709{
1710 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
1711
1712 /* close debugfs files before ib unregister */
1713 hfi1_dbg_ibdev_exit(&dd->verbs_dev);
1714
1715 /* remove the /dev hfi1 interface */
1716 hfi1_device_remove(dd);
1717
1718 /* wait for existing user space clients to finish */
1719 wait_for_clients(dd);
1720
1721 /* unregister from IB core */
1722 hfi1_unregister_ib_device(dd);
1723
1724 /* free netdev data */
1725 hfi1_free_rx(dd);
1726
1727 /*
1728 * Disable the IB link, disable interrupts on the device,
1729 * clear dma engines, etc.
1730 */
1731 shutdown_device(dd);
1732 destroy_workqueues(dd);
1733
1734 stop_timers(dd);
1735
1736 /* wait until all of our (qsfp) queue_work() calls complete */
1737 flush_workqueue(ib_wq);
1738
1739 postinit_cleanup(dd);
1740}
1741
1742static void shutdown_one(struct pci_dev *pdev)
1743{
1744 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
1745
1746 shutdown_device(dd);
1747}
1748
1749/**
1750 * hfi1_create_rcvhdrq - create a receive header queue
1751 * @dd: the hfi1_ib device
1752 * @rcd: the context data
1753 *
1754 * This must be contiguous memory (from an i/o perspective), and must be
1755 * DMA'able (which means for some systems, it will go through an IOMMU,
1756 * or be forced into a low address range).
1757 */
1758int hfi1_create_rcvhdrq(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
1759{
1760 unsigned amt;
1761
1762 if (!rcd->rcvhdrq) {
1763 amt = rcvhdrq_size(rcd);
1764
1765 rcd->rcvhdrq = dma_alloc_coherent(&dd->pcidev->dev, amt,
1766 &rcd->rcvhdrq_dma,
1767 GFP_KERNEL);
1768
1769 if (!rcd->rcvhdrq) {
1770 dd_dev_err(dd,
1771 "attempt to allocate %d bytes for ctxt %u rcvhdrq failed\n",
1772 amt, rcd->ctxt);
1773 goto bail;
1774 }
1775
1776 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL) ||
1777 HFI1_CAP_UGET_MASK(rcd->flags, DMA_RTAIL)) {
1778 rcd->rcvhdrtail_kvaddr = dma_alloc_coherent(&dd->pcidev->dev,
1779 PAGE_SIZE,
1780 &rcd->rcvhdrqtailaddr_dma,
1781 GFP_KERNEL);
1782 if (!rcd->rcvhdrtail_kvaddr)
1783 goto bail_free;
1784 }
1785 }
1786
1787 set_hdrq_regs(rcd->dd, rcd->ctxt, rcd->rcvhdrqentsize,
1788 rcd->rcvhdrq_cnt);
1789
1790 return 0;
1791
1792bail_free:
1793 dd_dev_err(dd,
1794 "attempt to allocate 1 page for ctxt %u rcvhdrqtailaddr failed\n",
1795 rcd->ctxt);
1796 dma_free_coherent(&dd->pcidev->dev, amt, rcd->rcvhdrq,
1797 rcd->rcvhdrq_dma);
1798 rcd->rcvhdrq = NULL;
1799bail:
1800 return -ENOMEM;
1801}
1802
1803/**
1804 * hfi1_setup_eagerbufs - llocate eager buffers, both kernel and user
1805 * contexts.
1806 * @rcd: the context we are setting up.
1807 *
1808 * Allocate the eager TID buffers and program them into hip.
1809 * They are no longer completely contiguous, we do multiple allocation
1810 * calls. Otherwise we get the OOM code involved, by asking for too
1811 * much per call, with disastrous results on some kernels.
1812 */
1813int hfi1_setup_eagerbufs(struct hfi1_ctxtdata *rcd)
1814{
1815 struct hfi1_devdata *dd = rcd->dd;
1816 u32 max_entries, egrtop, alloced_bytes = 0;
1817 u16 order, idx = 0;
1818 int ret = 0;
1819 u16 round_mtu = roundup_pow_of_two(hfi1_max_mtu);
1820
1821 /*
1822 * The minimum size of the eager buffers is a groups of MTU-sized
1823 * buffers.
1824 * The global eager_buffer_size parameter is checked against the
1825 * theoretical lower limit of the value. Here, we check against the
1826 * MTU.
1827 */
1828 if (rcd->egrbufs.size < (round_mtu * dd->rcv_entries.group_size))
1829 rcd->egrbufs.size = round_mtu * dd->rcv_entries.group_size;
1830 /*
1831 * If using one-pkt-per-egr-buffer, lower the eager buffer
1832 * size to the max MTU (page-aligned).
1833 */
1834 if (!HFI1_CAP_KGET_MASK(rcd->flags, MULTI_PKT_EGR))
1835 rcd->egrbufs.rcvtid_size = round_mtu;
1836
1837 /*
1838 * Eager buffers sizes of 1MB or less require smaller TID sizes
1839 * to satisfy the "multiple of 8 RcvArray entries" requirement.
1840 */
1841 if (rcd->egrbufs.size <= (1 << 20))
1842 rcd->egrbufs.rcvtid_size = max((unsigned long)round_mtu,
1843 rounddown_pow_of_two(rcd->egrbufs.size / 8));
1844
1845 while (alloced_bytes < rcd->egrbufs.size &&
1846 rcd->egrbufs.alloced < rcd->egrbufs.count) {
1847 rcd->egrbufs.buffers[idx].addr =
1848 dma_alloc_coherent(&dd->pcidev->dev,
1849 rcd->egrbufs.rcvtid_size,
1850 &rcd->egrbufs.buffers[idx].dma,
1851 GFP_KERNEL);
1852 if (rcd->egrbufs.buffers[idx].addr) {
1853 rcd->egrbufs.buffers[idx].len =
1854 rcd->egrbufs.rcvtid_size;
1855 rcd->egrbufs.rcvtids[rcd->egrbufs.alloced].addr =
1856 rcd->egrbufs.buffers[idx].addr;
1857 rcd->egrbufs.rcvtids[rcd->egrbufs.alloced].dma =
1858 rcd->egrbufs.buffers[idx].dma;
1859 rcd->egrbufs.alloced++;
1860 alloced_bytes += rcd->egrbufs.rcvtid_size;
1861 idx++;
1862 } else {
1863 u32 new_size, i, j;
1864 u64 offset = 0;
1865
1866 /*
1867 * Fail the eager buffer allocation if:
1868 * - we are already using the lowest acceptable size
1869 * - we are using one-pkt-per-egr-buffer (this implies
1870 * that we are accepting only one size)
1871 */
1872 if (rcd->egrbufs.rcvtid_size == round_mtu ||
1873 !HFI1_CAP_KGET_MASK(rcd->flags, MULTI_PKT_EGR)) {
1874 dd_dev_err(dd, "ctxt%u: Failed to allocate eager buffers\n",
1875 rcd->ctxt);
1876 ret = -ENOMEM;
1877 goto bail_rcvegrbuf_phys;
1878 }
1879
1880 new_size = rcd->egrbufs.rcvtid_size / 2;
1881
1882 /*
1883 * If the first attempt to allocate memory failed, don't
1884 * fail everything but continue with the next lower
1885 * size.
1886 */
1887 if (idx == 0) {
1888 rcd->egrbufs.rcvtid_size = new_size;
1889 continue;
1890 }
1891
1892 /*
1893 * Re-partition already allocated buffers to a smaller
1894 * size.
1895 */
1896 rcd->egrbufs.alloced = 0;
1897 for (i = 0, j = 0, offset = 0; j < idx; i++) {
1898 if (i >= rcd->egrbufs.count)
1899 break;
1900 rcd->egrbufs.rcvtids[i].dma =
1901 rcd->egrbufs.buffers[j].dma + offset;
1902 rcd->egrbufs.rcvtids[i].addr =
1903 rcd->egrbufs.buffers[j].addr + offset;
1904 rcd->egrbufs.alloced++;
1905 if ((rcd->egrbufs.buffers[j].dma + offset +
1906 new_size) ==
1907 (rcd->egrbufs.buffers[j].dma +
1908 rcd->egrbufs.buffers[j].len)) {
1909 j++;
1910 offset = 0;
1911 } else {
1912 offset += new_size;
1913 }
1914 }
1915 rcd->egrbufs.rcvtid_size = new_size;
1916 }
1917 }
1918 rcd->egrbufs.numbufs = idx;
1919 rcd->egrbufs.size = alloced_bytes;
1920
1921 hfi1_cdbg(PROC,
1922 "ctxt%u: Alloced %u rcv tid entries @ %uKB, total %uKB",
1923 rcd->ctxt, rcd->egrbufs.alloced,
1924 rcd->egrbufs.rcvtid_size / 1024, rcd->egrbufs.size / 1024);
1925
1926 /*
1927 * Set the contexts rcv array head update threshold to the closest
1928 * power of 2 (so we can use a mask instead of modulo) below half
1929 * the allocated entries.
1930 */
1931 rcd->egrbufs.threshold =
1932 rounddown_pow_of_two(rcd->egrbufs.alloced / 2);
1933 /*
1934 * Compute the expected RcvArray entry base. This is done after
1935 * allocating the eager buffers in order to maximize the
1936 * expected RcvArray entries for the context.
1937 */
1938 max_entries = rcd->rcv_array_groups * dd->rcv_entries.group_size;
1939 egrtop = roundup(rcd->egrbufs.alloced, dd->rcv_entries.group_size);
1940 rcd->expected_count = max_entries - egrtop;
1941 if (rcd->expected_count > MAX_TID_PAIR_ENTRIES * 2)
1942 rcd->expected_count = MAX_TID_PAIR_ENTRIES * 2;
1943
1944 rcd->expected_base = rcd->eager_base + egrtop;
1945 hfi1_cdbg(PROC, "ctxt%u: eager:%u, exp:%u, egrbase:%u, expbase:%u",
1946 rcd->ctxt, rcd->egrbufs.alloced, rcd->expected_count,
1947 rcd->eager_base, rcd->expected_base);
1948
1949 if (!hfi1_rcvbuf_validate(rcd->egrbufs.rcvtid_size, PT_EAGER, &order)) {
1950 hfi1_cdbg(PROC,
1951 "ctxt%u: current Eager buffer size is invalid %u",
1952 rcd->ctxt, rcd->egrbufs.rcvtid_size);
1953 ret = -EINVAL;
1954 goto bail_rcvegrbuf_phys;
1955 }
1956
1957 for (idx = 0; idx < rcd->egrbufs.alloced; idx++) {
1958 hfi1_put_tid(dd, rcd->eager_base + idx, PT_EAGER,
1959 rcd->egrbufs.rcvtids[idx].dma, order);
1960 cond_resched();
1961 }
1962
1963 return 0;
1964
1965bail_rcvegrbuf_phys:
1966 for (idx = 0; idx < rcd->egrbufs.alloced &&
1967 rcd->egrbufs.buffers[idx].addr;
1968 idx++) {
1969 dma_free_coherent(&dd->pcidev->dev,
1970 rcd->egrbufs.buffers[idx].len,
1971 rcd->egrbufs.buffers[idx].addr,
1972 rcd->egrbufs.buffers[idx].dma);
1973 rcd->egrbufs.buffers[idx].addr = NULL;
1974 rcd->egrbufs.buffers[idx].dma = 0;
1975 rcd->egrbufs.buffers[idx].len = 0;
1976 }
1977
1978 return ret;
1979}
1/*
2 * Copyright(c) 2015-2017 Intel Corporation.
3 *
4 * This file is provided under a dual BSD/GPLv2 license. When using or
5 * redistributing this file, you may do so under either license.
6 *
7 * GPL LICENSE SUMMARY
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * BSD LICENSE
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 *
24 * - Redistributions of source code must retain the above copyright
25 * notice, this list of conditions and the following disclaimer.
26 * - Redistributions in binary form must reproduce the above copyright
27 * notice, this list of conditions and the following disclaimer in
28 * the documentation and/or other materials provided with the
29 * distribution.
30 * - Neither the name of Intel Corporation nor the names of its
31 * contributors may be used to endorse or promote products derived
32 * from this software without specific prior written permission.
33 *
34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45 *
46 */
47
48#include <linux/pci.h>
49#include <linux/netdevice.h>
50#include <linux/vmalloc.h>
51#include <linux/delay.h>
52#include <linux/idr.h>
53#include <linux/module.h>
54#include <linux/printk.h>
55#include <linux/hrtimer.h>
56#include <linux/bitmap.h>
57#include <rdma/rdma_vt.h>
58
59#include "hfi.h"
60#include "device.h"
61#include "common.h"
62#include "trace.h"
63#include "mad.h"
64#include "sdma.h"
65#include "debugfs.h"
66#include "verbs.h"
67#include "aspm.h"
68#include "affinity.h"
69#include "vnic.h"
70#include "exp_rcv.h"
71
72#undef pr_fmt
73#define pr_fmt(fmt) DRIVER_NAME ": " fmt
74
75#define HFI1_MAX_ACTIVE_WORKQUEUE_ENTRIES 5
76/*
77 * min buffers we want to have per context, after driver
78 */
79#define HFI1_MIN_USER_CTXT_BUFCNT 7
80
81#define HFI1_MIN_HDRQ_EGRBUF_CNT 2
82#define HFI1_MAX_HDRQ_EGRBUF_CNT 16352
83#define HFI1_MIN_EAGER_BUFFER_SIZE (4 * 1024) /* 4KB */
84#define HFI1_MAX_EAGER_BUFFER_SIZE (256 * 1024) /* 256KB */
85
86/*
87 * Number of user receive contexts we are configured to use (to allow for more
88 * pio buffers per ctxt, etc.) Zero means use one user context per CPU.
89 */
90int num_user_contexts = -1;
91module_param_named(num_user_contexts, num_user_contexts, int, 0444);
92MODULE_PARM_DESC(
93 num_user_contexts, "Set max number of user contexts to use (default: -1 will use the real (non-HT) CPU count)");
94
95uint krcvqs[RXE_NUM_DATA_VL];
96int krcvqsset;
97module_param_array(krcvqs, uint, &krcvqsset, S_IRUGO);
98MODULE_PARM_DESC(krcvqs, "Array of the number of non-control kernel receive queues by VL");
99
100/* computed based on above array */
101unsigned long n_krcvqs;
102
103static unsigned hfi1_rcvarr_split = 25;
104module_param_named(rcvarr_split, hfi1_rcvarr_split, uint, S_IRUGO);
105MODULE_PARM_DESC(rcvarr_split, "Percent of context's RcvArray entries used for Eager buffers");
106
107static uint eager_buffer_size = (8 << 20); /* 8MB */
108module_param(eager_buffer_size, uint, S_IRUGO);
109MODULE_PARM_DESC(eager_buffer_size, "Size of the eager buffers, default: 8MB");
110
111static uint rcvhdrcnt = 2048; /* 2x the max eager buffer count */
112module_param_named(rcvhdrcnt, rcvhdrcnt, uint, S_IRUGO);
113MODULE_PARM_DESC(rcvhdrcnt, "Receive header queue count (default 2048)");
114
115static uint hfi1_hdrq_entsize = 32;
116module_param_named(hdrq_entsize, hfi1_hdrq_entsize, uint, S_IRUGO);
117MODULE_PARM_DESC(hdrq_entsize, "Size of header queue entries: 2 - 8B, 16 - 64B (default), 32 - 128B");
118
119unsigned int user_credit_return_threshold = 33; /* default is 33% */
120module_param(user_credit_return_threshold, uint, S_IRUGO);
121MODULE_PARM_DESC(user_credit_return_threshold, "Credit return threshold for user send contexts, return when unreturned credits passes this many blocks (in percent of allocated blocks, 0 is off)");
122
123static inline u64 encode_rcv_header_entry_size(u16 size);
124
125static struct idr hfi1_unit_table;
126
127static int hfi1_create_kctxt(struct hfi1_devdata *dd,
128 struct hfi1_pportdata *ppd)
129{
130 struct hfi1_ctxtdata *rcd;
131 int ret;
132
133 /* Control context has to be always 0 */
134 BUILD_BUG_ON(HFI1_CTRL_CTXT != 0);
135
136 ret = hfi1_create_ctxtdata(ppd, dd->node, &rcd);
137 if (ret < 0) {
138 dd_dev_err(dd, "Kernel receive context allocation failed\n");
139 return ret;
140 }
141
142 /*
143 * Set up the kernel context flags here and now because they use
144 * default values for all receive side memories. User contexts will
145 * be handled as they are created.
146 */
147 rcd->flags = HFI1_CAP_KGET(MULTI_PKT_EGR) |
148 HFI1_CAP_KGET(NODROP_RHQ_FULL) |
149 HFI1_CAP_KGET(NODROP_EGR_FULL) |
150 HFI1_CAP_KGET(DMA_RTAIL);
151
152 /* Control context must use DMA_RTAIL */
153 if (rcd->ctxt == HFI1_CTRL_CTXT)
154 rcd->flags |= HFI1_CAP_DMA_RTAIL;
155 rcd->seq_cnt = 1;
156
157 rcd->sc = sc_alloc(dd, SC_ACK, rcd->rcvhdrqentsize, dd->node);
158 if (!rcd->sc) {
159 dd_dev_err(dd, "Kernel send context allocation failed\n");
160 return -ENOMEM;
161 }
162 hfi1_init_ctxt(rcd->sc);
163
164 return 0;
165}
166
167/*
168 * Create the receive context array and one or more kernel contexts
169 */
170int hfi1_create_kctxts(struct hfi1_devdata *dd)
171{
172 u16 i;
173 int ret;
174
175 dd->rcd = kcalloc_node(dd->num_rcv_contexts, sizeof(*dd->rcd),
176 GFP_KERNEL, dd->node);
177 if (!dd->rcd)
178 return -ENOMEM;
179
180 for (i = 0; i < dd->first_dyn_alloc_ctxt; ++i) {
181 ret = hfi1_create_kctxt(dd, dd->pport);
182 if (ret)
183 goto bail;
184 }
185
186 return 0;
187bail:
188 for (i = 0; dd->rcd && i < dd->first_dyn_alloc_ctxt; ++i)
189 hfi1_free_ctxt(dd->rcd[i]);
190
191 /* All the contexts should be freed, free the array */
192 kfree(dd->rcd);
193 dd->rcd = NULL;
194 return ret;
195}
196
197/*
198 * Helper routines for the receive context reference count (rcd and uctxt).
199 */
200static void hfi1_rcd_init(struct hfi1_ctxtdata *rcd)
201{
202 kref_init(&rcd->kref);
203}
204
205/**
206 * hfi1_rcd_free - When reference is zero clean up.
207 * @kref: pointer to an initialized rcd data structure
208 *
209 */
210static void hfi1_rcd_free(struct kref *kref)
211{
212 unsigned long flags;
213 struct hfi1_ctxtdata *rcd =
214 container_of(kref, struct hfi1_ctxtdata, kref);
215
216 hfi1_free_ctxtdata(rcd->dd, rcd);
217
218 spin_lock_irqsave(&rcd->dd->uctxt_lock, flags);
219 rcd->dd->rcd[rcd->ctxt] = NULL;
220 spin_unlock_irqrestore(&rcd->dd->uctxt_lock, flags);
221
222 kfree(rcd);
223}
224
225/**
226 * hfi1_rcd_put - decrement reference for rcd
227 * @rcd: pointer to an initialized rcd data structure
228 *
229 * Use this to put a reference after the init.
230 */
231int hfi1_rcd_put(struct hfi1_ctxtdata *rcd)
232{
233 if (rcd)
234 return kref_put(&rcd->kref, hfi1_rcd_free);
235
236 return 0;
237}
238
239/**
240 * hfi1_rcd_get - increment reference for rcd
241 * @rcd: pointer to an initialized rcd data structure
242 *
243 * Use this to get a reference after the init.
244 */
245void hfi1_rcd_get(struct hfi1_ctxtdata *rcd)
246{
247 kref_get(&rcd->kref);
248}
249
250/**
251 * allocate_rcd_index - allocate an rcd index from the rcd array
252 * @dd: pointer to a valid devdata structure
253 * @rcd: rcd data structure to assign
254 * @index: pointer to index that is allocated
255 *
256 * Find an empty index in the rcd array, and assign the given rcd to it.
257 * If the array is full, we are EBUSY.
258 *
259 */
260static int allocate_rcd_index(struct hfi1_devdata *dd,
261 struct hfi1_ctxtdata *rcd, u16 *index)
262{
263 unsigned long flags;
264 u16 ctxt;
265
266 spin_lock_irqsave(&dd->uctxt_lock, flags);
267 for (ctxt = 0; ctxt < dd->num_rcv_contexts; ctxt++)
268 if (!dd->rcd[ctxt])
269 break;
270
271 if (ctxt < dd->num_rcv_contexts) {
272 rcd->ctxt = ctxt;
273 dd->rcd[ctxt] = rcd;
274 hfi1_rcd_init(rcd);
275 }
276 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
277
278 if (ctxt >= dd->num_rcv_contexts)
279 return -EBUSY;
280
281 *index = ctxt;
282
283 return 0;
284}
285
286/**
287 * hfi1_rcd_get_by_index_safe - validate the ctxt index before accessing the
288 * array
289 * @dd: pointer to a valid devdata structure
290 * @ctxt: the index of an possilbe rcd
291 *
292 * This is a wrapper for hfi1_rcd_get_by_index() to validate that the given
293 * ctxt index is valid.
294 *
295 * The caller is responsible for making the _put().
296 *
297 */
298struct hfi1_ctxtdata *hfi1_rcd_get_by_index_safe(struct hfi1_devdata *dd,
299 u16 ctxt)
300{
301 if (ctxt < dd->num_rcv_contexts)
302 return hfi1_rcd_get_by_index(dd, ctxt);
303
304 return NULL;
305}
306
307/**
308 * hfi1_rcd_get_by_index
309 * @dd: pointer to a valid devdata structure
310 * @ctxt: the index of an possilbe rcd
311 *
312 * We need to protect access to the rcd array. If access is needed to
313 * one or more index, get the protecting spinlock and then increment the
314 * kref.
315 *
316 * The caller is responsible for making the _put().
317 *
318 */
319struct hfi1_ctxtdata *hfi1_rcd_get_by_index(struct hfi1_devdata *dd, u16 ctxt)
320{
321 unsigned long flags;
322 struct hfi1_ctxtdata *rcd = NULL;
323
324 spin_lock_irqsave(&dd->uctxt_lock, flags);
325 if (dd->rcd[ctxt]) {
326 rcd = dd->rcd[ctxt];
327 hfi1_rcd_get(rcd);
328 }
329 spin_unlock_irqrestore(&dd->uctxt_lock, flags);
330
331 return rcd;
332}
333
334/*
335 * Common code for user and kernel context create and setup.
336 * NOTE: the initial kref is done here (hf1_rcd_init()).
337 */
338int hfi1_create_ctxtdata(struct hfi1_pportdata *ppd, int numa,
339 struct hfi1_ctxtdata **context)
340{
341 struct hfi1_devdata *dd = ppd->dd;
342 struct hfi1_ctxtdata *rcd;
343 unsigned kctxt_ngroups = 0;
344 u32 base;
345
346 if (dd->rcv_entries.nctxt_extra >
347 dd->num_rcv_contexts - dd->first_dyn_alloc_ctxt)
348 kctxt_ngroups = (dd->rcv_entries.nctxt_extra -
349 (dd->num_rcv_contexts - dd->first_dyn_alloc_ctxt));
350 rcd = kzalloc_node(sizeof(*rcd), GFP_KERNEL, numa);
351 if (rcd) {
352 u32 rcvtids, max_entries;
353 u16 ctxt;
354 int ret;
355
356 ret = allocate_rcd_index(dd, rcd, &ctxt);
357 if (ret) {
358 *context = NULL;
359 kfree(rcd);
360 return ret;
361 }
362
363 INIT_LIST_HEAD(&rcd->qp_wait_list);
364 hfi1_exp_tid_group_init(&rcd->tid_group_list);
365 hfi1_exp_tid_group_init(&rcd->tid_used_list);
366 hfi1_exp_tid_group_init(&rcd->tid_full_list);
367 rcd->ppd = ppd;
368 rcd->dd = dd;
369 __set_bit(0, rcd->in_use_ctxts);
370 rcd->numa_id = numa;
371 rcd->rcv_array_groups = dd->rcv_entries.ngroups;
372
373 mutex_init(&rcd->exp_lock);
374
375 hfi1_cdbg(PROC, "setting up context %u\n", rcd->ctxt);
376
377 /*
378 * Calculate the context's RcvArray entry starting point.
379 * We do this here because we have to take into account all
380 * the RcvArray entries that previous context would have
381 * taken and we have to account for any extra groups assigned
382 * to the static (kernel) or dynamic (vnic/user) contexts.
383 */
384 if (ctxt < dd->first_dyn_alloc_ctxt) {
385 if (ctxt < kctxt_ngroups) {
386 base = ctxt * (dd->rcv_entries.ngroups + 1);
387 rcd->rcv_array_groups++;
388 } else {
389 base = kctxt_ngroups +
390 (ctxt * dd->rcv_entries.ngroups);
391 }
392 } else {
393 u16 ct = ctxt - dd->first_dyn_alloc_ctxt;
394
395 base = ((dd->n_krcv_queues * dd->rcv_entries.ngroups) +
396 kctxt_ngroups);
397 if (ct < dd->rcv_entries.nctxt_extra) {
398 base += ct * (dd->rcv_entries.ngroups + 1);
399 rcd->rcv_array_groups++;
400 } else {
401 base += dd->rcv_entries.nctxt_extra +
402 (ct * dd->rcv_entries.ngroups);
403 }
404 }
405 rcd->eager_base = base * dd->rcv_entries.group_size;
406
407 rcd->rcvhdrq_cnt = rcvhdrcnt;
408 rcd->rcvhdrqentsize = hfi1_hdrq_entsize;
409 /*
410 * Simple Eager buffer allocation: we have already pre-allocated
411 * the number of RcvArray entry groups. Each ctxtdata structure
412 * holds the number of groups for that context.
413 *
414 * To follow CSR requirements and maintain cacheline alignment,
415 * make sure all sizes and bases are multiples of group_size.
416 *
417 * The expected entry count is what is left after assigning
418 * eager.
419 */
420 max_entries = rcd->rcv_array_groups *
421 dd->rcv_entries.group_size;
422 rcvtids = ((max_entries * hfi1_rcvarr_split) / 100);
423 rcd->egrbufs.count = round_down(rcvtids,
424 dd->rcv_entries.group_size);
425 if (rcd->egrbufs.count > MAX_EAGER_ENTRIES) {
426 dd_dev_err(dd, "ctxt%u: requested too many RcvArray entries.\n",
427 rcd->ctxt);
428 rcd->egrbufs.count = MAX_EAGER_ENTRIES;
429 }
430 hfi1_cdbg(PROC,
431 "ctxt%u: max Eager buffer RcvArray entries: %u\n",
432 rcd->ctxt, rcd->egrbufs.count);
433
434 /*
435 * Allocate array that will hold the eager buffer accounting
436 * data.
437 * This will allocate the maximum possible buffer count based
438 * on the value of the RcvArray split parameter.
439 * The resulting value will be rounded down to the closest
440 * multiple of dd->rcv_entries.group_size.
441 */
442 rcd->egrbufs.buffers =
443 kcalloc_node(rcd->egrbufs.count,
444 sizeof(*rcd->egrbufs.buffers),
445 GFP_KERNEL, numa);
446 if (!rcd->egrbufs.buffers)
447 goto bail;
448 rcd->egrbufs.rcvtids =
449 kcalloc_node(rcd->egrbufs.count,
450 sizeof(*rcd->egrbufs.rcvtids),
451 GFP_KERNEL, numa);
452 if (!rcd->egrbufs.rcvtids)
453 goto bail;
454 rcd->egrbufs.size = eager_buffer_size;
455 /*
456 * The size of the buffers programmed into the RcvArray
457 * entries needs to be big enough to handle the highest
458 * MTU supported.
459 */
460 if (rcd->egrbufs.size < hfi1_max_mtu) {
461 rcd->egrbufs.size = __roundup_pow_of_two(hfi1_max_mtu);
462 hfi1_cdbg(PROC,
463 "ctxt%u: eager bufs size too small. Adjusting to %zu\n",
464 rcd->ctxt, rcd->egrbufs.size);
465 }
466 rcd->egrbufs.rcvtid_size = HFI1_MAX_EAGER_BUFFER_SIZE;
467
468 /* Applicable only for statically created kernel contexts */
469 if (ctxt < dd->first_dyn_alloc_ctxt) {
470 rcd->opstats = kzalloc_node(sizeof(*rcd->opstats),
471 GFP_KERNEL, numa);
472 if (!rcd->opstats)
473 goto bail;
474 }
475
476 *context = rcd;
477 return 0;
478 }
479
480bail:
481 *context = NULL;
482 hfi1_free_ctxt(rcd);
483 return -ENOMEM;
484}
485
486/**
487 * hfi1_free_ctxt
488 * @rcd: pointer to an initialized rcd data structure
489 *
490 * This wrapper is the free function that matches hfi1_create_ctxtdata().
491 * When a context is done being used (kernel or user), this function is called
492 * for the "final" put to match the kref init from hf1i_create_ctxtdata().
493 * Other users of the context do a get/put sequence to make sure that the
494 * structure isn't removed while in use.
495 */
496void hfi1_free_ctxt(struct hfi1_ctxtdata *rcd)
497{
498 hfi1_rcd_put(rcd);
499}
500
501/*
502 * Convert a receive header entry size that to the encoding used in the CSR.
503 *
504 * Return a zero if the given size is invalid.
505 */
506static inline u64 encode_rcv_header_entry_size(u16 size)
507{
508 /* there are only 3 valid receive header entry sizes */
509 if (size == 2)
510 return 1;
511 if (size == 16)
512 return 2;
513 else if (size == 32)
514 return 4;
515 return 0; /* invalid */
516}
517
518/*
519 * Select the largest ccti value over all SLs to determine the intra-
520 * packet gap for the link.
521 *
522 * called with cca_timer_lock held (to protect access to cca_timer
523 * array), and rcu_read_lock() (to protect access to cc_state).
524 */
525void set_link_ipg(struct hfi1_pportdata *ppd)
526{
527 struct hfi1_devdata *dd = ppd->dd;
528 struct cc_state *cc_state;
529 int i;
530 u16 cce, ccti_limit, max_ccti = 0;
531 u16 shift, mult;
532 u64 src;
533 u32 current_egress_rate; /* Mbits /sec */
534 u32 max_pkt_time;
535 /*
536 * max_pkt_time is the maximum packet egress time in units
537 * of the fabric clock period 1/(805 MHz).
538 */
539
540 cc_state = get_cc_state(ppd);
541
542 if (!cc_state)
543 /*
544 * This should _never_ happen - rcu_read_lock() is held,
545 * and set_link_ipg() should not be called if cc_state
546 * is NULL.
547 */
548 return;
549
550 for (i = 0; i < OPA_MAX_SLS; i++) {
551 u16 ccti = ppd->cca_timer[i].ccti;
552
553 if (ccti > max_ccti)
554 max_ccti = ccti;
555 }
556
557 ccti_limit = cc_state->cct.ccti_limit;
558 if (max_ccti > ccti_limit)
559 max_ccti = ccti_limit;
560
561 cce = cc_state->cct.entries[max_ccti].entry;
562 shift = (cce & 0xc000) >> 14;
563 mult = (cce & 0x3fff);
564
565 current_egress_rate = active_egress_rate(ppd);
566
567 max_pkt_time = egress_cycles(ppd->ibmaxlen, current_egress_rate);
568
569 src = (max_pkt_time >> shift) * mult;
570
571 src &= SEND_STATIC_RATE_CONTROL_CSR_SRC_RELOAD_SMASK;
572 src <<= SEND_STATIC_RATE_CONTROL_CSR_SRC_RELOAD_SHIFT;
573
574 write_csr(dd, SEND_STATIC_RATE_CONTROL, src);
575}
576
577static enum hrtimer_restart cca_timer_fn(struct hrtimer *t)
578{
579 struct cca_timer *cca_timer;
580 struct hfi1_pportdata *ppd;
581 int sl;
582 u16 ccti_timer, ccti_min;
583 struct cc_state *cc_state;
584 unsigned long flags;
585 enum hrtimer_restart ret = HRTIMER_NORESTART;
586
587 cca_timer = container_of(t, struct cca_timer, hrtimer);
588 ppd = cca_timer->ppd;
589 sl = cca_timer->sl;
590
591 rcu_read_lock();
592
593 cc_state = get_cc_state(ppd);
594
595 if (!cc_state) {
596 rcu_read_unlock();
597 return HRTIMER_NORESTART;
598 }
599
600 /*
601 * 1) decrement ccti for SL
602 * 2) calculate IPG for link (set_link_ipg())
603 * 3) restart timer, unless ccti is at min value
604 */
605
606 ccti_min = cc_state->cong_setting.entries[sl].ccti_min;
607 ccti_timer = cc_state->cong_setting.entries[sl].ccti_timer;
608
609 spin_lock_irqsave(&ppd->cca_timer_lock, flags);
610
611 if (cca_timer->ccti > ccti_min) {
612 cca_timer->ccti--;
613 set_link_ipg(ppd);
614 }
615
616 if (cca_timer->ccti > ccti_min) {
617 unsigned long nsec = 1024 * ccti_timer;
618 /* ccti_timer is in units of 1.024 usec */
619 hrtimer_forward_now(t, ns_to_ktime(nsec));
620 ret = HRTIMER_RESTART;
621 }
622
623 spin_unlock_irqrestore(&ppd->cca_timer_lock, flags);
624 rcu_read_unlock();
625 return ret;
626}
627
628/*
629 * Common code for initializing the physical port structure.
630 */
631void hfi1_init_pportdata(struct pci_dev *pdev, struct hfi1_pportdata *ppd,
632 struct hfi1_devdata *dd, u8 hw_pidx, u8 port)
633{
634 int i;
635 uint default_pkey_idx;
636 struct cc_state *cc_state;
637
638 ppd->dd = dd;
639 ppd->hw_pidx = hw_pidx;
640 ppd->port = port; /* IB port number, not index */
641 ppd->prev_link_width = LINK_WIDTH_DEFAULT;
642 /*
643 * There are C_VL_COUNT number of PortVLXmitWait counters.
644 * Adding 1 to C_VL_COUNT to include the PortXmitWait counter.
645 */
646 for (i = 0; i < C_VL_COUNT + 1; i++) {
647 ppd->port_vl_xmit_wait_last[i] = 0;
648 ppd->vl_xmit_flit_cnt[i] = 0;
649 }
650
651 default_pkey_idx = 1;
652
653 ppd->pkeys[default_pkey_idx] = DEFAULT_P_KEY;
654 ppd->part_enforce |= HFI1_PART_ENFORCE_IN;
655
656 if (loopback) {
657 hfi1_early_err(&pdev->dev,
658 "Faking data partition 0x8001 in idx %u\n",
659 !default_pkey_idx);
660 ppd->pkeys[!default_pkey_idx] = 0x8001;
661 }
662
663 INIT_WORK(&ppd->link_vc_work, handle_verify_cap);
664 INIT_WORK(&ppd->link_up_work, handle_link_up);
665 INIT_WORK(&ppd->link_down_work, handle_link_down);
666 INIT_WORK(&ppd->freeze_work, handle_freeze);
667 INIT_WORK(&ppd->link_downgrade_work, handle_link_downgrade);
668 INIT_WORK(&ppd->sma_message_work, handle_sma_message);
669 INIT_WORK(&ppd->link_bounce_work, handle_link_bounce);
670 INIT_DELAYED_WORK(&ppd->start_link_work, handle_start_link);
671 INIT_WORK(&ppd->linkstate_active_work, receive_interrupt_work);
672 INIT_WORK(&ppd->qsfp_info.qsfp_work, qsfp_event);
673
674 mutex_init(&ppd->hls_lock);
675 spin_lock_init(&ppd->qsfp_info.qsfp_lock);
676
677 ppd->qsfp_info.ppd = ppd;
678 ppd->sm_trap_qp = 0x0;
679 ppd->sa_qp = 0x1;
680
681 ppd->hfi1_wq = NULL;
682
683 spin_lock_init(&ppd->cca_timer_lock);
684
685 for (i = 0; i < OPA_MAX_SLS; i++) {
686 hrtimer_init(&ppd->cca_timer[i].hrtimer, CLOCK_MONOTONIC,
687 HRTIMER_MODE_REL);
688 ppd->cca_timer[i].ppd = ppd;
689 ppd->cca_timer[i].sl = i;
690 ppd->cca_timer[i].ccti = 0;
691 ppd->cca_timer[i].hrtimer.function = cca_timer_fn;
692 }
693
694 ppd->cc_max_table_entries = IB_CC_TABLE_CAP_DEFAULT;
695
696 spin_lock_init(&ppd->cc_state_lock);
697 spin_lock_init(&ppd->cc_log_lock);
698 cc_state = kzalloc(sizeof(*cc_state), GFP_KERNEL);
699 RCU_INIT_POINTER(ppd->cc_state, cc_state);
700 if (!cc_state)
701 goto bail;
702 return;
703
704bail:
705
706 hfi1_early_err(&pdev->dev,
707 "Congestion Control Agent disabled for port %d\n", port);
708}
709
710/*
711 * Do initialization for device that is only needed on
712 * first detect, not on resets.
713 */
714static int loadtime_init(struct hfi1_devdata *dd)
715{
716 return 0;
717}
718
719/**
720 * init_after_reset - re-initialize after a reset
721 * @dd: the hfi1_ib device
722 *
723 * sanity check at least some of the values after reset, and
724 * ensure no receive or transmit (explicitly, in case reset
725 * failed
726 */
727static int init_after_reset(struct hfi1_devdata *dd)
728{
729 int i;
730 struct hfi1_ctxtdata *rcd;
731 /*
732 * Ensure chip does no sends or receives, tail updates, or
733 * pioavail updates while we re-initialize. This is mostly
734 * for the driver data structures, not chip registers.
735 */
736 for (i = 0; i < dd->num_rcv_contexts; i++) {
737 rcd = hfi1_rcd_get_by_index(dd, i);
738 hfi1_rcvctrl(dd, HFI1_RCVCTRL_CTXT_DIS |
739 HFI1_RCVCTRL_INTRAVAIL_DIS |
740 HFI1_RCVCTRL_TAILUPD_DIS, rcd);
741 hfi1_rcd_put(rcd);
742 }
743 pio_send_control(dd, PSC_GLOBAL_DISABLE);
744 for (i = 0; i < dd->num_send_contexts; i++)
745 sc_disable(dd->send_contexts[i].sc);
746
747 return 0;
748}
749
750static void enable_chip(struct hfi1_devdata *dd)
751{
752 struct hfi1_ctxtdata *rcd;
753 u32 rcvmask;
754 u16 i;
755
756 /* enable PIO send */
757 pio_send_control(dd, PSC_GLOBAL_ENABLE);
758
759 /*
760 * Enable kernel ctxts' receive and receive interrupt.
761 * Other ctxts done as user opens and initializes them.
762 */
763 for (i = 0; i < dd->first_dyn_alloc_ctxt; ++i) {
764 rcd = hfi1_rcd_get_by_index(dd, i);
765 if (!rcd)
766 continue;
767 rcvmask = HFI1_RCVCTRL_CTXT_ENB | HFI1_RCVCTRL_INTRAVAIL_ENB;
768 rcvmask |= HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL) ?
769 HFI1_RCVCTRL_TAILUPD_ENB : HFI1_RCVCTRL_TAILUPD_DIS;
770 if (!HFI1_CAP_KGET_MASK(rcd->flags, MULTI_PKT_EGR))
771 rcvmask |= HFI1_RCVCTRL_ONE_PKT_EGR_ENB;
772 if (HFI1_CAP_KGET_MASK(rcd->flags, NODROP_RHQ_FULL))
773 rcvmask |= HFI1_RCVCTRL_NO_RHQ_DROP_ENB;
774 if (HFI1_CAP_KGET_MASK(rcd->flags, NODROP_EGR_FULL))
775 rcvmask |= HFI1_RCVCTRL_NO_EGR_DROP_ENB;
776 hfi1_rcvctrl(dd, rcvmask, rcd);
777 sc_enable(rcd->sc);
778 hfi1_rcd_put(rcd);
779 }
780}
781
782/**
783 * create_workqueues - create per port workqueues
784 * @dd: the hfi1_ib device
785 */
786static int create_workqueues(struct hfi1_devdata *dd)
787{
788 int pidx;
789 struct hfi1_pportdata *ppd;
790
791 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
792 ppd = dd->pport + pidx;
793 if (!ppd->hfi1_wq) {
794 ppd->hfi1_wq =
795 alloc_workqueue(
796 "hfi%d_%d",
797 WQ_SYSFS | WQ_HIGHPRI | WQ_CPU_INTENSIVE,
798 HFI1_MAX_ACTIVE_WORKQUEUE_ENTRIES,
799 dd->unit, pidx);
800 if (!ppd->hfi1_wq)
801 goto wq_error;
802 }
803 if (!ppd->link_wq) {
804 /*
805 * Make the link workqueue single-threaded to enforce
806 * serialization.
807 */
808 ppd->link_wq =
809 alloc_workqueue(
810 "hfi_link_%d_%d",
811 WQ_SYSFS | WQ_MEM_RECLAIM | WQ_UNBOUND,
812 1, /* max_active */
813 dd->unit, pidx);
814 if (!ppd->link_wq)
815 goto wq_error;
816 }
817 }
818 return 0;
819wq_error:
820 pr_err("alloc_workqueue failed for port %d\n", pidx + 1);
821 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
822 ppd = dd->pport + pidx;
823 if (ppd->hfi1_wq) {
824 destroy_workqueue(ppd->hfi1_wq);
825 ppd->hfi1_wq = NULL;
826 }
827 if (ppd->link_wq) {
828 destroy_workqueue(ppd->link_wq);
829 ppd->link_wq = NULL;
830 }
831 }
832 return -ENOMEM;
833}
834
835/**
836 * hfi1_init - do the actual initialization sequence on the chip
837 * @dd: the hfi1_ib device
838 * @reinit: re-initializing, so don't allocate new memory
839 *
840 * Do the actual initialization sequence on the chip. This is done
841 * both from the init routine called from the PCI infrastructure, and
842 * when we reset the chip, or detect that it was reset internally,
843 * or it's administratively re-enabled.
844 *
845 * Memory allocation here and in called routines is only done in
846 * the first case (reinit == 0). We have to be careful, because even
847 * without memory allocation, we need to re-write all the chip registers
848 * TIDs, etc. after the reset or enable has completed.
849 */
850int hfi1_init(struct hfi1_devdata *dd, int reinit)
851{
852 int ret = 0, pidx, lastfail = 0;
853 unsigned long len;
854 u16 i;
855 struct hfi1_ctxtdata *rcd;
856 struct hfi1_pportdata *ppd;
857
858 /* Set up recv low level handlers */
859 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_EXPECTED] =
860 kdeth_process_expected;
861 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_EAGER] =
862 kdeth_process_eager;
863 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_IB] = process_receive_ib;
864 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_ERROR] =
865 process_receive_error;
866 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_BYPASS] =
867 process_receive_bypass;
868 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_INVALID5] =
869 process_receive_invalid;
870 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_INVALID6] =
871 process_receive_invalid;
872 dd->normal_rhf_rcv_functions[RHF_RCV_TYPE_INVALID7] =
873 process_receive_invalid;
874 dd->rhf_rcv_function_map = dd->normal_rhf_rcv_functions;
875
876 /* Set up send low level handlers */
877 dd->process_pio_send = hfi1_verbs_send_pio;
878 dd->process_dma_send = hfi1_verbs_send_dma;
879 dd->pio_inline_send = pio_copy;
880 dd->process_vnic_dma_send = hfi1_vnic_send_dma;
881
882 if (is_ax(dd)) {
883 atomic_set(&dd->drop_packet, DROP_PACKET_ON);
884 dd->do_drop = 1;
885 } else {
886 atomic_set(&dd->drop_packet, DROP_PACKET_OFF);
887 dd->do_drop = 0;
888 }
889
890 /* make sure the link is not "up" */
891 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
892 ppd = dd->pport + pidx;
893 ppd->linkup = 0;
894 }
895
896 if (reinit)
897 ret = init_after_reset(dd);
898 else
899 ret = loadtime_init(dd);
900 if (ret)
901 goto done;
902
903 /* allocate dummy tail memory for all receive contexts */
904 dd->rcvhdrtail_dummy_kvaddr = dma_zalloc_coherent(
905 &dd->pcidev->dev, sizeof(u64),
906 &dd->rcvhdrtail_dummy_dma,
907 GFP_KERNEL);
908
909 if (!dd->rcvhdrtail_dummy_kvaddr) {
910 dd_dev_err(dd, "cannot allocate dummy tail memory\n");
911 ret = -ENOMEM;
912 goto done;
913 }
914
915 /* dd->rcd can be NULL if early initialization failed */
916 for (i = 0; dd->rcd && i < dd->first_dyn_alloc_ctxt; ++i) {
917 /*
918 * Set up the (kernel) rcvhdr queue and egr TIDs. If doing
919 * re-init, the simplest way to handle this is to free
920 * existing, and re-allocate.
921 * Need to re-create rest of ctxt 0 ctxtdata as well.
922 */
923 rcd = hfi1_rcd_get_by_index(dd, i);
924 if (!rcd)
925 continue;
926
927 rcd->do_interrupt = &handle_receive_interrupt;
928
929 lastfail = hfi1_create_rcvhdrq(dd, rcd);
930 if (!lastfail)
931 lastfail = hfi1_setup_eagerbufs(rcd);
932 if (lastfail) {
933 dd_dev_err(dd,
934 "failed to allocate kernel ctxt's rcvhdrq and/or egr bufs\n");
935 ret = lastfail;
936 }
937 hfi1_rcd_put(rcd);
938 }
939
940 /* Allocate enough memory for user event notification. */
941 len = PAGE_ALIGN(dd->chip_rcv_contexts * HFI1_MAX_SHARED_CTXTS *
942 sizeof(*dd->events));
943 dd->events = vmalloc_user(len);
944 if (!dd->events)
945 dd_dev_err(dd, "Failed to allocate user events page\n");
946 /*
947 * Allocate a page for device and port status.
948 * Page will be shared amongst all user processes.
949 */
950 dd->status = vmalloc_user(PAGE_SIZE);
951 if (!dd->status)
952 dd_dev_err(dd, "Failed to allocate dev status page\n");
953 else
954 dd->freezelen = PAGE_SIZE - (sizeof(*dd->status) -
955 sizeof(dd->status->freezemsg));
956 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
957 ppd = dd->pport + pidx;
958 if (dd->status)
959 /* Currently, we only have one port */
960 ppd->statusp = &dd->status->port;
961
962 set_mtu(ppd);
963 }
964
965 /* enable chip even if we have an error, so we can debug cause */
966 enable_chip(dd);
967
968done:
969 /*
970 * Set status even if port serdes is not initialized
971 * so that diags will work.
972 */
973 if (dd->status)
974 dd->status->dev |= HFI1_STATUS_CHIP_PRESENT |
975 HFI1_STATUS_INITTED;
976 if (!ret) {
977 /* enable all interrupts from the chip */
978 set_intr_state(dd, 1);
979
980 /* chip is OK for user apps; mark it as initialized */
981 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
982 ppd = dd->pport + pidx;
983
984 /*
985 * start the serdes - must be after interrupts are
986 * enabled so we are notified when the link goes up
987 */
988 lastfail = bringup_serdes(ppd);
989 if (lastfail)
990 dd_dev_info(dd,
991 "Failed to bring up port %u\n",
992 ppd->port);
993
994 /*
995 * Set status even if port serdes is not initialized
996 * so that diags will work.
997 */
998 if (ppd->statusp)
999 *ppd->statusp |= HFI1_STATUS_CHIP_PRESENT |
1000 HFI1_STATUS_INITTED;
1001 if (!ppd->link_speed_enabled)
1002 continue;
1003 }
1004 }
1005
1006 /* if ret is non-zero, we probably should do some cleanup here... */
1007 return ret;
1008}
1009
1010static inline struct hfi1_devdata *__hfi1_lookup(int unit)
1011{
1012 return idr_find(&hfi1_unit_table, unit);
1013}
1014
1015struct hfi1_devdata *hfi1_lookup(int unit)
1016{
1017 struct hfi1_devdata *dd;
1018 unsigned long flags;
1019
1020 spin_lock_irqsave(&hfi1_devs_lock, flags);
1021 dd = __hfi1_lookup(unit);
1022 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
1023
1024 return dd;
1025}
1026
1027/*
1028 * Stop the timers during unit shutdown, or after an error late
1029 * in initialization.
1030 */
1031static void stop_timers(struct hfi1_devdata *dd)
1032{
1033 struct hfi1_pportdata *ppd;
1034 int pidx;
1035
1036 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1037 ppd = dd->pport + pidx;
1038 if (ppd->led_override_timer.function) {
1039 del_timer_sync(&ppd->led_override_timer);
1040 atomic_set(&ppd->led_override_timer_active, 0);
1041 }
1042 }
1043}
1044
1045/**
1046 * shutdown_device - shut down a device
1047 * @dd: the hfi1_ib device
1048 *
1049 * This is called to make the device quiet when we are about to
1050 * unload the driver, and also when the device is administratively
1051 * disabled. It does not free any data structures.
1052 * Everything it does has to be setup again by hfi1_init(dd, 1)
1053 */
1054static void shutdown_device(struct hfi1_devdata *dd)
1055{
1056 struct hfi1_pportdata *ppd;
1057 struct hfi1_ctxtdata *rcd;
1058 unsigned pidx;
1059 int i;
1060
1061 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1062 ppd = dd->pport + pidx;
1063
1064 ppd->linkup = 0;
1065 if (ppd->statusp)
1066 *ppd->statusp &= ~(HFI1_STATUS_IB_CONF |
1067 HFI1_STATUS_IB_READY);
1068 }
1069 dd->flags &= ~HFI1_INITTED;
1070
1071 /* mask and clean up interrupts, but not errors */
1072 set_intr_state(dd, 0);
1073 hfi1_clean_up_interrupts(dd);
1074
1075 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1076 ppd = dd->pport + pidx;
1077 for (i = 0; i < dd->num_rcv_contexts; i++) {
1078 rcd = hfi1_rcd_get_by_index(dd, i);
1079 hfi1_rcvctrl(dd, HFI1_RCVCTRL_TAILUPD_DIS |
1080 HFI1_RCVCTRL_CTXT_DIS |
1081 HFI1_RCVCTRL_INTRAVAIL_DIS |
1082 HFI1_RCVCTRL_PKEY_DIS |
1083 HFI1_RCVCTRL_ONE_PKT_EGR_DIS, rcd);
1084 hfi1_rcd_put(rcd);
1085 }
1086 /*
1087 * Gracefully stop all sends allowing any in progress to
1088 * trickle out first.
1089 */
1090 for (i = 0; i < dd->num_send_contexts; i++)
1091 sc_flush(dd->send_contexts[i].sc);
1092 }
1093
1094 /*
1095 * Enough for anything that's going to trickle out to have actually
1096 * done so.
1097 */
1098 udelay(20);
1099
1100 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1101 ppd = dd->pport + pidx;
1102
1103 /* disable all contexts */
1104 for (i = 0; i < dd->num_send_contexts; i++)
1105 sc_disable(dd->send_contexts[i].sc);
1106 /* disable the send device */
1107 pio_send_control(dd, PSC_GLOBAL_DISABLE);
1108
1109 shutdown_led_override(ppd);
1110
1111 /*
1112 * Clear SerdesEnable.
1113 * We can't count on interrupts since we are stopping.
1114 */
1115 hfi1_quiet_serdes(ppd);
1116
1117 if (ppd->hfi1_wq) {
1118 destroy_workqueue(ppd->hfi1_wq);
1119 ppd->hfi1_wq = NULL;
1120 }
1121 if (ppd->link_wq) {
1122 destroy_workqueue(ppd->link_wq);
1123 ppd->link_wq = NULL;
1124 }
1125 }
1126 sdma_exit(dd);
1127}
1128
1129/**
1130 * hfi1_free_ctxtdata - free a context's allocated data
1131 * @dd: the hfi1_ib device
1132 * @rcd: the ctxtdata structure
1133 *
1134 * free up any allocated data for a context
1135 * It should never change any chip state, or global driver state.
1136 */
1137void hfi1_free_ctxtdata(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
1138{
1139 u32 e;
1140
1141 if (!rcd)
1142 return;
1143
1144 if (rcd->rcvhdrq) {
1145 dma_free_coherent(&dd->pcidev->dev, rcd->rcvhdrq_size,
1146 rcd->rcvhdrq, rcd->rcvhdrq_dma);
1147 rcd->rcvhdrq = NULL;
1148 if (rcd->rcvhdrtail_kvaddr) {
1149 dma_free_coherent(&dd->pcidev->dev, PAGE_SIZE,
1150 (void *)rcd->rcvhdrtail_kvaddr,
1151 rcd->rcvhdrqtailaddr_dma);
1152 rcd->rcvhdrtail_kvaddr = NULL;
1153 }
1154 }
1155
1156 /* all the RcvArray entries should have been cleared by now */
1157 kfree(rcd->egrbufs.rcvtids);
1158 rcd->egrbufs.rcvtids = NULL;
1159
1160 for (e = 0; e < rcd->egrbufs.alloced; e++) {
1161 if (rcd->egrbufs.buffers[e].dma)
1162 dma_free_coherent(&dd->pcidev->dev,
1163 rcd->egrbufs.buffers[e].len,
1164 rcd->egrbufs.buffers[e].addr,
1165 rcd->egrbufs.buffers[e].dma);
1166 }
1167 kfree(rcd->egrbufs.buffers);
1168 rcd->egrbufs.alloced = 0;
1169 rcd->egrbufs.buffers = NULL;
1170
1171 sc_free(rcd->sc);
1172 rcd->sc = NULL;
1173
1174 vfree(rcd->subctxt_uregbase);
1175 vfree(rcd->subctxt_rcvegrbuf);
1176 vfree(rcd->subctxt_rcvhdr_base);
1177 kfree(rcd->opstats);
1178
1179 rcd->subctxt_uregbase = NULL;
1180 rcd->subctxt_rcvegrbuf = NULL;
1181 rcd->subctxt_rcvhdr_base = NULL;
1182 rcd->opstats = NULL;
1183}
1184
1185/*
1186 * Release our hold on the shared asic data. If we are the last one,
1187 * return the structure to be finalized outside the lock. Must be
1188 * holding hfi1_devs_lock.
1189 */
1190static struct hfi1_asic_data *release_asic_data(struct hfi1_devdata *dd)
1191{
1192 struct hfi1_asic_data *ad;
1193 int other;
1194
1195 if (!dd->asic_data)
1196 return NULL;
1197 dd->asic_data->dds[dd->hfi1_id] = NULL;
1198 other = dd->hfi1_id ? 0 : 1;
1199 ad = dd->asic_data;
1200 dd->asic_data = NULL;
1201 /* return NULL if the other dd still has a link */
1202 return ad->dds[other] ? NULL : ad;
1203}
1204
1205static void finalize_asic_data(struct hfi1_devdata *dd,
1206 struct hfi1_asic_data *ad)
1207{
1208 clean_up_i2c(dd, ad);
1209 kfree(ad);
1210}
1211
1212/**
1213 * hfi1_clean_devdata - cleans up per-unit data structure
1214 * @dd: pointer to a valid devdata structure
1215 *
1216 * It cleans up all data structures set up by
1217 * by hfi1_alloc_devdata().
1218 */
1219static void hfi1_clean_devdata(struct hfi1_devdata *dd)
1220{
1221 struct hfi1_asic_data *ad;
1222 unsigned long flags;
1223
1224 spin_lock_irqsave(&hfi1_devs_lock, flags);
1225 if (!list_empty(&dd->list)) {
1226 idr_remove(&hfi1_unit_table, dd->unit);
1227 list_del_init(&dd->list);
1228 }
1229 ad = release_asic_data(dd);
1230 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
1231
1232 finalize_asic_data(dd, ad);
1233 free_platform_config(dd);
1234 rcu_barrier(); /* wait for rcu callbacks to complete */
1235 free_percpu(dd->int_counter);
1236 free_percpu(dd->rcv_limit);
1237 free_percpu(dd->send_schedule);
1238 free_percpu(dd->tx_opstats);
1239 dd->int_counter = NULL;
1240 dd->rcv_limit = NULL;
1241 dd->send_schedule = NULL;
1242 dd->tx_opstats = NULL;
1243 sdma_clean(dd, dd->num_sdma);
1244 rvt_dealloc_device(&dd->verbs_dev.rdi);
1245}
1246
1247static void __hfi1_free_devdata(struct kobject *kobj)
1248{
1249 struct hfi1_devdata *dd =
1250 container_of(kobj, struct hfi1_devdata, kobj);
1251
1252 hfi1_clean_devdata(dd);
1253}
1254
1255static struct kobj_type hfi1_devdata_type = {
1256 .release = __hfi1_free_devdata,
1257};
1258
1259void hfi1_free_devdata(struct hfi1_devdata *dd)
1260{
1261 kobject_put(&dd->kobj);
1262}
1263
1264/*
1265 * Allocate our primary per-unit data structure. Must be done via verbs
1266 * allocator, because the verbs cleanup process both does cleanup and
1267 * free of the data structure.
1268 * "extra" is for chip-specific data.
1269 *
1270 * Use the idr mechanism to get a unit number for this unit.
1271 */
1272struct hfi1_devdata *hfi1_alloc_devdata(struct pci_dev *pdev, size_t extra)
1273{
1274 unsigned long flags;
1275 struct hfi1_devdata *dd;
1276 int ret, nports;
1277
1278 /* extra is * number of ports */
1279 nports = extra / sizeof(struct hfi1_pportdata);
1280
1281 dd = (struct hfi1_devdata *)rvt_alloc_device(sizeof(*dd) + extra,
1282 nports);
1283 if (!dd)
1284 return ERR_PTR(-ENOMEM);
1285 dd->num_pports = nports;
1286 dd->pport = (struct hfi1_pportdata *)(dd + 1);
1287 dd->pcidev = pdev;
1288 pci_set_drvdata(pdev, dd);
1289
1290 INIT_LIST_HEAD(&dd->list);
1291 idr_preload(GFP_KERNEL);
1292 spin_lock_irqsave(&hfi1_devs_lock, flags);
1293
1294 ret = idr_alloc(&hfi1_unit_table, dd, 0, 0, GFP_NOWAIT);
1295 if (ret >= 0) {
1296 dd->unit = ret;
1297 list_add(&dd->list, &hfi1_dev_list);
1298 }
1299
1300 spin_unlock_irqrestore(&hfi1_devs_lock, flags);
1301 idr_preload_end();
1302
1303 if (ret < 0) {
1304 hfi1_early_err(&pdev->dev,
1305 "Could not allocate unit ID: error %d\n", -ret);
1306 goto bail;
1307 }
1308 rvt_set_ibdev_name(&dd->verbs_dev.rdi, "%s_%d", class_name(), dd->unit);
1309
1310 /*
1311 * Initialize all locks for the device. This needs to be as early as
1312 * possible so locks are usable.
1313 */
1314 spin_lock_init(&dd->sc_lock);
1315 spin_lock_init(&dd->sendctrl_lock);
1316 spin_lock_init(&dd->rcvctrl_lock);
1317 spin_lock_init(&dd->uctxt_lock);
1318 spin_lock_init(&dd->hfi1_diag_trans_lock);
1319 spin_lock_init(&dd->sc_init_lock);
1320 spin_lock_init(&dd->dc8051_memlock);
1321 seqlock_init(&dd->sc2vl_lock);
1322 spin_lock_init(&dd->sde_map_lock);
1323 spin_lock_init(&dd->pio_map_lock);
1324 mutex_init(&dd->dc8051_lock);
1325 init_waitqueue_head(&dd->event_queue);
1326
1327 dd->int_counter = alloc_percpu(u64);
1328 if (!dd->int_counter) {
1329 ret = -ENOMEM;
1330 goto bail;
1331 }
1332
1333 dd->rcv_limit = alloc_percpu(u64);
1334 if (!dd->rcv_limit) {
1335 ret = -ENOMEM;
1336 goto bail;
1337 }
1338
1339 dd->send_schedule = alloc_percpu(u64);
1340 if (!dd->send_schedule) {
1341 ret = -ENOMEM;
1342 goto bail;
1343 }
1344
1345 dd->tx_opstats = alloc_percpu(struct hfi1_opcode_stats_perctx);
1346 if (!dd->tx_opstats) {
1347 ret = -ENOMEM;
1348 goto bail;
1349 }
1350
1351 kobject_init(&dd->kobj, &hfi1_devdata_type);
1352 return dd;
1353
1354bail:
1355 hfi1_clean_devdata(dd);
1356 return ERR_PTR(ret);
1357}
1358
1359/*
1360 * Called from freeze mode handlers, and from PCI error
1361 * reporting code. Should be paranoid about state of
1362 * system and data structures.
1363 */
1364void hfi1_disable_after_error(struct hfi1_devdata *dd)
1365{
1366 if (dd->flags & HFI1_INITTED) {
1367 u32 pidx;
1368
1369 dd->flags &= ~HFI1_INITTED;
1370 if (dd->pport)
1371 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1372 struct hfi1_pportdata *ppd;
1373
1374 ppd = dd->pport + pidx;
1375 if (dd->flags & HFI1_PRESENT)
1376 set_link_state(ppd, HLS_DN_DISABLE);
1377
1378 if (ppd->statusp)
1379 *ppd->statusp &= ~HFI1_STATUS_IB_READY;
1380 }
1381 }
1382
1383 /*
1384 * Mark as having had an error for driver, and also
1385 * for /sys and status word mapped to user programs.
1386 * This marks unit as not usable, until reset.
1387 */
1388 if (dd->status)
1389 dd->status->dev |= HFI1_STATUS_HWERROR;
1390}
1391
1392static void remove_one(struct pci_dev *);
1393static int init_one(struct pci_dev *, const struct pci_device_id *);
1394
1395#define DRIVER_LOAD_MSG "Intel " DRIVER_NAME " loaded: "
1396#define PFX DRIVER_NAME ": "
1397
1398const struct pci_device_id hfi1_pci_tbl[] = {
1399 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL0) },
1400 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL1) },
1401 { 0, }
1402};
1403
1404MODULE_DEVICE_TABLE(pci, hfi1_pci_tbl);
1405
1406static struct pci_driver hfi1_pci_driver = {
1407 .name = DRIVER_NAME,
1408 .probe = init_one,
1409 .remove = remove_one,
1410 .id_table = hfi1_pci_tbl,
1411 .err_handler = &hfi1_pci_err_handler,
1412};
1413
1414static void __init compute_krcvqs(void)
1415{
1416 int i;
1417
1418 for (i = 0; i < krcvqsset; i++)
1419 n_krcvqs += krcvqs[i];
1420}
1421
1422/*
1423 * Do all the generic driver unit- and chip-independent memory
1424 * allocation and initialization.
1425 */
1426static int __init hfi1_mod_init(void)
1427{
1428 int ret;
1429
1430 ret = dev_init();
1431 if (ret)
1432 goto bail;
1433
1434 ret = node_affinity_init();
1435 if (ret)
1436 goto bail;
1437
1438 /* validate max MTU before any devices start */
1439 if (!valid_opa_max_mtu(hfi1_max_mtu)) {
1440 pr_err("Invalid max_mtu 0x%x, using 0x%x instead\n",
1441 hfi1_max_mtu, HFI1_DEFAULT_MAX_MTU);
1442 hfi1_max_mtu = HFI1_DEFAULT_MAX_MTU;
1443 }
1444 /* valid CUs run from 1-128 in powers of 2 */
1445 if (hfi1_cu > 128 || !is_power_of_2(hfi1_cu))
1446 hfi1_cu = 1;
1447 /* valid credit return threshold is 0-100, variable is unsigned */
1448 if (user_credit_return_threshold > 100)
1449 user_credit_return_threshold = 100;
1450
1451 compute_krcvqs();
1452 /*
1453 * sanitize receive interrupt count, time must wait until after
1454 * the hardware type is known
1455 */
1456 if (rcv_intr_count > RCV_HDR_HEAD_COUNTER_MASK)
1457 rcv_intr_count = RCV_HDR_HEAD_COUNTER_MASK;
1458 /* reject invalid combinations */
1459 if (rcv_intr_count == 0 && rcv_intr_timeout == 0) {
1460 pr_err("Invalid mode: both receive interrupt count and available timeout are zero - setting interrupt count to 1\n");
1461 rcv_intr_count = 1;
1462 }
1463 if (rcv_intr_count > 1 && rcv_intr_timeout == 0) {
1464 /*
1465 * Avoid indefinite packet delivery by requiring a timeout
1466 * if count is > 1.
1467 */
1468 pr_err("Invalid mode: receive interrupt count greater than 1 and available timeout is zero - setting available timeout to 1\n");
1469 rcv_intr_timeout = 1;
1470 }
1471 if (rcv_intr_dynamic && !(rcv_intr_count > 1 && rcv_intr_timeout > 0)) {
1472 /*
1473 * The dynamic algorithm expects a non-zero timeout
1474 * and a count > 1.
1475 */
1476 pr_err("Invalid mode: dynamic receive interrupt mitigation with invalid count and timeout - turning dynamic off\n");
1477 rcv_intr_dynamic = 0;
1478 }
1479
1480 /* sanitize link CRC options */
1481 link_crc_mask &= SUPPORTED_CRCS;
1482
1483 /*
1484 * These must be called before the driver is registered with
1485 * the PCI subsystem.
1486 */
1487 idr_init(&hfi1_unit_table);
1488
1489 hfi1_dbg_init();
1490 ret = hfi1_wss_init();
1491 if (ret < 0)
1492 goto bail_wss;
1493 ret = pci_register_driver(&hfi1_pci_driver);
1494 if (ret < 0) {
1495 pr_err("Unable to register driver: error %d\n", -ret);
1496 goto bail_dev;
1497 }
1498 goto bail; /* all OK */
1499
1500bail_dev:
1501 hfi1_wss_exit();
1502bail_wss:
1503 hfi1_dbg_exit();
1504 idr_destroy(&hfi1_unit_table);
1505 dev_cleanup();
1506bail:
1507 return ret;
1508}
1509
1510module_init(hfi1_mod_init);
1511
1512/*
1513 * Do the non-unit driver cleanup, memory free, etc. at unload.
1514 */
1515static void __exit hfi1_mod_cleanup(void)
1516{
1517 pci_unregister_driver(&hfi1_pci_driver);
1518 node_affinity_destroy();
1519 hfi1_wss_exit();
1520 hfi1_dbg_exit();
1521
1522 idr_destroy(&hfi1_unit_table);
1523 dispose_firmware(); /* asymmetric with obtain_firmware() */
1524 dev_cleanup();
1525}
1526
1527module_exit(hfi1_mod_cleanup);
1528
1529/* this can only be called after a successful initialization */
1530static void cleanup_device_data(struct hfi1_devdata *dd)
1531{
1532 int ctxt;
1533 int pidx;
1534
1535 /* users can't do anything more with chip */
1536 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1537 struct hfi1_pportdata *ppd = &dd->pport[pidx];
1538 struct cc_state *cc_state;
1539 int i;
1540
1541 if (ppd->statusp)
1542 *ppd->statusp &= ~HFI1_STATUS_CHIP_PRESENT;
1543
1544 for (i = 0; i < OPA_MAX_SLS; i++)
1545 hrtimer_cancel(&ppd->cca_timer[i].hrtimer);
1546
1547 spin_lock(&ppd->cc_state_lock);
1548 cc_state = get_cc_state_protected(ppd);
1549 RCU_INIT_POINTER(ppd->cc_state, NULL);
1550 spin_unlock(&ppd->cc_state_lock);
1551
1552 if (cc_state)
1553 kfree_rcu(cc_state, rcu);
1554 }
1555
1556 free_credit_return(dd);
1557
1558 if (dd->rcvhdrtail_dummy_kvaddr) {
1559 dma_free_coherent(&dd->pcidev->dev, sizeof(u64),
1560 (void *)dd->rcvhdrtail_dummy_kvaddr,
1561 dd->rcvhdrtail_dummy_dma);
1562 dd->rcvhdrtail_dummy_kvaddr = NULL;
1563 }
1564
1565 /*
1566 * Free any resources still in use (usually just kernel contexts)
1567 * at unload; we do for ctxtcnt, because that's what we allocate.
1568 */
1569 for (ctxt = 0; dd->rcd && ctxt < dd->num_rcv_contexts; ctxt++) {
1570 struct hfi1_ctxtdata *rcd = dd->rcd[ctxt];
1571
1572 if (rcd) {
1573 hfi1_clear_tids(rcd);
1574 hfi1_free_ctxt(rcd);
1575 }
1576 }
1577
1578 kfree(dd->rcd);
1579 dd->rcd = NULL;
1580
1581 free_pio_map(dd);
1582 /* must follow rcv context free - need to remove rcv's hooks */
1583 for (ctxt = 0; ctxt < dd->num_send_contexts; ctxt++)
1584 sc_free(dd->send_contexts[ctxt].sc);
1585 dd->num_send_contexts = 0;
1586 kfree(dd->send_contexts);
1587 dd->send_contexts = NULL;
1588 kfree(dd->hw_to_sw);
1589 dd->hw_to_sw = NULL;
1590 kfree(dd->boardname);
1591 vfree(dd->events);
1592 vfree(dd->status);
1593}
1594
1595/*
1596 * Clean up on unit shutdown, or error during unit load after
1597 * successful initialization.
1598 */
1599static void postinit_cleanup(struct hfi1_devdata *dd)
1600{
1601 hfi1_start_cleanup(dd);
1602
1603 hfi1_pcie_ddcleanup(dd);
1604 hfi1_pcie_cleanup(dd->pcidev);
1605
1606 cleanup_device_data(dd);
1607
1608 hfi1_free_devdata(dd);
1609}
1610
1611static int init_validate_rcvhdrcnt(struct device *dev, uint thecnt)
1612{
1613 if (thecnt <= HFI1_MIN_HDRQ_EGRBUF_CNT) {
1614 hfi1_early_err(dev, "Receive header queue count too small\n");
1615 return -EINVAL;
1616 }
1617
1618 if (thecnt > HFI1_MAX_HDRQ_EGRBUF_CNT) {
1619 hfi1_early_err(dev,
1620 "Receive header queue count cannot be greater than %u\n",
1621 HFI1_MAX_HDRQ_EGRBUF_CNT);
1622 return -EINVAL;
1623 }
1624
1625 if (thecnt % HDRQ_INCREMENT) {
1626 hfi1_early_err(dev, "Receive header queue count %d must be divisible by %lu\n",
1627 thecnt, HDRQ_INCREMENT);
1628 return -EINVAL;
1629 }
1630
1631 return 0;
1632}
1633
1634static int init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
1635{
1636 int ret = 0, j, pidx, initfail;
1637 struct hfi1_devdata *dd;
1638 struct hfi1_pportdata *ppd;
1639
1640 /* First, lock the non-writable module parameters */
1641 HFI1_CAP_LOCK();
1642
1643 /* Validate dev ids */
1644 if (!(ent->device == PCI_DEVICE_ID_INTEL0 ||
1645 ent->device == PCI_DEVICE_ID_INTEL1)) {
1646 hfi1_early_err(&pdev->dev,
1647 "Failing on unknown Intel deviceid 0x%x\n",
1648 ent->device);
1649 ret = -ENODEV;
1650 goto bail;
1651 }
1652
1653 /* Validate some global module parameters */
1654 ret = init_validate_rcvhdrcnt(&pdev->dev, rcvhdrcnt);
1655 if (ret)
1656 goto bail;
1657
1658 /* use the encoding function as a sanitization check */
1659 if (!encode_rcv_header_entry_size(hfi1_hdrq_entsize)) {
1660 hfi1_early_err(&pdev->dev, "Invalid HdrQ Entry size %u\n",
1661 hfi1_hdrq_entsize);
1662 ret = -EINVAL;
1663 goto bail;
1664 }
1665
1666 /* The receive eager buffer size must be set before the receive
1667 * contexts are created.
1668 *
1669 * Set the eager buffer size. Validate that it falls in a range
1670 * allowed by the hardware - all powers of 2 between the min and
1671 * max. The maximum valid MTU is within the eager buffer range
1672 * so we do not need to cap the max_mtu by an eager buffer size
1673 * setting.
1674 */
1675 if (eager_buffer_size) {
1676 if (!is_power_of_2(eager_buffer_size))
1677 eager_buffer_size =
1678 roundup_pow_of_two(eager_buffer_size);
1679 eager_buffer_size =
1680 clamp_val(eager_buffer_size,
1681 MIN_EAGER_BUFFER * 8,
1682 MAX_EAGER_BUFFER_TOTAL);
1683 hfi1_early_info(&pdev->dev, "Eager buffer size %u\n",
1684 eager_buffer_size);
1685 } else {
1686 hfi1_early_err(&pdev->dev, "Invalid Eager buffer size of 0\n");
1687 ret = -EINVAL;
1688 goto bail;
1689 }
1690
1691 /* restrict value of hfi1_rcvarr_split */
1692 hfi1_rcvarr_split = clamp_val(hfi1_rcvarr_split, 0, 100);
1693
1694 ret = hfi1_pcie_init(pdev, ent);
1695 if (ret)
1696 goto bail;
1697
1698 /*
1699 * Do device-specific initialization, function table setup, dd
1700 * allocation, etc.
1701 */
1702 dd = hfi1_init_dd(pdev, ent);
1703
1704 if (IS_ERR(dd)) {
1705 ret = PTR_ERR(dd);
1706 goto clean_bail; /* error already printed */
1707 }
1708
1709 ret = create_workqueues(dd);
1710 if (ret)
1711 goto clean_bail;
1712
1713 /* do the generic initialization */
1714 initfail = hfi1_init(dd, 0);
1715
1716 /* setup vnic */
1717 hfi1_vnic_setup(dd);
1718
1719 ret = hfi1_register_ib_device(dd);
1720
1721 /*
1722 * Now ready for use. this should be cleared whenever we
1723 * detect a reset, or initiate one. If earlier failure,
1724 * we still create devices, so diags, etc. can be used
1725 * to determine cause of problem.
1726 */
1727 if (!initfail && !ret) {
1728 dd->flags |= HFI1_INITTED;
1729 /* create debufs files after init and ib register */
1730 hfi1_dbg_ibdev_init(&dd->verbs_dev);
1731 }
1732
1733 j = hfi1_device_create(dd);
1734 if (j)
1735 dd_dev_err(dd, "Failed to create /dev devices: %d\n", -j);
1736
1737 if (initfail || ret) {
1738 hfi1_clean_up_interrupts(dd);
1739 stop_timers(dd);
1740 flush_workqueue(ib_wq);
1741 for (pidx = 0; pidx < dd->num_pports; ++pidx) {
1742 hfi1_quiet_serdes(dd->pport + pidx);
1743 ppd = dd->pport + pidx;
1744 if (ppd->hfi1_wq) {
1745 destroy_workqueue(ppd->hfi1_wq);
1746 ppd->hfi1_wq = NULL;
1747 }
1748 if (ppd->link_wq) {
1749 destroy_workqueue(ppd->link_wq);
1750 ppd->link_wq = NULL;
1751 }
1752 }
1753 if (!j)
1754 hfi1_device_remove(dd);
1755 if (!ret)
1756 hfi1_unregister_ib_device(dd);
1757 hfi1_vnic_cleanup(dd);
1758 postinit_cleanup(dd);
1759 if (initfail)
1760 ret = initfail;
1761 goto bail; /* everything already cleaned */
1762 }
1763
1764 sdma_start(dd);
1765
1766 return 0;
1767
1768clean_bail:
1769 hfi1_pcie_cleanup(pdev);
1770bail:
1771 return ret;
1772}
1773
1774static void wait_for_clients(struct hfi1_devdata *dd)
1775{
1776 /*
1777 * Remove the device init value and complete the device if there is
1778 * no clients or wait for active clients to finish.
1779 */
1780 if (atomic_dec_and_test(&dd->user_refcount))
1781 complete(&dd->user_comp);
1782
1783 wait_for_completion(&dd->user_comp);
1784}
1785
1786static void remove_one(struct pci_dev *pdev)
1787{
1788 struct hfi1_devdata *dd = pci_get_drvdata(pdev);
1789
1790 /* close debugfs files before ib unregister */
1791 hfi1_dbg_ibdev_exit(&dd->verbs_dev);
1792
1793 /* remove the /dev hfi1 interface */
1794 hfi1_device_remove(dd);
1795
1796 /* wait for existing user space clients to finish */
1797 wait_for_clients(dd);
1798
1799 /* unregister from IB core */
1800 hfi1_unregister_ib_device(dd);
1801
1802 /* cleanup vnic */
1803 hfi1_vnic_cleanup(dd);
1804
1805 /*
1806 * Disable the IB link, disable interrupts on the device,
1807 * clear dma engines, etc.
1808 */
1809 shutdown_device(dd);
1810
1811 stop_timers(dd);
1812
1813 /* wait until all of our (qsfp) queue_work() calls complete */
1814 flush_workqueue(ib_wq);
1815
1816 postinit_cleanup(dd);
1817}
1818
1819/**
1820 * hfi1_create_rcvhdrq - create a receive header queue
1821 * @dd: the hfi1_ib device
1822 * @rcd: the context data
1823 *
1824 * This must be contiguous memory (from an i/o perspective), and must be
1825 * DMA'able (which means for some systems, it will go through an IOMMU,
1826 * or be forced into a low address range).
1827 */
1828int hfi1_create_rcvhdrq(struct hfi1_devdata *dd, struct hfi1_ctxtdata *rcd)
1829{
1830 unsigned amt;
1831 u64 reg;
1832
1833 if (!rcd->rcvhdrq) {
1834 dma_addr_t dma_hdrqtail;
1835 gfp_t gfp_flags;
1836
1837 /*
1838 * rcvhdrqentsize is in DWs, so we have to convert to bytes
1839 * (* sizeof(u32)).
1840 */
1841 amt = PAGE_ALIGN(rcd->rcvhdrq_cnt * rcd->rcvhdrqentsize *
1842 sizeof(u32));
1843
1844 if (rcd->ctxt < dd->first_dyn_alloc_ctxt || rcd->is_vnic)
1845 gfp_flags = GFP_KERNEL;
1846 else
1847 gfp_flags = GFP_USER;
1848 rcd->rcvhdrq = dma_zalloc_coherent(
1849 &dd->pcidev->dev, amt, &rcd->rcvhdrq_dma,
1850 gfp_flags | __GFP_COMP);
1851
1852 if (!rcd->rcvhdrq) {
1853 dd_dev_err(dd,
1854 "attempt to allocate %d bytes for ctxt %u rcvhdrq failed\n",
1855 amt, rcd->ctxt);
1856 goto bail;
1857 }
1858
1859 if (HFI1_CAP_KGET_MASK(rcd->flags, DMA_RTAIL)) {
1860 rcd->rcvhdrtail_kvaddr = dma_zalloc_coherent(
1861 &dd->pcidev->dev, PAGE_SIZE, &dma_hdrqtail,
1862 gfp_flags);
1863 if (!rcd->rcvhdrtail_kvaddr)
1864 goto bail_free;
1865 rcd->rcvhdrqtailaddr_dma = dma_hdrqtail;
1866 }
1867
1868 rcd->rcvhdrq_size = amt;
1869 }
1870 /*
1871 * These values are per-context:
1872 * RcvHdrCnt
1873 * RcvHdrEntSize
1874 * RcvHdrSize
1875 */
1876 reg = ((u64)(rcd->rcvhdrq_cnt >> HDRQ_SIZE_SHIFT)
1877 & RCV_HDR_CNT_CNT_MASK)
1878 << RCV_HDR_CNT_CNT_SHIFT;
1879 write_kctxt_csr(dd, rcd->ctxt, RCV_HDR_CNT, reg);
1880 reg = (encode_rcv_header_entry_size(rcd->rcvhdrqentsize)
1881 & RCV_HDR_ENT_SIZE_ENT_SIZE_MASK)
1882 << RCV_HDR_ENT_SIZE_ENT_SIZE_SHIFT;
1883 write_kctxt_csr(dd, rcd->ctxt, RCV_HDR_ENT_SIZE, reg);
1884 reg = (dd->rcvhdrsize & RCV_HDR_SIZE_HDR_SIZE_MASK)
1885 << RCV_HDR_SIZE_HDR_SIZE_SHIFT;
1886 write_kctxt_csr(dd, rcd->ctxt, RCV_HDR_SIZE, reg);
1887
1888 /*
1889 * Program dummy tail address for every receive context
1890 * before enabling any receive context
1891 */
1892 write_kctxt_csr(dd, rcd->ctxt, RCV_HDR_TAIL_ADDR,
1893 dd->rcvhdrtail_dummy_dma);
1894
1895 return 0;
1896
1897bail_free:
1898 dd_dev_err(dd,
1899 "attempt to allocate 1 page for ctxt %u rcvhdrqtailaddr failed\n",
1900 rcd->ctxt);
1901 dma_free_coherent(&dd->pcidev->dev, amt, rcd->rcvhdrq,
1902 rcd->rcvhdrq_dma);
1903 rcd->rcvhdrq = NULL;
1904bail:
1905 return -ENOMEM;
1906}
1907
1908/**
1909 * allocate eager buffers, both kernel and user contexts.
1910 * @rcd: the context we are setting up.
1911 *
1912 * Allocate the eager TID buffers and program them into hip.
1913 * They are no longer completely contiguous, we do multiple allocation
1914 * calls. Otherwise we get the OOM code involved, by asking for too
1915 * much per call, with disastrous results on some kernels.
1916 */
1917int hfi1_setup_eagerbufs(struct hfi1_ctxtdata *rcd)
1918{
1919 struct hfi1_devdata *dd = rcd->dd;
1920 u32 max_entries, egrtop, alloced_bytes = 0, idx = 0;
1921 gfp_t gfp_flags;
1922 u16 order;
1923 int ret = 0;
1924 u16 round_mtu = roundup_pow_of_two(hfi1_max_mtu);
1925
1926 /*
1927 * GFP_USER, but without GFP_FS, so buffer cache can be
1928 * coalesced (we hope); otherwise, even at order 4,
1929 * heavy filesystem activity makes these fail, and we can
1930 * use compound pages.
1931 */
1932 gfp_flags = __GFP_RECLAIM | __GFP_IO | __GFP_COMP;
1933
1934 /*
1935 * The minimum size of the eager buffers is a groups of MTU-sized
1936 * buffers.
1937 * The global eager_buffer_size parameter is checked against the
1938 * theoretical lower limit of the value. Here, we check against the
1939 * MTU.
1940 */
1941 if (rcd->egrbufs.size < (round_mtu * dd->rcv_entries.group_size))
1942 rcd->egrbufs.size = round_mtu * dd->rcv_entries.group_size;
1943 /*
1944 * If using one-pkt-per-egr-buffer, lower the eager buffer
1945 * size to the max MTU (page-aligned).
1946 */
1947 if (!HFI1_CAP_KGET_MASK(rcd->flags, MULTI_PKT_EGR))
1948 rcd->egrbufs.rcvtid_size = round_mtu;
1949
1950 /*
1951 * Eager buffers sizes of 1MB or less require smaller TID sizes
1952 * to satisfy the "multiple of 8 RcvArray entries" requirement.
1953 */
1954 if (rcd->egrbufs.size <= (1 << 20))
1955 rcd->egrbufs.rcvtid_size = max((unsigned long)round_mtu,
1956 rounddown_pow_of_two(rcd->egrbufs.size / 8));
1957
1958 while (alloced_bytes < rcd->egrbufs.size &&
1959 rcd->egrbufs.alloced < rcd->egrbufs.count) {
1960 rcd->egrbufs.buffers[idx].addr =
1961 dma_zalloc_coherent(&dd->pcidev->dev,
1962 rcd->egrbufs.rcvtid_size,
1963 &rcd->egrbufs.buffers[idx].dma,
1964 gfp_flags);
1965 if (rcd->egrbufs.buffers[idx].addr) {
1966 rcd->egrbufs.buffers[idx].len =
1967 rcd->egrbufs.rcvtid_size;
1968 rcd->egrbufs.rcvtids[rcd->egrbufs.alloced].addr =
1969 rcd->egrbufs.buffers[idx].addr;
1970 rcd->egrbufs.rcvtids[rcd->egrbufs.alloced].dma =
1971 rcd->egrbufs.buffers[idx].dma;
1972 rcd->egrbufs.alloced++;
1973 alloced_bytes += rcd->egrbufs.rcvtid_size;
1974 idx++;
1975 } else {
1976 u32 new_size, i, j;
1977 u64 offset = 0;
1978
1979 /*
1980 * Fail the eager buffer allocation if:
1981 * - we are already using the lowest acceptable size
1982 * - we are using one-pkt-per-egr-buffer (this implies
1983 * that we are accepting only one size)
1984 */
1985 if (rcd->egrbufs.rcvtid_size == round_mtu ||
1986 !HFI1_CAP_KGET_MASK(rcd->flags, MULTI_PKT_EGR)) {
1987 dd_dev_err(dd, "ctxt%u: Failed to allocate eager buffers\n",
1988 rcd->ctxt);
1989 ret = -ENOMEM;
1990 goto bail_rcvegrbuf_phys;
1991 }
1992
1993 new_size = rcd->egrbufs.rcvtid_size / 2;
1994
1995 /*
1996 * If the first attempt to allocate memory failed, don't
1997 * fail everything but continue with the next lower
1998 * size.
1999 */
2000 if (idx == 0) {
2001 rcd->egrbufs.rcvtid_size = new_size;
2002 continue;
2003 }
2004
2005 /*
2006 * Re-partition already allocated buffers to a smaller
2007 * size.
2008 */
2009 rcd->egrbufs.alloced = 0;
2010 for (i = 0, j = 0, offset = 0; j < idx; i++) {
2011 if (i >= rcd->egrbufs.count)
2012 break;
2013 rcd->egrbufs.rcvtids[i].dma =
2014 rcd->egrbufs.buffers[j].dma + offset;
2015 rcd->egrbufs.rcvtids[i].addr =
2016 rcd->egrbufs.buffers[j].addr + offset;
2017 rcd->egrbufs.alloced++;
2018 if ((rcd->egrbufs.buffers[j].dma + offset +
2019 new_size) ==
2020 (rcd->egrbufs.buffers[j].dma +
2021 rcd->egrbufs.buffers[j].len)) {
2022 j++;
2023 offset = 0;
2024 } else {
2025 offset += new_size;
2026 }
2027 }
2028 rcd->egrbufs.rcvtid_size = new_size;
2029 }
2030 }
2031 rcd->egrbufs.numbufs = idx;
2032 rcd->egrbufs.size = alloced_bytes;
2033
2034 hfi1_cdbg(PROC,
2035 "ctxt%u: Alloced %u rcv tid entries @ %uKB, total %zuKB\n",
2036 rcd->ctxt, rcd->egrbufs.alloced,
2037 rcd->egrbufs.rcvtid_size / 1024, rcd->egrbufs.size / 1024);
2038
2039 /*
2040 * Set the contexts rcv array head update threshold to the closest
2041 * power of 2 (so we can use a mask instead of modulo) below half
2042 * the allocated entries.
2043 */
2044 rcd->egrbufs.threshold =
2045 rounddown_pow_of_two(rcd->egrbufs.alloced / 2);
2046 /*
2047 * Compute the expected RcvArray entry base. This is done after
2048 * allocating the eager buffers in order to maximize the
2049 * expected RcvArray entries for the context.
2050 */
2051 max_entries = rcd->rcv_array_groups * dd->rcv_entries.group_size;
2052 egrtop = roundup(rcd->egrbufs.alloced, dd->rcv_entries.group_size);
2053 rcd->expected_count = max_entries - egrtop;
2054 if (rcd->expected_count > MAX_TID_PAIR_ENTRIES * 2)
2055 rcd->expected_count = MAX_TID_PAIR_ENTRIES * 2;
2056
2057 rcd->expected_base = rcd->eager_base + egrtop;
2058 hfi1_cdbg(PROC, "ctxt%u: eager:%u, exp:%u, egrbase:%u, expbase:%u\n",
2059 rcd->ctxt, rcd->egrbufs.alloced, rcd->expected_count,
2060 rcd->eager_base, rcd->expected_base);
2061
2062 if (!hfi1_rcvbuf_validate(rcd->egrbufs.rcvtid_size, PT_EAGER, &order)) {
2063 hfi1_cdbg(PROC,
2064 "ctxt%u: current Eager buffer size is invalid %u\n",
2065 rcd->ctxt, rcd->egrbufs.rcvtid_size);
2066 ret = -EINVAL;
2067 goto bail_rcvegrbuf_phys;
2068 }
2069
2070 for (idx = 0; idx < rcd->egrbufs.alloced; idx++) {
2071 hfi1_put_tid(dd, rcd->eager_base + idx, PT_EAGER,
2072 rcd->egrbufs.rcvtids[idx].dma, order);
2073 cond_resched();
2074 }
2075
2076 return 0;
2077
2078bail_rcvegrbuf_phys:
2079 for (idx = 0; idx < rcd->egrbufs.alloced &&
2080 rcd->egrbufs.buffers[idx].addr;
2081 idx++) {
2082 dma_free_coherent(&dd->pcidev->dev,
2083 rcd->egrbufs.buffers[idx].len,
2084 rcd->egrbufs.buffers[idx].addr,
2085 rcd->egrbufs.buffers[idx].dma);
2086 rcd->egrbufs.buffers[idx].addr = NULL;
2087 rcd->egrbufs.buffers[idx].dma = 0;
2088 rcd->egrbufs.buffers[idx].len = 0;
2089 }
2090
2091 return ret;
2092}