]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/infiniband/hw/hfi1/hfi.h
IB/hfi1: OPA_VNIC RDMA netdev support
[mirror_ubuntu-jammy-kernel.git] / drivers / infiniband / hw / hfi1 / hfi.h
CommitLineData
77241056
MM
1#ifndef _HFI1_KERNEL_H
2#define _HFI1_KERNEL_H
3/*
d4829ea6 4 * Copyright(c) 2015-2017 Intel Corporation.
77241056
MM
5 *
6 * This file is provided under a dual BSD/GPLv2 license. When using or
7 * redistributing this file, you may do so under either license.
8 *
9 * GPL LICENSE SUMMARY
10 *
77241056
MM
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
13 * published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * BSD LICENSE
21 *
77241056
MM
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 *
26 * - Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * - Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in
30 * the documentation and/or other materials provided with the
31 * distribution.
32 * - Neither the name of Intel Corporation nor the names of its
33 * contributors may be used to endorse or promote products derived
34 * from this software without specific prior written permission.
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
37 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
38 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
39 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
40 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
42 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
43 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
44 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
45 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
46 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
47 *
48 */
49
50#include <linux/interrupt.h>
51#include <linux/pci.h>
52#include <linux/dma-mapping.h>
53#include <linux/mutex.h>
54#include <linux/list.h>
55#include <linux/scatterlist.h>
56#include <linux/slab.h>
57#include <linux/io.h>
58#include <linux/fs.h>
59#include <linux/completion.h>
60#include <linux/kref.h>
61#include <linux/sched.h>
62#include <linux/cdev.h>
63#include <linux/delay.h>
64#include <linux/kthread.h>
dba715f0
DL
65#include <linux/i2c.h>
66#include <linux/i2c-algo-bit.h>
261a4351 67#include <rdma/ib_hdrs.h>
0cb2aa69 68#include <linux/rhashtable.h>
ec3f2c12 69#include <rdma/rdma_vt.h>
77241056
MM
70
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"
8ebd4cf1 78#include "platform.h"
957558c9 79#include "affinity.h"
77241056
MM
80
81/* bumped 1 from s/w major version of TrueScale */
82#define HFI1_CHIP_VERS_MAJ 3U
83
84/* don't care about this except printing */
85#define HFI1_CHIP_VERS_MIN 0U
86
87/* The Organization Unique Identifier (Mfg code), and its position in GUID */
88#define HFI1_OUI 0x001175
89#define HFI1_OUI_LSB 40
90
91#define DROP_PACKET_OFF 0
92#define DROP_PACKET_ON 1
93
94extern unsigned long hfi1_cap_mask;
95#define HFI1_CAP_KGET_MASK(mask, cap) ((mask) & HFI1_CAP_##cap)
96#define HFI1_CAP_UGET_MASK(mask, cap) \
97 (((mask) >> HFI1_CAP_USER_SHIFT) & HFI1_CAP_##cap)
98#define HFI1_CAP_KGET(cap) (HFI1_CAP_KGET_MASK(hfi1_cap_mask, cap))
99#define HFI1_CAP_UGET(cap) (HFI1_CAP_UGET_MASK(hfi1_cap_mask, cap))
100#define HFI1_CAP_IS_KSET(cap) (!!HFI1_CAP_KGET(cap))
101#define HFI1_CAP_IS_USET(cap) (!!HFI1_CAP_UGET(cap))
102#define HFI1_MISC_GET() ((hfi1_cap_mask >> HFI1_CAP_MISC_SHIFT) & \
103 HFI1_CAP_MISC_MASK)
a9c05e35
BM
104/* Offline Disabled Reason is 4-bits */
105#define HFI1_ODR_MASK(rsn) ((rsn) & OPA_PI_MASK_OFFLINE_REASON)
77241056 106
82c2611d
NV
107/*
108 * Control context is always 0 and handles the error packets.
109 * It also handles the VL15 and multicast packets.
110 */
111#define HFI1_CTRL_CTXT 0
112
2c5b521a
JR
113/*
114 * Driver context will store software counters for each of the events
115 * associated with these status registers
116 */
117#define NUM_CCE_ERR_STATUS_COUNTERS 41
118#define NUM_RCV_ERR_STATUS_COUNTERS 64
119#define NUM_MISC_ERR_STATUS_COUNTERS 13
120#define NUM_SEND_PIO_ERR_STATUS_COUNTERS 36
121#define NUM_SEND_DMA_ERR_STATUS_COUNTERS 4
122#define NUM_SEND_EGRESS_ERR_STATUS_COUNTERS 64
123#define NUM_SEND_ERR_STATUS_COUNTERS 3
124#define NUM_SEND_CTXT_ERR_STATUS_COUNTERS 5
125#define NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS 24
126
77241056
MM
127/*
128 * per driver stats, either not device nor port-specific, or
129 * summed over all of the devices and ports.
130 * They are described by name via ipathfs filesystem, so layout
131 * and number of elements can change without breaking compatibility.
132 * If members are added or deleted hfi1_statnames[] in debugfs.c must
133 * change to match.
134 */
135struct hfi1_ib_stats {
136 __u64 sps_ints; /* number of interrupts handled */
137 __u64 sps_errints; /* number of error interrupts */
138 __u64 sps_txerrs; /* tx-related packet errors */
139 __u64 sps_rcverrs; /* non-crc rcv packet errors */
140 __u64 sps_hwerrs; /* hardware errors reported (parity, etc.) */
141 __u64 sps_nopiobufs; /* no pio bufs avail from kernel */
142 __u64 sps_ctxts; /* number of contexts currently open */
143 __u64 sps_lenerrs; /* number of kernel packets where RHF != LRH len */
144 __u64 sps_buffull;
145 __u64 sps_hdrfull;
146};
147
148extern struct hfi1_ib_stats hfi1_stats;
149extern const struct pci_error_handlers hfi1_pci_err_handler;
150
151/*
152 * First-cut criterion for "device is active" is
153 * two thousand dwords combined Tx, Rx traffic per
154 * 5-second interval. SMA packets are 64 dwords,
155 * and occur "a few per second", presumably each way.
156 */
157#define HFI1_TRAFFIC_ACTIVE_THRESHOLD (2000)
158
159/*
160 * Below contains all data related to a single context (formerly called port).
161 */
162
163#ifdef CONFIG_DEBUG_FS
164struct hfi1_opcode_stats_perctx;
165#endif
166
77241056
MM
167struct ctxt_eager_bufs {
168 ssize_t size; /* total size of eager buffers */
169 u32 count; /* size of buffers array */
170 u32 numbufs; /* number of buffers allocated */
171 u32 alloced; /* number of rcvarray entries used */
172 u32 rcvtid_size; /* size of each eager rcv tid */
173 u32 threshold; /* head update threshold */
174 struct eager_buffer {
175 void *addr;
60368186 176 dma_addr_t dma;
77241056
MM
177 ssize_t len;
178 } *buffers;
179 struct {
180 void *addr;
60368186 181 dma_addr_t dma;
77241056
MM
182 } *rcvtids;
183};
184
a86cd357
MH
185struct exp_tid_set {
186 struct list_head list;
187 u32 count;
188};
189
77241056
MM
190struct hfi1_ctxtdata {
191 /* shadow the ctxt's RcvCtrl register */
192 u64 rcvctrl;
193 /* rcvhdrq base, needs mmap before useful */
194 void *rcvhdrq;
195 /* kernel virtual address where hdrqtail is updated */
196 volatile __le64 *rcvhdrtail_kvaddr;
197 /*
198 * Shared page for kernel to signal user processes that send buffers
199 * need disarming. The process should call HFI1_CMD_DISARM_BUFS
200 * or HFI1_CMD_ACK_EVENT with IPATH_EVENT_DISARM_BUFS set.
201 */
202 unsigned long *user_event_mask;
203 /* when waiting for rcv or pioavail */
204 wait_queue_head_t wait;
205 /* rcvhdrq size (for freeing) */
206 size_t rcvhdrq_size;
207 /* number of rcvhdrq entries */
208 u16 rcvhdrq_cnt;
209 /* size of each of the rcvhdrq entries */
210 u16 rcvhdrqentsize;
211 /* mmap of hdrq, must fit in 44 bits */
60368186
TK
212 dma_addr_t rcvhdrq_dma;
213 dma_addr_t rcvhdrqtailaddr_dma;
77241056
MM
214 struct ctxt_eager_bufs egrbufs;
215 /* this receive context's assigned PIO ACK send context */
216 struct send_context *sc;
217
218 /* dynamic receive available interrupt timeout */
219 u32 rcvavail_timeout;
220 /*
221 * number of opens (including slave sub-contexts) on this instance
222 * (ignoring forks, dup, etc. for now)
223 */
224 int cnt;
225 /*
226 * how much space to leave at start of eager TID entries for
227 * protocol use, on each TID
228 */
229 /* instead of calculating it */
230 unsigned ctxt;
231 /* non-zero if ctxt is being shared. */
232 u16 subctxt_cnt;
233 /* non-zero if ctxt is being shared. */
234 u16 subctxt_id;
235 u8 uuid[16];
236 /* job key */
237 u16 jkey;
238 /* number of RcvArray groups for this context. */
239 u32 rcv_array_groups;
240 /* index of first eager TID entry. */
241 u32 eager_base;
242 /* number of expected TID entries */
243 u32 expected_count;
244 /* index of first expected TID entry. */
245 u32 expected_base;
a86cd357
MH
246
247 struct exp_tid_set tid_group_list;
248 struct exp_tid_set tid_used_list;
249 struct exp_tid_set tid_full_list;
250
77241056 251 /* lock protecting all Expected TID data */
463e6ebc 252 struct mutex exp_lock;
77241056
MM
253 /* number of pio bufs for this ctxt (all procs, if shared) */
254 u32 piocnt;
255 /* first pio buffer for this ctxt */
256 u32 pio_base;
257 /* chip offset of PIO buffers for this ctxt */
258 u32 piobufs;
259 /* per-context configuration flags */
bdf7752e 260 unsigned long flags;
77241056
MM
261 /* per-context event flags for fileops/intr communication */
262 unsigned long event_flags;
263 /* WAIT_RCV that timed out, no interrupt */
264 u32 rcvwait_to;
265 /* WAIT_PIO that timed out, no interrupt */
266 u32 piowait_to;
267 /* WAIT_RCV already happened, no wait */
268 u32 rcvnowait;
269 /* WAIT_PIO already happened, no wait */
270 u32 pionowait;
271 /* total number of polled urgent packets */
272 u32 urgent;
273 /* saved total number of polled urgent packets for poll edge trigger */
274 u32 urgent_poll;
77241056 275 /* same size as task_struct .comm[], command that opened context */
c3af8a28 276 char comm[TASK_COMM_LEN];
77241056
MM
277 /* 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;
6a14c5ea 314 /* protect sdma queues */
77241056
MM
315 spinlock_t sdma_qlock;
316
affa48de
AD
317 /* Is ASPM interrupt supported for this context */
318 bool aspm_intr_supported;
319 /* ASPM state (enabled/disabled) for this context */
320 bool aspm_enabled;
321 /* Timer for re-enabling ASPM if interrupt activity quietens down */
322 struct timer_list aspm_timer;
323 /* Lock to serialize between intr, timer intr and user threads */
324 spinlock_t aspm_lock;
325 /* Is ASPM processing enabled for this context (in intr context) */
326 bool aspm_intr_enable;
327 /* Last interrupt timestamp */
328 ktime_t aspm_ts_last_intr;
329 /* Last timestamp at which we scheduled a timer for this context */
330 ktime_t aspm_ts_timer_sched;
331
77241056
MM
332 /*
333 * The interrupt handler for a particular receive context can vary
334 * throughout it's lifetime. This is not a lock protected data member so
335 * it must be updated atomically and the prev and new value must always
336 * be valid. Worst case is we process an extra interrupt and up to 64
337 * packets with the wrong interrupt handler.
338 */
f4f30031 339 int (*do_interrupt)(struct hfi1_ctxtdata *rcd, int threaded);
d4829ea6
VN
340
341 /* Indicates that this is vnic context */
342 bool is_vnic;
343
344 /* vnic queue index this context is mapped to */
345 u8 vnic_q_idx;
77241056
MM
346};
347
348/*
349 * Represents a single packet at a high level. Put commonly computed things in
350 * here so we do not have to keep doing them over and over. The rule of thumb is
351 * if something is used one time to derive some value, store that something in
352 * here. If it is used multiple times, then store the result of that derivation
353 * in here.
354 */
355struct hfi1_packet {
356 void *ebuf;
357 void *hdr;
358 struct hfi1_ctxtdata *rcd;
359 __le32 *rhf_addr;
895420dd 360 struct rvt_qp *qp;
261a4351 361 struct ib_other_headers *ohdr;
77241056
MM
362 u64 rhf;
363 u32 maxcnt;
364 u32 rhqoff;
77241056 365 u16 tlen;
77241056 366 s16 etail;
76327627
SS
367 u8 hlen;
368 u8 numpkt;
369 u8 rsize;
77241056
MM
370 u8 updegr;
371 u8 rcv_flags;
372 u8 etype;
373};
374
895420dd 375struct rvt_sge_state;
77241056
MM
376
377/*
378 * Get/Set IB link-level config parameters for f_get/set_ib_cfg()
379 * Mostly for MADs that set or query link parameters, also ipath
380 * config interfaces
381 */
382#define HFI1_IB_CFG_LIDLMC 0 /* LID (LS16b) and Mask (MS16b) */
383#define HFI1_IB_CFG_LWID_DG_ENB 1 /* allowed Link-width downgrade */
384#define HFI1_IB_CFG_LWID_ENB 2 /* allowed Link-width */
385#define HFI1_IB_CFG_LWID 3 /* currently active Link-width */
386#define HFI1_IB_CFG_SPD_ENB 4 /* allowed Link speeds */
387#define HFI1_IB_CFG_SPD 5 /* current Link spd */
388#define HFI1_IB_CFG_RXPOL_ENB 6 /* Auto-RX-polarity enable */
389#define HFI1_IB_CFG_LREV_ENB 7 /* Auto-Lane-reversal enable */
390#define HFI1_IB_CFG_LINKLATENCY 8 /* Link Latency (IB1.2 only) */
391#define HFI1_IB_CFG_HRTBT 9 /* IB heartbeat off/enable/auto; DDR/QDR only */
392#define HFI1_IB_CFG_OP_VLS 10 /* operational VLs */
393#define HFI1_IB_CFG_VL_HIGH_CAP 11 /* num of VL high priority weights */
394#define HFI1_IB_CFG_VL_LOW_CAP 12 /* num of VL low priority weights */
395#define HFI1_IB_CFG_OVERRUN_THRESH 13 /* IB overrun threshold */
396#define HFI1_IB_CFG_PHYERR_THRESH 14 /* IB PHY error threshold */
397#define HFI1_IB_CFG_LINKDEFAULT 15 /* IB link default (sleep/poll) */
398#define HFI1_IB_CFG_PKEYS 16 /* update partition keys */
399#define HFI1_IB_CFG_MTU 17 /* update MTU in IBC */
400#define HFI1_IB_CFG_VL_HIGH_LIMIT 19
401#define HFI1_IB_CFG_PMA_TICKS 20 /* PMA sample tick resolution */
402#define HFI1_IB_CFG_PORT 21 /* switch port we are connected to */
403
404/*
405 * HFI or Host Link States
406 *
407 * These describe the states the driver thinks the logical and physical
408 * states are in. Used as an argument to set_link_state(). Implemented
409 * as bits for easy multi-state checking. The actual state can only be
410 * one.
411 */
412#define __HLS_UP_INIT_BP 0
413#define __HLS_UP_ARMED_BP 1
414#define __HLS_UP_ACTIVE_BP 2
415#define __HLS_DN_DOWNDEF_BP 3 /* link down default */
416#define __HLS_DN_POLL_BP 4
417#define __HLS_DN_DISABLE_BP 5
418#define __HLS_DN_OFFLINE_BP 6
419#define __HLS_VERIFY_CAP_BP 7
420#define __HLS_GOING_UP_BP 8
421#define __HLS_GOING_OFFLINE_BP 9
422#define __HLS_LINK_COOLDOWN_BP 10
423
349ac71f 424#define HLS_UP_INIT BIT(__HLS_UP_INIT_BP)
425#define HLS_UP_ARMED BIT(__HLS_UP_ARMED_BP)
426#define HLS_UP_ACTIVE BIT(__HLS_UP_ACTIVE_BP)
427#define HLS_DN_DOWNDEF BIT(__HLS_DN_DOWNDEF_BP) /* link down default */
428#define HLS_DN_POLL BIT(__HLS_DN_POLL_BP)
429#define HLS_DN_DISABLE BIT(__HLS_DN_DISABLE_BP)
430#define HLS_DN_OFFLINE BIT(__HLS_DN_OFFLINE_BP)
431#define HLS_VERIFY_CAP BIT(__HLS_VERIFY_CAP_BP)
432#define HLS_GOING_UP BIT(__HLS_GOING_UP_BP)
433#define HLS_GOING_OFFLINE BIT(__HLS_GOING_OFFLINE_BP)
434#define HLS_LINK_COOLDOWN BIT(__HLS_LINK_COOLDOWN_BP)
77241056
MM
435
436#define HLS_UP (HLS_UP_INIT | HLS_UP_ARMED | HLS_UP_ACTIVE)
0c7f77af 437#define HLS_DOWN ~(HLS_UP)
77241056
MM
438
439/* use this MTU size if none other is given */
ef699e84 440#define HFI1_DEFAULT_ACTIVE_MTU 10240
77241056 441/* use this MTU size as the default maximum */
ef699e84 442#define HFI1_DEFAULT_MAX_MTU 10240
77241056
MM
443/* default partition key */
444#define DEFAULT_PKEY 0xffff
445
446/*
447 * Possible fabric manager config parameters for fm_{get,set}_table()
448 */
449#define FM_TBL_VL_HIGH_ARB 1 /* Get/set VL high prio weights */
450#define FM_TBL_VL_LOW_ARB 2 /* Get/set VL low prio weights */
451#define FM_TBL_BUFFER_CONTROL 3 /* Get/set Buffer Control */
452#define FM_TBL_SC2VLNT 4 /* Get/set SC->VLnt */
453#define FM_TBL_VL_PREEMPT_ELEMS 5 /* Get (no set) VL preempt elems */
454#define FM_TBL_VL_PREEMPT_MATRIX 6 /* Get (no set) VL preempt matrix */
455
456/*
457 * Possible "operations" for f_rcvctrl(ppd, op, ctxt)
458 * these are bits so they can be combined, e.g.
459 * HFI1_RCVCTRL_INTRAVAIL_ENB | HFI1_RCVCTRL_CTXT_ENB
460 */
461#define HFI1_RCVCTRL_TAILUPD_ENB 0x01
462#define HFI1_RCVCTRL_TAILUPD_DIS 0x02
463#define HFI1_RCVCTRL_CTXT_ENB 0x04
464#define HFI1_RCVCTRL_CTXT_DIS 0x08
465#define HFI1_RCVCTRL_INTRAVAIL_ENB 0x10
466#define HFI1_RCVCTRL_INTRAVAIL_DIS 0x20
467#define HFI1_RCVCTRL_PKEY_ENB 0x40 /* Note, default is enabled */
468#define HFI1_RCVCTRL_PKEY_DIS 0x80
469#define HFI1_RCVCTRL_TIDFLOW_ENB 0x0400
470#define HFI1_RCVCTRL_TIDFLOW_DIS 0x0800
471#define HFI1_RCVCTRL_ONE_PKT_EGR_ENB 0x1000
472#define HFI1_RCVCTRL_ONE_PKT_EGR_DIS 0x2000
473#define HFI1_RCVCTRL_NO_RHQ_DROP_ENB 0x4000
474#define HFI1_RCVCTRL_NO_RHQ_DROP_DIS 0x8000
475#define HFI1_RCVCTRL_NO_EGR_DROP_ENB 0x10000
476#define HFI1_RCVCTRL_NO_EGR_DROP_DIS 0x20000
477
478/* partition enforcement flags */
479#define HFI1_PART_ENFORCE_IN 0x1
480#define HFI1_PART_ENFORCE_OUT 0x2
481
482/* how often we check for synthetic counter wrap around */
483#define SYNTH_CNT_TIME 2
484
485/* Counter flags */
486#define CNTR_NORMAL 0x0 /* Normal counters, just read register */
487#define CNTR_SYNTH 0x1 /* Synthetic counters, saturate at all 1s */
488#define CNTR_DISABLED 0x2 /* Disable this counter */
489#define CNTR_32BIT 0x4 /* Simulate 64 bits for this counter */
490#define CNTR_VL 0x8 /* Per VL counter */
a699c6c2 491#define CNTR_SDMA 0x10
77241056
MM
492#define CNTR_INVALID_VL -1 /* Specifies invalid VL */
493#define CNTR_MODE_W 0x0
494#define CNTR_MODE_R 0x1
495
496/* VLs Supported/Operational */
497#define HFI1_MIN_VLS_SUPPORTED 1
498#define HFI1_MAX_VLS_SUPPORTED 8
499
a6cd5f08
JP
500#define HFI1_GUIDS_PER_PORT 5
501#define HFI1_PORT_GUID_INDEX 0
502
77241056
MM
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 {
957558c9 517 enum irq_type type;
77241056
MM
518 struct msix_entry msix;
519 void *arg;
520 char name[MAX_NAME_SIZE];
957558c9 521 cpumask_t mask;
2d01c37d 522 struct irq_affinity_notify notify;
77241056
MM
523};
524
525/* per-SL CCA information */
526struct cca_timer {
527 struct hrtimer hrtimer;
528 struct hfi1_pportdata *ppd; /* read-only */
529 int sl; /* read-only */
530 u16 ccti; /* read/write - current value of CCTI */
531};
532
533struct link_down_reason {
534 /*
535 * SMA-facing value. Should be set from .latest when
536 * HLS_UP_* -> HLS_DN_* transition actually occurs.
537 */
538 u8 sma;
539 u8 latest;
540};
541
542enum {
543 LO_PRIO_TABLE,
544 HI_PRIO_TABLE,
545 MAX_PRIO_TABLE
546};
547
548struct vl_arb_cache {
6a14c5ea 549 /* protect vl arb cache */
77241056
MM
550 spinlock_t lock;
551 struct ib_vl_weight_elem table[VL_ARB_TABLE_SIZE];
552};
553
554/*
555 * The structure below encapsulates data relevant to a physical IB Port.
556 * Current chips support only one such port, but the separation
557 * clarifies things a bit. Note that to conform to IB conventions,
558 * port-numbers are one-based. The first or only port is port1.
559 */
560struct hfi1_pportdata {
561 struct hfi1_ibport ibport_data;
562
563 struct hfi1_devdata *dd;
564 struct kobject pport_cc_kobj;
565 struct kobject sc2vl_kobj;
566 struct kobject sl2sc_kobj;
567 struct kobject vl2mtu_kobj;
568
8ebd4cf1 569 /* PHY support */
77241056 570 struct qsfp_data qsfp_info;
fe4d9243
EH
571 /* Values for SI tuning of SerDes */
572 u32 port_type;
573 u32 tx_preset_eq;
574 u32 tx_preset_noeq;
575 u32 rx_preset;
576 u8 local_atten;
577 u8 remote_atten;
578 u8 default_atten;
579 u8 max_power_class;
77241056 580
a6cd5f08
JP
581 /* GUIDs for this interface, in host order, guids[0] is a port guid */
582 u64 guids[HFI1_GUIDS_PER_PORT];
77241056 583
77241056
MM
584 /* GUID for peer interface, in host order */
585 u64 neighbor_guid;
586
587 /* up or down physical link state */
588 u32 linkup;
589
590 /*
591 * this address is mapped read-only into user processes so they can
592 * get status cheaply, whenever they want. One qword of status per port
593 */
594 u64 *statusp;
595
596 /* SendDMA related entries */
597
598 struct workqueue_struct *hfi1_wq;
599
600 /* move out of interrupt context */
601 struct work_struct link_vc_work;
602 struct work_struct link_up_work;
603 struct work_struct link_down_work;
604 struct work_struct sma_message_work;
605 struct work_struct freeze_work;
606 struct work_struct link_downgrade_work;
607 struct work_struct link_bounce_work;
673b975f 608 struct delayed_work start_link_work;
77241056
MM
609 /* host link state variables */
610 struct mutex hls_lock;
611 u32 host_link_state;
612
77241056
MM
613 u32 lstate; /* logical link state */
614
615 /* these are the "32 bit" regs */
616
617 u32 ibmtu; /* The MTU programmed for this unit */
618 /*
619 * Current max size IB packet (in bytes) including IB headers, that
620 * we can send. Changes when ibmtu changes.
621 */
622 u32 ibmaxlen;
623 u32 current_egress_rate; /* units [10^6 bits/sec] */
624 /* LID programmed for this instance */
625 u16 lid;
626 /* list of pkeys programmed; 0 if not set */
627 u16 pkeys[MAX_PKEY_VALUES];
628 u16 link_width_supported;
629 u16 link_width_downgrade_supported;
630 u16 link_speed_supported;
631 u16 link_width_enabled;
632 u16 link_width_downgrade_enabled;
633 u16 link_speed_enabled;
634 u16 link_width_active;
635 u16 link_width_downgrade_tx_active;
636 u16 link_width_downgrade_rx_active;
637 u16 link_speed_active;
638 u8 vls_supported;
639 u8 vls_operational;
8a4d3444 640 u8 actual_vls_operational;
77241056
MM
641 /* LID mask control */
642 u8 lmc;
643 /* Rx Polarity inversion (compensate for ~tx on partner) */
644 u8 rx_pol_inv;
645
646 u8 hw_pidx; /* physical port index */
647 u8 port; /* IB port number and index into dd->pports - 1 */
648 /* type of neighbor node */
649 u8 neighbor_type;
650 u8 neighbor_normal;
651 u8 neighbor_fm_security; /* 1 if firmware checking is disabled */
652 u8 neighbor_port_number;
653 u8 is_sm_config_started;
654 u8 offline_disabled_reason;
655 u8 is_active_optimize_enabled;
656 u8 driver_link_ready; /* driver ready for active link */
657 u8 link_enabled; /* link enabled? */
658 u8 linkinit_reason;
659 u8 local_tx_rate; /* rate given to 8051 firmware */
f45c8dc8 660 u8 last_pstate; /* info only */
673b975f 661 u8 qsfp_retry_count;
77241056
MM
662
663 /* placeholders for IB MAD packet settings */
664 u8 overrun_threshold;
665 u8 phy_error_threshold;
666
91ab4ed3
EH
667 /* Used to override LED behavior for things like maintenance beaconing*/
668 /*
669 * Alternates per phase of blink
670 * [0] holds LED off duration, [1] holds LED on duration
671 */
672 unsigned long led_override_vals[2];
673 u8 led_override_phase; /* LSB picks from vals[] */
77241056
MM
674 atomic_t led_override_timer_active;
675 /* Used to flash LEDs in override mode */
676 struct timer_list led_override_timer;
91ab4ed3 677
77241056
MM
678 u32 sm_trap_qp;
679 u32 sa_qp;
680
681 /*
682 * cca_timer_lock protects access to the per-SL cca_timer
683 * structures (specifically the ccti member).
684 */
685 spinlock_t cca_timer_lock ____cacheline_aligned_in_smp;
686 struct cca_timer cca_timer[OPA_MAX_SLS];
687
688 /* List of congestion control table entries */
689 struct ib_cc_table_entry_shadow ccti_entries[CC_TABLE_SHADOW_MAX];
690
691 /* congestion entries, each entry corresponding to a SL */
692 struct opa_congestion_setting_entry_shadow
693 congestion_entries[OPA_MAX_SLS];
694
695 /*
696 * cc_state_lock protects (write) access to the per-port
697 * struct cc_state.
698 */
699 spinlock_t cc_state_lock ____cacheline_aligned_in_smp;
700
701 struct cc_state __rcu *cc_state;
702
703 /* Total number of congestion control table entries */
704 u16 total_cct_entry;
705
706 /* Bit map identifying service level */
707 u32 cc_sl_control_map;
708
709 /* CA's max number of 64 entry units in the congestion control table */
710 u8 cc_max_table_entries;
711
4d114fdd
JJ
712 /*
713 * begin congestion log related entries
714 * cc_log_lock protects all congestion log related data
715 */
77241056 716 spinlock_t cc_log_lock ____cacheline_aligned_in_smp;
8638b77f 717 u8 threshold_cong_event_map[OPA_MAX_SLS / 8];
77241056
MM
718 u16 threshold_event_counter;
719 struct opa_hfi1_cong_log_event_internal cc_events[OPA_CONG_LOG_ELEMS];
720 int cc_log_idx; /* index for logging events */
721 int cc_mad_idx; /* index for reporting events */
722 /* end congestion log related entries */
723
724 struct vl_arb_cache vl_arb_cache[MAX_PRIO_TABLE];
725
726 /* port relative counter buffer */
727 u64 *cntrs;
728 /* port relative synthetic counter buffer */
729 u64 *scntrs;
69a00b8e 730 /* port_xmit_discards are synthesized from different egress errors */
77241056 731 u64 port_xmit_discards;
69a00b8e 732 u64 port_xmit_discards_vl[C_VL_COUNT];
77241056
MM
733 u64 port_xmit_constraint_errors;
734 u64 port_rcv_constraint_errors;
735 /* count of 'link_err' interrupts from DC */
736 u64 link_downed;
737 /* number of times link retrained successfully */
738 u64 link_up;
6d014530
DL
739 /* number of times a link unknown frame was reported */
740 u64 unknown_frame_count;
77241056
MM
741 /* port_ltp_crc_mode is returned in 'portinfo' MADs */
742 u16 port_ltp_crc_mode;
743 /* port_crc_mode_enabled is the crc we support */
744 u8 port_crc_mode_enabled;
745 /* mgmt_allowed is also returned in 'portinfo' MADs */
746 u8 mgmt_allowed;
747 u8 part_enforce; /* partition enforcement flags */
748 struct link_down_reason local_link_down_reason;
749 struct link_down_reason neigh_link_down_reason;
750 /* Value to be sent to link peer on LinkDown .*/
751 u8 remote_link_down_reason;
752 /* Error events that will cause a port bounce. */
753 u32 port_error_action;
fb9036dd 754 struct work_struct linkstate_active_work;
6c9e50f8
VM
755 /* Does this port need to prescan for FECNs */
756 bool cc_prescan;
77241056
MM
757};
758
759typedef int (*rhf_rcv_function_ptr)(struct hfi1_packet *packet);
760
761typedef void (*opcode_handler)(struct hfi1_packet *packet);
762
763/* return values for the RHF receive functions */
764#define RHF_RCV_CONTINUE 0 /* keep going */
765#define RHF_RCV_DONE 1 /* stop, this packet processed */
766#define RHF_RCV_REPROCESS 2 /* stop. retain this packet */
767
768struct rcv_array_data {
769 u8 group_size;
770 u16 ngroups;
771 u16 nctxt_extra;
772};
773
774struct per_vl_data {
775 u16 mtu;
776 struct send_context *sc;
777};
778
779/* 16 to directly index */
780#define PER_VL_SEND_CONTEXTS 16
781
782struct err_info_rcvport {
783 u8 status_and_code;
784 u64 packet_flit1;
785 u64 packet_flit2;
786};
787
788struct err_info_constraint {
789 u8 status;
790 u16 pkey;
791 u32 slid;
792};
793
794struct hfi1_temp {
795 unsigned int curr; /* current temperature */
796 unsigned int lo_lim; /* low temperature limit */
797 unsigned int hi_lim; /* high temperature limit */
798 unsigned int crit_lim; /* critical temperature limit */
799 u8 triggers; /* temperature triggers */
800};
801
dba715f0
DL
802struct hfi1_i2c_bus {
803 struct hfi1_devdata *controlling_dd; /* current controlling device */
804 struct i2c_adapter adapter; /* bus details */
805 struct i2c_algo_bit_data algo; /* bus algorithm details */
806 int num; /* bus number, 0 or 1 */
807};
808
78eb129d
DL
809/* common data between shared ASIC HFIs */
810struct hfi1_asic_data {
811 struct hfi1_devdata *dds[2]; /* back pointers */
812 struct mutex asic_resource_mutex;
dba715f0
DL
813 struct hfi1_i2c_bus *i2c_bus0;
814 struct hfi1_i2c_bus *i2c_bus1;
78eb129d
DL
815};
816
d4829ea6
VN
817/*
818 * Number of VNIC contexts used. Ensure it is less than or equal to
819 * max queues supported by VNIC (HFI1_VNIC_MAX_QUEUE).
820 */
821#define HFI1_NUM_VNIC_CTXT 8
822
823/* Virtual NIC information */
824struct hfi1_vnic_data {
825 struct idr vesw_idr;
826};
827
828struct hfi1_vnic_vport_info;
829
77241056
MM
830/* device data struct now contains only "general per-device" info.
831 * fields related to a physical IB port are in a hfi1_pportdata struct.
832 */
833struct sdma_engine;
834struct sdma_vl_map;
835
836#define BOARD_VERS_MAX 96 /* how long the version string can be */
837#define SERIAL_MAX 16 /* length of the serial number */
838
14553ca1 839typedef int (*send_routine)(struct rvt_qp *, struct hfi1_pkt_state *, u64);
77241056
MM
840struct hfi1_devdata {
841 struct hfi1_ibdev verbs_dev; /* must be first */
842 struct list_head list;
843 /* pointers to related structs for this device */
844 /* pci access data structure */
845 struct pci_dev *pcidev;
846 struct cdev user_cdev;
847 struct cdev diag_cdev;
848 struct cdev ui_cdev;
849 struct device *user_device;
850 struct device *diag_device;
851 struct device *ui_device;
852
853 /* mem-mapped pointer to base of chip regs */
854 u8 __iomem *kregbase;
855 /* end of mem-mapped chip space excluding sendbuf and user regs */
856 u8 __iomem *kregend;
857 /* physical address of chip for io_remap, etc. */
858 resource_size_t physaddr;
6e768f06
SS
859 /* Per VL data. Enough for all VLs but not all elements are set/used. */
860 struct per_vl_data vld[PER_VL_SEND_CONTEXTS];
77241056
MM
861 /* send context data */
862 struct send_context_info *send_contexts;
863 /* map hardware send contexts to software index */
864 u8 *hw_to_sw;
865 /* spinlock for allocating and releasing send context resources */
866 spinlock_t sc_lock;
35f6befc
JJ
867 /* lock for pio_map */
868 spinlock_t pio_map_lock;
6e768f06
SS
869 /* Send Context initialization lock. */
870 spinlock_t sc_init_lock;
871 /* lock for sdma_map */
872 spinlock_t sde_map_lock;
35f6befc
JJ
873 /* array of kernel send contexts */
874 struct send_context **kernel_send_context;
875 /* array of vl maps */
876 struct pio_vl_map __rcu *pio_map;
6e768f06
SS
877 /* default flags to last descriptor */
878 u64 default_desc1;
77241056
MM
879
880 /* fields common to all SDMA engines */
881
77241056
MM
882 volatile __le64 *sdma_heads_dma; /* DMA'ed by chip */
883 dma_addr_t sdma_heads_phys;
884 void *sdma_pad_dma; /* DMA'ed by chip */
885 dma_addr_t sdma_pad_phys;
886 /* for deallocation */
887 size_t sdma_heads_size;
888 /* number from the chip */
889 u32 chip_sdma_engines;
890 /* num used */
891 u32 num_sdma;
77241056
MM
892 /* array of engines sized by num_sdma */
893 struct sdma_engine *per_sdma;
894 /* array of vl maps */
895 struct sdma_vl_map __rcu *sdma_map;
896 /* SPC freeze waitqueue and variable */
897 wait_queue_head_t sdma_unfreeze_wq;
898 atomic_t sdma_unfreeze_count;
899
6e768f06
SS
900 u32 lcb_access_count; /* count of LCB users */
901
78eb129d
DL
902 /* common data between shared ASIC HFIs in this OS */
903 struct hfi1_asic_data *asic_data;
904
77241056
MM
905 /* mem-mapped pointer to base of PIO buffers */
906 void __iomem *piobase;
907 /*
908 * write-combining mem-mapped pointer to base of RcvArray
909 * memory.
910 */
911 void __iomem *rcvarray_wc;
912 /*
913 * credit return base - a per-NUMA range of DMA address that
914 * the chip will use to update the per-context free counter
915 */
916 struct credit_return_base *cr_base;
917
918 /* send context numbers and sizes for each type */
919 struct sc_config_sizes sc_sizes[SC_MAX];
920
77241056
MM
921 char *boardname; /* human readable board info */
922
77241056
MM
923 /* reset value */
924 u64 z_int_counter;
925 u64 z_rcv_limit;
89abfc8d 926 u64 z_send_schedule;
6e768f06 927
89abfc8d 928 u64 __percpu *send_schedule;
77241056
MM
929 /* number of receive contexts in use by the driver */
930 u32 num_rcv_contexts;
931 /* number of pio send contexts in use by the driver */
932 u32 num_send_contexts;
933 /*
934 * number of ctxts available for PSM open
935 */
936 u32 freectxts;
affa48de
AD
937 /* total number of available user/PSM contexts */
938 u32 num_user_contexts;
77241056
MM
939 /* base receive interrupt timeout, in CSR units */
940 u32 rcv_intr_timeout_csr;
941
6e768f06 942 u32 freezelen; /* max length of freezemsg */
77241056
MM
943 u64 __iomem *egrtidbase;
944 spinlock_t sendctrl_lock; /* protect changes to SendCtrl */
945 spinlock_t rcvctrl_lock; /* protect changes to RcvCtrl */
946 /* around rcd and (user ctxts) ctxt_cnt use (intr vs free) */
947 spinlock_t uctxt_lock; /* rcd and user context changes */
948 /* exclusive access to 8051 */
949 spinlock_t dc8051_lock;
950 /* exclusive access to 8051 memory */
951 spinlock_t dc8051_memlock;
952 int dc8051_timed_out; /* remember if the 8051 timed out */
953 /*
954 * A page that will hold event notification bitmaps for all
955 * contexts. This page will be mapped into all processes.
956 */
957 unsigned long *events;
958 /*
959 * per unit status, see also portdata statusp
960 * mapped read-only into user processes so they can get unit and
961 * IB link status cheaply
962 */
963 struct hfi1_status *status;
77241056
MM
964
965 /* revision register shadow */
966 u64 revision;
967 /* Base GUID for device (network order) */
968 u64 base_guid;
969
970 /* these are the "32 bit" regs */
971
972 /* value we put in kr_rcvhdrsize */
973 u32 rcvhdrsize;
974 /* number of receive contexts the chip supports */
975 u32 chip_rcv_contexts;
976 /* number of receive array entries */
977 u32 chip_rcv_array_count;
978 /* number of PIO send contexts the chip supports */
979 u32 chip_send_contexts;
980 /* number of bytes in the PIO memory buffer */
981 u32 chip_pio_mem_size;
982 /* number of bytes in the SDMA memory buffer */
983 u32 chip_sdma_mem_size;
984
985 /* size of each rcvegrbuffer */
986 u32 rcvegrbufsize;
987 /* log2 of above */
988 u16 rcvegrbufsize_shift;
989 /* both sides of the PCIe link are gen3 capable */
990 u8 link_gen3_capable;
6e768f06
SS
991 /* default link down value (poll/sleep) */
992 u8 link_default;
77241056
MM
993 /* localbus width (1, 2,4,8,16,32) from config space */
994 u32 lbus_width;
995 /* localbus speed in MHz */
996 u32 lbus_speed;
997 int unit; /* unit # of this chip */
998 int node; /* home node of this chip */
999
1000 /* save these PCI fields to restore after a reset */
1001 u32 pcibar0;
1002 u32 pcibar1;
1003 u32 pci_rom;
1004 u16 pci_command;
1005 u16 pcie_devctl;
1006 u16 pcie_lnkctl;
1007 u16 pcie_devctl2;
1008 u32 pci_msix0;
1009 u32 pci_lnkctl3;
1010 u32 pci_tph2;
1011
1012 /*
1013 * ASCII serial number, from flash, large enough for original
1014 * all digit strings, and longer serial number format
1015 */
1016 u8 serial[SERIAL_MAX];
1017 /* human readable board version */
1018 u8 boardversion[BOARD_VERS_MAX];
1019 u8 lbus_info[32]; /* human readable localbus info */
1020 /* chip major rev, from CceRevision */
1021 u8 majrev;
1022 /* chip minor rev, from CceRevision */
1023 u8 minrev;
1024 /* hardware ID */
1025 u8 hfi1_id;
1026 /* implementation code */
1027 u8 icode;
77241056
MM
1028 /* vAU of this device */
1029 u8 vau;
1030 /* vCU of this device */
1031 u8 vcu;
1032 /* link credits of this device */
1033 u16 link_credits;
1034 /* initial vl15 credits to use */
1035 u16 vl15_init;
1036
1037 /* Misc small ints */
77241056
MM
1038 u8 n_krcv_queues;
1039 u8 qos_shift;
77241056 1040
77241056 1041 u16 irev; /* implementation revision */
5e6e9424 1042 u32 dc8051_ver; /* 8051 firmware version */
77241056 1043
6e768f06 1044 spinlock_t hfi1_diag_trans_lock; /* protect diag observer ops */
c3838b39 1045 struct platform_config platform_config;
77241056 1046 struct platform_config_cache pcfg_cache;
77241056
MM
1047
1048 struct diag_client *diag_client;
77241056
MM
1049
1050 /* MSI-X information */
1051 struct hfi1_msix_entry *msix_entries;
1052 u32 num_msix_entries;
1053
1054 /* INTx information */
1055 u32 requested_intx_irq; /* did we request one? */
1056 char intx_name[MAX_NAME_SIZE]; /* INTx name */
1057
1058 /* general interrupt: mask of handled interrupts */
1059 u64 gi_mask[CCE_NUM_INT_CSRS];
1060
1061 struct rcv_array_data rcv_entries;
1062
6e768f06
SS
1063 /* cycle length of PS* counters in HW (in picoseconds) */
1064 u16 psxmitwait_check_rate;
1065
77241056
MM
1066 /*
1067 * 64 bit synthetic counters
1068 */
1069 struct timer_list synth_stats_timer;
1070
1071 /*
1072 * device counters
1073 */
1074 char *cntrnames;
1075 size_t cntrnameslen;
1076 size_t ndevcntrs;
1077 u64 *cntrs;
1078 u64 *scntrs;
1079
1080 /*
1081 * remembered values for synthetic counters
1082 */
1083 u64 last_tx;
1084 u64 last_rx;
1085
1086 /*
1087 * per-port counters
1088 */
1089 size_t nportcntrs;
1090 char *portcntrnames;
1091 size_t portcntrnameslen;
1092
77241056
MM
1093 struct err_info_rcvport err_info_rcvport;
1094 struct err_info_constraint err_info_rcv_constraint;
1095 struct err_info_constraint err_info_xmit_constraint;
77241056
MM
1096
1097 atomic_t drop_packet;
1098 u8 do_drop;
6e768f06
SS
1099 u8 err_info_uncorrectable;
1100 u8 err_info_fmconfig;
77241056 1101
2c5b521a
JR
1102 /*
1103 * Software counters for the status bits defined by the
1104 * associated error status registers
1105 */
1106 u64 cce_err_status_cnt[NUM_CCE_ERR_STATUS_COUNTERS];
1107 u64 rcv_err_status_cnt[NUM_RCV_ERR_STATUS_COUNTERS];
1108 u64 misc_err_status_cnt[NUM_MISC_ERR_STATUS_COUNTERS];
1109 u64 send_pio_err_status_cnt[NUM_SEND_PIO_ERR_STATUS_COUNTERS];
1110 u64 send_dma_err_status_cnt[NUM_SEND_DMA_ERR_STATUS_COUNTERS];
1111 u64 send_egress_err_status_cnt[NUM_SEND_EGRESS_ERR_STATUS_COUNTERS];
1112 u64 send_err_status_cnt[NUM_SEND_ERR_STATUS_COUNTERS];
1113
1114 /* Software counter that spans all contexts */
1115 u64 sw_ctxt_err_status_cnt[NUM_SEND_CTXT_ERR_STATUS_COUNTERS];
1116 /* Software counter that spans all DMA engines */
1117 u64 sw_send_dma_eng_err_status_cnt[
1118 NUM_SEND_DMA_ENG_ERR_STATUS_COUNTERS];
1119 /* Software counter that aggregates all cce_err_status errors */
1120 u64 sw_cce_err_status_aggregate;
2b719046
JP
1121 /* Software counter that aggregates all bypass packet rcv errors */
1122 u64 sw_rcv_bypass_packet_errors;
6e768f06 1123 /* receive interrupt function */
77241056
MM
1124 rhf_rcv_function_ptr normal_rhf_rcv_functions[8];
1125
6e768f06
SS
1126 /* Save the enabled LCB error bits */
1127 u64 lcb_err_en;
1128
77241056 1129 /*
eacc830f
DD
1130 * Capability to have different send engines simply by changing a
1131 * pointer value.
77241056 1132 */
6e768f06 1133 send_routine process_pio_send ____cacheline_aligned_in_smp;
14553ca1 1134 send_routine process_dma_send;
77241056
MM
1135 void (*pio_inline_send)(struct hfi1_devdata *dd, struct pio_buf *pbuf,
1136 u64 pbc, const void *from, size_t count);
d4829ea6
VN
1137 int (*process_vnic_dma_send)(struct hfi1_devdata *dd, u8 q_idx,
1138 struct hfi1_vnic_vport_info *vinfo,
1139 struct sk_buff *skb, u64 pbc, u8 plen);
6e768f06
SS
1140 /* hfi1_pportdata, points to array of (physical) port-specific
1141 * data structs, indexed by pidx (0..n-1)
1142 */
1143 struct hfi1_pportdata *pport;
1144 /* receive context data */
1145 struct hfi1_ctxtdata **rcd;
1146 u64 __percpu *int_counter;
1147 /* device (not port) flags, basically device capabilities */
1148 u16 flags;
1149 /* Number of physical ports available */
1150 u8 num_pports;
1151 /* Lowest context number which can be used by user processes */
1152 u8 first_user_ctxt;
1153 /* adding a new field here would make it part of this cacheline */
1154
1155 /* seqlock for sc2vl */
1156 seqlock_t sc2vl_lock ____cacheline_aligned_in_smp;
1157 u64 sc2vl[4];
1158 /* receive interrupt functions */
1159 rhf_rcv_function_ptr *rhf_rcv_function_map;
1160 u64 __percpu *rcv_limit;
1161 u16 rhf_offset; /* offset of RHF within receive header entry */
1162 /* adding a new field here would make it part of this cacheline */
77241056
MM
1163
1164 /* OUI comes from the HW. Used everywhere as 3 separate bytes. */
1165 u8 oui1;
1166 u8 oui2;
1167 u8 oui3;
6e768f06
SS
1168 u8 dc_shutdown;
1169
77241056
MM
1170 /* Timer and counter used to detect RcvBufOvflCnt changes */
1171 struct timer_list rcverr_timer;
77241056 1172
77241056
MM
1173 wait_queue_head_t event_queue;
1174
46b010d3
MB
1175 /* receive context tail dummy address */
1176 __le64 *rcvhdrtail_dummy_kvaddr;
60368186 1177 dma_addr_t rcvhdrtail_dummy_dma;
affa48de 1178
6e768f06 1179 u32 rcv_ovfl_cnt;
affa48de
AD
1180 /* Serialize ASPM enable/disable between multiple verbs contexts */
1181 spinlock_t aspm_lock;
1182 /* Number of verbs contexts which have disabled ASPM */
1183 atomic_t aspm_disabled_cnt;
acd7c8fe
TS
1184 /* Keeps track of user space clients */
1185 atomic_t user_refcount;
1186 /* Used to wait for outstanding user space clients before dev removal */
1187 struct completion user_comp;
957558c9 1188
6e768f06
SS
1189 bool eprom_available; /* true if EPROM is available for this device */
1190 bool aspm_supported; /* Does HW support ASPM */
1191 bool aspm_enabled; /* ASPM state: enabled/disabled */
5a52a7ac 1192 struct rhashtable *sdma_rht;
6e768f06 1193
e11ffbd5 1194 struct kobject kobj;
d4829ea6
VN
1195
1196 /* vnic data */
1197 struct hfi1_vnic_data vnic;
77241056
MM
1198};
1199
1200/* 8051 firmware version helper */
5e6e9424
MR
1201#define dc8051_ver(a, b, c) ((a) << 16 | (b) << 8 | (c))
1202#define dc8051_ver_maj(a) (((a) & 0xff0000) >> 16)
1203#define dc8051_ver_min(a) (((a) & 0x00ff00) >> 8)
1204#define dc8051_ver_patch(a) ((a) & 0x0000ff)
77241056
MM
1205
1206/* f_put_tid types */
1207#define PT_EXPECTED 0
1208#define PT_EAGER 1
1209#define PT_INVALID 2
1210
06e0ffa6 1211struct tid_rb_node;
f727a0c3 1212struct mmu_rb_node;
e0b09ac5 1213struct mmu_rb_handler;
f727a0c3 1214
77241056
MM
1215/* Private data for file operations */
1216struct hfi1_filedata {
1217 struct hfi1_ctxtdata *uctxt;
1218 unsigned subctxt;
1219 struct hfi1_user_sdma_comp_q *cq;
1220 struct hfi1_user_sdma_pkt_q *pq;
1221 /* for cpu affinity; -1 if none */
1222 int rec_cpu_num;
a7922f7d 1223 u32 tid_n_pinned;
e0b09ac5 1224 struct mmu_rb_handler *handler;
06e0ffa6 1225 struct tid_rb_node **entry_to_rb;
a86cd357
MH
1226 spinlock_t tid_lock; /* protect tid_[limit,used] counters */
1227 u32 tid_limit;
1228 u32 tid_used;
a86cd357
MH
1229 u32 *invalid_tids;
1230 u32 invalid_tid_idx;
06e0ffa6
MH
1231 /* protect invalid_tids array and invalid_tid_idx */
1232 spinlock_t invalid_lock;
3faa3d9a 1233 struct mm_struct *mm;
77241056
MM
1234};
1235
1236extern struct list_head hfi1_dev_list;
1237extern spinlock_t hfi1_devs_lock;
1238struct hfi1_devdata *hfi1_lookup(int unit);
1239extern u32 hfi1_cpulist_count;
1240extern unsigned long *hfi1_cpulist;
1241
77241056
MM
1242int hfi1_init(struct hfi1_devdata *, int);
1243int hfi1_count_units(int *npresentp, int *nupp);
1244int hfi1_count_active_units(void);
1245
1246int hfi1_diag_add(struct hfi1_devdata *);
1247void hfi1_diag_remove(struct hfi1_devdata *);
1248void handle_linkup_change(struct hfi1_devdata *dd, u32 linkup);
1249
1250void handle_user_interrupt(struct hfi1_ctxtdata *rcd);
1251
1252int hfi1_create_rcvhdrq(struct hfi1_devdata *, struct hfi1_ctxtdata *);
1253int hfi1_setup_eagerbufs(struct hfi1_ctxtdata *);
1254int hfi1_create_ctxts(struct hfi1_devdata *dd);
957558c9 1255struct hfi1_ctxtdata *hfi1_create_ctxtdata(struct hfi1_pportdata *, u32, int);
77241056
MM
1256void hfi1_init_pportdata(struct pci_dev *, struct hfi1_pportdata *,
1257 struct hfi1_devdata *, u8, u8);
1258void hfi1_free_ctxtdata(struct hfi1_devdata *, struct hfi1_ctxtdata *);
1259
f4f30031
DL
1260int handle_receive_interrupt(struct hfi1_ctxtdata *, int);
1261int handle_receive_interrupt_nodma_rtail(struct hfi1_ctxtdata *, int);
1262int handle_receive_interrupt_dma_rtail(struct hfi1_ctxtdata *, int);
fb9036dd 1263void set_all_slowpath(struct hfi1_devdata *dd);
f4f30031 1264
d6373019
SS
1265extern const struct pci_device_id hfi1_pci_tbl[];
1266
f4f30031
DL
1267/* receive packet handler dispositions */
1268#define RCV_PKT_OK 0x0 /* keep going */
1269#define RCV_PKT_LIMIT 0x1 /* stop, hit limit, start thread */
1270#define RCV_PKT_DONE 0x2 /* stop, no more packets detected */
1271
1272/* calculate the current RHF address */
1273static inline __le32 *get_rhf_addr(struct hfi1_ctxtdata *rcd)
1274{
1275 return (__le32 *)rcd->rcvhdrq + rcd->head + rcd->dd->rhf_offset;
1276}
1277
77241056
MM
1278int hfi1_reset_device(int);
1279
1280/* return the driver's idea of the logical OPA port state */
1281static inline u32 driver_lstate(struct hfi1_pportdata *ppd)
1282{
1283 return ppd->lstate; /* use the cached value */
1284}
1285
fb9036dd
JS
1286void receive_interrupt_work(struct work_struct *work);
1287
1288/* extract service channel from header and rhf */
261a4351 1289static inline int hdr2sc(struct ib_header *hdr, u64 rhf)
fb9036dd
JS
1290{
1291 return ((be16_to_cpu(hdr->lrh[0]) >> 12) & 0xf) |
b736a469 1292 ((!!(rhf_dc_info(rhf))) << 4);
fb9036dd
JS
1293}
1294
08fe16f6
MH
1295#define HFI1_JKEY_WIDTH 16
1296#define HFI1_JKEY_MASK (BIT(16) - 1)
1297#define HFI1_ADMIN_JKEY_RANGE 32
1298
1299/*
1300 * J_KEYs are split and allocated in the following groups:
1301 * 0 - 31 - users with administrator privileges
1302 * 32 - 63 - kernel protocols using KDETH packets
1303 * 64 - 65535 - all other users using KDETH packets
1304 */
77241056
MM
1305static inline u16 generate_jkey(kuid_t uid)
1306{
08fe16f6
MH
1307 u16 jkey = from_kuid(current_user_ns(), uid) & HFI1_JKEY_MASK;
1308
1309 if (capable(CAP_SYS_ADMIN))
1310 jkey &= HFI1_ADMIN_JKEY_RANGE - 1;
1311 else if (jkey < 64)
1312 jkey |= BIT(HFI1_JKEY_WIDTH - 1);
1313
1314 return jkey;
77241056
MM
1315}
1316
1317/*
1318 * active_egress_rate
1319 *
1320 * returns the active egress rate in units of [10^6 bits/sec]
1321 */
1322static inline u32 active_egress_rate(struct hfi1_pportdata *ppd)
1323{
1324 u16 link_speed = ppd->link_speed_active;
1325 u16 link_width = ppd->link_width_active;
1326 u32 egress_rate;
1327
1328 if (link_speed == OPA_LINK_SPEED_25G)
1329 egress_rate = 25000;
1330 else /* assume OPA_LINK_SPEED_12_5G */
1331 egress_rate = 12500;
1332
1333 switch (link_width) {
1334 case OPA_LINK_WIDTH_4X:
1335 egress_rate *= 4;
1336 break;
1337 case OPA_LINK_WIDTH_3X:
1338 egress_rate *= 3;
1339 break;
1340 case OPA_LINK_WIDTH_2X:
1341 egress_rate *= 2;
1342 break;
1343 default:
1344 /* assume IB_WIDTH_1X */
1345 break;
1346 }
1347
1348 return egress_rate;
1349}
1350
1351/*
1352 * egress_cycles
1353 *
1354 * Returns the number of 'fabric clock cycles' to egress a packet
1355 * of length 'len' bytes, at 'rate' Mbit/s. Since the fabric clock
1356 * rate is (approximately) 805 MHz, the units of the returned value
1357 * are (1/805 MHz).
1358 */
1359static inline u32 egress_cycles(u32 len, u32 rate)
1360{
1361 u32 cycles;
1362
1363 /*
1364 * cycles is:
1365 *
1366 * (length) [bits] / (rate) [bits/sec]
1367 * ---------------------------------------------------
1368 * fabric_clock_period == 1 /(805 * 10^6) [cycles/sec]
1369 */
1370
1371 cycles = len * 8; /* bits */
1372 cycles *= 805;
1373 cycles /= rate;
1374
1375 return cycles;
1376}
1377
1378void set_link_ipg(struct hfi1_pportdata *ppd);
1379void process_becn(struct hfi1_pportdata *ppd, u8 sl, u16 rlid, u32 lqpn,
1380 u32 rqpn, u8 svc_type);
895420dd 1381void return_cnp(struct hfi1_ibport *ibp, struct rvt_qp *qp, u32 remote_qpn,
77241056
MM
1382 u32 pkey, u32 slid, u32 dlid, u8 sc5,
1383 const struct ib_grh *old_grh);
e38d1e4f
SS
1384#define PKEY_CHECK_INVALID -1
1385int egress_pkey_check(struct hfi1_pportdata *ppd, __be16 *lrh, __be32 *bth,
1386 u8 sc5, int8_t s_pkey_index);
77241056
MM
1387
1388#define PACKET_EGRESS_TIMEOUT 350
1389static inline void pause_for_credit_return(struct hfi1_devdata *dd)
1390{
1391 /* Pause at least 1us, to ensure chip returns all credits */
1392 u32 usec = cclock_to_ns(dd, PACKET_EGRESS_TIMEOUT) / 1000;
1393
1394 udelay(usec ? usec : 1);
1395}
1396
1397/**
1398 * sc_to_vlt() reverse lookup sc to vl
1399 * @dd - devdata
1400 * @sc5 - 5 bit sc
1401 */
1402static inline u8 sc_to_vlt(struct hfi1_devdata *dd, u8 sc5)
1403{
1404 unsigned seq;
1405 u8 rval;
1406
1407 if (sc5 >= OPA_MAX_SCS)
1408 return (u8)(0xff);
1409
1410 do {
1411 seq = read_seqbegin(&dd->sc2vl_lock);
1412 rval = *(((u8 *)dd->sc2vl) + sc5);
1413 } while (read_seqretry(&dd->sc2vl_lock, seq));
1414
1415 return rval;
1416}
1417
1418#define PKEY_MEMBER_MASK 0x8000
1419#define PKEY_LOW_15_MASK 0x7fff
1420
1421/*
1422 * ingress_pkey_matches_entry - return 1 if the pkey matches ent (ent
1423 * being an entry from the ingress partition key table), return 0
1424 * otherwise. Use the matching criteria for ingress partition keys
1425 * specified in the OPAv1 spec., section 9.10.14.
1426 */
1427static inline int ingress_pkey_matches_entry(u16 pkey, u16 ent)
1428{
1429 u16 mkey = pkey & PKEY_LOW_15_MASK;
1430 u16 ment = ent & PKEY_LOW_15_MASK;
1431
1432 if (mkey == ment) {
1433 /*
1434 * If pkey[15] is clear (limited partition member),
1435 * is bit 15 in the corresponding table element
1436 * clear (limited member)?
1437 */
1438 if (!(pkey & PKEY_MEMBER_MASK))
1439 return !!(ent & PKEY_MEMBER_MASK);
1440 return 1;
1441 }
1442 return 0;
1443}
1444
1445/*
1446 * ingress_pkey_table_search - search the entire pkey table for
1447 * an entry which matches 'pkey'. return 0 if a match is found,
1448 * and 1 otherwise.
1449 */
1450static int ingress_pkey_table_search(struct hfi1_pportdata *ppd, u16 pkey)
1451{
1452 int i;
1453
1454 for (i = 0; i < MAX_PKEY_VALUES; i++) {
1455 if (ingress_pkey_matches_entry(pkey, ppd->pkeys[i]))
1456 return 0;
1457 }
1458 return 1;
1459}
1460
1461/*
1462 * ingress_pkey_table_fail - record a failure of ingress pkey validation,
1463 * i.e., increment port_rcv_constraint_errors for the port, and record
1464 * the 'error info' for this failure.
1465 */
1466static void ingress_pkey_table_fail(struct hfi1_pportdata *ppd, u16 pkey,
1467 u16 slid)
1468{
1469 struct hfi1_devdata *dd = ppd->dd;
1470
1471 incr_cntr64(&ppd->port_rcv_constraint_errors);
1472 if (!(dd->err_info_rcv_constraint.status & OPA_EI_STATUS_SMASK)) {
1473 dd->err_info_rcv_constraint.status |= OPA_EI_STATUS_SMASK;
1474 dd->err_info_rcv_constraint.slid = slid;
1475 dd->err_info_rcv_constraint.pkey = pkey;
1476 }
1477}
1478
1479/*
1480 * ingress_pkey_check - Return 0 if the ingress pkey is valid, return 1
1481 * otherwise. Use the criteria in the OPAv1 spec, section 9.10.14. idx
1482 * is a hint as to the best place in the partition key table to begin
1483 * searching. This function should not be called on the data path because
1484 * of performance reasons. On datapath pkey check is expected to be done
1485 * by HW and rcv_pkey_check function should be called instead.
1486 */
1487static inline int ingress_pkey_check(struct hfi1_pportdata *ppd, u16 pkey,
1488 u8 sc5, u8 idx, u16 slid)
1489{
1490 if (!(ppd->part_enforce & HFI1_PART_ENFORCE_IN))
1491 return 0;
1492
1493 /* If SC15, pkey[0:14] must be 0x7fff */
1494 if ((sc5 == 0xf) && ((pkey & PKEY_LOW_15_MASK) != PKEY_LOW_15_MASK))
1495 goto bad;
1496
1497 /* Is the pkey = 0x0, or 0x8000? */
1498 if ((pkey & PKEY_LOW_15_MASK) == 0)
1499 goto bad;
1500
1501 /* The most likely matching pkey has index 'idx' */
1502 if (ingress_pkey_matches_entry(pkey, ppd->pkeys[idx]))
1503 return 0;
1504
1505 /* no match - try the whole table */
1506 if (!ingress_pkey_table_search(ppd, pkey))
1507 return 0;
1508
1509bad:
1510 ingress_pkey_table_fail(ppd, pkey, slid);
1511 return 1;
1512}
1513
1514/*
1515 * rcv_pkey_check - Return 0 if the ingress pkey is valid, return 1
1516 * otherwise. It only ensures pkey is vlid for QP0. This function
1517 * should be called on the data path instead of ingress_pkey_check
1518 * as on data path, pkey check is done by HW (except for QP0).
1519 */
1520static inline int rcv_pkey_check(struct hfi1_pportdata *ppd, u16 pkey,
1521 u8 sc5, u16 slid)
1522{
1523 if (!(ppd->part_enforce & HFI1_PART_ENFORCE_IN))
1524 return 0;
1525
1526 /* If SC15, pkey[0:14] must be 0x7fff */
1527 if ((sc5 == 0xf) && ((pkey & PKEY_LOW_15_MASK) != PKEY_LOW_15_MASK))
1528 goto bad;
1529
1530 return 0;
1531bad:
1532 ingress_pkey_table_fail(ppd, pkey, slid);
1533 return 1;
1534}
1535
1536/* MTU handling */
1537
1538/* MTU enumeration, 256-4k match IB */
1539#define OPA_MTU_0 0
1540#define OPA_MTU_256 1
1541#define OPA_MTU_512 2
1542#define OPA_MTU_1024 3
1543#define OPA_MTU_2048 4
1544#define OPA_MTU_4096 5
1545
1546u32 lrh_max_header_bytes(struct hfi1_devdata *dd);
1547int mtu_to_enum(u32 mtu, int default_if_bad);
1548u16 enum_to_mtu(int);
1549static inline int valid_ib_mtu(unsigned int mtu)
1550{
1551 return mtu == 256 || mtu == 512 ||
1552 mtu == 1024 || mtu == 2048 ||
1553 mtu == 4096;
1554}
f4d507cd 1555
77241056
MM
1556static inline int valid_opa_max_mtu(unsigned int mtu)
1557{
1558 return mtu >= 2048 &&
1559 (valid_ib_mtu(mtu) || mtu == 8192 || mtu == 10240);
1560}
1561
1562int set_mtu(struct hfi1_pportdata *);
1563
1564int hfi1_set_lid(struct hfi1_pportdata *, u32, u8);
1565void hfi1_disable_after_error(struct hfi1_devdata *);
1566int hfi1_set_uevent_bits(struct hfi1_pportdata *, const int);
1567int hfi1_rcvbuf_validate(u32, u8, u16 *);
1568
1569int fm_get_table(struct hfi1_pportdata *, int, void *);
1570int fm_set_table(struct hfi1_pportdata *, int, void *);
1571
1572void set_up_vl15(struct hfi1_devdata *dd, u8 vau, u16 vl15buf);
1573void reset_link_credits(struct hfi1_devdata *dd);
1574void assign_remote_cm_au_table(struct hfi1_devdata *dd, u8 vcu);
1575
8a4d3444 1576int set_buffer_control(struct hfi1_pportdata *ppd, struct buffer_control *bc);
77241056 1577
77241056
MM
1578static inline struct hfi1_devdata *dd_from_ppd(struct hfi1_pportdata *ppd)
1579{
1580 return ppd->dd;
1581}
1582
1583static inline struct hfi1_devdata *dd_from_dev(struct hfi1_ibdev *dev)
1584{
1585 return container_of(dev, struct hfi1_devdata, verbs_dev);
1586}
1587
1588static inline struct hfi1_devdata *dd_from_ibdev(struct ib_device *ibdev)
1589{
1590 return dd_from_dev(to_idev(ibdev));
1591}
1592
1593static inline struct hfi1_pportdata *ppd_from_ibp(struct hfi1_ibport *ibp)
1594{
1595 return container_of(ibp, struct hfi1_pportdata, ibport_data);
1596}
1597
45b59eef
HC
1598static inline struct hfi1_ibdev *dev_from_rdi(struct rvt_dev_info *rdi)
1599{
1600 return container_of(rdi, struct hfi1_ibdev, rdi);
1601}
1602
77241056
MM
1603static inline struct hfi1_ibport *to_iport(struct ib_device *ibdev, u8 port)
1604{
1605 struct hfi1_devdata *dd = dd_from_ibdev(ibdev);
1606 unsigned pidx = port - 1; /* IB number port from 1, hdw from 0 */
1607
1608 WARN_ON(pidx >= dd->num_pports);
1609 return &dd->pport[pidx].ibport_data;
1610}
1611
f3e862cb
SS
1612static inline struct hfi1_ibport *rcd_to_iport(struct hfi1_ctxtdata *rcd)
1613{
1614 return &rcd->ppd->ibport_data;
1615}
1616
5fd2b562
MH
1617void hfi1_process_ecn_slowpath(struct rvt_qp *qp, struct hfi1_packet *pkt,
1618 bool do_cnp);
1619static inline bool process_ecn(struct rvt_qp *qp, struct hfi1_packet *pkt,
1620 bool do_cnp)
1621{
261a4351 1622 struct ib_other_headers *ohdr = pkt->ohdr;
5fd2b562
MH
1623 u32 bth1;
1624
1625 bth1 = be32_to_cpu(ohdr->bth[1]);
1626 if (unlikely(bth1 & (HFI1_BECN_SMASK | HFI1_FECN_SMASK))) {
1627 hfi1_process_ecn_slowpath(qp, pkt, do_cnp);
1628 return bth1 & HFI1_FECN_SMASK;
1629 }
1630 return false;
1631}
1632
77241056
MM
1633/*
1634 * Return the indexed PKEY from the port PKEY table.
1635 */
1636static inline u16 hfi1_get_pkey(struct hfi1_ibport *ibp, unsigned index)
1637{
1638 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
1639 u16 ret;
1640
1641 if (index >= ARRAY_SIZE(ppd->pkeys))
1642 ret = 0;
1643 else
1644 ret = ppd->pkeys[index];
1645
1646 return ret;
1647}
1648
a6cd5f08
JP
1649/*
1650 * Return the indexed GUID from the port GUIDs table.
1651 */
1652static inline __be64 get_sguid(struct hfi1_ibport *ibp, unsigned int index)
1653{
1654 struct hfi1_pportdata *ppd = ppd_from_ibp(ibp);
1655
1656 WARN_ON(index >= HFI1_GUIDS_PER_PORT);
1657 return cpu_to_be64(ppd->guids[index]);
1658}
1659
77241056 1660/*
8adf71fa 1661 * Called by readers of cc_state only, must call under rcu_read_lock().
77241056
MM
1662 */
1663static inline struct cc_state *get_cc_state(struct hfi1_pportdata *ppd)
1664{
1665 return rcu_dereference(ppd->cc_state);
1666}
1667
8adf71fa
JX
1668/*
1669 * Called by writers of cc_state only, must call under cc_state_lock.
1670 */
1671static inline
1672struct cc_state *get_cc_state_protected(struct hfi1_pportdata *ppd)
1673{
1674 return rcu_dereference_protected(ppd->cc_state,
1675 lockdep_is_held(&ppd->cc_state_lock));
1676}
1677
77241056
MM
1678/*
1679 * values for dd->flags (_device_ related flags)
1680 */
1681#define HFI1_INITTED 0x1 /* chip and driver up and initted */
1682#define HFI1_PRESENT 0x2 /* chip accesses can be done */
1683#define HFI1_FROZEN 0x4 /* chip in SPC freeze */
1684#define HFI1_HAS_SDMA_TIMEOUT 0x8
1685#define HFI1_HAS_SEND_DMA 0x10 /* Supports Send DMA */
1686#define HFI1_FORCED_FREEZE 0x80 /* driver forced freeze mode */
77241056
MM
1687
1688/* IB dword length mask in PBC (lower 11 bits); same for all chips */
1689#define HFI1_PBC_LENGTH_MASK ((1 << 11) - 1)
1690
77241056
MM
1691/* ctxt_flag bit offsets */
1692 /* context has been setup */
1693#define HFI1_CTXT_SETUP_DONE 1
1694 /* waiting for a packet to arrive */
1695#define HFI1_CTXT_WAITING_RCV 2
1696 /* master has not finished initializing */
1697#define HFI1_CTXT_MASTER_UNINIT 4
1698 /* waiting for an urgent packet to arrive */
1699#define HFI1_CTXT_WAITING_URG 5
1700
1701/* free up any allocated data at closes */
1702struct hfi1_devdata *hfi1_init_dd(struct pci_dev *,
1703 const struct pci_device_id *);
1704void hfi1_free_devdata(struct hfi1_devdata *);
77241056
MM
1705struct hfi1_devdata *hfi1_alloc_devdata(struct pci_dev *pdev, size_t extra);
1706
2243472e
EH
1707/* LED beaconing functions */
1708void hfi1_start_led_override(struct hfi1_pportdata *ppd, unsigned int timeon,
1709 unsigned int timeoff);
91ab4ed3 1710void shutdown_led_override(struct hfi1_pportdata *ppd);
77241056
MM
1711
1712#define HFI1_CREDIT_RETURN_RATE (100)
1713
1714/*
1715 * The number of words for the KDETH protocol field. If this is
1716 * larger then the actual field used, then part of the payload
1717 * will be in the header.
1718 *
1719 * Optimally, we want this sized so that a typical case will
1720 * use full cache lines. The typical local KDETH header would
1721 * be:
1722 *
1723 * Bytes Field
1724 * 8 LRH
1725 * 12 BHT
1726 * ?? KDETH
1727 * 8 RHF
1728 * ---
1729 * 28 + KDETH
1730 *
1731 * For a 64-byte cache line, KDETH would need to be 36 bytes or 9 DWORDS
1732 */
1733#define DEFAULT_RCVHDRSIZE 9
1734
1735/*
1736 * Maximal header byte count:
1737 *
1738 * Bytes Field
1739 * 8 LRH
1740 * 40 GRH (optional)
1741 * 12 BTH
1742 * ?? KDETH
1743 * 8 RHF
1744 * ---
1745 * 68 + KDETH
1746 *
1747 * We also want to maintain a cache line alignment to assist DMA'ing
1748 * of the header bytes. Round up to a good size.
1749 */
1750#define DEFAULT_RCVHDR_ENTSIZE 32
1751
3faa3d9a
IW
1752bool hfi1_can_pin_pages(struct hfi1_devdata *dd, struct mm_struct *mm,
1753 u32 nlocked, u32 npages);
1754int hfi1_acquire_user_pages(struct mm_struct *mm, unsigned long vaddr,
1755 size_t npages, bool writable, struct page **pages);
ac335e7e
IW
1756void hfi1_release_user_pages(struct mm_struct *mm, struct page **p,
1757 size_t npages, bool dirty);
77241056
MM
1758
1759static inline void clear_rcvhdrtail(const struct hfi1_ctxtdata *rcd)
1760{
50e5dcbe 1761 *((u64 *)rcd->rcvhdrtail_kvaddr) = 0ULL;
77241056
MM
1762}
1763
1764static inline u32 get_rcvhdrtail(const struct hfi1_ctxtdata *rcd)
1765{
1766 /*
1767 * volatile because it's a DMA target from the chip, routine is
1768 * inlined, and don't want register caching or reordering.
1769 */
50e5dcbe 1770 return (u32)le64_to_cpu(*rcd->rcvhdrtail_kvaddr);
77241056
MM
1771}
1772
1773/*
1774 * sysfs interface.
1775 */
1776
1777extern const char ib_hfi1_version[];
1778
1779int hfi1_device_create(struct hfi1_devdata *);
1780void hfi1_device_remove(struct hfi1_devdata *);
1781
1782int hfi1_create_port_files(struct ib_device *ibdev, u8 port_num,
1783 struct kobject *kobj);
1784int hfi1_verbs_register_sysfs(struct hfi1_devdata *);
1785void hfi1_verbs_unregister_sysfs(struct hfi1_devdata *);
1786/* Hook for sysfs read of QSFP */
1787int qsfp_dump(struct hfi1_pportdata *ppd, char *buf, int len);
1788
1789int hfi1_pcie_init(struct pci_dev *, const struct pci_device_id *);
1790void hfi1_pcie_cleanup(struct pci_dev *);
26ea2544 1791int hfi1_pcie_ddinit(struct hfi1_devdata *, struct pci_dev *);
77241056
MM
1792void hfi1_pcie_ddcleanup(struct hfi1_devdata *);
1793void hfi1_pcie_flr(struct hfi1_devdata *);
1794int pcie_speeds(struct hfi1_devdata *);
1795void request_msix(struct hfi1_devdata *, u32 *, struct hfi1_msix_entry *);
1796void hfi1_enable_intx(struct pci_dev *);
77241056
MM
1797void restore_pci_variables(struct hfi1_devdata *dd);
1798int do_pcie_gen3_transition(struct hfi1_devdata *dd);
1799int parse_platform_config(struct hfi1_devdata *dd);
1800int get_platform_config_field(struct hfi1_devdata *dd,
17fb4f29
JJ
1801 enum platform_config_table_type_encoding
1802 table_type, int table_index, int field_index,
1803 u32 *data, u32 len);
77241056 1804
77241056 1805const char *get_unit_name(int unit);
49dbb6cf
DD
1806const char *get_card_name(struct rvt_dev_info *rdi);
1807struct pci_dev *get_pci_dev(struct rvt_dev_info *rdi);
77241056
MM
1808
1809/*
1810 * Flush write combining store buffers (if present) and perform a write
1811 * barrier.
1812 */
1813static inline void flush_wc(void)
1814{
1815 asm volatile("sfence" : : : "memory");
1816}
1817
1818void handle_eflags(struct hfi1_packet *packet);
1819int process_receive_ib(struct hfi1_packet *packet);
1820int process_receive_bypass(struct hfi1_packet *packet);
1821int process_receive_error(struct hfi1_packet *packet);
1822int kdeth_process_expected(struct hfi1_packet *packet);
1823int kdeth_process_eager(struct hfi1_packet *packet);
1824int process_receive_invalid(struct hfi1_packet *packet);
1825
77241056
MM
1826/* global module parameter variables */
1827extern unsigned int hfi1_max_mtu;
1828extern unsigned int hfi1_cu;
1829extern unsigned int user_credit_return_threshold;
2ce6bf22 1830extern int num_user_contexts;
429b6a72 1831extern unsigned long n_krcvqs;
5b55ea3b 1832extern uint krcvqs[];
77241056
MM
1833extern int krcvqsset;
1834extern uint kdeth_qp;
1835extern uint loopback;
1836extern uint quick_linkup;
1837extern uint rcv_intr_timeout;
1838extern uint rcv_intr_count;
1839extern uint rcv_intr_dynamic;
1840extern ushort link_crc_mask;
1841
1842extern struct mutex hfi1_mutex;
1843
1844/* Number of seconds before our card status check... */
1845#define STATUS_TIMEOUT 60
1846
1847#define DRIVER_NAME "hfi1"
1848#define HFI1_USER_MINOR_BASE 0
1849#define HFI1_TRACE_MINOR 127
77241056
MM
1850#define HFI1_NMINORS 255
1851
1852#define PCI_VENDOR_ID_INTEL 0x8086
1853#define PCI_DEVICE_ID_INTEL0 0x24f0
1854#define PCI_DEVICE_ID_INTEL1 0x24f1
1855
1856#define HFI1_PKT_USER_SC_INTEGRITY \
1857 (SEND_CTXT_CHECK_ENABLE_DISALLOW_NON_KDETH_PACKETS_SMASK \
e38d1e4f 1858 | SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK \
77241056
MM
1859 | SEND_CTXT_CHECK_ENABLE_DISALLOW_BYPASS_SMASK \
1860 | SEND_CTXT_CHECK_ENABLE_DISALLOW_GRH_SMASK)
1861
1862#define HFI1_PKT_KERNEL_SC_INTEGRITY \
1863 (SEND_CTXT_CHECK_ENABLE_DISALLOW_KDETH_PACKETS_SMASK)
1864
1865static inline u64 hfi1_pkt_default_send_ctxt_mask(struct hfi1_devdata *dd,
1866 u16 ctxt_type)
1867{
d9ac4555
JP
1868 u64 base_sc_integrity;
1869
1870 /* No integrity checks if HFI1_CAP_NO_INTEGRITY is set */
1871 if (HFI1_CAP_IS_KSET(NO_INTEGRITY))
1872 return 0;
1873
1874 base_sc_integrity =
77241056
MM
1875 SEND_CTXT_CHECK_ENABLE_DISALLOW_BYPASS_BAD_PKT_LEN_SMASK
1876 | SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK
1877 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_LONG_BYPASS_PACKETS_SMASK
1878 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_LONG_IB_PACKETS_SMASK
1879 | SEND_CTXT_CHECK_ENABLE_DISALLOW_BAD_PKT_LEN_SMASK
1880 | SEND_CTXT_CHECK_ENABLE_DISALLOW_PBC_TEST_SMASK
1881 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_SMALL_BYPASS_PACKETS_SMASK
1882 | SEND_CTXT_CHECK_ENABLE_DISALLOW_TOO_SMALL_IB_PACKETS_SMASK
1883 | SEND_CTXT_CHECK_ENABLE_DISALLOW_RAW_IPV6_SMASK
1884 | SEND_CTXT_CHECK_ENABLE_DISALLOW_RAW_SMASK
1885 | SEND_CTXT_CHECK_ENABLE_CHECK_BYPASS_VL_MAPPING_SMASK
1886 | SEND_CTXT_CHECK_ENABLE_CHECK_VL_MAPPING_SMASK
1887 | SEND_CTXT_CHECK_ENABLE_CHECK_OPCODE_SMASK
1888 | SEND_CTXT_CHECK_ENABLE_CHECK_SLID_SMASK
77241056
MM
1889 | SEND_CTXT_CHECK_ENABLE_CHECK_VL_SMASK
1890 | SEND_CTXT_CHECK_ENABLE_CHECK_ENABLE_SMASK;
1891
1892 if (ctxt_type == SC_USER)
1893 base_sc_integrity |= HFI1_PKT_USER_SC_INTEGRITY;
1894 else
1895 base_sc_integrity |= HFI1_PKT_KERNEL_SC_INTEGRITY;
1896
d9ac4555
JP
1897 /* turn on send-side job key checks if !A0 */
1898 if (!is_ax(dd))
1899 base_sc_integrity |= SEND_CTXT_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
1900
77241056
MM
1901 return base_sc_integrity;
1902}
1903
1904static inline u64 hfi1_pkt_base_sdma_integrity(struct hfi1_devdata *dd)
1905{
d9ac4555
JP
1906 u64 base_sdma_integrity;
1907
1908 /* No integrity checks if HFI1_CAP_NO_INTEGRITY is set */
1909 if (HFI1_CAP_IS_KSET(NO_INTEGRITY))
1910 return 0;
1911
1912 base_sdma_integrity =
77241056 1913 SEND_DMA_CHECK_ENABLE_DISALLOW_BYPASS_BAD_PKT_LEN_SMASK
77241056
MM
1914 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_LONG_BYPASS_PACKETS_SMASK
1915 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_LONG_IB_PACKETS_SMASK
1916 | SEND_DMA_CHECK_ENABLE_DISALLOW_BAD_PKT_LEN_SMASK
1917 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_SMALL_BYPASS_PACKETS_SMASK
1918 | SEND_DMA_CHECK_ENABLE_DISALLOW_TOO_SMALL_IB_PACKETS_SMASK
1919 | SEND_DMA_CHECK_ENABLE_DISALLOW_RAW_IPV6_SMASK
1920 | SEND_DMA_CHECK_ENABLE_DISALLOW_RAW_SMASK
1921 | SEND_DMA_CHECK_ENABLE_CHECK_BYPASS_VL_MAPPING_SMASK
1922 | SEND_DMA_CHECK_ENABLE_CHECK_VL_MAPPING_SMASK
1923 | SEND_DMA_CHECK_ENABLE_CHECK_OPCODE_SMASK
1924 | SEND_DMA_CHECK_ENABLE_CHECK_SLID_SMASK
77241056
MM
1925 | SEND_DMA_CHECK_ENABLE_CHECK_VL_SMASK
1926 | SEND_DMA_CHECK_ENABLE_CHECK_ENABLE_SMASK;
1927
d9ac4555
JP
1928 if (!HFI1_CAP_IS_KSET(STATIC_RATE_CTRL))
1929 base_sdma_integrity |=
1930 SEND_DMA_CHECK_ENABLE_DISALLOW_PBC_STATIC_RATE_CONTROL_SMASK;
1931
1932 /* turn on send-side job key checks if !A0 */
1933 if (!is_ax(dd))
1934 base_sdma_integrity |=
1935 SEND_DMA_CHECK_ENABLE_CHECK_JOB_KEY_SMASK;
1936
77241056
MM
1937 return base_sdma_integrity;
1938}
1939
1940/*
1941 * hfi1_early_err is used (only!) to print early errors before devdata is
1942 * allocated, or when dd->pcidev may not be valid, and at the tail end of
1943 * cleanup when devdata may have been freed, etc. hfi1_dev_porterr is
1944 * the same as dd_dev_err, but is used when the message really needs
1945 * the IB port# to be definitive as to what's happening..
1946 */
1947#define hfi1_early_err(dev, fmt, ...) \
1948 dev_err(dev, fmt, ##__VA_ARGS__)
1949
1950#define hfi1_early_info(dev, fmt, ...) \
1951 dev_info(dev, fmt, ##__VA_ARGS__)
1952
1953#define dd_dev_emerg(dd, fmt, ...) \
1954 dev_emerg(&(dd)->pcidev->dev, "%s: " fmt, \
1955 get_unit_name((dd)->unit), ##__VA_ARGS__)
1956#define dd_dev_err(dd, fmt, ...) \
1957 dev_err(&(dd)->pcidev->dev, "%s: " fmt, \
1958 get_unit_name((dd)->unit), ##__VA_ARGS__)
1959#define dd_dev_warn(dd, fmt, ...) \
1960 dev_warn(&(dd)->pcidev->dev, "%s: " fmt, \
1961 get_unit_name((dd)->unit), ##__VA_ARGS__)
1962
1963#define dd_dev_warn_ratelimited(dd, fmt, ...) \
1964 dev_warn_ratelimited(&(dd)->pcidev->dev, "%s: " fmt, \
1965 get_unit_name((dd)->unit), ##__VA_ARGS__)
1966
1967#define dd_dev_info(dd, fmt, ...) \
1968 dev_info(&(dd)->pcidev->dev, "%s: " fmt, \
1969 get_unit_name((dd)->unit), ##__VA_ARGS__)
1970
c27aad00
JB
1971#define dd_dev_info_ratelimited(dd, fmt, ...) \
1972 dev_info_ratelimited(&(dd)->pcidev->dev, "%s: " fmt, \
1973 get_unit_name((dd)->unit), ##__VA_ARGS__)
1974
a1edc18a
IW
1975#define dd_dev_dbg(dd, fmt, ...) \
1976 dev_dbg(&(dd)->pcidev->dev, "%s: " fmt, \
1977 get_unit_name((dd)->unit), ##__VA_ARGS__)
1978
77241056 1979#define hfi1_dev_porterr(dd, port, fmt, ...) \
cde10afa
JP
1980 dev_err(&(dd)->pcidev->dev, "%s: port %u: " fmt, \
1981 get_unit_name((dd)->unit), (port), ##__VA_ARGS__)
77241056
MM
1982
1983/*
1984 * this is used for formatting hw error messages...
1985 */
1986struct hfi1_hwerror_msgs {
1987 u64 mask;
1988 const char *msg;
1989 size_t sz;
1990};
1991
1992/* in intr.c... */
1993void hfi1_format_hwerrors(u64 hwerrs,
1994 const struct hfi1_hwerror_msgs *hwerrmsgs,
1995 size_t nhwerrmsgs, char *msg, size_t lmsg);
1996
1997#define USER_OPCODE_CHECK_VAL 0xC0
1998#define USER_OPCODE_CHECK_MASK 0xC0
1999#define OPCODE_CHECK_VAL_DISABLED 0x0
2000#define OPCODE_CHECK_MASK_DISABLED 0x0
2001
2002static inline void hfi1_reset_cpu_counters(struct hfi1_devdata *dd)
2003{
2004 struct hfi1_pportdata *ppd;
2005 int i;
2006
2007 dd->z_int_counter = get_all_cpu_total(dd->int_counter);
2008 dd->z_rcv_limit = get_all_cpu_total(dd->rcv_limit);
89abfc8d 2009 dd->z_send_schedule = get_all_cpu_total(dd->send_schedule);
77241056
MM
2010
2011 ppd = (struct hfi1_pportdata *)(dd + 1);
2012 for (i = 0; i < dd->num_pports; i++, ppd++) {
4eb06882
DD
2013 ppd->ibport_data.rvp.z_rc_acks =
2014 get_all_cpu_total(ppd->ibport_data.rvp.rc_acks);
2015 ppd->ibport_data.rvp.z_rc_qacks =
2016 get_all_cpu_total(ppd->ibport_data.rvp.rc_qacks);
77241056
MM
2017 }
2018}
2019
2020/* Control LED state */
2021static inline void setextled(struct hfi1_devdata *dd, u32 on)
2022{
2023 if (on)
2024 write_csr(dd, DCC_CFG_LED_CNTRL, 0x1F);
2025 else
2026 write_csr(dd, DCC_CFG_LED_CNTRL, 0x10);
2027}
2028
765a6fac
DL
2029/* return the i2c resource given the target */
2030static inline u32 i2c_target(u32 target)
2031{
2032 return target ? CR_I2C2 : CR_I2C1;
2033}
2034
2035/* return the i2c chain chip resource that this HFI uses for QSFP */
2036static inline u32 qsfp_resource(struct hfi1_devdata *dd)
2037{
2038 return i2c_target(dd->hfi1_id);
2039}
2040
fe4d9243
EH
2041/* Is this device integrated or discrete? */
2042static inline bool is_integrated(struct hfi1_devdata *dd)
2043{
2044 return dd->pcidev->device == PCI_DEVICE_ID_INTEL1;
2045}
2046
77241056
MM
2047int hfi1_tempsense_rd(struct hfi1_devdata *dd, struct hfi1_temp *temp);
2048
462b6b21
SS
2049#define DD_DEV_ENTRY(dd) __string(dev, dev_name(&(dd)->pcidev->dev))
2050#define DD_DEV_ASSIGN(dd) __assign_str(dev, dev_name(&(dd)->pcidev->dev))
2051
2052#define packettype_name(etype) { RHF_RCV_TYPE_##etype, #etype }
2053#define show_packettype(etype) \
2054__print_symbolic(etype, \
2055 packettype_name(EXPECTED), \
2056 packettype_name(EAGER), \
2057 packettype_name(IB), \
2058 packettype_name(ERROR), \
2059 packettype_name(BYPASS))
2060
2061#define ib_opcode_name(opcode) { IB_OPCODE_##opcode, #opcode }
2062#define show_ib_opcode(opcode) \
2063__print_symbolic(opcode, \
2064 ib_opcode_name(RC_SEND_FIRST), \
2065 ib_opcode_name(RC_SEND_MIDDLE), \
2066 ib_opcode_name(RC_SEND_LAST), \
2067 ib_opcode_name(RC_SEND_LAST_WITH_IMMEDIATE), \
2068 ib_opcode_name(RC_SEND_ONLY), \
2069 ib_opcode_name(RC_SEND_ONLY_WITH_IMMEDIATE), \
2070 ib_opcode_name(RC_RDMA_WRITE_FIRST), \
2071 ib_opcode_name(RC_RDMA_WRITE_MIDDLE), \
2072 ib_opcode_name(RC_RDMA_WRITE_LAST), \
2073 ib_opcode_name(RC_RDMA_WRITE_LAST_WITH_IMMEDIATE), \
2074 ib_opcode_name(RC_RDMA_WRITE_ONLY), \
2075 ib_opcode_name(RC_RDMA_WRITE_ONLY_WITH_IMMEDIATE), \
2076 ib_opcode_name(RC_RDMA_READ_REQUEST), \
2077 ib_opcode_name(RC_RDMA_READ_RESPONSE_FIRST), \
2078 ib_opcode_name(RC_RDMA_READ_RESPONSE_MIDDLE), \
2079 ib_opcode_name(RC_RDMA_READ_RESPONSE_LAST), \
2080 ib_opcode_name(RC_RDMA_READ_RESPONSE_ONLY), \
2081 ib_opcode_name(RC_ACKNOWLEDGE), \
2082 ib_opcode_name(RC_ATOMIC_ACKNOWLEDGE), \
2083 ib_opcode_name(RC_COMPARE_SWAP), \
2084 ib_opcode_name(RC_FETCH_ADD), \
2085 ib_opcode_name(UC_SEND_FIRST), \
2086 ib_opcode_name(UC_SEND_MIDDLE), \
2087 ib_opcode_name(UC_SEND_LAST), \
2088 ib_opcode_name(UC_SEND_LAST_WITH_IMMEDIATE), \
2089 ib_opcode_name(UC_SEND_ONLY), \
2090 ib_opcode_name(UC_SEND_ONLY_WITH_IMMEDIATE), \
2091 ib_opcode_name(UC_RDMA_WRITE_FIRST), \
2092 ib_opcode_name(UC_RDMA_WRITE_MIDDLE), \
2093 ib_opcode_name(UC_RDMA_WRITE_LAST), \
2094 ib_opcode_name(UC_RDMA_WRITE_LAST_WITH_IMMEDIATE), \
2095 ib_opcode_name(UC_RDMA_WRITE_ONLY), \
2096 ib_opcode_name(UC_RDMA_WRITE_ONLY_WITH_IMMEDIATE), \
2097 ib_opcode_name(UD_SEND_ONLY), \
2098 ib_opcode_name(UD_SEND_ONLY_WITH_IMMEDIATE), \
2099 ib_opcode_name(CNP))
77241056 2100#endif /* _HFI1_KERNEL_H */