]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/ofed/drivers/net/mlx4/en_port.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / ofed / drivers / net / mlx4 / en_port.h
1 /*
2  * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  *
32  */
33
34 #ifndef _MLX4_EN_PORT_H_
35 #define _MLX4_EN_PORT_H_
36
37
38 #define SET_PORT_GEN_ALL_VALID  0x7
39 #define SET_PORT_PROMISC_EN_SHIFT       31
40 #define SET_PORT_PROMISC_MODE_SHIFT     30
41
42 enum {
43         MLX4_CMD_SET_VLAN_FLTR  = 0x47,
44         MLX4_CMD_SET_MCAST_FLTR = 0x48,
45         MLX4_CMD_DUMP_ETH_STATS = 0x49,
46 };
47
48 struct mlx4_set_port_general_context {
49         u8 reserved[3];
50         u8 flags;
51         u16 reserved2;
52         __be16 mtu;
53         u8 pptx;
54         u8 pfctx;
55         u16 reserved3;
56         u8 pprx;
57         u8 pfcrx;
58         u16 reserved4;
59 };
60
61 struct mlx4_set_port_rqp_calc_context {
62         __be32 base_qpn;
63         __be32 flags;
64         u8 reserved[3];
65         u8 mac_miss;
66         u8 intra_no_vlan;
67         u8 no_vlan;
68         u8 intra_vlan_miss;
69         u8 vlan_miss;
70         u8 reserved2[3];
71         u8 no_vlan_prio;
72         __be32 promisc;
73         __be32 mcast;
74 };
75
76 #define VLAN_FLTR_SIZE  128
77 struct mlx4_set_vlan_fltr_mbox {
78         __be32 entry[VLAN_FLTR_SIZE];
79 };
80
81
82 enum {
83         MLX4_MCAST_CONFIG       = 0,
84         MLX4_MCAST_DISABLE      = 1,
85         MLX4_MCAST_ENABLE       = 2,
86 };
87
88 enum {
89         MLX4_EN_1G_SPEED        = 0x02,
90         MLX4_EN_10G_SPEED_XFI   = 0x01,
91         MLX4_EN_10G_SPEED_XAUI  = 0x00,
92         MLX4_EN_40G_SPEED       = 0x40,
93         MLX4_EN_OTHER_SPEED     = 0x0f,
94 };
95
96 struct mlx4_en_query_port_context {
97         u8 link_up;
98 #define MLX4_EN_LINK_UP_MASK    0x80
99         u8 reserved;
100         __be16 mtu;
101         u8 reserved2;
102         u8 link_speed;
103 #define MLX4_EN_SPEED_MASK      0x43
104         u16 reserved3[5];
105         __be64 mac;
106         u8 transceiver;
107         u8 reserved4[3];
108         __be32 wavelenth;
109         u32 reserved5;
110         __be32 transceiver_code_hi;
111         __be32 transceiver_code_low;
112 };
113
114
115 struct mlx4_en_stat_out_mbox {
116         /* Received frames with a length of 64 octets */
117         __be64 R64_prio_0;
118         __be64 R64_prio_1;
119         __be64 R64_prio_2;
120         __be64 R64_prio_3;
121         __be64 R64_prio_4;
122         __be64 R64_prio_5;
123         __be64 R64_prio_6;
124         __be64 R64_prio_7;
125         __be64 R64_novlan;
126         /* Received frames with a length of 127 octets */
127         __be64 R127_prio_0;
128         __be64 R127_prio_1;
129         __be64 R127_prio_2;
130         __be64 R127_prio_3;
131         __be64 R127_prio_4;
132         __be64 R127_prio_5;
133         __be64 R127_prio_6;
134         __be64 R127_prio_7;
135         __be64 R127_novlan;
136         /* Received frames with a length of 255 octets */
137         __be64 R255_prio_0;
138         __be64 R255_prio_1;
139         __be64 R255_prio_2;
140         __be64 R255_prio_3;
141         __be64 R255_prio_4;
142         __be64 R255_prio_5;
143         __be64 R255_prio_6;
144         __be64 R255_prio_7;
145         __be64 R255_novlan;
146         /* Received frames with a length of 511 octets */
147         __be64 R511_prio_0;
148         __be64 R511_prio_1;
149         __be64 R511_prio_2;
150         __be64 R511_prio_3;
151         __be64 R511_prio_4;
152         __be64 R511_prio_5;
153         __be64 R511_prio_6;
154         __be64 R511_prio_7;
155         __be64 R511_novlan;
156         /* Received frames with a length of 1023 octets */
157         __be64 R1023_prio_0;
158         __be64 R1023_prio_1;
159         __be64 R1023_prio_2;
160         __be64 R1023_prio_3;
161         __be64 R1023_prio_4;
162         __be64 R1023_prio_5;
163         __be64 R1023_prio_6;
164         __be64 R1023_prio_7;
165         __be64 R1023_novlan;
166         /* Received frames with a length of 1518 octets */
167         __be64 R1518_prio_0;
168         __be64 R1518_prio_1;
169         __be64 R1518_prio_2;
170         __be64 R1518_prio_3;
171         __be64 R1518_prio_4;
172         __be64 R1518_prio_5;
173         __be64 R1518_prio_6;
174         __be64 R1518_prio_7;
175         __be64 R1518_novlan;
176         /* Received frames with a length of 1522 octets */
177         __be64 R1522_prio_0;
178         __be64 R1522_prio_1;
179         __be64 R1522_prio_2;
180         __be64 R1522_prio_3;
181         __be64 R1522_prio_4;
182         __be64 R1522_prio_5;
183         __be64 R1522_prio_6;
184         __be64 R1522_prio_7;
185         __be64 R1522_novlan;
186         /* Received frames with a length of 1548 octets */
187         __be64 R1548_prio_0;
188         __be64 R1548_prio_1;
189         __be64 R1548_prio_2;
190         __be64 R1548_prio_3;
191         __be64 R1548_prio_4;
192         __be64 R1548_prio_5;
193         __be64 R1548_prio_6;
194         __be64 R1548_prio_7;
195         __be64 R1548_novlan;
196         /* Received frames with a length of 1548 < octets < MTU */
197         __be64 R2MTU_prio_0;
198         __be64 R2MTU_prio_1;
199         __be64 R2MTU_prio_2;
200         __be64 R2MTU_prio_3;
201         __be64 R2MTU_prio_4;
202         __be64 R2MTU_prio_5;
203         __be64 R2MTU_prio_6;
204         __be64 R2MTU_prio_7;
205         __be64 R2MTU_novlan;
206         /* Received frames with a length of MTU< octets and good CRC */
207         __be64 RGIANT_prio_0;
208         __be64 RGIANT_prio_1;
209         __be64 RGIANT_prio_2;
210         __be64 RGIANT_prio_3;
211         __be64 RGIANT_prio_4;
212         __be64 RGIANT_prio_5;
213         __be64 RGIANT_prio_6;
214         __be64 RGIANT_prio_7;
215         __be64 RGIANT_novlan;
216         /* Received broadcast frames with good CRC */
217         __be64 RBCAST_prio_0;
218         __be64 RBCAST_prio_1;
219         __be64 RBCAST_prio_2;
220         __be64 RBCAST_prio_3;
221         __be64 RBCAST_prio_4;
222         __be64 RBCAST_prio_5;
223         __be64 RBCAST_prio_6;
224         __be64 RBCAST_prio_7;
225         __be64 RBCAST_novlan;
226         /* Received multicast frames with good CRC */
227         __be64 MCAST_prio_0;
228         __be64 MCAST_prio_1;
229         __be64 MCAST_prio_2;
230         __be64 MCAST_prio_3;
231         __be64 MCAST_prio_4;
232         __be64 MCAST_prio_5;
233         __be64 MCAST_prio_6;
234         __be64 MCAST_prio_7;
235         __be64 MCAST_novlan;
236         /* Received unicast not short or GIANT frames with good CRC */
237         __be64 RTOTG_prio_0;
238         __be64 RTOTG_prio_1;
239         __be64 RTOTG_prio_2;
240         __be64 RTOTG_prio_3;
241         __be64 RTOTG_prio_4;
242         __be64 RTOTG_prio_5;
243         __be64 RTOTG_prio_6;
244         __be64 RTOTG_prio_7;
245         __be64 RTOTG_novlan;
246
247         /* Count of total octets of received frames, includes framing characters */
248         __be64 RTTLOCT_prio_0;
249         /* Count of total octets of received frames, not including framing
250            characters */
251         __be64 RTTLOCT_NOFRM_prio_0;
252         /* Count of Total number of octets received
253            (only for frames without errors) */
254         __be64 ROCT_prio_0;
255
256         __be64 RTTLOCT_prio_1;
257         __be64 RTTLOCT_NOFRM_prio_1;
258         __be64 ROCT_prio_1;
259
260         __be64 RTTLOCT_prio_2;
261         __be64 RTTLOCT_NOFRM_prio_2;
262         __be64 ROCT_prio_2;
263
264         __be64 RTTLOCT_prio_3;
265         __be64 RTTLOCT_NOFRM_prio_3;
266         __be64 ROCT_prio_3;
267
268         __be64 RTTLOCT_prio_4;
269         __be64 RTTLOCT_NOFRM_prio_4;
270         __be64 ROCT_prio_4;
271
272         __be64 RTTLOCT_prio_5;
273         __be64 RTTLOCT_NOFRM_prio_5;
274         __be64 ROCT_prio_5;
275
276         __be64 RTTLOCT_prio_6;
277         __be64 RTTLOCT_NOFRM_prio_6;
278         __be64 ROCT_prio_6;
279
280         __be64 RTTLOCT_prio_7;
281         __be64 RTTLOCT_NOFRM_prio_7;
282         __be64 ROCT_prio_7;
283
284         __be64 RTTLOCT_novlan;
285         __be64 RTTLOCT_NOFRM_novlan;
286         __be64 ROCT_novlan;
287
288         /* Count of Total received frames including bad frames */
289         __be64 RTOT_prio_0;
290         /* Count of  Total number of received frames with 802.1Q encapsulation */
291         __be64 R1Q_prio_0;
292         __be64 reserved1;
293
294         __be64 RTOT_prio_1;
295         __be64 R1Q_prio_1;
296         __be64 reserved2;
297
298         __be64 RTOT_prio_2;
299         __be64 R1Q_prio_2;
300         __be64 reserved3;
301
302         __be64 RTOT_prio_3;
303         __be64 R1Q_prio_3;
304         __be64 reserved4;
305
306         __be64 RTOT_prio_4;
307         __be64 R1Q_prio_4;
308         __be64 reserved5;
309
310         __be64 RTOT_prio_5;
311         __be64 R1Q_prio_5;
312         __be64 reserved6;
313
314         __be64 RTOT_prio_6;
315         __be64 R1Q_prio_6;
316         __be64 reserved7;
317
318         __be64 RTOT_prio_7;
319         __be64 R1Q_prio_7;
320         __be64 reserved8;
321
322         __be64 RTOT_novlan;
323         __be64 R1Q_novlan;
324         __be64 reserved9;
325
326         /* Total number of Successfully Received Control Frames */
327         __be64 RCNTL;
328         __be64 reserved10;
329         __be64 reserved11;
330         __be64 reserved12;
331         /* Count of received frames with a length/type field  value between 46
332            (42 for VLANtagged frames) and 1500 (also 1500 for VLAN-tagged frames),
333            inclusive */
334         __be64 RInRangeLengthErr;
335         /* Count of received frames with length/type field between 1501 and 1535
336            decimal, inclusive */
337         __be64 ROutRangeLengthErr;
338         /* Count of received frames that are longer than max allowed size for
339            802.3 frames (1518/1522) */
340         __be64 RFrmTooLong;
341         /* Count frames received with PCS error */
342         __be64 PCS;
343
344         /* Transmit frames with a length of 64 octets */
345         __be64 T64_prio_0;
346         __be64 T64_prio_1;
347         __be64 T64_prio_2;
348         __be64 T64_prio_3;
349         __be64 T64_prio_4;
350         __be64 T64_prio_5;
351         __be64 T64_prio_6;
352         __be64 T64_prio_7;
353         __be64 T64_novlan;
354         __be64 T64_loopbk;
355         /* Transmit frames with a length of 65 to 127 octets. */
356         __be64 T127_prio_0;
357         __be64 T127_prio_1;
358         __be64 T127_prio_2;
359         __be64 T127_prio_3;
360         __be64 T127_prio_4;
361         __be64 T127_prio_5;
362         __be64 T127_prio_6;
363         __be64 T127_prio_7;
364         __be64 T127_novlan;
365         __be64 T127_loopbk;
366         /* Transmit frames with a length of 128 to 255 octets */
367         __be64 T255_prio_0;
368         __be64 T255_prio_1;
369         __be64 T255_prio_2;
370         __be64 T255_prio_3;
371         __be64 T255_prio_4;
372         __be64 T255_prio_5;
373         __be64 T255_prio_6;
374         __be64 T255_prio_7;
375         __be64 T255_novlan;
376         __be64 T255_loopbk;
377         /* Transmit frames with a length of 256 to 511 octets */
378         __be64 T511_prio_0;
379         __be64 T511_prio_1;
380         __be64 T511_prio_2;
381         __be64 T511_prio_3;
382         __be64 T511_prio_4;
383         __be64 T511_prio_5;
384         __be64 T511_prio_6;
385         __be64 T511_prio_7;
386         __be64 T511_novlan;
387         __be64 T511_loopbk;
388         /* Transmit frames with a length of 512 to 1023 octets */
389         __be64 T1023_prio_0;
390         __be64 T1023_prio_1;
391         __be64 T1023_prio_2;
392         __be64 T1023_prio_3;
393         __be64 T1023_prio_4;
394         __be64 T1023_prio_5;
395         __be64 T1023_prio_6;
396         __be64 T1023_prio_7;
397         __be64 T1023_novlan;
398         __be64 T1023_loopbk;
399         /* Transmit frames with a length of 1024 to 1518 octets */
400         __be64 T1518_prio_0;
401         __be64 T1518_prio_1;
402         __be64 T1518_prio_2;
403         __be64 T1518_prio_3;
404         __be64 T1518_prio_4;
405         __be64 T1518_prio_5;
406         __be64 T1518_prio_6;
407         __be64 T1518_prio_7;
408         __be64 T1518_novlan;
409         __be64 T1518_loopbk;
410         /* Counts transmit frames with a length of 1519 to 1522 bytes */
411         __be64 T1522_prio_0;
412         __be64 T1522_prio_1;
413         __be64 T1522_prio_2;
414         __be64 T1522_prio_3;
415         __be64 T1522_prio_4;
416         __be64 T1522_prio_5;
417         __be64 T1522_prio_6;
418         __be64 T1522_prio_7;
419         __be64 T1522_novlan;
420         __be64 T1522_loopbk;
421         /* Transmit frames with a length of 1523 to 1548 octets */
422         __be64 T1548_prio_0;
423         __be64 T1548_prio_1;
424         __be64 T1548_prio_2;
425         __be64 T1548_prio_3;
426         __be64 T1548_prio_4;
427         __be64 T1548_prio_5;
428         __be64 T1548_prio_6;
429         __be64 T1548_prio_7;
430         __be64 T1548_novlan;
431         __be64 T1548_loopbk;
432         /* Counts transmit frames with a length of 1549 to MTU bytes */
433         __be64 T2MTU_prio_0;
434         __be64 T2MTU_prio_1;
435         __be64 T2MTU_prio_2;
436         __be64 T2MTU_prio_3;
437         __be64 T2MTU_prio_4;
438         __be64 T2MTU_prio_5;
439         __be64 T2MTU_prio_6;
440         __be64 T2MTU_prio_7;
441         __be64 T2MTU_novlan;
442         __be64 T2MTU_loopbk;
443         /* Transmit frames with a length greater than MTU octets and a good CRC. */
444         __be64 TGIANT_prio_0;
445         __be64 TGIANT_prio_1;
446         __be64 TGIANT_prio_2;
447         __be64 TGIANT_prio_3;
448         __be64 TGIANT_prio_4;
449         __be64 TGIANT_prio_5;
450         __be64 TGIANT_prio_6;
451         __be64 TGIANT_prio_7;
452         __be64 TGIANT_novlan;
453         __be64 TGIANT_loopbk;
454         /* Transmit broadcast frames with a good CRC */
455         __be64 TBCAST_prio_0;
456         __be64 TBCAST_prio_1;
457         __be64 TBCAST_prio_2;
458         __be64 TBCAST_prio_3;
459         __be64 TBCAST_prio_4;
460         __be64 TBCAST_prio_5;
461         __be64 TBCAST_prio_6;
462         __be64 TBCAST_prio_7;
463         __be64 TBCAST_novlan;
464         __be64 TBCAST_loopbk;
465         /* Transmit multicast frames with a good CRC */
466         __be64 TMCAST_prio_0;
467         __be64 TMCAST_prio_1;
468         __be64 TMCAST_prio_2;
469         __be64 TMCAST_prio_3;
470         __be64 TMCAST_prio_4;
471         __be64 TMCAST_prio_5;
472         __be64 TMCAST_prio_6;
473         __be64 TMCAST_prio_7;
474         __be64 TMCAST_novlan;
475         __be64 TMCAST_loopbk;
476         /* Transmit good frames that are neither broadcast nor multicast */
477         __be64 TTOTG_prio_0;
478         __be64 TTOTG_prio_1;
479         __be64 TTOTG_prio_2;
480         __be64 TTOTG_prio_3;
481         __be64 TTOTG_prio_4;
482         __be64 TTOTG_prio_5;
483         __be64 TTOTG_prio_6;
484         __be64 TTOTG_prio_7;
485         __be64 TTOTG_novlan;
486         __be64 TTOTG_loopbk;
487
488         /* total octets of transmitted frames, including framing characters */
489         __be64 TTTLOCT_prio_0;
490         /* total octets of transmitted frames, not including framing characters */
491         __be64 TTTLOCT_NOFRM_prio_0;
492         /* ifOutOctets */
493         __be64 TOCT_prio_0;
494
495         __be64 TTTLOCT_prio_1;
496         __be64 TTTLOCT_NOFRM_prio_1;
497         __be64 TOCT_prio_1;
498
499         __be64 TTTLOCT_prio_2;
500         __be64 TTTLOCT_NOFRM_prio_2;
501         __be64 TOCT_prio_2;
502
503         __be64 TTTLOCT_prio_3;
504         __be64 TTTLOCT_NOFRM_prio_3;
505         __be64 TOCT_prio_3;
506
507         __be64 TTTLOCT_prio_4;
508         __be64 TTTLOCT_NOFRM_prio_4;
509         __be64 TOCT_prio_4;
510
511         __be64 TTTLOCT_prio_5;
512         __be64 TTTLOCT_NOFRM_prio_5;
513         __be64 TOCT_prio_5;
514
515         __be64 TTTLOCT_prio_6;
516         __be64 TTTLOCT_NOFRM_prio_6;
517         __be64 TOCT_prio_6;
518
519         __be64 TTTLOCT_prio_7;
520         __be64 TTTLOCT_NOFRM_prio_7;
521         __be64 TOCT_prio_7;
522
523         __be64 TTTLOCT_novlan;
524         __be64 TTTLOCT_NOFRM_novlan;
525         __be64 TOCT_novlan;
526
527         __be64 TTTLOCT_loopbk;
528         __be64 TTTLOCT_NOFRM_loopbk;
529         __be64 TOCT_loopbk;
530
531         /* Total frames transmitted with a good CRC that are not aborted  */
532         __be64 TTOT_prio_0;
533         /* Total number of frames transmitted with 802.1Q encapsulation */
534         __be64 T1Q_prio_0;
535         __be64 reserved13;
536
537         __be64 TTOT_prio_1;
538         __be64 T1Q_prio_1;
539         __be64 reserved14;
540
541         __be64 TTOT_prio_2;
542         __be64 T1Q_prio_2;
543         __be64 reserved15;
544
545         __be64 TTOT_prio_3;
546         __be64 T1Q_prio_3;
547         __be64 reserved16;
548
549         __be64 TTOT_prio_4;
550         __be64 T1Q_prio_4;
551         __be64 reserved17;
552
553         __be64 TTOT_prio_5;
554         __be64 T1Q_prio_5;
555         __be64 reserved18;
556
557         __be64 TTOT_prio_6;
558         __be64 T1Q_prio_6;
559         __be64 reserved19;
560
561         __be64 TTOT_prio_7;
562         __be64 T1Q_prio_7;
563         __be64 reserved20;
564
565         __be64 TTOT_novlan;
566         __be64 T1Q_novlan;
567         __be64 reserved21;
568
569         __be64 TTOT_loopbk;
570         __be64 T1Q_loopbk;
571         __be64 reserved22;
572
573         /* Received frames with a length greater than MTU octets and a bad CRC */
574         __be32 RJBBR;
575         /* Received frames with a bad CRC that are not runts, jabbers,
576            or alignment errors */
577         __be32 RCRC;
578         /* Received frames with SFD with a length of less than 64 octets and a
579            bad CRC */
580         __be32 RRUNT;
581         /* Received frames with a length less than 64 octets and a good CRC */
582         __be32 RSHORT;
583         /* Total Number of Received Packets Dropped */
584         __be32 RDROP;
585         /* Drop due to overflow  */
586         __be32 RdropOvflw;
587         /* Drop due to overflow */
588         __be32 RdropLength;
589         /* Total of good frames. Does not include frames received with
590            frame-too-long, FCS, or length errors */
591         __be32 RTOTFRMS;
592         /* Total dropped Xmited packets */
593         __be32 TDROP;
594 };
595
596 enum mlx4_query_reply mlx4_en_query(void *endev_ptr, void *int_dev);
597
598 #endif