usr/src/uts/common/sys/mac.h
author Cathy Zhou <Cathy.Zhou@Sun.COM>
Tue, 17 Mar 2009 20:14:50 -0700
changeset 9073 a5a4bb23741e
parent 9060 85c625dc3df7
child 9107 a47dcdb19715
permissions -rw-r--r--
PSARC/2008/242 Data Fast-Path for Softmac 6649224 fast-path needed to improve legacy network interface performance after UV 6649898 the smac_lock and smac_mutex fields in softmac_t should be given a more descriptive name 6799767 DLD capability is not correctly updated if it is renegotiated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     1
/*
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     2
 * CDDL HEADER START
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     3
 *
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
     5
 * Common Development and Distribution License (the "License").
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
     6
 * You may not use this file except in compliance with the License.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     7
 *
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    11
 * and limitations under the License.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    12
 *
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    18
 *
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    19
 * CDDL HEADER END
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    20
 */
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    21
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    22
/*
8833
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
    23
 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    24
 * Use is subject to license terms.
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    25
 */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    26
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    27
#ifndef	_SYS_MAC_H
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    28
#define	_SYS_MAC_H
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    29
2760
38f12e308f6d PSARC/2006/358 VLAN Observability Enhancement
dg199075
parents: 2406
diff changeset
    30
#include <sys/types.h>
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    31
#include <sys/ddi.h>
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    32
#include <sys/sunddi.h>
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    33
#include <sys/stream.h>
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    34
#include <sys/mac_flow.h>
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    35
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    36
/*
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    37
 * MAC Services Module
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    38
 */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    39
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    40
#ifdef	__cplusplus
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    41
extern "C" {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    42
#endif
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    43
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    44
/*
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    45
 * MAC Information (text emitted by modinfo(1m))
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    46
 */
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    47
#define	MAC_INFO	"MAC Services v1.20"
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    48
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    49
/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    50
 * MAC-Type version identifier.  This is used by mactype_alloc() and
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    51
 * mactype_register() to verify that incompatible MAC-Type plugins don't
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    52
 * register.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    53
 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    54
#define	MACTYPE_VERSION	0x1
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    55
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
    56
/*
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    57
 * Opaque handle types
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    58
 */
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    59
typedef struct __mac_handle		*mac_handle_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    60
typedef struct __mac_resource_handle	*mac_resource_handle_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    61
typedef struct __mac_notify_handle	*mac_notify_handle_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    62
typedef struct __mac_tx_notify_handle	*mac_tx_notify_handle_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    63
typedef	struct __mac_intr_handle	*mac_intr_handle_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    64
typedef	struct __mac_ring_handle	*mac_ring_handle_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    65
typedef	struct __mac_group_handle	*mac_group_handle_t;
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    66
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    67
#define	DATALINK_INVALID_LINKID	0
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    68
#define	DATALINK_ALL_LINKID	0
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    69
#define	DATALINK_MAX_LINKID	0xffffffff
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    70
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    71
#define	MAC_MAX_MINOR	1000
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    72
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    73
typedef enum {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    74
	LINK_STATE_UNKNOWN = -1,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    75
	LINK_STATE_DOWN,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    76
	LINK_STATE_UP
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    77
} link_state_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    78
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    79
typedef enum {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    80
	LINK_DUPLEX_UNKNOWN = 0,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    81
	LINK_DUPLEX_HALF,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    82
	LINK_DUPLEX_FULL
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    83
} link_duplex_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
    84
5903
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    85
typedef enum {
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    86
	LINK_FLOWCTRL_NONE = 0,
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    87
	LINK_FLOWCTRL_RX,
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    88
	LINK_FLOWCTRL_TX,
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    89
	LINK_FLOWCTRL_BI
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    90
} link_flowctrl_t;
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
    91
8874
c95653a13ea6 PSARC 2009/069 802.1Q tag mode link property
Sebastien Roy <Sebastien.Roy@Sun.COM>
parents: 8833
diff changeset
    92
typedef enum {
c95653a13ea6 PSARC 2009/069 802.1Q tag mode link property
Sebastien Roy <Sebastien.Roy@Sun.COM>
parents: 8833
diff changeset
    93
	LINK_TAGMODE_VLANONLY = 0,
c95653a13ea6 PSARC 2009/069 802.1Q tag mode link property
Sebastien Roy <Sebastien.Roy@Sun.COM>
parents: 8833
diff changeset
    94
	LINK_TAGMODE_NORMAL
c95653a13ea6 PSARC 2009/069 802.1Q tag mode link property
Sebastien Roy <Sebastien.Roy@Sun.COM>
parents: 8833
diff changeset
    95
} link_tagmode_t;
c95653a13ea6 PSARC 2009/069 802.1Q tag mode link property
Sebastien Roy <Sebastien.Roy@Sun.COM>
parents: 8833
diff changeset
    96
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    97
/*
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    98
 * Maximum MAC address length
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
    99
 */
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   100
#define	MAXMACADDRLEN		20
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   101
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   102
typedef enum {
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   103
	MAC_LOGTYPE_LINK = 1,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   104
	MAC_LOGTYPE_FLOW
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   105
} mac_logtype_t;
6789
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   106
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   107
/*
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   108
 * Encodings for public properties.
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   109
 * A most significant bit value of 1 indicates private property, intended
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   110
 * to allow private property implementations to use internal encodings
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   111
 * if desired.
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   112
 *
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   113
 * Note that there are 2 sets of parameters: the *_EN_*
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   114
 * values are those that the Administrator configures for autonegotiation.
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   115
 * The _ADV_* values are those that are currently exposed over the wire.
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   116
 */
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   117
#define	MAXLINKPROPNAME		256
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   118
#define	MAC_PROP_DEFAULT	0x0001
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   119
typedef enum {
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   120
	MAC_PROP_DUPLEX = 0x00000001,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   121
	MAC_PROP_SPEED,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   122
	MAC_PROP_STATUS,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   123
	MAC_PROP_AUTONEG,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   124
	MAC_PROP_EN_AUTONEG,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   125
	MAC_PROP_MTU,
7342
ba01248bb368 6714745 zone/autopush should be implemented using DLDIOC_*MACPROP ioctls.
Aruna Ramakrishna - Sun Microsystems <Aruna.Ramakrishna@Sun.COM>
parents: 6916
diff changeset
   126
	MAC_PROP_ZONE,
ba01248bb368 6714745 zone/autopush should be implemented using DLDIOC_*MACPROP ioctls.
Aruna Ramakrishna - Sun Microsystems <Aruna.Ramakrishna@Sun.COM>
parents: 6916
diff changeset
   127
	MAC_PROP_AUTOPUSH,
6789
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   128
	MAC_PROP_FLOWCTRL,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   129
	MAC_PROP_ADV_1000FDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   130
	MAC_PROP_EN_1000FDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   131
	MAC_PROP_ADV_1000HDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   132
	MAC_PROP_EN_1000HDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   133
	MAC_PROP_ADV_100FDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   134
	MAC_PROP_EN_100FDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   135
	MAC_PROP_ADV_100HDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   136
	MAC_PROP_EN_100HDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   137
	MAC_PROP_ADV_10FDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   138
	MAC_PROP_EN_10FDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   139
	MAC_PROP_ADV_10HDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   140
	MAC_PROP_EN_10HDX_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   141
	MAC_PROP_ADV_100T4_CAP,
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   142
	MAC_PROP_EN_100T4_CAP,
7663
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   143
	MAC_PROP_WL_ESSID,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   144
	MAC_PROP_WL_BSSID,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   145
	MAC_PROP_WL_BSSTYPE,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   146
	MAC_PROP_WL_LINKSTATUS,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   147
	MAC_PROP_WL_DESIRED_RATES,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   148
	MAC_PROP_WL_SUPPORTED_RATES,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   149
	MAC_PROP_WL_AUTH_MODE,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   150
	MAC_PROP_WL_ENCRYPTION,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   151
	MAC_PROP_WL_RSSI,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   152
	MAC_PROP_WL_PHY_CONFIG,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   153
	MAC_PROP_WL_CAPABILITY,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   154
	MAC_PROP_WL_WPA,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   155
	MAC_PROP_WL_SCANRESULTS,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   156
	MAC_PROP_WL_POWER_MODE,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   157
	MAC_PROP_WL_RADIO,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   158
	MAC_PROP_WL_ESS_LIST,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   159
	MAC_PROP_WL_KEY_TAB,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   160
	MAC_PROP_WL_CREATE_IBSS,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   161
	MAC_PROP_WL_SETOPTIE,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   162
	MAC_PROP_WL_DELKEY,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   163
	MAC_PROP_WL_KEY,
bbef84085f42 6721363 concise 'show-linkprop' default output
Sowmini Varadhan <Sowmini.Varadhan@Sun.COM>
parents: 7342
diff changeset
   164
	MAC_PROP_WL_MLME,
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   165
	MAC_PROP_MAXBW,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   166
	MAC_PROP_PRIO,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   167
	MAC_PROP_BIND_CPU,
8874
c95653a13ea6 PSARC 2009/069 802.1Q tag mode link property
Sebastien Roy <Sebastien.Roy@Sun.COM>
parents: 8833
diff changeset
   168
	MAC_PROP_TAGMODE,
6789
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   169
	MAC_PROP_PRIVATE = -1
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   170
} mac_prop_id_t;
4c5ca96fbed3 6674402 sort out property management related constants and data-structures in {dld,mac}.h
am223141
parents: 6512
diff changeset
   171
5084
7d838c5c0eed PSARC 2006/260 Solaris on Xen
johnlev
parents: 4913
diff changeset
   172
/*
8118
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   173
 * Flags to figure out r/w status of legacy ndd props.
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   174
 */
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   175
#define	MAC_PROP_PERM_READ		0x0001
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   176
#define	MAC_PROP_PERM_WRITE		0x0010
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   177
#define	MAC_PROP_MAP_KSTAT		0x0100
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   178
#define	MAC_PROP_PERM_RW		(MAC_PROP_PERM_READ|MAC_PROP_PERM_WRITE)
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   179
#define	MAC_PROP_FLAGS_RK		(MAC_PROP_PERM_READ|MAC_PROP_MAP_KSTAT)
88925232392f PSARC 2008/608 brussels property permissions
Vasumathi Sundaram - Sun Microsystems <Vasumathi.Sundaram@Sun.COM>
parents: 7663
diff changeset
   180
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   181
#ifdef	_KERNEL
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   182
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   183
/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   184
 * There are three ranges of statistics values.  0 to 1 - MAC_STAT_MIN are
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   185
 * interface statistics maintained by the mac module.  MAC_STAT_MIN to 1 -
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   186
 * MACTYPE_STAT_MIN are common MAC statistics defined by the mac module and
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   187
 * maintained by each driver.  MACTYPE_STAT_MIN and above are statistics
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   188
 * defined by MAC-Type plugins and maintained by each driver.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   189
 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   190
#define	MAC_STAT_MIN		1000
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   191
#define	MACTYPE_STAT_MIN	2000
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   192
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   193
#define	IS_MAC_STAT(stat)	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   194
	(stat >= MAC_STAT_MIN && stat < MACTYPE_STAT_MIN)
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   195
#define	IS_MACTYPE_STAT(stat)	(stat >= MACTYPE_STAT_MIN)
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   196
4089
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   197
/*
5895
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   198
 * Statistics maintained by the mac module, and possibly populated as link
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   199
 * statistics.
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   200
 */
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   201
enum mac_mod_stat {
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   202
	MAC_STAT_LINK_STATE,
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   203
	MAC_STAT_LINK_UP,
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   204
	MAC_STAT_PROMISC
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   205
};
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   206
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   207
/*
4089
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   208
 * Do not reorder, and add only to the end of this list.
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   209
 */
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   210
enum mac_driver_stat {
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   211
	/* MIB-II stats (RFC 1213 and RFC 1573) */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   212
	MAC_STAT_IFSPEED = MAC_STAT_MIN,
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   213
	MAC_STAT_MULTIRCV,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   214
	MAC_STAT_BRDCSTRCV,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   215
	MAC_STAT_MULTIXMT,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   216
	MAC_STAT_BRDCSTXMT,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   217
	MAC_STAT_NORCVBUF,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   218
	MAC_STAT_IERRORS,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   219
	MAC_STAT_UNKNOWNS,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   220
	MAC_STAT_NOXMTBUF,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   221
	MAC_STAT_OERRORS,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   222
	MAC_STAT_COLLISIONS,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   223
	MAC_STAT_RBYTES,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   224
	MAC_STAT_IPACKETS,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   225
	MAC_STAT_OBYTES,
4089
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   226
	MAC_STAT_OPACKETS,
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   227
	MAC_STAT_UNDERFLOWS,
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   228
	MAC_STAT_OVERFLOWS
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   229
};
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   230
4089
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   231
#define	MAC_NSTAT	(MAC_STAT_OVERFLOWS - MAC_STAT_IFSPEED + 1)
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   232
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   233
#define	MAC_STAT_ISACOUNTER(_stat) (		\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   234
	    (_stat) == MAC_STAT_MULTIRCV ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   235
	    (_stat) == MAC_STAT_BRDCSTRCV ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   236
	    (_stat) == MAC_STAT_MULTIXMT ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   237
	    (_stat) == MAC_STAT_BRDCSTXMT ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   238
	    (_stat) == MAC_STAT_NORCVBUF ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   239
	    (_stat) == MAC_STAT_IERRORS ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   240
	    (_stat) == MAC_STAT_UNKNOWNS ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   241
	    (_stat) == MAC_STAT_NOXMTBUF ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   242
	    (_stat) == MAC_STAT_OERRORS ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   243
	    (_stat) == MAC_STAT_COLLISIONS ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   244
	    (_stat) == MAC_STAT_RBYTES ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   245
	    (_stat) == MAC_STAT_IPACKETS ||	\
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   246
	    (_stat) == MAC_STAT_OBYTES ||	\
4089
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   247
	    (_stat) == MAC_STAT_OPACKETS ||	\
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   248
	    (_stat) == MAC_STAT_UNDERFLOWS ||	\
32330c723688 PSARC 2007/220 Update Nemo Statistics
gd78059
parents: 3448
diff changeset
   249
	    (_stat) == MAC_STAT_OVERFLOWS)
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   250
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   251
/*
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   252
 * Immutable information. (This may not be modified after registration).
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   253
 */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   254
typedef struct mac_info_s {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   255
	uint_t		mi_media;
3147
2789cc0027be PSARC/2006/406 WiFi for GLDv3
xc151355
parents: 3115
diff changeset
   256
	uint_t		mi_nativemedia;
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   257
	uint_t		mi_addr_length;
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   258
	uint8_t		*mi_unicst_addr;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   259
	uint8_t		*mi_brdcst_addr;
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   260
} mac_info_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   261
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   262
/*
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   263
 * When VNICs are created on top of the NIC, there are two levels
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   264
 * of MAC layer, a lower MAC, which is the MAC layer at the level of the
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   265
 * physical NIC, and an upper MAC, which is the MAC layer at the level
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   266
 * of the VNIC. Each VNIC maps to a MAC client at the lower MAC, and
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   267
 * the SRS and classification is done at the lower MAC level. The upper
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   268
 * MAC is therefore for the most part pass-through, and therefore
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   269
 * special processing needs to be done at the upper MAC layer when
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   270
 * dealing with a VNIC.
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   271
 *
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   272
 * This capability allows the MAC layer to detect when a VNIC is being
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   273
 * access, and implement the required shortcuts.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   274
 */
6495
1a95fa8c7c94 FWARC 2008/246 Virtual IO Dynamic Device Service
speer
parents: 5903
diff changeset
   275
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   276
typedef void *(*mac_client_handle_fn_t)(void *);
6495
1a95fa8c7c94 FWARC 2008/246 Virtual IO Dynamic Device Service
speer
parents: 5903
diff changeset
   277
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   278
typedef struct mac_capab_vnic_s {
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   279
	void			*mcv_arg;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   280
	mac_client_handle_fn_t	mcv_mac_client_handle;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   281
} mac_capab_vnic_t;
6495
1a95fa8c7c94 FWARC 2008/246 Virtual IO Dynamic Device Service
speer
parents: 5903
diff changeset
   282
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   283
typedef void (*mac_rename_fn_t)(const char *, void *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   284
typedef struct mac_capab_aggr_s {
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   285
	mac_rename_fn_t mca_rename_fn;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   286
	int (*mca_unicst)(void *, const uint8_t *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   287
} mac_capab_aggr_t;
6495
1a95fa8c7c94 FWARC 2008/246 Virtual IO Dynamic Device Service
speer
parents: 5903
diff changeset
   288
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   289
typedef enum {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   290
	MAC_NOTE_LINK,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   291
	MAC_NOTE_PROMISC,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   292
	MAC_NOTE_UNICST,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   293
	MAC_NOTE_TX,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   294
	MAC_NOTE_RESOURCE,
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   295
	MAC_NOTE_DEVPROMISC,
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   296
	MAC_NOTE_FASTPATH_FLUSH,
5903
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
   297
	MAC_NOTE_SDU_SIZE,
5895
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   298
	MAC_NOTE_MARGIN,
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   299
	MAC_NOTE_CAPAB_CHG,
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   300
	MAC_NNOTE	/* must be the last entry */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   301
} mac_notify_type_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   302
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   303
typedef void		(*mac_notify_t)(void *, mac_notify_type_t);
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   304
typedef void		(*mac_rx_t)(void *, mac_resource_handle_t, mblk_t *,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   305
			    boolean_t);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   306
typedef	mblk_t		*(*mac_receive_t)(void *, int);
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   307
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   308
/*
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   309
 * MAC promiscuous types
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   310
 */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   311
typedef enum {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   312
	MAC_PROMISC = 0x01,		/* MAC instance is promiscuous */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   313
	MAC_DEVPROMISC = 0x02		/* Device is promiscuous */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   314
} mac_promisc_type_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   315
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   316
/*
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   317
 * MAC resource types
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   318
 */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   319
typedef enum {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   320
	MAC_RX_FIFO = 1
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   321
} mac_resource_type_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   322
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   323
typedef	int	(*mac_intr_enable_t)(mac_intr_handle_t);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   324
typedef	int	(*mac_intr_disable_t)(mac_intr_handle_t);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   325
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   326
typedef	struct mac_intr_s {
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   327
	mac_intr_handle_t	mi_handle;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   328
	mac_intr_enable_t	mi_enable;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   329
	mac_intr_disable_t	mi_disable;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   330
} mac_intr_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   331
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   332
typedef struct mac_rx_fifo_s {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   333
	mac_resource_type_t	mrf_type;	/* MAC_RX_FIFO */
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   334
	mac_intr_t		mrf_intr;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   335
	mac_receive_t		mrf_receive;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   336
	void			*mrf_rx_arg;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   337
	uint32_t		mrf_flow_priority;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   338
	/*
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   339
	 * The CPU this flow is to be processed on. With intrd and future
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   340
	 * things, we should know which CPU the flow needs to be processed
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   341
	 * and get a squeue assigned on that CPU.
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   342
	 */
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   343
	uint_t			mrf_cpu_id;
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   344
} mac_rx_fifo_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   345
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   346
#define	mrf_intr_handle		mrf_intr.mi_handle
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   347
#define	mrf_intr_enable		mrf_intr.mi_enable
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   348
#define	mrf_intr_disable	mrf_intr.mi_disable
56
8b051e816bd8 PSARC/2005/358 Nemo Transmit Pointers
meem
parents: 0
diff changeset
   349
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   350
typedef union mac_resource_u {
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   351
	mac_resource_type_t	mr_type;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   352
	mac_rx_fifo_t		mr_fifo;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   353
} mac_resource_t;
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   354
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   355
typedef enum {
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   356
	MAC_ADDRTYPE_UNICAST,
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   357
	MAC_ADDRTYPE_MULTICAST,
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   358
	MAC_ADDRTYPE_BROADCAST
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   359
} mac_addrtype_t;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   360
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   361
typedef struct mac_header_info_s {
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   362
	size_t		mhi_hdrsize;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   363
	size_t		mhi_pktsize;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   364
	const uint8_t	*mhi_daddr;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   365
	const uint8_t	*mhi_saddr;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   366
	uint32_t	mhi_origsap;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   367
	uint32_t	mhi_bindsap;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   368
	mac_addrtype_t	mhi_dsttype;
2760
38f12e308f6d PSARC/2006/358 VLAN Observability Enhancement
dg199075
parents: 2406
diff changeset
   369
	uint16_t	mhi_tci;
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   370
	boolean_t	mhi_istagged;
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   371
} mac_header_info_t;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   372
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   373
/*
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   374
 * Function pointer to match dls client signature. Should be same as
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   375
 * dls_rx_t to allow a soft ring to bypass DLS layer and call a DLS
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   376
 * client directly.
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   377
 */
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   378
typedef	void		(*mac_direct_rx_t)(void *, mac_resource_handle_t,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   379
				mblk_t *, mac_header_info_t *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   380
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   381
typedef mac_resource_handle_t	(*mac_resource_add_t)(void *, mac_resource_t *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   382
typedef int			(*mac_resource_bind_t)(void *,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   383
    mac_resource_handle_t, processorid_t);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   384
typedef void			(*mac_resource_remove_t)(void *, void *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   385
typedef void			(*mac_resource_quiesce_t)(void *, void *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   386
typedef void			(*mac_resource_restart_t)(void *, void *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   387
typedef int			(*mac_resource_modify_t)(void *, void *,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   388
				    mac_resource_t *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   389
typedef	void			(*mac_change_upcall_t)(void *, mac_direct_rx_t,
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   390
    void *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   391
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   392
/*
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   393
 * MAC-Type plugin interfaces
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   394
 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   395
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   396
typedef int		(*mtops_addr_verify_t)(const void *, void *);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   397
typedef boolean_t	(*mtops_sap_verify_t)(uint32_t, uint32_t *, void *);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   398
typedef mblk_t		*(*mtops_header_t)(const void *, const void *,
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   399
    uint32_t, void *, mblk_t *, size_t);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   400
typedef int		(*mtops_header_info_t)(mblk_t *, void *,
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   401
    mac_header_info_t *);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   402
typedef boolean_t	(*mtops_pdata_verify_t)(void *, size_t);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   403
typedef	mblk_t		*(*mtops_header_modify_t)(mblk_t *, void *);
4403
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   404
typedef void		(*mtops_link_details_t)(char *, size_t, mac_handle_t,
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   405
    void *);
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   406
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   407
typedef struct mactype_ops_s {
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   408
	uint_t			mtops_ops;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   409
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   410
	 * mtops_unicst_verify() returns 0 if the given address is a valid
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   411
	 * unicast address, or a non-zero errno otherwise.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   412
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   413
	mtops_addr_verify_t	mtops_unicst_verify;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   414
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   415
	 * mtops_multicst_verify() returns 0 if the given address is a
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   416
	 * valid multicast address, or a non-zero errno otherwise.  If the
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   417
	 * media doesn't support multicast, ENOTSUP should be returned (for
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   418
	 * example).
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   419
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   420
	mtops_addr_verify_t	mtops_multicst_verify;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   421
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   422
	 * mtops_sap_verify() returns B_TRUE if the given SAP is a valid
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   423
	 * SAP value, or B_FALSE otherwise.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   424
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   425
	mtops_sap_verify_t	mtops_sap_verify;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   426
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   427
	 * mtops_header() is used to allocate and construct a MAC header.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   428
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   429
	mtops_header_t		mtops_header;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   430
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   431
	 * mtops_header_info() is used to gather information on a given MAC
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   432
	 * header.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   433
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   434
	mtops_header_info_t	mtops_header_info;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   435
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   436
	 * mtops_pdata_verify() is used to verify the validity of MAC
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   437
	 * plugin data.  It is called by mac_register() if the driver has
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   438
	 * supplied MAC plugin data, and also by mac_pdata_update() when
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   439
	 * drivers update the data.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   440
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   441
	mtops_pdata_verify_t	mtops_pdata_verify;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   442
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   443
	 * mtops_header_cook() is an optional callback that converts (or
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   444
	 * "cooks") the given raw header (as sent by a raw DLPI consumer)
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   445
	 * into one that is appropriate to send down to the MAC driver.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   446
	 * Following the example above, an Ethernet header sent down by a
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   447
	 * DLPI consumer would be converted to whatever header the MAC
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   448
	 * driver expects.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   449
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   450
	mtops_header_modify_t	mtops_header_cook;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   451
	/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   452
	 * mtops_header_uncook() is an optional callback that does the
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   453
	 * opposite of mtops_header_cook().  It "uncooks" a given MAC
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   454
	 * header (as received from the driver) for consumption by raw DLPI
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   455
	 * consumers.  For example, for a non-Ethernet plugin that wants
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   456
	 * raw DLPI consumers to be fooled into thinking that the device
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   457
	 * provides Ethernet access, this callback would modify the given
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   458
	 * mblk_t such that the MAC header is converted to an Ethernet
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   459
	 * header.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   460
	 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   461
	mtops_header_modify_t	mtops_header_uncook;
4403
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   462
	/*
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   463
	 * mtops_link_details() is an optional callback that provides
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   464
	 * extended information about the link state.  Its primary purpose
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   465
	 * is to provide type-specific support for syslog contents on
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   466
	 * link up events.  If no implementation is provided, then a default
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   467
	 * implementation will be used.
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   468
	 */
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   469
	mtops_link_details_t	mtops_link_details;
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   470
} mactype_ops_t;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   471
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   472
/*
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   473
 * mtops_ops exists for the plugin to enumerate the optional callback
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   474
 * entrypoints it has defined.  This allows the mac module to define
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   475
 * additional plugin entrypoints in mactype_ops_t without breaking backward
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   476
 * compatibility with old plugins.
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   477
 */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   478
#define	MTOPS_PDATA_VERIFY	0x001
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   479
#define	MTOPS_HEADER_COOK	0x002
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   480
#define	MTOPS_HEADER_UNCOOK	0x004
4403
77da60925cac PSARC 2007/296 nemo ethernet stats update, part 2
gd78059
parents: 4089
diff changeset
   481
#define	MTOPS_LINK_DETAILS	0x008
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   482
6512
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   483
/*
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   484
 * Provide mapping for legacy ndd ioctls relevant to that mactype.
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   485
 * Note that the ndd ioctls are obsolete, and may be removed in a future
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   486
 * release of Solaris. The ndd ioctls are not typically used in legacy
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   487
 * ethernet drivers. New datalink drivers of all link-types should use
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   488
 * dladm(1m) interfaces for administering tunables and not have to provide
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   489
 * a mapping.
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   490
 */
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   491
typedef struct mac_ndd_mapping_s {
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   492
	char		*mp_name;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   493
	union {
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   494
		mac_prop_id_t   u_id;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   495
		uint_t		u_kstat;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   496
	} u_mp_id;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   497
	long		mp_minval;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   498
	long		mp_maxval;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   499
	size_t		mp_valsize;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   500
	int		mp_flags;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   501
} mac_ndd_mapping_t;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   502
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   503
#define	mp_prop_id	u_mp_id.u_id
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   504
#define	mp_kstat	u_mp_id.u_kstat
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   505
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   506
typedef struct mac_stat_info_s {
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   507
	uint_t		msi_stat;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   508
	char		*msi_name;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   509
	uint_t		msi_type;	/* as defined in kstat_named_init(9F) */
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   510
	uint64_t	msi_default;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   511
} mac_stat_info_t;
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   512
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   513
typedef struct mactype_register_s {
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   514
	uint_t		mtr_version;	/* set by mactype_alloc() */
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   515
	const char	*mtr_ident;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   516
	mactype_ops_t	*mtr_ops;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   517
	uint_t		mtr_mactype;
3147
2789cc0027be PSARC/2006/406 WiFi for GLDv3
xc151355
parents: 3115
diff changeset
   518
	uint_t		mtr_nativetype;
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   519
	uint_t		mtr_addrlen;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   520
	uint8_t		*mtr_brdcst_addr;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   521
	mac_stat_info_t	*mtr_stats;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   522
	size_t		mtr_statcount;
6512
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   523
	mac_ndd_mapping_t *mtr_mapping;
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   524
	size_t		mtr_mappingcount;
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   525
} mactype_register_t;
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   526
5903
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
   527
typedef struct mac_prop_s {
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
   528
	mac_prop_id_t	mp_id;
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
   529
	char		*mp_name;
6512
707ffe0297ab PSARC/2008/171 Brussels: NDD compatiblity support
sowmini
parents: 6495
diff changeset
   530
	uint_t		mp_flags;
5903
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
   531
} mac_prop_t;
df6aed881b11 PSARC 2007/429 Brussels - enhanced network driver configuration via dladm
sowmini
parents: 5895
diff changeset
   532
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   533
/*
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   534
 * Driver interface functions.
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   535
 */
5895
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   536
extern int			mac_open_by_linkid(datalink_id_t,
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   537
				    mac_handle_t *);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   538
extern int			mac_open_by_linkname(const char *,
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   539
				    mac_handle_t *);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   540
extern const char		*mac_name(mac_handle_t);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   541
extern minor_t			mac_minor(mac_handle_t);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   542
extern minor_t			mac_minor_hold(boolean_t);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   543
extern void			mac_minor_rele(minor_t);
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   544
extern void			mac_sdu_get(mac_handle_t, uint_t *, uint_t *);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   545
extern int			mac_maxsdu_update(mac_handle_t, uint_t);
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   546
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   547
extern void 			mac_unicst_update(mac_handle_t,
5895
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   548
				    const uint8_t *);
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   549
extern void			mac_resource_update(mac_handle_t);
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   550
extern void			mac_capab_update(mac_handle_t);
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   551
extern int			mac_pdata_update(mac_handle_t, void *,
5895
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   552
				    size_t);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   553
extern boolean_t		mac_margin_update(mac_handle_t, uint32_t);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   554
extern void			mac_margin_get(mac_handle_t, uint32_t *);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   555
extern int			mac_margin_remove(mac_handle_t, uint32_t);
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   556
extern int			mac_margin_add(mac_handle_t, uint32_t *,
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   557
				    boolean_t);
9073
a5a4bb23741e PSARC/2008/242 Data Fast-Path for Softmac
Cathy Zhou <Cathy.Zhou@Sun.COM>
parents: 9060
diff changeset
   558
extern int			mac_fastpath_disable(mac_handle_t);
a5a4bb23741e PSARC/2008/242 Data Fast-Path for Softmac
Cathy Zhou <Cathy.Zhou@Sun.COM>
parents: 9060
diff changeset
   559
extern void			mac_fastpath_enable(mac_handle_t);
5895
f251acdd9bdc PSARC/2006/499 Clearview Nemo unification and vanity naming
yz147064
parents: 5733
diff changeset
   560
2311
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   561
extern mactype_register_t	*mactype_alloc(uint_t);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   562
extern void			mactype_free(mactype_register_t *);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   563
extern int			mactype_register(mactype_register_t *);
2d86e52dcdf0 PSARC/2006/248 Nemo MAC-Type Plugin Architecture
seb
parents: 269
diff changeset
   564
extern int			mactype_unregister(const char *);
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   565
9073
a5a4bb23741e PSARC/2008/242 Data Fast-Path for Softmac
Cathy Zhou <Cathy.Zhou@Sun.COM>
parents: 9060
diff changeset
   566
extern int			mac_start_logusage(mac_logtype_t, uint_t);
8275
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   567
extern void			mac_stop_logusage(mac_logtype_t);
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   568
7c223a798022 PSARC/2006/357 Crossbow - Network Virtualization and Resource Management
Eric Cheng
parents: 8118
diff changeset
   569
extern mac_handle_t		mac_get_lower_mac_handle(mac_handle_t);
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   570
8833
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   571
/*
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   572
 * Packet hashing for distribution to multiple ports and rings.
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   573
 */
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   574
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   575
#define	MAC_PKT_HASH_L2		0x01
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   576
#define	MAC_PKT_HASH_L3		0x02
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   577
#define	MAC_PKT_HASH_L4		0x04
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   578
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   579
extern uint64_t			mac_pkt_hash(uint_t, mblk_t *, uint8_t,
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   580
				    boolean_t);
8adf20bc60e3 PSARC/2009/099 dladm show-usage modifications
Venugopal Iyer <Venu.Iyer@Sun.COM>
parents: 8275
diff changeset
   581
0
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   582
#endif	/* _KERNEL */
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   583
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   584
#ifdef	__cplusplus
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   585
}
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   586
#endif
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   587
68f95e015346 OpenSolaris Launch
stevel@tonic-gate
parents:
diff changeset
   588
#endif /* _SYS_MAC_H */