832 need Intel 82579 Gigabit Ethernet PHY support in e1000g
[illumos-gate.git] / usr / src / uts / common / io / hxge / hxge_vmac.h
blobd028fa020786638d6178b5da19205055fac9f514
1 /*
2 * CDDL HEADER START
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.
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.
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]
19 * CDDL HEADER END
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _SYS_HXGE_HXGE_VMAC_H
27 #define _SYS_HXGE_HXGE_VMAC_H
29 #pragma ident "%Z%%M% %I% %E% SMI"
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
35 #include <hxge_vmac_hw.h>
36 #include <hpi_vmac.h>
38 /* Common MAC statistics */
39 typedef struct _hxge_mac_stats {
40 /* Transciever state informations. */
41 uint32_t cap_10gfdx;
43 /* Advertised capabilities. */
44 uint32_t adv_cap_10gfdx;
46 /* Link partner capabilities. */
47 uint32_t lp_cap_10gfdx;
49 /* Physical link statistics. */
50 uint32_t link_speed;
51 uint32_t link_duplex;
52 uint32_t link_up;
54 /* Promiscous mode */
55 boolean_t promisc;
56 } hxge_mac_stats_t;
58 /* VMAC statistics */
60 typedef struct _hxge_vmac_stats {
61 uint64_t tx_frame_cnt; /* vmac_tx_frame_cnt_t */
62 uint64_t tx_byte_cnt; /* vmac_tx_byte_cnt_t */
64 uint64_t rx_frame_cnt; /* vmac_rx_frame_cnt_t */
65 uint64_t rx_byte_cnt; /* vmac_rx_byte_cnt_t */
66 uint64_t rx_drop_frame_cnt; /* vmac_rx_drop_fr_cnt_t */
67 uint64_t rx_drop_byte_cnt; /* vmac_rx_drop_byte_cnt_t */
68 uint64_t rx_crc_cnt; /* vmac_rx_crc_cnt_t */
69 uint64_t rx_pause_cnt; /* vmac_rx_pause_cnt_t */
70 uint64_t rx_bcast_fr_cnt; /* vmac_rx_bcast_fr_cnt_t */
71 uint64_t rx_mcast_fr_cnt; /* vmac_rx_mcast_fr_cnt_t */
72 } hxge_vmac_stats_t, *p_hxge_vmac_stats_t;
75 typedef struct _hxge_vmac {
76 boolean_t is_jumbo;
77 uint64_t tx_config;
78 uint64_t rx_config;
79 uint16_t minframesize;
80 uint16_t maxframesize;
81 uint16_t maxburstsize;
82 } hxge_vmac_t;
85 #ifdef __cplusplus
87 #endif
89 #endif /* _SYS_HXGE_HXGE_VMAC_H */