1f931551bSRalph Campbell /*
2f931551bSRalph Campbell * Copyright (c) 2006, 2007, 2008, 2009, 2010 QLogic Corporation.
3f931551bSRalph Campbell * All rights reserved.
4f931551bSRalph Campbell * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
5f931551bSRalph Campbell *
6f931551bSRalph Campbell * This software is available to you under a choice of one of two
7f931551bSRalph Campbell * licenses. You may choose to be licensed under the terms of the GNU
8f931551bSRalph Campbell * General Public License (GPL) Version 2, available from the file
9f931551bSRalph Campbell * COPYING in the main directory of this source tree, or the
10f931551bSRalph Campbell * OpenIB.org BSD license below:
11f931551bSRalph Campbell *
12f931551bSRalph Campbell * Redistribution and use in source and binary forms, with or
13f931551bSRalph Campbell * without modification, are permitted provided that the following
14f931551bSRalph Campbell * conditions are met:
15f931551bSRalph Campbell *
16f931551bSRalph Campbell * - Redistributions of source code must retain the above
17f931551bSRalph Campbell * copyright notice, this list of conditions and the following
18f931551bSRalph Campbell * disclaimer.
19f931551bSRalph Campbell *
20f931551bSRalph Campbell * - Redistributions in binary form must reproduce the above
21f931551bSRalph Campbell * copyright notice, this list of conditions and the following
22f931551bSRalph Campbell * disclaimer in the documentation and/or other materials
23f931551bSRalph Campbell * provided with the distribution.
24f931551bSRalph Campbell *
25f931551bSRalph Campbell * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26f931551bSRalph Campbell * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27f931551bSRalph Campbell * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28f931551bSRalph Campbell * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29f931551bSRalph Campbell * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30f931551bSRalph Campbell * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31f931551bSRalph Campbell * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32f931551bSRalph Campbell * SOFTWARE.
33f931551bSRalph Campbell */
34f931551bSRalph Campbell
35f931551bSRalph Campbell #ifndef _QIB_COMMON_H
36f931551bSRalph Campbell #define _QIB_COMMON_H
37f931551bSRalph Campbell
38f931551bSRalph Campbell /*
39f931551bSRalph Campbell * This file contains defines, structures, etc. that are used
40f931551bSRalph Campbell * to communicate between kernel and user code.
41f931551bSRalph Campbell */
42f931551bSRalph Campbell
43f931551bSRalph Campbell /* This is the IEEE-assigned OUI for QLogic Inc. QLogic_IB */
44f931551bSRalph Campbell #define QIB_SRC_OUI_1 0x00
45f931551bSRalph Campbell #define QIB_SRC_OUI_2 0x11
46f931551bSRalph Campbell #define QIB_SRC_OUI_3 0x75
47f931551bSRalph Campbell
48f931551bSRalph Campbell /* version of protocol header (known to chip also). In the long run,
49f931551bSRalph Campbell * we should be able to generate and accept a range of version numbers;
50f931551bSRalph Campbell * for now we only accept one, and it's compiled in.
51f931551bSRalph Campbell */
52f931551bSRalph Campbell #define IPS_PROTO_VERSION 2
53f931551bSRalph Campbell
54f931551bSRalph Campbell /*
55f931551bSRalph Campbell * These are compile time constants that you may want to enable or disable
56f931551bSRalph Campbell * if you are trying to debug problems with code or performance.
57f931551bSRalph Campbell * QIB_VERBOSE_TRACING define as 1 if you want additional tracing in
58f931551bSRalph Campbell * fastpath code
59f931551bSRalph Campbell * QIB_TRACE_REGWRITES define as 1 if you want register writes to be
60*2d959849SChengguang Xu * traced in fastpath code
61f931551bSRalph Campbell * _QIB_TRACING define as 0 if you want to remove all tracing in a
62f931551bSRalph Campbell * compilation unit
63f931551bSRalph Campbell */
64f931551bSRalph Campbell
65f931551bSRalph Campbell /*
66f931551bSRalph Campbell * The value in the BTH QP field that QLogic_IB uses to differentiate
67f931551bSRalph Campbell * an qlogic_ib protocol IB packet vs standard IB transport
68f931551bSRalph Campbell * This it needs to be even (0x656b78), because the LSB is sometimes
69f931551bSRalph Campbell * used for the MSB of context. The change may cause a problem
70f931551bSRalph Campbell * interoperating with older software.
71f931551bSRalph Campbell */
72f931551bSRalph Campbell #define QIB_KD_QP 0x656b78
73f931551bSRalph Campbell
74f931551bSRalph Campbell /*
75f931551bSRalph Campbell * These are the status bits readable (in ascii form, 64bit value)
76f931551bSRalph Campbell * from the "status" sysfs file. For binary compatibility, values
77f931551bSRalph Campbell * must remain as is; removed states can be reused for different
78f931551bSRalph Campbell * purposes.
79f931551bSRalph Campbell */
80f931551bSRalph Campbell #define QIB_STATUS_INITTED 0x1 /* basic initialization done */
81f931551bSRalph Campbell /* Chip has been found and initted */
82f931551bSRalph Campbell #define QIB_STATUS_CHIP_PRESENT 0x20
83f931551bSRalph Campbell /* IB link is at ACTIVE, usable for data traffic */
84f931551bSRalph Campbell #define QIB_STATUS_IB_READY 0x40
85f931551bSRalph Campbell /* link is configured, LID, MTU, etc. have been set */
86f931551bSRalph Campbell #define QIB_STATUS_IB_CONF 0x80
87f931551bSRalph Campbell /* A Fatal hardware error has occurred. */
88f931551bSRalph Campbell #define QIB_STATUS_HWERROR 0x200
89f931551bSRalph Campbell
90f931551bSRalph Campbell /*
91f931551bSRalph Campbell * The list of usermode accessible registers. Also see Reg_* later in file.
92f931551bSRalph Campbell */
93f931551bSRalph Campbell enum qib_ureg {
94f931551bSRalph Campbell /* (RO) DMA RcvHdr to be used next. */
95f931551bSRalph Campbell ur_rcvhdrtail = 0,
96f931551bSRalph Campbell /* (RW) RcvHdr entry to be processed next by host. */
97f931551bSRalph Campbell ur_rcvhdrhead = 1,
98f931551bSRalph Campbell /* (RO) Index of next Eager index to use. */
99f931551bSRalph Campbell ur_rcvegrindextail = 2,
100f931551bSRalph Campbell /* (RW) Eager TID to be processed next */
101f931551bSRalph Campbell ur_rcvegrindexhead = 3,
102f931551bSRalph Campbell /* For internal use only; max register number. */
103f931551bSRalph Campbell _QIB_UregMax
104f931551bSRalph Campbell };
105f931551bSRalph Campbell
106f931551bSRalph Campbell /* bit values for spi_runtime_flags */
107f931551bSRalph Campbell #define QIB_RUNTIME_PCIE 0x0002
108f931551bSRalph Campbell #define QIB_RUNTIME_FORCE_WC_ORDER 0x0004
109f931551bSRalph Campbell #define QIB_RUNTIME_RCVHDR_COPY 0x0008
110f931551bSRalph Campbell #define QIB_RUNTIME_MASTER 0x0010
111f931551bSRalph Campbell #define QIB_RUNTIME_RCHK 0x0020
112f931551bSRalph Campbell #define QIB_RUNTIME_NODMA_RTAIL 0x0080
113f931551bSRalph Campbell #define QIB_RUNTIME_SPECIAL_TRIGGER 0x0100
114f931551bSRalph Campbell #define QIB_RUNTIME_SDMA 0x0200
115f931551bSRalph Campbell #define QIB_RUNTIME_FORCE_PIOAVAIL 0x0400
116f931551bSRalph Campbell #define QIB_RUNTIME_PIO_REGSWAPPED 0x0800
117f931551bSRalph Campbell #define QIB_RUNTIME_CTXT_MSB_IN_QP 0x1000
118f931551bSRalph Campbell #define QIB_RUNTIME_CTXT_REDIRECT 0x2000
119f931551bSRalph Campbell #define QIB_RUNTIME_HDRSUPP 0x4000
120f931551bSRalph Campbell
121f931551bSRalph Campbell /*
122f931551bSRalph Campbell * This structure is returned by qib_userinit() immediately after
123f931551bSRalph Campbell * open to get implementation-specific info, and info specific to this
124f931551bSRalph Campbell * instance.
125f931551bSRalph Campbell *
126f931551bSRalph Campbell * This struct must have explict pad fields where type sizes
127f931551bSRalph Campbell * may result in different alignments between 32 and 64 bit
128f931551bSRalph Campbell * programs, since the 64 bit * bit kernel requires the user code
129f931551bSRalph Campbell * to have matching offsets
130f931551bSRalph Campbell */
131f931551bSRalph Campbell struct qib_base_info {
132f931551bSRalph Campbell /* version of hardware, for feature checking. */
133f931551bSRalph Campbell __u32 spi_hw_version;
134f931551bSRalph Campbell /* version of software, for feature checking. */
135f931551bSRalph Campbell __u32 spi_sw_version;
136f931551bSRalph Campbell /* QLogic_IB context assigned, goes into sent packets */
137f931551bSRalph Campbell __u16 spi_ctxt;
138f931551bSRalph Campbell __u16 spi_subctxt;
139f931551bSRalph Campbell /*
140f931551bSRalph Campbell * IB MTU, packets IB data must be less than this.
141f931551bSRalph Campbell * The MTU is in bytes, and will be a multiple of 4 bytes.
142f931551bSRalph Campbell */
143f931551bSRalph Campbell __u32 spi_mtu;
144f931551bSRalph Campbell /*
145f931551bSRalph Campbell * Size of a PIO buffer. Any given packet's total size must be less
146f931551bSRalph Campbell * than this (in words). Included is the starting control word, so
147f931551bSRalph Campbell * if 513 is returned, then total pkt size is 512 words or less.
148f931551bSRalph Campbell */
149f931551bSRalph Campbell __u32 spi_piosize;
150f931551bSRalph Campbell /* size of the TID cache in qlogic_ib, in entries */
151f931551bSRalph Campbell __u32 spi_tidcnt;
152f931551bSRalph Campbell /* size of the TID Eager list in qlogic_ib, in entries */
153f931551bSRalph Campbell __u32 spi_tidegrcnt;
154f931551bSRalph Campbell /* size of a single receive header queue entry in words. */
155f931551bSRalph Campbell __u32 spi_rcvhdrent_size;
156f931551bSRalph Campbell /*
157f931551bSRalph Campbell * Count of receive header queue entries allocated.
158f931551bSRalph Campbell * This may be less than the spu_rcvhdrcnt passed in!.
159f931551bSRalph Campbell */
160f931551bSRalph Campbell __u32 spi_rcvhdr_cnt;
161f931551bSRalph Campbell
162f931551bSRalph Campbell /* per-chip and other runtime features bitmap (QIB_RUNTIME_*) */
163f931551bSRalph Campbell __u32 spi_runtime_flags;
164f931551bSRalph Campbell
165f931551bSRalph Campbell /* address where hardware receive header queue is mapped */
166f931551bSRalph Campbell __u64 spi_rcvhdr_base;
167f931551bSRalph Campbell
168f931551bSRalph Campbell /* user program. */
169f931551bSRalph Campbell
170f931551bSRalph Campbell /* base address of eager TID receive buffers used by hardware. */
171f931551bSRalph Campbell __u64 spi_rcv_egrbufs;
172f931551bSRalph Campbell
173f931551bSRalph Campbell /* Allocated by initialization code, not by protocol. */
174f931551bSRalph Campbell
175f931551bSRalph Campbell /*
176f931551bSRalph Campbell * Size of each TID buffer in host memory, starting at
177f931551bSRalph Campbell * spi_rcv_egrbufs. The buffers are virtually contiguous.
178f931551bSRalph Campbell */
179f931551bSRalph Campbell __u32 spi_rcv_egrbufsize;
180f931551bSRalph Campbell /*
181f931551bSRalph Campbell * The special QP (queue pair) value that identifies an qlogic_ib
182f931551bSRalph Campbell * protocol packet from standard IB packets. More, probably much
183f931551bSRalph Campbell * more, to be added.
184f931551bSRalph Campbell */
185f931551bSRalph Campbell __u32 spi_qpair;
186f931551bSRalph Campbell
187f931551bSRalph Campbell /*
188f931551bSRalph Campbell * User register base for init code, not to be used directly by
189f931551bSRalph Campbell * protocol or applications. Always points to chip registers,
190f931551bSRalph Campbell * for normal or shared context.
191f931551bSRalph Campbell */
192f931551bSRalph Campbell __u64 spi_uregbase;
193f931551bSRalph Campbell /*
194f931551bSRalph Campbell * Maximum buffer size in bytes that can be used in a single TID
195f931551bSRalph Campbell * entry (assuming the buffer is aligned to this boundary). This is
196f931551bSRalph Campbell * the minimum of what the hardware and software support Guaranteed
197f931551bSRalph Campbell * to be a power of 2.
198f931551bSRalph Campbell */
199f931551bSRalph Campbell __u32 spi_tid_maxsize;
200f931551bSRalph Campbell /*
201f931551bSRalph Campbell * alignment of each pio send buffer (byte count
202f931551bSRalph Campbell * to add to spi_piobufbase to get to second buffer)
203f931551bSRalph Campbell */
204f931551bSRalph Campbell __u32 spi_pioalign;
205f931551bSRalph Campbell /*
206f931551bSRalph Campbell * The index of the first pio buffer available to this process;
207f931551bSRalph Campbell * needed to do lookup in spi_pioavailaddr; not added to
208f931551bSRalph Campbell * spi_piobufbase.
209f931551bSRalph Campbell */
210f931551bSRalph Campbell __u32 spi_pioindex;
211f931551bSRalph Campbell /* number of buffers mapped for this process */
212f931551bSRalph Campbell __u32 spi_piocnt;
213f931551bSRalph Campbell
214f931551bSRalph Campbell /*
215f931551bSRalph Campbell * Base address of writeonly pio buffers for this process.
216f931551bSRalph Campbell * Each buffer has spi_piosize words, and is aligned on spi_pioalign
217f931551bSRalph Campbell * boundaries. spi_piocnt buffers are mapped from this address
218f931551bSRalph Campbell */
219f931551bSRalph Campbell __u64 spi_piobufbase;
220f931551bSRalph Campbell
221f931551bSRalph Campbell /*
222f931551bSRalph Campbell * Base address of readonly memory copy of the pioavail registers.
223f931551bSRalph Campbell * There are 2 bits for each buffer.
224f931551bSRalph Campbell */
225f931551bSRalph Campbell __u64 spi_pioavailaddr;
226f931551bSRalph Campbell
227f931551bSRalph Campbell /*
228f931551bSRalph Campbell * Address where driver updates a copy of the interface and driver
229f931551bSRalph Campbell * status (QIB_STATUS_*) as a 64 bit value. It's followed by a
230f931551bSRalph Campbell * link status qword (formerly combined with driver status), then a
231f931551bSRalph Campbell * string indicating hardware error, if there was one.
232f931551bSRalph Campbell */
233f931551bSRalph Campbell __u64 spi_status;
234f931551bSRalph Campbell
235f931551bSRalph Campbell /* number of chip ctxts available to user processes */
236f931551bSRalph Campbell __u32 spi_nctxts;
237f931551bSRalph Campbell __u16 spi_unit; /* unit number of chip we are using */
238f931551bSRalph Campbell __u16 spi_port; /* IB port number we are using */
239f931551bSRalph Campbell /* num bufs in each contiguous set */
240f931551bSRalph Campbell __u32 spi_rcv_egrperchunk;
241f931551bSRalph Campbell /* size in bytes of each contiguous set */
242f931551bSRalph Campbell __u32 spi_rcv_egrchunksize;
243f931551bSRalph Campbell /* total size of mmap to cover full rcvegrbuffers */
244f931551bSRalph Campbell __u32 spi_rcv_egrbuftotlen;
245f931551bSRalph Campbell __u32 spi_rhf_offset; /* dword offset in hdrqent for rcvhdr flags */
246f931551bSRalph Campbell /* address of readonly memory copy of the rcvhdrq tail register. */
247f931551bSRalph Campbell __u64 spi_rcvhdr_tailaddr;
248f931551bSRalph Campbell
249f931551bSRalph Campbell /*
250f931551bSRalph Campbell * shared memory pages for subctxts if ctxt is shared; these cover
251f931551bSRalph Campbell * all the processes in the group sharing a single context.
252f931551bSRalph Campbell * all have enough space for the num_subcontexts value on this job.
253f931551bSRalph Campbell */
254f931551bSRalph Campbell __u64 spi_subctxt_uregbase;
255f931551bSRalph Campbell __u64 spi_subctxt_rcvegrbuf;
256f931551bSRalph Campbell __u64 spi_subctxt_rcvhdr_base;
257f931551bSRalph Campbell
258f931551bSRalph Campbell /* shared memory page for send buffer disarm status */
259f931551bSRalph Campbell __u64 spi_sendbuf_status;
260a46a2802SMike Marciniszyn } __aligned(8);
261f931551bSRalph Campbell
262f931551bSRalph Campbell /*
263f931551bSRalph Campbell * This version number is given to the driver by the user code during
264f931551bSRalph Campbell * initialization in the spu_userversion field of qib_user_info, so
265f931551bSRalph Campbell * the driver can check for compatibility with user code.
266f931551bSRalph Campbell *
267f931551bSRalph Campbell * The major version changes when data structures
268f931551bSRalph Campbell * change in an incompatible way. The driver must be the same or higher
269f931551bSRalph Campbell * for initialization to succeed. In some cases, a higher version
270f931551bSRalph Campbell * driver will not interoperate with older software, and initialization
271f931551bSRalph Campbell * will return an error.
272f931551bSRalph Campbell */
273f931551bSRalph Campbell #define QIB_USER_SWMAJOR 1
274f931551bSRalph Campbell
275f931551bSRalph Campbell /*
276f931551bSRalph Campbell * Minor version differences are always compatible
277f931551bSRalph Campbell * a within a major version, however if user software is larger
278f931551bSRalph Campbell * than driver software, some new features and/or structure fields
279f931551bSRalph Campbell * may not be implemented; the user code must deal with this if it
280f931551bSRalph Campbell * cares, or it must abort after initialization reports the difference.
281f931551bSRalph Campbell */
2824668e4b5SCQ Tang #define QIB_USER_SWMINOR 13
283f931551bSRalph Campbell
284f931551bSRalph Campbell #define QIB_USER_SWVERSION ((QIB_USER_SWMAJOR << 16) | QIB_USER_SWMINOR)
285f931551bSRalph Campbell
286f931551bSRalph Campbell #ifndef QIB_KERN_TYPE
287f931551bSRalph Campbell #define QIB_KERN_TYPE 0
288f931551bSRalph Campbell #endif
289f931551bSRalph Campbell
290f931551bSRalph Campbell /*
291f931551bSRalph Campbell * Similarly, this is the kernel version going back to the user. It's
292f931551bSRalph Campbell * slightly different, in that we want to tell if the driver was built as
293f931551bSRalph Campbell * part of a QLogic release, or from the driver from openfabrics.org,
294f931551bSRalph Campbell * kernel.org, or a standard distribution, for support reasons.
295f931551bSRalph Campbell * The high bit is 0 for non-QLogic and 1 for QLogic-built/supplied.
296f931551bSRalph Campbell *
297f931551bSRalph Campbell * It's returned by the driver to the user code during initialization in the
298f931551bSRalph Campbell * spi_sw_version field of qib_base_info, so the user code can in turn
299f931551bSRalph Campbell * check for compatibility with the kernel.
300f931551bSRalph Campbell */
301f931551bSRalph Campbell #define QIB_KERN_SWVERSION ((QIB_KERN_TYPE << 31) | QIB_USER_SWVERSION)
302f931551bSRalph Campbell
303f931551bSRalph Campbell /*
304e20d5838SDean Luick * Define the driver version number. This is something that refers only
305e20d5838SDean Luick * to the driver itself, not the software interfaces it supports.
306e20d5838SDean Luick */
307e20d5838SDean Luick #define QIB_DRIVER_VERSION_BASE "1.11"
308e20d5838SDean Luick
309e20d5838SDean Luick /* create the final driver version string */
310e20d5838SDean Luick #ifdef QIB_IDSTR
311e20d5838SDean Luick #define QIB_DRIVER_VERSION QIB_DRIVER_VERSION_BASE " " QIB_IDSTR
312e20d5838SDean Luick #else
313e20d5838SDean Luick #define QIB_DRIVER_VERSION QIB_DRIVER_VERSION_BASE
314e20d5838SDean Luick #endif
315e20d5838SDean Luick
316e20d5838SDean Luick /*
317bdf8edcbSDave Olson * If the unit is specified via open, HCA choice is fixed. If port is
318bdf8edcbSDave Olson * specified, it's also fixed. Otherwise we try to spread contexts
319bdf8edcbSDave Olson * across ports and HCAs, using different algorithims. WITHIN is
320bdf8edcbSDave Olson * the old default, prior to this mechanism.
321bdf8edcbSDave Olson */
322bdf8edcbSDave Olson #define QIB_PORT_ALG_ACROSS 0 /* round robin contexts across HCAs, then
323bdf8edcbSDave Olson * ports; this is the default */
324bdf8edcbSDave Olson #define QIB_PORT_ALG_WITHIN 1 /* use all contexts on an HCA (round robin
325bdf8edcbSDave Olson * active ports within), then next HCA */
326bdf8edcbSDave Olson #define QIB_PORT_ALG_COUNT 2 /* number of algorithm choices */
327bdf8edcbSDave Olson
328bdf8edcbSDave Olson /*
329f931551bSRalph Campbell * This structure is passed to qib_userinit() to tell the driver where
330f931551bSRalph Campbell * user code buffers are, sizes, etc. The offsets and sizes of the
331f931551bSRalph Campbell * fields must remain unchanged, for binary compatibility. It can
332f931551bSRalph Campbell * be extended, if userversion is changed so user code can tell, if needed
333f931551bSRalph Campbell */
334f931551bSRalph Campbell struct qib_user_info {
335f931551bSRalph Campbell /*
336f931551bSRalph Campbell * version of user software, to detect compatibility issues.
337f931551bSRalph Campbell * Should be set to QIB_USER_SWVERSION.
338f931551bSRalph Campbell */
339f931551bSRalph Campbell __u32 spu_userversion;
340f931551bSRalph Campbell
341f931551bSRalph Campbell __u32 _spu_unused2;
342f931551bSRalph Campbell
343f931551bSRalph Campbell /* size of struct base_info to write to */
344f931551bSRalph Campbell __u32 spu_base_info_size;
345f931551bSRalph Campbell
346bdf8edcbSDave Olson __u32 spu_port_alg; /* which QIB_PORT_ALG_*; unused user minor < 11 */
347f931551bSRalph Campbell
348f931551bSRalph Campbell /*
349f931551bSRalph Campbell * If two or more processes wish to share a context, each process
350f931551bSRalph Campbell * must set the spu_subctxt_cnt and spu_subctxt_id to the same
351f931551bSRalph Campbell * values. The only restriction on the spu_subctxt_id is that
352f931551bSRalph Campbell * it be unique for a given node.
353f931551bSRalph Campbell */
354f931551bSRalph Campbell __u16 spu_subctxt_cnt;
355f931551bSRalph Campbell __u16 spu_subctxt_id;
356f931551bSRalph Campbell
357f931551bSRalph Campbell __u32 spu_port; /* IB port requested by user if > 0 */
358f931551bSRalph Campbell
359f931551bSRalph Campbell /*
360f931551bSRalph Campbell * address of struct base_info to write to
361f931551bSRalph Campbell */
362f931551bSRalph Campbell __u64 spu_base_info;
363f931551bSRalph Campbell
364a46a2802SMike Marciniszyn } __aligned(8);
365f931551bSRalph Campbell
366f931551bSRalph Campbell /* User commands. */
367f931551bSRalph Campbell
368f931551bSRalph Campbell /* 16 available, was: old set up userspace (for old user code) */
369f931551bSRalph Campbell #define QIB_CMD_CTXT_INFO 17 /* find out what resources we got */
370f931551bSRalph Campbell #define QIB_CMD_RECV_CTRL 18 /* control receipt of packets */
371f931551bSRalph Campbell #define QIB_CMD_TID_UPDATE 19 /* update expected TID entries */
372f931551bSRalph Campbell #define QIB_CMD_TID_FREE 20 /* free expected TID entries */
373f931551bSRalph Campbell #define QIB_CMD_SET_PART_KEY 21 /* add partition key */
374f931551bSRalph Campbell /* 22 available, was: return info on slave processes (for old user code) */
375f931551bSRalph Campbell #define QIB_CMD_ASSIGN_CTXT 23 /* allocate HCA and ctxt */
376f931551bSRalph Campbell #define QIB_CMD_USER_INIT 24 /* set up userspace */
377f931551bSRalph Campbell #define QIB_CMD_UNUSED_1 25
378f931551bSRalph Campbell #define QIB_CMD_UNUSED_2 26
379f931551bSRalph Campbell #define QIB_CMD_PIOAVAILUPD 27 /* force an update of PIOAvail reg */
380f931551bSRalph Campbell #define QIB_CMD_POLL_TYPE 28 /* set the kind of polling we want */
381f931551bSRalph Campbell #define QIB_CMD_ARMLAUNCH_CTRL 29 /* armlaunch detection control */
382f931551bSRalph Campbell /* 30 is unused */
383f931551bSRalph Campbell #define QIB_CMD_SDMA_INFLIGHT 31 /* sdma inflight counter request */
384f931551bSRalph Campbell #define QIB_CMD_SDMA_COMPLETE 32 /* sdma completion counter request */
385f931551bSRalph Campbell /* 33 available, was a testing feature */
386f931551bSRalph Campbell #define QIB_CMD_DISARM_BUFS 34 /* disarm send buffers w/ errors */
387f931551bSRalph Campbell #define QIB_CMD_ACK_EVENT 35 /* ack & clear bits */
388f931551bSRalph Campbell #define QIB_CMD_CPUS_LIST 36 /* list of cpus allocated, for pinned
389f931551bSRalph Campbell * processes: qib_cpus_list */
390f931551bSRalph Campbell
391f931551bSRalph Campbell /*
392f931551bSRalph Campbell * QIB_CMD_ACK_EVENT obsoletes QIB_CMD_DISARM_BUFS, but we keep it for
393f931551bSRalph Campbell * compatibility with libraries from previous release. The ACK_EVENT
394f931551bSRalph Campbell * will take appropriate driver action (if any, just DISARM for now),
395f931551bSRalph Campbell * then clear the bits passed in as part of the mask. These bits are
396f931551bSRalph Campbell * in the first 64bit word at spi_sendbuf_status, and are passed to
397f931551bSRalph Campbell * the driver in the event_mask union as well.
398f931551bSRalph Campbell */
399f931551bSRalph Campbell #define _QIB_EVENT_DISARM_BUFS_BIT 0
400f931551bSRalph Campbell #define _QIB_EVENT_LINKDOWN_BIT 1
401f931551bSRalph Campbell #define _QIB_EVENT_LID_CHANGE_BIT 2
402f931551bSRalph Campbell #define _QIB_EVENT_LMC_CHANGE_BIT 3
403f931551bSRalph Campbell #define _QIB_EVENT_SL2VL_CHANGE_BIT 4
404f931551bSRalph Campbell #define _QIB_MAX_EVENT_BIT _QIB_EVENT_SL2VL_CHANGE_BIT
405f931551bSRalph Campbell
406f931551bSRalph Campbell #define QIB_EVENT_DISARM_BUFS_BIT (1UL << _QIB_EVENT_DISARM_BUFS_BIT)
407f931551bSRalph Campbell #define QIB_EVENT_LINKDOWN_BIT (1UL << _QIB_EVENT_LINKDOWN_BIT)
408f931551bSRalph Campbell #define QIB_EVENT_LID_CHANGE_BIT (1UL << _QIB_EVENT_LID_CHANGE_BIT)
409f931551bSRalph Campbell #define QIB_EVENT_LMC_CHANGE_BIT (1UL << _QIB_EVENT_LMC_CHANGE_BIT)
410f931551bSRalph Campbell #define QIB_EVENT_SL2VL_CHANGE_BIT (1UL << _QIB_EVENT_SL2VL_CHANGE_BIT)
411f931551bSRalph Campbell
412f931551bSRalph Campbell
413f931551bSRalph Campbell /*
414f931551bSRalph Campbell * Poll types
415f931551bSRalph Campbell */
416f931551bSRalph Campbell #define QIB_POLL_TYPE_ANYRCV 0x0
417f931551bSRalph Campbell #define QIB_POLL_TYPE_URGENT 0x1
418f931551bSRalph Campbell
419f931551bSRalph Campbell struct qib_ctxt_info {
420f931551bSRalph Campbell __u16 num_active; /* number of active units */
421f931551bSRalph Campbell __u16 unit; /* unit (chip) assigned to caller */
422f931551bSRalph Campbell __u16 port; /* IB port assigned to caller (1-based) */
423f931551bSRalph Campbell __u16 ctxt; /* ctxt on unit assigned to caller */
424f931551bSRalph Campbell __u16 subctxt; /* subctxt on unit assigned to caller */
425f931551bSRalph Campbell __u16 num_ctxts; /* number of ctxts available on unit */
426f931551bSRalph Campbell __u16 num_subctxts; /* number of subctxts opened on ctxt */
427f931551bSRalph Campbell __u16 rec_cpu; /* cpu # for affinity (ffff if none) */
428f931551bSRalph Campbell };
429f931551bSRalph Campbell
430f931551bSRalph Campbell struct qib_tid_info {
431f931551bSRalph Campbell __u32 tidcnt;
432f931551bSRalph Campbell /* make structure same size in 32 and 64 bit */
433f931551bSRalph Campbell __u32 tid__unused;
434f931551bSRalph Campbell /* virtual address of first page in transfer */
435f931551bSRalph Campbell __u64 tidvaddr;
436f931551bSRalph Campbell /* pointer (same size 32/64 bit) to __u16 tid array */
437f931551bSRalph Campbell __u64 tidlist;
438f931551bSRalph Campbell
439f931551bSRalph Campbell /*
440f931551bSRalph Campbell * pointer (same size 32/64 bit) to bitmap of TIDs used
441f931551bSRalph Campbell * for this call; checked for being large enough at open
442f931551bSRalph Campbell */
443f931551bSRalph Campbell __u64 tidmap;
444f931551bSRalph Campbell };
445f931551bSRalph Campbell
446f931551bSRalph Campbell struct qib_cmd {
447f931551bSRalph Campbell __u32 type; /* command type */
448f931551bSRalph Campbell union {
449f931551bSRalph Campbell struct qib_tid_info tid_info;
450f931551bSRalph Campbell struct qib_user_info user_info;
451f931551bSRalph Campbell
452f931551bSRalph Campbell /*
453f931551bSRalph Campbell * address in userspace where we should put the sdma
454f931551bSRalph Campbell * inflight counter
455f931551bSRalph Campbell */
456f931551bSRalph Campbell __u64 sdma_inflight;
457f931551bSRalph Campbell /*
458f931551bSRalph Campbell * address in userspace where we should put the sdma
459f931551bSRalph Campbell * completion counter
460f931551bSRalph Campbell */
461f931551bSRalph Campbell __u64 sdma_complete;
462f931551bSRalph Campbell /* address in userspace of struct qib_ctxt_info to
463f931551bSRalph Campbell write result to */
464f931551bSRalph Campbell __u64 ctxt_info;
465f931551bSRalph Campbell /* enable/disable receipt of packets */
466f931551bSRalph Campbell __u32 recv_ctrl;
467f931551bSRalph Campbell /* enable/disable armlaunch errors (non-zero to enable) */
468f931551bSRalph Campbell __u32 armlaunch_ctrl;
469f931551bSRalph Campbell /* partition key to set */
470f931551bSRalph Campbell __u16 part_key;
471f931551bSRalph Campbell /* user address of __u32 bitmask of active slaves */
472f931551bSRalph Campbell __u64 slave_mask_addr;
473f931551bSRalph Campbell /* type of polling we want */
474f931551bSRalph Campbell __u16 poll_type;
475f931551bSRalph Campbell /* back pressure enable bit for one particular context */
476f931551bSRalph Campbell __u8 ctxt_bp;
477f931551bSRalph Campbell /* qib_user_event_ack(), IPATH_EVENT_* bits */
478f931551bSRalph Campbell __u64 event_mask;
479f931551bSRalph Campbell } cmd;
480f931551bSRalph Campbell };
481f931551bSRalph Campbell
482f931551bSRalph Campbell struct qib_iovec {
483f931551bSRalph Campbell /* Pointer to data, but same size 32 and 64 bit */
484f931551bSRalph Campbell __u64 iov_base;
485f931551bSRalph Campbell
486f931551bSRalph Campbell /*
487f931551bSRalph Campbell * Length of data; don't need 64 bits, but want
488f931551bSRalph Campbell * qib_sendpkt to remain same size as before 32 bit changes, so...
489f931551bSRalph Campbell */
490f931551bSRalph Campbell __u64 iov_len;
491f931551bSRalph Campbell };
492f931551bSRalph Campbell
493f931551bSRalph Campbell /*
494f931551bSRalph Campbell * Describes a single packet for send. Each packet can have one or more
495f931551bSRalph Campbell * buffers, but the total length (exclusive of IB headers) must be less
496f931551bSRalph Campbell * than the MTU, and if using the PIO method, entire packet length,
497f931551bSRalph Campbell * including IB headers, must be less than the qib_piosize value (words).
498f931551bSRalph Campbell * Use of this necessitates including sys/uio.h
499f931551bSRalph Campbell */
500f931551bSRalph Campbell struct __qib_sendpkt {
501f931551bSRalph Campbell __u32 sps_flags; /* flags for packet (TBD) */
502f931551bSRalph Campbell __u32 sps_cnt; /* number of entries to use in sps_iov */
503f931551bSRalph Campbell /* array of iov's describing packet. TEMPORARY */
504f931551bSRalph Campbell struct qib_iovec sps_iov[4];
505f931551bSRalph Campbell };
506f931551bSRalph Campbell
507f931551bSRalph Campbell /*
508f931551bSRalph Campbell * Diagnostics can send a packet by "writing" the following
509f931551bSRalph Campbell * structs to the diag data special file.
510f931551bSRalph Campbell * This allows a custom
511f931551bSRalph Campbell * pbc (+ static rate) qword, so that special modes and deliberate
512f931551bSRalph Campbell * changes to CRCs can be used. The elements were also re-ordered
513f931551bSRalph Campbell * for better alignment and to avoid padding issues.
514f931551bSRalph Campbell */
515f931551bSRalph Campbell #define _DIAG_XPKT_VERS 3
516f931551bSRalph Campbell struct qib_diag_xpkt {
517f931551bSRalph Campbell __u16 version;
518f931551bSRalph Campbell __u16 unit;
519f931551bSRalph Campbell __u16 port;
520f931551bSRalph Campbell __u16 len;
521f931551bSRalph Campbell __u64 data;
522f931551bSRalph Campbell __u64 pbc_wd;
523f931551bSRalph Campbell };
524f931551bSRalph Campbell
525f931551bSRalph Campbell /*
526f931551bSRalph Campbell * Data layout in I2C flash (for GUID, etc.)
527f931551bSRalph Campbell * All fields are little-endian binary unless otherwise stated
528f931551bSRalph Campbell */
529f931551bSRalph Campbell #define QIB_FLASH_VERSION 2
530f931551bSRalph Campbell struct qib_flash {
531f931551bSRalph Campbell /* flash layout version (QIB_FLASH_VERSION) */
532f931551bSRalph Campbell __u8 if_fversion;
533f931551bSRalph Campbell /* checksum protecting if_length bytes */
534f931551bSRalph Campbell __u8 if_csum;
535f931551bSRalph Campbell /*
536f931551bSRalph Campbell * valid length (in use, protected by if_csum), including
537f931551bSRalph Campbell * if_fversion and if_csum themselves)
538f931551bSRalph Campbell */
539f931551bSRalph Campbell __u8 if_length;
540f931551bSRalph Campbell /* the GUID, in network order */
541f931551bSRalph Campbell __u8 if_guid[8];
542f931551bSRalph Campbell /* number of GUIDs to use, starting from if_guid */
543f931551bSRalph Campbell __u8 if_numguid;
544f931551bSRalph Campbell /* the (last 10 characters of) board serial number, in ASCII */
545f931551bSRalph Campbell char if_serial[12];
546f931551bSRalph Campbell /* board mfg date (YYYYMMDD ASCII) */
547f931551bSRalph Campbell char if_mfgdate[8];
548f931551bSRalph Campbell /* last board rework/test date (YYYYMMDD ASCII) */
549f931551bSRalph Campbell char if_testdate[8];
550f931551bSRalph Campbell /* logging of error counts, TBD */
551f931551bSRalph Campbell __u8 if_errcntp[4];
552f931551bSRalph Campbell /* powered on hours, updated at driver unload */
553f931551bSRalph Campbell __u8 if_powerhour[2];
554f931551bSRalph Campbell /* ASCII free-form comment field */
555f931551bSRalph Campbell char if_comment[32];
556f931551bSRalph Campbell /* Backwards compatible prefix for longer QLogic Serial Numbers */
557f931551bSRalph Campbell char if_sprefix[4];
558f931551bSRalph Campbell /* 82 bytes used, min flash size is 128 bytes */
559f931551bSRalph Campbell __u8 if_future[46];
560f931551bSRalph Campbell };
561f931551bSRalph Campbell
562f931551bSRalph Campbell /*
563f931551bSRalph Campbell * These are the counters implemented in the chip, and are listed in order.
564f931551bSRalph Campbell * The InterCaps naming is taken straight from the chip spec.
565f931551bSRalph Campbell */
566f931551bSRalph Campbell struct qlogic_ib_counters {
567f931551bSRalph Campbell __u64 LBIntCnt;
568f931551bSRalph Campbell __u64 LBFlowStallCnt;
569f931551bSRalph Campbell __u64 TxSDmaDescCnt; /* was Reserved1 */
570f931551bSRalph Campbell __u64 TxUnsupVLErrCnt;
571f931551bSRalph Campbell __u64 TxDataPktCnt;
572f931551bSRalph Campbell __u64 TxFlowPktCnt;
573f931551bSRalph Campbell __u64 TxDwordCnt;
574f931551bSRalph Campbell __u64 TxLenErrCnt;
575f931551bSRalph Campbell __u64 TxMaxMinLenErrCnt;
576f931551bSRalph Campbell __u64 TxUnderrunCnt;
577f931551bSRalph Campbell __u64 TxFlowStallCnt;
578f931551bSRalph Campbell __u64 TxDroppedPktCnt;
579f931551bSRalph Campbell __u64 RxDroppedPktCnt;
580f931551bSRalph Campbell __u64 RxDataPktCnt;
581f931551bSRalph Campbell __u64 RxFlowPktCnt;
582f931551bSRalph Campbell __u64 RxDwordCnt;
583f931551bSRalph Campbell __u64 RxLenErrCnt;
584f931551bSRalph Campbell __u64 RxMaxMinLenErrCnt;
585f931551bSRalph Campbell __u64 RxICRCErrCnt;
586f931551bSRalph Campbell __u64 RxVCRCErrCnt;
587f931551bSRalph Campbell __u64 RxFlowCtrlErrCnt;
588f931551bSRalph Campbell __u64 RxBadFormatCnt;
589f931551bSRalph Campbell __u64 RxLinkProblemCnt;
590f931551bSRalph Campbell __u64 RxEBPCnt;
591f931551bSRalph Campbell __u64 RxLPCRCErrCnt;
592f931551bSRalph Campbell __u64 RxBufOvflCnt;
593f931551bSRalph Campbell __u64 RxTIDFullErrCnt;
594f931551bSRalph Campbell __u64 RxTIDValidErrCnt;
595f931551bSRalph Campbell __u64 RxPKeyMismatchCnt;
596f931551bSRalph Campbell __u64 RxP0HdrEgrOvflCnt;
597f931551bSRalph Campbell __u64 RxP1HdrEgrOvflCnt;
598f931551bSRalph Campbell __u64 RxP2HdrEgrOvflCnt;
599f931551bSRalph Campbell __u64 RxP3HdrEgrOvflCnt;
600f931551bSRalph Campbell __u64 RxP4HdrEgrOvflCnt;
601f931551bSRalph Campbell __u64 RxP5HdrEgrOvflCnt;
602f931551bSRalph Campbell __u64 RxP6HdrEgrOvflCnt;
603f931551bSRalph Campbell __u64 RxP7HdrEgrOvflCnt;
604f931551bSRalph Campbell __u64 RxP8HdrEgrOvflCnt;
605f931551bSRalph Campbell __u64 RxP9HdrEgrOvflCnt;
606f931551bSRalph Campbell __u64 RxP10HdrEgrOvflCnt;
607f931551bSRalph Campbell __u64 RxP11HdrEgrOvflCnt;
608f931551bSRalph Campbell __u64 RxP12HdrEgrOvflCnt;
609f931551bSRalph Campbell __u64 RxP13HdrEgrOvflCnt;
610f931551bSRalph Campbell __u64 RxP14HdrEgrOvflCnt;
611f931551bSRalph Campbell __u64 RxP15HdrEgrOvflCnt;
612f931551bSRalph Campbell __u64 RxP16HdrEgrOvflCnt;
613f931551bSRalph Campbell __u64 IBStatusChangeCnt;
614f931551bSRalph Campbell __u64 IBLinkErrRecoveryCnt;
615f931551bSRalph Campbell __u64 IBLinkDownedCnt;
616f931551bSRalph Campbell __u64 IBSymbolErrCnt;
617f931551bSRalph Campbell __u64 RxVL15DroppedPktCnt;
618f931551bSRalph Campbell __u64 RxOtherLocalPhyErrCnt;
619f931551bSRalph Campbell __u64 PcieRetryBufDiagQwordCnt;
620f931551bSRalph Campbell __u64 ExcessBufferOvflCnt;
621f931551bSRalph Campbell __u64 LocalLinkIntegrityErrCnt;
622f931551bSRalph Campbell __u64 RxVlErrCnt;
623f931551bSRalph Campbell __u64 RxDlidFltrCnt;
624f931551bSRalph Campbell };
625f931551bSRalph Campbell
626f931551bSRalph Campbell /*
627f931551bSRalph Campbell * The next set of defines are for packet headers, and chip register
628f931551bSRalph Campbell * and memory bits that are visible to and/or used by user-mode software.
629f931551bSRalph Campbell */
630f931551bSRalph Campbell
631f931551bSRalph Campbell /* RcvHdrFlags bits */
632f931551bSRalph Campbell #define QLOGIC_IB_RHF_LENGTH_MASK 0x7FF
633f931551bSRalph Campbell #define QLOGIC_IB_RHF_LENGTH_SHIFT 0
634f931551bSRalph Campbell #define QLOGIC_IB_RHF_RCVTYPE_MASK 0x7
635f931551bSRalph Campbell #define QLOGIC_IB_RHF_RCVTYPE_SHIFT 11
636f931551bSRalph Campbell #define QLOGIC_IB_RHF_EGRINDEX_MASK 0xFFF
637f931551bSRalph Campbell #define QLOGIC_IB_RHF_EGRINDEX_SHIFT 16
638f931551bSRalph Campbell #define QLOGIC_IB_RHF_SEQ_MASK 0xF
639f931551bSRalph Campbell #define QLOGIC_IB_RHF_SEQ_SHIFT 0
640f931551bSRalph Campbell #define QLOGIC_IB_RHF_HDRQ_OFFSET_MASK 0x7FF
641f931551bSRalph Campbell #define QLOGIC_IB_RHF_HDRQ_OFFSET_SHIFT 4
642f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_ICRCERR 0x80000000
643f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_VCRCERR 0x40000000
644f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_PARITYERR 0x20000000
645f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_LENERR 0x10000000
646f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_MTUERR 0x08000000
647f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_IHDRERR 0x04000000
648f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_TIDERR 0x02000000
649f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_MKERR 0x01000000
650f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_IBERR 0x00800000
651f931551bSRalph Campbell #define QLOGIC_IB_RHF_H_ERR_MASK 0xFF800000
652f931551bSRalph Campbell #define QLOGIC_IB_RHF_L_USE_EGR 0x80000000
653f931551bSRalph Campbell #define QLOGIC_IB_RHF_L_SWA 0x00008000
654f931551bSRalph Campbell #define QLOGIC_IB_RHF_L_SWB 0x00004000
655f931551bSRalph Campbell
656f931551bSRalph Campbell /* qlogic_ib header fields */
657f931551bSRalph Campbell #define QLOGIC_IB_I_VERS_MASK 0xF
658f931551bSRalph Campbell #define QLOGIC_IB_I_VERS_SHIFT 28
659f931551bSRalph Campbell #define QLOGIC_IB_I_CTXT_MASK 0xF
660f931551bSRalph Campbell #define QLOGIC_IB_I_CTXT_SHIFT 24
661f931551bSRalph Campbell #define QLOGIC_IB_I_TID_MASK 0x7FF
662f931551bSRalph Campbell #define QLOGIC_IB_I_TID_SHIFT 13
663f931551bSRalph Campbell #define QLOGIC_IB_I_OFFSET_MASK 0x1FFF
664f931551bSRalph Campbell #define QLOGIC_IB_I_OFFSET_SHIFT 0
665f931551bSRalph Campbell
666f931551bSRalph Campbell /* K_PktFlags bits */
667f931551bSRalph Campbell #define QLOGIC_IB_KPF_INTR 0x1
668f931551bSRalph Campbell #define QLOGIC_IB_KPF_SUBCTXT_MASK 0x3
669f931551bSRalph Campbell #define QLOGIC_IB_KPF_SUBCTXT_SHIFT 1
670f931551bSRalph Campbell
671f931551bSRalph Campbell #define QLOGIC_IB_MAX_SUBCTXT 4
672f931551bSRalph Campbell
673f931551bSRalph Campbell /* SendPIO per-buffer control */
674f931551bSRalph Campbell #define QLOGIC_IB_SP_TEST 0x40
675f931551bSRalph Campbell #define QLOGIC_IB_SP_TESTEBP 0x20
676f931551bSRalph Campbell #define QLOGIC_IB_SP_TRIGGER_SHIFT 15
677f931551bSRalph Campbell
678f931551bSRalph Campbell /* SendPIOAvail bits */
679f931551bSRalph Campbell #define QLOGIC_IB_SENDPIOAVAIL_BUSY_SHIFT 1
680f931551bSRalph Campbell #define QLOGIC_IB_SENDPIOAVAIL_CHECK_SHIFT 0
681f931551bSRalph Campbell
682f931551bSRalph Campbell /* qlogic_ib header format */
683f931551bSRalph Campbell struct qib_header {
684f931551bSRalph Campbell /*
685f931551bSRalph Campbell * Version - 4 bits, Context - 4 bits, TID - 10 bits and Offset -
686f931551bSRalph Campbell * 14 bits before ECO change ~28 Dec 03. After that, Vers 4,
687f931551bSRalph Campbell * Context 4, TID 11, offset 13.
688f931551bSRalph Campbell */
689f931551bSRalph Campbell __le32 ver_ctxt_tid_offset;
690f931551bSRalph Campbell __le16 chksum;
691f931551bSRalph Campbell __le16 pkt_flags;
692f931551bSRalph Campbell };
693f931551bSRalph Campbell
694f931551bSRalph Campbell /*
695f931551bSRalph Campbell * qlogic_ib user message header format.
696f931551bSRalph Campbell * This structure contains the first 4 fields common to all protocols
697f931551bSRalph Campbell * that employ qlogic_ib.
698f931551bSRalph Campbell */
699f931551bSRalph Campbell struct qib_message_header {
700f931551bSRalph Campbell __be16 lrh[4];
701f931551bSRalph Campbell __be32 bth[3];
702f931551bSRalph Campbell /* fields below this point are in host byte order */
703f931551bSRalph Campbell struct qib_header iph;
7044668e4b5SCQ Tang /* fields below are simplified, but should match PSM */
7054668e4b5SCQ Tang /* some are accessed by driver when packet spliting is needed */
706f931551bSRalph Campbell __u8 sub_opcode;
7074668e4b5SCQ Tang __u8 flags;
7084668e4b5SCQ Tang __u16 commidx;
7094668e4b5SCQ Tang __u32 ack_seq_num;
7104668e4b5SCQ Tang __u8 flowid;
7114668e4b5SCQ Tang __u8 hdr_dlen;
7124668e4b5SCQ Tang __u16 mqhdr;
7134668e4b5SCQ Tang __u32 uwords[4];
7144668e4b5SCQ Tang };
7154668e4b5SCQ Tang
7164668e4b5SCQ Tang /* sequence number bits for message */
7174668e4b5SCQ Tang union qib_seqnum {
7184668e4b5SCQ Tang struct {
7194668e4b5SCQ Tang __u32 seq:11;
7204668e4b5SCQ Tang __u32 gen:8;
7214668e4b5SCQ Tang __u32 flow:5;
7224668e4b5SCQ Tang };
7234668e4b5SCQ Tang struct {
7244668e4b5SCQ Tang __u32 pkt:16;
7254668e4b5SCQ Tang __u32 msg:8;
7264668e4b5SCQ Tang };
7274668e4b5SCQ Tang __u32 val;
7284668e4b5SCQ Tang };
7294668e4b5SCQ Tang
7304668e4b5SCQ Tang /* qib receiving-dma tid-session-member */
7314668e4b5SCQ Tang struct qib_tid_session_member {
7324668e4b5SCQ Tang __u16 tid;
7334668e4b5SCQ Tang __u16 offset;
7344668e4b5SCQ Tang __u16 length;
735f931551bSRalph Campbell };
736f931551bSRalph Campbell
737f931551bSRalph Campbell /* IB - LRH header consts */
738f931551bSRalph Campbell #define QIB_LRH_GRH 0x0003 /* 1. word of IB LRH - next header: GRH */
739f931551bSRalph Campbell #define QIB_LRH_BTH 0x0002 /* 1. word of IB LRH - next header: BTH */
740f931551bSRalph Campbell
741f931551bSRalph Campbell /* misc. */
742f931551bSRalph Campbell #define SIZE_OF_CRC 1
743f931551bSRalph Campbell
744f931551bSRalph Campbell #define QIB_DEFAULT_P_KEY 0xFFFF
745f931551bSRalph Campbell #define QIB_PSN_MASK 0xFFFFFF
746f931551bSRalph Campbell #define QIB_EAGER_TID_ID QLOGIC_IB_I_TID_MASK
747f931551bSRalph Campbell #define QIB_MULTICAST_QPN 0xFFFFFF
748f931551bSRalph Campbell
749f931551bSRalph Campbell /* Receive Header Queue: receive type (from qlogic_ib) */
750f931551bSRalph Campbell #define RCVHQ_RCV_TYPE_EXPECTED 0
751f931551bSRalph Campbell #define RCVHQ_RCV_TYPE_EAGER 1
752f931551bSRalph Campbell #define RCVHQ_RCV_TYPE_NON_KD 2
753f931551bSRalph Campbell #define RCVHQ_RCV_TYPE_ERROR 3
754f931551bSRalph Campbell
755f931551bSRalph Campbell #define QIB_HEADER_QUEUE_WORDS 9
756f931551bSRalph Campbell
757f931551bSRalph Campbell /* functions for extracting fields from rcvhdrq entries for the driver.
758f931551bSRalph Campbell */
qib_hdrget_err_flags(const __le32 * rbuf)759f931551bSRalph Campbell static inline __u32 qib_hdrget_err_flags(const __le32 *rbuf)
760f931551bSRalph Campbell {
761f931551bSRalph Campbell return __le32_to_cpu(rbuf[1]) & QLOGIC_IB_RHF_H_ERR_MASK;
762f931551bSRalph Campbell }
763f931551bSRalph Campbell
qib_hdrget_rcv_type(const __le32 * rbuf)764f931551bSRalph Campbell static inline __u32 qib_hdrget_rcv_type(const __le32 *rbuf)
765f931551bSRalph Campbell {
766f931551bSRalph Campbell return (__le32_to_cpu(rbuf[0]) >> QLOGIC_IB_RHF_RCVTYPE_SHIFT) &
767f931551bSRalph Campbell QLOGIC_IB_RHF_RCVTYPE_MASK;
768f931551bSRalph Campbell }
769f931551bSRalph Campbell
qib_hdrget_length_in_bytes(const __le32 * rbuf)770f931551bSRalph Campbell static inline __u32 qib_hdrget_length_in_bytes(const __le32 *rbuf)
771f931551bSRalph Campbell {
772f931551bSRalph Campbell return ((__le32_to_cpu(rbuf[0]) >> QLOGIC_IB_RHF_LENGTH_SHIFT) &
773f931551bSRalph Campbell QLOGIC_IB_RHF_LENGTH_MASK) << 2;
774f931551bSRalph Campbell }
775f931551bSRalph Campbell
qib_hdrget_index(const __le32 * rbuf)776f931551bSRalph Campbell static inline __u32 qib_hdrget_index(const __le32 *rbuf)
777f931551bSRalph Campbell {
778f931551bSRalph Campbell return (__le32_to_cpu(rbuf[0]) >> QLOGIC_IB_RHF_EGRINDEX_SHIFT) &
779f931551bSRalph Campbell QLOGIC_IB_RHF_EGRINDEX_MASK;
780f931551bSRalph Campbell }
781f931551bSRalph Campbell
qib_hdrget_seq(const __le32 * rbuf)782f931551bSRalph Campbell static inline __u32 qib_hdrget_seq(const __le32 *rbuf)
783f931551bSRalph Campbell {
784f931551bSRalph Campbell return (__le32_to_cpu(rbuf[1]) >> QLOGIC_IB_RHF_SEQ_SHIFT) &
785f931551bSRalph Campbell QLOGIC_IB_RHF_SEQ_MASK;
786f931551bSRalph Campbell }
787f931551bSRalph Campbell
qib_hdrget_offset(const __le32 * rbuf)788f931551bSRalph Campbell static inline __u32 qib_hdrget_offset(const __le32 *rbuf)
789f931551bSRalph Campbell {
790f931551bSRalph Campbell return (__le32_to_cpu(rbuf[1]) >> QLOGIC_IB_RHF_HDRQ_OFFSET_SHIFT) &
791f931551bSRalph Campbell QLOGIC_IB_RHF_HDRQ_OFFSET_MASK;
792f931551bSRalph Campbell }
793f931551bSRalph Campbell
qib_hdrget_use_egr_buf(const __le32 * rbuf)794f931551bSRalph Campbell static inline __u32 qib_hdrget_use_egr_buf(const __le32 *rbuf)
795f931551bSRalph Campbell {
796f931551bSRalph Campbell return __le32_to_cpu(rbuf[0]) & QLOGIC_IB_RHF_L_USE_EGR;
797f931551bSRalph Campbell }
798f931551bSRalph Campbell #endif /* _QIB_COMMON_H */
799