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