xref: /illumos-gate/usr/src/uts/common/sys/vnic_impl.h (revision d67944fbe3fa0b31893a7116a09b0718eecf6078)
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  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef	_SYS_VNIC_IMPL_H
27 #define	_SYS_VNIC_IMPL_H
28 
29 #include <sys/mac_provider.h>
30 #include <sys/mac_client.h>
31 #include <sys/mac_client_priv.h>
32 #include <sys/vnic.h>
33 #include <sys/mac_flow.h>
34 #include <sys/ksynch.h>
35 
36 #ifdef	__cplusplus
37 extern "C" {
38 #endif
39 
40 typedef struct vnic_s {
41 	datalink_id_t		vn_id;
42 	uint32_t
43 				vn_enabled : 1,
44 				vn_pad_to_bit_31 : 31;
45 
46 	mac_handle_t		vn_mh;
47 	mac_handle_t		vn_lower_mh;
48 	mac_client_handle_t	vn_mch;
49 	mac_unicast_handle_t	vn_muh;
50 	uint32_t		vn_margin;
51 	int			vn_slot_id;
52 	vnic_mac_addr_type_t	vn_addr_type;
53 	uint8_t			vn_addr[MAXMACADDRLEN];
54 	size_t			vn_addr_len;
55 	uint16_t		vn_vid;
56 	boolean_t		vn_force;
57 	datalink_id_t		vn_link_id;
58 	mac_notify_handle_t	vn_mnh;
59 
60 	uint32_t		vn_hcksum_txflags;
61 } vnic_t;
62 
63 #define	vn_madd_naddr		vn_mma_capab.maddr_naddr
64 #define	vn_maddr_naddrfree	vn_mma_capab.maddr_naddrfree
65 #define	vn_maddr_flag		vn_mma_capab.maddr_flag
66 #define	vn_maddr_handle		vn_mma_capab.maddr_handle
67 #define	vn_maddr_reserve	vn_mma_capab.maddr_reserve
68 #define	vn_maddr_add		vn_mma_capab.maddr_add
69 #define	vn_maddr_remove		vn_mma_capab.maddr_remove
70 #define	vn_maddr_modify		vn_mma_capab.maddr_modify
71 #define	vn_maddr_get		vn_mma_capab.maddr_get
72 
73 extern int vnic_dev_create(datalink_id_t, datalink_id_t, vnic_mac_addr_type_t *,
74     int *, uchar_t *, int *, uint_t, uint16_t, mac_resource_props_t *,
75     uint32_t, vnic_ioc_diag_t *);
76 extern int vnic_dev_modify(datalink_id_t, uint_t, vnic_mac_addr_type_t,
77     uint_t, uchar_t *, uint_t, mac_resource_props_t *);
78 extern int vnic_dev_delete(datalink_id_t, uint32_t);
79 
80 extern void vnic_dev_init(void);
81 extern void vnic_dev_fini(void);
82 extern uint_t vnic_dev_count(void);
83 extern dev_info_t *vnic_get_dip(void);
84 
85 extern int vnic_info(vnic_info_t *);
86 
87 #ifdef	__cplusplus
88 }
89 #endif
90 
91 #endif	/* _SYS_VNIC_IMPL_H */
92