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