xref: /illumos-gate/usr/src/uts/sun4v/sys/vsw.h (revision 9b4e3ac25d882519cad3fc11f0c53b07f4e60536)
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 2008 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 /*
92  * vlan-id information.
93  */
94 typedef struct vsw_vlanid {
95 	uint16_t		vl_vid;		/* vlan-id */
96 	mac_unicast_handle_t	vl_muh;		/* mac unicast handle */
97 	boolean_t		vl_set;		/* set? */
98 } vsw_vlanid_t;
99 
100 /*
101  * vsw instance state information.
102  */
103 typedef struct	vsw {
104 	int			instance;	/* instance # */
105 	dev_info_t		*dip;		/* associated dev_info */
106 	uint64_t		regprop;	/* "reg" property */
107 	struct vsw		*next;		/* next in list */
108 	char			physname[LIFNAMSIZ];	/* phys-dev */
109 	uint8_t			smode;		/* switching mode */
110 	kmutex_t		swtmout_lock;	/* setup switching tmout lock */
111 	boolean_t		swtmout_enabled; /* setup switching tmout on */
112 	timeout_id_t		swtmout_id;	/* setup switching tmout id */
113 	uint32_t		switching_setup_done; /* setup switching done */
114 	int			mac_open_retries; /* mac_open() retry count */
115 	vsw_port_list_t		plist;		/* associated ports */
116 	ddi_taskq_t		*taskq_p;	/* VIO ctrl msg taskq */
117 	mod_hash_t		*fdb_hashp;	/* forwarding database */
118 	uint32_t		fdb_nchains;	/* # of hash chains in fdb */
119 	mod_hash_t		*vlan_hashp;	/* vlan hash table */
120 	uint32_t		vlan_nchains;	/* # of vlan hash chains */
121 	uint32_t		mtu;		/* mtu of the device */
122 	uint32_t		max_frame_size;	/* max frame size supported */
123 	uint32_t		mtu_physdev_orig; /* orig mtu of the physdev */
124 
125 	mod_hash_t		*mfdb;		/* multicast FDB */
126 	krwlock_t		mfdbrw;		/* rwlock for mFDB */
127 
128 	vio_mblk_pool_t		*rxh;		/* Receive pool handle */
129 	void			(*vsw_switch_frame)
130 					(struct vsw *, mblk_t *, int,
131 					vsw_port_t *, mac_resource_handle_t);
132 
133 	/* mac layer */
134 	kmutex_t		mac_lock;	/* protect mh */
135 	mac_handle_t		mh;
136 	krwlock_t		maccl_rwlock;	/* protect fields below */
137 	mac_client_handle_t	mch;		/* mac client handle */
138 	mac_unicast_handle_t	muh;		/* mac unicast handle */
139 
140 	boolean_t		recfg_reqd;	/* Reconfig of addrs needed */
141 
142 	/* mac layer switching flag */
143 	boolean_t		mac_cl_switching;
144 
145 	/* Machine Description updates  */
146 	mdeg_node_spec_t	*inst_spec;
147 	mdeg_handle_t		mdeg_hdl;
148 	mdeg_handle_t		mdeg_port_hdl;
149 
150 	/* if configured as an ethernet interface */
151 	mac_handle_t		if_mh;		/* MAC handle */
152 	struct ether_addr	if_addr;	/* interface address */
153 	krwlock_t		if_lockrw;
154 	uint8_t			if_state;	/* interface state */
155 
156 	boolean_t		addr_set;	/* is addr set to HW */
157 
158 	/* multicast addresses when configured as eth interface */
159 	kmutex_t		mca_lock;	/* multicast lock */
160 	mcst_addr_t		*mcap;		/* list of multicast addrs */
161 
162 	uint32_t		pri_num_types;	/* # of priority eth types */
163 	uint16_t		*pri_types;	/* priority eth types */
164 	vio_mblk_pool_t		*pri_tx_vmp;	/* tx priority mblk pool */
165 	uint16_t		default_vlan_id; /* default vlan id */
166 	uint16_t		pvid;	/* port vlan id (untagged) */
167 	vsw_vlanid_t		*vids;	/* vlan ids (tagged) */
168 	uint16_t		nvids;	/* # of vids */
169 	uint32_t		vids_size; /* size alloc'd for vids list */
170 
171 	/* HybridIO related fields */
172 	boolean_t		hio_capable;	/* Phys dev HIO capable */
173 	vsw_hio_t		vhio;		/* HybridIO info */
174 	callb_id_t		hio_reboot_cb_id; /* Reboot callb ID */
175 	callb_id_t		hio_panic_cb_id; /* Panic callb ID */
176 } vsw_t;
177 
178 /*
179  * The flags that are used by vsw_mac_rx().
180  */
181 typedef enum {
182 	VSW_MACRX_PROMISC = 0x01,
183 	VSW_MACRX_COPYMSG = 0x02,
184 	VSW_MACRX_FREEMSG = 0x04
185 } vsw_macrx_flags_t;
186 
187 
188 #ifdef DEBUG
189 
190 extern int vswdbg;
191 extern void vswdebug(vsw_t *vswp, const char *fmt, ...);
192 
193 #define	D1(...)		\
194 if (vswdbg & 0x01)	\
195 	vswdebug(__VA_ARGS__)
196 
197 #define	D2(...)		\
198 if (vswdbg & 0x02)	\
199 	vswdebug(__VA_ARGS__)
200 
201 #define	D3(...)		\
202 if (vswdbg & 0x04)	\
203 	vswdebug(__VA_ARGS__)
204 
205 #define	DWARN(...)	\
206 if (vswdbg & 0x08)	\
207 	vswdebug(__VA_ARGS__)
208 
209 #define	DERR(...)	\
210 if (vswdbg & 0x10)	\
211 	vswdebug(__VA_ARGS__)
212 
213 #else
214 
215 #define	DERR(...)	if (0)	do { } while (0)
216 #define	DWARN(...)	if (0)	do { } while (0)
217 #define	D1(...)		if (0)	do { } while (0)
218 #define	D2(...)		if (0)	do { } while (0)
219 #define	D3(...)		if (0)	do { } while (0)
220 
221 #endif	/* DEBUG */
222 
223 
224 #ifdef	__cplusplus
225 }
226 #endif
227 
228 #endif	/* _VSW_H */
229