blob: aa780e7f24180853bd4ac448ba29e78643e5d19b [file] [log] [blame]
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -08001/*
Mark Debbagec7e29ff2007-03-15 14:44:59 -07002 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -08003 * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 */
33
34#ifndef _IPATH_COMMON_H
35#define _IPATH_COMMON_H
36
37/*
38 * This file contains defines, structures, etc. that are used
39 * to communicate between kernel and user code.
40 */
41
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -070042
43/* This is the IEEE-assigned OUI for QLogic Inc. InfiniPath */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -080044#define IPATH_SRC_OUI_1 0x00
45#define IPATH_SRC_OUI_2 0x11
46#define IPATH_SRC_OUI_3 0x75
47
48/* version of protocol header (known to chip also). In the long run,
49 * we should be able to generate and accept a range of version numbers;
50 * for now we only accept one, and it's compiled in.
51 */
52#define IPS_PROTO_VERSION 2
53
54/*
55 * These are compile time constants that you may want to enable or disable
56 * if you are trying to debug problems with code or performance.
57 * IPATH_VERBOSE_TRACING define as 1 if you want additional tracing in
58 * fastpath code
59 * IPATH_TRACE_REGWRITES define as 1 if you want register writes to be
60 * traced in faspath code
61 * _IPATH_TRACING define as 0 if you want to remove all tracing in a
62 * compilation unit
63 * _IPATH_DEBUGGING define as 0 if you want to remove debug prints
64 */
65
66/*
67 * The value in the BTH QP field that InfiniPath uses to differentiate
68 * an infinipath protocol IB packet vs standard IB transport
69 */
70#define IPATH_KD_QP 0x656b79
71
72/*
73 * valid states passed to ipath_set_linkstate() user call
74 */
75#define IPATH_IB_LINKDOWN 0
76#define IPATH_IB_LINKARM 1
77#define IPATH_IB_LINKACTIVE 2
78#define IPATH_IB_LINKINIT 3
79#define IPATH_IB_LINKDOWN_SLEEP 4
80#define IPATH_IB_LINKDOWN_DISABLE 5
Bryan O'Sullivan946db672007-03-15 14:44:45 -070081#define IPATH_IB_LINK_LOOPBACK 6 /* enable local loopback */
82#define IPATH_IB_LINK_EXTERNAL 7 /* normal, disable local loopback */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -080083
84/*
85 * stats maintained by the driver. For now, at least, this is global
86 * to all minor devices.
87 */
88struct infinipath_stats {
89 /* number of interrupts taken */
90 __u64 sps_ints;
91 /* number of interrupts for errors */
92 __u64 sps_errints;
93 /* number of errors from chip (not incl. packet errors or CRC) */
94 __u64 sps_errs;
95 /* number of packet errors from chip other than CRC */
96 __u64 sps_pkterrs;
97 /* number of packets with CRC errors (ICRC and VCRC) */
98 __u64 sps_crcerrs;
99 /* number of hardware errors reported (parity, etc.) */
100 __u64 sps_hwerrs;
101 /* number of times IB link changed state unexpectedly */
102 __u64 sps_iblink;
Dave Olsonf17fddc2007-07-20 12:50:55 -0700103 __u64 sps_unused; /* was fastrcvint, no longer implemented */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800104 /* number of kernel (port0) packets received */
105 __u64 sps_port0pkts;
106 /* number of "ethernet" packets sent by driver */
107 __u64 sps_ether_spkts;
108 /* number of "ethernet" packets received by driver */
109 __u64 sps_ether_rpkts;
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700110 /* number of SMA packets sent by driver. Obsolete. */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800111 __u64 sps_sma_spkts;
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700112 /* number of SMA packets received by driver. Obsolete. */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800113 __u64 sps_sma_rpkts;
114 /* number of times all ports rcvhdrq was full and packet dropped */
115 __u64 sps_hdrqfull;
116 /* number of times all ports egrtid was full and packet dropped */
117 __u64 sps_etidfull;
118 /*
119 * number of times we tried to send from driver, but no pio buffers
120 * avail
121 */
122 __u64 sps_nopiobufs;
123 /* number of ports currently open */
124 __u64 sps_ports;
125 /* list of pkeys (other than default) accepted (0 means not set) */
126 __u16 sps_pkeys[4];
Bryan O'Sullivan1eb68b92006-07-01 04:36:11 -0700127 __u16 sps_unused16[4]; /* available; maintaining compatible layout */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800128 /* number of user ports per chip (not IB ports) */
129 __u32 sps_nports;
130 /* not our interrupt, or already handled */
131 __u32 sps_nullintr;
132 /* max number of packets handled per receive call */
133 __u32 sps_maxpkts_call;
134 /* avg number of packets handled per receive call */
135 __u32 sps_avgpkts_call;
136 /* total number of pages locked */
137 __u64 sps_pagelocks;
138 /* total number of pages unlocked */
139 __u64 sps_pageunlocks;
140 /*
141 * Number of packets dropped in kernel other than errors (ether
Bryan O'Sullivan0fd41362006-08-25 11:24:34 -0700142 * packets if ipath not configured, etc.)
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800143 */
144 __u64 sps_krdrops;
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -0700145 __u64 sps_txeparity; /* PIO buffer parity error, recovered */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800146 /* pad for future growth */
Bryan O'Sullivan89d1e092006-09-28 09:00:18 -0700147 __u64 __sps_pad[45];
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800148};
149
150/*
151 * These are the status bits readable (in ascii form, 64bit value)
152 * from the "status" sysfs file.
153 */
154#define IPATH_STATUS_INITTED 0x1 /* basic initialization done */
155#define IPATH_STATUS_DISABLED 0x2 /* hardware disabled */
156/* Device has been disabled via admin request */
157#define IPATH_STATUS_ADMIN_DISABLED 0x4
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800158/* Chip has been found and initted */
159#define IPATH_STATUS_CHIP_PRESENT 0x20
160/* IB link is at ACTIVE, usable for data traffic */
161#define IPATH_STATUS_IB_READY 0x40
162/* link is configured, LID, MTU, etc. have been set */
163#define IPATH_STATUS_IB_CONF 0x80
164/* no link established, probably no cable */
165#define IPATH_STATUS_IB_NOCABLE 0x100
166/* A Fatal hardware error has occurred. */
167#define IPATH_STATUS_HWERROR 0x200
168
169/*
170 * The list of usermode accessible registers. Also see Reg_* later in file.
171 */
172typedef enum _ipath_ureg {
173 /* (RO) DMA RcvHdr to be used next. */
174 ur_rcvhdrtail = 0,
175 /* (RW) RcvHdr entry to be processed next by host. */
176 ur_rcvhdrhead = 1,
177 /* (RO) Index of next Eager index to use. */
178 ur_rcvegrindextail = 2,
179 /* (RW) Eager TID to be processed next */
180 ur_rcvegrindexhead = 3,
181 /* For internal use only; max register number. */
182 _IPATH_UregMax
183} ipath_ureg;
184
185/* bit values for spi_runtime_flags */
186#define IPATH_RUNTIME_HT 0x1
187#define IPATH_RUNTIME_PCIE 0x2
188#define IPATH_RUNTIME_FORCE_WC_ORDER 0x4
189#define IPATH_RUNTIME_RCVHDR_COPY 0x8
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700190#define IPATH_RUNTIME_MASTER 0x10
John Gregor8e9ab3f2007-05-17 08:15:50 -0700191/* 0x20 and 0x40 are no longer used, but are reserved for ABI compatibility */
Arthur Jones20bed342007-09-18 14:44:45 -0700192#define IPATH_RUNTIME_FORCE_PIOAVAIL 0x400
193#define IPATH_RUNTIME_PIO_REGSWAPPED 0x800
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800194
195/*
196 * This structure is returned by ipath_userinit() immediately after
197 * open to get implementation-specific info, and info specific to this
198 * instance.
199 *
200 * This struct must have explict pad fields where type sizes
201 * may result in different alignments between 32 and 64 bit
202 * programs, since the 64 bit * bit kernel requires the user code
203 * to have matching offsets
204 */
205struct ipath_base_info {
206 /* version of hardware, for feature checking. */
207 __u32 spi_hw_version;
208 /* version of software, for feature checking. */
209 __u32 spi_sw_version;
210 /* InfiniPath port assigned, goes into sent packets */
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700211 __u16 spi_port;
212 __u16 spi_subport;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800213 /*
214 * IB MTU, packets IB data must be less than this.
215 * The MTU is in bytes, and will be a multiple of 4 bytes.
216 */
217 __u32 spi_mtu;
218 /*
219 * Size of a PIO buffer. Any given packet's total size must be less
220 * than this (in words). Included is the starting control word, so
221 * if 513 is returned, then total pkt size is 512 words or less.
222 */
223 __u32 spi_piosize;
224 /* size of the TID cache in infinipath, in entries */
225 __u32 spi_tidcnt;
226 /* size of the TID Eager list in infinipath, in entries */
227 __u32 spi_tidegrcnt;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700228 /* size of a single receive header queue entry in words. */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800229 __u32 spi_rcvhdrent_size;
230 /*
231 * Count of receive header queue entries allocated.
232 * This may be less than the spu_rcvhdrcnt passed in!.
233 */
234 __u32 spi_rcvhdr_cnt;
235
236 /* per-chip and other runtime features bitmap (IPATH_RUNTIME_*) */
237 __u32 spi_runtime_flags;
238
239 /* address where receive buffer queue is mapped into */
240 __u64 spi_rcvhdr_base;
241
242 /* user program. */
243
244 /* base address of eager TID receive buffers. */
245 __u64 spi_rcv_egrbufs;
246
247 /* Allocated by initialization code, not by protocol. */
248
249 /*
250 * Size of each TID buffer in host memory, starting at
251 * spi_rcv_egrbufs. The buffers are virtually contiguous.
252 */
253 __u32 spi_rcv_egrbufsize;
254 /*
255 * The special QP (queue pair) value that identifies an infinipath
256 * protocol packet from standard IB packets. More, probably much
257 * more, to be added.
258 */
259 __u32 spi_qpair;
260
261 /*
262 * User register base for init code, not to be used directly by
263 * protocol or applications.
264 */
265 __u64 __spi_uregbase;
266 /*
267 * Maximum buffer size in bytes that can be used in a single TID
268 * entry (assuming the buffer is aligned to this boundary). This is
269 * the minimum of what the hardware and software support Guaranteed
270 * to be a power of 2.
271 */
272 __u32 spi_tid_maxsize;
273 /*
274 * alignment of each pio send buffer (byte count
275 * to add to spi_piobufbase to get to second buffer)
276 */
277 __u32 spi_pioalign;
278 /*
279 * The index of the first pio buffer available to this process;
280 * needed to do lookup in spi_pioavailaddr; not added to
281 * spi_piobufbase.
282 */
283 __u32 spi_pioindex;
284 /* number of buffers mapped for this process */
285 __u32 spi_piocnt;
286
287 /*
288 * Base address of writeonly pio buffers for this process.
289 * Each buffer has spi_piosize words, and is aligned on spi_pioalign
290 * boundaries. spi_piocnt buffers are mapped from this address
291 */
292 __u64 spi_piobufbase;
293
294 /*
295 * Base address of readonly memory copy of the pioavail registers.
296 * There are 2 bits for each buffer.
297 */
298 __u64 spi_pioavailaddr;
299
300 /*
301 * Address where driver updates a copy of the interface and driver
302 * status (IPATH_STATUS_*) as a 64 bit value. It's followed by a
303 * string indicating hardware error, if there was one.
304 */
305 __u64 spi_status;
306
307 /* number of chip ports available to user processes */
308 __u32 spi_nports;
309 /* unit number of chip we are using */
310 __u32 spi_unit;
311 /* num bufs in each contiguous set */
312 __u32 spi_rcv_egrperchunk;
313 /* size in bytes of each contiguous set */
314 __u32 spi_rcv_egrchunksize;
315 /* total size of mmap to cover full rcvegrbuffers */
316 __u32 spi_rcv_egrbuftotlen;
Bryan O'Sullivanf37bda92006-07-01 04:36:03 -0700317 __u32 spi_filler_for_align;
318 /* address of readonly memory copy of the rcvhdrq tail register. */
319 __u64 spi_rcvhdr_tailaddr;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700320
Mark Debbagec7e29ff2007-03-15 14:44:59 -0700321 /* shared memory pages for subports if port is shared */
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700322 __u64 spi_subport_uregbase;
323 __u64 spi_subport_rcvegrbuf;
324 __u64 spi_subport_rcvhdr_base;
325
Mark Debbagec7e29ff2007-03-15 14:44:59 -0700326 /* shared memory page for hardware port if it is shared */
327 __u64 spi_port_uregbase;
328 __u64 spi_port_rcvegrbuf;
329 __u64 spi_port_rcvhdr_base;
330 __u64 spi_port_rcvhdr_tailaddr;
331
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800332} __attribute__ ((aligned(8)));
333
334
335/*
336 * This version number is given to the driver by the user code during
337 * initialization in the spu_userversion field of ipath_user_info, so
338 * the driver can check for compatibility with user code.
339 *
340 * The major version changes when data structures
341 * change in an incompatible way. The driver must be the same or higher
342 * for initialization to succeed. In some cases, a higher version
343 * driver will not interoperate with older software, and initialization
344 * will return an error.
345 */
346#define IPATH_USER_SWMAJOR 1
347
348/*
349 * Minor version differences are always compatible
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700350 * a within a major version, however if user software is larger
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800351 * than driver software, some new features and/or structure fields
352 * may not be implemented; the user code must deal with this if it
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700353 * cares, or it must abort after initialization reports the difference.
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800354 */
Arthur Jones20bed342007-09-18 14:44:45 -0700355#define IPATH_USER_SWMINOR 6
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800356
357#define IPATH_USER_SWVERSION ((IPATH_USER_SWMAJOR<<16) | IPATH_USER_SWMINOR)
358
359#define IPATH_KERN_TYPE 0
360
361/*
362 * Similarly, this is the kernel version going back to the user. It's
363 * slightly different, in that we want to tell if the driver was built as
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700364 * part of a QLogic release, or from the driver from openfabrics.org,
365 * kernel.org, or a standard distribution, for support reasons.
366 * The high bit is 0 for non-QLogic and 1 for QLogic-built/supplied.
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800367 *
368 * It's returned by the driver to the user code during initialization in the
369 * spi_sw_version field of ipath_base_info, so the user code can in turn
370 * check for compatibility with the kernel.
371*/
372#define IPATH_KERN_SWVERSION ((IPATH_KERN_TYPE<<31) | IPATH_USER_SWVERSION)
373
374/*
375 * This structure is passed to ipath_userinit() to tell the driver where
376 * user code buffers are, sizes, etc. The offsets and sizes of the
377 * fields must remain unchanged, for binary compatibility. It can
378 * be extended, if userversion is changed so user code can tell, if needed
379 */
380struct ipath_user_info {
381 /*
382 * version of user software, to detect compatibility issues.
383 * Should be set to IPATH_USER_SWVERSION.
384 */
385 __u32 spu_userversion;
386
387 /* desired number of receive header queue entries */
388 __u32 spu_rcvhdrcnt;
389
390 /* size of struct base_info to write to */
391 __u32 spu_base_info_size;
392
393 /*
394 * number of words in KD protocol header
395 * This tells InfiniPath how many words to copy to rcvhdrq. If 0,
396 * kernel uses a default. Once set, attempts to set any other value
397 * are an error (EAGAIN) until driver is reloaded.
398 */
399 __u32 spu_rcvhdrsize;
400
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700401 /*
402 * If two or more processes wish to share a port, each process
403 * must set the spu_subport_cnt and spu_subport_id to the same
404 * values. The only restriction on the spu_subport_id is that
405 * it be unique for a given node.
406 */
407 __u16 spu_subport_cnt;
408 __u16 spu_subport_id;
409
410 __u32 spu_unused; /* kept for compatible layout */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800411
412 /*
413 * address of struct base_info to write to
414 */
415 __u64 spu_base_info;
416
417} __attribute__ ((aligned(8)));
418
419/* User commands. */
420
421#define IPATH_CMD_MIN 16
422
Bryan O'Sullivanc97d27d2006-09-28 09:00:21 -0700423#define __IPATH_CMD_USER_INIT 16 /* old set up userspace (for old user code) */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800424#define IPATH_CMD_PORT_INFO 17 /* find out what resources we got */
425#define IPATH_CMD_RECV_CTRL 18 /* control receipt of packets */
426#define IPATH_CMD_TID_UPDATE 19 /* update expected TID entries */
427#define IPATH_CMD_TID_FREE 20 /* free expected TID entries */
428#define IPATH_CMD_SET_PART_KEY 21 /* add partition key */
Mark Debbagec7e29ff2007-03-15 14:44:59 -0700429#define __IPATH_CMD_SLAVE_INFO 22 /* return info on slave processes (for old user code) */
Bryan O'Sullivanc97d27d2006-09-28 09:00:21 -0700430#define IPATH_CMD_ASSIGN_PORT 23 /* allocate HCA and port */
431#define IPATH_CMD_USER_INIT 24 /* set up userspace */
Arthur Jones569b87b2007-03-15 14:45:05 -0700432#define IPATH_CMD_UNUSED_1 25
433#define IPATH_CMD_UNUSED_2 26
434#define IPATH_CMD_PIOAVAILUPD 27 /* force an update of PIOAvail reg */
Robert Walshf2d04232007-06-18 14:24:49 -0700435#define IPATH_CMD_POLL_TYPE 28 /* set the kind of polling we want */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800436
Robert Walshf2d04232007-06-18 14:24:49 -0700437#define IPATH_CMD_MAX 28
438
439/*
440 * Poll types
441 */
442#define IPATH_POLL_TYPE_URGENT 0x01
443#define IPATH_POLL_TYPE_OVERFLOW 0x02
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800444
445struct ipath_port_info {
446 __u32 num_active; /* number of active units */
447 __u32 unit; /* unit (chip) assigned to caller */
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700448 __u16 port; /* port on unit assigned to caller */
449 __u16 subport; /* subport on unit assigned to caller */
450 __u16 num_ports; /* number of ports available on unit */
Mark Debbagec7e29ff2007-03-15 14:44:59 -0700451 __u16 num_subports; /* number of subports opened on port */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800452};
453
454struct ipath_tid_info {
455 __u32 tidcnt;
456 /* make structure same size in 32 and 64 bit */
457 __u32 tid__unused;
458 /* virtual address of first page in transfer */
459 __u64 tidvaddr;
460 /* pointer (same size 32/64 bit) to __u16 tid array */
461 __u64 tidlist;
462
463 /*
464 * pointer (same size 32/64 bit) to bitmap of TIDs used
465 * for this call; checked for being large enough at open
466 */
467 __u64 tidmap;
468};
469
470struct ipath_cmd {
471 __u32 type; /* command type */
472 union {
473 struct ipath_tid_info tid_info;
474 struct ipath_user_info user_info;
475 /* address in userspace of struct ipath_port_info to
476 write result to */
477 __u64 port_info;
478 /* enable/disable receipt of packets */
479 __u32 recv_ctrl;
480 /* partition key to set */
481 __u16 part_key;
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700482 /* user address of __u32 bitmask of active slaves */
483 __u64 slave_mask_addr;
Robert Walshf2d04232007-06-18 14:24:49 -0700484 /* type of polling we want */
485 __u16 poll_type;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800486 } cmd;
487};
488
489struct ipath_iovec {
490 /* Pointer to data, but same size 32 and 64 bit */
491 __u64 iov_base;
492
493 /*
494 * Length of data; don't need 64 bits, but want
495 * ipath_sendpkt to remain same size as before 32 bit changes, so...
496 */
497 __u64 iov_len;
498};
499
500/*
501 * Describes a single packet for send. Each packet can have one or more
502 * buffers, but the total length (exclusive of IB headers) must be less
503 * than the MTU, and if using the PIO method, entire packet length,
504 * including IB headers, must be less than the ipath_piosize value (words).
505 * Use of this necessitates including sys/uio.h
506 */
507struct __ipath_sendpkt {
508 __u32 sps_flags; /* flags for packet (TBD) */
509 __u32 sps_cnt; /* number of entries to use in sps_iov */
510 /* array of iov's describing packet. TEMPORARY */
511 struct ipath_iovec sps_iov[4];
512};
513
Michael Albaughe8e7ad72007-06-18 14:24:47 -0700514/*
515 * diagnostics can send a packet by "writing" one of the following
516 * two structs to diag data special file
517 * The first is the legacy version for backward compatibility
518 */
Bryan O'Sullivan98341f22006-08-25 11:24:36 -0700519struct ipath_diag_pkt {
520 __u32 unit;
521 __u64 data;
522 __u32 len;
523};
524
Michael Albaughe8e7ad72007-06-18 14:24:47 -0700525/* The second diag_pkt struct is the expanded version that allows
526 * more control over the packet, specifically, by allowing a custom
527 * pbc (+ extra) qword, so that special modes and deliberate
528 * changes to CRCs can be used. The elements were also re-ordered
529 * for better alignment and to avoid padding issues.
530 */
531struct ipath_diag_xpkt {
532 __u64 data;
533 __u64 pbc_wd;
534 __u32 unit;
535 __u32 len;
536};
537
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800538/*
539 * Data layout in I2C flash (for GUID, etc.)
540 * All fields are little-endian binary unless otherwise stated
541 */
Bryan O'Sullivan8307c282006-07-01 04:36:13 -0700542#define IPATH_FLASH_VERSION 2
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800543struct ipath_flash {
544 /* flash layout version (IPATH_FLASH_VERSION) */
545 __u8 if_fversion;
546 /* checksum protecting if_length bytes */
547 __u8 if_csum;
548 /*
549 * valid length (in use, protected by if_csum), including
Bryan O'Sullivan8307c282006-07-01 04:36:13 -0700550 * if_fversion and if_csum themselves)
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800551 */
552 __u8 if_length;
553 /* the GUID, in network order */
554 __u8 if_guid[8];
555 /* number of GUIDs to use, starting from if_guid */
556 __u8 if_numguid;
Bryan O'Sullivan8307c282006-07-01 04:36:13 -0700557 /* the (last 10 characters of) board serial number, in ASCII */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800558 char if_serial[12];
559 /* board mfg date (YYYYMMDD ASCII) */
560 char if_mfgdate[8];
561 /* last board rework/test date (YYYYMMDD ASCII) */
562 char if_testdate[8];
563 /* logging of error counts, TBD */
564 __u8 if_errcntp[4];
565 /* powered on hours, updated at driver unload */
566 __u8 if_powerhour[2];
567 /* ASCII free-form comment field */
568 char if_comment[32];
Bryan O'Sullivan8307c282006-07-01 04:36:13 -0700569 /* Backwards compatible prefix for longer QLogic Serial Numbers */
570 char if_sprefix[4];
571 /* 82 bytes used, min flash size is 128 bytes */
572 __u8 if_future[46];
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800573};
574
575/*
576 * These are the counters implemented in the chip, and are listed in order.
577 * The InterCaps naming is taken straight from the chip spec.
578 */
579struct infinipath_counters {
580 __u64 LBIntCnt;
581 __u64 LBFlowStallCnt;
Ralph Campbell3029fcc2008-01-06 21:02:34 -0800582 __u64 TxSDmaDescCnt; /* was Reserved1 */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800583 __u64 TxUnsupVLErrCnt;
584 __u64 TxDataPktCnt;
585 __u64 TxFlowPktCnt;
586 __u64 TxDwordCnt;
587 __u64 TxLenErrCnt;
588 __u64 TxMaxMinLenErrCnt;
589 __u64 TxUnderrunCnt;
590 __u64 TxFlowStallCnt;
591 __u64 TxDroppedPktCnt;
592 __u64 RxDroppedPktCnt;
593 __u64 RxDataPktCnt;
594 __u64 RxFlowPktCnt;
595 __u64 RxDwordCnt;
596 __u64 RxLenErrCnt;
597 __u64 RxMaxMinLenErrCnt;
598 __u64 RxICRCErrCnt;
599 __u64 RxVCRCErrCnt;
600 __u64 RxFlowCtrlErrCnt;
601 __u64 RxBadFormatCnt;
602 __u64 RxLinkProblemCnt;
603 __u64 RxEBPCnt;
604 __u64 RxLPCRCErrCnt;
605 __u64 RxBufOvflCnt;
606 __u64 RxTIDFullErrCnt;
607 __u64 RxTIDValidErrCnt;
608 __u64 RxPKeyMismatchCnt;
609 __u64 RxP0HdrEgrOvflCnt;
610 __u64 RxP1HdrEgrOvflCnt;
611 __u64 RxP2HdrEgrOvflCnt;
612 __u64 RxP3HdrEgrOvflCnt;
613 __u64 RxP4HdrEgrOvflCnt;
614 __u64 RxP5HdrEgrOvflCnt;
615 __u64 RxP6HdrEgrOvflCnt;
616 __u64 RxP7HdrEgrOvflCnt;
617 __u64 RxP8HdrEgrOvflCnt;
Ralph Campbell3029fcc2008-01-06 21:02:34 -0800618 __u64 RxP9HdrEgrOvflCnt; /* was Reserved6 */
619 __u64 RxP10HdrEgrOvflCnt; /* was Reserved7 */
620 __u64 RxP11HdrEgrOvflCnt; /* new for IBA7220 */
621 __u64 RxP12HdrEgrOvflCnt; /* new for IBA7220 */
622 __u64 RxP13HdrEgrOvflCnt; /* new for IBA7220 */
623 __u64 RxP14HdrEgrOvflCnt; /* new for IBA7220 */
624 __u64 RxP15HdrEgrOvflCnt; /* new for IBA7220 */
625 __u64 RxP16HdrEgrOvflCnt; /* new for IBA7220 */
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800626 __u64 IBStatusChangeCnt;
627 __u64 IBLinkErrRecoveryCnt;
628 __u64 IBLinkDownedCnt;
629 __u64 IBSymbolErrCnt;
Ralph Campbell3029fcc2008-01-06 21:02:34 -0800630 /* The following are new for IBA7220 */
631 __u64 RxVL15DroppedPktCnt;
632 __u64 RxOtherLocalPhyErrCnt;
633 __u64 PcieRetryBufDiagQwordCnt;
634 __u64 ExcessBufferOvflCnt;
635 __u64 LocalLinkIntegrityErrCnt;
636 __u64 RxVlErrCnt;
637 __u64 RxDlidFltrCnt;
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800638};
639
640/*
641 * The next set of defines are for packet headers, and chip register
642 * and memory bits that are visible to and/or used by user-mode software
643 * The other bits that are used only by the driver or diags are in
644 * ipath_registers.h
645 */
646
647/* RcvHdrFlags bits */
648#define INFINIPATH_RHF_LENGTH_MASK 0x7FF
649#define INFINIPATH_RHF_LENGTH_SHIFT 0
650#define INFINIPATH_RHF_RCVTYPE_MASK 0x7
651#define INFINIPATH_RHF_RCVTYPE_SHIFT 11
652#define INFINIPATH_RHF_EGRINDEX_MASK 0x7FF
653#define INFINIPATH_RHF_EGRINDEX_SHIFT 16
654#define INFINIPATH_RHF_H_ICRCERR 0x80000000
655#define INFINIPATH_RHF_H_VCRCERR 0x40000000
656#define INFINIPATH_RHF_H_PARITYERR 0x20000000
657#define INFINIPATH_RHF_H_LENERR 0x10000000
658#define INFINIPATH_RHF_H_MTUERR 0x08000000
659#define INFINIPATH_RHF_H_IHDRERR 0x04000000
660#define INFINIPATH_RHF_H_TIDERR 0x02000000
661#define INFINIPATH_RHF_H_MKERR 0x01000000
662#define INFINIPATH_RHF_H_IBERR 0x00800000
663#define INFINIPATH_RHF_L_SWA 0x00008000
664#define INFINIPATH_RHF_L_SWB 0x00004000
665
666/* infinipath header fields */
667#define INFINIPATH_I_VERS_MASK 0xF
668#define INFINIPATH_I_VERS_SHIFT 28
669#define INFINIPATH_I_PORT_MASK 0xF
670#define INFINIPATH_I_PORT_SHIFT 24
671#define INFINIPATH_I_TID_MASK 0x7FF
672#define INFINIPATH_I_TID_SHIFT 13
673#define INFINIPATH_I_OFFSET_MASK 0x1FFF
674#define INFINIPATH_I_OFFSET_SHIFT 0
675
676/* K_PktFlags bits */
677#define INFINIPATH_KPF_INTR 0x1
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700678#define INFINIPATH_KPF_SUBPORT_MASK 0x3
679#define INFINIPATH_KPF_SUBPORT_SHIFT 1
680
681#define INFINIPATH_MAX_SUBPORT 4
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800682
683/* SendPIO per-buffer control */
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700684#define INFINIPATH_SP_TEST 0x40
685#define INFINIPATH_SP_TESTEBP 0x20
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800686
687/* SendPIOAvail bits */
688#define INFINIPATH_SENDPIOAVAIL_BUSY_SHIFT 1
689#define INFINIPATH_SENDPIOAVAIL_CHECK_SHIFT 0
690
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700691/* infinipath header format */
692struct ipath_header {
693 /*
694 * Version - 4 bits, Port - 4 bits, TID - 10 bits and Offset -
695 * 14 bits before ECO change ~28 Dec 03. After that, Vers 4,
Bryan O'Sullivan9929b0f2006-09-28 08:59:59 -0700696 * Port 4, TID 11, offset 13.
Bryan O'Sullivan27b678d2006-07-01 04:36:17 -0700697 */
698 __le32 ver_port_tid_offset;
699 __le16 chksum;
700 __le16 pkt_flags;
701};
702
703/* infinipath user message header format.
704 * This structure contains the first 4 fields common to all protocols
705 * that employ infinipath.
706 */
707struct ipath_message_header {
708 __be16 lrh[4];
709 __be32 bth[3];
710 /* fields below this point are in host byte order */
711 struct ipath_header iph;
712 __u8 sub_opcode;
713};
714
715/* infinipath ethernet header format */
716struct ether_header {
717 __be16 lrh[4];
718 __be32 bth[3];
719 struct ipath_header iph;
720 __u8 sub_opcode;
721 __u8 cmd;
722 __be16 lid;
723 __u16 mac[3];
724 __u8 frag_num;
725 __u8 seq_num;
726 __le32 len;
727 /* MUST be of word size due to PIO write requirements */
728 __le32 csum;
729 __le16 csum_offset;
730 __le16 flags;
731 __u16 first_2_bytes;
732 __u8 unused[2]; /* currently unused */
733};
734
735
736/* IB - LRH header consts */
737#define IPATH_LRH_GRH 0x0003 /* 1. word of IB LRH - next header: GRH */
738#define IPATH_LRH_BTH 0x0002 /* 1. word of IB LRH - next header: BTH */
739
740/* misc. */
741#define SIZE_OF_CRC 1
742
743#define IPATH_DEFAULT_P_KEY 0xFFFF
744#define IPATH_PERMISSIVE_LID 0xFFFF
745#define IPATH_AETH_CREDIT_SHIFT 24
746#define IPATH_AETH_CREDIT_MASK 0x1F
747#define IPATH_AETH_CREDIT_INVAL 0x1F
748#define IPATH_PSN_MASK 0xFFFFFF
749#define IPATH_MSN_MASK 0xFFFFFF
750#define IPATH_QPN_MASK 0xFFFFFF
751#define IPATH_MULTICAST_LID_BASE 0xC000
752#define IPATH_MULTICAST_QPN 0xFFFFFF
753
754/* Receive Header Queue: receive type (from infinipath) */
755#define RCVHQ_RCV_TYPE_EXPECTED 0
756#define RCVHQ_RCV_TYPE_EAGER 1
757#define RCVHQ_RCV_TYPE_NON_KD 2
758#define RCVHQ_RCV_TYPE_ERROR 3
759
760
761/* sub OpCodes - ith4x */
762#define IPATH_ITH4X_OPCODE_ENCAP 0x81
763#define IPATH_ITH4X_OPCODE_LID_ARP 0x82
764
765#define IPATH_HEADER_QUEUE_WORDS 9
766
767/* functions for extracting fields from rcvhdrq entries for the driver.
768 */
769static inline __u32 ipath_hdrget_err_flags(const __le32 * rbuf)
770{
771 return __le32_to_cpu(rbuf[1]);
772}
773
774static inline __u32 ipath_hdrget_rcv_type(const __le32 * rbuf)
775{
776 return (__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_RCVTYPE_SHIFT)
777 & INFINIPATH_RHF_RCVTYPE_MASK;
778}
779
780static inline __u32 ipath_hdrget_length_in_bytes(const __le32 * rbuf)
781{
782 return ((__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_LENGTH_SHIFT)
783 & INFINIPATH_RHF_LENGTH_MASK) << 2;
784}
785
786static inline __u32 ipath_hdrget_index(const __le32 * rbuf)
787{
788 return (__le32_to_cpu(rbuf[0]) >> INFINIPATH_RHF_EGRINDEX_SHIFT)
789 & INFINIPATH_RHF_EGRINDEX_MASK;
790}
791
792static inline __u32 ipath_hdrget_ipath_ver(__le32 hdrword)
793{
794 return (__le32_to_cpu(hdrword) >> INFINIPATH_I_VERS_SHIFT)
795 & INFINIPATH_I_VERS_MASK;
796}
797
Bryan O'Sullivand41d3ae2006-03-29 15:23:25 -0800798#endif /* _IPATH_COMMON_H */