bge.h revision a4de4ba2aed9fb0ab6c2bcdb07b7f4fe512c4291
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _SYS_BGE_H
#define _SYS_BGE_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Name of the driver
*/
#define BGE_DRIVER_NAME "bge"
/*
*
* These are the values to use with LD_SET_MODE.
*/
#define BGE_LOOP_NONE 0
#define BGE_LOOP_INTERNAL_PHY 4
#define BGE_LOOP_INTERNAL_MAC 5
/*
* BGE-specific ioctls ...
*/
/*
*/
struct bge_mii_rw {
};
/*
*
* Note: SEEPROMs can only be accessed as 32-bit words, so <see_addr>
* must be a multiple of 4. Not all systems have a SEEPROM fitted!
*/
struct bge_see_rw {
};
/*
*
* Note: flash can only be accessed as 32-bit words, so <flash_addr>
* must be a multiple of 4. Not all systems have flash fitted!
*/
struct bge_flash_rw {
};
/*
* These diagnostic IOCTLS are enabled only in DEBUG drivers
*/
typedef struct {
/* input for poke */
#define BGE_PP_SPACE_CFG 0 /* PCI config space */
#define BGE_IPMI_ASF
#define BGE_NETCONSOLE
/*
* BGE_MAXPKT_RCVED is defined to make sure bge does not stick
* in a receiving loop too long. This value is the tuning result
* to throughput/latency/CPU utilization, TCP/UDP
*/
#define BGE_MAXPKT_RCVED 32
#ifdef __cplusplus
}
#endif
#endif /* _SYS_BGE_H */