17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5ba2e4443Sseb * Common Development and Distribution License (the "License"). 6ba2e4443Sseb * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 21da14cebeSEric Cheng 227c478bd9Sstevel@tonic-gate /* 23*f195a053SDarren Reed * Copyright 2010 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate * Use is subject to license terms. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate #ifndef _SYS_MAC_H 287c478bd9Sstevel@tonic-gate #define _SYS_MAC_H 297c478bd9Sstevel@tonic-gate 30605445d5Sdg199075 #include <sys/types.h> 3182a2fc47SJames Carlson #ifdef _KERNEL 327c478bd9Sstevel@tonic-gate #include <sys/sunddi.h> 3382a2fc47SJames Carlson #endif 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gate /* 367c478bd9Sstevel@tonic-gate * MAC Services Module 377c478bd9Sstevel@tonic-gate */ 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate #ifdef __cplusplus 407c478bd9Sstevel@tonic-gate extern "C" { 417c478bd9Sstevel@tonic-gate #endif 427c478bd9Sstevel@tonic-gate 437c478bd9Sstevel@tonic-gate /* 447c478bd9Sstevel@tonic-gate * MAC Information (text emitted by modinfo(1m)) 457c478bd9Sstevel@tonic-gate */ 4661af1958SGarrett D'Amore #define MAC_INFO "MAC Services" 47ba2e4443Sseb 48ba2e4443Sseb /* 49ba2e4443Sseb * MAC-Type version identifier. This is used by mactype_alloc() and 50ba2e4443Sseb * mactype_register() to verify that incompatible MAC-Type plugins don't 51ba2e4443Sseb * register. 52ba2e4443Sseb */ 53ba2e4443Sseb #define MACTYPE_VERSION 0x1 54ba2e4443Sseb 55ba2e4443Sseb /* 56da14cebeSEric Cheng * Opaque handle types 577c478bd9Sstevel@tonic-gate */ 58da14cebeSEric Cheng typedef struct __mac_handle *mac_handle_t; 59da14cebeSEric Cheng typedef struct __mac_resource_handle *mac_resource_handle_t; 60da14cebeSEric Cheng typedef struct __mac_notify_handle *mac_notify_handle_t; 61da14cebeSEric Cheng typedef struct __mac_tx_notify_handle *mac_tx_notify_handle_t; 62da14cebeSEric Cheng typedef struct __mac_intr_handle *mac_intr_handle_t; 63da14cebeSEric Cheng typedef struct __mac_ring_handle *mac_ring_handle_t; 64da14cebeSEric Cheng typedef struct __mac_group_handle *mac_group_handle_t; 657c478bd9Sstevel@tonic-gate 66da14cebeSEric Cheng #define DATALINK_INVALID_LINKID 0 67da14cebeSEric Cheng #define DATALINK_ALL_LINKID 0 68da14cebeSEric Cheng #define DATALINK_MAX_LINKID 0xffffffff 69da14cebeSEric Cheng 707c478bd9Sstevel@tonic-gate typedef enum { 717c478bd9Sstevel@tonic-gate LINK_STATE_UNKNOWN = -1, 727c478bd9Sstevel@tonic-gate LINK_STATE_DOWN, 737c478bd9Sstevel@tonic-gate LINK_STATE_UP 747c478bd9Sstevel@tonic-gate } link_state_t; 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate typedef enum { 777c478bd9Sstevel@tonic-gate LINK_DUPLEX_UNKNOWN = 0, 787c478bd9Sstevel@tonic-gate LINK_DUPLEX_HALF, 797c478bd9Sstevel@tonic-gate LINK_DUPLEX_FULL 807c478bd9Sstevel@tonic-gate } link_duplex_t; 817c478bd9Sstevel@tonic-gate 82e7801d59Ssowmini typedef enum { 83e7801d59Ssowmini LINK_FLOWCTRL_NONE = 0, 84e7801d59Ssowmini LINK_FLOWCTRL_RX, 85e7801d59Ssowmini LINK_FLOWCTRL_TX, 86e7801d59Ssowmini LINK_FLOWCTRL_BI 87e7801d59Ssowmini } link_flowctrl_t; 88e7801d59Ssowmini 89e75f0919SSebastien Roy typedef enum { 90e75f0919SSebastien Roy LINK_TAGMODE_VLANONLY = 0, 91e75f0919SSebastien Roy LINK_TAGMODE_NORMAL 92e75f0919SSebastien Roy } link_tagmode_t; 93e75f0919SSebastien Roy 94da14cebeSEric Cheng /* 95f0f2c3a5SGirish Moodalbail * Defines range of uint32 values 96f0f2c3a5SGirish Moodalbail */ 97f0f2c3a5SGirish Moodalbail typedef struct mac_propval_uint32_range_s { 98f0f2c3a5SGirish Moodalbail uint32_t mpur_min; 99f0f2c3a5SGirish Moodalbail uint32_t mpur_max; 100f0f2c3a5SGirish Moodalbail } mac_propval_uint32_range_t; 101f0f2c3a5SGirish Moodalbail 102f0f2c3a5SGirish Moodalbail /* 103f0f2c3a5SGirish Moodalbail * Data type of the value 104f0f2c3a5SGirish Moodalbail */ 105f0f2c3a5SGirish Moodalbail typedef enum { 106f0f2c3a5SGirish Moodalbail MAC_PROPVAL_UINT32 = 0x1 107f0f2c3a5SGirish Moodalbail } mac_propval_type_t; 108f0f2c3a5SGirish Moodalbail 109f0f2c3a5SGirish Moodalbail /* 110f0f2c3a5SGirish Moodalbail * Captures possible values for a given property. A property can have 111f0f2c3a5SGirish Moodalbail * range of values (int32, int64, uint32, uint64, et al) or collection/ 112f0f2c3a5SGirish Moodalbail * enumeration of values (strings). 113f0f2c3a5SGirish Moodalbail * Can be used as a value-result parameter. 114f0f2c3a5SGirish Moodalbail * 115f0f2c3a5SGirish Moodalbail * See PSARC 2009/235 for more information. 116f0f2c3a5SGirish Moodalbail */ 117f0f2c3a5SGirish Moodalbail typedef struct mac_propval_range_s { 118f0f2c3a5SGirish Moodalbail uint_t mpr_count; /* count of ranges */ 119f0f2c3a5SGirish Moodalbail mac_propval_type_t mpr_type; /* type of value */ 120f0f2c3a5SGirish Moodalbail union { 121f0f2c3a5SGirish Moodalbail mac_propval_uint32_range_t mpr_uint32[1]; 122f0f2c3a5SGirish Moodalbail } u; 123f0f2c3a5SGirish Moodalbail } mac_propval_range_t; 124f0f2c3a5SGirish Moodalbail 125f0f2c3a5SGirish Moodalbail #define range_uint32 u.mpr_uint32 126f0f2c3a5SGirish Moodalbail 127f0f2c3a5SGirish Moodalbail /* 128da14cebeSEric Cheng * Maximum MAC address length 129da14cebeSEric Cheng */ 130da14cebeSEric Cheng #define MAXMACADDRLEN 20 131da14cebeSEric Cheng 132da14cebeSEric Cheng typedef enum { 133da14cebeSEric Cheng MAC_LOGTYPE_LINK = 1, 134da14cebeSEric Cheng MAC_LOGTYPE_FLOW 135da14cebeSEric Cheng } mac_logtype_t; 1363fd94f8cSam223141 1373fd94f8cSam223141 /* 1383fd94f8cSam223141 * Encodings for public properties. 1393fd94f8cSam223141 * A most significant bit value of 1 indicates private property, intended 1403fd94f8cSam223141 * to allow private property implementations to use internal encodings 1413fd94f8cSam223141 * if desired. 1423fd94f8cSam223141 * 1433fd94f8cSam223141 * Note that there are 2 sets of parameters: the *_EN_* 1443fd94f8cSam223141 * values are those that the Administrator configures for autonegotiation. 1453fd94f8cSam223141 * The _ADV_* values are those that are currently exposed over the wire. 1463fd94f8cSam223141 */ 1473fd94f8cSam223141 #define MAXLINKPROPNAME 256 148f0f2c3a5SGirish Moodalbail #define MAC_PROP_DEFAULT 0x0001 /* default property value */ 149f0f2c3a5SGirish Moodalbail 150f0f2c3a5SGirish Moodalbail /* 151f0f2c3a5SGirish Moodalbail * Indicates the linkprop framework is interested in knowing the list of 152f0f2c3a5SGirish Moodalbail * possible property values. When used to obtain possible values for a 153f0f2c3a5SGirish Moodalbail * property, one may have to change all the drivers. See PSARC 2009/235. 154f0f2c3a5SGirish Moodalbail */ 155f0f2c3a5SGirish Moodalbail #define MAC_PROP_POSSIBLE 0x0002 /* possible property values */ 156f0f2c3a5SGirish Moodalbail 1573fd94f8cSam223141 typedef enum { 1583fd94f8cSam223141 MAC_PROP_DUPLEX = 0x00000001, 1593fd94f8cSam223141 MAC_PROP_SPEED, 1603fd94f8cSam223141 MAC_PROP_STATUS, 1613fd94f8cSam223141 MAC_PROP_AUTONEG, 1623fd94f8cSam223141 MAC_PROP_EN_AUTONEG, 1633fd94f8cSam223141 MAC_PROP_MTU, 1643bc21d0aSAruna Ramakrishna - Sun Microsystems MAC_PROP_ZONE, 1653bc21d0aSAruna Ramakrishna - Sun Microsystems MAC_PROP_AUTOPUSH, 1663fd94f8cSam223141 MAC_PROP_FLOWCTRL, 1673fd94f8cSam223141 MAC_PROP_ADV_1000FDX_CAP, 1683fd94f8cSam223141 MAC_PROP_EN_1000FDX_CAP, 1693fd94f8cSam223141 MAC_PROP_ADV_1000HDX_CAP, 1703fd94f8cSam223141 MAC_PROP_EN_1000HDX_CAP, 1713fd94f8cSam223141 MAC_PROP_ADV_100FDX_CAP, 1723fd94f8cSam223141 MAC_PROP_EN_100FDX_CAP, 1733fd94f8cSam223141 MAC_PROP_ADV_100HDX_CAP, 1743fd94f8cSam223141 MAC_PROP_EN_100HDX_CAP, 1753fd94f8cSam223141 MAC_PROP_ADV_10FDX_CAP, 1763fd94f8cSam223141 MAC_PROP_EN_10FDX_CAP, 1773fd94f8cSam223141 MAC_PROP_ADV_10HDX_CAP, 1783fd94f8cSam223141 MAC_PROP_EN_10HDX_CAP, 1793fd94f8cSam223141 MAC_PROP_ADV_100T4_CAP, 1803fd94f8cSam223141 MAC_PROP_EN_100T4_CAP, 1812b24ab6bSSebastien Roy MAC_PROP_IPTUN_HOPLIMIT, 1822b24ab6bSSebastien Roy MAC_PROP_IPTUN_ENCAPLIMIT, 183bcb5c89dSSowmini Varadhan MAC_PROP_WL_ESSID, 184bcb5c89dSSowmini Varadhan MAC_PROP_WL_BSSID, 185bcb5c89dSSowmini Varadhan MAC_PROP_WL_BSSTYPE, 186bcb5c89dSSowmini Varadhan MAC_PROP_WL_LINKSTATUS, 187bcb5c89dSSowmini Varadhan MAC_PROP_WL_DESIRED_RATES, 188bcb5c89dSSowmini Varadhan MAC_PROP_WL_SUPPORTED_RATES, 189bcb5c89dSSowmini Varadhan MAC_PROP_WL_AUTH_MODE, 190bcb5c89dSSowmini Varadhan MAC_PROP_WL_ENCRYPTION, 191bcb5c89dSSowmini Varadhan MAC_PROP_WL_RSSI, 192bcb5c89dSSowmini Varadhan MAC_PROP_WL_PHY_CONFIG, 193bcb5c89dSSowmini Varadhan MAC_PROP_WL_CAPABILITY, 194bcb5c89dSSowmini Varadhan MAC_PROP_WL_WPA, 195bcb5c89dSSowmini Varadhan MAC_PROP_WL_SCANRESULTS, 196bcb5c89dSSowmini Varadhan MAC_PROP_WL_POWER_MODE, 197bcb5c89dSSowmini Varadhan MAC_PROP_WL_RADIO, 198bcb5c89dSSowmini Varadhan MAC_PROP_WL_ESS_LIST, 199bcb5c89dSSowmini Varadhan MAC_PROP_WL_KEY_TAB, 200bcb5c89dSSowmini Varadhan MAC_PROP_WL_CREATE_IBSS, 201bcb5c89dSSowmini Varadhan MAC_PROP_WL_SETOPTIE, 202bcb5c89dSSowmini Varadhan MAC_PROP_WL_DELKEY, 203bcb5c89dSSowmini Varadhan MAC_PROP_WL_KEY, 204bcb5c89dSSowmini Varadhan MAC_PROP_WL_MLME, 205da14cebeSEric Cheng MAC_PROP_MAXBW, 206da14cebeSEric Cheng MAC_PROP_PRIO, 207da14cebeSEric Cheng MAC_PROP_BIND_CPU, 208e75f0919SSebastien Roy MAC_PROP_TAGMODE, 209aca118b7Slucy wang - Sun Microsystems - Beijing China MAC_PROP_ADV_10GFDX_CAP, 210aca118b7Slucy wang - Sun Microsystems - Beijing China MAC_PROP_EN_10GFDX_CAP, 2114eaa4710SRishi Srivatsavai MAC_PROP_PVID, 2124eaa4710SRishi Srivatsavai MAC_PROP_LLIMIT, 2134eaa4710SRishi Srivatsavai MAC_PROP_LDECAY, 21425ec3e3dSEric Cheng MAC_PROP_PROTECT, 2153fd94f8cSam223141 MAC_PROP_PRIVATE = -1 2163fd94f8cSam223141 } mac_prop_id_t; 2173fd94f8cSam223141 218843e1988Sjohnlev /* 219afdda45fSVasumathi Sundaram - Sun Microsystems * Flags to figure out r/w status of legacy ndd props. 220afdda45fSVasumathi Sundaram - Sun Microsystems */ 221afdda45fSVasumathi Sundaram - Sun Microsystems #define MAC_PROP_PERM_READ 0x0001 222afdda45fSVasumathi Sundaram - Sun Microsystems #define MAC_PROP_PERM_WRITE 0x0010 223afdda45fSVasumathi Sundaram - Sun Microsystems #define MAC_PROP_MAP_KSTAT 0x0100 224afdda45fSVasumathi Sundaram - Sun Microsystems #define MAC_PROP_PERM_RW (MAC_PROP_PERM_READ|MAC_PROP_PERM_WRITE) 225afdda45fSVasumathi Sundaram - Sun Microsystems #define MAC_PROP_FLAGS_RK (MAC_PROP_PERM_READ|MAC_PROP_MAP_KSTAT) 226afdda45fSVasumathi Sundaram - Sun Microsystems 2277c478bd9Sstevel@tonic-gate #ifdef _KERNEL 2287c478bd9Sstevel@tonic-gate 2297c478bd9Sstevel@tonic-gate /* 230ba2e4443Sseb * There are three ranges of statistics values. 0 to 1 - MAC_STAT_MIN are 231ba2e4443Sseb * interface statistics maintained by the mac module. MAC_STAT_MIN to 1 - 232ba2e4443Sseb * MACTYPE_STAT_MIN are common MAC statistics defined by the mac module and 233ba2e4443Sseb * maintained by each driver. MACTYPE_STAT_MIN and above are statistics 234ba2e4443Sseb * defined by MAC-Type plugins and maintained by each driver. 2357c478bd9Sstevel@tonic-gate */ 236ba2e4443Sseb #define MAC_STAT_MIN 1000 237ba2e4443Sseb #define MACTYPE_STAT_MIN 2000 238ba2e4443Sseb 239ba2e4443Sseb #define IS_MAC_STAT(stat) \ 240ba2e4443Sseb (stat >= MAC_STAT_MIN && stat < MACTYPE_STAT_MIN) 241ba2e4443Sseb #define IS_MACTYPE_STAT(stat) (stat >= MACTYPE_STAT_MIN) 242ba2e4443Sseb 2439b14cf1dSgd78059 /* 244d62bc4baSyz147064 * Statistics maintained by the mac module, and possibly populated as link 245d62bc4baSyz147064 * statistics. 246d62bc4baSyz147064 */ 247d62bc4baSyz147064 enum mac_mod_stat { 248d62bc4baSyz147064 MAC_STAT_LINK_STATE, 249d62bc4baSyz147064 MAC_STAT_LINK_UP, 2504eaa4710SRishi Srivatsavai MAC_STAT_PROMISC, 2514eaa4710SRishi Srivatsavai MAC_STAT_LOWLINK_STATE 252d62bc4baSyz147064 }; 253d62bc4baSyz147064 254d62bc4baSyz147064 /* 2559b14cf1dSgd78059 * Do not reorder, and add only to the end of this list. 2569b14cf1dSgd78059 */ 257ba2e4443Sseb enum mac_driver_stat { 258ba2e4443Sseb /* MIB-II stats (RFC 1213 and RFC 1573) */ 259ba2e4443Sseb MAC_STAT_IFSPEED = MAC_STAT_MIN, 2607c478bd9Sstevel@tonic-gate MAC_STAT_MULTIRCV, 2617c478bd9Sstevel@tonic-gate MAC_STAT_BRDCSTRCV, 2627c478bd9Sstevel@tonic-gate MAC_STAT_MULTIXMT, 2637c478bd9Sstevel@tonic-gate MAC_STAT_BRDCSTXMT, 2647c478bd9Sstevel@tonic-gate MAC_STAT_NORCVBUF, 2657c478bd9Sstevel@tonic-gate MAC_STAT_IERRORS, 2667c478bd9Sstevel@tonic-gate MAC_STAT_UNKNOWNS, 2677c478bd9Sstevel@tonic-gate MAC_STAT_NOXMTBUF, 2687c478bd9Sstevel@tonic-gate MAC_STAT_OERRORS, 2697c478bd9Sstevel@tonic-gate MAC_STAT_COLLISIONS, 2707c478bd9Sstevel@tonic-gate MAC_STAT_RBYTES, 2717c478bd9Sstevel@tonic-gate MAC_STAT_IPACKETS, 2727c478bd9Sstevel@tonic-gate MAC_STAT_OBYTES, 2739b14cf1dSgd78059 MAC_STAT_OPACKETS, 2749b14cf1dSgd78059 MAC_STAT_UNDERFLOWS, 2759b14cf1dSgd78059 MAC_STAT_OVERFLOWS 2767c478bd9Sstevel@tonic-gate }; 2777c478bd9Sstevel@tonic-gate 2789b14cf1dSgd78059 #define MAC_NSTAT (MAC_STAT_OVERFLOWS - MAC_STAT_IFSPEED + 1) 279ba2e4443Sseb 280ba2e4443Sseb #define MAC_STAT_ISACOUNTER(_stat) ( \ 281ba2e4443Sseb (_stat) == MAC_STAT_MULTIRCV || \ 282ba2e4443Sseb (_stat) == MAC_STAT_BRDCSTRCV || \ 283ba2e4443Sseb (_stat) == MAC_STAT_MULTIXMT || \ 284ba2e4443Sseb (_stat) == MAC_STAT_BRDCSTXMT || \ 285ba2e4443Sseb (_stat) == MAC_STAT_NORCVBUF || \ 286ba2e4443Sseb (_stat) == MAC_STAT_IERRORS || \ 287ba2e4443Sseb (_stat) == MAC_STAT_UNKNOWNS || \ 288ba2e4443Sseb (_stat) == MAC_STAT_NOXMTBUF || \ 289ba2e4443Sseb (_stat) == MAC_STAT_OERRORS || \ 290ba2e4443Sseb (_stat) == MAC_STAT_COLLISIONS || \ 291ba2e4443Sseb (_stat) == MAC_STAT_RBYTES || \ 292ba2e4443Sseb (_stat) == MAC_STAT_IPACKETS || \ 293ba2e4443Sseb (_stat) == MAC_STAT_OBYTES || \ 2949b14cf1dSgd78059 (_stat) == MAC_STAT_OPACKETS || \ 2959b14cf1dSgd78059 (_stat) == MAC_STAT_UNDERFLOWS || \ 2969b14cf1dSgd78059 (_stat) == MAC_STAT_OVERFLOWS) 297ba2e4443Sseb 2987c478bd9Sstevel@tonic-gate /* 2997c478bd9Sstevel@tonic-gate * Immutable information. (This may not be modified after registration). 3007c478bd9Sstevel@tonic-gate */ 3017c478bd9Sstevel@tonic-gate typedef struct mac_info_s { 3027c478bd9Sstevel@tonic-gate uint_t mi_media; 3030ba2cbe9Sxc151355 uint_t mi_nativemedia; 3047c478bd9Sstevel@tonic-gate uint_t mi_addr_length; 305ba2e4443Sseb uint8_t *mi_unicst_addr; 306ba2e4443Sseb uint8_t *mi_brdcst_addr; 3077c478bd9Sstevel@tonic-gate } mac_info_t; 3087c478bd9Sstevel@tonic-gate 3097c478bd9Sstevel@tonic-gate /* 310da14cebeSEric Cheng * When VNICs are created on top of the NIC, there are two levels 311da14cebeSEric Cheng * of MAC layer, a lower MAC, which is the MAC layer at the level of the 312da14cebeSEric Cheng * physical NIC, and an upper MAC, which is the MAC layer at the level 313da14cebeSEric Cheng * of the VNIC. Each VNIC maps to a MAC client at the lower MAC, and 314da14cebeSEric Cheng * the SRS and classification is done at the lower MAC level. The upper 315da14cebeSEric Cheng * MAC is therefore for the most part pass-through, and therefore 316da14cebeSEric Cheng * special processing needs to be done at the upper MAC layer when 317da14cebeSEric Cheng * dealing with a VNIC. 318678453a8Sspeer * 319da14cebeSEric Cheng * This capability allows the MAC layer to detect when a VNIC is being 320da14cebeSEric Cheng * access, and implement the required shortcuts. 321678453a8Sspeer */ 322678453a8Sspeer 323da14cebeSEric Cheng typedef void *(*mac_client_handle_fn_t)(void *); 324678453a8Sspeer 325da14cebeSEric Cheng typedef struct mac_capab_vnic_s { 326da14cebeSEric Cheng void *mcv_arg; 327da14cebeSEric Cheng mac_client_handle_fn_t mcv_mac_client_handle; 328da14cebeSEric Cheng } mac_capab_vnic_t; 329678453a8Sspeer 330da14cebeSEric Cheng typedef void (*mac_rename_fn_t)(const char *, void *); 331da14cebeSEric Cheng typedef struct mac_capab_aggr_s { 332da14cebeSEric Cheng mac_rename_fn_t mca_rename_fn; 333da14cebeSEric Cheng int (*mca_unicst)(void *, const uint8_t *); 334da14cebeSEric Cheng } mac_capab_aggr_t; 335678453a8Sspeer 3364eaa4710SRishi Srivatsavai /* Bridge transmit and receive function signatures */ 3374eaa4710SRishi Srivatsavai typedef mblk_t *(*mac_bridge_tx_t)(mac_handle_t, mac_ring_handle_t, mblk_t *); 3384eaa4710SRishi Srivatsavai typedef void (*mac_bridge_rx_t)(mac_handle_t, mac_resource_handle_t, mblk_t *); 3394eaa4710SRishi Srivatsavai typedef void (*mac_bridge_ref_t)(mac_handle_t, boolean_t); 3404eaa4710SRishi Srivatsavai typedef link_state_t (*mac_bridge_ls_t)(mac_handle_t, link_state_t); 3414eaa4710SRishi Srivatsavai 3424eaa4710SRishi Srivatsavai /* must change mac_notify_cb_list[] in mac_provider.c if this is changed */ 3437c478bd9Sstevel@tonic-gate typedef enum { 3447c478bd9Sstevel@tonic-gate MAC_NOTE_LINK, 3457c478bd9Sstevel@tonic-gate MAC_NOTE_UNICST, 3467c478bd9Sstevel@tonic-gate MAC_NOTE_TX, 3477c478bd9Sstevel@tonic-gate MAC_NOTE_DEVPROMISC, 348ba2e4443Sseb MAC_NOTE_FASTPATH_FLUSH, 349e7801d59Ssowmini MAC_NOTE_SDU_SIZE, 3502b24ab6bSSebastien Roy MAC_NOTE_DEST, 351d62bc4baSyz147064 MAC_NOTE_MARGIN, 352da14cebeSEric Cheng MAC_NOTE_CAPAB_CHG, 3534eaa4710SRishi Srivatsavai MAC_NOTE_LOWLINK, 3547c478bd9Sstevel@tonic-gate MAC_NNOTE /* must be the last entry */ 3557c478bd9Sstevel@tonic-gate } mac_notify_type_t; 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate typedef void (*mac_notify_t)(void *, mac_notify_type_t); 358da14cebeSEric Cheng typedef void (*mac_rx_t)(void *, mac_resource_handle_t, mblk_t *, 359da14cebeSEric Cheng boolean_t); 360da14cebeSEric Cheng typedef mblk_t *(*mac_receive_t)(void *, int); 3617c478bd9Sstevel@tonic-gate 3627c478bd9Sstevel@tonic-gate /* 3637c478bd9Sstevel@tonic-gate * MAC resource types 3647c478bd9Sstevel@tonic-gate */ 3657c478bd9Sstevel@tonic-gate typedef enum { 3667c478bd9Sstevel@tonic-gate MAC_RX_FIFO = 1 3677c478bd9Sstevel@tonic-gate } mac_resource_type_t; 3687c478bd9Sstevel@tonic-gate 369da14cebeSEric Cheng typedef int (*mac_intr_enable_t)(mac_intr_handle_t); 370da14cebeSEric Cheng typedef int (*mac_intr_disable_t)(mac_intr_handle_t); 371da14cebeSEric Cheng 372da14cebeSEric Cheng typedef struct mac_intr_s { 373da14cebeSEric Cheng mac_intr_handle_t mi_handle; 374da14cebeSEric Cheng mac_intr_enable_t mi_enable; 375da14cebeSEric Cheng mac_intr_disable_t mi_disable; 376da14cebeSEric Cheng } mac_intr_t; 377da14cebeSEric Cheng 3787c478bd9Sstevel@tonic-gate typedef struct mac_rx_fifo_s { 3797c478bd9Sstevel@tonic-gate mac_resource_type_t mrf_type; /* MAC_RX_FIFO */ 380da14cebeSEric Cheng mac_intr_t mrf_intr; 381da14cebeSEric Cheng mac_receive_t mrf_receive; 382da14cebeSEric Cheng void *mrf_rx_arg; 383da14cebeSEric Cheng uint32_t mrf_flow_priority; 384da14cebeSEric Cheng /* 385da14cebeSEric Cheng * The CPU this flow is to be processed on. With intrd and future 386da14cebeSEric Cheng * things, we should know which CPU the flow needs to be processed 387da14cebeSEric Cheng * and get a squeue assigned on that CPU. 388da14cebeSEric Cheng */ 389da14cebeSEric Cheng uint_t mrf_cpu_id; 3907c478bd9Sstevel@tonic-gate } mac_rx_fifo_t; 3917c478bd9Sstevel@tonic-gate 392da14cebeSEric Cheng #define mrf_intr_handle mrf_intr.mi_handle 393da14cebeSEric Cheng #define mrf_intr_enable mrf_intr.mi_enable 394da14cebeSEric Cheng #define mrf_intr_disable mrf_intr.mi_disable 39598b1442aSmeem 3967c478bd9Sstevel@tonic-gate typedef union mac_resource_u { 3977c478bd9Sstevel@tonic-gate mac_resource_type_t mr_type; 3987c478bd9Sstevel@tonic-gate mac_rx_fifo_t mr_fifo; 3997c478bd9Sstevel@tonic-gate } mac_resource_t; 4007c478bd9Sstevel@tonic-gate 401ba2e4443Sseb typedef enum { 402ba2e4443Sseb MAC_ADDRTYPE_UNICAST, 403ba2e4443Sseb MAC_ADDRTYPE_MULTICAST, 404ba2e4443Sseb MAC_ADDRTYPE_BROADCAST 405ba2e4443Sseb } mac_addrtype_t; 406ba2e4443Sseb 407ba2e4443Sseb typedef struct mac_header_info_s { 408ba2e4443Sseb size_t mhi_hdrsize; 409ba2e4443Sseb size_t mhi_pktsize; 410ba2e4443Sseb const uint8_t *mhi_daddr; 411ba2e4443Sseb const uint8_t *mhi_saddr; 412ba2e4443Sseb uint32_t mhi_origsap; 413ba2e4443Sseb uint32_t mhi_bindsap; 414ba2e4443Sseb mac_addrtype_t mhi_dsttype; 415605445d5Sdg199075 uint16_t mhi_tci; 416da14cebeSEric Cheng boolean_t mhi_istagged; 4174eaa4710SRishi Srivatsavai boolean_t mhi_ispvid; 418ba2e4443Sseb } mac_header_info_t; 419ba2e4443Sseb 420ba2e4443Sseb /* 421da14cebeSEric Cheng * Function pointer to match dls client signature. Should be same as 422da14cebeSEric Cheng * dls_rx_t to allow a soft ring to bypass DLS layer and call a DLS 423da14cebeSEric Cheng * client directly. 424da14cebeSEric Cheng */ 425da14cebeSEric Cheng typedef void (*mac_direct_rx_t)(void *, mac_resource_handle_t, 426da14cebeSEric Cheng mblk_t *, mac_header_info_t *); 427da14cebeSEric Cheng 428da14cebeSEric Cheng typedef mac_resource_handle_t (*mac_resource_add_t)(void *, mac_resource_t *); 429da14cebeSEric Cheng typedef int (*mac_resource_bind_t)(void *, 430da14cebeSEric Cheng mac_resource_handle_t, processorid_t); 431da14cebeSEric Cheng typedef void (*mac_resource_remove_t)(void *, void *); 432da14cebeSEric Cheng typedef void (*mac_resource_quiesce_t)(void *, void *); 433da14cebeSEric Cheng typedef void (*mac_resource_restart_t)(void *, void *); 434da14cebeSEric Cheng typedef int (*mac_resource_modify_t)(void *, void *, 435da14cebeSEric Cheng mac_resource_t *); 436da14cebeSEric Cheng typedef void (*mac_change_upcall_t)(void *, mac_direct_rx_t, 437da14cebeSEric Cheng void *); 438da14cebeSEric Cheng 439da14cebeSEric Cheng /* 440ba2e4443Sseb * MAC-Type plugin interfaces 441ba2e4443Sseb */ 442ba2e4443Sseb 443ba2e4443Sseb typedef int (*mtops_addr_verify_t)(const void *, void *); 444ba2e4443Sseb typedef boolean_t (*mtops_sap_verify_t)(uint32_t, uint32_t *, void *); 445ba2e4443Sseb typedef mblk_t *(*mtops_header_t)(const void *, const void *, 446ba2e4443Sseb uint32_t, void *, mblk_t *, size_t); 447ba2e4443Sseb typedef int (*mtops_header_info_t)(mblk_t *, void *, 448ba2e4443Sseb mac_header_info_t *); 449ba2e4443Sseb typedef boolean_t (*mtops_pdata_verify_t)(void *, size_t); 450ba2e4443Sseb typedef mblk_t *(*mtops_header_modify_t)(mblk_t *, void *); 4510d2a8e5eSgd78059 typedef void (*mtops_link_details_t)(char *, size_t, mac_handle_t, 4520d2a8e5eSgd78059 void *); 453ba2e4443Sseb 454ba2e4443Sseb typedef struct mactype_ops_s { 455ba2e4443Sseb uint_t mtops_ops; 456ba2e4443Sseb /* 457ba2e4443Sseb * mtops_unicst_verify() returns 0 if the given address is a valid 458ba2e4443Sseb * unicast address, or a non-zero errno otherwise. 459ba2e4443Sseb */ 460ba2e4443Sseb mtops_addr_verify_t mtops_unicst_verify; 461ba2e4443Sseb /* 462ba2e4443Sseb * mtops_multicst_verify() returns 0 if the given address is a 463ba2e4443Sseb * valid multicast address, or a non-zero errno otherwise. If the 464ba2e4443Sseb * media doesn't support multicast, ENOTSUP should be returned (for 465ba2e4443Sseb * example). 466ba2e4443Sseb */ 467ba2e4443Sseb mtops_addr_verify_t mtops_multicst_verify; 468ba2e4443Sseb /* 469ba2e4443Sseb * mtops_sap_verify() returns B_TRUE if the given SAP is a valid 470ba2e4443Sseb * SAP value, or B_FALSE otherwise. 471ba2e4443Sseb */ 472ba2e4443Sseb mtops_sap_verify_t mtops_sap_verify; 473ba2e4443Sseb /* 474ba2e4443Sseb * mtops_header() is used to allocate and construct a MAC header. 475ba2e4443Sseb */ 476ba2e4443Sseb mtops_header_t mtops_header; 477ba2e4443Sseb /* 478ba2e4443Sseb * mtops_header_info() is used to gather information on a given MAC 479ba2e4443Sseb * header. 480ba2e4443Sseb */ 481ba2e4443Sseb mtops_header_info_t mtops_header_info; 482ba2e4443Sseb /* 483ba2e4443Sseb * mtops_pdata_verify() is used to verify the validity of MAC 484ba2e4443Sseb * plugin data. It is called by mac_register() if the driver has 485ba2e4443Sseb * supplied MAC plugin data, and also by mac_pdata_update() when 486ba2e4443Sseb * drivers update the data. 487ba2e4443Sseb */ 488ba2e4443Sseb mtops_pdata_verify_t mtops_pdata_verify; 489ba2e4443Sseb /* 490ba2e4443Sseb * mtops_header_cook() is an optional callback that converts (or 491ba2e4443Sseb * "cooks") the given raw header (as sent by a raw DLPI consumer) 492ba2e4443Sseb * into one that is appropriate to send down to the MAC driver. 493ba2e4443Sseb * Following the example above, an Ethernet header sent down by a 494ba2e4443Sseb * DLPI consumer would be converted to whatever header the MAC 495ba2e4443Sseb * driver expects. 496ba2e4443Sseb */ 497ba2e4443Sseb mtops_header_modify_t mtops_header_cook; 498ba2e4443Sseb /* 499ba2e4443Sseb * mtops_header_uncook() is an optional callback that does the 500ba2e4443Sseb * opposite of mtops_header_cook(). It "uncooks" a given MAC 501ba2e4443Sseb * header (as received from the driver) for consumption by raw DLPI 502ba2e4443Sseb * consumers. For example, for a non-Ethernet plugin that wants 503ba2e4443Sseb * raw DLPI consumers to be fooled into thinking that the device 504ba2e4443Sseb * provides Ethernet access, this callback would modify the given 505ba2e4443Sseb * mblk_t such that the MAC header is converted to an Ethernet 506ba2e4443Sseb * header. 507ba2e4443Sseb */ 508ba2e4443Sseb mtops_header_modify_t mtops_header_uncook; 5090d2a8e5eSgd78059 /* 5100d2a8e5eSgd78059 * mtops_link_details() is an optional callback that provides 5110d2a8e5eSgd78059 * extended information about the link state. Its primary purpose 5120d2a8e5eSgd78059 * is to provide type-specific support for syslog contents on 5130d2a8e5eSgd78059 * link up events. If no implementation is provided, then a default 5140d2a8e5eSgd78059 * implementation will be used. 5150d2a8e5eSgd78059 */ 5160d2a8e5eSgd78059 mtops_link_details_t mtops_link_details; 517ba2e4443Sseb } mactype_ops_t; 518ba2e4443Sseb 519ba2e4443Sseb /* 520ba2e4443Sseb * mtops_ops exists for the plugin to enumerate the optional callback 521ba2e4443Sseb * entrypoints it has defined. This allows the mac module to define 522ba2e4443Sseb * additional plugin entrypoints in mactype_ops_t without breaking backward 523ba2e4443Sseb * compatibility with old plugins. 524ba2e4443Sseb */ 525ba2e4443Sseb #define MTOPS_PDATA_VERIFY 0x001 526ba2e4443Sseb #define MTOPS_HEADER_COOK 0x002 527ba2e4443Sseb #define MTOPS_HEADER_UNCOOK 0x004 5280d2a8e5eSgd78059 #define MTOPS_LINK_DETAILS 0x008 529ba2e4443Sseb 5304045d941Ssowmini /* 5314045d941Ssowmini * Provide mapping for legacy ndd ioctls relevant to that mactype. 5324045d941Ssowmini * Note that the ndd ioctls are obsolete, and may be removed in a future 5334045d941Ssowmini * release of Solaris. The ndd ioctls are not typically used in legacy 5344045d941Ssowmini * ethernet drivers. New datalink drivers of all link-types should use 5354045d941Ssowmini * dladm(1m) interfaces for administering tunables and not have to provide 5364045d941Ssowmini * a mapping. 5374045d941Ssowmini */ 5384045d941Ssowmini typedef struct mac_ndd_mapping_s { 5394045d941Ssowmini char *mp_name; 5404045d941Ssowmini union { 5414045d941Ssowmini mac_prop_id_t u_id; 5424045d941Ssowmini uint_t u_kstat; 5434045d941Ssowmini } u_mp_id; 5444045d941Ssowmini long mp_minval; 5454045d941Ssowmini long mp_maxval; 5464045d941Ssowmini size_t mp_valsize; 5474045d941Ssowmini int mp_flags; 5484045d941Ssowmini } mac_ndd_mapping_t; 5494045d941Ssowmini 5504045d941Ssowmini #define mp_prop_id u_mp_id.u_id 5514045d941Ssowmini #define mp_kstat u_mp_id.u_kstat 5524045d941Ssowmini 553da14cebeSEric Cheng typedef struct mac_stat_info_s { 554da14cebeSEric Cheng uint_t msi_stat; 555da14cebeSEric Cheng char *msi_name; 556da14cebeSEric Cheng uint_t msi_type; /* as defined in kstat_named_init(9F) */ 557da14cebeSEric Cheng uint64_t msi_default; 558da14cebeSEric Cheng } mac_stat_info_t; 559da14cebeSEric Cheng 560ba2e4443Sseb typedef struct mactype_register_s { 561ba2e4443Sseb uint_t mtr_version; /* set by mactype_alloc() */ 562ba2e4443Sseb const char *mtr_ident; 563ba2e4443Sseb mactype_ops_t *mtr_ops; 564ba2e4443Sseb uint_t mtr_mactype; 5650ba2cbe9Sxc151355 uint_t mtr_nativetype; 566ba2e4443Sseb uint_t mtr_addrlen; 567ba2e4443Sseb uint8_t *mtr_brdcst_addr; 568ba2e4443Sseb mac_stat_info_t *mtr_stats; 569ba2e4443Sseb size_t mtr_statcount; 5704045d941Ssowmini mac_ndd_mapping_t *mtr_mapping; 5714045d941Ssowmini size_t mtr_mappingcount; 572ba2e4443Sseb } mactype_register_t; 573ba2e4443Sseb 574e7801d59Ssowmini typedef struct mac_prop_s { 575e7801d59Ssowmini mac_prop_id_t mp_id; 576e7801d59Ssowmini char *mp_name; 5774045d941Ssowmini uint_t mp_flags; 578e7801d59Ssowmini } mac_prop_t; 579e7801d59Ssowmini 5807c478bd9Sstevel@tonic-gate /* 581da14cebeSEric Cheng * Driver interface functions. 5827c478bd9Sstevel@tonic-gate */ 583d62bc4baSyz147064 extern int mac_open_by_linkid(datalink_id_t, 584d62bc4baSyz147064 mac_handle_t *); 585d62bc4baSyz147064 extern int mac_open_by_linkname(const char *, 586d62bc4baSyz147064 mac_handle_t *); 587d62bc4baSyz147064 extern const char *mac_name(mac_handle_t); 588d62bc4baSyz147064 extern minor_t mac_minor(mac_handle_t); 589d62bc4baSyz147064 extern minor_t mac_minor_hold(boolean_t); 590d62bc4baSyz147064 extern void mac_minor_rele(minor_t); 591da14cebeSEric Cheng extern void mac_sdu_get(mac_handle_t, uint_t *, uint_t *); 592da14cebeSEric Cheng extern int mac_maxsdu_update(mac_handle_t, uint_t); 5930a0e9771SDarren Reed extern uint_t mac_addr_len(mac_handle_t); 5940a0e9771SDarren Reed extern int mac_type(mac_handle_t); 595*f195a053SDarren Reed extern int mac_nativetype(mac_handle_t); 5967c478bd9Sstevel@tonic-gate 597ba2e4443Sseb extern void mac_unicst_update(mac_handle_t, 598ba2e4443Sseb const uint8_t *); 599da14cebeSEric Cheng extern void mac_capab_update(mac_handle_t); 600ba2e4443Sseb extern int mac_pdata_update(mac_handle_t, void *, 601ba2e4443Sseb size_t); 602d62bc4baSyz147064 extern boolean_t mac_margin_update(mac_handle_t, uint32_t); 603d62bc4baSyz147064 extern void mac_margin_get(mac_handle_t, uint32_t *); 604d62bc4baSyz147064 extern int mac_margin_remove(mac_handle_t, uint32_t); 605d62bc4baSyz147064 extern int mac_margin_add(mac_handle_t, uint32_t *, 606d62bc4baSyz147064 boolean_t); 6075d460eafSCathy Zhou extern int mac_fastpath_disable(mac_handle_t); 6085d460eafSCathy Zhou extern void mac_fastpath_enable(mac_handle_t); 6094eaa4710SRishi Srivatsavai extern void mac_no_active(mac_handle_t); 610d62bc4baSyz147064 611ba2e4443Sseb extern mactype_register_t *mactype_alloc(uint_t); 612ba2e4443Sseb extern void mactype_free(mactype_register_t *); 613ba2e4443Sseb extern int mactype_register(mactype_register_t *); 614ba2e4443Sseb extern int mactype_unregister(const char *); 615da14cebeSEric Cheng 6165d460eafSCathy Zhou extern int mac_start_logusage(mac_logtype_t, uint_t); 617da14cebeSEric Cheng extern void mac_stop_logusage(mac_logtype_t); 618da14cebeSEric Cheng 619da14cebeSEric Cheng extern mac_handle_t mac_get_lower_mac_handle(mac_handle_t); 6207c478bd9Sstevel@tonic-gate 621ae6aa22aSVenugopal Iyer /* 622ae6aa22aSVenugopal Iyer * Packet hashing for distribution to multiple ports and rings. 623ae6aa22aSVenugopal Iyer */ 624ae6aa22aSVenugopal Iyer 625ae6aa22aSVenugopal Iyer #define MAC_PKT_HASH_L2 0x01 626ae6aa22aSVenugopal Iyer #define MAC_PKT_HASH_L3 0x02 627ae6aa22aSVenugopal Iyer #define MAC_PKT_HASH_L4 0x04 628ae6aa22aSVenugopal Iyer 629ae6aa22aSVenugopal Iyer extern uint64_t mac_pkt_hash(uint_t, mblk_t *, uint8_t, 630ae6aa22aSVenugopal Iyer boolean_t); 631ae6aa22aSVenugopal Iyer 6324eaa4710SRishi Srivatsavai /* 6334eaa4710SRishi Srivatsavai * Bridging linkage 6344eaa4710SRishi Srivatsavai */ 6354eaa4710SRishi Srivatsavai extern void mac_rx_common(mac_handle_t, 6364eaa4710SRishi Srivatsavai mac_resource_handle_t, mblk_t *); 6374eaa4710SRishi Srivatsavai extern int mac_bridge_set(mac_handle_t, mac_handle_t); 6384eaa4710SRishi Srivatsavai extern void mac_bridge_clear(mac_handle_t, mac_handle_t); 6394eaa4710SRishi Srivatsavai extern void mac_bridge_vectors(mac_bridge_tx_t, 6404eaa4710SRishi Srivatsavai mac_bridge_rx_t, mac_bridge_ref_t, 6414eaa4710SRishi Srivatsavai mac_bridge_ls_t); 6424eaa4710SRishi Srivatsavai 6434eaa4710SRishi Srivatsavai /* special case function for TRILL observability */ 6444eaa4710SRishi Srivatsavai extern void mac_trill_snoop(mac_handle_t, mblk_t *); 6454eaa4710SRishi Srivatsavai 6467c478bd9Sstevel@tonic-gate #endif /* _KERNEL */ 6477c478bd9Sstevel@tonic-gate 6487c478bd9Sstevel@tonic-gate #ifdef __cplusplus 6497c478bd9Sstevel@tonic-gate } 6507c478bd9Sstevel@tonic-gate #endif 6517c478bd9Sstevel@tonic-gate 6527c478bd9Sstevel@tonic-gate #endif /* _SYS_MAC_H */ 653