xref: /illumos-gate/usr/src/uts/common/io/hxge/hxge_vmac.h (revision 2d6eb4a5)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef	_SYS_HXGE_HXGE_VMAC_H
27 #define	_SYS_HXGE_HXGE_VMAC_H
28 
29 #ifdef	__cplusplus
30 extern "C" {
31 #endif
32 
33 #include <hxge_vmac_hw.h>
34 #include <hpi_vmac.h>
35 
36 /* Common MAC statistics */
37 typedef	struct _hxge_mac_stats {
38 	/* Transciever state informations. */
39 	uint32_t	cap_10gfdx;
40 
41 	/* Advertised capabilities. */
42 	uint32_t	adv_cap_10gfdx;
43 
44 	/* Link partner capabilities. */
45 	uint32_t	lp_cap_10gfdx;
46 
47 	/* Physical link statistics. */
48 	uint32_t	link_speed;
49 	uint32_t	link_duplex;
50 	uint32_t	link_up;
51 
52 	/* Promiscous mode */
53 	boolean_t	promisc;
54 } hxge_mac_stats_t;
55 
56 /* VMAC statistics */
57 
58 typedef	struct _hxge_vmac_stats {
59 	uint64_t	tx_frame_cnt;		/* vmac_tx_frame_cnt_t */
60 	uint64_t	tx_byte_cnt;		/* vmac_tx_byte_cnt_t */
61 
62 	uint64_t	rx_frame_cnt;		/* vmac_rx_frame_cnt_t */
63 	uint64_t	rx_byte_cnt;		/* vmac_rx_byte_cnt_t */
64 	uint64_t	rx_drop_frame_cnt;	/* vmac_rx_drop_fr_cnt_t */
65 	uint64_t	rx_drop_byte_cnt;	/* vmac_rx_drop_byte_cnt_t */
66 	uint64_t	rx_crc_cnt;		/* vmac_rx_crc_cnt_t */
67 	uint64_t	rx_pause_cnt;		/* vmac_rx_pause_cnt_t */
68 	uint64_t	rx_bcast_fr_cnt;	/* vmac_rx_bcast_fr_cnt_t */
69 	uint64_t	rx_mcast_fr_cnt;	/* vmac_rx_mcast_fr_cnt_t */
70 } hxge_vmac_stats_t, *p_hxge_vmac_stats_t;
71 
72 
73 typedef	struct _hxge_vmac {
74 	boolean_t		is_jumbo;
75 	uint64_t		tx_config;
76 	uint64_t		rx_config;
77 	uint16_t		minframesize;
78 	uint16_t		maxframesize;
79 	uint16_t		maxburstsize;
80 } hxge_vmac_t;
81 
82 
83 #ifdef	__cplusplus
84 }
85 #endif
86 
87 #endif	/* _SYS_HXGE_HXGE_VMAC_H */
88