blob: 52dcc87689f11cdb191fa22ca6a8fd1a3207bf79 [file] [log] [blame]
Mike Marciniszyn77241052015-07-30 15:17:43 -04001#ifndef _HFI1_KERNEL_H
2#define _HFI1_KERNEL_H
3/*
4 *
5 * This file is provided under a dual BSD/GPLv2 license. When using or
6 * redistributing this file, you may do so under either license.
7 *
8 * GPL LICENSE SUMMARY
9 *
10 * Copyright(c) 2015 Intel Corporation.
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of version 2 of the GNU General Public License as
14 * published by the Free Software Foundation.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * BSD LICENSE
22 *
23 * Copyright(c) 2015 Intel Corporation.
24 *
25 * Redistribution and use in source and binary forms, with or without
26 * modification, are permitted provided that the following conditions
27 * are met:
28 *
29 * - Redistributions of source code must retain the above copyright
30 * notice, this list of conditions and the following disclaimer.
31 * - Redistributions in binary form must reproduce the above copyright
32 * notice, this list of conditions and the following disclaimer in
33 * the documentation and/or other materials provided with the
34 * distribution.
35 * - Neither the name of Intel Corporation nor the names of its
36 * contributors may be used to endorse or promote products derived
37 * from this software without specific prior written permission.
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
40 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
41 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
42 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
43 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
45 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
46 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
47 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
48 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50 *
51 */
52
53#include <linux/interrupt.h>
54#include <linux/pci.h>
55#include <linux/dma-mapping.h>
56#include <linux/mutex.h>
57#include <linux/list.h>
58#include <linux/scatterlist.h>
59#include <linux/slab.h>
60#include <linux/io.h>
61#include <linux/fs.h>
62#include <linux/completion.h>
63#include <linux/kref.h>
64#include <linux/sched.h>
65#include <linux/cdev.h>
66#include <linux/delay.h>
67#include <linux/kthread.h>
Mitko Haralanovf727a0c2016-02-05 11:57:46 -050068#include <linux/mmu_notifier.h>
69#include <linux/rbtree.h>
Mike Marciniszyn77241052015-07-30 15:17:43 -040070
71#include "chip_registers.h"
72#include "common.h"
73#include "verbs.h"
74#include "pio.h"
75#include "chip.h"
76#include "mad.h"
77#include "qsfp.h"
78#include "platform_config.h"
79
80/* bumped 1 from s/w major version of TrueScale */
81#define HFI1_CHIP_VERS_MAJ 3U
82
83/* don't care about this except printing */
84#define HFI1_CHIP_VERS_MIN 0U
85
86/* The Organization Unique Identifier (Mfg code), and its position in GUID */
87#define HFI1_OUI 0x001175
88#define HFI1_OUI_LSB 40
89
90#define DROP_PACKET_OFF 0
91#define DROP_PACKET_ON 1
92
93extern unsigned long hfi1_cap_mask;
94#define HFI1_CAP_KGET_MASK(mask, cap) ((mask) & HFI1_CAP_##cap)
95#define HFI1_CAP_UGET_MASK(mask, cap) \
96 (((mask) >> HFI1_CAP_USER_SHIFT) & HFI1_CAP_##cap)
97#define HFI1_CAP_KGET(cap) (HFI1_CAP_KGET_MASK(hfi1_cap_mask, cap))
98#define HFI1_CAP_UGET(cap) (HFI1_CAP_UGET_MASK(hfi1_cap_mask, cap))
99#define HFI1_CAP_IS_KSET(cap) (!!HFI1_CAP_KGET(cap))
100#define HFI1_CAP_IS_USET(cap) (!!HFI1_CAP_UGET(cap))
101#define HFI1_MISC_GET() ((hfi1_cap_mask >> HFI1_CAP_MISC_SHIFT) & \
102 HFI1_CAP_MISC_MASK)
103
104/*
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500105 * Control context is always 0 and handles the error packets.
106 * It also handles the VL15 and multicast packets.
107 */
108#define HFI1_CTRL_CTXT 0
109
110/*
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -0500111 * Driver context will store software counters for each of the events
112 * associated with these status registers
113 */
114#define NUM_CCE_ERR_STATUS_COUNTERS 41
115#define NUM_RCV_ERR_STATUS_COUNTERS 64
116#define NUM_MISC_ERR_STATUS_COUNTERS 13
117#define NUM_SEND_PIO_ERR_STATUS_COUNTERS 36
118#define NUM_SEND_DMA_ERR_STATUS_COUNTERS 4
119#define NUM_SEND_EGRESS_ERR_STATUS_COUNTERS 64
120#define NUM_SEND_ERR_STATUS_COUNTERS 3
121#define NUM_SEND_CTXT_ERR_STATUS_COUNTERS 5
122#define NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS 24
123
124/*
Mike Marciniszyn77241052015-07-30 15:17:43 -0400125 * per driver stats, either not device nor port-specific, or
126 * summed over all of the devices and ports.
127 * They are described by name via ipathfs filesystem, so layout
128 * and number of elements can change without breaking compatibility.
129 * If members are added or deleted hfi1_statnames[] in debugfs.c must
130 * change to match.
131 */
132struct hfi1_ib_stats {
133 __u64 sps_ints; /* number of interrupts handled */
134 __u64 sps_errints; /* number of error interrupts */
135 __u64 sps_txerrs; /* tx-related packet errors */
136 __u64 sps_rcverrs; /* non-crc rcv packet errors */
137 __u64 sps_hwerrs; /* hardware errors reported (parity, etc.) */
138 __u64 sps_nopiobufs; /* no pio bufs avail from kernel */
139 __u64 sps_ctxts; /* number of contexts currently open */
140 __u64 sps_lenerrs; /* number of kernel packets where RHF != LRH len */
141 __u64 sps_buffull;
142 __u64 sps_hdrfull;
143};
144
145extern struct hfi1_ib_stats hfi1_stats;
146extern const struct pci_error_handlers hfi1_pci_err_handler;
147
148/*
149 * First-cut criterion for "device is active" is
150 * two thousand dwords combined Tx, Rx traffic per
151 * 5-second interval. SMA packets are 64 dwords,
152 * and occur "a few per second", presumably each way.
153 */
154#define HFI1_TRAFFIC_ACTIVE_THRESHOLD (2000)
155
156/*
157 * Below contains all data related to a single context (formerly called port).
158 */
159
160#ifdef CONFIG_DEBUG_FS
161struct hfi1_opcode_stats_perctx;
162#endif
163
Mike Marciniszyn77241052015-07-30 15:17:43 -0400164struct ctxt_eager_bufs {
165 ssize_t size; /* total size of eager buffers */
166 u32 count; /* size of buffers array */
167 u32 numbufs; /* number of buffers allocated */
168 u32 alloced; /* number of rcvarray entries used */
169 u32 rcvtid_size; /* size of each eager rcv tid */
170 u32 threshold; /* head update threshold */
171 struct eager_buffer {
172 void *addr;
173 dma_addr_t phys;
174 ssize_t len;
175 } *buffers;
176 struct {
177 void *addr;
178 dma_addr_t phys;
179 } *rcvtids;
180};
181
Mitko Haralanova86cd352016-02-05 11:57:49 -0500182struct exp_tid_set {
183 struct list_head list;
184 u32 count;
185};
186
Mike Marciniszyn77241052015-07-30 15:17:43 -0400187struct hfi1_ctxtdata {
188 /* shadow the ctxt's RcvCtrl register */
189 u64 rcvctrl;
190 /* rcvhdrq base, needs mmap before useful */
191 void *rcvhdrq;
192 /* kernel virtual address where hdrqtail is updated */
193 volatile __le64 *rcvhdrtail_kvaddr;
194 /*
195 * Shared page for kernel to signal user processes that send buffers
196 * need disarming. The process should call HFI1_CMD_DISARM_BUFS
197 * or HFI1_CMD_ACK_EVENT with IPATH_EVENT_DISARM_BUFS set.
198 */
199 unsigned long *user_event_mask;
200 /* when waiting for rcv or pioavail */
201 wait_queue_head_t wait;
202 /* rcvhdrq size (for freeing) */
203 size_t rcvhdrq_size;
204 /* number of rcvhdrq entries */
205 u16 rcvhdrq_cnt;
206 /* size of each of the rcvhdrq entries */
207 u16 rcvhdrqentsize;
208 /* mmap of hdrq, must fit in 44 bits */
209 dma_addr_t rcvhdrq_phys;
210 dma_addr_t rcvhdrqtailaddr_phys;
211 struct ctxt_eager_bufs egrbufs;
212 /* this receive context's assigned PIO ACK send context */
213 struct send_context *sc;
214
215 /* dynamic receive available interrupt timeout */
216 u32 rcvavail_timeout;
217 /*
218 * number of opens (including slave sub-contexts) on this instance
219 * (ignoring forks, dup, etc. for now)
220 */
221 int cnt;
222 /*
223 * how much space to leave at start of eager TID entries for
224 * protocol use, on each TID
225 */
226 /* instead of calculating it */
227 unsigned ctxt;
228 /* non-zero if ctxt is being shared. */
229 u16 subctxt_cnt;
230 /* non-zero if ctxt is being shared. */
231 u16 subctxt_id;
232 u8 uuid[16];
233 /* job key */
234 u16 jkey;
235 /* number of RcvArray groups for this context. */
236 u32 rcv_array_groups;
237 /* index of first eager TID entry. */
238 u32 eager_base;
239 /* number of expected TID entries */
240 u32 expected_count;
241 /* index of first expected TID entry. */
242 u32 expected_base;
Mitko Haralanova86cd352016-02-05 11:57:49 -0500243
244 struct exp_tid_set tid_group_list;
245 struct exp_tid_set tid_used_list;
246 struct exp_tid_set tid_full_list;
247
Mike Marciniszyn77241052015-07-30 15:17:43 -0400248 /* lock protecting all Expected TID data */
Mitko Haralanov463e6eb2016-02-05 11:57:53 -0500249 struct mutex exp_lock;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400250 /* number of pio bufs for this ctxt (all procs, if shared) */
251 u32 piocnt;
252 /* first pio buffer for this ctxt */
253 u32 pio_base;
254 /* chip offset of PIO buffers for this ctxt */
255 u32 piobufs;
256 /* per-context configuration flags */
Niranjana Vishwanathapura82c26112015-11-11 00:35:19 -0500257 u32 flags;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400258 /* per-context event flags for fileops/intr communication */
259 unsigned long event_flags;
260 /* WAIT_RCV that timed out, no interrupt */
261 u32 rcvwait_to;
262 /* WAIT_PIO that timed out, no interrupt */
263 u32 piowait_to;
264 /* WAIT_RCV already happened, no wait */
265 u32 rcvnowait;
266 /* WAIT_PIO already happened, no wait */
267 u32 pionowait;
268 /* total number of polled urgent packets */
269 u32 urgent;
270 /* saved total number of polled urgent packets for poll edge trigger */
271 u32 urgent_poll;
272 /* pid of process using this ctxt */
273 pid_t pid;
274 pid_t subpid[HFI1_MAX_SHARED_CTXTS];
275 /* same size as task_struct .comm[], command that opened context */
Geliang Tangc3af8a22015-10-08 22:04:26 -0700276 char comm[TASK_COMM_LEN];
Mike Marciniszyn77241052015-07-30 15:17:43 -0400277 /* so file ops can get at unit */
278 struct hfi1_devdata *dd;
279 /* so functions that need physical port can get it easily */
280 struct hfi1_pportdata *ppd;
281 /* A page of memory for rcvhdrhead, rcvegrhead, rcvegrtail * N */
282 void *subctxt_uregbase;
283 /* An array of pages for the eager receive buffers * N */
284 void *subctxt_rcvegrbuf;
285 /* An array of pages for the eager header queue entries * N */
286 void *subctxt_rcvhdr_base;
287 /* The version of the library which opened this ctxt */
288 u32 userversion;
289 /* Bitmask of active slaves */
290 u32 active_slaves;
291 /* Type of packets or conditions we want to poll for */
292 u16 poll_type;
293 /* receive packet sequence counter */
294 u8 seq_cnt;
295 u8 redirect_seq_cnt;
296 /* ctxt rcvhdrq head offset */
297 u32 head;
298 u32 pkt_count;
299 /* QPs waiting for context processing */
300 struct list_head qp_wait_list;
301 /* interrupt handling */
302 u64 imask; /* clear interrupt mask */
303 int ireg; /* clear interrupt register */
304 unsigned numa_id; /* numa node of this context */
305 /* verbs stats per CTX */
306 struct hfi1_opcode_stats_perctx *opstats;
307 /*
308 * This is the kernel thread that will keep making
309 * progress on the user sdma requests behind the scenes.
310 * There is one per context (shared contexts use the master's).
311 */
312 struct task_struct *progress;
313 struct list_head sdma_queues;
314 spinlock_t sdma_qlock;
315
Mike Marciniszyn77241052015-07-30 15:17:43 -0400316 /*
317 * The interrupt handler for a particular receive context can vary
318 * throughout it's lifetime. This is not a lock protected data member so
319 * it must be updated atomically and the prev and new value must always
320 * be valid. Worst case is we process an extra interrupt and up to 64
321 * packets with the wrong interrupt handler.
322 */
Dean Luickf4f30031c2015-10-26 10:28:44 -0400323 int (*do_interrupt)(struct hfi1_ctxtdata *rcd, int threaded);
Mike Marciniszyn77241052015-07-30 15:17:43 -0400324};
325
326/*
327 * Represents a single packet at a high level. Put commonly computed things in
328 * here so we do not have to keep doing them over and over. The rule of thumb is
329 * if something is used one time to derive some value, store that something in
330 * here. If it is used multiple times, then store the result of that derivation
331 * in here.
332 */
333struct hfi1_packet {
334 void *ebuf;
335 void *hdr;
336 struct hfi1_ctxtdata *rcd;
337 __le32 *rhf_addr;
338 struct hfi1_qp *qp;
339 struct hfi1_other_headers *ohdr;
340 u64 rhf;
341 u32 maxcnt;
342 u32 rhqoff;
343 u32 hdrqtail;
344 int numpkt;
345 u16 tlen;
346 u16 hlen;
347 s16 etail;
348 u16 rsize;
349 u8 updegr;
350 u8 rcv_flags;
351 u8 etype;
352};
353
354static inline bool has_sc4_bit(struct hfi1_packet *p)
355{
356 return !!rhf_dc_info(p->rhf);
357}
358
359/*
360 * Private data for snoop/capture support.
361 */
362struct hfi1_snoop_data {
363 int mode_flag;
364 struct cdev cdev;
365 struct device *class_dev;
366 spinlock_t snoop_lock;
367 struct list_head queue;
368 wait_queue_head_t waitq;
369 void *filter_value;
370 int (*filter_callback)(void *hdr, void *data, void *value);
371 u64 dcc_cfg; /* saved value of DCC Cfg register */
372};
373
374/* snoop mode_flag values */
375#define HFI1_PORT_SNOOP_MODE 1U
376#define HFI1_PORT_CAPTURE_MODE 2U
377
378struct hfi1_sge_state;
379
380/*
381 * Get/Set IB link-level config parameters for f_get/set_ib_cfg()
382 * Mostly for MADs that set or query link parameters, also ipath
383 * config interfaces
384 */
385#define HFI1_IB_CFG_LIDLMC 0 /* LID (LS16b) and Mask (MS16b) */
386#define HFI1_IB_CFG_LWID_DG_ENB 1 /* allowed Link-width downgrade */
387#define HFI1_IB_CFG_LWID_ENB 2 /* allowed Link-width */
388#define HFI1_IB_CFG_LWID 3 /* currently active Link-width */
389#define HFI1_IB_CFG_SPD_ENB 4 /* allowed Link speeds */
390#define HFI1_IB_CFG_SPD 5 /* current Link spd */
391#define HFI1_IB_CFG_RXPOL_ENB 6 /* Auto-RX-polarity enable */
392#define HFI1_IB_CFG_LREV_ENB 7 /* Auto-Lane-reversal enable */
393#define HFI1_IB_CFG_LINKLATENCY 8 /* Link Latency (IB1.2 only) */
394#define HFI1_IB_CFG_HRTBT 9 /* IB heartbeat off/enable/auto; DDR/QDR only */
395#define HFI1_IB_CFG_OP_VLS 10 /* operational VLs */
396#define HFI1_IB_CFG_VL_HIGH_CAP 11 /* num of VL high priority weights */
397#define HFI1_IB_CFG_VL_LOW_CAP 12 /* num of VL low priority weights */
398#define HFI1_IB_CFG_OVERRUN_THRESH 13 /* IB overrun threshold */
399#define HFI1_IB_CFG_PHYERR_THRESH 14 /* IB PHY error threshold */
400#define HFI1_IB_CFG_LINKDEFAULT 15 /* IB link default (sleep/poll) */
401#define HFI1_IB_CFG_PKEYS 16 /* update partition keys */
402#define HFI1_IB_CFG_MTU 17 /* update MTU in IBC */
403#define HFI1_IB_CFG_VL_HIGH_LIMIT 19
404#define HFI1_IB_CFG_PMA_TICKS 20 /* PMA sample tick resolution */
405#define HFI1_IB_CFG_PORT 21 /* switch port we are connected to */
406
407/*
408 * HFI or Host Link States
409 *
410 * These describe the states the driver thinks the logical and physical
411 * states are in. Used as an argument to set_link_state(). Implemented
412 * as bits for easy multi-state checking. The actual state can only be
413 * one.
414 */
415#define __HLS_UP_INIT_BP 0
416#define __HLS_UP_ARMED_BP 1
417#define __HLS_UP_ACTIVE_BP 2
418#define __HLS_DN_DOWNDEF_BP 3 /* link down default */
419#define __HLS_DN_POLL_BP 4
420#define __HLS_DN_DISABLE_BP 5
421#define __HLS_DN_OFFLINE_BP 6
422#define __HLS_VERIFY_CAP_BP 7
423#define __HLS_GOING_UP_BP 8
424#define __HLS_GOING_OFFLINE_BP 9
425#define __HLS_LINK_COOLDOWN_BP 10
426
427#define HLS_UP_INIT (1 << __HLS_UP_INIT_BP)
428#define HLS_UP_ARMED (1 << __HLS_UP_ARMED_BP)
429#define HLS_UP_ACTIVE (1 << __HLS_UP_ACTIVE_BP)
430#define HLS_DN_DOWNDEF (1 << __HLS_DN_DOWNDEF_BP) /* link down default */
431#define HLS_DN_POLL (1 << __HLS_DN_POLL_BP)
432#define HLS_DN_DISABLE (1 << __HLS_DN_DISABLE_BP)
433#define HLS_DN_OFFLINE (1 << __HLS_DN_OFFLINE_BP)
434#define HLS_VERIFY_CAP (1 << __HLS_VERIFY_CAP_BP)
435#define HLS_GOING_UP (1 << __HLS_GOING_UP_BP)
436#define HLS_GOING_OFFLINE (1 << __HLS_GOING_OFFLINE_BP)
437#define HLS_LINK_COOLDOWN (1 << __HLS_LINK_COOLDOWN_BP)
438
439#define HLS_UP (HLS_UP_INIT | HLS_UP_ARMED | HLS_UP_ACTIVE)
440
441/* use this MTU size if none other is given */
442#define HFI1_DEFAULT_ACTIVE_MTU 8192
443/* use this MTU size as the default maximum */
444#define HFI1_DEFAULT_MAX_MTU 8192
445/* default partition key */
446#define DEFAULT_PKEY 0xffff
447
448/*
449 * Possible fabric manager config parameters for fm_{get,set}_table()
450 */
451#define FM_TBL_VL_HIGH_ARB 1 /* Get/set VL high prio weights */
452#define FM_TBL_VL_LOW_ARB 2 /* Get/set VL low prio weights */
453#define FM_TBL_BUFFER_CONTROL 3 /* Get/set Buffer Control */
454#define FM_TBL_SC2VLNT 4 /* Get/set SC->VLnt */
455#define FM_TBL_VL_PREEMPT_ELEMS 5 /* Get (no set) VL preempt elems */
456#define FM_TBL_VL_PREEMPT_MATRIX 6 /* Get (no set) VL preempt matrix */
457
458/*
459 * Possible "operations" for f_rcvctrl(ppd, op, ctxt)
460 * these are bits so they can be combined, e.g.
461 * HFI1_RCVCTRL_INTRAVAIL_ENB | HFI1_RCVCTRL_CTXT_ENB
462 */
463#define HFI1_RCVCTRL_TAILUPD_ENB 0x01
464#define HFI1_RCVCTRL_TAILUPD_DIS 0x02
465#define HFI1_RCVCTRL_CTXT_ENB 0x04
466#define HFI1_RCVCTRL_CTXT_DIS 0x08
467#define HFI1_RCVCTRL_INTRAVAIL_ENB 0x10
468#define HFI1_RCVCTRL_INTRAVAIL_DIS 0x20
469#define HFI1_RCVCTRL_PKEY_ENB 0x40 /* Note, default is enabled */
470#define HFI1_RCVCTRL_PKEY_DIS 0x80
471#define HFI1_RCVCTRL_TIDFLOW_ENB 0x0400
472#define HFI1_RCVCTRL_TIDFLOW_DIS 0x0800
473#define HFI1_RCVCTRL_ONE_PKT_EGR_ENB 0x1000
474#define HFI1_RCVCTRL_ONE_PKT_EGR_DIS 0x2000
475#define HFI1_RCVCTRL_NO_RHQ_DROP_ENB 0x4000
476#define HFI1_RCVCTRL_NO_RHQ_DROP_DIS 0x8000
477#define HFI1_RCVCTRL_NO_EGR_DROP_ENB 0x10000
478#define HFI1_RCVCTRL_NO_EGR_DROP_DIS 0x20000
479
480/* partition enforcement flags */
481#define HFI1_PART_ENFORCE_IN 0x1
482#define HFI1_PART_ENFORCE_OUT 0x2
483
484/* how often we check for synthetic counter wrap around */
485#define SYNTH_CNT_TIME 2
486
487/* Counter flags */
488#define CNTR_NORMAL 0x0 /* Normal counters, just read register */
489#define CNTR_SYNTH 0x1 /* Synthetic counters, saturate at all 1s */
490#define CNTR_DISABLED 0x2 /* Disable this counter */
491#define CNTR_32BIT 0x4 /* Simulate 64 bits for this counter */
492#define CNTR_VL 0x8 /* Per VL counter */
493#define CNTR_INVALID_VL -1 /* Specifies invalid VL */
494#define CNTR_MODE_W 0x0
495#define CNTR_MODE_R 0x1
496
497/* VLs Supported/Operational */
498#define HFI1_MIN_VLS_SUPPORTED 1
499#define HFI1_MAX_VLS_SUPPORTED 8
500
501static inline void incr_cntr64(u64 *cntr)
502{
503 if (*cntr < (u64)-1LL)
504 (*cntr)++;
505}
506
507static inline void incr_cntr32(u32 *cntr)
508{
509 if (*cntr < (u32)-1LL)
510 (*cntr)++;
511}
512
513#define MAX_NAME_SIZE 64
514struct hfi1_msix_entry {
515 struct msix_entry msix;
516 void *arg;
517 char name[MAX_NAME_SIZE];
518 cpumask_var_t mask;
519};
520
521/* per-SL CCA information */
522struct cca_timer {
523 struct hrtimer hrtimer;
524 struct hfi1_pportdata *ppd; /* read-only */
525 int sl; /* read-only */
526 u16 ccti; /* read/write - current value of CCTI */
527};
528
529struct link_down_reason {
530 /*
531 * SMA-facing value. Should be set from .latest when
532 * HLS_UP_* -> HLS_DN_* transition actually occurs.
533 */
534 u8 sma;
535 u8 latest;
536};
537
538enum {
539 LO_PRIO_TABLE,
540 HI_PRIO_TABLE,
541 MAX_PRIO_TABLE
542};
543
544struct vl_arb_cache {
545 spinlock_t lock;
546 struct ib_vl_weight_elem table[VL_ARB_TABLE_SIZE];
547};
548
549/*
550 * The structure below encapsulates data relevant to a physical IB Port.
551 * Current chips support only one such port, but the separation
552 * clarifies things a bit. Note that to conform to IB conventions,
553 * port-numbers are one-based. The first or only port is port1.
554 */
555struct hfi1_pportdata {
556 struct hfi1_ibport ibport_data;
557
558 struct hfi1_devdata *dd;
559 struct kobject pport_cc_kobj;
560 struct kobject sc2vl_kobj;
561 struct kobject sl2sc_kobj;
562 struct kobject vl2mtu_kobj;
563
564 /* QSFP support */
565 struct qsfp_data qsfp_info;
566
567 /* GUID for this interface, in host order */
568 u64 guid;
569 /* GUID for peer interface, in host order */
570 u64 neighbor_guid;
571
572 /* up or down physical link state */
573 u32 linkup;
574
575 /*
576 * this address is mapped read-only into user processes so they can
577 * get status cheaply, whenever they want. One qword of status per port
578 */
579 u64 *statusp;
580
581 /* SendDMA related entries */
582
583 struct workqueue_struct *hfi1_wq;
584
585 /* move out of interrupt context */
586 struct work_struct link_vc_work;
587 struct work_struct link_up_work;
588 struct work_struct link_down_work;
589 struct work_struct sma_message_work;
590 struct work_struct freeze_work;
591 struct work_struct link_downgrade_work;
592 struct work_struct link_bounce_work;
593 /* host link state variables */
594 struct mutex hls_lock;
595 u32 host_link_state;
596
597 spinlock_t sdma_alllock ____cacheline_aligned_in_smp;
598
599 u32 lstate; /* logical link state */
600
601 /* these are the "32 bit" regs */
602
603 u32 ibmtu; /* The MTU programmed for this unit */
604 /*
605 * Current max size IB packet (in bytes) including IB headers, that
606 * we can send. Changes when ibmtu changes.
607 */
608 u32 ibmaxlen;
609 u32 current_egress_rate; /* units [10^6 bits/sec] */
610 /* LID programmed for this instance */
611 u16 lid;
612 /* list of pkeys programmed; 0 if not set */
613 u16 pkeys[MAX_PKEY_VALUES];
614 u16 link_width_supported;
615 u16 link_width_downgrade_supported;
616 u16 link_speed_supported;
617 u16 link_width_enabled;
618 u16 link_width_downgrade_enabled;
619 u16 link_speed_enabled;
620 u16 link_width_active;
621 u16 link_width_downgrade_tx_active;
622 u16 link_width_downgrade_rx_active;
623 u16 link_speed_active;
624 u8 vls_supported;
625 u8 vls_operational;
626 /* LID mask control */
627 u8 lmc;
628 /* Rx Polarity inversion (compensate for ~tx on partner) */
629 u8 rx_pol_inv;
630
631 u8 hw_pidx; /* physical port index */
632 u8 port; /* IB port number and index into dd->pports - 1 */
633 /* type of neighbor node */
634 u8 neighbor_type;
635 u8 neighbor_normal;
636 u8 neighbor_fm_security; /* 1 if firmware checking is disabled */
637 u8 neighbor_port_number;
638 u8 is_sm_config_started;
639 u8 offline_disabled_reason;
640 u8 is_active_optimize_enabled;
641 u8 driver_link_ready; /* driver ready for active link */
642 u8 link_enabled; /* link enabled? */
643 u8 linkinit_reason;
644 u8 local_tx_rate; /* rate given to 8051 firmware */
645
646 /* placeholders for IB MAD packet settings */
647 u8 overrun_threshold;
648 u8 phy_error_threshold;
649
650 /* used to override LED behavior */
651 u8 led_override; /* Substituted for normal value, if non-zero */
652 u16 led_override_timeoff; /* delta to next timer event */
653 u8 led_override_vals[2]; /* Alternates per blink-frame */
654 u8 led_override_phase; /* Just counts, LSB picks from vals[] */
655 atomic_t led_override_timer_active;
656 /* Used to flash LEDs in override mode */
657 struct timer_list led_override_timer;
658 u32 sm_trap_qp;
659 u32 sa_qp;
660
661 /*
662 * cca_timer_lock protects access to the per-SL cca_timer
663 * structures (specifically the ccti member).
664 */
665 spinlock_t cca_timer_lock ____cacheline_aligned_in_smp;
666 struct cca_timer cca_timer[OPA_MAX_SLS];
667
668 /* List of congestion control table entries */
669 struct ib_cc_table_entry_shadow ccti_entries[CC_TABLE_SHADOW_MAX];
670
671 /* congestion entries, each entry corresponding to a SL */
672 struct opa_congestion_setting_entry_shadow
673 congestion_entries[OPA_MAX_SLS];
674
675 /*
676 * cc_state_lock protects (write) access to the per-port
677 * struct cc_state.
678 */
679 spinlock_t cc_state_lock ____cacheline_aligned_in_smp;
680
681 struct cc_state __rcu *cc_state;
682
683 /* Total number of congestion control table entries */
684 u16 total_cct_entry;
685
686 /* Bit map identifying service level */
687 u32 cc_sl_control_map;
688
689 /* CA's max number of 64 entry units in the congestion control table */
690 u8 cc_max_table_entries;
691
692 /* begin congestion log related entries
693 * cc_log_lock protects all congestion log related data */
694 spinlock_t cc_log_lock ____cacheline_aligned_in_smp;
695 u8 threshold_cong_event_map[OPA_MAX_SLS/8];
696 u16 threshold_event_counter;
697 struct opa_hfi1_cong_log_event_internal cc_events[OPA_CONG_LOG_ELEMS];
698 int cc_log_idx; /* index for logging events */
699 int cc_mad_idx; /* index for reporting events */
700 /* end congestion log related entries */
701
702 struct vl_arb_cache vl_arb_cache[MAX_PRIO_TABLE];
703
704 /* port relative counter buffer */
705 u64 *cntrs;
706 /* port relative synthetic counter buffer */
707 u64 *scntrs;
708 /* we synthesize port_xmit_discards from several egress errors */
709 u64 port_xmit_discards;
710 u64 port_xmit_constraint_errors;
711 u64 port_rcv_constraint_errors;
712 /* count of 'link_err' interrupts from DC */
713 u64 link_downed;
714 /* number of times link retrained successfully */
715 u64 link_up;
Dean Luick6d014532015-12-01 15:38:23 -0500716 /* number of times a link unknown frame was reported */
717 u64 unknown_frame_count;
Mike Marciniszyn77241052015-07-30 15:17:43 -0400718 /* port_ltp_crc_mode is returned in 'portinfo' MADs */
719 u16 port_ltp_crc_mode;
720 /* port_crc_mode_enabled is the crc we support */
721 u8 port_crc_mode_enabled;
722 /* mgmt_allowed is also returned in 'portinfo' MADs */
723 u8 mgmt_allowed;
724 u8 part_enforce; /* partition enforcement flags */
725 struct link_down_reason local_link_down_reason;
726 struct link_down_reason neigh_link_down_reason;
727 /* Value to be sent to link peer on LinkDown .*/
728 u8 remote_link_down_reason;
729 /* Error events that will cause a port bounce. */
730 u32 port_error_action;
731};
732
733typedef int (*rhf_rcv_function_ptr)(struct hfi1_packet *packet);
734
735typedef void (*opcode_handler)(struct hfi1_packet *packet);
736
737/* return values for the RHF receive functions */
738#define RHF_RCV_CONTINUE 0 /* keep going */
739#define RHF_RCV_DONE 1 /* stop, this packet processed */
740#define RHF_RCV_REPROCESS 2 /* stop. retain this packet */
741
742struct rcv_array_data {
743 u8 group_size;
744 u16 ngroups;
745 u16 nctxt_extra;
746};
747
748struct per_vl_data {
749 u16 mtu;
750 struct send_context *sc;
751};
752
753/* 16 to directly index */
754#define PER_VL_SEND_CONTEXTS 16
755
756struct err_info_rcvport {
757 u8 status_and_code;
758 u64 packet_flit1;
759 u64 packet_flit2;
760};
761
762struct err_info_constraint {
763 u8 status;
764 u16 pkey;
765 u32 slid;
766};
767
768struct hfi1_temp {
769 unsigned int curr; /* current temperature */
770 unsigned int lo_lim; /* low temperature limit */
771 unsigned int hi_lim; /* high temperature limit */
772 unsigned int crit_lim; /* critical temperature limit */
773 u8 triggers; /* temperature triggers */
774};
775
776/* device data struct now contains only "general per-device" info.
777 * fields related to a physical IB port are in a hfi1_pportdata struct.
778 */
779struct sdma_engine;
780struct sdma_vl_map;
781
782#define BOARD_VERS_MAX 96 /* how long the version string can be */
783#define SERIAL_MAX 16 /* length of the serial number */
784
785struct hfi1_devdata {
786 struct hfi1_ibdev verbs_dev; /* must be first */
787 struct list_head list;
788 /* pointers to related structs for this device */
789 /* pci access data structure */
790 struct pci_dev *pcidev;
791 struct cdev user_cdev;
792 struct cdev diag_cdev;
793 struct cdev ui_cdev;
794 struct device *user_device;
795 struct device *diag_device;
796 struct device *ui_device;
797
798 /* mem-mapped pointer to base of chip regs */
799 u8 __iomem *kregbase;
800 /* end of mem-mapped chip space excluding sendbuf and user regs */
801 u8 __iomem *kregend;
802 /* physical address of chip for io_remap, etc. */
803 resource_size_t physaddr;
804 /* receive context data */
805 struct hfi1_ctxtdata **rcd;
806 /* send context data */
807 struct send_context_info *send_contexts;
808 /* map hardware send contexts to software index */
809 u8 *hw_to_sw;
810 /* spinlock for allocating and releasing send context resources */
811 spinlock_t sc_lock;
812 /* Per VL data. Enough for all VLs but not all elements are set/used. */
813 struct per_vl_data vld[PER_VL_SEND_CONTEXTS];
814 /* seqlock for sc2vl */
815 seqlock_t sc2vl_lock;
816 u64 sc2vl[4];
817 /* Send Context initialization lock. */
818 spinlock_t sc_init_lock;
819
820 /* fields common to all SDMA engines */
821
822 /* default flags to last descriptor */
823 u64 default_desc1;
824 volatile __le64 *sdma_heads_dma; /* DMA'ed by chip */
825 dma_addr_t sdma_heads_phys;
826 void *sdma_pad_dma; /* DMA'ed by chip */
827 dma_addr_t sdma_pad_phys;
828 /* for deallocation */
829 size_t sdma_heads_size;
830 /* number from the chip */
831 u32 chip_sdma_engines;
832 /* num used */
833 u32 num_sdma;
834 /* lock for sdma_map */
835 spinlock_t sde_map_lock;
836 /* array of engines sized by num_sdma */
837 struct sdma_engine *per_sdma;
838 /* array of vl maps */
839 struct sdma_vl_map __rcu *sdma_map;
840 /* SPC freeze waitqueue and variable */
841 wait_queue_head_t sdma_unfreeze_wq;
842 atomic_t sdma_unfreeze_count;
843
844
845 /* hfi1_pportdata, points to array of (physical) port-specific
846 * data structs, indexed by pidx (0..n-1)
847 */
848 struct hfi1_pportdata *pport;
849
850 /* mem-mapped pointer to base of PIO buffers */
851 void __iomem *piobase;
852 /*
853 * write-combining mem-mapped pointer to base of RcvArray
854 * memory.
855 */
856 void __iomem *rcvarray_wc;
857 /*
858 * credit return base - a per-NUMA range of DMA address that
859 * the chip will use to update the per-context free counter
860 */
861 struct credit_return_base *cr_base;
862
863 /* send context numbers and sizes for each type */
864 struct sc_config_sizes sc_sizes[SC_MAX];
865
866 u32 lcb_access_count; /* count of LCB users */
867
868 char *boardname; /* human readable board info */
869
870 /* device (not port) flags, basically device capabilities */
871 u32 flags;
872
873 /* reset value */
874 u64 z_int_counter;
875 u64 z_rcv_limit;
876 /* percpu int_counter */
877 u64 __percpu *int_counter;
878 u64 __percpu *rcv_limit;
879
880 /* number of receive contexts in use by the driver */
881 u32 num_rcv_contexts;
882 /* number of pio send contexts in use by the driver */
883 u32 num_send_contexts;
884 /*
885 * number of ctxts available for PSM open
886 */
887 u32 freectxts;
888 /* base receive interrupt timeout, in CSR units */
889 u32 rcv_intr_timeout_csr;
890
891 u64 __iomem *egrtidbase;
892 spinlock_t sendctrl_lock; /* protect changes to SendCtrl */
893 spinlock_t rcvctrl_lock; /* protect changes to RcvCtrl */
894 /* around rcd and (user ctxts) ctxt_cnt use (intr vs free) */
895 spinlock_t uctxt_lock; /* rcd and user context changes */
896 /* exclusive access to 8051 */
897 spinlock_t dc8051_lock;
898 /* exclusive access to 8051 memory */
899 spinlock_t dc8051_memlock;
900 int dc8051_timed_out; /* remember if the 8051 timed out */
901 /*
902 * A page that will hold event notification bitmaps for all
903 * contexts. This page will be mapped into all processes.
904 */
905 unsigned long *events;
906 /*
907 * per unit status, see also portdata statusp
908 * mapped read-only into user processes so they can get unit and
909 * IB link status cheaply
910 */
911 struct hfi1_status *status;
912 u32 freezelen; /* max length of freezemsg */
913
914 /* revision register shadow */
915 u64 revision;
916 /* Base GUID for device (network order) */
917 u64 base_guid;
918
919 /* these are the "32 bit" regs */
920
921 /* value we put in kr_rcvhdrsize */
922 u32 rcvhdrsize;
923 /* number of receive contexts the chip supports */
924 u32 chip_rcv_contexts;
925 /* number of receive array entries */
926 u32 chip_rcv_array_count;
927 /* number of PIO send contexts the chip supports */
928 u32 chip_send_contexts;
929 /* number of bytes in the PIO memory buffer */
930 u32 chip_pio_mem_size;
931 /* number of bytes in the SDMA memory buffer */
932 u32 chip_sdma_mem_size;
933
934 /* size of each rcvegrbuffer */
935 u32 rcvegrbufsize;
936 /* log2 of above */
937 u16 rcvegrbufsize_shift;
938 /* both sides of the PCIe link are gen3 capable */
939 u8 link_gen3_capable;
940 /* localbus width (1, 2,4,8,16,32) from config space */
941 u32 lbus_width;
942 /* localbus speed in MHz */
943 u32 lbus_speed;
944 int unit; /* unit # of this chip */
945 int node; /* home node of this chip */
946
947 /* save these PCI fields to restore after a reset */
948 u32 pcibar0;
949 u32 pcibar1;
950 u32 pci_rom;
951 u16 pci_command;
952 u16 pcie_devctl;
953 u16 pcie_lnkctl;
954 u16 pcie_devctl2;
955 u32 pci_msix0;
956 u32 pci_lnkctl3;
957 u32 pci_tph2;
958
959 /*
960 * ASCII serial number, from flash, large enough for original
961 * all digit strings, and longer serial number format
962 */
963 u8 serial[SERIAL_MAX];
964 /* human readable board version */
965 u8 boardversion[BOARD_VERS_MAX];
966 u8 lbus_info[32]; /* human readable localbus info */
967 /* chip major rev, from CceRevision */
968 u8 majrev;
969 /* chip minor rev, from CceRevision */
970 u8 minrev;
971 /* hardware ID */
972 u8 hfi1_id;
973 /* implementation code */
974 u8 icode;
975 /* default link down value (poll/sleep) */
976 u8 link_default;
977 /* vAU of this device */
978 u8 vau;
979 /* vCU of this device */
980 u8 vcu;
981 /* link credits of this device */
982 u16 link_credits;
983 /* initial vl15 credits to use */
984 u16 vl15_init;
985
986 /* Misc small ints */
987 /* Number of physical ports available */
988 u8 num_pports;
989 /* Lowest context number which can be used by user processes */
990 u8 first_user_ctxt;
991 u8 n_krcv_queues;
992 u8 qos_shift;
993 u8 qpn_mask;
994
995 u16 rhf_offset; /* offset of RHF within receive header entry */
996 u16 irev; /* implementation revision */
997 u16 dc8051_ver; /* 8051 firmware version */
998
999 struct platform_config_cache pcfg_cache;
1000 /* control high-level access to qsfp */
1001 struct mutex qsfp_i2c_mutex;
1002
1003 struct diag_client *diag_client;
1004 spinlock_t hfi1_diag_trans_lock; /* protect diag observer ops */
1005
1006 u8 psxmitwait_supported;
1007 /* cycle length of PS* counters in HW (in picoseconds) */
1008 u16 psxmitwait_check_rate;
1009 /* high volume overflow errors deferred to tasklet */
1010 struct tasklet_struct error_tasklet;
1011 /* per device cq worker */
1012 struct kthread_worker *worker;
1013
1014 /* MSI-X information */
1015 struct hfi1_msix_entry *msix_entries;
1016 u32 num_msix_entries;
1017
1018 /* INTx information */
1019 u32 requested_intx_irq; /* did we request one? */
1020 char intx_name[MAX_NAME_SIZE]; /* INTx name */
1021
1022 /* general interrupt: mask of handled interrupts */
1023 u64 gi_mask[CCE_NUM_INT_CSRS];
1024
1025 struct rcv_array_data rcv_entries;
1026
1027 /*
1028 * 64 bit synthetic counters
1029 */
1030 struct timer_list synth_stats_timer;
1031
1032 /*
1033 * device counters
1034 */
1035 char *cntrnames;
1036 size_t cntrnameslen;
1037 size_t ndevcntrs;
1038 u64 *cntrs;
1039 u64 *scntrs;
1040
1041 /*
1042 * remembered values for synthetic counters
1043 */
1044 u64 last_tx;
1045 u64 last_rx;
1046
1047 /*
1048 * per-port counters
1049 */
1050 size_t nportcntrs;
1051 char *portcntrnames;
1052 size_t portcntrnameslen;
1053
1054 struct hfi1_snoop_data hfi1_snoop;
1055
1056 struct err_info_rcvport err_info_rcvport;
1057 struct err_info_constraint err_info_rcv_constraint;
1058 struct err_info_constraint err_info_xmit_constraint;
1059 u8 err_info_uncorrectable;
1060 u8 err_info_fmconfig;
1061
1062 atomic_t drop_packet;
1063 u8 do_drop;
1064
Joel Rosenzweig2c5b5212015-12-01 15:38:19 -05001065 /*
1066 * Software counters for the status bits defined by the
1067 * associated error status registers
1068 */
1069 u64 cce_err_status_cnt[NUM_CCE_ERR_STATUS_COUNTERS];
1070 u64 rcv_err_status_cnt[NUM_RCV_ERR_STATUS_COUNTERS];
1071 u64 misc_err_status_cnt[NUM_MISC_ERR_STATUS_COUNTERS];
1072 u64 send_pio_err_status_cnt[NUM_SEND_PIO_ERR_STATUS_COUNTERS];
1073 u64 send_dma_err_status_cnt[NUM_SEND_DMA_ERR_STATUS_COUNTERS];
1074 u64 send_egress_err_status_cnt[NUM_SEND_EGRESS_ERR_STATUS_COUNTERS];
1075 u64 send_err_status_cnt[NUM_SEND_ERR_STATUS_COUNTERS];
1076
1077 /* Software counter that spans all contexts */
1078 u64 sw_ctxt_err_status_cnt[NUM_SEND_CTXT_ERR_STATUS_COUNTERS];
1079 /* Software counter that spans all DMA engines */
1080 u64 sw_send_dma_eng_err_status_cnt[
1081 NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS];
1082 /* Software counter that aggregates all cce_err_status errors */
1083 u64 sw_cce_err_status_aggregate;
1084
Mike Marciniszyn77241052015-07-30 15:17:43 -04001085 /* receive interrupt functions */
1086 rhf_rcv_function_ptr *rhf_rcv_function_map;
1087 rhf_rcv_function_ptr normal_rhf_rcv_functions[8];
1088
1089 /*
1090 * Handlers for outgoing data so that snoop/capture does not
1091 * have to have its hooks in the send path
1092 */
Dennis Dalessandrod46e5142015-11-11 00:34:37 -05001093 int (*process_pio_send)(struct hfi1_qp *qp, struct hfi1_pkt_state *ps,
1094 u64 pbc);
1095 int (*process_dma_send)(struct hfi1_qp *qp, struct hfi1_pkt_state *ps,
1096 u64 pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001097 void (*pio_inline_send)(struct hfi1_devdata *dd, struct pio_buf *pbuf,
1098 u64 pbc, const void *from, size_t count);
1099
1100 /* OUI comes from the HW. Used everywhere as 3 separate bytes. */
1101 u8 oui1;
1102 u8 oui2;
1103 u8 oui3;
1104 /* Timer and counter used to detect RcvBufOvflCnt changes */
1105 struct timer_list rcverr_timer;
1106 u32 rcv_ovfl_cnt;
1107
1108 int assigned_node_id;
1109 wait_queue_head_t event_queue;
1110
1111 /* Save the enabled LCB error bits */
1112 u64 lcb_err_en;
1113 u8 dc_shutdown;
Mark F. Brown46b010d2015-11-09 19:18:20 -05001114
1115 /* receive context tail dummy address */
1116 __le64 *rcvhdrtail_dummy_kvaddr;
1117 dma_addr_t rcvhdrtail_dummy_physaddr;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001118};
1119
1120/* 8051 firmware version helper */
1121#define dc8051_ver(a, b) ((a) << 8 | (b))
1122
1123/* f_put_tid types */
1124#define PT_EXPECTED 0
1125#define PT_EAGER 1
1126#define PT_INVALID 2
1127
Mitko Haralanovf727a0c2016-02-05 11:57:46 -05001128struct mmu_rb_node;
1129
Mike Marciniszyn77241052015-07-30 15:17:43 -04001130/* Private data for file operations */
1131struct hfi1_filedata {
1132 struct hfi1_ctxtdata *uctxt;
1133 unsigned subctxt;
1134 struct hfi1_user_sdma_comp_q *cq;
1135 struct hfi1_user_sdma_pkt_q *pq;
1136 /* for cpu affinity; -1 if none */
1137 int rec_cpu_num;
Mitko Haralanova86cd352016-02-05 11:57:49 -05001138 struct mmu_notifier mn;
1139 struct rb_root tid_rb_root;
1140 spinlock_t tid_lock; /* protect tid_[limit,used] counters */
1141 u32 tid_limit;
1142 u32 tid_used;
1143 spinlock_t rb_lock; /* protect tid_rb_root RB tree */
1144 u32 *invalid_tids;
1145 u32 invalid_tid_idx;
1146 spinlock_t invalid_lock; /* protect the invalid_tids array */
1147 int (*mmu_rb_insert)(struct rb_root *, struct mmu_rb_node *);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001148};
1149
1150extern struct list_head hfi1_dev_list;
1151extern spinlock_t hfi1_devs_lock;
1152struct hfi1_devdata *hfi1_lookup(int unit);
1153extern u32 hfi1_cpulist_count;
1154extern unsigned long *hfi1_cpulist;
1155
1156extern unsigned int snoop_drop_send;
1157extern unsigned int snoop_force_capture;
1158int hfi1_init(struct hfi1_devdata *, int);
1159int hfi1_count_units(int *npresentp, int *nupp);
1160int hfi1_count_active_units(void);
1161
1162int hfi1_diag_add(struct hfi1_devdata *);
1163void hfi1_diag_remove(struct hfi1_devdata *);
1164void handle_linkup_change(struct hfi1_devdata *dd, u32 linkup);
1165
1166void handle_user_interrupt(struct hfi1_ctxtdata *rcd);
1167
1168int hfi1_create_rcvhdrq(struct hfi1_devdata *, struct hfi1_ctxtdata *);
1169int hfi1_setup_eagerbufs(struct hfi1_ctxtdata *);
1170int hfi1_create_ctxts(struct hfi1_devdata *dd);
1171struct hfi1_ctxtdata *hfi1_create_ctxtdata(struct hfi1_pportdata *, u32);
1172void hfi1_init_pportdata(struct pci_dev *, struct hfi1_pportdata *,
1173 struct hfi1_devdata *, u8, u8);
1174void hfi1_free_ctxtdata(struct hfi1_devdata *, struct hfi1_ctxtdata *);
1175
Dean Luickf4f30031c2015-10-26 10:28:44 -04001176int handle_receive_interrupt(struct hfi1_ctxtdata *, int);
1177int handle_receive_interrupt_nodma_rtail(struct hfi1_ctxtdata *, int);
1178int handle_receive_interrupt_dma_rtail(struct hfi1_ctxtdata *, int);
1179
1180/* receive packet handler dispositions */
1181#define RCV_PKT_OK 0x0 /* keep going */
1182#define RCV_PKT_LIMIT 0x1 /* stop, hit limit, start thread */
1183#define RCV_PKT_DONE 0x2 /* stop, no more packets detected */
1184
1185/* calculate the current RHF address */
1186static inline __le32 *get_rhf_addr(struct hfi1_ctxtdata *rcd)
1187{
1188 return (__le32 *)rcd->rcvhdrq + rcd->head + rcd->dd->rhf_offset;
1189}
1190
Mike Marciniszyn77241052015-07-30 15:17:43 -04001191int hfi1_reset_device(int);
1192
1193/* return the driver's idea of the logical OPA port state */
1194static inline u32 driver_lstate(struct hfi1_pportdata *ppd)
1195{
1196 return ppd->lstate; /* use the cached value */
1197}
1198
1199static inline u16 generate_jkey(kuid_t uid)
1200{
1201 return from_kuid(current_user_ns(), uid) & 0xffff;
1202}
1203
1204/*
1205 * active_egress_rate
1206 *
1207 * returns the active egress rate in units of [10^6 bits/sec]
1208 */
1209static inline u32 active_egress_rate(struct hfi1_pportdata *ppd)
1210{
1211 u16 link_speed = ppd->link_speed_active;
1212 u16 link_width = ppd->link_width_active;
1213 u32 egress_rate;
1214
1215 if (link_speed == OPA_LINK_SPEED_25G)
1216 egress_rate = 25000;
1217 else /* assume OPA_LINK_SPEED_12_5G */
1218 egress_rate = 12500;
1219
1220 switch (link_width) {
1221 case OPA_LINK_WIDTH_4X:
1222 egress_rate *= 4;
1223 break;
1224 case OPA_LINK_WIDTH_3X:
1225 egress_rate *= 3;
1226 break;
1227 case OPA_LINK_WIDTH_2X:
1228 egress_rate *= 2;
1229 break;
1230 default:
1231 /* assume IB_WIDTH_1X */
1232 break;
1233 }
1234
1235 return egress_rate;
1236}
1237
1238/*
1239 * egress_cycles
1240 *
1241 * Returns the number of 'fabric clock cycles' to egress a packet
1242 * of length 'len' bytes, at 'rate' Mbit/s. Since the fabric clock
1243 * rate is (approximately) 805 MHz, the units of the returned value
1244 * are (1/805 MHz).
1245 */
1246static inline u32 egress_cycles(u32 len, u32 rate)
1247{
1248 u32 cycles;
1249
1250 /*
1251 * cycles is:
1252 *
1253 * (length) [bits] / (rate) [bits/sec]
1254 * ---------------------------------------------------
1255 * fabric_clock_period == 1 /(805 * 10^6) [cycles/sec]
1256 */
1257
1258 cycles = len * 8; /* bits */
1259 cycles *= 805;
1260 cycles /= rate;
1261
1262 return cycles;
1263}
1264
1265void set_link_ipg(struct hfi1_pportdata *ppd);
1266void process_becn(struct hfi1_pportdata *ppd, u8 sl, u16 rlid, u32 lqpn,
1267 u32 rqpn, u8 svc_type);
1268void return_cnp(struct hfi1_ibport *ibp, struct hfi1_qp *qp, u32 remote_qpn,
1269 u32 pkey, u32 slid, u32 dlid, u8 sc5,
1270 const struct ib_grh *old_grh);
1271
1272#define PACKET_EGRESS_TIMEOUT 350
1273static inline void pause_for_credit_return(struct hfi1_devdata *dd)
1274{
1275 /* Pause at least 1us, to ensure chip returns all credits */
1276 u32 usec = cclock_to_ns(dd, PACKET_EGRESS_TIMEOUT) / 1000;
1277
1278 udelay(usec ? usec : 1);
1279}
1280
1281/**
1282 * sc_to_vlt() reverse lookup sc to vl
1283 * @dd - devdata
1284 * @sc5 - 5 bit sc
1285 */
1286static inline u8 sc_to_vlt(struct hfi1_devdata *dd, u8 sc5)
1287{
1288 unsigned seq;
1289 u8 rval;
1290
1291 if (sc5 >= OPA_MAX_SCS)
1292 return (u8)(0xff);
1293
1294 do {
1295 seq = read_seqbegin(&dd->sc2vl_lock);
1296 rval = *(((u8 *)dd->sc2vl) + sc5);
1297 } while (read_seqretry(&dd->sc2vl_lock, seq));
1298
1299 return rval;
1300}
1301
1302#define PKEY_MEMBER_MASK 0x8000
1303#define PKEY_LOW_15_MASK 0x7fff
1304
1305/*
1306 * ingress_pkey_matches_entry - return 1 if the pkey matches ent (ent
1307 * being an entry from the ingress partition key table), return 0
1308 * otherwise. Use the matching criteria for ingress partition keys
1309 * specified in the OPAv1 spec., section 9.10.14.
1310 */
1311static inline int ingress_pkey_matches_entry(u16 pkey, u16 ent)
1312{
1313 u16 mkey = pkey & PKEY_LOW_15_MASK;
1314 u16 ment = ent & PKEY_LOW_15_MASK;
1315
1316 if (mkey == ment) {
1317 /*
1318 * If pkey[15] is clear (limited partition member),
1319 * is bit 15 in the corresponding table element
1320 * clear (limited member)?
1321 */
1322 if (!(pkey & PKEY_MEMBER_MASK))
1323 return !!(ent & PKEY_MEMBER_MASK);
1324 return 1;
1325 }
1326 return 0;
1327}
1328
1329/*
1330 * ingress_pkey_table_search - search the entire pkey table for
1331 * an entry which matches 'pkey'. return 0 if a match is found,
1332 * and 1 otherwise.
1333 */
1334static int ingress_pkey_table_search(struct hfi1_pportdata *ppd, u16 pkey)
1335{
1336 int i;
1337
1338 for (i = 0; i < MAX_PKEY_VALUES; i++) {
1339 if (ingress_pkey_matches_entry(pkey, ppd->pkeys[i]))
1340 return 0;
1341 }
1342 return 1;
1343}
1344
1345/*
1346 * ingress_pkey_table_fail - record a failure of ingress pkey validation,
1347 * i.e., increment port_rcv_constraint_errors for the port, and record
1348 * the 'error info' for this failure.
1349 */
1350static void ingress_pkey_table_fail(struct hfi1_pportdata *ppd, u16 pkey,
1351 u16 slid)
1352{
1353 struct hfi1_devdata *dd = ppd->dd;
1354
1355 incr_cntr64(&ppd->port_rcv_constraint_errors);
1356 if (!(dd->err_info_rcv_constraint.status & OPA_EI_STATUS_SMASK)) {
1357 dd->err_info_rcv_constraint.status |= OPA_EI_STATUS_SMASK;
1358 dd->err_info_rcv_constraint.slid = slid;
1359 dd->err_info_rcv_constraint.pkey = pkey;
1360 }
1361}
1362
1363/*
1364 * ingress_pkey_check - Return 0 if the ingress pkey is valid, return 1
1365 * otherwise. Use the criteria in the OPAv1 spec, section 9.10.14. idx
1366 * is a hint as to the best place in the partition key table to begin
1367 * searching. This function should not be called on the data path because
1368 * of performance reasons. On datapath pkey check is expected to be done
1369 * by HW and rcv_pkey_check function should be called instead.
1370 */
1371static inline int ingress_pkey_check(struct hfi1_pportdata *ppd, u16 pkey,
1372 u8 sc5, u8 idx, u16 slid)
1373{
1374 if (!(ppd->part_enforce & HFI1_PART_ENFORCE_IN))
1375 return 0;
1376
1377 /* If SC15, pkey[0:14] must be 0x7fff */
1378 if ((sc5 == 0xf) && ((pkey & PKEY_LOW_15_MASK) != PKEY_LOW_15_MASK))
1379 goto bad;
1380
1381 /* Is the pkey = 0x0, or 0x8000? */
1382 if ((pkey & PKEY_LOW_15_MASK) == 0)
1383 goto bad;
1384
1385 /* The most likely matching pkey has index 'idx' */
1386 if (ingress_pkey_matches_entry(pkey, ppd->pkeys[idx]))
1387 return 0;
1388
1389 /* no match - try the whole table */
1390 if (!ingress_pkey_table_search(ppd, pkey))
1391 return 0;
1392
1393bad:
1394 ingress_pkey_table_fail(ppd, pkey, slid);
1395 return 1;
1396}
1397
1398/*
1399 * rcv_pkey_check - Return 0 if the ingress pkey is valid, return 1
1400 * otherwise. It only ensures pkey is vlid for QP0. This function
1401 * should be called on the data path instead of ingress_pkey_check
1402 * as on data path, pkey check is done by HW (except for QP0).
1403 */
1404static inline int rcv_pkey_check(struct hfi1_pportdata *ppd, u16 pkey,
1405 u8 sc5, u16 slid)
1406{
1407 if (!(ppd->part_enforce & HFI1_PART_ENFORCE_IN))
1408 return 0;
1409
1410 /* If SC15, pkey[0:14] must be 0x7fff */
1411 if ((sc5 == 0xf) && ((pkey & PKEY_LOW_15_MASK) != PKEY_LOW_15_MASK))
1412 goto bad;
1413
1414 return 0;
1415bad:
1416 ingress_pkey_table_fail(ppd, pkey, slid);
1417 return 1;
1418}
1419
1420/* MTU handling */
1421
1422/* MTU enumeration, 256-4k match IB */
1423#define OPA_MTU_0 0
1424#define OPA_MTU_256 1
1425#define OPA_MTU_512 2
1426#define OPA_MTU_1024 3
1427#define OPA_MTU_2048 4
1428#define OPA_MTU_4096 5
1429
1430u32 lrh_max_header_bytes(struct hfi1_devdata *dd);
1431int mtu_to_enum(u32 mtu, int default_if_bad);
1432u16 enum_to_mtu(int);
1433static inline int valid_ib_mtu(unsigned int mtu)
1434{
1435 return mtu == 256 || mtu == 512 ||
1436 mtu == 1024 || mtu == 2048 ||
1437 mtu == 4096;
1438}
1439static inline int valid_opa_max_mtu(unsigned int mtu)
1440{
1441 return mtu >= 2048 &&
1442 (valid_ib_mtu(mtu) || mtu == 8192 || mtu == 10240);
1443}
1444
1445int set_mtu(struct hfi1_pportdata *);
1446
1447int hfi1_set_lid(struct hfi1_pportdata *, u32, u8);
1448void hfi1_disable_after_error(struct hfi1_devdata *);
1449int hfi1_set_uevent_bits(struct hfi1_pportdata *, const int);
1450int hfi1_rcvbuf_validate(u32, u8, u16 *);
1451
1452int fm_get_table(struct hfi1_pportdata *, int, void *);
1453int fm_set_table(struct hfi1_pportdata *, int, void *);
1454
1455void set_up_vl15(struct hfi1_devdata *dd, u8 vau, u16 vl15buf);
1456void reset_link_credits(struct hfi1_devdata *dd);
1457void assign_remote_cm_au_table(struct hfi1_devdata *dd, u8 vcu);
1458
1459int snoop_recv_handler(struct hfi1_packet *packet);
Dennis Dalessandrod46e5142015-11-11 00:34:37 -05001460int snoop_send_dma_handler(struct hfi1_qp *qp, struct hfi1_pkt_state *ps,
1461 u64 pbc);
1462int snoop_send_pio_handler(struct hfi1_qp *qp, struct hfi1_pkt_state *ps,
1463 u64 pbc);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001464void snoop_inline_pio_send(struct hfi1_devdata *dd, struct pio_buf *pbuf,
1465 u64 pbc, const void *from, size_t count);
1466
Mike Marciniszyn77241052015-07-30 15:17:43 -04001467static inline struct hfi1_devdata *dd_from_ppd(struct hfi1_pportdata *ppd)
1468{
1469 return ppd->dd;
1470}
1471
1472static inline struct hfi1_devdata *dd_from_dev(struct hfi1_ibdev *dev)
1473{
1474 return container_of(dev, struct hfi1_devdata, verbs_dev);
1475}
1476
1477static inline struct hfi1_devdata *dd_from_ibdev(struct ib_device *ibdev)
1478{
1479 return dd_from_dev(to_idev(ibdev));
1480}
1481
1482static inline struct hfi1_pportdata *ppd_from_ibp(struct hfi1_ibport *ibp)
1483{
1484 return container_of(ibp, struct hfi1_pportdata, ibport_data);
1485}
1486
1487static inline struct hfi1_ibport *to_iport(struct ib_device *ibdev, u8 port)
1488{
1489 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
1490 unsigned pidx = port - 1; /* IB number port from 1, hdw from 0 */
1491
1492 WARN_ON(pidx >= dd->num_pports);
1493 return &dd->pport[pidx].ibport_data;
1494}
1495
1496/*
1497 * Return the indexed PKEY from the port PKEY table.
1498 */
1499static inline u16 hfi1_get_pkey(struct hfi1_ibport *ibp, unsigned index)
1500{
1501 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
1502 u16 ret;
1503
1504 if (index >= ARRAY_SIZE(ppd->pkeys))
1505 ret = 0;
1506 else
1507 ret = ppd->pkeys[index];
1508
1509 return ret;
1510}
1511
1512/*
1513 * Readers of cc_state must call get_cc_state() under rcu_read_lock().
1514 * Writers of cc_state must call get_cc_state() under cc_state_lock.
1515 */
1516static inline struct cc_state *get_cc_state(struct hfi1_pportdata *ppd)
1517{
1518 return rcu_dereference(ppd->cc_state);
1519}
1520
1521/*
1522 * values for dd->flags (_device_ related flags)
1523 */
1524#define HFI1_INITTED 0x1 /* chip and driver up and initted */
1525#define HFI1_PRESENT 0x2 /* chip accesses can be done */
1526#define HFI1_FROZEN 0x4 /* chip in SPC freeze */
1527#define HFI1_HAS_SDMA_TIMEOUT 0x8
1528#define HFI1_HAS_SEND_DMA 0x10 /* Supports Send DMA */
1529#define HFI1_FORCED_FREEZE 0x80 /* driver forced freeze mode */
1530#define HFI1_DO_INIT_ASIC 0x100 /* This device will init the ASIC */
1531
1532/* IB dword length mask in PBC (lower 11 bits); same for all chips */
1533#define HFI1_PBC_LENGTH_MASK ((1 << 11) - 1)
1534
1535
1536/* ctxt_flag bit offsets */
1537 /* context has been setup */
1538#define HFI1_CTXT_SETUP_DONE 1
1539 /* waiting for a packet to arrive */
1540#define HFI1_CTXT_WAITING_RCV 2
1541 /* master has not finished initializing */
1542#define HFI1_CTXT_MASTER_UNINIT 4
1543 /* waiting for an urgent packet to arrive */
1544#define HFI1_CTXT_WAITING_URG 5
1545
1546/* free up any allocated data at closes */
1547struct hfi1_devdata *hfi1_init_dd(struct pci_dev *,
1548 const struct pci_device_id *);
1549void hfi1_free_devdata(struct hfi1_devdata *);
1550void cc_state_reclaim(struct rcu_head *rcu);
1551struct hfi1_devdata *hfi1_alloc_devdata(struct pci_dev *pdev, size_t extra);
1552
1553/*
1554 * Set LED override, only the two LSBs have "public" meaning, but
1555 * any non-zero value substitutes them for the Link and LinkTrain
1556 * LED states.
1557 */
1558#define HFI1_LED_PHYS 1 /* Physical (linktraining) GREEN LED */
1559#define HFI1_LED_LOG 2 /* Logical (link) YELLOW LED */
1560void hfi1_set_led_override(struct hfi1_pportdata *ppd, unsigned int val);
1561
1562#define HFI1_CREDIT_RETURN_RATE (100)
1563
1564/*
1565 * The number of words for the KDETH protocol field. If this is
1566 * larger then the actual field used, then part of the payload
1567 * will be in the header.
1568 *
1569 * Optimally, we want this sized so that a typical case will
1570 * use full cache lines. The typical local KDETH header would
1571 * be:
1572 *
1573 * Bytes Field
1574 * 8 LRH
1575 * 12 BHT
1576 * ?? KDETH
1577 * 8 RHF
1578 * ---
1579 * 28 + KDETH
1580 *
1581 * For a 64-byte cache line, KDETH would need to be 36 bytes or 9 DWORDS
1582 */
1583#define DEFAULT_RCVHDRSIZE 9
1584
1585/*
1586 * Maximal header byte count:
1587 *
1588 * Bytes Field
1589 * 8 LRH
1590 * 40 GRH (optional)
1591 * 12 BTH
1592 * ?? KDETH
1593 * 8 RHF
1594 * ---
1595 * 68 + KDETH
1596 *
1597 * We also want to maintain a cache line alignment to assist DMA'ing
1598 * of the header bytes. Round up to a good size.
1599 */
1600#define DEFAULT_RCVHDR_ENTSIZE 32
1601
Mitko Haralanovdef82282015-12-08 17:10:09 -05001602int hfi1_acquire_user_pages(unsigned long, size_t, bool, struct page **);
1603void hfi1_release_user_pages(struct page **, size_t, bool);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001604
1605static inline void clear_rcvhdrtail(const struct hfi1_ctxtdata *rcd)
1606{
1607 *((u64 *) rcd->rcvhdrtail_kvaddr) = 0ULL;
1608}
1609
1610static inline u32 get_rcvhdrtail(const struct hfi1_ctxtdata *rcd)
1611{
1612 /*
1613 * volatile because it's a DMA target from the chip, routine is
1614 * inlined, and don't want register caching or reordering.
1615 */
1616 return (u32) le64_to_cpu(*rcd->rcvhdrtail_kvaddr);
1617}
1618
1619/*
1620 * sysfs interface.
1621 */
1622
1623extern const char ib_hfi1_version[];
1624
1625int hfi1_device_create(struct hfi1_devdata *);
1626void hfi1_device_remove(struct hfi1_devdata *);
1627
1628int hfi1_create_port_files(struct ib_device *ibdev, u8 port_num,
1629 struct kobject *kobj);
1630int hfi1_verbs_register_sysfs(struct hfi1_devdata *);
1631void hfi1_verbs_unregister_sysfs(struct hfi1_devdata *);
1632/* Hook for sysfs read of QSFP */
1633int qsfp_dump(struct hfi1_pportdata *ppd, char *buf, int len);
1634
1635int hfi1_pcie_init(struct pci_dev *, const struct pci_device_id *);
1636void hfi1_pcie_cleanup(struct pci_dev *);
1637int hfi1_pcie_ddinit(struct hfi1_devdata *, struct pci_dev *,
1638 const struct pci_device_id *);
1639void hfi1_pcie_ddcleanup(struct hfi1_devdata *);
1640void hfi1_pcie_flr(struct hfi1_devdata *);
1641int pcie_speeds(struct hfi1_devdata *);
1642void request_msix(struct hfi1_devdata *, u32 *, struct hfi1_msix_entry *);
1643void hfi1_enable_intx(struct pci_dev *);
Mike Marciniszyn77241052015-07-30 15:17:43 -04001644void restore_pci_variables(struct hfi1_devdata *dd);
1645int do_pcie_gen3_transition(struct hfi1_devdata *dd);
1646int parse_platform_config(struct hfi1_devdata *dd);
1647int get_platform_config_field(struct hfi1_devdata *dd,
1648 enum platform_config_table_type_encoding table_type,
1649 int table_index, int field_index, u32 *data, u32 len);
1650
Mike Marciniszyn77241052015-07-30 15:17:43 -04001651const char *get_unit_name(int unit);
1652
1653/*
1654 * Flush write combining store buffers (if present) and perform a write
1655 * barrier.
1656 */
1657static inline void flush_wc(void)
1658{
1659 asm volatile("sfence" : : : "memory");
1660}
1661
1662void handle_eflags(struct hfi1_packet *packet);
1663int process_receive_ib(struct hfi1_packet *packet);
1664int process_receive_bypass(struct hfi1_packet *packet);
1665int process_receive_error(struct hfi1_packet *packet);
1666int kdeth_process_expected(struct hfi1_packet *packet);
1667int kdeth_process_eager(struct hfi1_packet *packet);
1668int process_receive_invalid(struct hfi1_packet *packet);
1669
1670extern rhf_rcv_function_ptr snoop_rhf_rcv_functions[8];
1671
1672void update_sge(struct hfi1_sge_state *ss, u32 length);
1673
1674/* global module parameter variables */
1675extern unsigned int hfi1_max_mtu;
1676extern unsigned int hfi1_cu;
1677extern unsigned int user_credit_return_threshold;
Sebastian Sanchez2ce6bf22015-12-11 08:44:48 -05001678extern int num_user_contexts;
Mike Marciniszyn77241052015-07-30 15:17:43 -04001679extern unsigned n_krcvqs;
1680extern u8 krcvqs[];
1681extern int krcvqsset;
1682extern uint kdeth_qp;
1683extern uint loopback;
1684extern uint quick_linkup;
1685extern uint rcv_intr_timeout;
1686extern uint rcv_intr_count;
1687extern uint rcv_intr_dynamic;
1688extern ushort link_crc_mask;
1689
1690extern struct mutex hfi1_mutex;
1691
1692/* Number of seconds before our card status check... */
1693#define STATUS_TIMEOUT 60
1694
1695#define DRIVER_NAME "hfi1"
1696#define HFI1_USER_MINOR_BASE 0
1697#define HFI1_TRACE_MINOR 127
1698#define HFI1_DIAGPKT_MINOR 128
1699#define HFI1_DIAG_MINOR_BASE 129
1700#define HFI1_SNOOP_CAPTURE_BASE 200
1701#define HFI1_NMINORS 255
1702
1703#define PCI_VENDOR_ID_INTEL 0x8086
1704#define PCI_DEVICE_ID_INTEL0 0x24f0
1705#define PCI_DEVICE_ID_INTEL1 0x24f1
1706
1707#define HFI1_PKT_USER_SC_INTEGRITY \
1708 (SEND_CTXT_CHECK_ENABLE_DISALLOW_NON_KDETH_PACKETS_SMASK \
1709 | SEND_CTXT_CHECK_ENABLE_DISALLOW_BYPASS_SMASK \
1710 | SEND_CTXT_CHECK_ENABLE_DISALLOW_GRH_SMASK)
1711
1712#define HFI1_PKT_KERNEL_SC_INTEGRITY \
1713 (SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK)
1714
1715static inline u64 hfi1_pkt_default_send_ctxt_mask(struct hfi1_devdata *dd,
1716 u16 ctxt_type)
1717{
1718 u64 base_sc_integrity =
1719 SEND_CTXT_CHECK_ENABLE_DISALLOW_BYPASS_BAD_PKT_LEN_SMASK
1720 | SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK
1721 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_LONG_BYPASS_PACKETS_SMASK
1722 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_LONG_IB_PACKETS_SMASK
1723 | SEND_CTXT_CHECK_ENABLE_DISALLOW_BAD_PKT_LEN_SMASK
1724 | SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_TEST_SMASK
1725 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_SMALL_BYPASS_PACKETS_SMASK
1726 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_SMALL_IB_PACKETS_SMASK
1727 | SEND_CTXT_CHECK_ENABLE_DISALLOW_RAW_IPV6_SMASK
1728 | SEND_CTXT_CHECK_ENABLE_DISALLOW_RAW_SMASK
1729 | SEND_CTXT_CHECK_ENABLE_CHECK_BYPASS_VL_MAPPING_SMASK
1730 | SEND_CTXT_CHECK_ENABLE_CHECK_VL_MAPPING_SMASK
1731 | SEND_CTXT_CHECK_ENABLE_CHECK_OPCODE_SMASK
1732 | SEND_CTXT_CHECK_ENABLE_CHECK_SLID_SMASK
1733 | SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK
1734 | SEND_CTXT_CHECK_ENABLE_CHECK_VL_SMASK
1735 | SEND_CTXT_CHECK_ENABLE_CHECK_ENABLE_SMASK;
1736
1737 if (ctxt_type == SC_USER)
1738 base_sc_integrity |= HFI1_PKT_USER_SC_INTEGRITY;
1739 else
1740 base_sc_integrity |= HFI1_PKT_KERNEL_SC_INTEGRITY;
1741
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05001742 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001743 /* turn off send-side job key checks - A0 erratum */
1744 return base_sc_integrity &
1745 ~SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
1746 return base_sc_integrity;
1747}
1748
1749static inline u64 hfi1_pkt_base_sdma_integrity(struct hfi1_devdata *dd)
1750{
1751 u64 base_sdma_integrity =
1752 SEND_DMA_CHECK_ENABLE_DISALLOW_BYPASS_BAD_PKT_LEN_SMASK
1753 | SEND_DMA_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK
1754 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_LONG_BYPASS_PACKETS_SMASK
1755 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_LONG_IB_PACKETS_SMASK
1756 | SEND_DMA_CHECK_ENABLE_DISALLOW_BAD_PKT_LEN_SMASK
1757 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_SMALL_BYPASS_PACKETS_SMASK
1758 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_SMALL_IB_PACKETS_SMASK
1759 | SEND_DMA_CHECK_ENABLE_DISALLOW_RAW_IPV6_SMASK
1760 | SEND_DMA_CHECK_ENABLE_DISALLOW_RAW_SMASK
1761 | SEND_DMA_CHECK_ENABLE_CHECK_BYPASS_VL_MAPPING_SMASK
1762 | SEND_DMA_CHECK_ENABLE_CHECK_VL_MAPPING_SMASK
1763 | SEND_DMA_CHECK_ENABLE_CHECK_OPCODE_SMASK
1764 | SEND_DMA_CHECK_ENABLE_CHECK_SLID_SMASK
1765 | SEND_DMA_CHECK_ENABLE_CHECK_JOB_KEY_SMASK
1766 | SEND_DMA_CHECK_ENABLE_CHECK_VL_SMASK
1767 | SEND_DMA_CHECK_ENABLE_CHECK_ENABLE_SMASK;
1768
Mike Marciniszyn995deaf2015-11-16 21:59:29 -05001769 if (is_ax(dd))
Mike Marciniszyn77241052015-07-30 15:17:43 -04001770 /* turn off send-side job key checks - A0 erratum */
1771 return base_sdma_integrity &
1772 ~SEND_DMA_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
1773 return base_sdma_integrity;
1774}
1775
1776/*
1777 * hfi1_early_err is used (only!) to print early errors before devdata is
1778 * allocated, or when dd->pcidev may not be valid, and at the tail end of
1779 * cleanup when devdata may have been freed, etc. hfi1_dev_porterr is
1780 * the same as dd_dev_err, but is used when the message really needs
1781 * the IB port# to be definitive as to what's happening..
1782 */
1783#define hfi1_early_err(dev, fmt, ...) \
1784 dev_err(dev, fmt, ##__VA_ARGS__)
1785
1786#define hfi1_early_info(dev, fmt, ...) \
1787 dev_info(dev, fmt, ##__VA_ARGS__)
1788
1789#define dd_dev_emerg(dd, fmt, ...) \
1790 dev_emerg(&(dd)->pcidev->dev, "%s: " fmt, \
1791 get_unit_name((dd)->unit), ##__VA_ARGS__)
1792#define dd_dev_err(dd, fmt, ...) \
1793 dev_err(&(dd)->pcidev->dev, "%s: " fmt, \
1794 get_unit_name((dd)->unit), ##__VA_ARGS__)
1795#define dd_dev_warn(dd, fmt, ...) \
1796 dev_warn(&(dd)->pcidev->dev, "%s: " fmt, \
1797 get_unit_name((dd)->unit), ##__VA_ARGS__)
1798
1799#define dd_dev_warn_ratelimited(dd, fmt, ...) \
1800 dev_warn_ratelimited(&(dd)->pcidev->dev, "%s: " fmt, \
1801 get_unit_name((dd)->unit), ##__VA_ARGS__)
1802
1803#define dd_dev_info(dd, fmt, ...) \
1804 dev_info(&(dd)->pcidev->dev, "%s: " fmt, \
1805 get_unit_name((dd)->unit), ##__VA_ARGS__)
1806
Ira Weinya1edc182016-01-11 13:04:32 -05001807#define dd_dev_dbg(dd, fmt, ...) \
1808 dev_dbg(&(dd)->pcidev->dev, "%s: " fmt, \
1809 get_unit_name((dd)->unit), ##__VA_ARGS__)
1810
Mike Marciniszyn77241052015-07-30 15:17:43 -04001811#define hfi1_dev_porterr(dd, port, fmt, ...) \
1812 dev_err(&(dd)->pcidev->dev, "%s: IB%u:%u " fmt, \
1813 get_unit_name((dd)->unit), (dd)->unit, (port), \
1814 ##__VA_ARGS__)
1815
1816/*
1817 * this is used for formatting hw error messages...
1818 */
1819struct hfi1_hwerror_msgs {
1820 u64 mask;
1821 const char *msg;
1822 size_t sz;
1823};
1824
1825/* in intr.c... */
1826void hfi1_format_hwerrors(u64 hwerrs,
1827 const struct hfi1_hwerror_msgs *hwerrmsgs,
1828 size_t nhwerrmsgs, char *msg, size_t lmsg);
1829
1830#define USER_OPCODE_CHECK_VAL 0xC0
1831#define USER_OPCODE_CHECK_MASK 0xC0
1832#define OPCODE_CHECK_VAL_DISABLED 0x0
1833#define OPCODE_CHECK_MASK_DISABLED 0x0
1834
1835static inline void hfi1_reset_cpu_counters(struct hfi1_devdata *dd)
1836{
1837 struct hfi1_pportdata *ppd;
1838 int i;
1839
1840 dd->z_int_counter = get_all_cpu_total(dd->int_counter);
1841 dd->z_rcv_limit = get_all_cpu_total(dd->rcv_limit);
1842
1843 ppd = (struct hfi1_pportdata *)(dd + 1);
1844 for (i = 0; i < dd->num_pports; i++, ppd++) {
1845 ppd->ibport_data.z_rc_acks =
1846 get_all_cpu_total(ppd->ibport_data.rc_acks);
1847 ppd->ibport_data.z_rc_qacks =
1848 get_all_cpu_total(ppd->ibport_data.rc_qacks);
1849 }
1850}
1851
1852/* Control LED state */
1853static inline void setextled(struct hfi1_devdata *dd, u32 on)
1854{
1855 if (on)
1856 write_csr(dd, DCC_CFG_LED_CNTRL, 0x1F);
1857 else
1858 write_csr(dd, DCC_CFG_LED_CNTRL, 0x10);
1859}
1860
1861int hfi1_tempsense_rd(struct hfi1_devdata *dd, struct hfi1_temp *temp);
1862
1863#endif /* _HFI1_KERNEL_H */