1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 27 /* 28 * This header file contains the data structures which the 29 * virtual switch (vsw) uses to communicate with its clients and 30 * the outside world. 31 */ 32 33 #ifndef _VSW_H 34 #define _VSW_H 35 36 #ifdef __cplusplus 37 extern "C" { 38 #endif 39 40 #include <sys/vio_mailbox.h> 41 #include <sys/vnet_common.h> 42 #include <sys/ethernet.h> 43 #include <sys/mac_client.h> 44 #include <sys/vio_util.h> 45 #include <sys/vgen_stats.h> 46 #include <sys/vsw_ldc.h> 47 #include <sys/vsw_hio.h> 48 #include <sys/callb.h> 49 50 #define DRV_NAME "vsw" 51 52 /* 53 * Only support ETHER mtu at moment. 54 */ 55 #define VSW_MTU ETHERMAX 56 57 /* ID of the source of a frame being switched */ 58 #define VSW_PHYSDEV 1 /* physical device associated */ 59 #define VSW_VNETPORT 2 /* port connected to vnet (over ldc) */ 60 #define VSW_LOCALDEV 4 /* vsw configured as an eth interface */ 61 62 /* 63 * Number of hash chains in the multicast forwarding database. 64 */ 65 #define VSW_NCHAINS 8 66 67 /* Number of transmit descriptors - must be power of 2 */ 68 #define VSW_RING_NUM_EL 512 69 70 /* 71 * State of interface if switch plumbed as network device. 72 */ 73 #define VSW_IF_REG 0x1 /* interface was registered */ 74 #define VSW_IF_UP 0x2 /* Interface UP */ 75 #define VSW_IF_PROMISC 0x4 /* Interface in promiscious mode */ 76 77 #define VSW_U_P(state) \ 78 (state == (VSW_IF_UP | VSW_IF_PROMISC)) 79 80 /* 81 * Switching modes. 82 */ 83 #define VSW_LAYER2 0x1 /* Layer 2 - MAC switching */ 84 #define VSW_LAYER2_PROMISC 0x2 /* Layer 2 + promisc mode */ 85 #define VSW_LAYER3 0x4 /* Layer 3 - IP switching */ 86 87 #define NUM_SMODES 3 /* number of switching modes */ 88 89 #define VSW_PRI_ETH_DEFINED(vswp) ((vswp)->pri_num_types != 0) 90 91 typedef enum { 92 VSW_SWTHR_STOP = 0x1 93 } sw_thr_flags_t; 94 95 typedef enum { 96 PROG_init = 0x00, 97 PROG_locks = 0x01, 98 PROG_readmd = 0x02, 99 PROG_fdb = 0x04, 100 PROG_mfdb = 0x08, 101 PROG_taskq = 0x10, 102 PROG_swmode = 0x20, 103 PROG_macreg = 0x40, 104 PROG_mdreg = 0x80 105 } vsw_attach_progress_t; 106 107 /* 108 * vlan-id information. 109 */ 110 typedef struct vsw_vlanid { 111 uint16_t vl_vid; /* vlan-id */ 112 mac_unicast_handle_t vl_muh; /* mac unicast handle */ 113 boolean_t vl_set; /* set? */ 114 } vsw_vlanid_t; 115 116 /* 117 * vsw instance state information. 118 */ 119 typedef struct vsw { 120 int instance; /* instance # */ 121 dev_info_t *dip; /* associated dev_info */ 122 uint64_t regprop; /* "reg" property */ 123 vsw_attach_progress_t attach_progress; /* attach progress flags */ 124 struct vsw *next; /* next in list */ 125 char physname[LIFNAMSIZ]; /* phys-dev */ 126 uint8_t smode; /* switching mode */ 127 kmutex_t sw_thr_lock; /* setup switching thr lock */ 128 kcondvar_t sw_thr_cv; /* cv for setup switching thr */ 129 kthread_t *sw_thread; /* setup switching thread */ 130 sw_thr_flags_t sw_thr_flags; /* setup switching thr flags */ 131 uint32_t switching_setup_done; /* setup switching done */ 132 int mac_open_retries; /* mac_open() retry count */ 133 vsw_port_list_t plist; /* associated ports */ 134 ddi_taskq_t *taskq_p; /* VIO ctrl msg taskq */ 135 mod_hash_t *fdb_hashp; /* forwarding database */ 136 uint32_t fdb_nchains; /* # of hash chains in fdb */ 137 mod_hash_t *vlan_hashp; /* vlan hash table */ 138 uint32_t vlan_nchains; /* # of vlan hash chains */ 139 uint32_t mtu; /* mtu of the device */ 140 uint32_t max_frame_size; /* max frame size supported */ 141 uint32_t mtu_physdev_orig; /* orig mtu of the physdev */ 142 143 mod_hash_t *mfdb; /* multicast FDB */ 144 krwlock_t mfdbrw; /* rwlock for mFDB */ 145 146 vio_mblk_pool_t *rxh; /* Receive pool handle */ 147 void (*vsw_switch_frame) 148 (struct vsw *, mblk_t *, int, 149 vsw_port_t *, mac_resource_handle_t); 150 151 /* mac layer */ 152 kmutex_t mac_lock; /* protect mh */ 153 mac_handle_t mh; 154 krwlock_t maccl_rwlock; /* protect fields below */ 155 mac_client_handle_t mch; /* mac client handle */ 156 mac_unicast_handle_t muh; /* mac unicast handle */ 157 158 boolean_t recfg_reqd; /* Reconfig of addrs needed */ 159 160 /* mac layer switching flag */ 161 boolean_t mac_cl_switching; 162 163 /* Machine Description updates */ 164 mdeg_node_spec_t *inst_spec; 165 mdeg_handle_t mdeg_hdl; 166 mdeg_handle_t mdeg_port_hdl; 167 168 /* if configured as an ethernet interface */ 169 mac_handle_t if_mh; /* MAC handle */ 170 struct ether_addr if_addr; /* interface address */ 171 krwlock_t if_lockrw; 172 uint8_t if_state; /* interface state */ 173 174 boolean_t addr_set; /* is addr set to HW */ 175 176 /* multicast addresses when configured as eth interface */ 177 kmutex_t mca_lock; /* multicast lock */ 178 mcst_addr_t *mcap; /* list of multicast addrs */ 179 180 uint32_t pri_num_types; /* # of priority eth types */ 181 uint16_t *pri_types; /* priority eth types */ 182 vio_mblk_pool_t *pri_tx_vmp; /* tx priority mblk pool */ 183 uint16_t default_vlan_id; /* default vlan id */ 184 uint16_t pvid; /* port vlan id (untagged) */ 185 vsw_vlanid_t *vids; /* vlan ids (tagged) */ 186 uint16_t nvids; /* # of vids */ 187 uint32_t vids_size; /* size alloc'd for vids list */ 188 189 /* HybridIO related fields */ 190 boolean_t hio_capable; /* Phys dev HIO capable */ 191 vsw_hio_t vhio; /* HybridIO info */ 192 callb_id_t hio_reboot_cb_id; /* Reboot callb ID */ 193 callb_id_t hio_panic_cb_id; /* Panic callb ID */ 194 } vsw_t; 195 196 /* 197 * The flags that are used by vsw_mac_rx(). 198 */ 199 typedef enum { 200 VSW_MACRX_PROMISC = 0x01, 201 VSW_MACRX_COPYMSG = 0x02, 202 VSW_MACRX_FREEMSG = 0x04 203 } vsw_macrx_flags_t; 204 205 206 #ifdef DEBUG 207 208 extern int vswdbg; 209 extern void vswdebug(vsw_t *vswp, const char *fmt, ...); 210 211 #define D1(...) \ 212 if (vswdbg & 0x01) \ 213 vswdebug(__VA_ARGS__) 214 215 #define D2(...) \ 216 if (vswdbg & 0x02) \ 217 vswdebug(__VA_ARGS__) 218 219 #define D3(...) \ 220 if (vswdbg & 0x04) \ 221 vswdebug(__VA_ARGS__) 222 223 #define DWARN(...) \ 224 if (vswdbg & 0x08) \ 225 vswdebug(__VA_ARGS__) 226 227 #define DERR(...) \ 228 if (vswdbg & 0x10) \ 229 vswdebug(__VA_ARGS__) 230 231 #else 232 233 #define DERR(...) if (0) do { } while (0) 234 #define DWARN(...) if (0) do { } while (0) 235 #define D1(...) if (0) do { } while (0) 236 #define D2(...) if (0) do { } while (0) 237 #define D3(...) if (0) do { } while (0) 238 239 #endif /* DEBUG */ 240 241 242 #ifdef __cplusplus 243 } 244 #endif 245 246 #endif /* _VSW_H */ 247